blob: fcb1ac12119ff24113c25bea3067ffc5ba2f1cd7 [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/ctype.h>
11#include <linux/device-mapper.h>
Mikulas Patocka90fa1522009-01-06 03:04:54 +000012#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/fs.h>
14#include <linux/init.h>
15#include <linux/kdev_t.h>
16#include <linux/list.h>
17#include <linux/mempool.h>
18#include <linux/module.h>
19#include <linux/slab.h>
20#include <linux/vmalloc.h>
vignesh babu6f3c3f02007-10-19 22:38:44 +010021#include <linux/log2.h>
Alasdair G Kergona765e202008-04-24 22:02:01 +010022#include <linux/dm-kcopyd.h>
Jonathan Brassowccc45ea2009-04-02 19:55:34 +010023#include <linux/workqueue.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Jonathan Brassowaea53d92009-01-06 03:05:15 +000025#include "dm-exception-store.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "dm-bio-list.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Alasdair G Kergon72d94862006-06-26 00:27:35 -070028#define DM_MSG_PREFIX "snapshots"
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030/*
31 * The percentage increment we will wake up users at
32 */
33#define WAKE_UP_PERCENT 5
34
35/*
36 * kcopyd priority of snapshot operations
37 */
38#define SNAPSHOT_COPY_PRIORITY 2
39
40/*
Milan Broz8ee27672008-04-24 21:42:36 +010041 * Reserve 1MB for each snapshot initially (with minimum of 1 page).
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 */
Milan Broz8ee27672008-04-24 21:42:36 +010043#define SNAPSHOT_PAGES (((1UL << 20) >> PAGE_SHIFT) ? : 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Mikulas Patockacd45daf2008-07-21 12:00:32 +010045/*
46 * The size of the mempool used to track chunks in use.
47 */
48#define MIN_IOS 256
49
Jonathan Brassowccc45ea2009-04-02 19:55:34 +010050#define DM_TRACKED_CHUNK_HASH_SIZE 16
51#define DM_TRACKED_CHUNK_HASH(x) ((unsigned long)(x) & \
52 (DM_TRACKED_CHUNK_HASH_SIZE - 1))
53
54struct exception_table {
55 uint32_t hash_mask;
56 unsigned hash_shift;
57 struct list_head *table;
58};
59
60struct dm_snapshot {
61 struct rw_semaphore lock;
62
63 struct dm_dev *origin;
64
65 /* List of snapshots per Origin */
66 struct list_head list;
67
68 /* You can't use a snapshot if this is 0 (e.g. if full) */
69 int valid;
70
71 /* Origin writes don't trigger exceptions until this is set */
72 int active;
73
74 /* Used for display of table */
75 char type;
76
77 mempool_t *pending_pool;
78
79 atomic_t pending_exceptions_count;
80
81 struct exception_table pending;
82 struct exception_table complete;
83
84 /*
85 * pe_lock protects all pending_exception operations and access
86 * as well as the snapshot_bios list.
87 */
88 spinlock_t pe_lock;
89
90 /* The on disk metadata handler */
91 struct dm_exception_store *store;
92
93 struct dm_kcopyd_client *kcopyd_client;
94
95 /* Queue of snapshot writes for ksnapd to flush */
96 struct bio_list queued_bios;
97 struct work_struct queued_bios_work;
98
99 /* Chunks with outstanding reads */
100 mempool_t *tracked_chunk_pool;
101 spinlock_t tracked_chunk_lock;
102 struct hlist_head tracked_chunk_hash[DM_TRACKED_CHUNK_HASH_SIZE];
103};
104
Adrian Bunkc642f9e2006-12-08 02:41:13 -0800105static struct workqueue_struct *ksnapd;
David Howellsc4028952006-11-22 14:57:56 +0000106static void flush_queued_bios(struct work_struct *work);
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700107
Jonathan Brassowccc45ea2009-04-02 19:55:34 +0100108static sector_t chunk_to_sector(struct dm_exception_store *store,
109 chunk_t chunk)
110{
111 return chunk << store->chunk_shift;
112}
113
114static int bdev_equal(struct block_device *lhs, struct block_device *rhs)
115{
116 /*
117 * There is only ever one instance of a particular block
118 * device so we can compare pointers safely.
119 */
120 return lhs == rhs;
121}
122
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100123struct dm_snap_pending_exception {
124 struct dm_snap_exception e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126 /*
127 * Origin buffers waiting for this to complete are held
128 * in a bio list
129 */
130 struct bio_list origin_bios;
131 struct bio_list snapshot_bios;
132
133 /*
Alasdair G Kergoneccf0812006-03-27 01:17:42 -0800134 * Short-term queue of pending exceptions prior to submission.
135 */
136 struct list_head list;
137
138 /*
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -0800139 * The primary pending_exception is the one that holds
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700140 * the ref_count and the list of origin_bios for a
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -0800141 * group of pending_exceptions. It is always last to get freed.
142 * These fields get set up when writing to the origin.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100144 struct dm_snap_pending_exception *primary_pe;
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -0800145
146 /*
147 * Number of pending_exceptions processing this chunk.
148 * When this drops to zero we must complete the origin bios.
149 * If incrementing or decrementing this, hold pe->snap->lock for
150 * the sibling concerned and not pe->primary_pe->snap->lock unless
151 * they are the same.
152 */
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700153 atomic_t ref_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155 /* Pointer back to snapshot context */
156 struct dm_snapshot *snap;
157
158 /*
159 * 1 indicates the exception has already been sent to
160 * kcopyd.
161 */
162 int started;
163};
164
165/*
166 * Hash table mapping origin volumes to lists of snapshots and
167 * a lock to protect it
168 */
Christoph Lametere18b8902006-12-06 20:33:20 -0800169static struct kmem_cache *exception_cache;
170static struct kmem_cache *pending_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100172struct dm_snap_tracked_chunk {
173 struct hlist_node node;
174 chunk_t chunk;
175};
176
177static struct kmem_cache *tracked_chunk_cache;
178
179static struct dm_snap_tracked_chunk *track_chunk(struct dm_snapshot *s,
180 chunk_t chunk)
181{
182 struct dm_snap_tracked_chunk *c = mempool_alloc(s->tracked_chunk_pool,
183 GFP_NOIO);
184 unsigned long flags;
185
186 c->chunk = chunk;
187
188 spin_lock_irqsave(&s->tracked_chunk_lock, flags);
189 hlist_add_head(&c->node,
190 &s->tracked_chunk_hash[DM_TRACKED_CHUNK_HASH(chunk)]);
191 spin_unlock_irqrestore(&s->tracked_chunk_lock, flags);
192
193 return c;
194}
195
196static void stop_tracking_chunk(struct dm_snapshot *s,
197 struct dm_snap_tracked_chunk *c)
198{
199 unsigned long flags;
200
201 spin_lock_irqsave(&s->tracked_chunk_lock, flags);
202 hlist_del(&c->node);
203 spin_unlock_irqrestore(&s->tracked_chunk_lock, flags);
204
205 mempool_free(c, s->tracked_chunk_pool);
206}
207
Mikulas Patockaa8d41b52008-07-21 12:00:34 +0100208static int __chunk_is_tracked(struct dm_snapshot *s, chunk_t chunk)
209{
210 struct dm_snap_tracked_chunk *c;
211 struct hlist_node *hn;
212 int found = 0;
213
214 spin_lock_irq(&s->tracked_chunk_lock);
215
216 hlist_for_each_entry(c, hn,
217 &s->tracked_chunk_hash[DM_TRACKED_CHUNK_HASH(chunk)], node) {
218 if (c->chunk == chunk) {
219 found = 1;
220 break;
221 }
222 }
223
224 spin_unlock_irq(&s->tracked_chunk_lock);
225
226 return found;
227}
228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229/*
230 * One of these per registered origin, held in the snapshot_origins hash
231 */
232struct origin {
233 /* The origin device */
234 struct block_device *bdev;
235
236 struct list_head hash_list;
237
238 /* List of snapshots for this origin */
239 struct list_head snapshots;
240};
241
242/*
243 * Size of the hash table for origin volumes. If we make this
244 * the size of the minors list then it should be nearly perfect
245 */
246#define ORIGIN_HASH_SIZE 256
247#define ORIGIN_MASK 0xFF
248static struct list_head *_origins;
249static struct rw_semaphore _origins_lock;
250
251static int init_origin_hash(void)
252{
253 int i;
254
255 _origins = kmalloc(ORIGIN_HASH_SIZE * sizeof(struct list_head),
256 GFP_KERNEL);
257 if (!_origins) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700258 DMERR("unable to allocate memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 return -ENOMEM;
260 }
261
262 for (i = 0; i < ORIGIN_HASH_SIZE; i++)
263 INIT_LIST_HEAD(_origins + i);
264 init_rwsem(&_origins_lock);
265
266 return 0;
267}
268
269static void exit_origin_hash(void)
270{
271 kfree(_origins);
272}
273
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100274static unsigned origin_hash(struct block_device *bdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{
276 return bdev->bd_dev & ORIGIN_MASK;
277}
278
279static struct origin *__lookup_origin(struct block_device *origin)
280{
281 struct list_head *ol;
282 struct origin *o;
283
284 ol = &_origins[origin_hash(origin)];
285 list_for_each_entry (o, ol, hash_list)
286 if (bdev_equal(o->bdev, origin))
287 return o;
288
289 return NULL;
290}
291
292static void __insert_origin(struct origin *o)
293{
294 struct list_head *sl = &_origins[origin_hash(o->bdev)];
295 list_add_tail(&o->hash_list, sl);
296}
297
298/*
299 * Make a note of the snapshot and its origin so we can look it
300 * up when the origin has a write on it.
301 */
302static int register_snapshot(struct dm_snapshot *snap)
303{
Mikulas Patocka60c856c82008-10-30 13:33:12 +0000304 struct origin *o, *new_o;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 struct block_device *bdev = snap->origin->bdev;
306
Mikulas Patocka60c856c82008-10-30 13:33:12 +0000307 new_o = kmalloc(sizeof(*new_o), GFP_KERNEL);
308 if (!new_o)
309 return -ENOMEM;
310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 down_write(&_origins_lock);
312 o = __lookup_origin(bdev);
313
Mikulas Patocka60c856c82008-10-30 13:33:12 +0000314 if (o)
315 kfree(new_o);
316 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 /* New origin */
Mikulas Patocka60c856c82008-10-30 13:33:12 +0000318 o = new_o;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
320 /* Initialise the struct */
321 INIT_LIST_HEAD(&o->snapshots);
322 o->bdev = bdev;
323
324 __insert_origin(o);
325 }
326
327 list_add_tail(&snap->list, &o->snapshots);
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.
Milan Brozd74f81f2008-02-08 02:11:27 +0000351 * The lowest hash_shift bits of the chunk number are ignored, allowing
352 * some consecutive chunks to be grouped together.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 */
Milan Brozd74f81f2008-02-08 02:11:27 +0000354static int init_exception_table(struct exception_table *et, uint32_t size,
355 unsigned hash_shift)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
357 unsigned int i;
358
Milan Brozd74f81f2008-02-08 02:11:27 +0000359 et->hash_shift = hash_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 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
Christoph Lametere18b8902006-12-06 20:33:20 -0800371static void exit_exception_table(struct exception_table *et, struct kmem_cache *mem)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372{
373 struct list_head *slot;
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100374 struct dm_snap_exception *ex, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 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
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100388static uint32_t exception_hash(struct exception_table *et, chunk_t chunk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389{
Milan Brozd74f81f2008-02-08 02:11:27 +0000390 return (chunk >> et->hash_shift) & et->hash_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391}
392
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100393static void insert_exception(struct exception_table *eh,
394 struct dm_snap_exception *e)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395{
396 struct list_head *l = &eh->table[exception_hash(eh, e->old_chunk)];
397 list_add(&e->hash_list, l);
398}
399
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100400static void remove_exception(struct dm_snap_exception *e)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401{
402 list_del(&e->hash_list);
403}
404
405/*
406 * Return the exception data for a sector, or NULL if not
407 * remapped.
408 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100409static struct dm_snap_exception *lookup_exception(struct exception_table *et,
410 chunk_t chunk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411{
412 struct list_head *slot;
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100413 struct dm_snap_exception *e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
415 slot = &et->table[exception_hash(et, chunk)];
416 list_for_each_entry (e, slot, hash_list)
Milan Brozd74f81f2008-02-08 02:11:27 +0000417 if (chunk >= e->old_chunk &&
418 chunk <= e->old_chunk + dm_consecutive_chunk_count(e))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 return e;
420
421 return NULL;
422}
423
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100424static struct dm_snap_exception *alloc_exception(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100426 struct dm_snap_exception *e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
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
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100435static void free_exception(struct dm_snap_exception *e)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
437 kmem_cache_free(exception_cache, e);
438}
439
Mikulas Patocka92e86812008-07-21 12:00:35 +0100440static struct dm_snap_pending_exception *alloc_pending_exception(struct dm_snapshot *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441{
Mikulas Patocka92e86812008-07-21 12:00:35 +0100442 struct dm_snap_pending_exception *pe = mempool_alloc(s->pending_pool,
443 GFP_NOIO);
444
Mikulas Patocka879129d22008-10-30 13:33:16 +0000445 atomic_inc(&s->pending_exceptions_count);
Mikulas Patocka92e86812008-07-21 12:00:35 +0100446 pe->snap = s;
447
448 return pe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449}
450
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100451static void free_pending_exception(struct dm_snap_pending_exception *pe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452{
Mikulas Patocka879129d22008-10-30 13:33:16 +0000453 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458}
459
Milan Brozd74f81f2008-02-08 02:11:27 +0000460static 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
Jonathan Brassowa159c1a2009-01-06 03:05:19 +0000503/*
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)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508{
Jonathan Brassowa159c1a2009-01-06 03:05:19 +0000509 struct dm_snapshot *s = context;
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100510 struct dm_snap_exception *e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
512 e = alloc_exception();
513 if (!e)
514 return -ENOMEM;
515
516 e->old_chunk = old;
Milan Brozd74f81f2008-02-08 02:11:27 +0000517
518 /* Consecutive_count is implicitly initialised to zero */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 e->new_chunk = new;
Milan Brozd74f81f2008-02-08 02:11:27 +0000520
521 insert_completed_exception(s, e);
522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 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
538/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 * Allocate room for a suitable hash table.
540 */
Jonathan Brassow49beb2b2009-04-02 19:55:33 +0100541static int init_hash_tables(struct dm_snapshot *s, chunk_t chunk_shift,
542 struct dm_dev *cow)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543{
544 sector_t hash_size, cow_dev_size, origin_dev_size, max_buckets;
545
546 /*
547 * Calculate based on the size of the original volume or
548 * the COW volume...
549 */
Jonathan Brassow49beb2b2009-04-02 19:55:33 +0100550 cow_dev_size = get_dev_size(cow->bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 origin_dev_size = get_dev_size(s->origin->bdev);
552 max_buckets = calc_max_buckets();
553
Jonathan Brassowd0216842009-04-02 19:55:32 +0100554 hash_size = min(origin_dev_size, cow_dev_size) >> chunk_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 hash_size = min(hash_size, max_buckets);
556
Robert P. J. Day8defd832008-02-08 02:10:06 +0000557 hash_size = rounddown_pow_of_two(hash_size);
Milan Brozd74f81f2008-02-08 02:11:27 +0000558 if (init_exception_table(&s->complete, hash_size,
559 DM_CHUNK_CONSECUTIVE_BITS))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 return -ENOMEM;
561
562 /*
563 * Allocate hash table for in-flight exceptions
564 * Make this smaller than the real hash table
565 */
566 hash_size >>= 3;
567 if (hash_size < 64)
568 hash_size = 64;
569
Milan Brozd74f81f2008-02-08 02:11:27 +0000570 if (init_exception_table(&s->pending, hash_size, 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 exit_exception_table(&s->complete, exception_cache);
572 return -ENOMEM;
573 }
574
575 return 0;
576}
577
578/*
579 * Round a number up to the nearest 'size' boundary. size must
580 * be a power of 2.
581 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100582static ulong round_up(ulong n, ulong size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583{
584 size--;
585 return (n + size) & ~size;
586}
587
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -0700588static int set_chunk_size(struct dm_snapshot *s, const char *chunk_size_arg,
Jonathan Brassowd0216842009-04-02 19:55:32 +0100589 chunk_t *chunk_size, chunk_t *chunk_mask,
Jonathan Brassow49beb2b2009-04-02 19:55:33 +0100590 chunk_t *chunk_shift, struct dm_dev *cow,
591 char **error)
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -0700592{
Jonathan Brassowd0216842009-04-02 19:55:32 +0100593 unsigned long chunk_size_ulong;
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -0700594 char *value;
595
Jonathan Brassowd0216842009-04-02 19:55:32 +0100596 chunk_size_ulong = simple_strtoul(chunk_size_arg, &value, 10);
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -0700597 if (*chunk_size_arg == '\0' || *value != '\0') {
598 *error = "Invalid chunk size";
599 return -EINVAL;
600 }
601
Jonathan Brassowd0216842009-04-02 19:55:32 +0100602 if (!chunk_size_ulong) {
603 *chunk_size = *chunk_mask = *chunk_shift = 0;
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -0700604 return 0;
605 }
606
607 /*
608 * Chunk size must be multiple of page size. Silently
609 * round up if it's not.
610 */
Jonathan Brassowd0216842009-04-02 19:55:32 +0100611 chunk_size_ulong = round_up(chunk_size_ulong, PAGE_SIZE >> 9);
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -0700612
613 /* Check chunk_size is a power of 2 */
Jonathan Brassowd0216842009-04-02 19:55:32 +0100614 if (!is_power_of_2(chunk_size_ulong)) {
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -0700615 *error = "Chunk size is not a power of 2";
616 return -EINVAL;
617 }
618
619 /* Validate the chunk size against the device block size */
Jonathan Brassow49beb2b2009-04-02 19:55:33 +0100620 if (chunk_size_ulong % (bdev_hardsect_size(cow->bdev) >> 9)) {
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -0700621 *error = "Chunk size is not a multiple of device blocksize";
622 return -EINVAL;
623 }
624
Jonathan Brassowd0216842009-04-02 19:55:32 +0100625 *chunk_size = chunk_size_ulong;
626 *chunk_mask = chunk_size_ulong - 1;
627 *chunk_shift = ffs(chunk_size_ulong) - 1;
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -0700628
629 return 0;
630}
631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632/*
633 * Construct a snapshot mapping: <origin_dev> <COW-dev> <p/n> <chunk-size>
634 */
635static int snapshot_ctr(struct dm_target *ti, unsigned int argc, char **argv)
636{
637 struct dm_snapshot *s;
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100638 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 int r = -EINVAL;
640 char persistent;
641 char *origin_path;
642 char *cow_path;
Jonathan Brassowd0216842009-04-02 19:55:32 +0100643 chunk_t chunk_size, chunk_mask, chunk_shift;
Jonathan Brassow49beb2b2009-04-02 19:55:33 +0100644 struct dm_dev *cow;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -0700646 if (argc != 4) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700647 ti->error = "requires exactly 4 arguments";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 r = -EINVAL;
649 goto bad1;
650 }
651
652 origin_path = argv[0];
653 cow_path = argv[1];
654 persistent = toupper(*argv[2]);
655
656 if (persistent != 'P' && persistent != 'N') {
657 ti->error = "Persistent flag is not P or N";
658 r = -EINVAL;
659 goto bad1;
660 }
661
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 s = kmalloc(sizeof(*s), GFP_KERNEL);
663 if (s == NULL) {
664 ti->error = "Cannot allocate snapshot context private "
665 "structure";
666 r = -ENOMEM;
667 goto bad1;
668 }
669
670 r = dm_get_device(ti, origin_path, 0, ti->len, FMODE_READ, &s->origin);
671 if (r) {
672 ti->error = "Cannot get origin device";
673 goto bad2;
674 }
675
676 r = dm_get_device(ti, cow_path, 0, 0,
Jonathan Brassow49beb2b2009-04-02 19:55:33 +0100677 FMODE_READ | FMODE_WRITE, &cow);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 if (r) {
679 dm_put_device(ti, s->origin);
680 ti->error = "Cannot get COW device";
681 goto bad2;
682 }
683
Jonathan Brassowd0216842009-04-02 19:55:32 +0100684 r = set_chunk_size(s, argv[3], &chunk_size, &chunk_mask, &chunk_shift,
Jonathan Brassow49beb2b2009-04-02 19:55:33 +0100685 cow, &ti->error);
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -0700686 if (r)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 goto bad3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 s->valid = 1;
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -0800690 s->active = 0;
Mikulas Patocka879129d22008-10-30 13:33:16 +0000691 atomic_set(&s->pending_exceptions_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 init_rwsem(&s->lock);
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700693 spin_lock_init(&s->pe_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
695 /* Allocate hash table for COW data */
Jonathan Brassow49beb2b2009-04-02 19:55:33 +0100696 if (init_hash_tables(s, chunk_shift, cow)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 ti->error = "Unable to allocate hash table space";
698 r = -ENOMEM;
699 goto bad3;
700 }
701
Jonathan Brassowd0216842009-04-02 19:55:32 +0100702 r = dm_exception_store_create(argv[2], ti, chunk_size, chunk_mask,
Jonathan Brassow49beb2b2009-04-02 19:55:33 +0100703 chunk_shift, cow, &s->store);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 if (r) {
705 ti->error = "Couldn't create exception store";
706 r = -EINVAL;
707 goto bad4;
708 }
709
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100710 r = dm_kcopyd_client_create(SNAPSHOT_PAGES, &s->kcopyd_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 if (r) {
712 ti->error = "Could not create kcopyd client";
713 goto bad5;
714 }
715
Mikulas Patocka92e86812008-07-21 12:00:35 +0100716 s->pending_pool = mempool_create_slab_pool(MIN_IOS, pending_cache);
717 if (!s->pending_pool) {
718 ti->error = "Could not allocate mempool for pending exceptions";
719 goto bad6;
720 }
721
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100722 s->tracked_chunk_pool = mempool_create_slab_pool(MIN_IOS,
723 tracked_chunk_cache);
724 if (!s->tracked_chunk_pool) {
725 ti->error = "Could not allocate tracked_chunk mempool for "
726 "tracking reads";
Mikulas Patocka92e86812008-07-21 12:00:35 +0100727 goto bad_tracked_chunk_pool;
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100728 }
729
730 for (i = 0; i < DM_TRACKED_CHUNK_HASH_SIZE; i++)
731 INIT_HLIST_HEAD(&s->tracked_chunk_hash[i]);
732
733 spin_lock_init(&s->tracked_chunk_lock);
734
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -0800735 /* Metadata must only be loaded into one table at once */
Jonathan Brassow493df712009-04-02 19:55:31 +0100736 r = s->store->type->read_metadata(s->store, dm_add_exception,
737 (void *)s);
Milan Broz07641472007-07-12 17:28:13 +0100738 if (r < 0) {
Mark McLoughlinf9cea4f2006-10-03 01:15:25 -0700739 ti->error = "Failed to read snapshot metadata";
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100740 goto bad_load_and_register;
Milan Broz07641472007-07-12 17:28:13 +0100741 } else if (r > 0) {
742 s->valid = 0;
743 DMWARN("Snapshot is marked invalid.");
Mark McLoughlinf9cea4f2006-10-03 01:15:25 -0700744 }
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -0800745
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700746 bio_list_init(&s->queued_bios);
David Howellsc4028952006-11-22 14:57:56 +0000747 INIT_WORK(&s->queued_bios_work, flush_queued_bios);
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700748
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 /* Add snapshot to the list of snapshots for this origin */
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -0800750 /* Exceptions aren't triggered till snapshot_resume() is called */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 if (register_snapshot(s)) {
752 r = -EINVAL;
753 ti->error = "Cannot register snapshot origin";
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100754 goto bad_load_and_register;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 }
756
757 ti->private = s;
Jonathan Brassowd0216842009-04-02 19:55:32 +0100758 ti->split_io = s->store->chunk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
760 return 0;
761
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100762 bad_load_and_register:
763 mempool_destroy(s->tracked_chunk_pool);
764
Mikulas Patocka92e86812008-07-21 12:00:35 +0100765 bad_tracked_chunk_pool:
766 mempool_destroy(s->pending_pool);
767
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 bad6:
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100769 dm_kcopyd_client_destroy(s->kcopyd_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
771 bad5:
Jonathan Brassow493df712009-04-02 19:55:31 +0100772 s->store->type->dtr(s->store);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
774 bad4:
775 exit_exception_table(&s->pending, pending_cache);
776 exit_exception_table(&s->complete, exception_cache);
777
778 bad3:
Jonathan Brassow49beb2b2009-04-02 19:55:33 +0100779 dm_put_device(ti, cow);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 dm_put_device(ti, s->origin);
781
782 bad2:
783 kfree(s);
784
785 bad1:
786 return r;
787}
788
Milan Broz31c93a02006-12-08 02:41:11 -0800789static void __free_exceptions(struct dm_snapshot *s)
790{
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100791 dm_kcopyd_client_destroy(s->kcopyd_client);
Milan Broz31c93a02006-12-08 02:41:11 -0800792 s->kcopyd_client = NULL;
793
794 exit_exception_table(&s->pending, pending_cache);
795 exit_exception_table(&s->complete, exception_cache);
796
Jonathan Brassow493df712009-04-02 19:55:31 +0100797 s->store->type->dtr(s->store);
Milan Broz31c93a02006-12-08 02:41:11 -0800798}
799
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800static void snapshot_dtr(struct dm_target *ti)
801{
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100802#ifdef CONFIG_DM_DEBUG
803 int i;
804#endif
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100805 struct dm_snapshot *s = ti->private;
Jonathan Brassow49beb2b2009-04-02 19:55:33 +0100806 struct dm_dev *cow = s->store->cow;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700808 flush_workqueue(ksnapd);
809
Alasdair G Kergon138728dc2006-03-27 01:17:50 -0800810 /* Prevent further origin writes from using this snapshot. */
811 /* After this returns there can be no new kcopyd jobs. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 unregister_snapshot(s);
813
Mikulas Patocka879129d22008-10-30 13:33:16 +0000814 while (atomic_read(&s->pending_exceptions_count))
Mikulas Patocka90fa1522009-01-06 03:04:54 +0000815 msleep(1);
Mikulas Patocka879129d22008-10-30 13:33:16 +0000816 /*
817 * Ensure instructions in mempool_destroy aren't reordered
818 * before atomic_read.
819 */
820 smp_mb();
821
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100822#ifdef CONFIG_DM_DEBUG
823 for (i = 0; i < DM_TRACKED_CHUNK_HASH_SIZE; i++)
824 BUG_ON(!hlist_empty(&s->tracked_chunk_hash[i]));
825#endif
826
827 mempool_destroy(s->tracked_chunk_pool);
828
Milan Broz31c93a02006-12-08 02:41:11 -0800829 __free_exceptions(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
Mikulas Patocka92e86812008-07-21 12:00:35 +0100831 mempool_destroy(s->pending_pool);
832
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 dm_put_device(ti, s->origin);
Jonathan Brassow49beb2b2009-04-02 19:55:33 +0100834 dm_put_device(ti, cow);
Alasdair G Kergon138728dc2006-03-27 01:17:50 -0800835
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 kfree(s);
837}
838
839/*
840 * Flush a list of buffers.
841 */
842static void flush_bios(struct bio *bio)
843{
844 struct bio *n;
845
846 while (bio) {
847 n = bio->bi_next;
848 bio->bi_next = NULL;
849 generic_make_request(bio);
850 bio = n;
851 }
852}
853
David Howellsc4028952006-11-22 14:57:56 +0000854static void flush_queued_bios(struct work_struct *work)
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700855{
David Howellsc4028952006-11-22 14:57:56 +0000856 struct dm_snapshot *s =
857 container_of(work, struct dm_snapshot, queued_bios_work);
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700858 struct bio *queued_bios;
859 unsigned long flags;
860
861 spin_lock_irqsave(&s->pe_lock, flags);
862 queued_bios = bio_list_get(&s->queued_bios);
863 spin_unlock_irqrestore(&s->pe_lock, flags);
864
865 flush_bios(queued_bios);
866}
867
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868/*
869 * Error a list of buffers.
870 */
871static void error_bios(struct bio *bio)
872{
873 struct bio *n;
874
875 while (bio) {
876 n = bio->bi_next;
877 bio->bi_next = NULL;
NeilBrown6712ecf2007-09-27 12:47:43 +0200878 bio_io_error(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 bio = n;
880 }
881}
882
Alasdair G Kergon695368a2006-10-03 01:15:31 -0700883static void __invalidate_snapshot(struct dm_snapshot *s, int err)
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800884{
885 if (!s->valid)
886 return;
887
888 if (err == -EIO)
889 DMERR("Invalidating snapshot: Error reading/writing.");
890 else if (err == -ENOMEM)
891 DMERR("Invalidating snapshot: Unable to allocate exception.");
892
Jonathan Brassow493df712009-04-02 19:55:31 +0100893 if (s->store->type->drop_snapshot)
894 s->store->type->drop_snapshot(s->store);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800895
896 s->valid = 0;
897
Jonathan Brassow0cea9c72009-04-02 19:55:32 +0100898 dm_table_event(s->store->ti->table);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800899}
900
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100901static void get_pending_exception(struct dm_snap_pending_exception *pe)
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700902{
903 atomic_inc(&pe->ref_count);
904}
905
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100906static struct bio *put_pending_exception(struct dm_snap_pending_exception *pe)
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700907{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100908 struct dm_snap_pending_exception *primary_pe;
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700909 struct bio *origin_bios = NULL;
910
911 primary_pe = pe->primary_pe;
912
913 /*
914 * If this pe is involved in a write to the origin and
915 * it is the last sibling to complete then release
916 * the bios for the original write to the origin.
917 */
918 if (primary_pe &&
Mikulas Patocka7c5f78b2008-10-21 17:44:51 +0100919 atomic_dec_and_test(&primary_pe->ref_count)) {
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700920 origin_bios = bio_list_get(&primary_pe->origin_bios);
Mikulas Patocka7c5f78b2008-10-21 17:44:51 +0100921 free_pending_exception(primary_pe);
922 }
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700923
924 /*
925 * Free the pe if it's not linked to an origin write or if
926 * it's not itself a primary pe.
927 */
928 if (!primary_pe || primary_pe != pe)
929 free_pending_exception(pe);
930
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700931 return origin_bios;
932}
933
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100934static void pending_complete(struct dm_snap_pending_exception *pe, int success)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100936 struct dm_snap_exception *e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 struct dm_snapshot *s = pe->snap;
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -0700938 struct bio *origin_bios = NULL;
939 struct bio *snapshot_bios = NULL;
940 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800942 if (!success) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 /* Read/write error - snapshot is unusable */
944 down_write(&s->lock);
Alasdair G Kergon695368a2006-10-03 01:15:31 -0700945 __invalidate_snapshot(s, -EIO);
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -0700946 error = 1;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800947 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 }
949
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800950 e = alloc_exception();
951 if (!e) {
952 down_write(&s->lock);
Alasdair G Kergon695368a2006-10-03 01:15:31 -0700953 __invalidate_snapshot(s, -ENOMEM);
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -0700954 error = 1;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800955 goto out;
956 }
957 *e = pe->e;
958
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -0700959 down_write(&s->lock);
960 if (!s->valid) {
961 free_exception(e);
962 error = 1;
963 goto out;
964 }
965
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800966 /*
Mikulas Patockaa8d41b52008-07-21 12:00:34 +0100967 * Check for conflicting reads. This is extremely improbable,
Mikulas Patocka90fa1522009-01-06 03:04:54 +0000968 * so msleep(1) is sufficient and there is no need for a wait queue.
Mikulas Patockaa8d41b52008-07-21 12:00:34 +0100969 */
970 while (__chunk_is_tracked(s, pe->e.old_chunk))
Mikulas Patocka90fa1522009-01-06 03:04:54 +0000971 msleep(1);
Mikulas Patockaa8d41b52008-07-21 12:00:34 +0100972
973 /*
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800974 * Add a proper exception, and remove the
975 * in-flight exception from the list.
976 */
Milan Brozd74f81f2008-02-08 02:11:27 +0000977 insert_completed_exception(s, e);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800978
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 out:
Alasdair G Kergon695368a2006-10-03 01:15:31 -0700980 remove_exception(&pe->e);
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -0700981 snapshot_bios = bio_list_get(&pe->snapshot_bios);
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700982 origin_bios = put_pending_exception(pe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -0700984 up_write(&s->lock);
985
986 /* Submit any pending write bios */
987 if (error)
988 error_bios(snapshot_bios);
989 else
990 flush_bios(snapshot_bios);
991
992 flush_bios(origin_bios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993}
994
995static void commit_callback(void *context, int success)
996{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100997 struct dm_snap_pending_exception *pe = context;
998
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 pending_complete(pe, success);
1000}
1001
1002/*
1003 * Called when the copy I/O has finished. kcopyd actually runs
1004 * this code so don't block.
1005 */
Alasdair G Kergon4cdc1d12008-03-28 14:16:10 -07001006static void copy_callback(int read_err, unsigned long write_err, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001008 struct dm_snap_pending_exception *pe = context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 struct dm_snapshot *s = pe->snap;
1010
1011 if (read_err || write_err)
1012 pending_complete(pe, 0);
1013
1014 else
1015 /* Update the metadata if we are persistent */
Jonathan Brassow493df712009-04-02 19:55:31 +01001016 s->store->type->commit_exception(s->store, &pe->e,
1017 commit_callback, pe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018}
1019
1020/*
1021 * Dispatches the copy operation to kcopyd.
1022 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001023static void start_copy(struct dm_snap_pending_exception *pe)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024{
1025 struct dm_snapshot *s = pe->snap;
Heinz Mauelshagen22a1ceb2008-04-24 21:43:17 +01001026 struct dm_io_region src, dest;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 struct block_device *bdev = s->origin->bdev;
1028 sector_t dev_size;
1029
1030 dev_size = get_dev_size(bdev);
1031
1032 src.bdev = bdev;
Jonathan Brassow71fab002009-04-02 19:55:33 +01001033 src.sector = chunk_to_sector(s->store, pe->e.old_chunk);
Jonathan Brassowd0216842009-04-02 19:55:32 +01001034 src.count = min(s->store->chunk_size, dev_size - src.sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
Jonathan Brassow49beb2b2009-04-02 19:55:33 +01001036 dest.bdev = s->store->cow->bdev;
Jonathan Brassow71fab002009-04-02 19:55:33 +01001037 dest.sector = chunk_to_sector(s->store, pe->e.new_chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 dest.count = src.count;
1039
1040 /* Hand over to kcopyd */
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +01001041 dm_kcopyd_copy(s->kcopyd_client,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 &src, 1, &dest, 0, copy_callback, pe);
1043}
1044
Mikulas Patocka29138082009-04-02 19:55:25 +01001045static struct dm_snap_pending_exception *
1046__lookup_pending_exception(struct dm_snapshot *s, chunk_t chunk)
1047{
1048 struct dm_snap_exception *e = lookup_exception(&s->pending, chunk);
1049
1050 if (!e)
1051 return NULL;
1052
1053 return container_of(e, struct dm_snap_pending_exception, e);
1054}
1055
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056/*
1057 * Looks to see if this snapshot already has a pending exception
1058 * for this chunk, otherwise it allocates a new one and inserts
1059 * it into the pending table.
1060 *
1061 * NOTE: a write lock must be held on snap->lock before calling
1062 * this.
1063 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001064static struct dm_snap_pending_exception *
Mikulas Patockac6621392009-04-02 19:55:25 +01001065__find_pending_exception(struct dm_snapshot *s,
1066 struct dm_snap_pending_exception *pe, chunk_t chunk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067{
Mikulas Patockac6621392009-04-02 19:55:25 +01001068 struct dm_snap_pending_exception *pe2;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001069
Mikulas Patocka29138082009-04-02 19:55:25 +01001070 pe2 = __lookup_pending_exception(s, chunk);
1071 if (pe2) {
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001072 free_pending_exception(pe);
Mikulas Patocka29138082009-04-02 19:55:25 +01001073 return pe2;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001074 }
1075
1076 pe->e.old_chunk = chunk;
1077 bio_list_init(&pe->origin_bios);
1078 bio_list_init(&pe->snapshot_bios);
1079 pe->primary_pe = NULL;
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001080 atomic_set(&pe->ref_count, 0);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001081 pe->started = 0;
1082
Jonathan Brassow493df712009-04-02 19:55:31 +01001083 if (s->store->type->prepare_exception(s->store, &pe->e)) {
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001084 free_pending_exception(pe);
1085 return NULL;
1086 }
1087
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001088 get_pending_exception(pe);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001089 insert_exception(&s->pending, &pe->e);
1090
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 return pe;
1092}
1093
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001094static void remap_exception(struct dm_snapshot *s, struct dm_snap_exception *e,
Milan Brozd74f81f2008-02-08 02:11:27 +00001095 struct bio *bio, chunk_t chunk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096{
Jonathan Brassow49beb2b2009-04-02 19:55:33 +01001097 bio->bi_bdev = s->store->cow->bdev;
Jonathan Brassow71fab002009-04-02 19:55:33 +01001098 bio->bi_sector = chunk_to_sector(s->store,
1099 dm_chunk_number(e->new_chunk) +
1100 (chunk - e->old_chunk)) +
1101 (bio->bi_sector &
1102 s->store->chunk_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103}
1104
1105static int snapshot_map(struct dm_target *ti, struct bio *bio,
1106 union map_info *map_context)
1107{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001108 struct dm_snap_exception *e;
1109 struct dm_snapshot *s = ti->private;
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001110 int r = DM_MAPIO_REMAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 chunk_t chunk;
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001112 struct dm_snap_pending_exception *pe = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113
Jonathan Brassow71fab002009-04-02 19:55:33 +01001114 chunk = sector_to_chunk(s->store, bio->bi_sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
1116 /* Full snapshots are not usable */
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001117 /* To get here the table must be live so s->active is always set. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 if (!s->valid)
Alasdair G Kergonf6a80ea2005-07-12 15:53:01 -07001119 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001121 /* FIXME: should only take write lock if we need
1122 * to copy an exception */
1123 down_write(&s->lock);
1124
1125 if (!s->valid) {
1126 r = -EIO;
1127 goto out_unlock;
1128 }
1129
1130 /* If the block is already remapped - use that, else remap it */
1131 e = lookup_exception(&s->complete, chunk);
1132 if (e) {
Milan Brozd74f81f2008-02-08 02:11:27 +00001133 remap_exception(s, e, bio, chunk);
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001134 goto out_unlock;
1135 }
1136
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 /*
1138 * Write to snapshot - higher level takes care of RW/RO
1139 * flags so we should only get this if we are
1140 * writeable.
1141 */
1142 if (bio_rw(bio) == WRITE) {
Mikulas Patocka29138082009-04-02 19:55:25 +01001143 pe = __lookup_pending_exception(s, chunk);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001144 if (!pe) {
Mikulas Patockac6621392009-04-02 19:55:25 +01001145 up_write(&s->lock);
1146 pe = alloc_pending_exception(s);
1147 down_write(&s->lock);
1148
1149 if (!s->valid) {
1150 free_pending_exception(pe);
1151 r = -EIO;
1152 goto out_unlock;
1153 }
1154
Mikulas Patocka35bf6592009-04-02 19:55:26 +01001155 e = lookup_exception(&s->complete, chunk);
1156 if (e) {
1157 free_pending_exception(pe);
1158 remap_exception(s, e, bio, chunk);
1159 goto out_unlock;
1160 }
1161
Mikulas Patockac6621392009-04-02 19:55:25 +01001162 pe = __find_pending_exception(s, pe, chunk);
Mikulas Patocka29138082009-04-02 19:55:25 +01001163 if (!pe) {
1164 __invalidate_snapshot(s, -ENOMEM);
1165 r = -EIO;
1166 goto out_unlock;
1167 }
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001168 }
1169
Milan Brozd74f81f2008-02-08 02:11:27 +00001170 remap_exception(s, &pe->e, bio, chunk);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001171 bio_list_add(&pe->snapshot_bios, bio);
1172
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001173 r = DM_MAPIO_SUBMITTED;
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001174
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001175 if (!pe->started) {
1176 /* this is protected by snap->lock */
1177 pe->started = 1;
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001178 up_write(&s->lock);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001179 start_copy(pe);
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001180 goto out;
1181 }
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001182 } else {
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001183 bio->bi_bdev = s->origin->bdev;
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001184 map_context->ptr = track_chunk(s, chunk);
1185 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001187 out_unlock:
1188 up_write(&s->lock);
1189 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 return r;
1191}
1192
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001193static int snapshot_end_io(struct dm_target *ti, struct bio *bio,
1194 int error, union map_info *map_context)
1195{
1196 struct dm_snapshot *s = ti->private;
1197 struct dm_snap_tracked_chunk *c = map_context->ptr;
1198
1199 if (c)
1200 stop_tracking_chunk(s, c);
1201
1202 return 0;
1203}
1204
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205static void snapshot_resume(struct dm_target *ti)
1206{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001207 struct dm_snapshot *s = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -08001209 down_write(&s->lock);
1210 s->active = 1;
1211 up_write(&s->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212}
1213
1214static int snapshot_status(struct dm_target *ti, status_type_t type,
1215 char *result, unsigned int maxlen)
1216{
Jonathan Brassow2e4a31d2009-04-02 19:55:34 +01001217 unsigned sz = 0;
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001218 struct dm_snapshot *snap = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
1220 switch (type) {
1221 case STATUSTYPE_INFO:
1222 if (!snap->valid)
Jonathan Brassow2e4a31d2009-04-02 19:55:34 +01001223 DMEMIT("Invalid");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 else {
Jonathan Brassow493df712009-04-02 19:55:31 +01001225 if (snap->store->type->fraction_full) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 sector_t numerator, denominator;
Jonathan Brassow493df712009-04-02 19:55:31 +01001227 snap->store->type->fraction_full(snap->store,
1228 &numerator,
1229 &denominator);
Jonathan Brassow2e4a31d2009-04-02 19:55:34 +01001230 DMEMIT("%llu/%llu",
1231 (unsigned long long)numerator,
1232 (unsigned long long)denominator);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 }
1234 else
Jonathan Brassow2e4a31d2009-04-02 19:55:34 +01001235 DMEMIT("Unknown");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 }
1237 break;
1238
1239 case STATUSTYPE_TABLE:
1240 /*
1241 * kdevname returns a static pointer so we need
1242 * to make private copies if the output is to
1243 * make sense.
1244 */
Jonathan Brassow2e4a31d2009-04-02 19:55:34 +01001245 DMEMIT("%s", snap->origin->name);
1246 DMEMIT(" %s %s %llu", snap->store->cow->name,
1247 snap->store->type->name,
1248 (unsigned long long)snap->store->chunk_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 break;
1250 }
1251
1252 return 0;
1253}
1254
1255/*-----------------------------------------------------------------
1256 * Origin methods
1257 *---------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258static int __origin_write(struct list_head *snapshots, struct bio *bio)
1259{
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001260 int r = DM_MAPIO_REMAPPED, first = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 struct dm_snapshot *snap;
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001262 struct dm_snap_exception *e;
1263 struct dm_snap_pending_exception *pe, *next_pe, *primary_pe = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 chunk_t chunk;
Alasdair G Kergoneccf0812006-03-27 01:17:42 -08001265 LIST_HEAD(pe_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
1267 /* Do all the snapshots on this origin */
1268 list_for_each_entry (snap, snapshots, list) {
1269
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001270 down_write(&snap->lock);
1271
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -08001272 /* Only deal with valid and active snapshots */
1273 if (!snap->valid || !snap->active)
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001274 goto next_snapshot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
Alasdair G Kergond5e404c2005-07-12 15:53:05 -07001276 /* Nothing to do if writing beyond end of snapshot */
Jonathan Brassow0cea9c72009-04-02 19:55:32 +01001277 if (bio->bi_sector >= dm_table_get_size(snap->store->ti->table))
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001278 goto next_snapshot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
1280 /*
1281 * Remember, different snapshots can have
1282 * different chunk sizes.
1283 */
Jonathan Brassow71fab002009-04-02 19:55:33 +01001284 chunk = sector_to_chunk(snap->store, bio->bi_sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
1286 /*
1287 * Check exception table to see if block
1288 * is already remapped in this snapshot
1289 * and trigger an exception if not.
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001290 *
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001291 * ref_count is initialised to 1 so pending_complete()
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001292 * won't destroy the primary_pe while we're inside this loop.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 */
1294 e = lookup_exception(&snap->complete, chunk);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001295 if (e)
1296 goto next_snapshot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
Mikulas Patocka29138082009-04-02 19:55:25 +01001298 pe = __lookup_pending_exception(snap, chunk);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001299 if (!pe) {
Mikulas Patockac6621392009-04-02 19:55:25 +01001300 up_write(&snap->lock);
1301 pe = alloc_pending_exception(snap);
1302 down_write(&snap->lock);
1303
1304 if (!snap->valid) {
1305 free_pending_exception(pe);
1306 goto next_snapshot;
1307 }
1308
Mikulas Patocka35bf6592009-04-02 19:55:26 +01001309 e = lookup_exception(&snap->complete, chunk);
1310 if (e) {
1311 free_pending_exception(pe);
1312 goto next_snapshot;
1313 }
1314
Mikulas Patockac6621392009-04-02 19:55:25 +01001315 pe = __find_pending_exception(snap, pe, chunk);
Mikulas Patocka29138082009-04-02 19:55:25 +01001316 if (!pe) {
1317 __invalidate_snapshot(snap, -ENOMEM);
1318 goto next_snapshot;
1319 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 }
1321
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001322 if (!primary_pe) {
1323 /*
1324 * Either every pe here has same
1325 * primary_pe or none has one yet.
1326 */
1327 if (pe->primary_pe)
1328 primary_pe = pe->primary_pe;
1329 else {
1330 primary_pe = pe;
1331 first = 1;
1332 }
1333
1334 bio_list_add(&primary_pe->origin_bios, bio);
1335
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001336 r = DM_MAPIO_SUBMITTED;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001337 }
1338
1339 if (!pe->primary_pe) {
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001340 pe->primary_pe = primary_pe;
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001341 get_pending_exception(primary_pe);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001342 }
1343
1344 if (!pe->started) {
1345 pe->started = 1;
1346 list_add_tail(&pe->list, &pe_queue);
1347 }
1348
1349 next_snapshot:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 up_write(&snap->lock);
1351 }
1352
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001353 if (!primary_pe)
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001354 return r;
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001355
1356 /*
1357 * If this is the first time we're processing this chunk and
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001358 * ref_count is now 1 it means all the pending exceptions
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001359 * got completed while we were in the loop above, so it falls to
1360 * us here to remove the primary_pe and submit any origin_bios.
1361 */
1362
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001363 if (first && atomic_dec_and_test(&primary_pe->ref_count)) {
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001364 flush_bios(bio_list_get(&primary_pe->origin_bios));
1365 free_pending_exception(primary_pe);
1366 /* If we got here, pe_queue is necessarily empty. */
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001367 return r;
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001368 }
1369
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 /*
1371 * Now that we have a complete pe list we can start the copying.
1372 */
Alasdair G Kergoneccf0812006-03-27 01:17:42 -08001373 list_for_each_entry_safe(pe, next_pe, &pe_queue, list)
1374 start_copy(pe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375
1376 return r;
1377}
1378
1379/*
1380 * Called on a write from the origin driver.
1381 */
1382static int do_origin(struct dm_dev *origin, struct bio *bio)
1383{
1384 struct origin *o;
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001385 int r = DM_MAPIO_REMAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
1387 down_read(&_origins_lock);
1388 o = __lookup_origin(origin->bdev);
1389 if (o)
1390 r = __origin_write(&o->snapshots, bio);
1391 up_read(&_origins_lock);
1392
1393 return r;
1394}
1395
1396/*
1397 * Origin: maps a linear range of a device, with hooks for snapshotting.
1398 */
1399
1400/*
1401 * Construct an origin mapping: <dev_path>
1402 * The context for an origin is merely a 'struct dm_dev *'
1403 * pointing to the real device.
1404 */
1405static int origin_ctr(struct dm_target *ti, unsigned int argc, char **argv)
1406{
1407 int r;
1408 struct dm_dev *dev;
1409
1410 if (argc != 1) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001411 ti->error = "origin: incorrect number of arguments";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 return -EINVAL;
1413 }
1414
1415 r = dm_get_device(ti, argv[0], 0, ti->len,
1416 dm_table_get_mode(ti->table), &dev);
1417 if (r) {
1418 ti->error = "Cannot get target device";
1419 return r;
1420 }
1421
1422 ti->private = dev;
1423 return 0;
1424}
1425
1426static void origin_dtr(struct dm_target *ti)
1427{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001428 struct dm_dev *dev = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 dm_put_device(ti, dev);
1430}
1431
1432static int origin_map(struct dm_target *ti, struct bio *bio,
1433 union map_info *map_context)
1434{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001435 struct dm_dev *dev = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 bio->bi_bdev = dev->bdev;
1437
1438 /* Only tell snapshots if this is a write */
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001439 return (bio_rw(bio) == WRITE) ? do_origin(dev, bio) : DM_MAPIO_REMAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440}
1441
1442#define min_not_zero(l, r) (l == 0) ? r : ((r == 0) ? l : min(l, r))
1443
1444/*
1445 * Set the target "split_io" field to the minimum of all the snapshots'
1446 * chunk sizes.
1447 */
1448static void origin_resume(struct dm_target *ti)
1449{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001450 struct dm_dev *dev = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 struct dm_snapshot *snap;
1452 struct origin *o;
1453 chunk_t chunk_size = 0;
1454
1455 down_read(&_origins_lock);
1456 o = __lookup_origin(dev->bdev);
1457 if (o)
1458 list_for_each_entry (snap, &o->snapshots, list)
Jonathan Brassowd0216842009-04-02 19:55:32 +01001459 chunk_size = min_not_zero(chunk_size,
1460 snap->store->chunk_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 up_read(&_origins_lock);
1462
1463 ti->split_io = chunk_size;
1464}
1465
1466static int origin_status(struct dm_target *ti, status_type_t type, char *result,
1467 unsigned int maxlen)
1468{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001469 struct dm_dev *dev = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
1471 switch (type) {
1472 case STATUSTYPE_INFO:
1473 result[0] = '\0';
1474 break;
1475
1476 case STATUSTYPE_TABLE:
1477 snprintf(result, maxlen, "%s", dev->name);
1478 break;
1479 }
1480
1481 return 0;
1482}
1483
1484static struct target_type origin_target = {
1485 .name = "snapshot-origin",
Milan Brozd74f81f2008-02-08 02:11:27 +00001486 .version = {1, 6, 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 .module = THIS_MODULE,
1488 .ctr = origin_ctr,
1489 .dtr = origin_dtr,
1490 .map = origin_map,
1491 .resume = origin_resume,
1492 .status = origin_status,
1493};
1494
1495static struct target_type snapshot_target = {
1496 .name = "snapshot",
Milan Brozd74f81f2008-02-08 02:11:27 +00001497 .version = {1, 6, 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 .module = THIS_MODULE,
1499 .ctr = snapshot_ctr,
1500 .dtr = snapshot_dtr,
1501 .map = snapshot_map,
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001502 .end_io = snapshot_end_io,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 .resume = snapshot_resume,
1504 .status = snapshot_status,
1505};
1506
1507static int __init dm_snapshot_init(void)
1508{
1509 int r;
1510
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00001511 r = dm_exception_store_init();
1512 if (r) {
1513 DMERR("Failed to initialize exception stores");
1514 return r;
1515 }
1516
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 r = dm_register_target(&snapshot_target);
1518 if (r) {
1519 DMERR("snapshot target register failed %d", r);
1520 return r;
1521 }
1522
1523 r = dm_register_target(&origin_target);
1524 if (r < 0) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001525 DMERR("Origin target register failed %d", r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 goto bad1;
1527 }
1528
1529 r = init_origin_hash();
1530 if (r) {
1531 DMERR("init_origin_hash failed.");
1532 goto bad2;
1533 }
1534
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001535 exception_cache = KMEM_CACHE(dm_snap_exception, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 if (!exception_cache) {
1537 DMERR("Couldn't create exception cache.");
1538 r = -ENOMEM;
1539 goto bad3;
1540 }
1541
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001542 pending_cache = KMEM_CACHE(dm_snap_pending_exception, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 if (!pending_cache) {
1544 DMERR("Couldn't create pending cache.");
1545 r = -ENOMEM;
1546 goto bad4;
1547 }
1548
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001549 tracked_chunk_cache = KMEM_CACHE(dm_snap_tracked_chunk, 0);
1550 if (!tracked_chunk_cache) {
1551 DMERR("Couldn't create cache to track chunks in use.");
1552 r = -ENOMEM;
1553 goto bad5;
1554 }
1555
Alasdair G Kergonca3a9312006-10-03 01:15:30 -07001556 ksnapd = create_singlethread_workqueue("ksnapd");
1557 if (!ksnapd) {
1558 DMERR("Failed to create ksnapd workqueue.");
1559 r = -ENOMEM;
Mikulas Patocka92e86812008-07-21 12:00:35 +01001560 goto bad_pending_pool;
Alasdair G Kergonca3a9312006-10-03 01:15:30 -07001561 }
1562
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 return 0;
1564
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00001565bad_pending_pool:
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001566 kmem_cache_destroy(tracked_chunk_cache);
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00001567bad5:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 kmem_cache_destroy(pending_cache);
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00001569bad4:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 kmem_cache_destroy(exception_cache);
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00001571bad3:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 exit_origin_hash();
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00001573bad2:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 dm_unregister_target(&origin_target);
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00001575bad1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 dm_unregister_target(&snapshot_target);
1577 return r;
1578}
1579
1580static void __exit dm_snapshot_exit(void)
1581{
Alasdair G Kergonca3a9312006-10-03 01:15:30 -07001582 destroy_workqueue(ksnapd);
1583
Mikulas Patocka10d3bd02009-01-06 03:04:58 +00001584 dm_unregister_target(&snapshot_target);
1585 dm_unregister_target(&origin_target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586
1587 exit_origin_hash();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 kmem_cache_destroy(pending_cache);
1589 kmem_cache_destroy(exception_cache);
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001590 kmem_cache_destroy(tracked_chunk_cache);
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00001591
1592 dm_exception_store_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593}
1594
1595/* Module hooks */
1596module_init(dm_snapshot_init);
1597module_exit(dm_snapshot_exit);
1598
1599MODULE_DESCRIPTION(DM_NAME " snapshot target");
1600MODULE_AUTHOR("Joe Thornber");
1601MODULE_LICENSE("GPL");