blob: a7d60f644063f2b7f9d2d202b52ab8d68e90128f [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 {
Jon Brassow1d4989c2009-12-10 23:52:10 +0000119 struct dm_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;
Jon Brassow1d4989c2009-12-10 23:52:10 +0000374 struct dm_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
Jon Brassow1d4989c2009-12-10 23:52:10 +0000393static void remove_exception(struct dm_exception *e)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394{
395 list_del(&e->hash_list);
396}
397
398/*
399 * Return the exception data for a sector, or NULL if not
400 * remapped.
401 */
Jon Brassow1d4989c2009-12-10 23:52:10 +0000402static struct dm_exception *lookup_exception(struct exception_table *et,
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100403 chunk_t chunk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404{
405 struct list_head *slot;
Jon Brassow1d4989c2009-12-10 23:52:10 +0000406 struct dm_exception *e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
408 slot = &et->table[exception_hash(et, chunk)];
409 list_for_each_entry (e, slot, hash_list)
Milan Brozd74f81f2008-02-08 02:11:27 +0000410 if (chunk >= e->old_chunk &&
411 chunk <= e->old_chunk + dm_consecutive_chunk_count(e))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 return e;
413
414 return NULL;
415}
416
Jon Brassow1d4989c2009-12-10 23:52:10 +0000417static struct dm_exception *alloc_exception(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418{
Jon Brassow1d4989c2009-12-10 23:52:10 +0000419 struct dm_exception *e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421 e = kmem_cache_alloc(exception_cache, GFP_NOIO);
422 if (!e)
423 e = kmem_cache_alloc(exception_cache, GFP_ATOMIC);
424
425 return e;
426}
427
Jon Brassow1d4989c2009-12-10 23:52:10 +0000428static void free_exception(struct dm_exception *e)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429{
430 kmem_cache_free(exception_cache, e);
431}
432
Mikulas Patocka92e86812008-07-21 12:00:35 +0100433static struct dm_snap_pending_exception *alloc_pending_exception(struct dm_snapshot *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
Mikulas Patocka92e86812008-07-21 12:00:35 +0100435 struct dm_snap_pending_exception *pe = mempool_alloc(s->pending_pool,
436 GFP_NOIO);
437
Mikulas Patocka879129d22008-10-30 13:33:16 +0000438 atomic_inc(&s->pending_exceptions_count);
Mikulas Patocka92e86812008-07-21 12:00:35 +0100439 pe->snap = s;
440
441 return pe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442}
443
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100444static void free_pending_exception(struct dm_snap_pending_exception *pe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
Mikulas Patocka879129d22008-10-30 13:33:16 +0000446 struct dm_snapshot *s = pe->snap;
447
448 mempool_free(pe, s->pending_pool);
449 smp_mb__before_atomic_dec();
450 atomic_dec(&s->pending_exceptions_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451}
452
Jon Brassowd32a6ea2009-12-10 23:52:09 +0000453static void insert_exception(struct exception_table *eh,
Jon Brassow1d4989c2009-12-10 23:52:10 +0000454 struct dm_exception *new_e)
Milan Brozd74f81f2008-02-08 02:11:27 +0000455{
Milan Brozd74f81f2008-02-08 02:11:27 +0000456 struct list_head *l;
Jon Brassow1d4989c2009-12-10 23:52:10 +0000457 struct dm_exception *e = NULL;
Milan Brozd74f81f2008-02-08 02:11:27 +0000458
459 l = &eh->table[exception_hash(eh, new_e->old_chunk)];
460
461 /* Add immediately if this table doesn't support consecutive chunks */
462 if (!eh->hash_shift)
463 goto out;
464
465 /* List is ordered by old_chunk */
466 list_for_each_entry_reverse(e, l, hash_list) {
467 /* Insert after an existing chunk? */
468 if (new_e->old_chunk == (e->old_chunk +
469 dm_consecutive_chunk_count(e) + 1) &&
470 new_e->new_chunk == (dm_chunk_number(e->new_chunk) +
471 dm_consecutive_chunk_count(e) + 1)) {
472 dm_consecutive_chunk_count_inc(e);
473 free_exception(new_e);
474 return;
475 }
476
477 /* Insert before an existing chunk? */
478 if (new_e->old_chunk == (e->old_chunk - 1) &&
479 new_e->new_chunk == (dm_chunk_number(e->new_chunk) - 1)) {
480 dm_consecutive_chunk_count_inc(e);
481 e->old_chunk--;
482 e->new_chunk--;
483 free_exception(new_e);
484 return;
485 }
486
487 if (new_e->old_chunk > e->old_chunk)
488 break;
489 }
490
491out:
492 list_add(&new_e->hash_list, e ? &e->hash_list : l);
493}
494
Jonathan Brassowa159c1a2009-01-06 03:05:19 +0000495/*
496 * Callback used by the exception stores to load exceptions when
497 * initialising.
498 */
499static int dm_add_exception(void *context, chunk_t old, chunk_t new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500{
Jonathan Brassowa159c1a2009-01-06 03:05:19 +0000501 struct dm_snapshot *s = context;
Jon Brassow1d4989c2009-12-10 23:52:10 +0000502 struct dm_exception *e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
504 e = alloc_exception();
505 if (!e)
506 return -ENOMEM;
507
508 e->old_chunk = old;
Milan Brozd74f81f2008-02-08 02:11:27 +0000509
510 /* Consecutive_count is implicitly initialised to zero */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 e->new_chunk = new;
Milan Brozd74f81f2008-02-08 02:11:27 +0000512
Jon Brassowd32a6ea2009-12-10 23:52:09 +0000513 insert_exception(&s->complete, e);
Milan Brozd74f81f2008-02-08 02:11:27 +0000514
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 return 0;
516}
517
Mikulas Patocka7e201b32009-12-10 23:52:08 +0000518#define min_not_zero(l, r) (((l) == 0) ? (r) : (((r) == 0) ? (l) : min(l, r)))
519
520/*
521 * Return a minimum chunk size of all snapshots that have the specified origin.
522 * Return zero if the origin has no snapshots.
523 */
524static sector_t __minimum_chunk_size(struct origin *o)
525{
526 struct dm_snapshot *snap;
527 unsigned chunk_size = 0;
528
529 if (o)
530 list_for_each_entry(snap, &o->snapshots, list)
531 chunk_size = min_not_zero(chunk_size,
532 snap->store->chunk_size);
533
534 return chunk_size;
535}
536
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537/*
538 * Hard coded magic.
539 */
540static int calc_max_buckets(void)
541{
542 /* use a fixed size of 2MB */
543 unsigned long mem = 2 * 1024 * 1024;
544 mem /= sizeof(struct list_head);
545
546 return mem;
547}
548
549/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 * Allocate room for a suitable hash table.
551 */
Jonathan Brassowfee19982009-04-02 19:55:34 +0100552static int init_hash_tables(struct dm_snapshot *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553{
554 sector_t hash_size, cow_dev_size, origin_dev_size, max_buckets;
555
556 /*
557 * Calculate based on the size of the original volume or
558 * the COW volume...
559 */
Jonathan Brassowfee19982009-04-02 19:55:34 +0100560 cow_dev_size = get_dev_size(s->store->cow->bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 origin_dev_size = get_dev_size(s->origin->bdev);
562 max_buckets = calc_max_buckets();
563
Jonathan Brassowfee19982009-04-02 19:55:34 +0100564 hash_size = min(origin_dev_size, cow_dev_size) >> s->store->chunk_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 hash_size = min(hash_size, max_buckets);
566
Mikulas Patocka8e87b9b2009-12-10 23:51:54 +0000567 if (hash_size < 64)
568 hash_size = 64;
Robert P. J. Day8defd832008-02-08 02:10:06 +0000569 hash_size = rounddown_pow_of_two(hash_size);
Milan Brozd74f81f2008-02-08 02:11:27 +0000570 if (init_exception_table(&s->complete, hash_size,
571 DM_CHUNK_CONSECUTIVE_BITS))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 return -ENOMEM;
573
574 /*
575 * Allocate hash table for in-flight exceptions
576 * Make this smaller than the real hash table
577 */
578 hash_size >>= 3;
579 if (hash_size < 64)
580 hash_size = 64;
581
Milan Brozd74f81f2008-02-08 02:11:27 +0000582 if (init_exception_table(&s->pending, hash_size, 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 exit_exception_table(&s->complete, exception_cache);
584 return -ENOMEM;
585 }
586
587 return 0;
588}
589
590/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 * Construct a snapshot mapping: <origin_dev> <COW-dev> <p/n> <chunk-size>
592 */
593static int snapshot_ctr(struct dm_target *ti, unsigned int argc, char **argv)
594{
595 struct dm_snapshot *s;
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100596 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 int r = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 char *origin_path;
Jonathan Brassowfee19982009-04-02 19:55:34 +0100599 struct dm_exception_store *store;
600 unsigned args_used;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -0700602 if (argc != 4) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700603 ti->error = "requires exactly 4 arguments";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 r = -EINVAL;
Jonathan Brassowfee19982009-04-02 19:55:34 +0100605 goto bad_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 }
607
608 origin_path = argv[0];
Jonathan Brassowfee19982009-04-02 19:55:34 +0100609 argv++;
610 argc--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Jonathan Brassowfee19982009-04-02 19:55:34 +0100612 r = dm_exception_store_create(ti, argc, argv, &args_used, &store);
613 if (r) {
614 ti->error = "Couldn't create exception store";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 r = -EINVAL;
Jonathan Brassowfee19982009-04-02 19:55:34 +0100616 goto bad_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 }
618
Jonathan Brassowfee19982009-04-02 19:55:34 +0100619 argv += args_used;
620 argc -= args_used;
621
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 s = kmalloc(sizeof(*s), GFP_KERNEL);
Jonathan Brassowfee19982009-04-02 19:55:34 +0100623 if (!s) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 ti->error = "Cannot allocate snapshot context private "
625 "structure";
626 r = -ENOMEM;
Jonathan Brassowfee19982009-04-02 19:55:34 +0100627 goto bad_snap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 }
629
630 r = dm_get_device(ti, origin_path, 0, ti->len, FMODE_READ, &s->origin);
631 if (r) {
632 ti->error = "Cannot get origin device";
Jonathan Brassowfee19982009-04-02 19:55:34 +0100633 goto bad_origin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 }
635
Jonathan Brassowfee19982009-04-02 19:55:34 +0100636 s->store = store;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 s->valid = 1;
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -0800638 s->active = 0;
Mikulas Patocka879129d22008-10-30 13:33:16 +0000639 atomic_set(&s->pending_exceptions_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 init_rwsem(&s->lock);
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700641 spin_lock_init(&s->pe_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
643 /* Allocate hash table for COW data */
Jonathan Brassowfee19982009-04-02 19:55:34 +0100644 if (init_hash_tables(s)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 ti->error = "Unable to allocate hash table space";
646 r = -ENOMEM;
Jonathan Brassowfee19982009-04-02 19:55:34 +0100647 goto bad_hash_tables;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 }
649
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100650 r = dm_kcopyd_client_create(SNAPSHOT_PAGES, &s->kcopyd_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 if (r) {
652 ti->error = "Could not create kcopyd client";
Jonathan Brassowfee19982009-04-02 19:55:34 +0100653 goto bad_kcopyd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 }
655
Mikulas Patocka92e86812008-07-21 12:00:35 +0100656 s->pending_pool = mempool_create_slab_pool(MIN_IOS, pending_cache);
657 if (!s->pending_pool) {
658 ti->error = "Could not allocate mempool for pending exceptions";
Jonathan Brassowfee19982009-04-02 19:55:34 +0100659 goto bad_pending_pool;
Mikulas Patocka92e86812008-07-21 12:00:35 +0100660 }
661
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100662 s->tracked_chunk_pool = mempool_create_slab_pool(MIN_IOS,
663 tracked_chunk_cache);
664 if (!s->tracked_chunk_pool) {
665 ti->error = "Could not allocate tracked_chunk mempool for "
666 "tracking reads";
Mikulas Patocka92e86812008-07-21 12:00:35 +0100667 goto bad_tracked_chunk_pool;
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100668 }
669
670 for (i = 0; i < DM_TRACKED_CHUNK_HASH_SIZE; i++)
671 INIT_HLIST_HEAD(&s->tracked_chunk_hash[i]);
672
673 spin_lock_init(&s->tracked_chunk_lock);
674
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -0800675 /* Metadata must only be loaded into one table at once */
Jonathan Brassow493df712009-04-02 19:55:31 +0100676 r = s->store->type->read_metadata(s->store, dm_add_exception,
677 (void *)s);
Milan Broz07641472007-07-12 17:28:13 +0100678 if (r < 0) {
Mark McLoughlinf9cea4f2006-10-03 01:15:25 -0700679 ti->error = "Failed to read snapshot metadata";
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100680 goto bad_load_and_register;
Milan Broz07641472007-07-12 17:28:13 +0100681 } else if (r > 0) {
682 s->valid = 0;
683 DMWARN("Snapshot is marked invalid.");
Mark McLoughlinf9cea4f2006-10-03 01:15:25 -0700684 }
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -0800685
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700686 bio_list_init(&s->queued_bios);
David Howellsc4028952006-11-22 14:57:56 +0000687 INIT_WORK(&s->queued_bios_work, flush_queued_bios);
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700688
Mikulas Patocka3f2412d2009-10-16 23:18:16 +0100689 if (!s->store->chunk_size) {
690 ti->error = "Chunk size not set";
691 goto bad_load_and_register;
692 }
693
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 /* Add snapshot to the list of snapshots for this origin */
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -0800695 /* Exceptions aren't triggered till snapshot_resume() is called */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 if (register_snapshot(s)) {
697 r = -EINVAL;
698 ti->error = "Cannot register snapshot origin";
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100699 goto bad_load_and_register;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 }
701
702 ti->private = s;
Jonathan Brassowd0216842009-04-02 19:55:32 +0100703 ti->split_io = s->store->chunk_size;
Mikulas Patocka494b3ee2009-06-22 10:12:25 +0100704 ti->num_flush_requests = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
706 return 0;
707
Jonathan Brassowfee19982009-04-02 19:55:34 +0100708bad_load_and_register:
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100709 mempool_destroy(s->tracked_chunk_pool);
710
Jonathan Brassowfee19982009-04-02 19:55:34 +0100711bad_tracked_chunk_pool:
Mikulas Patocka92e86812008-07-21 12:00:35 +0100712 mempool_destroy(s->pending_pool);
713
Jonathan Brassowfee19982009-04-02 19:55:34 +0100714bad_pending_pool:
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100715 dm_kcopyd_client_destroy(s->kcopyd_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
Jonathan Brassowfee19982009-04-02 19:55:34 +0100717bad_kcopyd:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 exit_exception_table(&s->pending, pending_cache);
719 exit_exception_table(&s->complete, exception_cache);
720
Jonathan Brassowfee19982009-04-02 19:55:34 +0100721bad_hash_tables:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 dm_put_device(ti, s->origin);
723
Jonathan Brassowfee19982009-04-02 19:55:34 +0100724bad_origin:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 kfree(s);
726
Jonathan Brassowfee19982009-04-02 19:55:34 +0100727bad_snap:
728 dm_exception_store_destroy(store);
729
730bad_args:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 return r;
732}
733
Milan Broz31c93a02006-12-08 02:41:11 -0800734static void __free_exceptions(struct dm_snapshot *s)
735{
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100736 dm_kcopyd_client_destroy(s->kcopyd_client);
Milan Broz31c93a02006-12-08 02:41:11 -0800737 s->kcopyd_client = NULL;
738
739 exit_exception_table(&s->pending, pending_cache);
740 exit_exception_table(&s->complete, exception_cache);
Milan Broz31c93a02006-12-08 02:41:11 -0800741}
742
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743static void snapshot_dtr(struct dm_target *ti)
744{
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100745#ifdef CONFIG_DM_DEBUG
746 int i;
747#endif
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100748 struct dm_snapshot *s = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700750 flush_workqueue(ksnapd);
751
Alasdair G Kergon138728dc2006-03-27 01:17:50 -0800752 /* Prevent further origin writes from using this snapshot. */
753 /* After this returns there can be no new kcopyd jobs. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 unregister_snapshot(s);
755
Mikulas Patocka879129d22008-10-30 13:33:16 +0000756 while (atomic_read(&s->pending_exceptions_count))
Mikulas Patocka90fa1522009-01-06 03:04:54 +0000757 msleep(1);
Mikulas Patocka879129d22008-10-30 13:33:16 +0000758 /*
759 * Ensure instructions in mempool_destroy aren't reordered
760 * before atomic_read.
761 */
762 smp_mb();
763
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100764#ifdef CONFIG_DM_DEBUG
765 for (i = 0; i < DM_TRACKED_CHUNK_HASH_SIZE; i++)
766 BUG_ON(!hlist_empty(&s->tracked_chunk_hash[i]));
767#endif
768
769 mempool_destroy(s->tracked_chunk_pool);
770
Milan Broz31c93a02006-12-08 02:41:11 -0800771 __free_exceptions(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
Mikulas Patocka92e86812008-07-21 12:00:35 +0100773 mempool_destroy(s->pending_pool);
774
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 dm_put_device(ti, s->origin);
Jonathan Brassowfee19982009-04-02 19:55:34 +0100776
777 dm_exception_store_destroy(s->store);
Alasdair G Kergon138728dc2006-03-27 01:17:50 -0800778
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 kfree(s);
780}
781
782/*
783 * Flush a list of buffers.
784 */
785static void flush_bios(struct bio *bio)
786{
787 struct bio *n;
788
789 while (bio) {
790 n = bio->bi_next;
791 bio->bi_next = NULL;
792 generic_make_request(bio);
793 bio = n;
794 }
795}
796
David Howellsc4028952006-11-22 14:57:56 +0000797static void flush_queued_bios(struct work_struct *work)
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700798{
David Howellsc4028952006-11-22 14:57:56 +0000799 struct dm_snapshot *s =
800 container_of(work, struct dm_snapshot, queued_bios_work);
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700801 struct bio *queued_bios;
802 unsigned long flags;
803
804 spin_lock_irqsave(&s->pe_lock, flags);
805 queued_bios = bio_list_get(&s->queued_bios);
806 spin_unlock_irqrestore(&s->pe_lock, flags);
807
808 flush_bios(queued_bios);
809}
810
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811/*
812 * Error a list of buffers.
813 */
814static void error_bios(struct bio *bio)
815{
816 struct bio *n;
817
818 while (bio) {
819 n = bio->bi_next;
820 bio->bi_next = NULL;
NeilBrown6712ecf2007-09-27 12:47:43 +0200821 bio_io_error(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 bio = n;
823 }
824}
825
Alasdair G Kergon695368a2006-10-03 01:15:31 -0700826static void __invalidate_snapshot(struct dm_snapshot *s, int err)
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800827{
828 if (!s->valid)
829 return;
830
831 if (err == -EIO)
832 DMERR("Invalidating snapshot: Error reading/writing.");
833 else if (err == -ENOMEM)
834 DMERR("Invalidating snapshot: Unable to allocate exception.");
835
Jonathan Brassow493df712009-04-02 19:55:31 +0100836 if (s->store->type->drop_snapshot)
837 s->store->type->drop_snapshot(s->store);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800838
839 s->valid = 0;
840
Jonathan Brassow0cea9c72009-04-02 19:55:32 +0100841 dm_table_event(s->store->ti->table);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800842}
843
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100844static void get_pending_exception(struct dm_snap_pending_exception *pe)
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700845{
846 atomic_inc(&pe->ref_count);
847}
848
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100849static struct bio *put_pending_exception(struct dm_snap_pending_exception *pe)
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700850{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100851 struct dm_snap_pending_exception *primary_pe;
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700852 struct bio *origin_bios = NULL;
853
854 primary_pe = pe->primary_pe;
855
856 /*
857 * If this pe is involved in a write to the origin and
858 * it is the last sibling to complete then release
859 * the bios for the original write to the origin.
860 */
861 if (primary_pe &&
Mikulas Patocka7c5f78b2008-10-21 17:44:51 +0100862 atomic_dec_and_test(&primary_pe->ref_count)) {
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700863 origin_bios = bio_list_get(&primary_pe->origin_bios);
Mikulas Patocka7c5f78b2008-10-21 17:44:51 +0100864 free_pending_exception(primary_pe);
865 }
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700866
867 /*
868 * Free the pe if it's not linked to an origin write or if
869 * it's not itself a primary pe.
870 */
871 if (!primary_pe || primary_pe != pe)
872 free_pending_exception(pe);
873
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700874 return origin_bios;
875}
876
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100877static void pending_complete(struct dm_snap_pending_exception *pe, int success)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878{
Jon Brassow1d4989c2009-12-10 23:52:10 +0000879 struct dm_exception *e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 struct dm_snapshot *s = pe->snap;
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -0700881 struct bio *origin_bios = NULL;
882 struct bio *snapshot_bios = NULL;
883 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800885 if (!success) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 /* Read/write error - snapshot is unusable */
887 down_write(&s->lock);
Alasdair G Kergon695368a2006-10-03 01:15:31 -0700888 __invalidate_snapshot(s, -EIO);
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -0700889 error = 1;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800890 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 }
892
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800893 e = alloc_exception();
894 if (!e) {
895 down_write(&s->lock);
Alasdair G Kergon695368a2006-10-03 01:15:31 -0700896 __invalidate_snapshot(s, -ENOMEM);
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -0700897 error = 1;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800898 goto out;
899 }
900 *e = pe->e;
901
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -0700902 down_write(&s->lock);
903 if (!s->valid) {
904 free_exception(e);
905 error = 1;
906 goto out;
907 }
908
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800909 /*
Mikulas Patockaa8d41b52008-07-21 12:00:34 +0100910 * Check for conflicting reads. This is extremely improbable,
Mikulas Patocka90fa1522009-01-06 03:04:54 +0000911 * so msleep(1) is sufficient and there is no need for a wait queue.
Mikulas Patockaa8d41b52008-07-21 12:00:34 +0100912 */
913 while (__chunk_is_tracked(s, pe->e.old_chunk))
Mikulas Patocka90fa1522009-01-06 03:04:54 +0000914 msleep(1);
Mikulas Patockaa8d41b52008-07-21 12:00:34 +0100915
916 /*
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800917 * Add a proper exception, and remove the
918 * in-flight exception from the list.
919 */
Jon Brassowd32a6ea2009-12-10 23:52:09 +0000920 insert_exception(&s->complete, e);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800921
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 out:
Alasdair G Kergon695368a2006-10-03 01:15:31 -0700923 remove_exception(&pe->e);
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -0700924 snapshot_bios = bio_list_get(&pe->snapshot_bios);
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700925 origin_bios = put_pending_exception(pe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -0700927 up_write(&s->lock);
928
929 /* Submit any pending write bios */
930 if (error)
931 error_bios(snapshot_bios);
932 else
933 flush_bios(snapshot_bios);
934
935 flush_bios(origin_bios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936}
937
938static void commit_callback(void *context, int success)
939{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100940 struct dm_snap_pending_exception *pe = context;
941
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 pending_complete(pe, success);
943}
944
945/*
946 * Called when the copy I/O has finished. kcopyd actually runs
947 * this code so don't block.
948 */
Alasdair G Kergon4cdc1d12008-03-28 14:16:10 -0700949static void copy_callback(int read_err, unsigned long write_err, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100951 struct dm_snap_pending_exception *pe = context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 struct dm_snapshot *s = pe->snap;
953
954 if (read_err || write_err)
955 pending_complete(pe, 0);
956
957 else
958 /* Update the metadata if we are persistent */
Jonathan Brassow493df712009-04-02 19:55:31 +0100959 s->store->type->commit_exception(s->store, &pe->e,
960 commit_callback, pe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961}
962
963/*
964 * Dispatches the copy operation to kcopyd.
965 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100966static void start_copy(struct dm_snap_pending_exception *pe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967{
968 struct dm_snapshot *s = pe->snap;
Heinz Mauelshagen22a1ceb2008-04-24 21:43:17 +0100969 struct dm_io_region src, dest;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 struct block_device *bdev = s->origin->bdev;
971 sector_t dev_size;
972
973 dev_size = get_dev_size(bdev);
974
975 src.bdev = bdev;
Jonathan Brassow71fab002009-04-02 19:55:33 +0100976 src.sector = chunk_to_sector(s->store, pe->e.old_chunk);
Mikulas Patockadf96eee2009-10-16 23:18:17 +0100977 src.count = min((sector_t)s->store->chunk_size, dev_size - src.sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
Jonathan Brassow49beb2b2009-04-02 19:55:33 +0100979 dest.bdev = s->store->cow->bdev;
Jonathan Brassow71fab002009-04-02 19:55:33 +0100980 dest.sector = chunk_to_sector(s->store, pe->e.new_chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 dest.count = src.count;
982
983 /* Hand over to kcopyd */
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100984 dm_kcopyd_copy(s->kcopyd_client,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 &src, 1, &dest, 0, copy_callback, pe);
986}
987
Mikulas Patocka29138082009-04-02 19:55:25 +0100988static struct dm_snap_pending_exception *
989__lookup_pending_exception(struct dm_snapshot *s, chunk_t chunk)
990{
Jon Brassow1d4989c2009-12-10 23:52:10 +0000991 struct dm_exception *e = lookup_exception(&s->pending, chunk);
Mikulas Patocka29138082009-04-02 19:55:25 +0100992
993 if (!e)
994 return NULL;
995
996 return container_of(e, struct dm_snap_pending_exception, e);
997}
998
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999/*
1000 * Looks to see if this snapshot already has a pending exception
1001 * for this chunk, otherwise it allocates a new one and inserts
1002 * it into the pending table.
1003 *
1004 * NOTE: a write lock must be held on snap->lock before calling
1005 * this.
1006 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001007static struct dm_snap_pending_exception *
Mikulas Patockac6621392009-04-02 19:55:25 +01001008__find_pending_exception(struct dm_snapshot *s,
1009 struct dm_snap_pending_exception *pe, chunk_t chunk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010{
Mikulas Patockac6621392009-04-02 19:55:25 +01001011 struct dm_snap_pending_exception *pe2;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001012
Mikulas Patocka29138082009-04-02 19:55:25 +01001013 pe2 = __lookup_pending_exception(s, chunk);
1014 if (pe2) {
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001015 free_pending_exception(pe);
Mikulas Patocka29138082009-04-02 19:55:25 +01001016 return pe2;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001017 }
1018
1019 pe->e.old_chunk = chunk;
1020 bio_list_init(&pe->origin_bios);
1021 bio_list_init(&pe->snapshot_bios);
1022 pe->primary_pe = NULL;
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001023 atomic_set(&pe->ref_count, 0);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001024 pe->started = 0;
1025
Jonathan Brassow493df712009-04-02 19:55:31 +01001026 if (s->store->type->prepare_exception(s->store, &pe->e)) {
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001027 free_pending_exception(pe);
1028 return NULL;
1029 }
1030
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001031 get_pending_exception(pe);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001032 insert_exception(&s->pending, &pe->e);
1033
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 return pe;
1035}
1036
Jon Brassow1d4989c2009-12-10 23:52:10 +00001037static void remap_exception(struct dm_snapshot *s, struct dm_exception *e,
Milan Brozd74f81f2008-02-08 02:11:27 +00001038 struct bio *bio, chunk_t chunk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039{
Jonathan Brassow49beb2b2009-04-02 19:55:33 +01001040 bio->bi_bdev = s->store->cow->bdev;
Jonathan Brassow71fab002009-04-02 19:55:33 +01001041 bio->bi_sector = chunk_to_sector(s->store,
1042 dm_chunk_number(e->new_chunk) +
1043 (chunk - e->old_chunk)) +
1044 (bio->bi_sector &
1045 s->store->chunk_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046}
1047
1048static int snapshot_map(struct dm_target *ti, struct bio *bio,
1049 union map_info *map_context)
1050{
Jon Brassow1d4989c2009-12-10 23:52:10 +00001051 struct dm_exception *e;
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001052 struct dm_snapshot *s = ti->private;
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001053 int r = DM_MAPIO_REMAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 chunk_t chunk;
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001055 struct dm_snap_pending_exception *pe = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
Mikulas Patocka494b3ee2009-06-22 10:12:25 +01001057 if (unlikely(bio_empty_barrier(bio))) {
1058 bio->bi_bdev = s->store->cow->bdev;
1059 return DM_MAPIO_REMAPPED;
1060 }
1061
Jonathan Brassow71fab002009-04-02 19:55:33 +01001062 chunk = sector_to_chunk(s->store, bio->bi_sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063
1064 /* Full snapshots are not usable */
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001065 /* To get here the table must be live so s->active is always set. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 if (!s->valid)
Alasdair G Kergonf6a80ea2005-07-12 15:53:01 -07001067 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001069 /* FIXME: should only take write lock if we need
1070 * to copy an exception */
1071 down_write(&s->lock);
1072
1073 if (!s->valid) {
1074 r = -EIO;
1075 goto out_unlock;
1076 }
1077
1078 /* If the block is already remapped - use that, else remap it */
1079 e = lookup_exception(&s->complete, chunk);
1080 if (e) {
Milan Brozd74f81f2008-02-08 02:11:27 +00001081 remap_exception(s, e, bio, chunk);
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001082 goto out_unlock;
1083 }
1084
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 /*
1086 * Write to snapshot - higher level takes care of RW/RO
1087 * flags so we should only get this if we are
1088 * writeable.
1089 */
1090 if (bio_rw(bio) == WRITE) {
Mikulas Patocka29138082009-04-02 19:55:25 +01001091 pe = __lookup_pending_exception(s, chunk);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001092 if (!pe) {
Mikulas Patockac6621392009-04-02 19:55:25 +01001093 up_write(&s->lock);
1094 pe = alloc_pending_exception(s);
1095 down_write(&s->lock);
1096
1097 if (!s->valid) {
1098 free_pending_exception(pe);
1099 r = -EIO;
1100 goto out_unlock;
1101 }
1102
Mikulas Patocka35bf6592009-04-02 19:55:26 +01001103 e = lookup_exception(&s->complete, chunk);
1104 if (e) {
1105 free_pending_exception(pe);
1106 remap_exception(s, e, bio, chunk);
1107 goto out_unlock;
1108 }
1109
Mikulas Patockac6621392009-04-02 19:55:25 +01001110 pe = __find_pending_exception(s, pe, chunk);
Mikulas Patocka29138082009-04-02 19:55:25 +01001111 if (!pe) {
1112 __invalidate_snapshot(s, -ENOMEM);
1113 r = -EIO;
1114 goto out_unlock;
1115 }
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001116 }
1117
Milan Brozd74f81f2008-02-08 02:11:27 +00001118 remap_exception(s, &pe->e, bio, chunk);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001119 bio_list_add(&pe->snapshot_bios, bio);
1120
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001121 r = DM_MAPIO_SUBMITTED;
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001122
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001123 if (!pe->started) {
1124 /* this is protected by snap->lock */
1125 pe->started = 1;
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001126 up_write(&s->lock);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001127 start_copy(pe);
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001128 goto out;
1129 }
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001130 } else {
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001131 bio->bi_bdev = s->origin->bdev;
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001132 map_context->ptr = track_chunk(s, chunk);
1133 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001135 out_unlock:
1136 up_write(&s->lock);
1137 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 return r;
1139}
1140
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001141static int snapshot_end_io(struct dm_target *ti, struct bio *bio,
1142 int error, union map_info *map_context)
1143{
1144 struct dm_snapshot *s = ti->private;
1145 struct dm_snap_tracked_chunk *c = map_context->ptr;
1146
1147 if (c)
1148 stop_tracking_chunk(s, c);
1149
1150 return 0;
1151}
1152
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153static void snapshot_resume(struct dm_target *ti)
1154{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001155 struct dm_snapshot *s = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -08001157 down_write(&s->lock);
1158 s->active = 1;
1159 up_write(&s->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160}
1161
1162static int snapshot_status(struct dm_target *ti, status_type_t type,
1163 char *result, unsigned int maxlen)
1164{
Jonathan Brassow2e4a31d2009-04-02 19:55:34 +01001165 unsigned sz = 0;
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001166 struct dm_snapshot *snap = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
1168 switch (type) {
1169 case STATUSTYPE_INFO:
Mikulas Patocka94e765722009-12-10 23:51:53 +00001170
1171 down_write(&snap->lock);
1172
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 if (!snap->valid)
Jonathan Brassow2e4a31d2009-04-02 19:55:34 +01001174 DMEMIT("Invalid");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 else {
Jonathan Brassow493df712009-04-02 19:55:31 +01001176 if (snap->store->type->fraction_full) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 sector_t numerator, denominator;
Jonathan Brassow493df712009-04-02 19:55:31 +01001178 snap->store->type->fraction_full(snap->store,
1179 &numerator,
1180 &denominator);
Jonathan Brassow2e4a31d2009-04-02 19:55:34 +01001181 DMEMIT("%llu/%llu",
1182 (unsigned long long)numerator,
1183 (unsigned long long)denominator);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 }
1185 else
Jonathan Brassow2e4a31d2009-04-02 19:55:34 +01001186 DMEMIT("Unknown");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 }
Mikulas Patocka94e765722009-12-10 23:51:53 +00001188
1189 up_write(&snap->lock);
1190
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 break;
1192
1193 case STATUSTYPE_TABLE:
1194 /*
1195 * kdevname returns a static pointer so we need
1196 * to make private copies if the output is to
1197 * make sense.
1198 */
Jonathan Brassow2e4a31d2009-04-02 19:55:34 +01001199 DMEMIT("%s", snap->origin->name);
Jonathan Brassow1e302a92009-04-02 19:55:35 +01001200 snap->store->type->status(snap->store, type, result + sz,
1201 maxlen - sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 break;
1203 }
1204
1205 return 0;
1206}
1207
Mike Snitzer8811f462009-09-04 20:40:19 +01001208static int snapshot_iterate_devices(struct dm_target *ti,
1209 iterate_devices_callout_fn fn, void *data)
1210{
1211 struct dm_snapshot *snap = ti->private;
1212
1213 return fn(ti, snap->origin, 0, ti->len, data);
1214}
1215
1216
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217/*-----------------------------------------------------------------
1218 * Origin methods
1219 *---------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220static int __origin_write(struct list_head *snapshots, struct bio *bio)
1221{
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001222 int r = DM_MAPIO_REMAPPED, first = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 struct dm_snapshot *snap;
Jon Brassow1d4989c2009-12-10 23:52:10 +00001224 struct dm_exception *e;
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001225 struct dm_snap_pending_exception *pe, *next_pe, *primary_pe = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 chunk_t chunk;
Alasdair G Kergoneccf0812006-03-27 01:17:42 -08001227 LIST_HEAD(pe_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
1229 /* Do all the snapshots on this origin */
1230 list_for_each_entry (snap, snapshots, list) {
1231
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001232 down_write(&snap->lock);
1233
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -08001234 /* Only deal with valid and active snapshots */
1235 if (!snap->valid || !snap->active)
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001236 goto next_snapshot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
Alasdair G Kergond5e404c2005-07-12 15:53:05 -07001238 /* Nothing to do if writing beyond end of snapshot */
Jonathan Brassow0cea9c72009-04-02 19:55:32 +01001239 if (bio->bi_sector >= dm_table_get_size(snap->store->ti->table))
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001240 goto next_snapshot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241
1242 /*
1243 * Remember, different snapshots can have
1244 * different chunk sizes.
1245 */
Jonathan Brassow71fab002009-04-02 19:55:33 +01001246 chunk = sector_to_chunk(snap->store, bio->bi_sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247
1248 /*
1249 * Check exception table to see if block
1250 * is already remapped in this snapshot
1251 * and trigger an exception if not.
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001252 *
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001253 * ref_count is initialised to 1 so pending_complete()
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001254 * won't destroy the primary_pe while we're inside this loop.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 */
1256 e = lookup_exception(&snap->complete, chunk);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001257 if (e)
1258 goto next_snapshot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
Mikulas Patocka29138082009-04-02 19:55:25 +01001260 pe = __lookup_pending_exception(snap, chunk);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001261 if (!pe) {
Mikulas Patockac6621392009-04-02 19:55:25 +01001262 up_write(&snap->lock);
1263 pe = alloc_pending_exception(snap);
1264 down_write(&snap->lock);
1265
1266 if (!snap->valid) {
1267 free_pending_exception(pe);
1268 goto next_snapshot;
1269 }
1270
Mikulas Patocka35bf6592009-04-02 19:55:26 +01001271 e = lookup_exception(&snap->complete, chunk);
1272 if (e) {
1273 free_pending_exception(pe);
1274 goto next_snapshot;
1275 }
1276
Mikulas Patockac6621392009-04-02 19:55:25 +01001277 pe = __find_pending_exception(snap, pe, chunk);
Mikulas Patocka29138082009-04-02 19:55:25 +01001278 if (!pe) {
1279 __invalidate_snapshot(snap, -ENOMEM);
1280 goto next_snapshot;
1281 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 }
1283
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001284 if (!primary_pe) {
1285 /*
1286 * Either every pe here has same
1287 * primary_pe or none has one yet.
1288 */
1289 if (pe->primary_pe)
1290 primary_pe = pe->primary_pe;
1291 else {
1292 primary_pe = pe;
1293 first = 1;
1294 }
1295
1296 bio_list_add(&primary_pe->origin_bios, bio);
1297
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001298 r = DM_MAPIO_SUBMITTED;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001299 }
1300
1301 if (!pe->primary_pe) {
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001302 pe->primary_pe = primary_pe;
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001303 get_pending_exception(primary_pe);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001304 }
1305
1306 if (!pe->started) {
1307 pe->started = 1;
1308 list_add_tail(&pe->list, &pe_queue);
1309 }
1310
1311 next_snapshot:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 up_write(&snap->lock);
1313 }
1314
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001315 if (!primary_pe)
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001316 return r;
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001317
1318 /*
1319 * If this is the first time we're processing this chunk and
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001320 * ref_count is now 1 it means all the pending exceptions
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001321 * got completed while we were in the loop above, so it falls to
1322 * us here to remove the primary_pe and submit any origin_bios.
1323 */
1324
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001325 if (first && atomic_dec_and_test(&primary_pe->ref_count)) {
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001326 flush_bios(bio_list_get(&primary_pe->origin_bios));
1327 free_pending_exception(primary_pe);
1328 /* If we got here, pe_queue is necessarily empty. */
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001329 return r;
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001330 }
1331
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 /*
1333 * Now that we have a complete pe list we can start the copying.
1334 */
Alasdair G Kergoneccf0812006-03-27 01:17:42 -08001335 list_for_each_entry_safe(pe, next_pe, &pe_queue, list)
1336 start_copy(pe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
1338 return r;
1339}
1340
1341/*
1342 * Called on a write from the origin driver.
1343 */
1344static int do_origin(struct dm_dev *origin, struct bio *bio)
1345{
1346 struct origin *o;
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001347 int r = DM_MAPIO_REMAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
1349 down_read(&_origins_lock);
1350 o = __lookup_origin(origin->bdev);
1351 if (o)
1352 r = __origin_write(&o->snapshots, bio);
1353 up_read(&_origins_lock);
1354
1355 return r;
1356}
1357
1358/*
1359 * Origin: maps a linear range of a device, with hooks for snapshotting.
1360 */
1361
1362/*
1363 * Construct an origin mapping: <dev_path>
1364 * The context for an origin is merely a 'struct dm_dev *'
1365 * pointing to the real device.
1366 */
1367static int origin_ctr(struct dm_target *ti, unsigned int argc, char **argv)
1368{
1369 int r;
1370 struct dm_dev *dev;
1371
1372 if (argc != 1) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001373 ti->error = "origin: incorrect number of arguments";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 return -EINVAL;
1375 }
1376
1377 r = dm_get_device(ti, argv[0], 0, ti->len,
1378 dm_table_get_mode(ti->table), &dev);
1379 if (r) {
1380 ti->error = "Cannot get target device";
1381 return r;
1382 }
1383
1384 ti->private = dev;
Mikulas Patocka494b3ee2009-06-22 10:12:25 +01001385 ti->num_flush_requests = 1;
1386
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 return 0;
1388}
1389
1390static void origin_dtr(struct dm_target *ti)
1391{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001392 struct dm_dev *dev = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 dm_put_device(ti, dev);
1394}
1395
1396static int origin_map(struct dm_target *ti, struct bio *bio,
1397 union map_info *map_context)
1398{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001399 struct dm_dev *dev = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 bio->bi_bdev = dev->bdev;
1401
Mikulas Patocka494b3ee2009-06-22 10:12:25 +01001402 if (unlikely(bio_empty_barrier(bio)))
1403 return DM_MAPIO_REMAPPED;
1404
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 /* Only tell snapshots if this is a write */
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001406 return (bio_rw(bio) == WRITE) ? do_origin(dev, bio) : DM_MAPIO_REMAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407}
1408
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409/*
1410 * Set the target "split_io" field to the minimum of all the snapshots'
1411 * chunk sizes.
1412 */
1413static void origin_resume(struct dm_target *ti)
1414{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001415 struct dm_dev *dev = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416
1417 down_read(&_origins_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418
Mikulas Patocka7e201b32009-12-10 23:52:08 +00001419 ti->split_io = __minimum_chunk_size(__lookup_origin(dev->bdev));
1420
1421 up_read(&_origins_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422}
1423
1424static int origin_status(struct dm_target *ti, status_type_t type, char *result,
1425 unsigned int maxlen)
1426{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001427 struct dm_dev *dev = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
1429 switch (type) {
1430 case STATUSTYPE_INFO:
1431 result[0] = '\0';
1432 break;
1433
1434 case STATUSTYPE_TABLE:
1435 snprintf(result, maxlen, "%s", dev->name);
1436 break;
1437 }
1438
1439 return 0;
1440}
1441
Mike Snitzer8811f462009-09-04 20:40:19 +01001442static int origin_iterate_devices(struct dm_target *ti,
1443 iterate_devices_callout_fn fn, void *data)
1444{
1445 struct dm_dev *dev = ti->private;
1446
1447 return fn(ti, dev, 0, ti->len, data);
1448}
1449
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450static struct target_type origin_target = {
1451 .name = "snapshot-origin",
Mike Snitzer8811f462009-09-04 20:40:19 +01001452 .version = {1, 7, 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 .module = THIS_MODULE,
1454 .ctr = origin_ctr,
1455 .dtr = origin_dtr,
1456 .map = origin_map,
1457 .resume = origin_resume,
1458 .status = origin_status,
Mike Snitzer8811f462009-09-04 20:40:19 +01001459 .iterate_devices = origin_iterate_devices,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460};
1461
1462static struct target_type snapshot_target = {
1463 .name = "snapshot",
Mike Snitzer8811f462009-09-04 20:40:19 +01001464 .version = {1, 7, 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 .module = THIS_MODULE,
1466 .ctr = snapshot_ctr,
1467 .dtr = snapshot_dtr,
1468 .map = snapshot_map,
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001469 .end_io = snapshot_end_io,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 .resume = snapshot_resume,
1471 .status = snapshot_status,
Mike Snitzer8811f462009-09-04 20:40:19 +01001472 .iterate_devices = snapshot_iterate_devices,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473};
1474
1475static int __init dm_snapshot_init(void)
1476{
1477 int r;
1478
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00001479 r = dm_exception_store_init();
1480 if (r) {
1481 DMERR("Failed to initialize exception stores");
1482 return r;
1483 }
1484
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 r = dm_register_target(&snapshot_target);
1486 if (r) {
1487 DMERR("snapshot target register failed %d", r);
Jonathan Brassow034a1862009-10-16 23:18:14 +01001488 goto bad_register_snapshot_target;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 }
1490
1491 r = dm_register_target(&origin_target);
1492 if (r < 0) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001493 DMERR("Origin target register failed %d", r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 goto bad1;
1495 }
1496
1497 r = init_origin_hash();
1498 if (r) {
1499 DMERR("init_origin_hash failed.");
1500 goto bad2;
1501 }
1502
Jon Brassow1d4989c2009-12-10 23:52:10 +00001503 exception_cache = KMEM_CACHE(dm_exception, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 if (!exception_cache) {
1505 DMERR("Couldn't create exception cache.");
1506 r = -ENOMEM;
1507 goto bad3;
1508 }
1509
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001510 pending_cache = KMEM_CACHE(dm_snap_pending_exception, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 if (!pending_cache) {
1512 DMERR("Couldn't create pending cache.");
1513 r = -ENOMEM;
1514 goto bad4;
1515 }
1516
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001517 tracked_chunk_cache = KMEM_CACHE(dm_snap_tracked_chunk, 0);
1518 if (!tracked_chunk_cache) {
1519 DMERR("Couldn't create cache to track chunks in use.");
1520 r = -ENOMEM;
1521 goto bad5;
1522 }
1523
Alasdair G Kergonca3a9312006-10-03 01:15:30 -07001524 ksnapd = create_singlethread_workqueue("ksnapd");
1525 if (!ksnapd) {
1526 DMERR("Failed to create ksnapd workqueue.");
1527 r = -ENOMEM;
Mikulas Patocka92e86812008-07-21 12:00:35 +01001528 goto bad_pending_pool;
Alasdair G Kergonca3a9312006-10-03 01:15:30 -07001529 }
1530
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 return 0;
1532
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00001533bad_pending_pool:
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001534 kmem_cache_destroy(tracked_chunk_cache);
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00001535bad5:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 kmem_cache_destroy(pending_cache);
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00001537bad4:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 kmem_cache_destroy(exception_cache);
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00001539bad3:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 exit_origin_hash();
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00001541bad2:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 dm_unregister_target(&origin_target);
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00001543bad1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 dm_unregister_target(&snapshot_target);
Jonathan Brassow034a1862009-10-16 23:18:14 +01001545
1546bad_register_snapshot_target:
1547 dm_exception_store_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 return r;
1549}
1550
1551static void __exit dm_snapshot_exit(void)
1552{
Alasdair G Kergonca3a9312006-10-03 01:15:30 -07001553 destroy_workqueue(ksnapd);
1554
Mikulas Patocka10d3bd02009-01-06 03:04:58 +00001555 dm_unregister_target(&snapshot_target);
1556 dm_unregister_target(&origin_target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
1558 exit_origin_hash();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 kmem_cache_destroy(pending_cache);
1560 kmem_cache_destroy(exception_cache);
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001561 kmem_cache_destroy(tracked_chunk_cache);
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00001562
1563 dm_exception_store_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564}
1565
1566/* Module hooks */
1567module_init(dm_snapshot_init);
1568module_exit(dm_snapshot_exit);
1569
1570MODULE_DESCRIPTION(DM_NAME " snapshot target");
1571MODULE_AUTHOR("Joe Thornber");
1572MODULE_LICENSE("GPL");