blob: 8bd77cbd7e4542302b5d4c9892e2f06aa6c533c3 [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
Jon Brassow191437a2009-12-10 23:52:10 +000052struct dm_exception_table {
Jonathan Brassowccc45ea2009-04-02 19:55:34 +010053 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
Jon Brassow191437a2009-12-10 23:52:10 +000076 struct dm_exception_table pending;
77 struct dm_exception_table complete;
Jonathan Brassowccc45ea2009-04-02 19:55:34 +010078
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 */
Jon Brassow3510cb92009-12-10 23:52:11 +0000354static int dm_exception_table_init(struct dm_exception_table *et,
355 uint32_t size, 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
Jon Brassow3510cb92009-12-10 23:52:11 +0000371static void dm_exception_table_exit(struct dm_exception_table *et,
372 struct kmem_cache *mem)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373{
374 struct list_head *slot;
Jon Brassow1d4989c2009-12-10 23:52:10 +0000375 struct dm_exception *ex, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 int i, size;
377
378 size = et->hash_mask + 1;
379 for (i = 0; i < size; i++) {
380 slot = et->table + i;
381
382 list_for_each_entry_safe (ex, next, slot, hash_list)
383 kmem_cache_free(mem, ex);
384 }
385
386 vfree(et->table);
387}
388
Jon Brassow191437a2009-12-10 23:52:10 +0000389static uint32_t exception_hash(struct dm_exception_table *et, chunk_t chunk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390{
Milan Brozd74f81f2008-02-08 02:11:27 +0000391 return (chunk >> et->hash_shift) & et->hash_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392}
393
Jon Brassow3510cb92009-12-10 23:52:11 +0000394static void dm_remove_exception(struct dm_exception *e)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395{
396 list_del(&e->hash_list);
397}
398
399/*
400 * Return the exception data for a sector, or NULL if not
401 * remapped.
402 */
Jon Brassow3510cb92009-12-10 23:52:11 +0000403static struct dm_exception *dm_lookup_exception(struct dm_exception_table *et,
404 chunk_t chunk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405{
406 struct list_head *slot;
Jon Brassow1d4989c2009-12-10 23:52:10 +0000407 struct dm_exception *e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
409 slot = &et->table[exception_hash(et, chunk)];
410 list_for_each_entry (e, slot, hash_list)
Milan Brozd74f81f2008-02-08 02:11:27 +0000411 if (chunk >= e->old_chunk &&
412 chunk <= e->old_chunk + dm_consecutive_chunk_count(e))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 return e;
414
415 return NULL;
416}
417
Jon Brassow3510cb92009-12-10 23:52:11 +0000418static struct dm_exception *alloc_completed_exception(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419{
Jon Brassow1d4989c2009-12-10 23:52:10 +0000420 struct dm_exception *e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
422 e = kmem_cache_alloc(exception_cache, GFP_NOIO);
423 if (!e)
424 e = kmem_cache_alloc(exception_cache, GFP_ATOMIC);
425
426 return e;
427}
428
Jon Brassow3510cb92009-12-10 23:52:11 +0000429static void free_completed_exception(struct dm_exception *e)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430{
431 kmem_cache_free(exception_cache, e);
432}
433
Mikulas Patocka92e86812008-07-21 12:00:35 +0100434static struct dm_snap_pending_exception *alloc_pending_exception(struct dm_snapshot *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435{
Mikulas Patocka92e86812008-07-21 12:00:35 +0100436 struct dm_snap_pending_exception *pe = mempool_alloc(s->pending_pool,
437 GFP_NOIO);
438
Mikulas Patocka879129d22008-10-30 13:33:16 +0000439 atomic_inc(&s->pending_exceptions_count);
Mikulas Patocka92e86812008-07-21 12:00:35 +0100440 pe->snap = s;
441
442 return pe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443}
444
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100445static void free_pending_exception(struct dm_snap_pending_exception *pe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446{
Mikulas Patocka879129d22008-10-30 13:33:16 +0000447 struct dm_snapshot *s = pe->snap;
448
449 mempool_free(pe, s->pending_pool);
450 smp_mb__before_atomic_dec();
451 atomic_dec(&s->pending_exceptions_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452}
453
Jon Brassow3510cb92009-12-10 23:52:11 +0000454static void dm_insert_exception(struct dm_exception_table *eh,
455 struct dm_exception *new_e)
Milan Brozd74f81f2008-02-08 02:11:27 +0000456{
Milan Brozd74f81f2008-02-08 02:11:27 +0000457 struct list_head *l;
Jon Brassow1d4989c2009-12-10 23:52:10 +0000458 struct dm_exception *e = NULL;
Milan Brozd74f81f2008-02-08 02:11:27 +0000459
460 l = &eh->table[exception_hash(eh, new_e->old_chunk)];
461
462 /* Add immediately if this table doesn't support consecutive chunks */
463 if (!eh->hash_shift)
464 goto out;
465
466 /* List is ordered by old_chunk */
467 list_for_each_entry_reverse(e, l, hash_list) {
468 /* Insert after an existing chunk? */
469 if (new_e->old_chunk == (e->old_chunk +
470 dm_consecutive_chunk_count(e) + 1) &&
471 new_e->new_chunk == (dm_chunk_number(e->new_chunk) +
472 dm_consecutive_chunk_count(e) + 1)) {
473 dm_consecutive_chunk_count_inc(e);
Jon Brassow3510cb92009-12-10 23:52:11 +0000474 free_completed_exception(new_e);
Milan Brozd74f81f2008-02-08 02:11:27 +0000475 return;
476 }
477
478 /* Insert before an existing chunk? */
479 if (new_e->old_chunk == (e->old_chunk - 1) &&
480 new_e->new_chunk == (dm_chunk_number(e->new_chunk) - 1)) {
481 dm_consecutive_chunk_count_inc(e);
482 e->old_chunk--;
483 e->new_chunk--;
Jon Brassow3510cb92009-12-10 23:52:11 +0000484 free_completed_exception(new_e);
Milan Brozd74f81f2008-02-08 02:11:27 +0000485 return;
486 }
487
488 if (new_e->old_chunk > e->old_chunk)
489 break;
490 }
491
492out:
493 list_add(&new_e->hash_list, e ? &e->hash_list : l);
494}
495
Jonathan Brassowa159c1a2009-01-06 03:05:19 +0000496/*
497 * Callback used by the exception stores to load exceptions when
498 * initialising.
499 */
500static int dm_add_exception(void *context, chunk_t old, chunk_t new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501{
Jonathan Brassowa159c1a2009-01-06 03:05:19 +0000502 struct dm_snapshot *s = context;
Jon Brassow1d4989c2009-12-10 23:52:10 +0000503 struct dm_exception *e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Jon Brassow3510cb92009-12-10 23:52:11 +0000505 e = alloc_completed_exception();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 if (!e)
507 return -ENOMEM;
508
509 e->old_chunk = old;
Milan Brozd74f81f2008-02-08 02:11:27 +0000510
511 /* Consecutive_count is implicitly initialised to zero */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 e->new_chunk = new;
Milan Brozd74f81f2008-02-08 02:11:27 +0000513
Jon Brassow3510cb92009-12-10 23:52:11 +0000514 dm_insert_exception(&s->complete, e);
Milan Brozd74f81f2008-02-08 02:11:27 +0000515
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 return 0;
517}
518
Mikulas Patocka7e201b32009-12-10 23:52:08 +0000519#define min_not_zero(l, r) (((l) == 0) ? (r) : (((r) == 0) ? (l) : min(l, r)))
520
521/*
522 * Return a minimum chunk size of all snapshots that have the specified origin.
523 * Return zero if the origin has no snapshots.
524 */
525static sector_t __minimum_chunk_size(struct origin *o)
526{
527 struct dm_snapshot *snap;
528 unsigned chunk_size = 0;
529
530 if (o)
531 list_for_each_entry(snap, &o->snapshots, list)
532 chunk_size = min_not_zero(chunk_size,
533 snap->store->chunk_size);
534
535 return chunk_size;
536}
537
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538/*
539 * Hard coded magic.
540 */
541static int calc_max_buckets(void)
542{
543 /* use a fixed size of 2MB */
544 unsigned long mem = 2 * 1024 * 1024;
545 mem /= sizeof(struct list_head);
546
547 return mem;
548}
549
550/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 * Allocate room for a suitable hash table.
552 */
Jonathan Brassowfee19982009-04-02 19:55:34 +0100553static int init_hash_tables(struct dm_snapshot *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554{
555 sector_t hash_size, cow_dev_size, origin_dev_size, max_buckets;
556
557 /*
558 * Calculate based on the size of the original volume or
559 * the COW volume...
560 */
Jonathan Brassowfee19982009-04-02 19:55:34 +0100561 cow_dev_size = get_dev_size(s->store->cow->bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 origin_dev_size = get_dev_size(s->origin->bdev);
563 max_buckets = calc_max_buckets();
564
Jonathan Brassowfee19982009-04-02 19:55:34 +0100565 hash_size = min(origin_dev_size, cow_dev_size) >> s->store->chunk_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 hash_size = min(hash_size, max_buckets);
567
Mikulas Patocka8e87b9b2009-12-10 23:51:54 +0000568 if (hash_size < 64)
569 hash_size = 64;
Robert P. J. Day8defd832008-02-08 02:10:06 +0000570 hash_size = rounddown_pow_of_two(hash_size);
Jon Brassow3510cb92009-12-10 23:52:11 +0000571 if (dm_exception_table_init(&s->complete, hash_size,
572 DM_CHUNK_CONSECUTIVE_BITS))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 return -ENOMEM;
574
575 /*
576 * Allocate hash table for in-flight exceptions
577 * Make this smaller than the real hash table
578 */
579 hash_size >>= 3;
580 if (hash_size < 64)
581 hash_size = 64;
582
Jon Brassow3510cb92009-12-10 23:52:11 +0000583 if (dm_exception_table_init(&s->pending, hash_size, 0)) {
584 dm_exception_table_exit(&s->complete, exception_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 return -ENOMEM;
586 }
587
588 return 0;
589}
590
591/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 * Construct a snapshot mapping: <origin_dev> <COW-dev> <p/n> <chunk-size>
593 */
594static int snapshot_ctr(struct dm_target *ti, unsigned int argc, char **argv)
595{
596 struct dm_snapshot *s;
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100597 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 int r = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 char *origin_path;
Jonathan Brassowfee19982009-04-02 19:55:34 +0100600 struct dm_exception_store *store;
601 unsigned args_used;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -0700603 if (argc != 4) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700604 ti->error = "requires exactly 4 arguments";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 r = -EINVAL;
Jonathan Brassowfee19982009-04-02 19:55:34 +0100606 goto bad_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 }
608
609 origin_path = argv[0];
Jonathan Brassowfee19982009-04-02 19:55:34 +0100610 argv++;
611 argc--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Jonathan Brassowfee19982009-04-02 19:55:34 +0100613 r = dm_exception_store_create(ti, argc, argv, &args_used, &store);
614 if (r) {
615 ti->error = "Couldn't create exception store";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 r = -EINVAL;
Jonathan Brassowfee19982009-04-02 19:55:34 +0100617 goto bad_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 }
619
Jonathan Brassowfee19982009-04-02 19:55:34 +0100620 argv += args_used;
621 argc -= args_used;
622
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 s = kmalloc(sizeof(*s), GFP_KERNEL);
Jonathan Brassowfee19982009-04-02 19:55:34 +0100624 if (!s) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 ti->error = "Cannot allocate snapshot context private "
626 "structure";
627 r = -ENOMEM;
Jonathan Brassowfee19982009-04-02 19:55:34 +0100628 goto bad_snap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 }
630
631 r = dm_get_device(ti, origin_path, 0, ti->len, FMODE_READ, &s->origin);
632 if (r) {
633 ti->error = "Cannot get origin device";
Jonathan Brassowfee19982009-04-02 19:55:34 +0100634 goto bad_origin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 }
636
Jonathan Brassowfee19982009-04-02 19:55:34 +0100637 s->store = store;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 s->valid = 1;
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -0800639 s->active = 0;
Mikulas Patocka879129d22008-10-30 13:33:16 +0000640 atomic_set(&s->pending_exceptions_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 init_rwsem(&s->lock);
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700642 spin_lock_init(&s->pe_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
644 /* Allocate hash table for COW data */
Jonathan Brassowfee19982009-04-02 19:55:34 +0100645 if (init_hash_tables(s)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 ti->error = "Unable to allocate hash table space";
647 r = -ENOMEM;
Jonathan Brassowfee19982009-04-02 19:55:34 +0100648 goto bad_hash_tables;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 }
650
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100651 r = dm_kcopyd_client_create(SNAPSHOT_PAGES, &s->kcopyd_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 if (r) {
653 ti->error = "Could not create kcopyd client";
Jonathan Brassowfee19982009-04-02 19:55:34 +0100654 goto bad_kcopyd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 }
656
Mikulas Patocka92e86812008-07-21 12:00:35 +0100657 s->pending_pool = mempool_create_slab_pool(MIN_IOS, pending_cache);
658 if (!s->pending_pool) {
659 ti->error = "Could not allocate mempool for pending exceptions";
Jonathan Brassowfee19982009-04-02 19:55:34 +0100660 goto bad_pending_pool;
Mikulas Patocka92e86812008-07-21 12:00:35 +0100661 }
662
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100663 s->tracked_chunk_pool = mempool_create_slab_pool(MIN_IOS,
664 tracked_chunk_cache);
665 if (!s->tracked_chunk_pool) {
666 ti->error = "Could not allocate tracked_chunk mempool for "
667 "tracking reads";
Mikulas Patocka92e86812008-07-21 12:00:35 +0100668 goto bad_tracked_chunk_pool;
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100669 }
670
671 for (i = 0; i < DM_TRACKED_CHUNK_HASH_SIZE; i++)
672 INIT_HLIST_HEAD(&s->tracked_chunk_hash[i]);
673
674 spin_lock_init(&s->tracked_chunk_lock);
675
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -0800676 /* Metadata must only be loaded into one table at once */
Jonathan Brassow493df712009-04-02 19:55:31 +0100677 r = s->store->type->read_metadata(s->store, dm_add_exception,
678 (void *)s);
Milan Broz07641472007-07-12 17:28:13 +0100679 if (r < 0) {
Mark McLoughlinf9cea4f2006-10-03 01:15:25 -0700680 ti->error = "Failed to read snapshot metadata";
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100681 goto bad_load_and_register;
Milan Broz07641472007-07-12 17:28:13 +0100682 } else if (r > 0) {
683 s->valid = 0;
684 DMWARN("Snapshot is marked invalid.");
Mark McLoughlinf9cea4f2006-10-03 01:15:25 -0700685 }
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -0800686
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700687 bio_list_init(&s->queued_bios);
David Howellsc4028952006-11-22 14:57:56 +0000688 INIT_WORK(&s->queued_bios_work, flush_queued_bios);
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700689
Mikulas Patocka3f2412d2009-10-16 23:18:16 +0100690 if (!s->store->chunk_size) {
691 ti->error = "Chunk size not set";
692 goto bad_load_and_register;
693 }
694
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 /* Add snapshot to the list of snapshots for this origin */
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -0800696 /* Exceptions aren't triggered till snapshot_resume() is called */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 if (register_snapshot(s)) {
698 r = -EINVAL;
699 ti->error = "Cannot register snapshot origin";
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100700 goto bad_load_and_register;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 }
702
703 ti->private = s;
Jonathan Brassowd0216842009-04-02 19:55:32 +0100704 ti->split_io = s->store->chunk_size;
Mikulas Patocka494b3ee2009-06-22 10:12:25 +0100705 ti->num_flush_requests = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
707 return 0;
708
Jonathan Brassowfee19982009-04-02 19:55:34 +0100709bad_load_and_register:
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100710 mempool_destroy(s->tracked_chunk_pool);
711
Jonathan Brassowfee19982009-04-02 19:55:34 +0100712bad_tracked_chunk_pool:
Mikulas Patocka92e86812008-07-21 12:00:35 +0100713 mempool_destroy(s->pending_pool);
714
Jonathan Brassowfee19982009-04-02 19:55:34 +0100715bad_pending_pool:
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100716 dm_kcopyd_client_destroy(s->kcopyd_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Jonathan Brassowfee19982009-04-02 19:55:34 +0100718bad_kcopyd:
Jon Brassow3510cb92009-12-10 23:52:11 +0000719 dm_exception_table_exit(&s->pending, pending_cache);
720 dm_exception_table_exit(&s->complete, exception_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
Jonathan Brassowfee19982009-04-02 19:55:34 +0100722bad_hash_tables:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 dm_put_device(ti, s->origin);
724
Jonathan Brassowfee19982009-04-02 19:55:34 +0100725bad_origin:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 kfree(s);
727
Jonathan Brassowfee19982009-04-02 19:55:34 +0100728bad_snap:
729 dm_exception_store_destroy(store);
730
731bad_args:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 return r;
733}
734
Milan Broz31c93a02006-12-08 02:41:11 -0800735static void __free_exceptions(struct dm_snapshot *s)
736{
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100737 dm_kcopyd_client_destroy(s->kcopyd_client);
Milan Broz31c93a02006-12-08 02:41:11 -0800738 s->kcopyd_client = NULL;
739
Jon Brassow3510cb92009-12-10 23:52:11 +0000740 dm_exception_table_exit(&s->pending, pending_cache);
741 dm_exception_table_exit(&s->complete, exception_cache);
Milan Broz31c93a02006-12-08 02:41:11 -0800742}
743
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744static void snapshot_dtr(struct dm_target *ti)
745{
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100746#ifdef CONFIG_DM_DEBUG
747 int i;
748#endif
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100749 struct dm_snapshot *s = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700751 flush_workqueue(ksnapd);
752
Alasdair G Kergon138728dc2006-03-27 01:17:50 -0800753 /* Prevent further origin writes from using this snapshot. */
754 /* After this returns there can be no new kcopyd jobs. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 unregister_snapshot(s);
756
Mikulas Patocka879129d22008-10-30 13:33:16 +0000757 while (atomic_read(&s->pending_exceptions_count))
Mikulas Patocka90fa1522009-01-06 03:04:54 +0000758 msleep(1);
Mikulas Patocka879129d22008-10-30 13:33:16 +0000759 /*
760 * Ensure instructions in mempool_destroy aren't reordered
761 * before atomic_read.
762 */
763 smp_mb();
764
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100765#ifdef CONFIG_DM_DEBUG
766 for (i = 0; i < DM_TRACKED_CHUNK_HASH_SIZE; i++)
767 BUG_ON(!hlist_empty(&s->tracked_chunk_hash[i]));
768#endif
769
770 mempool_destroy(s->tracked_chunk_pool);
771
Milan Broz31c93a02006-12-08 02:41:11 -0800772 __free_exceptions(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
Mikulas Patocka92e86812008-07-21 12:00:35 +0100774 mempool_destroy(s->pending_pool);
775
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 dm_put_device(ti, s->origin);
Jonathan Brassowfee19982009-04-02 19:55:34 +0100777
778 dm_exception_store_destroy(s->store);
Alasdair G Kergon138728dc2006-03-27 01:17:50 -0800779
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 kfree(s);
781}
782
783/*
784 * Flush a list of buffers.
785 */
786static void flush_bios(struct bio *bio)
787{
788 struct bio *n;
789
790 while (bio) {
791 n = bio->bi_next;
792 bio->bi_next = NULL;
793 generic_make_request(bio);
794 bio = n;
795 }
796}
797
David Howellsc4028952006-11-22 14:57:56 +0000798static void flush_queued_bios(struct work_struct *work)
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700799{
David Howellsc4028952006-11-22 14:57:56 +0000800 struct dm_snapshot *s =
801 container_of(work, struct dm_snapshot, queued_bios_work);
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700802 struct bio *queued_bios;
803 unsigned long flags;
804
805 spin_lock_irqsave(&s->pe_lock, flags);
806 queued_bios = bio_list_get(&s->queued_bios);
807 spin_unlock_irqrestore(&s->pe_lock, flags);
808
809 flush_bios(queued_bios);
810}
811
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812/*
813 * Error a list of buffers.
814 */
815static void error_bios(struct bio *bio)
816{
817 struct bio *n;
818
819 while (bio) {
820 n = bio->bi_next;
821 bio->bi_next = NULL;
NeilBrown6712ecf2007-09-27 12:47:43 +0200822 bio_io_error(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 bio = n;
824 }
825}
826
Alasdair G Kergon695368a2006-10-03 01:15:31 -0700827static void __invalidate_snapshot(struct dm_snapshot *s, int err)
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800828{
829 if (!s->valid)
830 return;
831
832 if (err == -EIO)
833 DMERR("Invalidating snapshot: Error reading/writing.");
834 else if (err == -ENOMEM)
835 DMERR("Invalidating snapshot: Unable to allocate exception.");
836
Jonathan Brassow493df712009-04-02 19:55:31 +0100837 if (s->store->type->drop_snapshot)
838 s->store->type->drop_snapshot(s->store);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800839
840 s->valid = 0;
841
Jonathan Brassow0cea9c72009-04-02 19:55:32 +0100842 dm_table_event(s->store->ti->table);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800843}
844
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100845static void get_pending_exception(struct dm_snap_pending_exception *pe)
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700846{
847 atomic_inc(&pe->ref_count);
848}
849
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100850static struct bio *put_pending_exception(struct dm_snap_pending_exception *pe)
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700851{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100852 struct dm_snap_pending_exception *primary_pe;
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700853 struct bio *origin_bios = NULL;
854
855 primary_pe = pe->primary_pe;
856
857 /*
858 * If this pe is involved in a write to the origin and
859 * it is the last sibling to complete then release
860 * the bios for the original write to the origin.
861 */
862 if (primary_pe &&
Mikulas Patocka7c5f78b2008-10-21 17:44:51 +0100863 atomic_dec_and_test(&primary_pe->ref_count)) {
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700864 origin_bios = bio_list_get(&primary_pe->origin_bios);
Mikulas Patocka7c5f78b2008-10-21 17:44:51 +0100865 free_pending_exception(primary_pe);
866 }
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700867
868 /*
869 * Free the pe if it's not linked to an origin write or if
870 * it's not itself a primary pe.
871 */
872 if (!primary_pe || primary_pe != pe)
873 free_pending_exception(pe);
874
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700875 return origin_bios;
876}
877
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100878static void pending_complete(struct dm_snap_pending_exception *pe, int success)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879{
Jon Brassow1d4989c2009-12-10 23:52:10 +0000880 struct dm_exception *e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 struct dm_snapshot *s = pe->snap;
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -0700882 struct bio *origin_bios = NULL;
883 struct bio *snapshot_bios = NULL;
884 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800886 if (!success) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 /* Read/write error - snapshot is unusable */
888 down_write(&s->lock);
Alasdair G Kergon695368a2006-10-03 01:15:31 -0700889 __invalidate_snapshot(s, -EIO);
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -0700890 error = 1;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800891 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 }
893
Jon Brassow3510cb92009-12-10 23:52:11 +0000894 e = alloc_completed_exception();
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800895 if (!e) {
896 down_write(&s->lock);
Alasdair G Kergon695368a2006-10-03 01:15:31 -0700897 __invalidate_snapshot(s, -ENOMEM);
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -0700898 error = 1;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800899 goto out;
900 }
901 *e = pe->e;
902
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -0700903 down_write(&s->lock);
904 if (!s->valid) {
Jon Brassow3510cb92009-12-10 23:52:11 +0000905 free_completed_exception(e);
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -0700906 error = 1;
907 goto out;
908 }
909
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800910 /*
Mikulas Patockaa8d41b52008-07-21 12:00:34 +0100911 * Check for conflicting reads. This is extremely improbable,
Mikulas Patocka90fa1522009-01-06 03:04:54 +0000912 * so msleep(1) is sufficient and there is no need for a wait queue.
Mikulas Patockaa8d41b52008-07-21 12:00:34 +0100913 */
914 while (__chunk_is_tracked(s, pe->e.old_chunk))
Mikulas Patocka90fa1522009-01-06 03:04:54 +0000915 msleep(1);
Mikulas Patockaa8d41b52008-07-21 12:00:34 +0100916
917 /*
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800918 * Add a proper exception, and remove the
919 * in-flight exception from the list.
920 */
Jon Brassow3510cb92009-12-10 23:52:11 +0000921 dm_insert_exception(&s->complete, e);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800922
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 out:
Jon Brassow3510cb92009-12-10 23:52:11 +0000924 dm_remove_exception(&pe->e);
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -0700925 snapshot_bios = bio_list_get(&pe->snapshot_bios);
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700926 origin_bios = put_pending_exception(pe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -0700928 up_write(&s->lock);
929
930 /* Submit any pending write bios */
931 if (error)
932 error_bios(snapshot_bios);
933 else
934 flush_bios(snapshot_bios);
935
936 flush_bios(origin_bios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937}
938
939static void commit_callback(void *context, int success)
940{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100941 struct dm_snap_pending_exception *pe = context;
942
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 pending_complete(pe, success);
944}
945
946/*
947 * Called when the copy I/O has finished. kcopyd actually runs
948 * this code so don't block.
949 */
Alasdair G Kergon4cdc1d12008-03-28 14:16:10 -0700950static void copy_callback(int read_err, unsigned long write_err, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100952 struct dm_snap_pending_exception *pe = context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 struct dm_snapshot *s = pe->snap;
954
955 if (read_err || write_err)
956 pending_complete(pe, 0);
957
958 else
959 /* Update the metadata if we are persistent */
Jonathan Brassow493df712009-04-02 19:55:31 +0100960 s->store->type->commit_exception(s->store, &pe->e,
961 commit_callback, pe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962}
963
964/*
965 * Dispatches the copy operation to kcopyd.
966 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100967static void start_copy(struct dm_snap_pending_exception *pe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968{
969 struct dm_snapshot *s = pe->snap;
Heinz Mauelshagen22a1ceb2008-04-24 21:43:17 +0100970 struct dm_io_region src, dest;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 struct block_device *bdev = s->origin->bdev;
972 sector_t dev_size;
973
974 dev_size = get_dev_size(bdev);
975
976 src.bdev = bdev;
Jonathan Brassow71fab002009-04-02 19:55:33 +0100977 src.sector = chunk_to_sector(s->store, pe->e.old_chunk);
Mikulas Patockadf96eee2009-10-16 23:18:17 +0100978 src.count = min((sector_t)s->store->chunk_size, dev_size - src.sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
Jonathan Brassow49beb2b2009-04-02 19:55:33 +0100980 dest.bdev = s->store->cow->bdev;
Jonathan Brassow71fab002009-04-02 19:55:33 +0100981 dest.sector = chunk_to_sector(s->store, pe->e.new_chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 dest.count = src.count;
983
984 /* Hand over to kcopyd */
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100985 dm_kcopyd_copy(s->kcopyd_client,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 &src, 1, &dest, 0, copy_callback, pe);
987}
988
Mikulas Patocka29138082009-04-02 19:55:25 +0100989static struct dm_snap_pending_exception *
990__lookup_pending_exception(struct dm_snapshot *s, chunk_t chunk)
991{
Jon Brassow3510cb92009-12-10 23:52:11 +0000992 struct dm_exception *e = dm_lookup_exception(&s->pending, chunk);
Mikulas Patocka29138082009-04-02 19:55:25 +0100993
994 if (!e)
995 return NULL;
996
997 return container_of(e, struct dm_snap_pending_exception, e);
998}
999
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000/*
1001 * Looks to see if this snapshot already has a pending exception
1002 * for this chunk, otherwise it allocates a new one and inserts
1003 * it into the pending table.
1004 *
1005 * NOTE: a write lock must be held on snap->lock before calling
1006 * this.
1007 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001008static struct dm_snap_pending_exception *
Mikulas Patockac6621392009-04-02 19:55:25 +01001009__find_pending_exception(struct dm_snapshot *s,
1010 struct dm_snap_pending_exception *pe, chunk_t chunk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011{
Mikulas Patockac6621392009-04-02 19:55:25 +01001012 struct dm_snap_pending_exception *pe2;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001013
Mikulas Patocka29138082009-04-02 19:55:25 +01001014 pe2 = __lookup_pending_exception(s, chunk);
1015 if (pe2) {
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001016 free_pending_exception(pe);
Mikulas Patocka29138082009-04-02 19:55:25 +01001017 return pe2;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001018 }
1019
1020 pe->e.old_chunk = chunk;
1021 bio_list_init(&pe->origin_bios);
1022 bio_list_init(&pe->snapshot_bios);
1023 pe->primary_pe = NULL;
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001024 atomic_set(&pe->ref_count, 0);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001025 pe->started = 0;
1026
Jonathan Brassow493df712009-04-02 19:55:31 +01001027 if (s->store->type->prepare_exception(s->store, &pe->e)) {
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001028 free_pending_exception(pe);
1029 return NULL;
1030 }
1031
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001032 get_pending_exception(pe);
Jon Brassow3510cb92009-12-10 23:52:11 +00001033 dm_insert_exception(&s->pending, &pe->e);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001034
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 return pe;
1036}
1037
Jon Brassow1d4989c2009-12-10 23:52:10 +00001038static void remap_exception(struct dm_snapshot *s, struct dm_exception *e,
Milan Brozd74f81f2008-02-08 02:11:27 +00001039 struct bio *bio, chunk_t chunk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040{
Jonathan Brassow49beb2b2009-04-02 19:55:33 +01001041 bio->bi_bdev = s->store->cow->bdev;
Jonathan Brassow71fab002009-04-02 19:55:33 +01001042 bio->bi_sector = chunk_to_sector(s->store,
1043 dm_chunk_number(e->new_chunk) +
1044 (chunk - e->old_chunk)) +
1045 (bio->bi_sector &
1046 s->store->chunk_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047}
1048
1049static int snapshot_map(struct dm_target *ti, struct bio *bio,
1050 union map_info *map_context)
1051{
Jon Brassow1d4989c2009-12-10 23:52:10 +00001052 struct dm_exception *e;
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001053 struct dm_snapshot *s = ti->private;
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001054 int r = DM_MAPIO_REMAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 chunk_t chunk;
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001056 struct dm_snap_pending_exception *pe = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
Mikulas Patocka494b3ee2009-06-22 10:12:25 +01001058 if (unlikely(bio_empty_barrier(bio))) {
1059 bio->bi_bdev = s->store->cow->bdev;
1060 return DM_MAPIO_REMAPPED;
1061 }
1062
Jonathan Brassow71fab002009-04-02 19:55:33 +01001063 chunk = sector_to_chunk(s->store, bio->bi_sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
1065 /* Full snapshots are not usable */
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001066 /* To get here the table must be live so s->active is always set. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 if (!s->valid)
Alasdair G Kergonf6a80ea2005-07-12 15:53:01 -07001068 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001070 /* FIXME: should only take write lock if we need
1071 * to copy an exception */
1072 down_write(&s->lock);
1073
1074 if (!s->valid) {
1075 r = -EIO;
1076 goto out_unlock;
1077 }
1078
1079 /* If the block is already remapped - use that, else remap it */
Jon Brassow3510cb92009-12-10 23:52:11 +00001080 e = dm_lookup_exception(&s->complete, chunk);
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001081 if (e) {
Milan Brozd74f81f2008-02-08 02:11:27 +00001082 remap_exception(s, e, bio, chunk);
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001083 goto out_unlock;
1084 }
1085
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 /*
1087 * Write to snapshot - higher level takes care of RW/RO
1088 * flags so we should only get this if we are
1089 * writeable.
1090 */
1091 if (bio_rw(bio) == WRITE) {
Mikulas Patocka29138082009-04-02 19:55:25 +01001092 pe = __lookup_pending_exception(s, chunk);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001093 if (!pe) {
Mikulas Patockac6621392009-04-02 19:55:25 +01001094 up_write(&s->lock);
1095 pe = alloc_pending_exception(s);
1096 down_write(&s->lock);
1097
1098 if (!s->valid) {
1099 free_pending_exception(pe);
1100 r = -EIO;
1101 goto out_unlock;
1102 }
1103
Jon Brassow3510cb92009-12-10 23:52:11 +00001104 e = dm_lookup_exception(&s->complete, chunk);
Mikulas Patocka35bf6592009-04-02 19:55:26 +01001105 if (e) {
1106 free_pending_exception(pe);
1107 remap_exception(s, e, bio, chunk);
1108 goto out_unlock;
1109 }
1110
Mikulas Patockac6621392009-04-02 19:55:25 +01001111 pe = __find_pending_exception(s, pe, chunk);
Mikulas Patocka29138082009-04-02 19:55:25 +01001112 if (!pe) {
1113 __invalidate_snapshot(s, -ENOMEM);
1114 r = -EIO;
1115 goto out_unlock;
1116 }
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001117 }
1118
Milan Brozd74f81f2008-02-08 02:11:27 +00001119 remap_exception(s, &pe->e, bio, chunk);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001120 bio_list_add(&pe->snapshot_bios, bio);
1121
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001122 r = DM_MAPIO_SUBMITTED;
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001123
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001124 if (!pe->started) {
1125 /* this is protected by snap->lock */
1126 pe->started = 1;
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001127 up_write(&s->lock);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001128 start_copy(pe);
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001129 goto out;
1130 }
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001131 } else {
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001132 bio->bi_bdev = s->origin->bdev;
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001133 map_context->ptr = track_chunk(s, chunk);
1134 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001136 out_unlock:
1137 up_write(&s->lock);
1138 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 return r;
1140}
1141
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001142static int snapshot_end_io(struct dm_target *ti, struct bio *bio,
1143 int error, union map_info *map_context)
1144{
1145 struct dm_snapshot *s = ti->private;
1146 struct dm_snap_tracked_chunk *c = map_context->ptr;
1147
1148 if (c)
1149 stop_tracking_chunk(s, c);
1150
1151 return 0;
1152}
1153
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154static void snapshot_resume(struct dm_target *ti)
1155{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001156 struct dm_snapshot *s = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -08001158 down_write(&s->lock);
1159 s->active = 1;
1160 up_write(&s->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161}
1162
1163static int snapshot_status(struct dm_target *ti, status_type_t type,
1164 char *result, unsigned int maxlen)
1165{
Jonathan Brassow2e4a31d2009-04-02 19:55:34 +01001166 unsigned sz = 0;
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001167 struct dm_snapshot *snap = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168
1169 switch (type) {
1170 case STATUSTYPE_INFO:
Mikulas Patocka94e765722009-12-10 23:51:53 +00001171
1172 down_write(&snap->lock);
1173
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 if (!snap->valid)
Jonathan Brassow2e4a31d2009-04-02 19:55:34 +01001175 DMEMIT("Invalid");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 else {
Mike Snitzer985903b2009-12-10 23:52:11 +00001177 if (snap->store->type->usage) {
1178 sector_t total_sectors, sectors_allocated,
1179 metadata_sectors;
1180 snap->store->type->usage(snap->store,
1181 &total_sectors,
1182 &sectors_allocated,
1183 &metadata_sectors);
1184 DMEMIT("%llu/%llu %llu",
1185 (unsigned long long)sectors_allocated,
1186 (unsigned long long)total_sectors,
1187 (unsigned long long)metadata_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 }
1189 else
Jonathan Brassow2e4a31d2009-04-02 19:55:34 +01001190 DMEMIT("Unknown");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 }
Mikulas Patocka94e765722009-12-10 23:51:53 +00001192
1193 up_write(&snap->lock);
1194
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 break;
1196
1197 case STATUSTYPE_TABLE:
1198 /*
1199 * kdevname returns a static pointer so we need
1200 * to make private copies if the output is to
1201 * make sense.
1202 */
Jonathan Brassow2e4a31d2009-04-02 19:55:34 +01001203 DMEMIT("%s", snap->origin->name);
Jonathan Brassow1e302a92009-04-02 19:55:35 +01001204 snap->store->type->status(snap->store, type, result + sz,
1205 maxlen - sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 break;
1207 }
1208
1209 return 0;
1210}
1211
Mike Snitzer8811f462009-09-04 20:40:19 +01001212static int snapshot_iterate_devices(struct dm_target *ti,
1213 iterate_devices_callout_fn fn, void *data)
1214{
1215 struct dm_snapshot *snap = ti->private;
1216
1217 return fn(ti, snap->origin, 0, ti->len, data);
1218}
1219
1220
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221/*-----------------------------------------------------------------
1222 * Origin methods
1223 *---------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224static int __origin_write(struct list_head *snapshots, struct bio *bio)
1225{
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001226 int r = DM_MAPIO_REMAPPED, first = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 struct dm_snapshot *snap;
Jon Brassow1d4989c2009-12-10 23:52:10 +00001228 struct dm_exception *e;
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001229 struct dm_snap_pending_exception *pe, *next_pe, *primary_pe = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 chunk_t chunk;
Alasdair G Kergoneccf0812006-03-27 01:17:42 -08001231 LIST_HEAD(pe_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
1233 /* Do all the snapshots on this origin */
1234 list_for_each_entry (snap, snapshots, list) {
1235
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001236 down_write(&snap->lock);
1237
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -08001238 /* Only deal with valid and active snapshots */
1239 if (!snap->valid || !snap->active)
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001240 goto next_snapshot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241
Alasdair G Kergond5e404c2005-07-12 15:53:05 -07001242 /* Nothing to do if writing beyond end of snapshot */
Jonathan Brassow0cea9c72009-04-02 19:55:32 +01001243 if (bio->bi_sector >= dm_table_get_size(snap->store->ti->table))
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001244 goto next_snapshot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
1246 /*
1247 * Remember, different snapshots can have
1248 * different chunk sizes.
1249 */
Jonathan Brassow71fab002009-04-02 19:55:33 +01001250 chunk = sector_to_chunk(snap->store, bio->bi_sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
1252 /*
1253 * Check exception table to see if block
1254 * is already remapped in this snapshot
1255 * and trigger an exception if not.
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001256 *
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001257 * ref_count is initialised to 1 so pending_complete()
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001258 * won't destroy the primary_pe while we're inside this loop.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 */
Jon Brassow3510cb92009-12-10 23:52:11 +00001260 e = dm_lookup_exception(&snap->complete, chunk);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001261 if (e)
1262 goto next_snapshot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263
Mikulas Patocka29138082009-04-02 19:55:25 +01001264 pe = __lookup_pending_exception(snap, chunk);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001265 if (!pe) {
Mikulas Patockac6621392009-04-02 19:55:25 +01001266 up_write(&snap->lock);
1267 pe = alloc_pending_exception(snap);
1268 down_write(&snap->lock);
1269
1270 if (!snap->valid) {
1271 free_pending_exception(pe);
1272 goto next_snapshot;
1273 }
1274
Jon Brassow3510cb92009-12-10 23:52:11 +00001275 e = dm_lookup_exception(&snap->complete, chunk);
Mikulas Patocka35bf6592009-04-02 19:55:26 +01001276 if (e) {
1277 free_pending_exception(pe);
1278 goto next_snapshot;
1279 }
1280
Mikulas Patockac6621392009-04-02 19:55:25 +01001281 pe = __find_pending_exception(snap, pe, chunk);
Mikulas Patocka29138082009-04-02 19:55:25 +01001282 if (!pe) {
1283 __invalidate_snapshot(snap, -ENOMEM);
1284 goto next_snapshot;
1285 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 }
1287
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001288 if (!primary_pe) {
1289 /*
1290 * Either every pe here has same
1291 * primary_pe or none has one yet.
1292 */
1293 if (pe->primary_pe)
1294 primary_pe = pe->primary_pe;
1295 else {
1296 primary_pe = pe;
1297 first = 1;
1298 }
1299
1300 bio_list_add(&primary_pe->origin_bios, bio);
1301
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001302 r = DM_MAPIO_SUBMITTED;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001303 }
1304
1305 if (!pe->primary_pe) {
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001306 pe->primary_pe = primary_pe;
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001307 get_pending_exception(primary_pe);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001308 }
1309
1310 if (!pe->started) {
1311 pe->started = 1;
1312 list_add_tail(&pe->list, &pe_queue);
1313 }
1314
1315 next_snapshot:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 up_write(&snap->lock);
1317 }
1318
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001319 if (!primary_pe)
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001320 return r;
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001321
1322 /*
1323 * If this is the first time we're processing this chunk and
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001324 * ref_count is now 1 it means all the pending exceptions
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001325 * got completed while we were in the loop above, so it falls to
1326 * us here to remove the primary_pe and submit any origin_bios.
1327 */
1328
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001329 if (first && atomic_dec_and_test(&primary_pe->ref_count)) {
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001330 flush_bios(bio_list_get(&primary_pe->origin_bios));
1331 free_pending_exception(primary_pe);
1332 /* If we got here, pe_queue is necessarily empty. */
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001333 return r;
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001334 }
1335
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 /*
1337 * Now that we have a complete pe list we can start the copying.
1338 */
Alasdair G Kergoneccf0812006-03-27 01:17:42 -08001339 list_for_each_entry_safe(pe, next_pe, &pe_queue, list)
1340 start_copy(pe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341
1342 return r;
1343}
1344
1345/*
1346 * Called on a write from the origin driver.
1347 */
1348static int do_origin(struct dm_dev *origin, struct bio *bio)
1349{
1350 struct origin *o;
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001351 int r = DM_MAPIO_REMAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352
1353 down_read(&_origins_lock);
1354 o = __lookup_origin(origin->bdev);
1355 if (o)
1356 r = __origin_write(&o->snapshots, bio);
1357 up_read(&_origins_lock);
1358
1359 return r;
1360}
1361
1362/*
1363 * Origin: maps a linear range of a device, with hooks for snapshotting.
1364 */
1365
1366/*
1367 * Construct an origin mapping: <dev_path>
1368 * The context for an origin is merely a 'struct dm_dev *'
1369 * pointing to the real device.
1370 */
1371static int origin_ctr(struct dm_target *ti, unsigned int argc, char **argv)
1372{
1373 int r;
1374 struct dm_dev *dev;
1375
1376 if (argc != 1) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001377 ti->error = "origin: incorrect number of arguments";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 return -EINVAL;
1379 }
1380
1381 r = dm_get_device(ti, argv[0], 0, ti->len,
1382 dm_table_get_mode(ti->table), &dev);
1383 if (r) {
1384 ti->error = "Cannot get target device";
1385 return r;
1386 }
1387
1388 ti->private = dev;
Mikulas Patocka494b3ee2009-06-22 10:12:25 +01001389 ti->num_flush_requests = 1;
1390
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 return 0;
1392}
1393
1394static void origin_dtr(struct dm_target *ti)
1395{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001396 struct dm_dev *dev = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 dm_put_device(ti, dev);
1398}
1399
1400static int origin_map(struct dm_target *ti, struct bio *bio,
1401 union map_info *map_context)
1402{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001403 struct dm_dev *dev = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 bio->bi_bdev = dev->bdev;
1405
Mikulas Patocka494b3ee2009-06-22 10:12:25 +01001406 if (unlikely(bio_empty_barrier(bio)))
1407 return DM_MAPIO_REMAPPED;
1408
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 /* Only tell snapshots if this is a write */
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001410 return (bio_rw(bio) == WRITE) ? do_origin(dev, bio) : DM_MAPIO_REMAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411}
1412
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413/*
1414 * Set the target "split_io" field to the minimum of all the snapshots'
1415 * chunk sizes.
1416 */
1417static void origin_resume(struct dm_target *ti)
1418{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001419 struct dm_dev *dev = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
1421 down_read(&_origins_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422
Mikulas Patocka7e201b32009-12-10 23:52:08 +00001423 ti->split_io = __minimum_chunk_size(__lookup_origin(dev->bdev));
1424
1425 up_read(&_origins_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426}
1427
1428static int origin_status(struct dm_target *ti, status_type_t type, char *result,
1429 unsigned int maxlen)
1430{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001431 struct dm_dev *dev = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432
1433 switch (type) {
1434 case STATUSTYPE_INFO:
1435 result[0] = '\0';
1436 break;
1437
1438 case STATUSTYPE_TABLE:
1439 snprintf(result, maxlen, "%s", dev->name);
1440 break;
1441 }
1442
1443 return 0;
1444}
1445
Mike Snitzer8811f462009-09-04 20:40:19 +01001446static int origin_iterate_devices(struct dm_target *ti,
1447 iterate_devices_callout_fn fn, void *data)
1448{
1449 struct dm_dev *dev = ti->private;
1450
1451 return fn(ti, dev, 0, ti->len, data);
1452}
1453
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454static struct target_type origin_target = {
1455 .name = "snapshot-origin",
Mike Snitzer8811f462009-09-04 20:40:19 +01001456 .version = {1, 7, 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 .module = THIS_MODULE,
1458 .ctr = origin_ctr,
1459 .dtr = origin_dtr,
1460 .map = origin_map,
1461 .resume = origin_resume,
1462 .status = origin_status,
Mike Snitzer8811f462009-09-04 20:40:19 +01001463 .iterate_devices = origin_iterate_devices,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464};
1465
1466static struct target_type snapshot_target = {
1467 .name = "snapshot",
Mike Snitzer985903b2009-12-10 23:52:11 +00001468 .version = {1, 8, 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 .module = THIS_MODULE,
1470 .ctr = snapshot_ctr,
1471 .dtr = snapshot_dtr,
1472 .map = snapshot_map,
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001473 .end_io = snapshot_end_io,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 .resume = snapshot_resume,
1475 .status = snapshot_status,
Mike Snitzer8811f462009-09-04 20:40:19 +01001476 .iterate_devices = snapshot_iterate_devices,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477};
1478
1479static int __init dm_snapshot_init(void)
1480{
1481 int r;
1482
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00001483 r = dm_exception_store_init();
1484 if (r) {
1485 DMERR("Failed to initialize exception stores");
1486 return r;
1487 }
1488
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 r = dm_register_target(&snapshot_target);
1490 if (r) {
1491 DMERR("snapshot target register failed %d", r);
Jonathan Brassow034a1862009-10-16 23:18:14 +01001492 goto bad_register_snapshot_target;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 }
1494
1495 r = dm_register_target(&origin_target);
1496 if (r < 0) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001497 DMERR("Origin target register failed %d", r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 goto bad1;
1499 }
1500
1501 r = init_origin_hash();
1502 if (r) {
1503 DMERR("init_origin_hash failed.");
1504 goto bad2;
1505 }
1506
Jon Brassow1d4989c2009-12-10 23:52:10 +00001507 exception_cache = KMEM_CACHE(dm_exception, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 if (!exception_cache) {
1509 DMERR("Couldn't create exception cache.");
1510 r = -ENOMEM;
1511 goto bad3;
1512 }
1513
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001514 pending_cache = KMEM_CACHE(dm_snap_pending_exception, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 if (!pending_cache) {
1516 DMERR("Couldn't create pending cache.");
1517 r = -ENOMEM;
1518 goto bad4;
1519 }
1520
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001521 tracked_chunk_cache = KMEM_CACHE(dm_snap_tracked_chunk, 0);
1522 if (!tracked_chunk_cache) {
1523 DMERR("Couldn't create cache to track chunks in use.");
1524 r = -ENOMEM;
1525 goto bad5;
1526 }
1527
Alasdair G Kergonca3a9312006-10-03 01:15:30 -07001528 ksnapd = create_singlethread_workqueue("ksnapd");
1529 if (!ksnapd) {
1530 DMERR("Failed to create ksnapd workqueue.");
1531 r = -ENOMEM;
Mikulas Patocka92e86812008-07-21 12:00:35 +01001532 goto bad_pending_pool;
Alasdair G Kergonca3a9312006-10-03 01:15:30 -07001533 }
1534
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 return 0;
1536
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00001537bad_pending_pool:
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001538 kmem_cache_destroy(tracked_chunk_cache);
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00001539bad5:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 kmem_cache_destroy(pending_cache);
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00001541bad4:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 kmem_cache_destroy(exception_cache);
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00001543bad3:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 exit_origin_hash();
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00001545bad2:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 dm_unregister_target(&origin_target);
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00001547bad1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 dm_unregister_target(&snapshot_target);
Jonathan Brassow034a1862009-10-16 23:18:14 +01001549
1550bad_register_snapshot_target:
1551 dm_exception_store_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 return r;
1553}
1554
1555static void __exit dm_snapshot_exit(void)
1556{
Alasdair G Kergonca3a9312006-10-03 01:15:30 -07001557 destroy_workqueue(ksnapd);
1558
Mikulas Patocka10d3bd02009-01-06 03:04:58 +00001559 dm_unregister_target(&snapshot_target);
1560 dm_unregister_target(&origin_target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561
1562 exit_origin_hash();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 kmem_cache_destroy(pending_cache);
1564 kmem_cache_destroy(exception_cache);
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001565 kmem_cache_destroy(tracked_chunk_cache);
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00001566
1567 dm_exception_store_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568}
1569
1570/* Module hooks */
1571module_init(dm_snapshot_init);
1572module_exit(dm_snapshot_exit);
1573
1574MODULE_DESCRIPTION(DM_NAME " snapshot target");
1575MODULE_AUTHOR("Joe Thornber");
1576MODULE_LICENSE("GPL");