blob: 48978ab42ae5daa6ed055af24614ec1b4254aeef [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
Alasdair G Kergon72d94862006-06-26 00:27:35 -070026#define DM_MSG_PREFIX "snapshots"
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028/*
29 * The percentage increment we will wake up users at
30 */
31#define WAKE_UP_PERCENT 5
32
33/*
34 * kcopyd priority of snapshot operations
35 */
36#define SNAPSHOT_COPY_PRIORITY 2
37
38/*
Milan Broz8ee27672008-04-24 21:42:36 +010039 * Reserve 1MB for each snapshot initially (with minimum of 1 page).
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 */
Milan Broz8ee27672008-04-24 21:42:36 +010041#define SNAPSHOT_PAGES (((1UL << 20) >> PAGE_SHIFT) ? : 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Mikulas Patockacd45daf2008-07-21 12:00:32 +010043/*
44 * The size of the mempool used to track chunks in use.
45 */
46#define MIN_IOS 256
47
Jonathan Brassowccc45ea2009-04-02 19:55:34 +010048#define DM_TRACKED_CHUNK_HASH_SIZE 16
49#define DM_TRACKED_CHUNK_HASH(x) ((unsigned long)(x) & \
50 (DM_TRACKED_CHUNK_HASH_SIZE - 1))
51
52struct exception_table {
53 uint32_t hash_mask;
54 unsigned hash_shift;
55 struct list_head *table;
56};
57
58struct dm_snapshot {
59 struct rw_semaphore lock;
60
61 struct dm_dev *origin;
62
63 /* List of snapshots per Origin */
64 struct list_head list;
65
66 /* You can't use a snapshot if this is 0 (e.g. if full) */
67 int valid;
68
69 /* Origin writes don't trigger exceptions until this is set */
70 int active;
71
Jonathan Brassowccc45ea2009-04-02 19:55:34 +010072 mempool_t *pending_pool;
73
74 atomic_t pending_exceptions_count;
75
76 struct exception_table pending;
77 struct exception_table complete;
78
79 /*
80 * pe_lock protects all pending_exception operations and access
81 * as well as the snapshot_bios list.
82 */
83 spinlock_t pe_lock;
84
85 /* The on disk metadata handler */
86 struct dm_exception_store *store;
87
88 struct dm_kcopyd_client *kcopyd_client;
89
90 /* Queue of snapshot writes for ksnapd to flush */
91 struct bio_list queued_bios;
92 struct work_struct queued_bios_work;
93
94 /* Chunks with outstanding reads */
95 mempool_t *tracked_chunk_pool;
96 spinlock_t tracked_chunk_lock;
97 struct hlist_head tracked_chunk_hash[DM_TRACKED_CHUNK_HASH_SIZE];
98};
99
Adrian Bunkc642f9e2006-12-08 02:41:13 -0800100static struct workqueue_struct *ksnapd;
David Howellsc4028952006-11-22 14:57:56 +0000101static void flush_queued_bios(struct work_struct *work);
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700102
Jonathan Brassowccc45ea2009-04-02 19:55:34 +0100103static sector_t chunk_to_sector(struct dm_exception_store *store,
104 chunk_t chunk)
105{
106 return chunk << store->chunk_shift;
107}
108
109static int bdev_equal(struct block_device *lhs, struct block_device *rhs)
110{
111 /*
112 * There is only ever one instance of a particular block
113 * device so we can compare pointers safely.
114 */
115 return lhs == rhs;
116}
117
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100118struct dm_snap_pending_exception {
119 struct dm_snap_exception e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121 /*
122 * Origin buffers waiting for this to complete are held
123 * in a bio list
124 */
125 struct bio_list origin_bios;
126 struct bio_list snapshot_bios;
127
128 /*
Alasdair G Kergoneccf0812006-03-27 01:17:42 -0800129 * Short-term queue of pending exceptions prior to submission.
130 */
131 struct list_head list;
132
133 /*
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -0800134 * The primary pending_exception is the one that holds
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700135 * the ref_count and the list of origin_bios for a
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -0800136 * group of pending_exceptions. It is always last to get freed.
137 * These fields get set up when writing to the origin.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100139 struct dm_snap_pending_exception *primary_pe;
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -0800140
141 /*
142 * Number of pending_exceptions processing this chunk.
143 * When this drops to zero we must complete the origin bios.
144 * If incrementing or decrementing this, hold pe->snap->lock for
145 * the sibling concerned and not pe->primary_pe->snap->lock unless
146 * they are the same.
147 */
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700148 atomic_t ref_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150 /* Pointer back to snapshot context */
151 struct dm_snapshot *snap;
152
153 /*
154 * 1 indicates the exception has already been sent to
155 * kcopyd.
156 */
157 int started;
158};
159
160/*
161 * Hash table mapping origin volumes to lists of snapshots and
162 * a lock to protect it
163 */
Christoph Lametere18b8902006-12-06 20:33:20 -0800164static struct kmem_cache *exception_cache;
165static struct kmem_cache *pending_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100167struct dm_snap_tracked_chunk {
168 struct hlist_node node;
169 chunk_t chunk;
170};
171
172static struct kmem_cache *tracked_chunk_cache;
173
174static struct dm_snap_tracked_chunk *track_chunk(struct dm_snapshot *s,
175 chunk_t chunk)
176{
177 struct dm_snap_tracked_chunk *c = mempool_alloc(s->tracked_chunk_pool,
178 GFP_NOIO);
179 unsigned long flags;
180
181 c->chunk = chunk;
182
183 spin_lock_irqsave(&s->tracked_chunk_lock, flags);
184 hlist_add_head(&c->node,
185 &s->tracked_chunk_hash[DM_TRACKED_CHUNK_HASH(chunk)]);
186 spin_unlock_irqrestore(&s->tracked_chunk_lock, flags);
187
188 return c;
189}
190
191static void stop_tracking_chunk(struct dm_snapshot *s,
192 struct dm_snap_tracked_chunk *c)
193{
194 unsigned long flags;
195
196 spin_lock_irqsave(&s->tracked_chunk_lock, flags);
197 hlist_del(&c->node);
198 spin_unlock_irqrestore(&s->tracked_chunk_lock, flags);
199
200 mempool_free(c, s->tracked_chunk_pool);
201}
202
Mikulas Patockaa8d41b52008-07-21 12:00:34 +0100203static int __chunk_is_tracked(struct dm_snapshot *s, chunk_t chunk)
204{
205 struct dm_snap_tracked_chunk *c;
206 struct hlist_node *hn;
207 int found = 0;
208
209 spin_lock_irq(&s->tracked_chunk_lock);
210
211 hlist_for_each_entry(c, hn,
212 &s->tracked_chunk_hash[DM_TRACKED_CHUNK_HASH(chunk)], node) {
213 if (c->chunk == chunk) {
214 found = 1;
215 break;
216 }
217 }
218
219 spin_unlock_irq(&s->tracked_chunk_lock);
220
221 return found;
222}
223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224/*
225 * One of these per registered origin, held in the snapshot_origins hash
226 */
227struct origin {
228 /* The origin device */
229 struct block_device *bdev;
230
231 struct list_head hash_list;
232
233 /* List of snapshots for this origin */
234 struct list_head snapshots;
235};
236
237/*
238 * Size of the hash table for origin volumes. If we make this
239 * the size of the minors list then it should be nearly perfect
240 */
241#define ORIGIN_HASH_SIZE 256
242#define ORIGIN_MASK 0xFF
243static struct list_head *_origins;
244static struct rw_semaphore _origins_lock;
245
246static int init_origin_hash(void)
247{
248 int i;
249
250 _origins = kmalloc(ORIGIN_HASH_SIZE * sizeof(struct list_head),
251 GFP_KERNEL);
252 if (!_origins) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700253 DMERR("unable to allocate memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 return -ENOMEM;
255 }
256
257 for (i = 0; i < ORIGIN_HASH_SIZE; i++)
258 INIT_LIST_HEAD(_origins + i);
259 init_rwsem(&_origins_lock);
260
261 return 0;
262}
263
264static void exit_origin_hash(void)
265{
266 kfree(_origins);
267}
268
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100269static unsigned origin_hash(struct block_device *bdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270{
271 return bdev->bd_dev & ORIGIN_MASK;
272}
273
274static struct origin *__lookup_origin(struct block_device *origin)
275{
276 struct list_head *ol;
277 struct origin *o;
278
279 ol = &_origins[origin_hash(origin)];
280 list_for_each_entry (o, ol, hash_list)
281 if (bdev_equal(o->bdev, origin))
282 return o;
283
284 return NULL;
285}
286
287static void __insert_origin(struct origin *o)
288{
289 struct list_head *sl = &_origins[origin_hash(o->bdev)];
290 list_add_tail(&o->hash_list, sl);
291}
292
293/*
294 * Make a note of the snapshot and its origin so we can look it
295 * up when the origin has a write on it.
296 */
297static int register_snapshot(struct dm_snapshot *snap)
298{
Mikulas Patocka6d45d932009-10-16 23:18:14 +0100299 struct dm_snapshot *l;
Mikulas Patocka60c856c82008-10-30 13:33:12 +0000300 struct origin *o, *new_o;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 struct block_device *bdev = snap->origin->bdev;
302
Mikulas Patocka60c856c82008-10-30 13:33:12 +0000303 new_o = kmalloc(sizeof(*new_o), GFP_KERNEL);
304 if (!new_o)
305 return -ENOMEM;
306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 down_write(&_origins_lock);
308 o = __lookup_origin(bdev);
309
Mikulas Patocka60c856c82008-10-30 13:33:12 +0000310 if (o)
311 kfree(new_o);
312 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 /* New origin */
Mikulas Patocka60c856c82008-10-30 13:33:12 +0000314 o = new_o;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
316 /* Initialise the struct */
317 INIT_LIST_HEAD(&o->snapshots);
318 o->bdev = bdev;
319
320 __insert_origin(o);
321 }
322
Mikulas Patocka6d45d932009-10-16 23:18:14 +0100323 /* Sort the list according to chunk size, largest-first smallest-last */
324 list_for_each_entry(l, &o->snapshots, list)
325 if (l->store->chunk_size < snap->store->chunk_size)
326 break;
327 list_add_tail(&snap->list, &l->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
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
Mikulas Patocka7e201b32009-12-10 23:52:08 +0000526#define min_not_zero(l, r) (((l) == 0) ? (r) : (((r) == 0) ? (l) : min(l, r)))
527
528/*
529 * Return a minimum chunk size of all snapshots that have the specified origin.
530 * Return zero if the origin has no snapshots.
531 */
532static sector_t __minimum_chunk_size(struct origin *o)
533{
534 struct dm_snapshot *snap;
535 unsigned chunk_size = 0;
536
537 if (o)
538 list_for_each_entry(snap, &o->snapshots, list)
539 chunk_size = min_not_zero(chunk_size,
540 snap->store->chunk_size);
541
542 return chunk_size;
543}
544
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545/*
546 * Hard coded magic.
547 */
548static int calc_max_buckets(void)
549{
550 /* use a fixed size of 2MB */
551 unsigned long mem = 2 * 1024 * 1024;
552 mem /= sizeof(struct list_head);
553
554 return mem;
555}
556
557/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 * Allocate room for a suitable hash table.
559 */
Jonathan Brassowfee19982009-04-02 19:55:34 +0100560static int init_hash_tables(struct dm_snapshot *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561{
562 sector_t hash_size, cow_dev_size, origin_dev_size, max_buckets;
563
564 /*
565 * Calculate based on the size of the original volume or
566 * the COW volume...
567 */
Jonathan Brassowfee19982009-04-02 19:55:34 +0100568 cow_dev_size = get_dev_size(s->store->cow->bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 origin_dev_size = get_dev_size(s->origin->bdev);
570 max_buckets = calc_max_buckets();
571
Jonathan Brassowfee19982009-04-02 19:55:34 +0100572 hash_size = min(origin_dev_size, cow_dev_size) >> s->store->chunk_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 hash_size = min(hash_size, max_buckets);
574
Mikulas Patocka8e87b9b2009-12-10 23:51:54 +0000575 if (hash_size < 64)
576 hash_size = 64;
Robert P. J. Day8defd832008-02-08 02:10:06 +0000577 hash_size = rounddown_pow_of_two(hash_size);
Milan Brozd74f81f2008-02-08 02:11:27 +0000578 if (init_exception_table(&s->complete, hash_size,
579 DM_CHUNK_CONSECUTIVE_BITS))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 return -ENOMEM;
581
582 /*
583 * Allocate hash table for in-flight exceptions
584 * Make this smaller than the real hash table
585 */
586 hash_size >>= 3;
587 if (hash_size < 64)
588 hash_size = 64;
589
Milan Brozd74f81f2008-02-08 02:11:27 +0000590 if (init_exception_table(&s->pending, hash_size, 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 exit_exception_table(&s->complete, exception_cache);
592 return -ENOMEM;
593 }
594
595 return 0;
596}
597
598/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 * Construct a snapshot mapping: <origin_dev> <COW-dev> <p/n> <chunk-size>
600 */
601static int snapshot_ctr(struct dm_target *ti, unsigned int argc, char **argv)
602{
603 struct dm_snapshot *s;
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100604 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 int r = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 char *origin_path;
Jonathan Brassowfee19982009-04-02 19:55:34 +0100607 struct dm_exception_store *store;
608 unsigned args_used;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -0700610 if (argc != 4) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700611 ti->error = "requires exactly 4 arguments";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 r = -EINVAL;
Jonathan Brassowfee19982009-04-02 19:55:34 +0100613 goto bad_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 }
615
616 origin_path = argv[0];
Jonathan Brassowfee19982009-04-02 19:55:34 +0100617 argv++;
618 argc--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Jonathan Brassowfee19982009-04-02 19:55:34 +0100620 r = dm_exception_store_create(ti, argc, argv, &args_used, &store);
621 if (r) {
622 ti->error = "Couldn't create exception store";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 r = -EINVAL;
Jonathan Brassowfee19982009-04-02 19:55:34 +0100624 goto bad_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 }
626
Jonathan Brassowfee19982009-04-02 19:55:34 +0100627 argv += args_used;
628 argc -= args_used;
629
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 s = kmalloc(sizeof(*s), GFP_KERNEL);
Jonathan Brassowfee19982009-04-02 19:55:34 +0100631 if (!s) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 ti->error = "Cannot allocate snapshot context private "
633 "structure";
634 r = -ENOMEM;
Jonathan Brassowfee19982009-04-02 19:55:34 +0100635 goto bad_snap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 }
637
638 r = dm_get_device(ti, origin_path, 0, ti->len, FMODE_READ, &s->origin);
639 if (r) {
640 ti->error = "Cannot get origin device";
Jonathan Brassowfee19982009-04-02 19:55:34 +0100641 goto bad_origin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 }
643
Jonathan Brassowfee19982009-04-02 19:55:34 +0100644 s->store = store;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 s->valid = 1;
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -0800646 s->active = 0;
Mikulas Patocka879129d22008-10-30 13:33:16 +0000647 atomic_set(&s->pending_exceptions_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 init_rwsem(&s->lock);
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700649 spin_lock_init(&s->pe_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
651 /* Allocate hash table for COW data */
Jonathan Brassowfee19982009-04-02 19:55:34 +0100652 if (init_hash_tables(s)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 ti->error = "Unable to allocate hash table space";
654 r = -ENOMEM;
Jonathan Brassowfee19982009-04-02 19:55:34 +0100655 goto bad_hash_tables;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 }
657
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100658 r = dm_kcopyd_client_create(SNAPSHOT_PAGES, &s->kcopyd_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 if (r) {
660 ti->error = "Could not create kcopyd client";
Jonathan Brassowfee19982009-04-02 19:55:34 +0100661 goto bad_kcopyd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 }
663
Mikulas Patocka92e86812008-07-21 12:00:35 +0100664 s->pending_pool = mempool_create_slab_pool(MIN_IOS, pending_cache);
665 if (!s->pending_pool) {
666 ti->error = "Could not allocate mempool for pending exceptions";
Jonathan Brassowfee19982009-04-02 19:55:34 +0100667 goto bad_pending_pool;
Mikulas Patocka92e86812008-07-21 12:00:35 +0100668 }
669
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100670 s->tracked_chunk_pool = mempool_create_slab_pool(MIN_IOS,
671 tracked_chunk_cache);
672 if (!s->tracked_chunk_pool) {
673 ti->error = "Could not allocate tracked_chunk mempool for "
674 "tracking reads";
Mikulas Patocka92e86812008-07-21 12:00:35 +0100675 goto bad_tracked_chunk_pool;
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100676 }
677
678 for (i = 0; i < DM_TRACKED_CHUNK_HASH_SIZE; i++)
679 INIT_HLIST_HEAD(&s->tracked_chunk_hash[i]);
680
681 spin_lock_init(&s->tracked_chunk_lock);
682
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -0800683 /* Metadata must only be loaded into one table at once */
Jonathan Brassow493df712009-04-02 19:55:31 +0100684 r = s->store->type->read_metadata(s->store, dm_add_exception,
685 (void *)s);
Milan Broz07641472007-07-12 17:28:13 +0100686 if (r < 0) {
Mark McLoughlinf9cea4f2006-10-03 01:15:25 -0700687 ti->error = "Failed to read snapshot metadata";
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100688 goto bad_load_and_register;
Milan Broz07641472007-07-12 17:28:13 +0100689 } else if (r > 0) {
690 s->valid = 0;
691 DMWARN("Snapshot is marked invalid.");
Mark McLoughlinf9cea4f2006-10-03 01:15:25 -0700692 }
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -0800693
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700694 bio_list_init(&s->queued_bios);
David Howellsc4028952006-11-22 14:57:56 +0000695 INIT_WORK(&s->queued_bios_work, flush_queued_bios);
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700696
Mikulas Patocka3f2412d2009-10-16 23:18:16 +0100697 if (!s->store->chunk_size) {
698 ti->error = "Chunk size not set";
699 goto bad_load_and_register;
700 }
701
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 /* Add snapshot to the list of snapshots for this origin */
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -0800703 /* Exceptions aren't triggered till snapshot_resume() is called */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 if (register_snapshot(s)) {
705 r = -EINVAL;
706 ti->error = "Cannot register snapshot origin";
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100707 goto bad_load_and_register;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 }
709
710 ti->private = s;
Jonathan Brassowd0216842009-04-02 19:55:32 +0100711 ti->split_io = s->store->chunk_size;
Mikulas Patocka494b3ee2009-06-22 10:12:25 +0100712 ti->num_flush_requests = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
714 return 0;
715
Jonathan Brassowfee19982009-04-02 19:55:34 +0100716bad_load_and_register:
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100717 mempool_destroy(s->tracked_chunk_pool);
718
Jonathan Brassowfee19982009-04-02 19:55:34 +0100719bad_tracked_chunk_pool:
Mikulas Patocka92e86812008-07-21 12:00:35 +0100720 mempool_destroy(s->pending_pool);
721
Jonathan Brassowfee19982009-04-02 19:55:34 +0100722bad_pending_pool:
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100723 dm_kcopyd_client_destroy(s->kcopyd_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
Jonathan Brassowfee19982009-04-02 19:55:34 +0100725bad_kcopyd:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 exit_exception_table(&s->pending, pending_cache);
727 exit_exception_table(&s->complete, exception_cache);
728
Jonathan Brassowfee19982009-04-02 19:55:34 +0100729bad_hash_tables:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 dm_put_device(ti, s->origin);
731
Jonathan Brassowfee19982009-04-02 19:55:34 +0100732bad_origin:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 kfree(s);
734
Jonathan Brassowfee19982009-04-02 19:55:34 +0100735bad_snap:
736 dm_exception_store_destroy(store);
737
738bad_args:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 return r;
740}
741
Milan Broz31c93a02006-12-08 02:41:11 -0800742static void __free_exceptions(struct dm_snapshot *s)
743{
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100744 dm_kcopyd_client_destroy(s->kcopyd_client);
Milan Broz31c93a02006-12-08 02:41:11 -0800745 s->kcopyd_client = NULL;
746
747 exit_exception_table(&s->pending, pending_cache);
748 exit_exception_table(&s->complete, exception_cache);
Milan Broz31c93a02006-12-08 02:41:11 -0800749}
750
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751static void snapshot_dtr(struct dm_target *ti)
752{
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100753#ifdef CONFIG_DM_DEBUG
754 int i;
755#endif
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100756 struct dm_snapshot *s = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700758 flush_workqueue(ksnapd);
759
Alasdair G Kergon138728dc2006-03-27 01:17:50 -0800760 /* Prevent further origin writes from using this snapshot. */
761 /* After this returns there can be no new kcopyd jobs. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 unregister_snapshot(s);
763
Mikulas Patocka879129d22008-10-30 13:33:16 +0000764 while (atomic_read(&s->pending_exceptions_count))
Mikulas Patocka90fa1522009-01-06 03:04:54 +0000765 msleep(1);
Mikulas Patocka879129d22008-10-30 13:33:16 +0000766 /*
767 * Ensure instructions in mempool_destroy aren't reordered
768 * before atomic_read.
769 */
770 smp_mb();
771
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100772#ifdef CONFIG_DM_DEBUG
773 for (i = 0; i < DM_TRACKED_CHUNK_HASH_SIZE; i++)
774 BUG_ON(!hlist_empty(&s->tracked_chunk_hash[i]));
775#endif
776
777 mempool_destroy(s->tracked_chunk_pool);
778
Milan Broz31c93a02006-12-08 02:41:11 -0800779 __free_exceptions(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
Mikulas Patocka92e86812008-07-21 12:00:35 +0100781 mempool_destroy(s->pending_pool);
782
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 dm_put_device(ti, s->origin);
Jonathan Brassowfee19982009-04-02 19:55:34 +0100784
785 dm_exception_store_destroy(s->store);
Alasdair G Kergon138728dc2006-03-27 01:17:50 -0800786
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 kfree(s);
788}
789
790/*
791 * Flush a list of buffers.
792 */
793static void flush_bios(struct bio *bio)
794{
795 struct bio *n;
796
797 while (bio) {
798 n = bio->bi_next;
799 bio->bi_next = NULL;
800 generic_make_request(bio);
801 bio = n;
802 }
803}
804
David Howellsc4028952006-11-22 14:57:56 +0000805static void flush_queued_bios(struct work_struct *work)
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700806{
David Howellsc4028952006-11-22 14:57:56 +0000807 struct dm_snapshot *s =
808 container_of(work, struct dm_snapshot, queued_bios_work);
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700809 struct bio *queued_bios;
810 unsigned long flags;
811
812 spin_lock_irqsave(&s->pe_lock, flags);
813 queued_bios = bio_list_get(&s->queued_bios);
814 spin_unlock_irqrestore(&s->pe_lock, flags);
815
816 flush_bios(queued_bios);
817}
818
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819/*
820 * Error a list of buffers.
821 */
822static void error_bios(struct bio *bio)
823{
824 struct bio *n;
825
826 while (bio) {
827 n = bio->bi_next;
828 bio->bi_next = NULL;
NeilBrown6712ecf2007-09-27 12:47:43 +0200829 bio_io_error(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 bio = n;
831 }
832}
833
Alasdair G Kergon695368a2006-10-03 01:15:31 -0700834static void __invalidate_snapshot(struct dm_snapshot *s, int err)
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800835{
836 if (!s->valid)
837 return;
838
839 if (err == -EIO)
840 DMERR("Invalidating snapshot: Error reading/writing.");
841 else if (err == -ENOMEM)
842 DMERR("Invalidating snapshot: Unable to allocate exception.");
843
Jonathan Brassow493df712009-04-02 19:55:31 +0100844 if (s->store->type->drop_snapshot)
845 s->store->type->drop_snapshot(s->store);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800846
847 s->valid = 0;
848
Jonathan Brassow0cea9c72009-04-02 19:55:32 +0100849 dm_table_event(s->store->ti->table);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800850}
851
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100852static void get_pending_exception(struct dm_snap_pending_exception *pe)
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700853{
854 atomic_inc(&pe->ref_count);
855}
856
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100857static struct bio *put_pending_exception(struct dm_snap_pending_exception *pe)
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700858{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100859 struct dm_snap_pending_exception *primary_pe;
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700860 struct bio *origin_bios = NULL;
861
862 primary_pe = pe->primary_pe;
863
864 /*
865 * If this pe is involved in a write to the origin and
866 * it is the last sibling to complete then release
867 * the bios for the original write to the origin.
868 */
869 if (primary_pe &&
Mikulas Patocka7c5f78b2008-10-21 17:44:51 +0100870 atomic_dec_and_test(&primary_pe->ref_count)) {
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700871 origin_bios = bio_list_get(&primary_pe->origin_bios);
Mikulas Patocka7c5f78b2008-10-21 17:44:51 +0100872 free_pending_exception(primary_pe);
873 }
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700874
875 /*
876 * Free the pe if it's not linked to an origin write or if
877 * it's not itself a primary pe.
878 */
879 if (!primary_pe || primary_pe != pe)
880 free_pending_exception(pe);
881
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700882 return origin_bios;
883}
884
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100885static void pending_complete(struct dm_snap_pending_exception *pe, int success)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100887 struct dm_snap_exception *e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 struct dm_snapshot *s = pe->snap;
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -0700889 struct bio *origin_bios = NULL;
890 struct bio *snapshot_bios = NULL;
891 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800893 if (!success) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 /* Read/write error - snapshot is unusable */
895 down_write(&s->lock);
Alasdair G Kergon695368a2006-10-03 01:15:31 -0700896 __invalidate_snapshot(s, -EIO);
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -0700897 error = 1;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800898 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 }
900
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800901 e = alloc_exception();
902 if (!e) {
903 down_write(&s->lock);
Alasdair G Kergon695368a2006-10-03 01:15:31 -0700904 __invalidate_snapshot(s, -ENOMEM);
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -0700905 error = 1;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800906 goto out;
907 }
908 *e = pe->e;
909
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -0700910 down_write(&s->lock);
911 if (!s->valid) {
912 free_exception(e);
913 error = 1;
914 goto out;
915 }
916
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800917 /*
Mikulas Patockaa8d41b52008-07-21 12:00:34 +0100918 * Check for conflicting reads. This is extremely improbable,
Mikulas Patocka90fa1522009-01-06 03:04:54 +0000919 * so msleep(1) is sufficient and there is no need for a wait queue.
Mikulas Patockaa8d41b52008-07-21 12:00:34 +0100920 */
921 while (__chunk_is_tracked(s, pe->e.old_chunk))
Mikulas Patocka90fa1522009-01-06 03:04:54 +0000922 msleep(1);
Mikulas Patockaa8d41b52008-07-21 12:00:34 +0100923
924 /*
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800925 * Add a proper exception, and remove the
926 * in-flight exception from the list.
927 */
Milan Brozd74f81f2008-02-08 02:11:27 +0000928 insert_completed_exception(s, e);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800929
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 out:
Alasdair G Kergon695368a2006-10-03 01:15:31 -0700931 remove_exception(&pe->e);
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -0700932 snapshot_bios = bio_list_get(&pe->snapshot_bios);
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700933 origin_bios = put_pending_exception(pe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -0700935 up_write(&s->lock);
936
937 /* Submit any pending write bios */
938 if (error)
939 error_bios(snapshot_bios);
940 else
941 flush_bios(snapshot_bios);
942
943 flush_bios(origin_bios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944}
945
946static void commit_callback(void *context, int success)
947{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100948 struct dm_snap_pending_exception *pe = context;
949
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 pending_complete(pe, success);
951}
952
953/*
954 * Called when the copy I/O has finished. kcopyd actually runs
955 * this code so don't block.
956 */
Alasdair G Kergon4cdc1d12008-03-28 14:16:10 -0700957static void copy_callback(int read_err, unsigned long write_err, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100959 struct dm_snap_pending_exception *pe = context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 struct dm_snapshot *s = pe->snap;
961
962 if (read_err || write_err)
963 pending_complete(pe, 0);
964
965 else
966 /* Update the metadata if we are persistent */
Jonathan Brassow493df712009-04-02 19:55:31 +0100967 s->store->type->commit_exception(s->store, &pe->e,
968 commit_callback, pe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969}
970
971/*
972 * Dispatches the copy operation to kcopyd.
973 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100974static void start_copy(struct dm_snap_pending_exception *pe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975{
976 struct dm_snapshot *s = pe->snap;
Heinz Mauelshagen22a1ceb2008-04-24 21:43:17 +0100977 struct dm_io_region src, dest;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 struct block_device *bdev = s->origin->bdev;
979 sector_t dev_size;
980
981 dev_size = get_dev_size(bdev);
982
983 src.bdev = bdev;
Jonathan Brassow71fab002009-04-02 19:55:33 +0100984 src.sector = chunk_to_sector(s->store, pe->e.old_chunk);
Mikulas Patockadf96eee2009-10-16 23:18:17 +0100985 src.count = min((sector_t)s->store->chunk_size, dev_size - src.sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
Jonathan Brassow49beb2b2009-04-02 19:55:33 +0100987 dest.bdev = s->store->cow->bdev;
Jonathan Brassow71fab002009-04-02 19:55:33 +0100988 dest.sector = chunk_to_sector(s->store, pe->e.new_chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 dest.count = src.count;
990
991 /* Hand over to kcopyd */
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100992 dm_kcopyd_copy(s->kcopyd_client,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 &src, 1, &dest, 0, copy_callback, pe);
994}
995
Mikulas Patocka29138082009-04-02 19:55:25 +0100996static struct dm_snap_pending_exception *
997__lookup_pending_exception(struct dm_snapshot *s, chunk_t chunk)
998{
999 struct dm_snap_exception *e = lookup_exception(&s->pending, chunk);
1000
1001 if (!e)
1002 return NULL;
1003
1004 return container_of(e, struct dm_snap_pending_exception, e);
1005}
1006
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007/*
1008 * Looks to see if this snapshot already has a pending exception
1009 * for this chunk, otherwise it allocates a new one and inserts
1010 * it into the pending table.
1011 *
1012 * NOTE: a write lock must be held on snap->lock before calling
1013 * this.
1014 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001015static struct dm_snap_pending_exception *
Mikulas Patockac6621392009-04-02 19:55:25 +01001016__find_pending_exception(struct dm_snapshot *s,
1017 struct dm_snap_pending_exception *pe, chunk_t chunk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018{
Mikulas Patockac6621392009-04-02 19:55:25 +01001019 struct dm_snap_pending_exception *pe2;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001020
Mikulas Patocka29138082009-04-02 19:55:25 +01001021 pe2 = __lookup_pending_exception(s, chunk);
1022 if (pe2) {
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001023 free_pending_exception(pe);
Mikulas Patocka29138082009-04-02 19:55:25 +01001024 return pe2;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001025 }
1026
1027 pe->e.old_chunk = chunk;
1028 bio_list_init(&pe->origin_bios);
1029 bio_list_init(&pe->snapshot_bios);
1030 pe->primary_pe = NULL;
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001031 atomic_set(&pe->ref_count, 0);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001032 pe->started = 0;
1033
Jonathan Brassow493df712009-04-02 19:55:31 +01001034 if (s->store->type->prepare_exception(s->store, &pe->e)) {
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001035 free_pending_exception(pe);
1036 return NULL;
1037 }
1038
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001039 get_pending_exception(pe);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001040 insert_exception(&s->pending, &pe->e);
1041
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 return pe;
1043}
1044
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001045static void remap_exception(struct dm_snapshot *s, struct dm_snap_exception *e,
Milan Brozd74f81f2008-02-08 02:11:27 +00001046 struct bio *bio, chunk_t chunk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047{
Jonathan Brassow49beb2b2009-04-02 19:55:33 +01001048 bio->bi_bdev = s->store->cow->bdev;
Jonathan Brassow71fab002009-04-02 19:55:33 +01001049 bio->bi_sector = chunk_to_sector(s->store,
1050 dm_chunk_number(e->new_chunk) +
1051 (chunk - e->old_chunk)) +
1052 (bio->bi_sector &
1053 s->store->chunk_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054}
1055
1056static int snapshot_map(struct dm_target *ti, struct bio *bio,
1057 union map_info *map_context)
1058{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001059 struct dm_snap_exception *e;
1060 struct dm_snapshot *s = ti->private;
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001061 int r = DM_MAPIO_REMAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 chunk_t chunk;
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001063 struct dm_snap_pending_exception *pe = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
Mikulas Patocka494b3ee2009-06-22 10:12:25 +01001065 if (unlikely(bio_empty_barrier(bio))) {
1066 bio->bi_bdev = s->store->cow->bdev;
1067 return DM_MAPIO_REMAPPED;
1068 }
1069
Jonathan Brassow71fab002009-04-02 19:55:33 +01001070 chunk = sector_to_chunk(s->store, bio->bi_sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
1072 /* Full snapshots are not usable */
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001073 /* To get here the table must be live so s->active is always set. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 if (!s->valid)
Alasdair G Kergonf6a80ea2005-07-12 15:53:01 -07001075 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001077 /* FIXME: should only take write lock if we need
1078 * to copy an exception */
1079 down_write(&s->lock);
1080
1081 if (!s->valid) {
1082 r = -EIO;
1083 goto out_unlock;
1084 }
1085
1086 /* If the block is already remapped - use that, else remap it */
1087 e = lookup_exception(&s->complete, chunk);
1088 if (e) {
Milan Brozd74f81f2008-02-08 02:11:27 +00001089 remap_exception(s, e, bio, chunk);
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001090 goto out_unlock;
1091 }
1092
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 /*
1094 * Write to snapshot - higher level takes care of RW/RO
1095 * flags so we should only get this if we are
1096 * writeable.
1097 */
1098 if (bio_rw(bio) == WRITE) {
Mikulas Patocka29138082009-04-02 19:55:25 +01001099 pe = __lookup_pending_exception(s, chunk);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001100 if (!pe) {
Mikulas Patockac6621392009-04-02 19:55:25 +01001101 up_write(&s->lock);
1102 pe = alloc_pending_exception(s);
1103 down_write(&s->lock);
1104
1105 if (!s->valid) {
1106 free_pending_exception(pe);
1107 r = -EIO;
1108 goto out_unlock;
1109 }
1110
Mikulas Patocka35bf6592009-04-02 19:55:26 +01001111 e = lookup_exception(&s->complete, chunk);
1112 if (e) {
1113 free_pending_exception(pe);
1114 remap_exception(s, e, bio, chunk);
1115 goto out_unlock;
1116 }
1117
Mikulas Patockac6621392009-04-02 19:55:25 +01001118 pe = __find_pending_exception(s, pe, chunk);
Mikulas Patocka29138082009-04-02 19:55:25 +01001119 if (!pe) {
1120 __invalidate_snapshot(s, -ENOMEM);
1121 r = -EIO;
1122 goto out_unlock;
1123 }
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001124 }
1125
Milan Brozd74f81f2008-02-08 02:11:27 +00001126 remap_exception(s, &pe->e, bio, chunk);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001127 bio_list_add(&pe->snapshot_bios, bio);
1128
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001129 r = DM_MAPIO_SUBMITTED;
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001130
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001131 if (!pe->started) {
1132 /* this is protected by snap->lock */
1133 pe->started = 1;
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001134 up_write(&s->lock);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001135 start_copy(pe);
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001136 goto out;
1137 }
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001138 } else {
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001139 bio->bi_bdev = s->origin->bdev;
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001140 map_context->ptr = track_chunk(s, chunk);
1141 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001143 out_unlock:
1144 up_write(&s->lock);
1145 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 return r;
1147}
1148
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001149static int snapshot_end_io(struct dm_target *ti, struct bio *bio,
1150 int error, union map_info *map_context)
1151{
1152 struct dm_snapshot *s = ti->private;
1153 struct dm_snap_tracked_chunk *c = map_context->ptr;
1154
1155 if (c)
1156 stop_tracking_chunk(s, c);
1157
1158 return 0;
1159}
1160
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161static void snapshot_resume(struct dm_target *ti)
1162{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001163 struct dm_snapshot *s = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -08001165 down_write(&s->lock);
1166 s->active = 1;
1167 up_write(&s->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168}
1169
1170static int snapshot_status(struct dm_target *ti, status_type_t type,
1171 char *result, unsigned int maxlen)
1172{
Jonathan Brassow2e4a31d2009-04-02 19:55:34 +01001173 unsigned sz = 0;
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001174 struct dm_snapshot *snap = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
1176 switch (type) {
1177 case STATUSTYPE_INFO:
Mikulas Patocka94e765722009-12-10 23:51:53 +00001178
1179 down_write(&snap->lock);
1180
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 if (!snap->valid)
Jonathan Brassow2e4a31d2009-04-02 19:55:34 +01001182 DMEMIT("Invalid");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 else {
Jonathan Brassow493df712009-04-02 19:55:31 +01001184 if (snap->store->type->fraction_full) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 sector_t numerator, denominator;
Jonathan Brassow493df712009-04-02 19:55:31 +01001186 snap->store->type->fraction_full(snap->store,
1187 &numerator,
1188 &denominator);
Jonathan Brassow2e4a31d2009-04-02 19:55:34 +01001189 DMEMIT("%llu/%llu",
1190 (unsigned long long)numerator,
1191 (unsigned long long)denominator);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 }
1193 else
Jonathan Brassow2e4a31d2009-04-02 19:55:34 +01001194 DMEMIT("Unknown");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 }
Mikulas Patocka94e765722009-12-10 23:51:53 +00001196
1197 up_write(&snap->lock);
1198
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 break;
1200
1201 case STATUSTYPE_TABLE:
1202 /*
1203 * kdevname returns a static pointer so we need
1204 * to make private copies if the output is to
1205 * make sense.
1206 */
Jonathan Brassow2e4a31d2009-04-02 19:55:34 +01001207 DMEMIT("%s", snap->origin->name);
Jonathan Brassow1e302a92009-04-02 19:55:35 +01001208 snap->store->type->status(snap->store, type, result + sz,
1209 maxlen - sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 break;
1211 }
1212
1213 return 0;
1214}
1215
Mike Snitzer8811f462009-09-04 20:40:19 +01001216static int snapshot_iterate_devices(struct dm_target *ti,
1217 iterate_devices_callout_fn fn, void *data)
1218{
1219 struct dm_snapshot *snap = ti->private;
1220
1221 return fn(ti, snap->origin, 0, ti->len, data);
1222}
1223
1224
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225/*-----------------------------------------------------------------
1226 * Origin methods
1227 *---------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228static int __origin_write(struct list_head *snapshots, struct bio *bio)
1229{
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001230 int r = DM_MAPIO_REMAPPED, first = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 struct dm_snapshot *snap;
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001232 struct dm_snap_exception *e;
1233 struct dm_snap_pending_exception *pe, *next_pe, *primary_pe = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 chunk_t chunk;
Alasdair G Kergoneccf0812006-03-27 01:17:42 -08001235 LIST_HEAD(pe_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
1237 /* Do all the snapshots on this origin */
1238 list_for_each_entry (snap, snapshots, list) {
1239
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001240 down_write(&snap->lock);
1241
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -08001242 /* Only deal with valid and active snapshots */
1243 if (!snap->valid || !snap->active)
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001244 goto next_snapshot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
Alasdair G Kergond5e404c2005-07-12 15:53:05 -07001246 /* Nothing to do if writing beyond end of snapshot */
Jonathan Brassow0cea9c72009-04-02 19:55:32 +01001247 if (bio->bi_sector >= dm_table_get_size(snap->store->ti->table))
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001248 goto next_snapshot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
1250 /*
1251 * Remember, different snapshots can have
1252 * different chunk sizes.
1253 */
Jonathan Brassow71fab002009-04-02 19:55:33 +01001254 chunk = sector_to_chunk(snap->store, bio->bi_sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
1256 /*
1257 * Check exception table to see if block
1258 * is already remapped in this snapshot
1259 * and trigger an exception if not.
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001260 *
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001261 * ref_count is initialised to 1 so pending_complete()
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001262 * won't destroy the primary_pe while we're inside this loop.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 */
1264 e = lookup_exception(&snap->complete, chunk);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001265 if (e)
1266 goto next_snapshot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
Mikulas Patocka29138082009-04-02 19:55:25 +01001268 pe = __lookup_pending_exception(snap, chunk);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001269 if (!pe) {
Mikulas Patockac6621392009-04-02 19:55:25 +01001270 up_write(&snap->lock);
1271 pe = alloc_pending_exception(snap);
1272 down_write(&snap->lock);
1273
1274 if (!snap->valid) {
1275 free_pending_exception(pe);
1276 goto next_snapshot;
1277 }
1278
Mikulas Patocka35bf6592009-04-02 19:55:26 +01001279 e = lookup_exception(&snap->complete, chunk);
1280 if (e) {
1281 free_pending_exception(pe);
1282 goto next_snapshot;
1283 }
1284
Mikulas Patockac6621392009-04-02 19:55:25 +01001285 pe = __find_pending_exception(snap, pe, chunk);
Mikulas Patocka29138082009-04-02 19:55:25 +01001286 if (!pe) {
1287 __invalidate_snapshot(snap, -ENOMEM);
1288 goto next_snapshot;
1289 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 }
1291
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001292 if (!primary_pe) {
1293 /*
1294 * Either every pe here has same
1295 * primary_pe or none has one yet.
1296 */
1297 if (pe->primary_pe)
1298 primary_pe = pe->primary_pe;
1299 else {
1300 primary_pe = pe;
1301 first = 1;
1302 }
1303
1304 bio_list_add(&primary_pe->origin_bios, bio);
1305
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001306 r = DM_MAPIO_SUBMITTED;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001307 }
1308
1309 if (!pe->primary_pe) {
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001310 pe->primary_pe = primary_pe;
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001311 get_pending_exception(primary_pe);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001312 }
1313
1314 if (!pe->started) {
1315 pe->started = 1;
1316 list_add_tail(&pe->list, &pe_queue);
1317 }
1318
1319 next_snapshot:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 up_write(&snap->lock);
1321 }
1322
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001323 if (!primary_pe)
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001324 return r;
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001325
1326 /*
1327 * If this is the first time we're processing this chunk and
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001328 * ref_count is now 1 it means all the pending exceptions
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001329 * got completed while we were in the loop above, so it falls to
1330 * us here to remove the primary_pe and submit any origin_bios.
1331 */
1332
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001333 if (first && atomic_dec_and_test(&primary_pe->ref_count)) {
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001334 flush_bios(bio_list_get(&primary_pe->origin_bios));
1335 free_pending_exception(primary_pe);
1336 /* If we got here, pe_queue is necessarily empty. */
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001337 return r;
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001338 }
1339
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 /*
1341 * Now that we have a complete pe list we can start the copying.
1342 */
Alasdair G Kergoneccf0812006-03-27 01:17:42 -08001343 list_for_each_entry_safe(pe, next_pe, &pe_queue, list)
1344 start_copy(pe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
1346 return r;
1347}
1348
1349/*
1350 * Called on a write from the origin driver.
1351 */
1352static int do_origin(struct dm_dev *origin, struct bio *bio)
1353{
1354 struct origin *o;
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001355 int r = DM_MAPIO_REMAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
1357 down_read(&_origins_lock);
1358 o = __lookup_origin(origin->bdev);
1359 if (o)
1360 r = __origin_write(&o->snapshots, bio);
1361 up_read(&_origins_lock);
1362
1363 return r;
1364}
1365
1366/*
1367 * Origin: maps a linear range of a device, with hooks for snapshotting.
1368 */
1369
1370/*
1371 * Construct an origin mapping: <dev_path>
1372 * The context for an origin is merely a 'struct dm_dev *'
1373 * pointing to the real device.
1374 */
1375static int origin_ctr(struct dm_target *ti, unsigned int argc, char **argv)
1376{
1377 int r;
1378 struct dm_dev *dev;
1379
1380 if (argc != 1) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001381 ti->error = "origin: incorrect number of arguments";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 return -EINVAL;
1383 }
1384
1385 r = dm_get_device(ti, argv[0], 0, ti->len,
1386 dm_table_get_mode(ti->table), &dev);
1387 if (r) {
1388 ti->error = "Cannot get target device";
1389 return r;
1390 }
1391
1392 ti->private = dev;
Mikulas Patocka494b3ee2009-06-22 10:12:25 +01001393 ti->num_flush_requests = 1;
1394
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 return 0;
1396}
1397
1398static void origin_dtr(struct dm_target *ti)
1399{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001400 struct dm_dev *dev = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 dm_put_device(ti, dev);
1402}
1403
1404static int origin_map(struct dm_target *ti, struct bio *bio,
1405 union map_info *map_context)
1406{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001407 struct dm_dev *dev = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 bio->bi_bdev = dev->bdev;
1409
Mikulas Patocka494b3ee2009-06-22 10:12:25 +01001410 if (unlikely(bio_empty_barrier(bio)))
1411 return DM_MAPIO_REMAPPED;
1412
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 /* Only tell snapshots if this is a write */
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001414 return (bio_rw(bio) == WRITE) ? do_origin(dev, bio) : DM_MAPIO_REMAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415}
1416
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417/*
1418 * Set the target "split_io" field to the minimum of all the snapshots'
1419 * chunk sizes.
1420 */
1421static void origin_resume(struct dm_target *ti)
1422{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001423 struct dm_dev *dev = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
1425 down_read(&_origins_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
Mikulas Patocka7e201b32009-12-10 23:52:08 +00001427 ti->split_io = __minimum_chunk_size(__lookup_origin(dev->bdev));
1428
1429 up_read(&_origins_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430}
1431
1432static int origin_status(struct dm_target *ti, status_type_t type, char *result,
1433 unsigned int maxlen)
1434{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001435 struct dm_dev *dev = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
1437 switch (type) {
1438 case STATUSTYPE_INFO:
1439 result[0] = '\0';
1440 break;
1441
1442 case STATUSTYPE_TABLE:
1443 snprintf(result, maxlen, "%s", dev->name);
1444 break;
1445 }
1446
1447 return 0;
1448}
1449
Mike Snitzer8811f462009-09-04 20:40:19 +01001450static int origin_iterate_devices(struct dm_target *ti,
1451 iterate_devices_callout_fn fn, void *data)
1452{
1453 struct dm_dev *dev = ti->private;
1454
1455 return fn(ti, dev, 0, ti->len, data);
1456}
1457
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458static struct target_type origin_target = {
1459 .name = "snapshot-origin",
Mike Snitzer8811f462009-09-04 20:40:19 +01001460 .version = {1, 7, 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 .module = THIS_MODULE,
1462 .ctr = origin_ctr,
1463 .dtr = origin_dtr,
1464 .map = origin_map,
1465 .resume = origin_resume,
1466 .status = origin_status,
Mike Snitzer8811f462009-09-04 20:40:19 +01001467 .iterate_devices = origin_iterate_devices,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468};
1469
1470static struct target_type snapshot_target = {
1471 .name = "snapshot",
Mike Snitzer8811f462009-09-04 20:40:19 +01001472 .version = {1, 7, 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 .module = THIS_MODULE,
1474 .ctr = snapshot_ctr,
1475 .dtr = snapshot_dtr,
1476 .map = snapshot_map,
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001477 .end_io = snapshot_end_io,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 .resume = snapshot_resume,
1479 .status = snapshot_status,
Mike Snitzer8811f462009-09-04 20:40:19 +01001480 .iterate_devices = snapshot_iterate_devices,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481};
1482
1483static int __init dm_snapshot_init(void)
1484{
1485 int r;
1486
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00001487 r = dm_exception_store_init();
1488 if (r) {
1489 DMERR("Failed to initialize exception stores");
1490 return r;
1491 }
1492
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 r = dm_register_target(&snapshot_target);
1494 if (r) {
1495 DMERR("snapshot target register failed %d", r);
Jonathan Brassow034a1862009-10-16 23:18:14 +01001496 goto bad_register_snapshot_target;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 }
1498
1499 r = dm_register_target(&origin_target);
1500 if (r < 0) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001501 DMERR("Origin target register failed %d", r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 goto bad1;
1503 }
1504
1505 r = init_origin_hash();
1506 if (r) {
1507 DMERR("init_origin_hash failed.");
1508 goto bad2;
1509 }
1510
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001511 exception_cache = KMEM_CACHE(dm_snap_exception, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 if (!exception_cache) {
1513 DMERR("Couldn't create exception cache.");
1514 r = -ENOMEM;
1515 goto bad3;
1516 }
1517
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001518 pending_cache = KMEM_CACHE(dm_snap_pending_exception, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 if (!pending_cache) {
1520 DMERR("Couldn't create pending cache.");
1521 r = -ENOMEM;
1522 goto bad4;
1523 }
1524
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001525 tracked_chunk_cache = KMEM_CACHE(dm_snap_tracked_chunk, 0);
1526 if (!tracked_chunk_cache) {
1527 DMERR("Couldn't create cache to track chunks in use.");
1528 r = -ENOMEM;
1529 goto bad5;
1530 }
1531
Alasdair G Kergonca3a9312006-10-03 01:15:30 -07001532 ksnapd = create_singlethread_workqueue("ksnapd");
1533 if (!ksnapd) {
1534 DMERR("Failed to create ksnapd workqueue.");
1535 r = -ENOMEM;
Mikulas Patocka92e86812008-07-21 12:00:35 +01001536 goto bad_pending_pool;
Alasdair G Kergonca3a9312006-10-03 01:15:30 -07001537 }
1538
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 return 0;
1540
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00001541bad_pending_pool:
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001542 kmem_cache_destroy(tracked_chunk_cache);
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00001543bad5:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 kmem_cache_destroy(pending_cache);
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00001545bad4:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 kmem_cache_destroy(exception_cache);
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00001547bad3:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 exit_origin_hash();
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00001549bad2:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 dm_unregister_target(&origin_target);
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00001551bad1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 dm_unregister_target(&snapshot_target);
Jonathan Brassow034a1862009-10-16 23:18:14 +01001553
1554bad_register_snapshot_target:
1555 dm_exception_store_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 return r;
1557}
1558
1559static void __exit dm_snapshot_exit(void)
1560{
Alasdair G Kergonca3a9312006-10-03 01:15:30 -07001561 destroy_workqueue(ksnapd);
1562
Mikulas Patocka10d3bd02009-01-06 03:04:58 +00001563 dm_unregister_target(&snapshot_target);
1564 dm_unregister_target(&origin_target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565
1566 exit_origin_hash();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 kmem_cache_destroy(pending_cache);
1568 kmem_cache_destroy(exception_cache);
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001569 kmem_cache_destroy(tracked_chunk_cache);
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00001570
1571 dm_exception_store_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572}
1573
1574/* Module hooks */
1575module_init(dm_snapshot_init);
1576module_exit(dm_snapshot_exit);
1577
1578MODULE_DESCRIPTION(DM_NAME " snapshot target");
1579MODULE_AUTHOR("Joe Thornber");
1580MODULE_LICENSE("GPL");