blob: 5e553c50c215948082c5a929cadbed22949d8e55 [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;
Mike Snitzerfc56f6f2009-12-10 23:52:12 +000062 struct dm_dev *cow;
63
64 struct dm_target *ti;
Jonathan Brassowccc45ea2009-04-02 19:55:34 +010065
66 /* List of snapshots per Origin */
67 struct list_head list;
68
69 /* You can't use a snapshot if this is 0 (e.g. if full) */
70 int valid;
71
72 /* Origin writes don't trigger exceptions until this is set */
73 int active;
74
Mike Snitzerc26655c2009-12-10 23:52:12 +000075 /* Whether or not owning mapped_device is suspended */
76 int suspended;
77
Jonathan Brassowccc45ea2009-04-02 19:55:34 +010078 mempool_t *pending_pool;
79
80 atomic_t pending_exceptions_count;
81
Jon Brassow191437a2009-12-10 23:52:10 +000082 struct dm_exception_table pending;
83 struct dm_exception_table complete;
Jonathan Brassowccc45ea2009-04-02 19:55:34 +010084
85 /*
86 * pe_lock protects all pending_exception operations and access
87 * as well as the snapshot_bios list.
88 */
89 spinlock_t pe_lock;
90
91 /* The on disk metadata handler */
92 struct dm_exception_store *store;
93
94 struct dm_kcopyd_client *kcopyd_client;
95
96 /* Queue of snapshot writes for ksnapd to flush */
97 struct bio_list queued_bios;
98 struct work_struct queued_bios_work;
99
100 /* Chunks with outstanding reads */
101 mempool_t *tracked_chunk_pool;
102 spinlock_t tracked_chunk_lock;
103 struct hlist_head tracked_chunk_hash[DM_TRACKED_CHUNK_HASH_SIZE];
104};
105
Mike Snitzerfc56f6f2009-12-10 23:52:12 +0000106struct dm_dev *dm_snap_cow(struct dm_snapshot *s)
107{
108 return s->cow;
109}
110EXPORT_SYMBOL(dm_snap_cow);
111
Adrian Bunkc642f9e2006-12-08 02:41:13 -0800112static struct workqueue_struct *ksnapd;
David Howellsc4028952006-11-22 14:57:56 +0000113static void flush_queued_bios(struct work_struct *work);
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700114
Jonathan Brassowccc45ea2009-04-02 19:55:34 +0100115static sector_t chunk_to_sector(struct dm_exception_store *store,
116 chunk_t chunk)
117{
118 return chunk << store->chunk_shift;
119}
120
121static int bdev_equal(struct block_device *lhs, struct block_device *rhs)
122{
123 /*
124 * There is only ever one instance of a particular block
125 * device so we can compare pointers safely.
126 */
127 return lhs == rhs;
128}
129
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100130struct dm_snap_pending_exception {
Jon Brassow1d4989c2009-12-10 23:52:10 +0000131 struct dm_exception e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133 /*
134 * Origin buffers waiting for this to complete are held
135 * in a bio list
136 */
137 struct bio_list origin_bios;
138 struct bio_list snapshot_bios;
139
140 /*
Alasdair G Kergoneccf0812006-03-27 01:17:42 -0800141 * Short-term queue of pending exceptions prior to submission.
142 */
143 struct list_head list;
144
145 /*
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -0800146 * The primary pending_exception is the one that holds
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700147 * the ref_count and the list of origin_bios for a
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -0800148 * group of pending_exceptions. It is always last to get freed.
149 * These fields get set up when writing to the origin.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100151 struct dm_snap_pending_exception *primary_pe;
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -0800152
153 /*
154 * Number of pending_exceptions processing this chunk.
155 * When this drops to zero we must complete the origin bios.
156 * If incrementing or decrementing this, hold pe->snap->lock for
157 * the sibling concerned and not pe->primary_pe->snap->lock unless
158 * they are the same.
159 */
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700160 atomic_t ref_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162 /* Pointer back to snapshot context */
163 struct dm_snapshot *snap;
164
165 /*
166 * 1 indicates the exception has already been sent to
167 * kcopyd.
168 */
169 int started;
170};
171
172/*
173 * Hash table mapping origin volumes to lists of snapshots and
174 * a lock to protect it
175 */
Christoph Lametere18b8902006-12-06 20:33:20 -0800176static struct kmem_cache *exception_cache;
177static struct kmem_cache *pending_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100179struct dm_snap_tracked_chunk {
180 struct hlist_node node;
181 chunk_t chunk;
182};
183
184static struct kmem_cache *tracked_chunk_cache;
185
186static struct dm_snap_tracked_chunk *track_chunk(struct dm_snapshot *s,
187 chunk_t chunk)
188{
189 struct dm_snap_tracked_chunk *c = mempool_alloc(s->tracked_chunk_pool,
190 GFP_NOIO);
191 unsigned long flags;
192
193 c->chunk = chunk;
194
195 spin_lock_irqsave(&s->tracked_chunk_lock, flags);
196 hlist_add_head(&c->node,
197 &s->tracked_chunk_hash[DM_TRACKED_CHUNK_HASH(chunk)]);
198 spin_unlock_irqrestore(&s->tracked_chunk_lock, flags);
199
200 return c;
201}
202
203static void stop_tracking_chunk(struct dm_snapshot *s,
204 struct dm_snap_tracked_chunk *c)
205{
206 unsigned long flags;
207
208 spin_lock_irqsave(&s->tracked_chunk_lock, flags);
209 hlist_del(&c->node);
210 spin_unlock_irqrestore(&s->tracked_chunk_lock, flags);
211
212 mempool_free(c, s->tracked_chunk_pool);
213}
214
Mikulas Patockaa8d41b52008-07-21 12:00:34 +0100215static int __chunk_is_tracked(struct dm_snapshot *s, chunk_t chunk)
216{
217 struct dm_snap_tracked_chunk *c;
218 struct hlist_node *hn;
219 int found = 0;
220
221 spin_lock_irq(&s->tracked_chunk_lock);
222
223 hlist_for_each_entry(c, hn,
224 &s->tracked_chunk_hash[DM_TRACKED_CHUNK_HASH(chunk)], node) {
225 if (c->chunk == chunk) {
226 found = 1;
227 break;
228 }
229 }
230
231 spin_unlock_irq(&s->tracked_chunk_lock);
232
233 return found;
234}
235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236/*
237 * One of these per registered origin, held in the snapshot_origins hash
238 */
239struct origin {
240 /* The origin device */
241 struct block_device *bdev;
242
243 struct list_head hash_list;
244
245 /* List of snapshots for this origin */
246 struct list_head snapshots;
247};
248
249/*
250 * Size of the hash table for origin volumes. If we make this
251 * the size of the minors list then it should be nearly perfect
252 */
253#define ORIGIN_HASH_SIZE 256
254#define ORIGIN_MASK 0xFF
255static struct list_head *_origins;
256static struct rw_semaphore _origins_lock;
257
258static int init_origin_hash(void)
259{
260 int i;
261
262 _origins = kmalloc(ORIGIN_HASH_SIZE * sizeof(struct list_head),
263 GFP_KERNEL);
264 if (!_origins) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700265 DMERR("unable to allocate memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 return -ENOMEM;
267 }
268
269 for (i = 0; i < ORIGIN_HASH_SIZE; i++)
270 INIT_LIST_HEAD(_origins + i);
271 init_rwsem(&_origins_lock);
272
273 return 0;
274}
275
276static void exit_origin_hash(void)
277{
278 kfree(_origins);
279}
280
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100281static unsigned origin_hash(struct block_device *bdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282{
283 return bdev->bd_dev & ORIGIN_MASK;
284}
285
286static struct origin *__lookup_origin(struct block_device *origin)
287{
288 struct list_head *ol;
289 struct origin *o;
290
291 ol = &_origins[origin_hash(origin)];
292 list_for_each_entry (o, ol, hash_list)
293 if (bdev_equal(o->bdev, origin))
294 return o;
295
296 return NULL;
297}
298
299static void __insert_origin(struct origin *o)
300{
301 struct list_head *sl = &_origins[origin_hash(o->bdev)];
302 list_add_tail(&o->hash_list, sl);
303}
304
305/*
Mike Snitzerc1f0c182009-12-10 23:52:24 +0000306 * _origins_lock must be held when calling this function.
307 * Returns number of snapshots registered using the supplied cow device, plus:
308 * snap_src - a snapshot suitable for use as a source of exception handover
309 * snap_dest - a snapshot capable of receiving exception handover.
310 *
311 * Possible return values and states:
312 * 0: NULL, NULL - first new snapshot
313 * 1: snap_src, NULL - normal snapshot
314 * 2: snap_src, snap_dest - waiting for handover
315 * 2: snap_src, NULL - handed over, waiting for old to be deleted
316 * 1: NULL, snap_dest - source got destroyed without handover
317 */
318static int __find_snapshots_sharing_cow(struct dm_snapshot *snap,
319 struct dm_snapshot **snap_src,
320 struct dm_snapshot **snap_dest)
321{
322 struct dm_snapshot *s;
323 struct origin *o;
324 int count = 0;
325 int active;
326
327 o = __lookup_origin(snap->origin->bdev);
328 if (!o)
329 goto out;
330
331 list_for_each_entry(s, &o->snapshots, list) {
332 if (!bdev_equal(s->cow->bdev, snap->cow->bdev))
333 continue;
334
335 down_read(&s->lock);
336 active = s->active;
337 up_read(&s->lock);
338
339 if (active) {
340 if (snap_src)
341 *snap_src = s;
342 } else if (snap_dest)
343 *snap_dest = s;
344
345 count++;
346 }
347
348out:
349 return count;
350}
351
352/*
353 * On success, returns 1 if this snapshot is a handover destination,
354 * otherwise returns 0.
355 */
356static int __validate_exception_handover(struct dm_snapshot *snap)
357{
358 struct dm_snapshot *snap_src = NULL, *snap_dest = NULL;
359
360 /* Does snapshot need exceptions handed over to it? */
361 if ((__find_snapshots_sharing_cow(snap, &snap_src, &snap_dest) == 2) ||
362 snap_dest) {
363 snap->ti->error = "Snapshot cow pairing for exception "
364 "table handover failed";
365 return -EINVAL;
366 }
367
368 /*
369 * If no snap_src was found, snap cannot become a handover
370 * destination.
371 */
372 if (!snap_src)
373 return 0;
374
375 return 1;
376}
377
378static void __insert_snapshot(struct origin *o, struct dm_snapshot *s)
379{
380 struct dm_snapshot *l;
381
382 /* Sort the list according to chunk size, largest-first smallest-last */
383 list_for_each_entry(l, &o->snapshots, list)
384 if (l->store->chunk_size < s->store->chunk_size)
385 break;
386 list_add_tail(&s->list, &l->list);
387}
388
389/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 * Make a note of the snapshot and its origin so we can look it
391 * up when the origin has a write on it.
Mike Snitzerc1f0c182009-12-10 23:52:24 +0000392 *
393 * Also validate snapshot exception store handovers.
394 * On success, returns 1 if this registration is a handover destination,
395 * otherwise returns 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 */
397static int register_snapshot(struct dm_snapshot *snap)
398{
Mike Snitzerc1f0c182009-12-10 23:52:24 +0000399 struct origin *o, *new_o = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 struct block_device *bdev = snap->origin->bdev;
Mike Snitzerc1f0c182009-12-10 23:52:24 +0000401 int r = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
Mikulas Patocka60c856c82008-10-30 13:33:12 +0000403 new_o = kmalloc(sizeof(*new_o), GFP_KERNEL);
404 if (!new_o)
405 return -ENOMEM;
406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 down_write(&_origins_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Mike Snitzerc1f0c182009-12-10 23:52:24 +0000409 r = __validate_exception_handover(snap);
410 if (r < 0) {
411 kfree(new_o);
412 goto out;
413 }
414
415 o = __lookup_origin(bdev);
Mikulas Patocka60c856c82008-10-30 13:33:12 +0000416 if (o)
417 kfree(new_o);
418 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 /* New origin */
Mikulas Patocka60c856c82008-10-30 13:33:12 +0000420 o = new_o;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
422 /* Initialise the struct */
423 INIT_LIST_HEAD(&o->snapshots);
424 o->bdev = bdev;
425
426 __insert_origin(o);
427 }
428
Mike Snitzerc1f0c182009-12-10 23:52:24 +0000429 __insert_snapshot(o, snap);
430
431out:
432 up_write(&_origins_lock);
433
434 return r;
435}
436
437/*
438 * Move snapshot to correct place in list according to chunk size.
439 */
440static void reregister_snapshot(struct dm_snapshot *s)
441{
442 struct block_device *bdev = s->origin->bdev;
443
444 down_write(&_origins_lock);
445
446 list_del(&s->list);
447 __insert_snapshot(__lookup_origin(bdev), s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
449 up_write(&_origins_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450}
451
452static void unregister_snapshot(struct dm_snapshot *s)
453{
454 struct origin *o;
455
456 down_write(&_origins_lock);
457 o = __lookup_origin(s->origin->bdev);
458
459 list_del(&s->list);
Mike Snitzerc1f0c182009-12-10 23:52:24 +0000460 if (o && list_empty(&o->snapshots)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 list_del(&o->hash_list);
462 kfree(o);
463 }
464
465 up_write(&_origins_lock);
466}
467
468/*
469 * Implementation of the exception hash tables.
Milan Brozd74f81f2008-02-08 02:11:27 +0000470 * The lowest hash_shift bits of the chunk number are ignored, allowing
471 * some consecutive chunks to be grouped together.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 */
Jon Brassow3510cb92009-12-10 23:52:11 +0000473static int dm_exception_table_init(struct dm_exception_table *et,
474 uint32_t size, unsigned hash_shift)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475{
476 unsigned int i;
477
Milan Brozd74f81f2008-02-08 02:11:27 +0000478 et->hash_shift = hash_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 et->hash_mask = size - 1;
480 et->table = dm_vcalloc(size, sizeof(struct list_head));
481 if (!et->table)
482 return -ENOMEM;
483
484 for (i = 0; i < size; i++)
485 INIT_LIST_HEAD(et->table + i);
486
487 return 0;
488}
489
Jon Brassow3510cb92009-12-10 23:52:11 +0000490static void dm_exception_table_exit(struct dm_exception_table *et,
491 struct kmem_cache *mem)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492{
493 struct list_head *slot;
Jon Brassow1d4989c2009-12-10 23:52:10 +0000494 struct dm_exception *ex, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 int i, size;
496
497 size = et->hash_mask + 1;
498 for (i = 0; i < size; i++) {
499 slot = et->table + i;
500
501 list_for_each_entry_safe (ex, next, slot, hash_list)
502 kmem_cache_free(mem, ex);
503 }
504
505 vfree(et->table);
506}
507
Jon Brassow191437a2009-12-10 23:52:10 +0000508static uint32_t exception_hash(struct dm_exception_table *et, chunk_t chunk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509{
Milan Brozd74f81f2008-02-08 02:11:27 +0000510 return (chunk >> et->hash_shift) & et->hash_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511}
512
Jon Brassow3510cb92009-12-10 23:52:11 +0000513static void dm_remove_exception(struct dm_exception *e)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514{
515 list_del(&e->hash_list);
516}
517
518/*
519 * Return the exception data for a sector, or NULL if not
520 * remapped.
521 */
Jon Brassow3510cb92009-12-10 23:52:11 +0000522static struct dm_exception *dm_lookup_exception(struct dm_exception_table *et,
523 chunk_t chunk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524{
525 struct list_head *slot;
Jon Brassow1d4989c2009-12-10 23:52:10 +0000526 struct dm_exception *e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
528 slot = &et->table[exception_hash(et, chunk)];
529 list_for_each_entry (e, slot, hash_list)
Milan Brozd74f81f2008-02-08 02:11:27 +0000530 if (chunk >= e->old_chunk &&
531 chunk <= e->old_chunk + dm_consecutive_chunk_count(e))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 return e;
533
534 return NULL;
535}
536
Jon Brassow3510cb92009-12-10 23:52:11 +0000537static struct dm_exception *alloc_completed_exception(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538{
Jon Brassow1d4989c2009-12-10 23:52:10 +0000539 struct dm_exception *e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
541 e = kmem_cache_alloc(exception_cache, GFP_NOIO);
542 if (!e)
543 e = kmem_cache_alloc(exception_cache, GFP_ATOMIC);
544
545 return e;
546}
547
Jon Brassow3510cb92009-12-10 23:52:11 +0000548static void free_completed_exception(struct dm_exception *e)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549{
550 kmem_cache_free(exception_cache, e);
551}
552
Mikulas Patocka92e86812008-07-21 12:00:35 +0100553static struct dm_snap_pending_exception *alloc_pending_exception(struct dm_snapshot *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554{
Mikulas Patocka92e86812008-07-21 12:00:35 +0100555 struct dm_snap_pending_exception *pe = mempool_alloc(s->pending_pool,
556 GFP_NOIO);
557
Mikulas Patocka879129d22008-10-30 13:33:16 +0000558 atomic_inc(&s->pending_exceptions_count);
Mikulas Patocka92e86812008-07-21 12:00:35 +0100559 pe->snap = s;
560
561 return pe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562}
563
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100564static void free_pending_exception(struct dm_snap_pending_exception *pe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565{
Mikulas Patocka879129d22008-10-30 13:33:16 +0000566 struct dm_snapshot *s = pe->snap;
567
568 mempool_free(pe, s->pending_pool);
569 smp_mb__before_atomic_dec();
570 atomic_dec(&s->pending_exceptions_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571}
572
Jon Brassow3510cb92009-12-10 23:52:11 +0000573static void dm_insert_exception(struct dm_exception_table *eh,
574 struct dm_exception *new_e)
Milan Brozd74f81f2008-02-08 02:11:27 +0000575{
Milan Brozd74f81f2008-02-08 02:11:27 +0000576 struct list_head *l;
Jon Brassow1d4989c2009-12-10 23:52:10 +0000577 struct dm_exception *e = NULL;
Milan Brozd74f81f2008-02-08 02:11:27 +0000578
579 l = &eh->table[exception_hash(eh, new_e->old_chunk)];
580
581 /* Add immediately if this table doesn't support consecutive chunks */
582 if (!eh->hash_shift)
583 goto out;
584
585 /* List is ordered by old_chunk */
586 list_for_each_entry_reverse(e, l, hash_list) {
587 /* Insert after an existing chunk? */
588 if (new_e->old_chunk == (e->old_chunk +
589 dm_consecutive_chunk_count(e) + 1) &&
590 new_e->new_chunk == (dm_chunk_number(e->new_chunk) +
591 dm_consecutive_chunk_count(e) + 1)) {
592 dm_consecutive_chunk_count_inc(e);
Jon Brassow3510cb92009-12-10 23:52:11 +0000593 free_completed_exception(new_e);
Milan Brozd74f81f2008-02-08 02:11:27 +0000594 return;
595 }
596
597 /* Insert before an existing chunk? */
598 if (new_e->old_chunk == (e->old_chunk - 1) &&
599 new_e->new_chunk == (dm_chunk_number(e->new_chunk) - 1)) {
600 dm_consecutive_chunk_count_inc(e);
601 e->old_chunk--;
602 e->new_chunk--;
Jon Brassow3510cb92009-12-10 23:52:11 +0000603 free_completed_exception(new_e);
Milan Brozd74f81f2008-02-08 02:11:27 +0000604 return;
605 }
606
607 if (new_e->old_chunk > e->old_chunk)
608 break;
609 }
610
611out:
612 list_add(&new_e->hash_list, e ? &e->hash_list : l);
613}
614
Jonathan Brassowa159c1a2009-01-06 03:05:19 +0000615/*
616 * Callback used by the exception stores to load exceptions when
617 * initialising.
618 */
619static int dm_add_exception(void *context, chunk_t old, chunk_t new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620{
Jonathan Brassowa159c1a2009-01-06 03:05:19 +0000621 struct dm_snapshot *s = context;
Jon Brassow1d4989c2009-12-10 23:52:10 +0000622 struct dm_exception *e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Jon Brassow3510cb92009-12-10 23:52:11 +0000624 e = alloc_completed_exception();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 if (!e)
626 return -ENOMEM;
627
628 e->old_chunk = old;
Milan Brozd74f81f2008-02-08 02:11:27 +0000629
630 /* Consecutive_count is implicitly initialised to zero */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 e->new_chunk = new;
Milan Brozd74f81f2008-02-08 02:11:27 +0000632
Jon Brassow3510cb92009-12-10 23:52:11 +0000633 dm_insert_exception(&s->complete, e);
Milan Brozd74f81f2008-02-08 02:11:27 +0000634
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 return 0;
636}
637
Mikulas Patocka7e201b32009-12-10 23:52:08 +0000638#define min_not_zero(l, r) (((l) == 0) ? (r) : (((r) == 0) ? (l) : min(l, r)))
639
640/*
641 * Return a minimum chunk size of all snapshots that have the specified origin.
642 * Return zero if the origin has no snapshots.
643 */
644static sector_t __minimum_chunk_size(struct origin *o)
645{
646 struct dm_snapshot *snap;
647 unsigned chunk_size = 0;
648
649 if (o)
650 list_for_each_entry(snap, &o->snapshots, list)
651 chunk_size = min_not_zero(chunk_size,
652 snap->store->chunk_size);
653
654 return chunk_size;
655}
656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657/*
658 * Hard coded magic.
659 */
660static int calc_max_buckets(void)
661{
662 /* use a fixed size of 2MB */
663 unsigned long mem = 2 * 1024 * 1024;
664 mem /= sizeof(struct list_head);
665
666 return mem;
667}
668
669/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 * Allocate room for a suitable hash table.
671 */
Jonathan Brassowfee19982009-04-02 19:55:34 +0100672static int init_hash_tables(struct dm_snapshot *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673{
674 sector_t hash_size, cow_dev_size, origin_dev_size, max_buckets;
675
676 /*
677 * Calculate based on the size of the original volume or
678 * the COW volume...
679 */
Mike Snitzerfc56f6f2009-12-10 23:52:12 +0000680 cow_dev_size = get_dev_size(s->cow->bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 origin_dev_size = get_dev_size(s->origin->bdev);
682 max_buckets = calc_max_buckets();
683
Jonathan Brassowfee19982009-04-02 19:55:34 +0100684 hash_size = min(origin_dev_size, cow_dev_size) >> s->store->chunk_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 hash_size = min(hash_size, max_buckets);
686
Mikulas Patocka8e87b9b2009-12-10 23:51:54 +0000687 if (hash_size < 64)
688 hash_size = 64;
Robert P. J. Day8defd832008-02-08 02:10:06 +0000689 hash_size = rounddown_pow_of_two(hash_size);
Jon Brassow3510cb92009-12-10 23:52:11 +0000690 if (dm_exception_table_init(&s->complete, hash_size,
691 DM_CHUNK_CONSECUTIVE_BITS))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 return -ENOMEM;
693
694 /*
695 * Allocate hash table for in-flight exceptions
696 * Make this smaller than the real hash table
697 */
698 hash_size >>= 3;
699 if (hash_size < 64)
700 hash_size = 64;
701
Jon Brassow3510cb92009-12-10 23:52:11 +0000702 if (dm_exception_table_init(&s->pending, hash_size, 0)) {
703 dm_exception_table_exit(&s->complete, exception_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 return -ENOMEM;
705 }
706
707 return 0;
708}
709
710/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 * Construct a snapshot mapping: <origin_dev> <COW-dev> <p/n> <chunk-size>
712 */
713static int snapshot_ctr(struct dm_target *ti, unsigned int argc, char **argv)
714{
715 struct dm_snapshot *s;
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100716 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 int r = -EINVAL;
Mike Snitzerfc56f6f2009-12-10 23:52:12 +0000718 char *origin_path, *cow_path;
Jonathan Brassowfee19982009-04-02 19:55:34 +0100719 unsigned args_used;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -0700721 if (argc != 4) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700722 ti->error = "requires exactly 4 arguments";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 r = -EINVAL;
Mike Snitzerfc56f6f2009-12-10 23:52:12 +0000724 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 }
726
727 origin_path = argv[0];
Jonathan Brassowfee19982009-04-02 19:55:34 +0100728 argv++;
729 argc--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 s = kmalloc(sizeof(*s), GFP_KERNEL);
Jonathan Brassowfee19982009-04-02 19:55:34 +0100732 if (!s) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 ti->error = "Cannot allocate snapshot context private "
734 "structure";
735 r = -ENOMEM;
Mike Snitzerfc56f6f2009-12-10 23:52:12 +0000736 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 }
738
Mike Snitzerfc56f6f2009-12-10 23:52:12 +0000739 cow_path = argv[0];
740 argv++;
741 argc--;
742
743 r = dm_get_device(ti, cow_path, 0, 0,
744 FMODE_READ | FMODE_WRITE, &s->cow);
745 if (r) {
746 ti->error = "Cannot get COW device";
747 goto bad_cow;
748 }
749
750 r = dm_exception_store_create(ti, argc, argv, s, &args_used, &s->store);
751 if (r) {
752 ti->error = "Couldn't create exception store";
753 r = -EINVAL;
754 goto bad_store;
755 }
756
757 argv += args_used;
758 argc -= args_used;
759
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 r = dm_get_device(ti, origin_path, 0, ti->len, FMODE_READ, &s->origin);
761 if (r) {
762 ti->error = "Cannot get origin device";
Jonathan Brassowfee19982009-04-02 19:55:34 +0100763 goto bad_origin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 }
765
Mike Snitzerfc56f6f2009-12-10 23:52:12 +0000766 s->ti = ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 s->valid = 1;
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -0800768 s->active = 0;
Mike Snitzerc26655c2009-12-10 23:52:12 +0000769 s->suspended = 0;
Mikulas Patocka879129d22008-10-30 13:33:16 +0000770 atomic_set(&s->pending_exceptions_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 init_rwsem(&s->lock);
Mike Snitzerc1f0c182009-12-10 23:52:24 +0000772 INIT_LIST_HEAD(&s->list);
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700773 spin_lock_init(&s->pe_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
775 /* Allocate hash table for COW data */
Jonathan Brassowfee19982009-04-02 19:55:34 +0100776 if (init_hash_tables(s)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 ti->error = "Unable to allocate hash table space";
778 r = -ENOMEM;
Jonathan Brassowfee19982009-04-02 19:55:34 +0100779 goto bad_hash_tables;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 }
781
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100782 r = dm_kcopyd_client_create(SNAPSHOT_PAGES, &s->kcopyd_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 if (r) {
784 ti->error = "Could not create kcopyd client";
Jonathan Brassowfee19982009-04-02 19:55:34 +0100785 goto bad_kcopyd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 }
787
Mikulas Patocka92e86812008-07-21 12:00:35 +0100788 s->pending_pool = mempool_create_slab_pool(MIN_IOS, pending_cache);
789 if (!s->pending_pool) {
790 ti->error = "Could not allocate mempool for pending exceptions";
Jonathan Brassowfee19982009-04-02 19:55:34 +0100791 goto bad_pending_pool;
Mikulas Patocka92e86812008-07-21 12:00:35 +0100792 }
793
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100794 s->tracked_chunk_pool = mempool_create_slab_pool(MIN_IOS,
795 tracked_chunk_cache);
796 if (!s->tracked_chunk_pool) {
797 ti->error = "Could not allocate tracked_chunk mempool for "
798 "tracking reads";
Mikulas Patocka92e86812008-07-21 12:00:35 +0100799 goto bad_tracked_chunk_pool;
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100800 }
801
802 for (i = 0; i < DM_TRACKED_CHUNK_HASH_SIZE; i++)
803 INIT_HLIST_HEAD(&s->tracked_chunk_hash[i]);
804
805 spin_lock_init(&s->tracked_chunk_lock);
806
Mike Snitzerc1f0c182009-12-10 23:52:24 +0000807 bio_list_init(&s->queued_bios);
808 INIT_WORK(&s->queued_bios_work, flush_queued_bios);
809
810 ti->private = s;
811 ti->num_flush_requests = 1;
812
813 /* Add snapshot to the list of snapshots for this origin */
814 /* Exceptions aren't triggered till snapshot_resume() is called */
815 r = register_snapshot(s);
816 if (r == -ENOMEM) {
817 ti->error = "Snapshot origin struct allocation failed";
818 goto bad_load_and_register;
819 } else if (r < 0) {
820 /* invalid handover, register_snapshot has set ti->error */
821 goto bad_load_and_register;
822 }
823
824 /*
825 * Metadata must only be loaded into one table at once, so skip this
826 * if metadata will be handed over during resume.
827 * Chunk size will be set during the handover - set it to zero to
828 * ensure it's ignored.
829 */
830 if (r > 0) {
831 s->store->chunk_size = 0;
832 return 0;
833 }
834
Jonathan Brassow493df712009-04-02 19:55:31 +0100835 r = s->store->type->read_metadata(s->store, dm_add_exception,
836 (void *)s);
Milan Broz07641472007-07-12 17:28:13 +0100837 if (r < 0) {
Mark McLoughlinf9cea4f2006-10-03 01:15:25 -0700838 ti->error = "Failed to read snapshot metadata";
Mike Snitzerc1f0c182009-12-10 23:52:24 +0000839 goto bad_read_metadata;
Milan Broz07641472007-07-12 17:28:13 +0100840 } else if (r > 0) {
841 s->valid = 0;
842 DMWARN("Snapshot is marked invalid.");
Mark McLoughlinf9cea4f2006-10-03 01:15:25 -0700843 }
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -0800844
Mikulas Patocka3f2412d2009-10-16 23:18:16 +0100845 if (!s->store->chunk_size) {
846 ti->error = "Chunk size not set";
Mike Snitzerc1f0c182009-12-10 23:52:24 +0000847 goto bad_read_metadata;
Mikulas Patocka3f2412d2009-10-16 23:18:16 +0100848 }
Jonathan Brassowd0216842009-04-02 19:55:32 +0100849 ti->split_io = s->store->chunk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
851 return 0;
852
Mike Snitzerc1f0c182009-12-10 23:52:24 +0000853bad_read_metadata:
854 unregister_snapshot(s);
855
Jonathan Brassowfee19982009-04-02 19:55:34 +0100856bad_load_and_register:
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100857 mempool_destroy(s->tracked_chunk_pool);
858
Jonathan Brassowfee19982009-04-02 19:55:34 +0100859bad_tracked_chunk_pool:
Mikulas Patocka92e86812008-07-21 12:00:35 +0100860 mempool_destroy(s->pending_pool);
861
Jonathan Brassowfee19982009-04-02 19:55:34 +0100862bad_pending_pool:
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100863 dm_kcopyd_client_destroy(s->kcopyd_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
Jonathan Brassowfee19982009-04-02 19:55:34 +0100865bad_kcopyd:
Jon Brassow3510cb92009-12-10 23:52:11 +0000866 dm_exception_table_exit(&s->pending, pending_cache);
867 dm_exception_table_exit(&s->complete, exception_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
Jonathan Brassowfee19982009-04-02 19:55:34 +0100869bad_hash_tables:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 dm_put_device(ti, s->origin);
871
Jonathan Brassowfee19982009-04-02 19:55:34 +0100872bad_origin:
Mike Snitzerfc56f6f2009-12-10 23:52:12 +0000873 dm_exception_store_destroy(s->store);
874
875bad_store:
876 dm_put_device(ti, s->cow);
877
878bad_cow:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 kfree(s);
880
Mike Snitzerfc56f6f2009-12-10 23:52:12 +0000881bad:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 return r;
883}
884
Milan Broz31c93a02006-12-08 02:41:11 -0800885static void __free_exceptions(struct dm_snapshot *s)
886{
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100887 dm_kcopyd_client_destroy(s->kcopyd_client);
Milan Broz31c93a02006-12-08 02:41:11 -0800888 s->kcopyd_client = NULL;
889
Jon Brassow3510cb92009-12-10 23:52:11 +0000890 dm_exception_table_exit(&s->pending, pending_cache);
891 dm_exception_table_exit(&s->complete, exception_cache);
Milan Broz31c93a02006-12-08 02:41:11 -0800892}
893
Mike Snitzerc1f0c182009-12-10 23:52:24 +0000894static void __handover_exceptions(struct dm_snapshot *snap_src,
895 struct dm_snapshot *snap_dest)
896{
897 union {
898 struct dm_exception_table table_swap;
899 struct dm_exception_store *store_swap;
900 } u;
901
902 /*
903 * Swap all snapshot context information between the two instances.
904 */
905 u.table_swap = snap_dest->complete;
906 snap_dest->complete = snap_src->complete;
907 snap_src->complete = u.table_swap;
908
909 u.store_swap = snap_dest->store;
910 snap_dest->store = snap_src->store;
911 snap_src->store = u.store_swap;
912
913 snap_dest->store->snap = snap_dest;
914 snap_src->store->snap = snap_src;
915
916 snap_dest->ti->split_io = snap_dest->store->chunk_size;
917 snap_dest->valid = snap_src->valid;
918
919 /*
920 * Set source invalid to ensure it receives no further I/O.
921 */
922 snap_src->valid = 0;
923}
924
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925static void snapshot_dtr(struct dm_target *ti)
926{
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100927#ifdef CONFIG_DM_DEBUG
928 int i;
929#endif
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100930 struct dm_snapshot *s = ti->private;
Mike Snitzerc1f0c182009-12-10 23:52:24 +0000931 struct dm_snapshot *snap_src = NULL, *snap_dest = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700933 flush_workqueue(ksnapd);
934
Mike Snitzerc1f0c182009-12-10 23:52:24 +0000935 down_read(&_origins_lock);
936 /* Check whether exception handover must be cancelled */
937 (void) __find_snapshots_sharing_cow(s, &snap_src, &snap_dest);
938 if (snap_src && snap_dest && (s == snap_src)) {
939 down_write(&snap_dest->lock);
940 snap_dest->valid = 0;
941 up_write(&snap_dest->lock);
942 DMERR("Cancelling snapshot handover.");
943 }
944 up_read(&_origins_lock);
945
Alasdair G Kergon138728dc2006-03-27 01:17:50 -0800946 /* Prevent further origin writes from using this snapshot. */
947 /* After this returns there can be no new kcopyd jobs. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 unregister_snapshot(s);
949
Mikulas Patocka879129d22008-10-30 13:33:16 +0000950 while (atomic_read(&s->pending_exceptions_count))
Mikulas Patocka90fa1522009-01-06 03:04:54 +0000951 msleep(1);
Mikulas Patocka879129d22008-10-30 13:33:16 +0000952 /*
953 * Ensure instructions in mempool_destroy aren't reordered
954 * before atomic_read.
955 */
956 smp_mb();
957
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100958#ifdef CONFIG_DM_DEBUG
959 for (i = 0; i < DM_TRACKED_CHUNK_HASH_SIZE; i++)
960 BUG_ON(!hlist_empty(&s->tracked_chunk_hash[i]));
961#endif
962
963 mempool_destroy(s->tracked_chunk_pool);
964
Milan Broz31c93a02006-12-08 02:41:11 -0800965 __free_exceptions(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
Mikulas Patocka92e86812008-07-21 12:00:35 +0100967 mempool_destroy(s->pending_pool);
968
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 dm_put_device(ti, s->origin);
Jonathan Brassowfee19982009-04-02 19:55:34 +0100970
971 dm_exception_store_destroy(s->store);
Alasdair G Kergon138728dc2006-03-27 01:17:50 -0800972
Mike Snitzerfc56f6f2009-12-10 23:52:12 +0000973 dm_put_device(ti, s->cow);
974
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 kfree(s);
976}
977
978/*
979 * Flush a list of buffers.
980 */
981static void flush_bios(struct bio *bio)
982{
983 struct bio *n;
984
985 while (bio) {
986 n = bio->bi_next;
987 bio->bi_next = NULL;
988 generic_make_request(bio);
989 bio = n;
990 }
991}
992
David Howellsc4028952006-11-22 14:57:56 +0000993static void flush_queued_bios(struct work_struct *work)
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700994{
David Howellsc4028952006-11-22 14:57:56 +0000995 struct dm_snapshot *s =
996 container_of(work, struct dm_snapshot, queued_bios_work);
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700997 struct bio *queued_bios;
998 unsigned long flags;
999
1000 spin_lock_irqsave(&s->pe_lock, flags);
1001 queued_bios = bio_list_get(&s->queued_bios);
1002 spin_unlock_irqrestore(&s->pe_lock, flags);
1003
1004 flush_bios(queued_bios);
1005}
1006
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007/*
1008 * Error a list of buffers.
1009 */
1010static void error_bios(struct bio *bio)
1011{
1012 struct bio *n;
1013
1014 while (bio) {
1015 n = bio->bi_next;
1016 bio->bi_next = NULL;
NeilBrown6712ecf2007-09-27 12:47:43 +02001017 bio_io_error(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 bio = n;
1019 }
1020}
1021
Alasdair G Kergon695368a2006-10-03 01:15:31 -07001022static void __invalidate_snapshot(struct dm_snapshot *s, int err)
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001023{
1024 if (!s->valid)
1025 return;
1026
1027 if (err == -EIO)
1028 DMERR("Invalidating snapshot: Error reading/writing.");
1029 else if (err == -ENOMEM)
1030 DMERR("Invalidating snapshot: Unable to allocate exception.");
1031
Jonathan Brassow493df712009-04-02 19:55:31 +01001032 if (s->store->type->drop_snapshot)
1033 s->store->type->drop_snapshot(s->store);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001034
1035 s->valid = 0;
1036
Mike Snitzerfc56f6f2009-12-10 23:52:12 +00001037 dm_table_event(s->ti->table);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001038}
1039
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001040static void get_pending_exception(struct dm_snap_pending_exception *pe)
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001041{
1042 atomic_inc(&pe->ref_count);
1043}
1044
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001045static struct bio *put_pending_exception(struct dm_snap_pending_exception *pe)
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001046{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001047 struct dm_snap_pending_exception *primary_pe;
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001048 struct bio *origin_bios = NULL;
1049
1050 primary_pe = pe->primary_pe;
1051
1052 /*
1053 * If this pe is involved in a write to the origin and
1054 * it is the last sibling to complete then release
1055 * the bios for the original write to the origin.
1056 */
1057 if (primary_pe &&
Mikulas Patocka7c5f78b2008-10-21 17:44:51 +01001058 atomic_dec_and_test(&primary_pe->ref_count)) {
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001059 origin_bios = bio_list_get(&primary_pe->origin_bios);
Mikulas Patocka7c5f78b2008-10-21 17:44:51 +01001060 free_pending_exception(primary_pe);
1061 }
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001062
1063 /*
1064 * Free the pe if it's not linked to an origin write or if
1065 * it's not itself a primary pe.
1066 */
1067 if (!primary_pe || primary_pe != pe)
1068 free_pending_exception(pe);
1069
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001070 return origin_bios;
1071}
1072
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001073static void pending_complete(struct dm_snap_pending_exception *pe, int success)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074{
Jon Brassow1d4989c2009-12-10 23:52:10 +00001075 struct dm_exception *e;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 struct dm_snapshot *s = pe->snap;
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -07001077 struct bio *origin_bios = NULL;
1078 struct bio *snapshot_bios = NULL;
1079 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001081 if (!success) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 /* Read/write error - snapshot is unusable */
1083 down_write(&s->lock);
Alasdair G Kergon695368a2006-10-03 01:15:31 -07001084 __invalidate_snapshot(s, -EIO);
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -07001085 error = 1;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001086 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 }
1088
Jon Brassow3510cb92009-12-10 23:52:11 +00001089 e = alloc_completed_exception();
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001090 if (!e) {
1091 down_write(&s->lock);
Alasdair G Kergon695368a2006-10-03 01:15:31 -07001092 __invalidate_snapshot(s, -ENOMEM);
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -07001093 error = 1;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001094 goto out;
1095 }
1096 *e = pe->e;
1097
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -07001098 down_write(&s->lock);
1099 if (!s->valid) {
Jon Brassow3510cb92009-12-10 23:52:11 +00001100 free_completed_exception(e);
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -07001101 error = 1;
1102 goto out;
1103 }
1104
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001105 /*
Mikulas Patockaa8d41b52008-07-21 12:00:34 +01001106 * Check for conflicting reads. This is extremely improbable,
Mikulas Patocka90fa1522009-01-06 03:04:54 +00001107 * so msleep(1) is sufficient and there is no need for a wait queue.
Mikulas Patockaa8d41b52008-07-21 12:00:34 +01001108 */
1109 while (__chunk_is_tracked(s, pe->e.old_chunk))
Mikulas Patocka90fa1522009-01-06 03:04:54 +00001110 msleep(1);
Mikulas Patockaa8d41b52008-07-21 12:00:34 +01001111
1112 /*
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001113 * Add a proper exception, and remove the
1114 * in-flight exception from the list.
1115 */
Jon Brassow3510cb92009-12-10 23:52:11 +00001116 dm_insert_exception(&s->complete, e);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001117
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 out:
Jon Brassow3510cb92009-12-10 23:52:11 +00001119 dm_remove_exception(&pe->e);
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -07001120 snapshot_bios = bio_list_get(&pe->snapshot_bios);
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001121 origin_bios = put_pending_exception(pe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -07001123 up_write(&s->lock);
1124
1125 /* Submit any pending write bios */
1126 if (error)
1127 error_bios(snapshot_bios);
1128 else
1129 flush_bios(snapshot_bios);
1130
1131 flush_bios(origin_bios);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132}
1133
1134static void commit_callback(void *context, int success)
1135{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001136 struct dm_snap_pending_exception *pe = context;
1137
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 pending_complete(pe, success);
1139}
1140
1141/*
1142 * Called when the copy I/O has finished. kcopyd actually runs
1143 * this code so don't block.
1144 */
Alasdair G Kergon4cdc1d12008-03-28 14:16:10 -07001145static void copy_callback(int read_err, unsigned long write_err, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001147 struct dm_snap_pending_exception *pe = context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 struct dm_snapshot *s = pe->snap;
1149
1150 if (read_err || write_err)
1151 pending_complete(pe, 0);
1152
1153 else
1154 /* Update the metadata if we are persistent */
Jonathan Brassow493df712009-04-02 19:55:31 +01001155 s->store->type->commit_exception(s->store, &pe->e,
1156 commit_callback, pe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157}
1158
1159/*
1160 * Dispatches the copy operation to kcopyd.
1161 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001162static void start_copy(struct dm_snap_pending_exception *pe)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163{
1164 struct dm_snapshot *s = pe->snap;
Heinz Mauelshagen22a1ceb2008-04-24 21:43:17 +01001165 struct dm_io_region src, dest;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 struct block_device *bdev = s->origin->bdev;
1167 sector_t dev_size;
1168
1169 dev_size = get_dev_size(bdev);
1170
1171 src.bdev = bdev;
Jonathan Brassow71fab002009-04-02 19:55:33 +01001172 src.sector = chunk_to_sector(s->store, pe->e.old_chunk);
Mikulas Patockadf96eee2009-10-16 23:18:17 +01001173 src.count = min((sector_t)s->store->chunk_size, dev_size - src.sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174
Mike Snitzerfc56f6f2009-12-10 23:52:12 +00001175 dest.bdev = s->cow->bdev;
Jonathan Brassow71fab002009-04-02 19:55:33 +01001176 dest.sector = chunk_to_sector(s->store, pe->e.new_chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 dest.count = src.count;
1178
1179 /* Hand over to kcopyd */
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +01001180 dm_kcopyd_copy(s->kcopyd_client,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 &src, 1, &dest, 0, copy_callback, pe);
1182}
1183
Mikulas Patocka29138082009-04-02 19:55:25 +01001184static struct dm_snap_pending_exception *
1185__lookup_pending_exception(struct dm_snapshot *s, chunk_t chunk)
1186{
Jon Brassow3510cb92009-12-10 23:52:11 +00001187 struct dm_exception *e = dm_lookup_exception(&s->pending, chunk);
Mikulas Patocka29138082009-04-02 19:55:25 +01001188
1189 if (!e)
1190 return NULL;
1191
1192 return container_of(e, struct dm_snap_pending_exception, e);
1193}
1194
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195/*
1196 * Looks to see if this snapshot already has a pending exception
1197 * for this chunk, otherwise it allocates a new one and inserts
1198 * it into the pending table.
1199 *
1200 * NOTE: a write lock must be held on snap->lock before calling
1201 * this.
1202 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001203static struct dm_snap_pending_exception *
Mikulas Patockac6621392009-04-02 19:55:25 +01001204__find_pending_exception(struct dm_snapshot *s,
1205 struct dm_snap_pending_exception *pe, chunk_t chunk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206{
Mikulas Patockac6621392009-04-02 19:55:25 +01001207 struct dm_snap_pending_exception *pe2;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001208
Mikulas Patocka29138082009-04-02 19:55:25 +01001209 pe2 = __lookup_pending_exception(s, chunk);
1210 if (pe2) {
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001211 free_pending_exception(pe);
Mikulas Patocka29138082009-04-02 19:55:25 +01001212 return pe2;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001213 }
1214
1215 pe->e.old_chunk = chunk;
1216 bio_list_init(&pe->origin_bios);
1217 bio_list_init(&pe->snapshot_bios);
1218 pe->primary_pe = NULL;
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001219 atomic_set(&pe->ref_count, 0);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001220 pe->started = 0;
1221
Jonathan Brassow493df712009-04-02 19:55:31 +01001222 if (s->store->type->prepare_exception(s->store, &pe->e)) {
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001223 free_pending_exception(pe);
1224 return NULL;
1225 }
1226
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001227 get_pending_exception(pe);
Jon Brassow3510cb92009-12-10 23:52:11 +00001228 dm_insert_exception(&s->pending, &pe->e);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001229
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 return pe;
1231}
1232
Jon Brassow1d4989c2009-12-10 23:52:10 +00001233static void remap_exception(struct dm_snapshot *s, struct dm_exception *e,
Milan Brozd74f81f2008-02-08 02:11:27 +00001234 struct bio *bio, chunk_t chunk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235{
Mike Snitzerfc56f6f2009-12-10 23:52:12 +00001236 bio->bi_bdev = s->cow->bdev;
Jonathan Brassow71fab002009-04-02 19:55:33 +01001237 bio->bi_sector = chunk_to_sector(s->store,
1238 dm_chunk_number(e->new_chunk) +
1239 (chunk - e->old_chunk)) +
1240 (bio->bi_sector &
1241 s->store->chunk_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242}
1243
1244static int snapshot_map(struct dm_target *ti, struct bio *bio,
1245 union map_info *map_context)
1246{
Jon Brassow1d4989c2009-12-10 23:52:10 +00001247 struct dm_exception *e;
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001248 struct dm_snapshot *s = ti->private;
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001249 int r = DM_MAPIO_REMAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 chunk_t chunk;
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001251 struct dm_snap_pending_exception *pe = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
Mikulas Patocka494b3ee2009-06-22 10:12:25 +01001253 if (unlikely(bio_empty_barrier(bio))) {
Mike Snitzerfc56f6f2009-12-10 23:52:12 +00001254 bio->bi_bdev = s->cow->bdev;
Mikulas Patocka494b3ee2009-06-22 10:12:25 +01001255 return DM_MAPIO_REMAPPED;
1256 }
1257
Jonathan Brassow71fab002009-04-02 19:55:33 +01001258 chunk = sector_to_chunk(s->store, bio->bi_sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
1260 /* Full snapshots are not usable */
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001261 /* To get here the table must be live so s->active is always set. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 if (!s->valid)
Alasdair G Kergonf6a80ea2005-07-12 15:53:01 -07001263 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001265 /* FIXME: should only take write lock if we need
1266 * to copy an exception */
1267 down_write(&s->lock);
1268
1269 if (!s->valid) {
1270 r = -EIO;
1271 goto out_unlock;
1272 }
1273
1274 /* If the block is already remapped - use that, else remap it */
Jon Brassow3510cb92009-12-10 23:52:11 +00001275 e = dm_lookup_exception(&s->complete, chunk);
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001276 if (e) {
Milan Brozd74f81f2008-02-08 02:11:27 +00001277 remap_exception(s, e, bio, chunk);
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001278 goto out_unlock;
1279 }
1280
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 /*
1282 * Write to snapshot - higher level takes care of RW/RO
1283 * flags so we should only get this if we are
1284 * writeable.
1285 */
1286 if (bio_rw(bio) == WRITE) {
Mikulas Patocka29138082009-04-02 19:55:25 +01001287 pe = __lookup_pending_exception(s, chunk);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001288 if (!pe) {
Mikulas Patockac6621392009-04-02 19:55:25 +01001289 up_write(&s->lock);
1290 pe = alloc_pending_exception(s);
1291 down_write(&s->lock);
1292
1293 if (!s->valid) {
1294 free_pending_exception(pe);
1295 r = -EIO;
1296 goto out_unlock;
1297 }
1298
Jon Brassow3510cb92009-12-10 23:52:11 +00001299 e = dm_lookup_exception(&s->complete, chunk);
Mikulas Patocka35bf6592009-04-02 19:55:26 +01001300 if (e) {
1301 free_pending_exception(pe);
1302 remap_exception(s, e, bio, chunk);
1303 goto out_unlock;
1304 }
1305
Mikulas Patockac6621392009-04-02 19:55:25 +01001306 pe = __find_pending_exception(s, pe, chunk);
Mikulas Patocka29138082009-04-02 19:55:25 +01001307 if (!pe) {
1308 __invalidate_snapshot(s, -ENOMEM);
1309 r = -EIO;
1310 goto out_unlock;
1311 }
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001312 }
1313
Milan Brozd74f81f2008-02-08 02:11:27 +00001314 remap_exception(s, &pe->e, bio, chunk);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001315 bio_list_add(&pe->snapshot_bios, bio);
1316
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001317 r = DM_MAPIO_SUBMITTED;
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001318
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001319 if (!pe->started) {
1320 /* this is protected by snap->lock */
1321 pe->started = 1;
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001322 up_write(&s->lock);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001323 start_copy(pe);
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001324 goto out;
1325 }
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001326 } else {
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001327 bio->bi_bdev = s->origin->bdev;
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001328 map_context->ptr = track_chunk(s, chunk);
1329 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001331 out_unlock:
1332 up_write(&s->lock);
1333 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 return r;
1335}
1336
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001337static int snapshot_end_io(struct dm_target *ti, struct bio *bio,
1338 int error, union map_info *map_context)
1339{
1340 struct dm_snapshot *s = ti->private;
1341 struct dm_snap_tracked_chunk *c = map_context->ptr;
1342
1343 if (c)
1344 stop_tracking_chunk(s, c);
1345
1346 return 0;
1347}
1348
Mike Snitzerc26655c2009-12-10 23:52:12 +00001349static void snapshot_postsuspend(struct dm_target *ti)
1350{
1351 struct dm_snapshot *s = ti->private;
1352
1353 down_write(&s->lock);
1354 s->suspended = 1;
1355 up_write(&s->lock);
1356}
1357
Mike Snitzerc1f0c182009-12-10 23:52:24 +00001358static int snapshot_preresume(struct dm_target *ti)
1359{
1360 int r = 0;
1361 struct dm_snapshot *s = ti->private;
1362 struct dm_snapshot *snap_src = NULL, *snap_dest = NULL;
1363
1364 down_read(&_origins_lock);
1365 (void) __find_snapshots_sharing_cow(s, &snap_src, &snap_dest);
1366 if (snap_src && snap_dest) {
1367 down_read(&snap_src->lock);
1368 if (s == snap_src) {
1369 DMERR("Unable to resume snapshot source until "
1370 "handover completes.");
1371 r = -EINVAL;
1372 } else if (!snap_src->suspended) {
1373 DMERR("Unable to perform snapshot handover until "
1374 "source is suspended.");
1375 r = -EINVAL;
1376 }
1377 up_read(&snap_src->lock);
1378 }
1379 up_read(&_origins_lock);
1380
1381 return r;
1382}
1383
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384static void snapshot_resume(struct dm_target *ti)
1385{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001386 struct dm_snapshot *s = ti->private;
Mike Snitzerc1f0c182009-12-10 23:52:24 +00001387 struct dm_snapshot *snap_src = NULL, *snap_dest = NULL;
1388
1389 down_read(&_origins_lock);
1390 (void) __find_snapshots_sharing_cow(s, &snap_src, &snap_dest);
1391 if (snap_src && snap_dest) {
1392 down_write(&snap_src->lock);
1393 down_write_nested(&snap_dest->lock, SINGLE_DEPTH_NESTING);
1394 __handover_exceptions(snap_src, snap_dest);
1395 up_write(&snap_dest->lock);
1396 up_write(&snap_src->lock);
1397 }
1398 up_read(&_origins_lock);
1399
1400 /* Now we have correct chunk size, reregister */
1401 reregister_snapshot(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -08001403 down_write(&s->lock);
1404 s->active = 1;
Mike Snitzerc26655c2009-12-10 23:52:12 +00001405 s->suspended = 0;
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -08001406 up_write(&s->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407}
1408
1409static int snapshot_status(struct dm_target *ti, status_type_t type,
1410 char *result, unsigned int maxlen)
1411{
Jonathan Brassow2e4a31d2009-04-02 19:55:34 +01001412 unsigned sz = 0;
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001413 struct dm_snapshot *snap = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
1415 switch (type) {
1416 case STATUSTYPE_INFO:
Mikulas Patocka94e765722009-12-10 23:51:53 +00001417
1418 down_write(&snap->lock);
1419
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 if (!snap->valid)
Jonathan Brassow2e4a31d2009-04-02 19:55:34 +01001421 DMEMIT("Invalid");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 else {
Mike Snitzer985903b2009-12-10 23:52:11 +00001423 if (snap->store->type->usage) {
1424 sector_t total_sectors, sectors_allocated,
1425 metadata_sectors;
1426 snap->store->type->usage(snap->store,
1427 &total_sectors,
1428 &sectors_allocated,
1429 &metadata_sectors);
1430 DMEMIT("%llu/%llu %llu",
1431 (unsigned long long)sectors_allocated,
1432 (unsigned long long)total_sectors,
1433 (unsigned long long)metadata_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 }
1435 else
Jonathan Brassow2e4a31d2009-04-02 19:55:34 +01001436 DMEMIT("Unknown");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 }
Mikulas Patocka94e765722009-12-10 23:51:53 +00001438
1439 up_write(&snap->lock);
1440
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 break;
1442
1443 case STATUSTYPE_TABLE:
1444 /*
1445 * kdevname returns a static pointer so we need
1446 * to make private copies if the output is to
1447 * make sense.
1448 */
Mike Snitzerfc56f6f2009-12-10 23:52:12 +00001449 DMEMIT("%s %s", snap->origin->name, snap->cow->name);
Jonathan Brassow1e302a92009-04-02 19:55:35 +01001450 snap->store->type->status(snap->store, type, result + sz,
1451 maxlen - sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 break;
1453 }
1454
1455 return 0;
1456}
1457
Mike Snitzer8811f462009-09-04 20:40:19 +01001458static int snapshot_iterate_devices(struct dm_target *ti,
1459 iterate_devices_callout_fn fn, void *data)
1460{
1461 struct dm_snapshot *snap = ti->private;
1462
1463 return fn(ti, snap->origin, 0, ti->len, data);
1464}
1465
1466
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467/*-----------------------------------------------------------------
1468 * Origin methods
1469 *---------------------------------------------------------------*/
Mikulas Patocka9eaae8f2009-12-10 23:52:28 +00001470
1471/*
1472 * If no exceptions need creating, DM_MAPIO_REMAPPED is returned and any
1473 * supplied bio was ignored. The caller may submit it immediately.
1474 * (No remapping actually occurs as the origin is always a direct linear
1475 * map.)
1476 *
1477 * If further exceptions are required, DM_MAPIO_SUBMITTED is returned
1478 * and any supplied bio is added to a list to be submitted once all
1479 * the necessary exceptions exist.
1480 */
1481static int __origin_write(struct list_head *snapshots, sector_t sector,
1482 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483{
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001484 int r = DM_MAPIO_REMAPPED, first = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 struct dm_snapshot *snap;
Jon Brassow1d4989c2009-12-10 23:52:10 +00001486 struct dm_exception *e;
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001487 struct dm_snap_pending_exception *pe, *next_pe, *primary_pe = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 chunk_t chunk;
Alasdair G Kergoneccf0812006-03-27 01:17:42 -08001489 LIST_HEAD(pe_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490
1491 /* Do all the snapshots on this origin */
1492 list_for_each_entry (snap, snapshots, list) {
1493
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001494 down_write(&snap->lock);
1495
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -08001496 /* Only deal with valid and active snapshots */
1497 if (!snap->valid || !snap->active)
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001498 goto next_snapshot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499
Alasdair G Kergond5e404c2005-07-12 15:53:05 -07001500 /* Nothing to do if writing beyond end of snapshot */
Mikulas Patocka9eaae8f2009-12-10 23:52:28 +00001501 if (sector >= dm_table_get_size(snap->ti->table))
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001502 goto next_snapshot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
1504 /*
1505 * Remember, different snapshots can have
1506 * different chunk sizes.
1507 */
Mikulas Patocka9eaae8f2009-12-10 23:52:28 +00001508 chunk = sector_to_chunk(snap->store, sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
1510 /*
1511 * Check exception table to see if block
1512 * is already remapped in this snapshot
1513 * and trigger an exception if not.
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001514 *
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001515 * ref_count is initialised to 1 so pending_complete()
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001516 * won't destroy the primary_pe while we're inside this loop.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 */
Jon Brassow3510cb92009-12-10 23:52:11 +00001518 e = dm_lookup_exception(&snap->complete, chunk);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001519 if (e)
1520 goto next_snapshot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521
Mikulas Patocka29138082009-04-02 19:55:25 +01001522 pe = __lookup_pending_exception(snap, chunk);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001523 if (!pe) {
Mikulas Patockac6621392009-04-02 19:55:25 +01001524 up_write(&snap->lock);
1525 pe = alloc_pending_exception(snap);
1526 down_write(&snap->lock);
1527
1528 if (!snap->valid) {
1529 free_pending_exception(pe);
1530 goto next_snapshot;
1531 }
1532
Jon Brassow3510cb92009-12-10 23:52:11 +00001533 e = dm_lookup_exception(&snap->complete, chunk);
Mikulas Patocka35bf6592009-04-02 19:55:26 +01001534 if (e) {
1535 free_pending_exception(pe);
1536 goto next_snapshot;
1537 }
1538
Mikulas Patockac6621392009-04-02 19:55:25 +01001539 pe = __find_pending_exception(snap, pe, chunk);
Mikulas Patocka29138082009-04-02 19:55:25 +01001540 if (!pe) {
1541 __invalidate_snapshot(snap, -ENOMEM);
1542 goto next_snapshot;
1543 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 }
1545
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001546 if (!primary_pe) {
1547 /*
1548 * Either every pe here has same
1549 * primary_pe or none has one yet.
1550 */
1551 if (pe->primary_pe)
1552 primary_pe = pe->primary_pe;
1553 else {
1554 primary_pe = pe;
1555 first = 1;
1556 }
1557
Mikulas Patocka9eaae8f2009-12-10 23:52:28 +00001558 if (bio)
1559 bio_list_add(&primary_pe->origin_bios, bio);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001560
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001561 r = DM_MAPIO_SUBMITTED;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001562 }
1563
1564 if (!pe->primary_pe) {
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001565 pe->primary_pe = primary_pe;
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001566 get_pending_exception(primary_pe);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001567 }
1568
1569 if (!pe->started) {
1570 pe->started = 1;
1571 list_add_tail(&pe->list, &pe_queue);
1572 }
1573
1574 next_snapshot:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 up_write(&snap->lock);
1576 }
1577
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001578 if (!primary_pe)
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001579 return r;
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001580
1581 /*
1582 * If this is the first time we're processing this chunk and
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001583 * ref_count is now 1 it means all the pending exceptions
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001584 * got completed while we were in the loop above, so it falls to
1585 * us here to remove the primary_pe and submit any origin_bios.
1586 */
1587
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001588 if (first && atomic_dec_and_test(&primary_pe->ref_count)) {
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001589 flush_bios(bio_list_get(&primary_pe->origin_bios));
1590 free_pending_exception(primary_pe);
1591 /* If we got here, pe_queue is necessarily empty. */
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001592 return r;
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001593 }
1594
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 /*
1596 * Now that we have a complete pe list we can start the copying.
1597 */
Alasdair G Kergoneccf0812006-03-27 01:17:42 -08001598 list_for_each_entry_safe(pe, next_pe, &pe_queue, list)
1599 start_copy(pe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
1601 return r;
1602}
1603
1604/*
1605 * Called on a write from the origin driver.
1606 */
1607static int do_origin(struct dm_dev *origin, struct bio *bio)
1608{
1609 struct origin *o;
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001610 int r = DM_MAPIO_REMAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
1612 down_read(&_origins_lock);
1613 o = __lookup_origin(origin->bdev);
1614 if (o)
Mikulas Patocka9eaae8f2009-12-10 23:52:28 +00001615 r = __origin_write(&o->snapshots, bio->bi_sector, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 up_read(&_origins_lock);
1617
1618 return r;
1619}
1620
1621/*
1622 * Origin: maps a linear range of a device, with hooks for snapshotting.
1623 */
1624
1625/*
1626 * Construct an origin mapping: <dev_path>
1627 * The context for an origin is merely a 'struct dm_dev *'
1628 * pointing to the real device.
1629 */
1630static int origin_ctr(struct dm_target *ti, unsigned int argc, char **argv)
1631{
1632 int r;
1633 struct dm_dev *dev;
1634
1635 if (argc != 1) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001636 ti->error = "origin: incorrect number of arguments";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 return -EINVAL;
1638 }
1639
1640 r = dm_get_device(ti, argv[0], 0, ti->len,
1641 dm_table_get_mode(ti->table), &dev);
1642 if (r) {
1643 ti->error = "Cannot get target device";
1644 return r;
1645 }
1646
1647 ti->private = dev;
Mikulas Patocka494b3ee2009-06-22 10:12:25 +01001648 ti->num_flush_requests = 1;
1649
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 return 0;
1651}
1652
1653static void origin_dtr(struct dm_target *ti)
1654{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001655 struct dm_dev *dev = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 dm_put_device(ti, dev);
1657}
1658
1659static int origin_map(struct dm_target *ti, struct bio *bio,
1660 union map_info *map_context)
1661{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001662 struct dm_dev *dev = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 bio->bi_bdev = dev->bdev;
1664
Mikulas Patocka494b3ee2009-06-22 10:12:25 +01001665 if (unlikely(bio_empty_barrier(bio)))
1666 return DM_MAPIO_REMAPPED;
1667
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 /* Only tell snapshots if this is a write */
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001669 return (bio_rw(bio) == WRITE) ? do_origin(dev, bio) : DM_MAPIO_REMAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670}
1671
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672/*
1673 * Set the target "split_io" field to the minimum of all the snapshots'
1674 * chunk sizes.
1675 */
1676static void origin_resume(struct dm_target *ti)
1677{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001678 struct dm_dev *dev = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679
1680 down_read(&_origins_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
Mikulas Patocka7e201b32009-12-10 23:52:08 +00001682 ti->split_io = __minimum_chunk_size(__lookup_origin(dev->bdev));
1683
1684 up_read(&_origins_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685}
1686
1687static int origin_status(struct dm_target *ti, status_type_t type, char *result,
1688 unsigned int maxlen)
1689{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001690 struct dm_dev *dev = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691
1692 switch (type) {
1693 case STATUSTYPE_INFO:
1694 result[0] = '\0';
1695 break;
1696
1697 case STATUSTYPE_TABLE:
1698 snprintf(result, maxlen, "%s", dev->name);
1699 break;
1700 }
1701
1702 return 0;
1703}
1704
Mike Snitzer8811f462009-09-04 20:40:19 +01001705static int origin_iterate_devices(struct dm_target *ti,
1706 iterate_devices_callout_fn fn, void *data)
1707{
1708 struct dm_dev *dev = ti->private;
1709
1710 return fn(ti, dev, 0, ti->len, data);
1711}
1712
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713static struct target_type origin_target = {
1714 .name = "snapshot-origin",
Mike Snitzer8811f462009-09-04 20:40:19 +01001715 .version = {1, 7, 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 .module = THIS_MODULE,
1717 .ctr = origin_ctr,
1718 .dtr = origin_dtr,
1719 .map = origin_map,
1720 .resume = origin_resume,
1721 .status = origin_status,
Mike Snitzer8811f462009-09-04 20:40:19 +01001722 .iterate_devices = origin_iterate_devices,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723};
1724
1725static struct target_type snapshot_target = {
1726 .name = "snapshot",
Mike Snitzerc26655c2009-12-10 23:52:12 +00001727 .version = {1, 9, 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 .module = THIS_MODULE,
1729 .ctr = snapshot_ctr,
1730 .dtr = snapshot_dtr,
1731 .map = snapshot_map,
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001732 .end_io = snapshot_end_io,
Mike Snitzerc26655c2009-12-10 23:52:12 +00001733 .postsuspend = snapshot_postsuspend,
Mike Snitzerc1f0c182009-12-10 23:52:24 +00001734 .preresume = snapshot_preresume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 .resume = snapshot_resume,
1736 .status = snapshot_status,
Mike Snitzer8811f462009-09-04 20:40:19 +01001737 .iterate_devices = snapshot_iterate_devices,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738};
1739
1740static int __init dm_snapshot_init(void)
1741{
1742 int r;
1743
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00001744 r = dm_exception_store_init();
1745 if (r) {
1746 DMERR("Failed to initialize exception stores");
1747 return r;
1748 }
1749
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 r = dm_register_target(&snapshot_target);
1751 if (r) {
1752 DMERR("snapshot target register failed %d", r);
Jonathan Brassow034a1862009-10-16 23:18:14 +01001753 goto bad_register_snapshot_target;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 }
1755
1756 r = dm_register_target(&origin_target);
1757 if (r < 0) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001758 DMERR("Origin target register failed %d", r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 goto bad1;
1760 }
1761
1762 r = init_origin_hash();
1763 if (r) {
1764 DMERR("init_origin_hash failed.");
1765 goto bad2;
1766 }
1767
Jon Brassow1d4989c2009-12-10 23:52:10 +00001768 exception_cache = KMEM_CACHE(dm_exception, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 if (!exception_cache) {
1770 DMERR("Couldn't create exception cache.");
1771 r = -ENOMEM;
1772 goto bad3;
1773 }
1774
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001775 pending_cache = KMEM_CACHE(dm_snap_pending_exception, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 if (!pending_cache) {
1777 DMERR("Couldn't create pending cache.");
1778 r = -ENOMEM;
1779 goto bad4;
1780 }
1781
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001782 tracked_chunk_cache = KMEM_CACHE(dm_snap_tracked_chunk, 0);
1783 if (!tracked_chunk_cache) {
1784 DMERR("Couldn't create cache to track chunks in use.");
1785 r = -ENOMEM;
1786 goto bad5;
1787 }
1788
Alasdair G Kergonca3a9312006-10-03 01:15:30 -07001789 ksnapd = create_singlethread_workqueue("ksnapd");
1790 if (!ksnapd) {
1791 DMERR("Failed to create ksnapd workqueue.");
1792 r = -ENOMEM;
Mikulas Patocka92e86812008-07-21 12:00:35 +01001793 goto bad_pending_pool;
Alasdair G Kergonca3a9312006-10-03 01:15:30 -07001794 }
1795
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 return 0;
1797
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00001798bad_pending_pool:
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001799 kmem_cache_destroy(tracked_chunk_cache);
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00001800bad5:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 kmem_cache_destroy(pending_cache);
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00001802bad4:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 kmem_cache_destroy(exception_cache);
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00001804bad3:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 exit_origin_hash();
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00001806bad2:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 dm_unregister_target(&origin_target);
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00001808bad1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 dm_unregister_target(&snapshot_target);
Jonathan Brassow034a1862009-10-16 23:18:14 +01001810
1811bad_register_snapshot_target:
1812 dm_exception_store_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 return r;
1814}
1815
1816static void __exit dm_snapshot_exit(void)
1817{
Alasdair G Kergonca3a9312006-10-03 01:15:30 -07001818 destroy_workqueue(ksnapd);
1819
Mikulas Patocka10d3bd02009-01-06 03:04:58 +00001820 dm_unregister_target(&snapshot_target);
1821 dm_unregister_target(&origin_target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822
1823 exit_origin_hash();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 kmem_cache_destroy(pending_cache);
1825 kmem_cache_destroy(exception_cache);
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001826 kmem_cache_destroy(tracked_chunk_cache);
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00001827
1828 dm_exception_store_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829}
1830
1831/* Module hooks */
1832module_init(dm_snapshot_init);
1833module_exit(dm_snapshot_exit);
1834
1835MODULE_DESCRIPTION(DM_NAME " snapshot target");
1836MODULE_AUTHOR("Joe Thornber");
1837MODULE_LICENSE("GPL");