blob: 5e88bc437be0a1f36d5f4af712a17373dc176fb0 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Jonathan Brassowaea53d92009-01-06 03:05:15 +000023#include "dm-exception-store.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Alasdair G Kergon72d94862006-06-26 00:27:35 -070025#define DM_MSG_PREFIX "snapshots"
26
Mikulas Patockad698aa42009-12-10 23:52:30 +000027static const char dm_snapshot_merge_target_name[] = "snapshot-merge";
28
29#define dm_target_is_snapshot_merge(ti) \
30 ((ti)->type->name == dm_snapshot_merge_target_name)
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032/*
Mikulas Patockacd45daf2008-07-21 12:00:32 +010033 * The size of the mempool used to track chunks in use.
34 */
35#define MIN_IOS 256
36
Jonathan Brassowccc45ea2009-04-02 19:55:34 +010037#define DM_TRACKED_CHUNK_HASH_SIZE 16
38#define DM_TRACKED_CHUNK_HASH(x) ((unsigned long)(x) & \
39 (DM_TRACKED_CHUNK_HASH_SIZE - 1))
40
Jon Brassow191437a2009-12-10 23:52:10 +000041struct dm_exception_table {
Jonathan Brassowccc45ea2009-04-02 19:55:34 +010042 uint32_t hash_mask;
43 unsigned hash_shift;
44 struct list_head *table;
45};
46
47struct dm_snapshot {
48 struct rw_semaphore lock;
49
50 struct dm_dev *origin;
Mike Snitzerfc56f6f2009-12-10 23:52:12 +000051 struct dm_dev *cow;
52
53 struct dm_target *ti;
Jonathan Brassowccc45ea2009-04-02 19:55:34 +010054
55 /* List of snapshots per Origin */
56 struct list_head list;
57
Mike Snitzerd8ddb1c2009-12-10 23:52:35 +000058 /*
59 * You can't use a snapshot if this is 0 (e.g. if full).
60 * A snapshot-merge target never clears this.
61 */
Jonathan Brassowccc45ea2009-04-02 19:55:34 +010062 int valid;
63
64 /* Origin writes don't trigger exceptions until this is set */
65 int active;
66
Jonathan Brassowccc45ea2009-04-02 19:55:34 +010067 atomic_t pending_exceptions_count;
68
Mike Snitzer924e6002010-03-06 02:32:33 +000069 mempool_t *pending_pool;
70
Jon Brassow191437a2009-12-10 23:52:10 +000071 struct dm_exception_table pending;
72 struct dm_exception_table complete;
Jonathan Brassowccc45ea2009-04-02 19:55:34 +010073
74 /*
75 * pe_lock protects all pending_exception operations and access
76 * as well as the snapshot_bios list.
77 */
78 spinlock_t pe_lock;
79
Mike Snitzer924e6002010-03-06 02:32:33 +000080 /* Chunks with outstanding reads */
81 spinlock_t tracked_chunk_lock;
Mike Snitzer924e6002010-03-06 02:32:33 +000082 struct hlist_head tracked_chunk_hash[DM_TRACKED_CHUNK_HASH_SIZE];
83
Jonathan Brassowccc45ea2009-04-02 19:55:34 +010084 /* The on disk metadata handler */
85 struct dm_exception_store *store;
86
87 struct dm_kcopyd_client *kcopyd_client;
88
Mike Snitzer924e6002010-03-06 02:32:33 +000089 /* Wait for events based on state_bits */
90 unsigned long state_bits;
91
92 /* Range of chunks currently being merged. */
93 chunk_t first_merging_chunk;
94 int num_merging_chunks;
Mikulas Patocka1e03f972009-12-10 23:52:32 +000095
Mike Snitzerd8ddb1c2009-12-10 23:52:35 +000096 /*
97 * The merge operation failed if this flag is set.
98 * Failure modes are handled as follows:
99 * - I/O error reading the header
100 * => don't load the target; abort.
101 * - Header does not have "valid" flag set
102 * => use the origin; forget about the snapshot.
103 * - I/O error when reading exceptions
104 * => don't load the target; abort.
105 * (We can't use the intermediate origin state.)
106 * - I/O error while merging
107 * => stop merging; set merge_failed; process I/O normally.
108 */
109 int merge_failed;
110
Mikulas Patocka9fe862542009-12-10 23:52:33 +0000111 /*
112 * Incoming bios that overlap with chunks being merged must wait
113 * for them to be committed.
114 */
115 struct bio_list bios_queued_during_merge;
Jonathan Brassowccc45ea2009-04-02 19:55:34 +0100116};
117
Mikulas Patocka1e03f972009-12-10 23:52:32 +0000118/*
119 * state_bits:
120 * RUNNING_MERGE - Merge operation is in progress.
121 * SHUTDOWN_MERGE - Set to signal that merge needs to be stopped;
122 * cleared afterwards.
123 */
124#define RUNNING_MERGE 0
125#define SHUTDOWN_MERGE 1
126
Mikulas Patockac2411042010-08-12 04:13:51 +0100127struct dm_dev *dm_snap_origin(struct dm_snapshot *s)
128{
129 return s->origin;
130}
131EXPORT_SYMBOL(dm_snap_origin);
132
Mike Snitzerfc56f6f2009-12-10 23:52:12 +0000133struct dm_dev *dm_snap_cow(struct dm_snapshot *s)
134{
135 return s->cow;
136}
137EXPORT_SYMBOL(dm_snap_cow);
138
Jonathan Brassowccc45ea2009-04-02 19:55:34 +0100139static sector_t chunk_to_sector(struct dm_exception_store *store,
140 chunk_t chunk)
141{
142 return chunk << store->chunk_shift;
143}
144
145static int bdev_equal(struct block_device *lhs, struct block_device *rhs)
146{
147 /*
148 * There is only ever one instance of a particular block
149 * device so we can compare pointers safely.
150 */
151 return lhs == rhs;
152}
153
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100154struct dm_snap_pending_exception {
Jon Brassow1d4989c2009-12-10 23:52:10 +0000155 struct dm_exception e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
157 /*
158 * Origin buffers waiting for this to complete are held
159 * in a bio list
160 */
161 struct bio_list origin_bios;
162 struct bio_list snapshot_bios;
163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 /* Pointer back to snapshot context */
165 struct dm_snapshot *snap;
166
167 /*
168 * 1 indicates the exception has already been sent to
169 * kcopyd.
170 */
171 int started;
Mikulas Patockaa6e50b42011-08-02 12:32:04 +0100172
173 /*
174 * For writing a complete chunk, bypassing the copy.
175 */
176 struct bio *full_bio;
177 bio_end_io_t *full_bio_end_io;
178 void *full_bio_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179};
180
181/*
182 * Hash table mapping origin volumes to lists of snapshots and
183 * a lock to protect it
184 */
Christoph Lametere18b8902006-12-06 20:33:20 -0800185static struct kmem_cache *exception_cache;
186static struct kmem_cache *pending_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100188struct dm_snap_tracked_chunk {
189 struct hlist_node node;
190 chunk_t chunk;
191};
192
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100193static struct dm_snap_tracked_chunk *track_chunk(struct dm_snapshot *s,
Mikulas Patocka42bc9542012-12-21 20:23:38 +0000194 struct bio *bio,
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100195 chunk_t chunk)
196{
Mikulas Patocka42bc9542012-12-21 20:23:38 +0000197 struct dm_snap_tracked_chunk *c = dm_per_bio_data(bio, sizeof(struct dm_snap_tracked_chunk));
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100198
199 c->chunk = chunk;
200
Mikulas Patocka9aa0c0e2012-12-21 20:23:33 +0000201 spin_lock_irq(&s->tracked_chunk_lock);
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100202 hlist_add_head(&c->node,
203 &s->tracked_chunk_hash[DM_TRACKED_CHUNK_HASH(chunk)]);
Mikulas Patocka9aa0c0e2012-12-21 20:23:33 +0000204 spin_unlock_irq(&s->tracked_chunk_lock);
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100205
206 return c;
207}
208
209static void stop_tracking_chunk(struct dm_snapshot *s,
210 struct dm_snap_tracked_chunk *c)
211{
212 unsigned long flags;
213
214 spin_lock_irqsave(&s->tracked_chunk_lock, flags);
215 hlist_del(&c->node);
216 spin_unlock_irqrestore(&s->tracked_chunk_lock, flags);
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100217}
218
Mikulas Patockaa8d41b52008-07-21 12:00:34 +0100219static int __chunk_is_tracked(struct dm_snapshot *s, chunk_t chunk)
220{
221 struct dm_snap_tracked_chunk *c;
222 struct hlist_node *hn;
223 int found = 0;
224
225 spin_lock_irq(&s->tracked_chunk_lock);
226
227 hlist_for_each_entry(c, hn,
228 &s->tracked_chunk_hash[DM_TRACKED_CHUNK_HASH(chunk)], node) {
229 if (c->chunk == chunk) {
230 found = 1;
231 break;
232 }
233 }
234
235 spin_unlock_irq(&s->tracked_chunk_lock);
236
237 return found;
238}
239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240/*
Mike Snitzer615d1eb2009-12-10 23:52:29 +0000241 * This conflicting I/O is extremely improbable in the caller,
242 * so msleep(1) is sufficient and there is no need for a wait queue.
243 */
244static void __check_for_conflicting_io(struct dm_snapshot *s, chunk_t chunk)
245{
246 while (__chunk_is_tracked(s, chunk))
247 msleep(1);
248}
249
250/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 * One of these per registered origin, held in the snapshot_origins hash
252 */
253struct origin {
254 /* The origin device */
255 struct block_device *bdev;
256
257 struct list_head hash_list;
258
259 /* List of snapshots for this origin */
260 struct list_head snapshots;
261};
262
263/*
264 * Size of the hash table for origin volumes. If we make this
265 * the size of the minors list then it should be nearly perfect
266 */
267#define ORIGIN_HASH_SIZE 256
268#define ORIGIN_MASK 0xFF
269static struct list_head *_origins;
270static struct rw_semaphore _origins_lock;
271
Mikulas Patocka73dfd072009-12-10 23:52:34 +0000272static DECLARE_WAIT_QUEUE_HEAD(_pending_exceptions_done);
273static DEFINE_SPINLOCK(_pending_exceptions_done_spinlock);
274static uint64_t _pending_exceptions_done_count;
275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276static int init_origin_hash(void)
277{
278 int i;
279
280 _origins = kmalloc(ORIGIN_HASH_SIZE * sizeof(struct list_head),
281 GFP_KERNEL);
282 if (!_origins) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700283 DMERR("unable to allocate memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 return -ENOMEM;
285 }
286
287 for (i = 0; i < ORIGIN_HASH_SIZE; i++)
288 INIT_LIST_HEAD(_origins + i);
289 init_rwsem(&_origins_lock);
290
291 return 0;
292}
293
294static void exit_origin_hash(void)
295{
296 kfree(_origins);
297}
298
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100299static unsigned origin_hash(struct block_device *bdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300{
301 return bdev->bd_dev & ORIGIN_MASK;
302}
303
304static struct origin *__lookup_origin(struct block_device *origin)
305{
306 struct list_head *ol;
307 struct origin *o;
308
309 ol = &_origins[origin_hash(origin)];
310 list_for_each_entry (o, ol, hash_list)
311 if (bdev_equal(o->bdev, origin))
312 return o;
313
314 return NULL;
315}
316
317static void __insert_origin(struct origin *o)
318{
319 struct list_head *sl = &_origins[origin_hash(o->bdev)];
320 list_add_tail(&o->hash_list, sl);
321}
322
323/*
Mike Snitzerc1f0c182009-12-10 23:52:24 +0000324 * _origins_lock must be held when calling this function.
325 * Returns number of snapshots registered using the supplied cow device, plus:
326 * snap_src - a snapshot suitable for use as a source of exception handover
327 * snap_dest - a snapshot capable of receiving exception handover.
Mikulas Patocka9d3b15c2009-12-10 23:52:32 +0000328 * snap_merge - an existing snapshot-merge target linked to the same origin.
329 * There can be at most one snapshot-merge target. The parameter is optional.
Mike Snitzerc1f0c182009-12-10 23:52:24 +0000330 *
Mikulas Patocka9d3b15c2009-12-10 23:52:32 +0000331 * Possible return values and states of snap_src and snap_dest.
Mike Snitzerc1f0c182009-12-10 23:52:24 +0000332 * 0: NULL, NULL - first new snapshot
333 * 1: snap_src, NULL - normal snapshot
334 * 2: snap_src, snap_dest - waiting for handover
335 * 2: snap_src, NULL - handed over, waiting for old to be deleted
336 * 1: NULL, snap_dest - source got destroyed without handover
337 */
338static int __find_snapshots_sharing_cow(struct dm_snapshot *snap,
339 struct dm_snapshot **snap_src,
Mikulas Patocka9d3b15c2009-12-10 23:52:32 +0000340 struct dm_snapshot **snap_dest,
341 struct dm_snapshot **snap_merge)
Mike Snitzerc1f0c182009-12-10 23:52:24 +0000342{
343 struct dm_snapshot *s;
344 struct origin *o;
345 int count = 0;
346 int active;
347
348 o = __lookup_origin(snap->origin->bdev);
349 if (!o)
350 goto out;
351
352 list_for_each_entry(s, &o->snapshots, list) {
Mikulas Patocka9d3b15c2009-12-10 23:52:32 +0000353 if (dm_target_is_snapshot_merge(s->ti) && snap_merge)
354 *snap_merge = s;
Mike Snitzerc1f0c182009-12-10 23:52:24 +0000355 if (!bdev_equal(s->cow->bdev, snap->cow->bdev))
356 continue;
357
358 down_read(&s->lock);
359 active = s->active;
360 up_read(&s->lock);
361
362 if (active) {
363 if (snap_src)
364 *snap_src = s;
365 } else if (snap_dest)
366 *snap_dest = s;
367
368 count++;
369 }
370
371out:
372 return count;
373}
374
375/*
376 * On success, returns 1 if this snapshot is a handover destination,
377 * otherwise returns 0.
378 */
379static int __validate_exception_handover(struct dm_snapshot *snap)
380{
381 struct dm_snapshot *snap_src = NULL, *snap_dest = NULL;
Mikulas Patocka9d3b15c2009-12-10 23:52:32 +0000382 struct dm_snapshot *snap_merge = NULL;
Mike Snitzerc1f0c182009-12-10 23:52:24 +0000383
384 /* Does snapshot need exceptions handed over to it? */
Mikulas Patocka9d3b15c2009-12-10 23:52:32 +0000385 if ((__find_snapshots_sharing_cow(snap, &snap_src, &snap_dest,
386 &snap_merge) == 2) ||
Mike Snitzerc1f0c182009-12-10 23:52:24 +0000387 snap_dest) {
388 snap->ti->error = "Snapshot cow pairing for exception "
389 "table handover failed";
390 return -EINVAL;
391 }
392
393 /*
394 * If no snap_src was found, snap cannot become a handover
395 * destination.
396 */
397 if (!snap_src)
398 return 0;
399
Mikulas Patocka9d3b15c2009-12-10 23:52:32 +0000400 /*
401 * Non-snapshot-merge handover?
402 */
403 if (!dm_target_is_snapshot_merge(snap->ti))
404 return 1;
405
406 /*
407 * Do not allow more than one merging snapshot.
408 */
409 if (snap_merge) {
410 snap->ti->error = "A snapshot is already merging.";
411 return -EINVAL;
412 }
413
Mikulas Patocka1e03f972009-12-10 23:52:32 +0000414 if (!snap_src->store->type->prepare_merge ||
415 !snap_src->store->type->commit_merge) {
416 snap->ti->error = "Snapshot exception store does not "
417 "support snapshot-merge.";
418 return -EINVAL;
419 }
420
Mike Snitzerc1f0c182009-12-10 23:52:24 +0000421 return 1;
422}
423
424static void __insert_snapshot(struct origin *o, struct dm_snapshot *s)
425{
426 struct dm_snapshot *l;
427
428 /* Sort the list according to chunk size, largest-first smallest-last */
429 list_for_each_entry(l, &o->snapshots, list)
430 if (l->store->chunk_size < s->store->chunk_size)
431 break;
432 list_add_tail(&s->list, &l->list);
433}
434
435/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 * Make a note of the snapshot and its origin so we can look it
437 * up when the origin has a write on it.
Mike Snitzerc1f0c182009-12-10 23:52:24 +0000438 *
439 * Also validate snapshot exception store handovers.
440 * On success, returns 1 if this registration is a handover destination,
441 * otherwise returns 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 */
443static int register_snapshot(struct dm_snapshot *snap)
444{
Mike Snitzerc1f0c182009-12-10 23:52:24 +0000445 struct origin *o, *new_o = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 struct block_device *bdev = snap->origin->bdev;
Mike Snitzerc1f0c182009-12-10 23:52:24 +0000447 int r = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Mikulas Patocka60c856c82008-10-30 13:33:12 +0000449 new_o = kmalloc(sizeof(*new_o), GFP_KERNEL);
450 if (!new_o)
451 return -ENOMEM;
452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 down_write(&_origins_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
Mike Snitzerc1f0c182009-12-10 23:52:24 +0000455 r = __validate_exception_handover(snap);
456 if (r < 0) {
457 kfree(new_o);
458 goto out;
459 }
460
461 o = __lookup_origin(bdev);
Mikulas Patocka60c856c82008-10-30 13:33:12 +0000462 if (o)
463 kfree(new_o);
464 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 /* New origin */
Mikulas Patocka60c856c82008-10-30 13:33:12 +0000466 o = new_o;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
468 /* Initialise the struct */
469 INIT_LIST_HEAD(&o->snapshots);
470 o->bdev = bdev;
471
472 __insert_origin(o);
473 }
474
Mike Snitzerc1f0c182009-12-10 23:52:24 +0000475 __insert_snapshot(o, snap);
476
477out:
478 up_write(&_origins_lock);
479
480 return r;
481}
482
483/*
484 * Move snapshot to correct place in list according to chunk size.
485 */
486static void reregister_snapshot(struct dm_snapshot *s)
487{
488 struct block_device *bdev = s->origin->bdev;
489
490 down_write(&_origins_lock);
491
492 list_del(&s->list);
493 __insert_snapshot(__lookup_origin(bdev), s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
495 up_write(&_origins_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496}
497
498static void unregister_snapshot(struct dm_snapshot *s)
499{
500 struct origin *o;
501
502 down_write(&_origins_lock);
503 o = __lookup_origin(s->origin->bdev);
504
505 list_del(&s->list);
Mike Snitzerc1f0c182009-12-10 23:52:24 +0000506 if (o && list_empty(&o->snapshots)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 list_del(&o->hash_list);
508 kfree(o);
509 }
510
511 up_write(&_origins_lock);
512}
513
514/*
515 * Implementation of the exception hash tables.
Milan Brozd74f81f2008-02-08 02:11:27 +0000516 * The lowest hash_shift bits of the chunk number are ignored, allowing
517 * some consecutive chunks to be grouped together.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 */
Jon Brassow3510cb92009-12-10 23:52:11 +0000519static int dm_exception_table_init(struct dm_exception_table *et,
520 uint32_t size, unsigned hash_shift)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521{
522 unsigned int i;
523
Milan Brozd74f81f2008-02-08 02:11:27 +0000524 et->hash_shift = hash_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 et->hash_mask = size - 1;
526 et->table = dm_vcalloc(size, sizeof(struct list_head));
527 if (!et->table)
528 return -ENOMEM;
529
530 for (i = 0; i < size; i++)
531 INIT_LIST_HEAD(et->table + i);
532
533 return 0;
534}
535
Jon Brassow3510cb92009-12-10 23:52:11 +0000536static void dm_exception_table_exit(struct dm_exception_table *et,
537 struct kmem_cache *mem)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538{
539 struct list_head *slot;
Jon Brassow1d4989c2009-12-10 23:52:10 +0000540 struct dm_exception *ex, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 int i, size;
542
543 size = et->hash_mask + 1;
544 for (i = 0; i < size; i++) {
545 slot = et->table + i;
546
547 list_for_each_entry_safe (ex, next, slot, hash_list)
548 kmem_cache_free(mem, ex);
549 }
550
551 vfree(et->table);
552}
553
Jon Brassow191437a2009-12-10 23:52:10 +0000554static uint32_t exception_hash(struct dm_exception_table *et, chunk_t chunk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555{
Milan Brozd74f81f2008-02-08 02:11:27 +0000556 return (chunk >> et->hash_shift) & et->hash_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557}
558
Jon Brassow3510cb92009-12-10 23:52:11 +0000559static void dm_remove_exception(struct dm_exception *e)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560{
561 list_del(&e->hash_list);
562}
563
564/*
565 * Return the exception data for a sector, or NULL if not
566 * remapped.
567 */
Jon Brassow3510cb92009-12-10 23:52:11 +0000568static struct dm_exception *dm_lookup_exception(struct dm_exception_table *et,
569 chunk_t chunk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570{
571 struct list_head *slot;
Jon Brassow1d4989c2009-12-10 23:52:10 +0000572 struct dm_exception *e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
574 slot = &et->table[exception_hash(et, chunk)];
575 list_for_each_entry (e, slot, hash_list)
Milan Brozd74f81f2008-02-08 02:11:27 +0000576 if (chunk >= e->old_chunk &&
577 chunk <= e->old_chunk + dm_consecutive_chunk_count(e))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 return e;
579
580 return NULL;
581}
582
Jon Brassow3510cb92009-12-10 23:52:11 +0000583static struct dm_exception *alloc_completed_exception(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584{
Jon Brassow1d4989c2009-12-10 23:52:10 +0000585 struct dm_exception *e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
587 e = kmem_cache_alloc(exception_cache, GFP_NOIO);
588 if (!e)
589 e = kmem_cache_alloc(exception_cache, GFP_ATOMIC);
590
591 return e;
592}
593
Jon Brassow3510cb92009-12-10 23:52:11 +0000594static void free_completed_exception(struct dm_exception *e)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
596 kmem_cache_free(exception_cache, e);
597}
598
Mikulas Patocka92e86812008-07-21 12:00:35 +0100599static struct dm_snap_pending_exception *alloc_pending_exception(struct dm_snapshot *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600{
Mikulas Patocka92e86812008-07-21 12:00:35 +0100601 struct dm_snap_pending_exception *pe = mempool_alloc(s->pending_pool,
602 GFP_NOIO);
603
Mikulas Patocka879129d22008-10-30 13:33:16 +0000604 atomic_inc(&s->pending_exceptions_count);
Mikulas Patocka92e86812008-07-21 12:00:35 +0100605 pe->snap = s;
606
607 return pe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608}
609
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100610static void free_pending_exception(struct dm_snap_pending_exception *pe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611{
Mikulas Patocka879129d22008-10-30 13:33:16 +0000612 struct dm_snapshot *s = pe->snap;
613
614 mempool_free(pe, s->pending_pool);
615 smp_mb__before_atomic_dec();
616 atomic_dec(&s->pending_exceptions_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617}
618
Jon Brassow3510cb92009-12-10 23:52:11 +0000619static void dm_insert_exception(struct dm_exception_table *eh,
620 struct dm_exception *new_e)
Milan Brozd74f81f2008-02-08 02:11:27 +0000621{
Milan Brozd74f81f2008-02-08 02:11:27 +0000622 struct list_head *l;
Jon Brassow1d4989c2009-12-10 23:52:10 +0000623 struct dm_exception *e = NULL;
Milan Brozd74f81f2008-02-08 02:11:27 +0000624
625 l = &eh->table[exception_hash(eh, new_e->old_chunk)];
626
627 /* Add immediately if this table doesn't support consecutive chunks */
628 if (!eh->hash_shift)
629 goto out;
630
631 /* List is ordered by old_chunk */
632 list_for_each_entry_reverse(e, l, hash_list) {
633 /* Insert after an existing chunk? */
634 if (new_e->old_chunk == (e->old_chunk +
635 dm_consecutive_chunk_count(e) + 1) &&
636 new_e->new_chunk == (dm_chunk_number(e->new_chunk) +
637 dm_consecutive_chunk_count(e) + 1)) {
638 dm_consecutive_chunk_count_inc(e);
Jon Brassow3510cb92009-12-10 23:52:11 +0000639 free_completed_exception(new_e);
Milan Brozd74f81f2008-02-08 02:11:27 +0000640 return;
641 }
642
643 /* Insert before an existing chunk? */
644 if (new_e->old_chunk == (e->old_chunk - 1) &&
645 new_e->new_chunk == (dm_chunk_number(e->new_chunk) - 1)) {
646 dm_consecutive_chunk_count_inc(e);
647 e->old_chunk--;
648 e->new_chunk--;
Jon Brassow3510cb92009-12-10 23:52:11 +0000649 free_completed_exception(new_e);
Milan Brozd74f81f2008-02-08 02:11:27 +0000650 return;
651 }
652
653 if (new_e->old_chunk > e->old_chunk)
654 break;
655 }
656
657out:
658 list_add(&new_e->hash_list, e ? &e->hash_list : l);
659}
660
Jonathan Brassowa159c1a2009-01-06 03:05:19 +0000661/*
662 * Callback used by the exception stores to load exceptions when
663 * initialising.
664 */
665static int dm_add_exception(void *context, chunk_t old, chunk_t new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666{
Jonathan Brassowa159c1a2009-01-06 03:05:19 +0000667 struct dm_snapshot *s = context;
Jon Brassow1d4989c2009-12-10 23:52:10 +0000668 struct dm_exception *e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Jon Brassow3510cb92009-12-10 23:52:11 +0000670 e = alloc_completed_exception();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 if (!e)
672 return -ENOMEM;
673
674 e->old_chunk = old;
Milan Brozd74f81f2008-02-08 02:11:27 +0000675
676 /* Consecutive_count is implicitly initialised to zero */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 e->new_chunk = new;
Milan Brozd74f81f2008-02-08 02:11:27 +0000678
Jon Brassow3510cb92009-12-10 23:52:11 +0000679 dm_insert_exception(&s->complete, e);
Milan Brozd74f81f2008-02-08 02:11:27 +0000680
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 return 0;
682}
683
Mikulas Patocka7e201b32009-12-10 23:52:08 +0000684/*
685 * Return a minimum chunk size of all snapshots that have the specified origin.
686 * Return zero if the origin has no snapshots.
687 */
Mike Snitzer542f9032012-07-27 15:08:00 +0100688static uint32_t __minimum_chunk_size(struct origin *o)
Mikulas Patocka7e201b32009-12-10 23:52:08 +0000689{
690 struct dm_snapshot *snap;
691 unsigned chunk_size = 0;
692
693 if (o)
694 list_for_each_entry(snap, &o->snapshots, list)
695 chunk_size = min_not_zero(chunk_size,
696 snap->store->chunk_size);
697
Mike Snitzer542f9032012-07-27 15:08:00 +0100698 return (uint32_t) chunk_size;
Mikulas Patocka7e201b32009-12-10 23:52:08 +0000699}
700
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701/*
702 * Hard coded magic.
703 */
704static int calc_max_buckets(void)
705{
706 /* use a fixed size of 2MB */
707 unsigned long mem = 2 * 1024 * 1024;
708 mem /= sizeof(struct list_head);
709
710 return mem;
711}
712
713/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 * Allocate room for a suitable hash table.
715 */
Jonathan Brassowfee19982009-04-02 19:55:34 +0100716static int init_hash_tables(struct dm_snapshot *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717{
718 sector_t hash_size, cow_dev_size, origin_dev_size, max_buckets;
719
720 /*
721 * Calculate based on the size of the original volume or
722 * the COW volume...
723 */
Mike Snitzerfc56f6f2009-12-10 23:52:12 +0000724 cow_dev_size = get_dev_size(s->cow->bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 origin_dev_size = get_dev_size(s->origin->bdev);
726 max_buckets = calc_max_buckets();
727
Jonathan Brassowfee19982009-04-02 19:55:34 +0100728 hash_size = min(origin_dev_size, cow_dev_size) >> s->store->chunk_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 hash_size = min(hash_size, max_buckets);
730
Mikulas Patocka8e87b9b2009-12-10 23:51:54 +0000731 if (hash_size < 64)
732 hash_size = 64;
Robert P. J. Day8defd832008-02-08 02:10:06 +0000733 hash_size = rounddown_pow_of_two(hash_size);
Jon Brassow3510cb92009-12-10 23:52:11 +0000734 if (dm_exception_table_init(&s->complete, hash_size,
735 DM_CHUNK_CONSECUTIVE_BITS))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 return -ENOMEM;
737
738 /*
739 * Allocate hash table for in-flight exceptions
740 * Make this smaller than the real hash table
741 */
742 hash_size >>= 3;
743 if (hash_size < 64)
744 hash_size = 64;
745
Jon Brassow3510cb92009-12-10 23:52:11 +0000746 if (dm_exception_table_init(&s->pending, hash_size, 0)) {
747 dm_exception_table_exit(&s->complete, exception_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 return -ENOMEM;
749 }
750
751 return 0;
752}
753
Mikulas Patocka1e03f972009-12-10 23:52:32 +0000754static void merge_shutdown(struct dm_snapshot *s)
755{
756 clear_bit_unlock(RUNNING_MERGE, &s->state_bits);
757 smp_mb__after_clear_bit();
758 wake_up_bit(&s->state_bits, RUNNING_MERGE);
759}
760
Mikulas Patocka9fe862542009-12-10 23:52:33 +0000761static struct bio *__release_queued_bios_after_merge(struct dm_snapshot *s)
762{
763 s->first_merging_chunk = 0;
764 s->num_merging_chunks = 0;
765
766 return bio_list_get(&s->bios_queued_during_merge);
767}
768
Mikulas Patocka1e03f972009-12-10 23:52:32 +0000769/*
770 * Remove one chunk from the index of completed exceptions.
771 */
772static int __remove_single_exception_chunk(struct dm_snapshot *s,
773 chunk_t old_chunk)
774{
775 struct dm_exception *e;
776
Mikulas Patocka1e03f972009-12-10 23:52:32 +0000777 e = dm_lookup_exception(&s->complete, old_chunk);
778 if (!e) {
779 DMERR("Corruption detected: exception for block %llu is "
780 "on disk but not in memory",
781 (unsigned long long)old_chunk);
782 return -EINVAL;
783 }
784
785 /*
786 * If this is the only chunk using this exception, remove exception.
787 */
788 if (!dm_consecutive_chunk_count(e)) {
789 dm_remove_exception(e);
790 free_completed_exception(e);
791 return 0;
792 }
793
794 /*
795 * The chunk may be either at the beginning or the end of a
796 * group of consecutive chunks - never in the middle. We are
797 * removing chunks in the opposite order to that in which they
798 * were added, so this should always be true.
799 * Decrement the consecutive chunk counter and adjust the
800 * starting point if necessary.
801 */
802 if (old_chunk == e->old_chunk) {
803 e->old_chunk++;
804 e->new_chunk++;
805 } else if (old_chunk != e->old_chunk +
806 dm_consecutive_chunk_count(e)) {
807 DMERR("Attempt to merge block %llu from the "
808 "middle of a chunk range [%llu - %llu]",
809 (unsigned long long)old_chunk,
810 (unsigned long long)e->old_chunk,
811 (unsigned long long)
812 e->old_chunk + dm_consecutive_chunk_count(e));
813 return -EINVAL;
814 }
815
816 dm_consecutive_chunk_count_dec(e);
817
818 return 0;
819}
820
Mikulas Patocka9fe862542009-12-10 23:52:33 +0000821static void flush_bios(struct bio *bio);
822
823static int remove_single_exception_chunk(struct dm_snapshot *s)
Mikulas Patocka1e03f972009-12-10 23:52:32 +0000824{
Mikulas Patocka9fe862542009-12-10 23:52:33 +0000825 struct bio *b = NULL;
826 int r;
827 chunk_t old_chunk = s->first_merging_chunk + s->num_merging_chunks - 1;
Mikulas Patocka1e03f972009-12-10 23:52:32 +0000828
829 down_write(&s->lock);
Mikulas Patocka9fe862542009-12-10 23:52:33 +0000830
831 /*
832 * Process chunks (and associated exceptions) in reverse order
833 * so that dm_consecutive_chunk_count_dec() accounting works.
834 */
835 do {
836 r = __remove_single_exception_chunk(s, old_chunk);
837 if (r)
838 goto out;
839 } while (old_chunk-- > s->first_merging_chunk);
840
841 b = __release_queued_bios_after_merge(s);
842
843out:
Mikulas Patocka1e03f972009-12-10 23:52:32 +0000844 up_write(&s->lock);
Mikulas Patocka9fe862542009-12-10 23:52:33 +0000845 if (b)
846 flush_bios(b);
Mikulas Patocka1e03f972009-12-10 23:52:32 +0000847
848 return r;
849}
850
Mikulas Patocka73dfd072009-12-10 23:52:34 +0000851static int origin_write_extent(struct dm_snapshot *merging_snap,
852 sector_t sector, unsigned chunk_size);
853
Mikulas Patocka1e03f972009-12-10 23:52:32 +0000854static void merge_callback(int read_err, unsigned long write_err,
855 void *context);
856
Mikulas Patocka73dfd072009-12-10 23:52:34 +0000857static uint64_t read_pending_exceptions_done_count(void)
858{
859 uint64_t pending_exceptions_done;
860
861 spin_lock(&_pending_exceptions_done_spinlock);
862 pending_exceptions_done = _pending_exceptions_done_count;
863 spin_unlock(&_pending_exceptions_done_spinlock);
864
865 return pending_exceptions_done;
866}
867
868static void increment_pending_exceptions_done_count(void)
869{
870 spin_lock(&_pending_exceptions_done_spinlock);
871 _pending_exceptions_done_count++;
872 spin_unlock(&_pending_exceptions_done_spinlock);
873
874 wake_up_all(&_pending_exceptions_done);
875}
876
Mikulas Patocka1e03f972009-12-10 23:52:32 +0000877static void snapshot_merge_next_chunks(struct dm_snapshot *s)
878{
Mike Snitzer8a2d5282009-12-10 23:52:34 +0000879 int i, linear_chunks;
Mikulas Patocka1e03f972009-12-10 23:52:32 +0000880 chunk_t old_chunk, new_chunk;
881 struct dm_io_region src, dest;
Mike Snitzer8a2d5282009-12-10 23:52:34 +0000882 sector_t io_size;
Mikulas Patocka73dfd072009-12-10 23:52:34 +0000883 uint64_t previous_count;
Mikulas Patocka1e03f972009-12-10 23:52:32 +0000884
885 BUG_ON(!test_bit(RUNNING_MERGE, &s->state_bits));
886 if (unlikely(test_bit(SHUTDOWN_MERGE, &s->state_bits)))
887 goto shut;
888
889 /*
890 * valid flag never changes during merge, so no lock required.
891 */
892 if (!s->valid) {
893 DMERR("Snapshot is invalid: can't merge");
894 goto shut;
895 }
896
Mike Snitzer8a2d5282009-12-10 23:52:34 +0000897 linear_chunks = s->store->type->prepare_merge(s->store, &old_chunk,
898 &new_chunk);
899 if (linear_chunks <= 0) {
Mike Snitzerd8ddb1c2009-12-10 23:52:35 +0000900 if (linear_chunks < 0) {
Mikulas Patocka1e03f972009-12-10 23:52:32 +0000901 DMERR("Read error in exception store: "
902 "shutting down merge");
Mike Snitzerd8ddb1c2009-12-10 23:52:35 +0000903 down_write(&s->lock);
904 s->merge_failed = 1;
905 up_write(&s->lock);
906 }
Mikulas Patocka1e03f972009-12-10 23:52:32 +0000907 goto shut;
908 }
909
Mike Snitzer8a2d5282009-12-10 23:52:34 +0000910 /* Adjust old_chunk and new_chunk to reflect start of linear region */
911 old_chunk = old_chunk + 1 - linear_chunks;
912 new_chunk = new_chunk + 1 - linear_chunks;
913
914 /*
915 * Use one (potentially large) I/O to copy all 'linear_chunks'
916 * from the exception store to the origin
917 */
918 io_size = linear_chunks * s->store->chunk_size;
Mikulas Patocka1e03f972009-12-10 23:52:32 +0000919
Mikulas Patocka1e03f972009-12-10 23:52:32 +0000920 dest.bdev = s->origin->bdev;
921 dest.sector = chunk_to_sector(s->store, old_chunk);
Mike Snitzer8a2d5282009-12-10 23:52:34 +0000922 dest.count = min(io_size, get_dev_size(dest.bdev) - dest.sector);
Mikulas Patocka1e03f972009-12-10 23:52:32 +0000923
924 src.bdev = s->cow->bdev;
925 src.sector = chunk_to_sector(s->store, new_chunk);
926 src.count = dest.count;
927
Mikulas Patocka73dfd072009-12-10 23:52:34 +0000928 /*
929 * Reallocate any exceptions needed in other snapshots then
930 * wait for the pending exceptions to complete.
931 * Each time any pending exception (globally on the system)
932 * completes we are woken and repeat the process to find out
933 * if we can proceed. While this may not seem a particularly
934 * efficient algorithm, it is not expected to have any
935 * significant impact on performance.
936 */
937 previous_count = read_pending_exceptions_done_count();
Mike Snitzer8a2d5282009-12-10 23:52:34 +0000938 while (origin_write_extent(s, dest.sector, io_size)) {
Mikulas Patocka73dfd072009-12-10 23:52:34 +0000939 wait_event(_pending_exceptions_done,
940 (read_pending_exceptions_done_count() !=
941 previous_count));
942 /* Retry after the wait, until all exceptions are done. */
943 previous_count = read_pending_exceptions_done_count();
944 }
945
Mikulas Patocka9fe862542009-12-10 23:52:33 +0000946 down_write(&s->lock);
947 s->first_merging_chunk = old_chunk;
Mike Snitzer8a2d5282009-12-10 23:52:34 +0000948 s->num_merging_chunks = linear_chunks;
Mikulas Patocka9fe862542009-12-10 23:52:33 +0000949 up_write(&s->lock);
950
Mike Snitzer8a2d5282009-12-10 23:52:34 +0000951 /* Wait until writes to all 'linear_chunks' drain */
952 for (i = 0; i < linear_chunks; i++)
953 __check_for_conflicting_io(s, old_chunk + i);
Mikulas Patocka9fe862542009-12-10 23:52:33 +0000954
Mikulas Patocka1e03f972009-12-10 23:52:32 +0000955 dm_kcopyd_copy(s->kcopyd_client, &src, 1, &dest, 0, merge_callback, s);
956 return;
957
958shut:
959 merge_shutdown(s);
960}
961
Mikulas Patocka9fe862542009-12-10 23:52:33 +0000962static void error_bios(struct bio *bio);
963
Mikulas Patocka1e03f972009-12-10 23:52:32 +0000964static void merge_callback(int read_err, unsigned long write_err, void *context)
965{
966 struct dm_snapshot *s = context;
Mikulas Patocka9fe862542009-12-10 23:52:33 +0000967 struct bio *b = NULL;
Mikulas Patocka1e03f972009-12-10 23:52:32 +0000968
969 if (read_err || write_err) {
970 if (read_err)
971 DMERR("Read error: shutting down merge.");
972 else
973 DMERR("Write error: shutting down merge.");
974 goto shut;
975 }
976
Mikulas Patocka9fe862542009-12-10 23:52:33 +0000977 if (s->store->type->commit_merge(s->store,
978 s->num_merging_chunks) < 0) {
Mikulas Patocka1e03f972009-12-10 23:52:32 +0000979 DMERR("Write error in exception store: shutting down merge");
980 goto shut;
981 }
982
Mikulas Patocka9fe862542009-12-10 23:52:33 +0000983 if (remove_single_exception_chunk(s) < 0)
984 goto shut;
985
Mikulas Patocka1e03f972009-12-10 23:52:32 +0000986 snapshot_merge_next_chunks(s);
987
988 return;
989
990shut:
Mikulas Patocka9fe862542009-12-10 23:52:33 +0000991 down_write(&s->lock);
Mike Snitzerd8ddb1c2009-12-10 23:52:35 +0000992 s->merge_failed = 1;
Mikulas Patocka9fe862542009-12-10 23:52:33 +0000993 b = __release_queued_bios_after_merge(s);
994 up_write(&s->lock);
995 error_bios(b);
996
Mikulas Patocka1e03f972009-12-10 23:52:32 +0000997 merge_shutdown(s);
998}
999
1000static void start_merge(struct dm_snapshot *s)
1001{
1002 if (!test_and_set_bit(RUNNING_MERGE, &s->state_bits))
1003 snapshot_merge_next_chunks(s);
1004}
1005
1006static int wait_schedule(void *ptr)
1007{
1008 schedule();
1009
1010 return 0;
1011}
1012
1013/*
1014 * Stop the merging process and wait until it finishes.
1015 */
1016static void stop_merge(struct dm_snapshot *s)
1017{
1018 set_bit(SHUTDOWN_MERGE, &s->state_bits);
1019 wait_on_bit(&s->state_bits, RUNNING_MERGE, wait_schedule,
1020 TASK_UNINTERRUPTIBLE);
1021 clear_bit(SHUTDOWN_MERGE, &s->state_bits);
1022}
1023
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 * Construct a snapshot mapping: <origin_dev> <COW-dev> <p/n> <chunk-size>
1026 */
1027static int snapshot_ctr(struct dm_target *ti, unsigned int argc, char **argv)
1028{
1029 struct dm_snapshot *s;
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001030 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 int r = -EINVAL;
Mike Snitzerfc56f6f2009-12-10 23:52:12 +00001032 char *origin_path, *cow_path;
Mike Snitzer10b81062009-12-10 23:52:31 +00001033 unsigned args_used, num_flush_requests = 1;
1034 fmode_t origin_mode = FMODE_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -07001036 if (argc != 4) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001037 ti->error = "requires exactly 4 arguments";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 r = -EINVAL;
Mike Snitzerfc56f6f2009-12-10 23:52:12 +00001039 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 }
1041
Mike Snitzer10b81062009-12-10 23:52:31 +00001042 if (dm_target_is_snapshot_merge(ti)) {
1043 num_flush_requests = 2;
1044 origin_mode = FMODE_WRITE;
1045 }
1046
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 s = kmalloc(sizeof(*s), GFP_KERNEL);
Jonathan Brassowfee19982009-04-02 19:55:34 +01001048 if (!s) {
Jonathan Brassowa2d2b032011-08-02 12:32:03 +01001049 ti->error = "Cannot allocate private snapshot structure";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 r = -ENOMEM;
Mike Snitzerfc56f6f2009-12-10 23:52:12 +00001051 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 }
1053
Mikulas Patockac2411042010-08-12 04:13:51 +01001054 origin_path = argv[0];
1055 argv++;
1056 argc--;
1057
1058 r = dm_get_device(ti, origin_path, origin_mode, &s->origin);
1059 if (r) {
1060 ti->error = "Cannot get origin device";
1061 goto bad_origin;
1062 }
1063
Mike Snitzerfc56f6f2009-12-10 23:52:12 +00001064 cow_path = argv[0];
1065 argv++;
1066 argc--;
1067
Milan Broz024d37e2011-03-24 13:52:14 +00001068 r = dm_get_device(ti, cow_path, dm_table_get_mode(ti->table), &s->cow);
Mike Snitzerfc56f6f2009-12-10 23:52:12 +00001069 if (r) {
1070 ti->error = "Cannot get COW device";
1071 goto bad_cow;
1072 }
1073
1074 r = dm_exception_store_create(ti, argc, argv, s, &args_used, &s->store);
1075 if (r) {
1076 ti->error = "Couldn't create exception store";
1077 r = -EINVAL;
1078 goto bad_store;
1079 }
1080
1081 argv += args_used;
1082 argc -= args_used;
1083
Mike Snitzerfc56f6f2009-12-10 23:52:12 +00001084 s->ti = ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 s->valid = 1;
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -08001086 s->active = 0;
Mikulas Patocka879129d22008-10-30 13:33:16 +00001087 atomic_set(&s->pending_exceptions_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 init_rwsem(&s->lock);
Mike Snitzerc1f0c182009-12-10 23:52:24 +00001089 INIT_LIST_HEAD(&s->list);
Alasdair G Kergonca3a9312006-10-03 01:15:30 -07001090 spin_lock_init(&s->pe_lock);
Mikulas Patocka1e03f972009-12-10 23:52:32 +00001091 s->state_bits = 0;
Mike Snitzerd8ddb1c2009-12-10 23:52:35 +00001092 s->merge_failed = 0;
Mikulas Patocka9fe862542009-12-10 23:52:33 +00001093 s->first_merging_chunk = 0;
1094 s->num_merging_chunks = 0;
1095 bio_list_init(&s->bios_queued_during_merge);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
1097 /* Allocate hash table for COW data */
Jonathan Brassowfee19982009-04-02 19:55:34 +01001098 if (init_hash_tables(s)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 ti->error = "Unable to allocate hash table space";
1100 r = -ENOMEM;
Jonathan Brassowfee19982009-04-02 19:55:34 +01001101 goto bad_hash_tables;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 }
1103
Mikulas Patockafa34ce72011-05-29 13:03:13 +01001104 s->kcopyd_client = dm_kcopyd_client_create();
1105 if (IS_ERR(s->kcopyd_client)) {
1106 r = PTR_ERR(s->kcopyd_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 ti->error = "Could not create kcopyd client";
Jonathan Brassowfee19982009-04-02 19:55:34 +01001108 goto bad_kcopyd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 }
1110
Mikulas Patocka92e86812008-07-21 12:00:35 +01001111 s->pending_pool = mempool_create_slab_pool(MIN_IOS, pending_cache);
1112 if (!s->pending_pool) {
1113 ti->error = "Could not allocate mempool for pending exceptions";
Jonathan Brassowfee19982009-04-02 19:55:34 +01001114 goto bad_pending_pool;
Mikulas Patocka92e86812008-07-21 12:00:35 +01001115 }
1116
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001117 for (i = 0; i < DM_TRACKED_CHUNK_HASH_SIZE; i++)
1118 INIT_HLIST_HEAD(&s->tracked_chunk_hash[i]);
1119
1120 spin_lock_init(&s->tracked_chunk_lock);
1121
Mike Snitzerc1f0c182009-12-10 23:52:24 +00001122 ti->private = s;
Mike Snitzer10b81062009-12-10 23:52:31 +00001123 ti->num_flush_requests = num_flush_requests;
Mikulas Patocka42bc9542012-12-21 20:23:38 +00001124 ti->per_bio_data_size = sizeof(struct dm_snap_tracked_chunk);
Mike Snitzerc1f0c182009-12-10 23:52:24 +00001125
1126 /* Add snapshot to the list of snapshots for this origin */
1127 /* Exceptions aren't triggered till snapshot_resume() is called */
1128 r = register_snapshot(s);
1129 if (r == -ENOMEM) {
1130 ti->error = "Snapshot origin struct allocation failed";
1131 goto bad_load_and_register;
1132 } else if (r < 0) {
1133 /* invalid handover, register_snapshot has set ti->error */
1134 goto bad_load_and_register;
1135 }
1136
1137 /*
1138 * Metadata must only be loaded into one table at once, so skip this
1139 * if metadata will be handed over during resume.
1140 * Chunk size will be set during the handover - set it to zero to
1141 * ensure it's ignored.
1142 */
1143 if (r > 0) {
1144 s->store->chunk_size = 0;
1145 return 0;
1146 }
1147
Jonathan Brassow493df712009-04-02 19:55:31 +01001148 r = s->store->type->read_metadata(s->store, dm_add_exception,
1149 (void *)s);
Milan Broz07641472007-07-12 17:28:13 +01001150 if (r < 0) {
Mark McLoughlinf9cea4f2006-10-03 01:15:25 -07001151 ti->error = "Failed to read snapshot metadata";
Mike Snitzerc1f0c182009-12-10 23:52:24 +00001152 goto bad_read_metadata;
Milan Broz07641472007-07-12 17:28:13 +01001153 } else if (r > 0) {
1154 s->valid = 0;
1155 DMWARN("Snapshot is marked invalid.");
Mark McLoughlinf9cea4f2006-10-03 01:15:25 -07001156 }
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -08001157
Mikulas Patocka3f2412d2009-10-16 23:18:16 +01001158 if (!s->store->chunk_size) {
1159 ti->error = "Chunk size not set";
Mike Snitzerc1f0c182009-12-10 23:52:24 +00001160 goto bad_read_metadata;
Mikulas Patocka3f2412d2009-10-16 23:18:16 +01001161 }
Mike Snitzer542f9032012-07-27 15:08:00 +01001162
1163 r = dm_set_target_max_io_len(ti, s->store->chunk_size);
1164 if (r)
1165 goto bad_read_metadata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166
1167 return 0;
1168
Mike Snitzerc1f0c182009-12-10 23:52:24 +00001169bad_read_metadata:
1170 unregister_snapshot(s);
1171
Jonathan Brassowfee19982009-04-02 19:55:34 +01001172bad_load_and_register:
Mikulas Patocka92e86812008-07-21 12:00:35 +01001173 mempool_destroy(s->pending_pool);
1174
Jonathan Brassowfee19982009-04-02 19:55:34 +01001175bad_pending_pool:
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +01001176 dm_kcopyd_client_destroy(s->kcopyd_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
Jonathan Brassowfee19982009-04-02 19:55:34 +01001178bad_kcopyd:
Jon Brassow3510cb92009-12-10 23:52:11 +00001179 dm_exception_table_exit(&s->pending, pending_cache);
1180 dm_exception_table_exit(&s->complete, exception_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181
Jonathan Brassowfee19982009-04-02 19:55:34 +01001182bad_hash_tables:
Mike Snitzerfc56f6f2009-12-10 23:52:12 +00001183 dm_exception_store_destroy(s->store);
1184
1185bad_store:
1186 dm_put_device(ti, s->cow);
1187
1188bad_cow:
Mikulas Patockac2411042010-08-12 04:13:51 +01001189 dm_put_device(ti, s->origin);
1190
1191bad_origin:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 kfree(s);
1193
Mike Snitzerfc56f6f2009-12-10 23:52:12 +00001194bad:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 return r;
1196}
1197
Milan Broz31c93a02006-12-08 02:41:11 -08001198static void __free_exceptions(struct dm_snapshot *s)
1199{
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +01001200 dm_kcopyd_client_destroy(s->kcopyd_client);
Milan Broz31c93a02006-12-08 02:41:11 -08001201 s->kcopyd_client = NULL;
1202
Jon Brassow3510cb92009-12-10 23:52:11 +00001203 dm_exception_table_exit(&s->pending, pending_cache);
1204 dm_exception_table_exit(&s->complete, exception_cache);
Milan Broz31c93a02006-12-08 02:41:11 -08001205}
1206
Mike Snitzerc1f0c182009-12-10 23:52:24 +00001207static void __handover_exceptions(struct dm_snapshot *snap_src,
1208 struct dm_snapshot *snap_dest)
1209{
1210 union {
1211 struct dm_exception_table table_swap;
1212 struct dm_exception_store *store_swap;
1213 } u;
1214
1215 /*
1216 * Swap all snapshot context information between the two instances.
1217 */
1218 u.table_swap = snap_dest->complete;
1219 snap_dest->complete = snap_src->complete;
1220 snap_src->complete = u.table_swap;
1221
1222 u.store_swap = snap_dest->store;
1223 snap_dest->store = snap_src->store;
1224 snap_src->store = u.store_swap;
1225
1226 snap_dest->store->snap = snap_dest;
1227 snap_src->store->snap = snap_src;
1228
Mike Snitzer542f9032012-07-27 15:08:00 +01001229 snap_dest->ti->max_io_len = snap_dest->store->chunk_size;
Mike Snitzerc1f0c182009-12-10 23:52:24 +00001230 snap_dest->valid = snap_src->valid;
1231
1232 /*
1233 * Set source invalid to ensure it receives no further I/O.
1234 */
1235 snap_src->valid = 0;
1236}
1237
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238static void snapshot_dtr(struct dm_target *ti)
1239{
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001240#ifdef CONFIG_DM_DEBUG
1241 int i;
1242#endif
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001243 struct dm_snapshot *s = ti->private;
Mike Snitzerc1f0c182009-12-10 23:52:24 +00001244 struct dm_snapshot *snap_src = NULL, *snap_dest = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
Mike Snitzerc1f0c182009-12-10 23:52:24 +00001246 down_read(&_origins_lock);
1247 /* Check whether exception handover must be cancelled */
Mikulas Patocka9d3b15c2009-12-10 23:52:32 +00001248 (void) __find_snapshots_sharing_cow(s, &snap_src, &snap_dest, NULL);
Mike Snitzerc1f0c182009-12-10 23:52:24 +00001249 if (snap_src && snap_dest && (s == snap_src)) {
1250 down_write(&snap_dest->lock);
1251 snap_dest->valid = 0;
1252 up_write(&snap_dest->lock);
1253 DMERR("Cancelling snapshot handover.");
1254 }
1255 up_read(&_origins_lock);
1256
Mikulas Patocka1e03f972009-12-10 23:52:32 +00001257 if (dm_target_is_snapshot_merge(ti))
1258 stop_merge(s);
1259
Alasdair G Kergon138728dc2006-03-27 01:17:50 -08001260 /* Prevent further origin writes from using this snapshot. */
1261 /* After this returns there can be no new kcopyd jobs. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 unregister_snapshot(s);
1263
Mikulas Patocka879129d22008-10-30 13:33:16 +00001264 while (atomic_read(&s->pending_exceptions_count))
Mikulas Patocka90fa1522009-01-06 03:04:54 +00001265 msleep(1);
Mikulas Patocka879129d22008-10-30 13:33:16 +00001266 /*
1267 * Ensure instructions in mempool_destroy aren't reordered
1268 * before atomic_read.
1269 */
1270 smp_mb();
1271
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001272#ifdef CONFIG_DM_DEBUG
1273 for (i = 0; i < DM_TRACKED_CHUNK_HASH_SIZE; i++)
1274 BUG_ON(!hlist_empty(&s->tracked_chunk_hash[i]));
1275#endif
1276
Milan Broz31c93a02006-12-08 02:41:11 -08001277 __free_exceptions(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
Mikulas Patocka92e86812008-07-21 12:00:35 +01001279 mempool_destroy(s->pending_pool);
1280
Jonathan Brassowfee19982009-04-02 19:55:34 +01001281 dm_exception_store_destroy(s->store);
Alasdair G Kergon138728dc2006-03-27 01:17:50 -08001282
Mike Snitzerfc56f6f2009-12-10 23:52:12 +00001283 dm_put_device(ti, s->cow);
1284
Mikulas Patockac2411042010-08-12 04:13:51 +01001285 dm_put_device(ti, s->origin);
1286
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 kfree(s);
1288}
1289
1290/*
1291 * Flush a list of buffers.
1292 */
1293static void flush_bios(struct bio *bio)
1294{
1295 struct bio *n;
1296
1297 while (bio) {
1298 n = bio->bi_next;
1299 bio->bi_next = NULL;
1300 generic_make_request(bio);
1301 bio = n;
1302 }
1303}
1304
Mikulas Patocka515ad662009-12-10 23:52:30 +00001305static int do_origin(struct dm_dev *origin, struct bio *bio);
1306
1307/*
1308 * Flush a list of buffers.
1309 */
1310static void retry_origin_bios(struct dm_snapshot *s, struct bio *bio)
1311{
1312 struct bio *n;
1313 int r;
1314
1315 while (bio) {
1316 n = bio->bi_next;
1317 bio->bi_next = NULL;
1318 r = do_origin(s->origin, bio);
1319 if (r == DM_MAPIO_REMAPPED)
1320 generic_make_request(bio);
1321 bio = n;
1322 }
1323}
1324
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325/*
1326 * Error a list of buffers.
1327 */
1328static void error_bios(struct bio *bio)
1329{
1330 struct bio *n;
1331
1332 while (bio) {
1333 n = bio->bi_next;
1334 bio->bi_next = NULL;
NeilBrown6712ecf2007-09-27 12:47:43 +02001335 bio_io_error(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 bio = n;
1337 }
1338}
1339
Alasdair G Kergon695368a2006-10-03 01:15:31 -07001340static void __invalidate_snapshot(struct dm_snapshot *s, int err)
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001341{
1342 if (!s->valid)
1343 return;
1344
1345 if (err == -EIO)
1346 DMERR("Invalidating snapshot: Error reading/writing.");
1347 else if (err == -ENOMEM)
1348 DMERR("Invalidating snapshot: Unable to allocate exception.");
1349
Jonathan Brassow493df712009-04-02 19:55:31 +01001350 if (s->store->type->drop_snapshot)
1351 s->store->type->drop_snapshot(s->store);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001352
1353 s->valid = 0;
1354
Mike Snitzerfc56f6f2009-12-10 23:52:12 +00001355 dm_table_event(s->ti->table);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001356}
1357
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001358static void pending_complete(struct dm_snap_pending_exception *pe, int success)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359{
Jon Brassow1d4989c2009-12-10 23:52:10 +00001360 struct dm_exception *e;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 struct dm_snapshot *s = pe->snap;
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -07001362 struct bio *origin_bios = NULL;
1363 struct bio *snapshot_bios = NULL;
Mikulas Patockaa6e50b42011-08-02 12:32:04 +01001364 struct bio *full_bio = NULL;
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -07001365 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001367 if (!success) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 /* Read/write error - snapshot is unusable */
1369 down_write(&s->lock);
Alasdair G Kergon695368a2006-10-03 01:15:31 -07001370 __invalidate_snapshot(s, -EIO);
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -07001371 error = 1;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001372 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 }
1374
Jon Brassow3510cb92009-12-10 23:52:11 +00001375 e = alloc_completed_exception();
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001376 if (!e) {
1377 down_write(&s->lock);
Alasdair G Kergon695368a2006-10-03 01:15:31 -07001378 __invalidate_snapshot(s, -ENOMEM);
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -07001379 error = 1;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001380 goto out;
1381 }
1382 *e = pe->e;
1383
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -07001384 down_write(&s->lock);
1385 if (!s->valid) {
Jon Brassow3510cb92009-12-10 23:52:11 +00001386 free_completed_exception(e);
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -07001387 error = 1;
1388 goto out;
1389 }
1390
Mike Snitzer615d1eb2009-12-10 23:52:29 +00001391 /* Check for conflicting reads */
1392 __check_for_conflicting_io(s, pe->e.old_chunk);
Mikulas Patockaa8d41b52008-07-21 12:00:34 +01001393
1394 /*
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001395 * Add a proper exception, and remove the
1396 * in-flight exception from the list.
1397 */
Jon Brassow3510cb92009-12-10 23:52:11 +00001398 dm_insert_exception(&s->complete, e);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001399
Jonathan Brassowa2d2b032011-08-02 12:32:03 +01001400out:
Jon Brassow3510cb92009-12-10 23:52:11 +00001401 dm_remove_exception(&pe->e);
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -07001402 snapshot_bios = bio_list_get(&pe->snapshot_bios);
Mikulas Patocka515ad662009-12-10 23:52:30 +00001403 origin_bios = bio_list_get(&pe->origin_bios);
Mikulas Patockaa6e50b42011-08-02 12:32:04 +01001404 full_bio = pe->full_bio;
1405 if (full_bio) {
1406 full_bio->bi_end_io = pe->full_bio_end_io;
1407 full_bio->bi_private = pe->full_bio_private;
1408 }
Mikulas Patocka515ad662009-12-10 23:52:30 +00001409 free_pending_exception(pe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410
Mikulas Patocka73dfd072009-12-10 23:52:34 +00001411 increment_pending_exceptions_done_count();
1412
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -07001413 up_write(&s->lock);
1414
1415 /* Submit any pending write bios */
Mikulas Patockaa6e50b42011-08-02 12:32:04 +01001416 if (error) {
1417 if (full_bio)
1418 bio_io_error(full_bio);
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -07001419 error_bios(snapshot_bios);
Mikulas Patockaa6e50b42011-08-02 12:32:04 +01001420 } else {
1421 if (full_bio)
1422 bio_endio(full_bio, 0);
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -07001423 flush_bios(snapshot_bios);
Mikulas Patockaa6e50b42011-08-02 12:32:04 +01001424 }
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -07001425
Mikulas Patocka515ad662009-12-10 23:52:30 +00001426 retry_origin_bios(s, origin_bios);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427}
1428
1429static void commit_callback(void *context, int success)
1430{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001431 struct dm_snap_pending_exception *pe = context;
1432
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 pending_complete(pe, success);
1434}
1435
1436/*
1437 * Called when the copy I/O has finished. kcopyd actually runs
1438 * this code so don't block.
1439 */
Alasdair G Kergon4cdc1d12008-03-28 14:16:10 -07001440static void copy_callback(int read_err, unsigned long write_err, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001442 struct dm_snap_pending_exception *pe = context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 struct dm_snapshot *s = pe->snap;
1444
1445 if (read_err || write_err)
1446 pending_complete(pe, 0);
1447
1448 else
1449 /* Update the metadata if we are persistent */
Jonathan Brassow493df712009-04-02 19:55:31 +01001450 s->store->type->commit_exception(s->store, &pe->e,
1451 commit_callback, pe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452}
1453
1454/*
1455 * Dispatches the copy operation to kcopyd.
1456 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001457static void start_copy(struct dm_snap_pending_exception *pe)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458{
1459 struct dm_snapshot *s = pe->snap;
Heinz Mauelshagen22a1ceb2008-04-24 21:43:17 +01001460 struct dm_io_region src, dest;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 struct block_device *bdev = s->origin->bdev;
1462 sector_t dev_size;
1463
1464 dev_size = get_dev_size(bdev);
1465
1466 src.bdev = bdev;
Jonathan Brassow71fab002009-04-02 19:55:33 +01001467 src.sector = chunk_to_sector(s->store, pe->e.old_chunk);
Mikulas Patockadf96eee2009-10-16 23:18:17 +01001468 src.count = min((sector_t)s->store->chunk_size, dev_size - src.sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469
Mike Snitzerfc56f6f2009-12-10 23:52:12 +00001470 dest.bdev = s->cow->bdev;
Jonathan Brassow71fab002009-04-02 19:55:33 +01001471 dest.sector = chunk_to_sector(s->store, pe->e.new_chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 dest.count = src.count;
1473
1474 /* Hand over to kcopyd */
Jonathan Brassowa2d2b032011-08-02 12:32:03 +01001475 dm_kcopyd_copy(s->kcopyd_client, &src, 1, &dest, 0, copy_callback, pe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476}
1477
Mikulas Patockaa6e50b42011-08-02 12:32:04 +01001478static void full_bio_end_io(struct bio *bio, int error)
1479{
1480 void *callback_data = bio->bi_private;
1481
1482 dm_kcopyd_do_callback(callback_data, 0, error ? 1 : 0);
1483}
1484
1485static void start_full_bio(struct dm_snap_pending_exception *pe,
1486 struct bio *bio)
1487{
1488 struct dm_snapshot *s = pe->snap;
1489 void *callback_data;
1490
1491 pe->full_bio = bio;
1492 pe->full_bio_end_io = bio->bi_end_io;
1493 pe->full_bio_private = bio->bi_private;
1494
1495 callback_data = dm_kcopyd_prepare_callback(s->kcopyd_client,
1496 copy_callback, pe);
1497
1498 bio->bi_end_io = full_bio_end_io;
1499 bio->bi_private = callback_data;
1500
1501 generic_make_request(bio);
1502}
1503
Mikulas Patocka29138082009-04-02 19:55:25 +01001504static struct dm_snap_pending_exception *
1505__lookup_pending_exception(struct dm_snapshot *s, chunk_t chunk)
1506{
Jon Brassow3510cb92009-12-10 23:52:11 +00001507 struct dm_exception *e = dm_lookup_exception(&s->pending, chunk);
Mikulas Patocka29138082009-04-02 19:55:25 +01001508
1509 if (!e)
1510 return NULL;
1511
1512 return container_of(e, struct dm_snap_pending_exception, e);
1513}
1514
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515/*
1516 * Looks to see if this snapshot already has a pending exception
1517 * for this chunk, otherwise it allocates a new one and inserts
1518 * it into the pending table.
1519 *
1520 * NOTE: a write lock must be held on snap->lock before calling
1521 * this.
1522 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001523static struct dm_snap_pending_exception *
Mikulas Patockac6621392009-04-02 19:55:25 +01001524__find_pending_exception(struct dm_snapshot *s,
1525 struct dm_snap_pending_exception *pe, chunk_t chunk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526{
Mikulas Patockac6621392009-04-02 19:55:25 +01001527 struct dm_snap_pending_exception *pe2;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001528
Mikulas Patocka29138082009-04-02 19:55:25 +01001529 pe2 = __lookup_pending_exception(s, chunk);
1530 if (pe2) {
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001531 free_pending_exception(pe);
Mikulas Patocka29138082009-04-02 19:55:25 +01001532 return pe2;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001533 }
1534
1535 pe->e.old_chunk = chunk;
1536 bio_list_init(&pe->origin_bios);
1537 bio_list_init(&pe->snapshot_bios);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001538 pe->started = 0;
Mikulas Patockaa6e50b42011-08-02 12:32:04 +01001539 pe->full_bio = NULL;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001540
Jonathan Brassow493df712009-04-02 19:55:31 +01001541 if (s->store->type->prepare_exception(s->store, &pe->e)) {
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001542 free_pending_exception(pe);
1543 return NULL;
1544 }
1545
Jon Brassow3510cb92009-12-10 23:52:11 +00001546 dm_insert_exception(&s->pending, &pe->e);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001547
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 return pe;
1549}
1550
Jon Brassow1d4989c2009-12-10 23:52:10 +00001551static void remap_exception(struct dm_snapshot *s, struct dm_exception *e,
Milan Brozd74f81f2008-02-08 02:11:27 +00001552 struct bio *bio, chunk_t chunk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553{
Mike Snitzerfc56f6f2009-12-10 23:52:12 +00001554 bio->bi_bdev = s->cow->bdev;
Jonathan Brassow71fab002009-04-02 19:55:33 +01001555 bio->bi_sector = chunk_to_sector(s->store,
1556 dm_chunk_number(e->new_chunk) +
1557 (chunk - e->old_chunk)) +
1558 (bio->bi_sector &
1559 s->store->chunk_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560}
1561
1562static int snapshot_map(struct dm_target *ti, struct bio *bio,
1563 union map_info *map_context)
1564{
Jon Brassow1d4989c2009-12-10 23:52:10 +00001565 struct dm_exception *e;
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001566 struct dm_snapshot *s = ti->private;
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001567 int r = DM_MAPIO_REMAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 chunk_t chunk;
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001569 struct dm_snap_pending_exception *pe = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570
Tejun Heod87f4c12010-09-03 11:56:19 +02001571 if (bio->bi_rw & REQ_FLUSH) {
Mike Snitzerfc56f6f2009-12-10 23:52:12 +00001572 bio->bi_bdev = s->cow->bdev;
Mikulas Patocka494b3ee2009-06-22 10:12:25 +01001573 return DM_MAPIO_REMAPPED;
1574 }
1575
Jonathan Brassow71fab002009-04-02 19:55:33 +01001576 chunk = sector_to_chunk(s->store, bio->bi_sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
1578 /* Full snapshots are not usable */
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001579 /* To get here the table must be live so s->active is always set. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 if (!s->valid)
Alasdair G Kergonf6a80ea2005-07-12 15:53:01 -07001581 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001583 /* FIXME: should only take write lock if we need
1584 * to copy an exception */
1585 down_write(&s->lock);
1586
1587 if (!s->valid) {
1588 r = -EIO;
1589 goto out_unlock;
1590 }
1591
1592 /* If the block is already remapped - use that, else remap it */
Jon Brassow3510cb92009-12-10 23:52:11 +00001593 e = dm_lookup_exception(&s->complete, chunk);
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001594 if (e) {
Milan Brozd74f81f2008-02-08 02:11:27 +00001595 remap_exception(s, e, bio, chunk);
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001596 goto out_unlock;
1597 }
1598
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 /*
1600 * Write to snapshot - higher level takes care of RW/RO
1601 * flags so we should only get this if we are
1602 * writeable.
1603 */
1604 if (bio_rw(bio) == WRITE) {
Mikulas Patocka29138082009-04-02 19:55:25 +01001605 pe = __lookup_pending_exception(s, chunk);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001606 if (!pe) {
Mikulas Patockac6621392009-04-02 19:55:25 +01001607 up_write(&s->lock);
1608 pe = alloc_pending_exception(s);
1609 down_write(&s->lock);
1610
1611 if (!s->valid) {
1612 free_pending_exception(pe);
1613 r = -EIO;
1614 goto out_unlock;
1615 }
1616
Jon Brassow3510cb92009-12-10 23:52:11 +00001617 e = dm_lookup_exception(&s->complete, chunk);
Mikulas Patocka35bf6592009-04-02 19:55:26 +01001618 if (e) {
1619 free_pending_exception(pe);
1620 remap_exception(s, e, bio, chunk);
1621 goto out_unlock;
1622 }
1623
Mikulas Patockac6621392009-04-02 19:55:25 +01001624 pe = __find_pending_exception(s, pe, chunk);
Mikulas Patocka29138082009-04-02 19:55:25 +01001625 if (!pe) {
1626 __invalidate_snapshot(s, -ENOMEM);
1627 r = -EIO;
1628 goto out_unlock;
1629 }
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001630 }
1631
Milan Brozd74f81f2008-02-08 02:11:27 +00001632 remap_exception(s, &pe->e, bio, chunk);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001633
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001634 r = DM_MAPIO_SUBMITTED;
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001635
Mikulas Patockaa6e50b42011-08-02 12:32:04 +01001636 if (!pe->started &&
1637 bio->bi_size == (s->store->chunk_size << SECTOR_SHIFT)) {
1638 pe->started = 1;
1639 up_write(&s->lock);
1640 start_full_bio(pe, bio);
1641 goto out;
1642 }
1643
1644 bio_list_add(&pe->snapshot_bios, bio);
1645
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001646 if (!pe->started) {
1647 /* this is protected by snap->lock */
1648 pe->started = 1;
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001649 up_write(&s->lock);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001650 start_copy(pe);
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001651 goto out;
1652 }
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001653 } else {
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001654 bio->bi_bdev = s->origin->bdev;
Mikulas Patocka42bc9542012-12-21 20:23:38 +00001655 map_context->ptr = track_chunk(s, bio, chunk);
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001656 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
Jonathan Brassowa2d2b032011-08-02 12:32:03 +01001658out_unlock:
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001659 up_write(&s->lock);
Jonathan Brassowa2d2b032011-08-02 12:32:03 +01001660out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 return r;
1662}
1663
Mikulas Patocka3452c2a2009-12-10 23:52:31 +00001664/*
1665 * A snapshot-merge target behaves like a combination of a snapshot
1666 * target and a snapshot-origin target. It only generates new
1667 * exceptions in other snapshots and not in the one that is being
1668 * merged.
1669 *
1670 * For each chunk, if there is an existing exception, it is used to
1671 * redirect I/O to the cow device. Otherwise I/O is sent to the origin,
1672 * which in turn might generate exceptions in other snapshots.
Mikulas Patocka9fe862542009-12-10 23:52:33 +00001673 * If merging is currently taking place on the chunk in question, the
1674 * I/O is deferred by adding it to s->bios_queued_during_merge.
Mikulas Patocka3452c2a2009-12-10 23:52:31 +00001675 */
1676static int snapshot_merge_map(struct dm_target *ti, struct bio *bio,
1677 union map_info *map_context)
1678{
1679 struct dm_exception *e;
1680 struct dm_snapshot *s = ti->private;
1681 int r = DM_MAPIO_REMAPPED;
1682 chunk_t chunk;
1683
Tejun Heod87f4c12010-09-03 11:56:19 +02001684 if (bio->bi_rw & REQ_FLUSH) {
Mike Snitzer57cba5d2010-08-12 04:14:04 +01001685 if (!map_context->target_request_nr)
Mike Snitzer10b81062009-12-10 23:52:31 +00001686 bio->bi_bdev = s->origin->bdev;
1687 else
1688 bio->bi_bdev = s->cow->bdev;
1689 map_context->ptr = NULL;
1690 return DM_MAPIO_REMAPPED;
1691 }
1692
Mikulas Patocka3452c2a2009-12-10 23:52:31 +00001693 chunk = sector_to_chunk(s->store, bio->bi_sector);
1694
Mikulas Patocka9fe862542009-12-10 23:52:33 +00001695 down_write(&s->lock);
Mikulas Patocka3452c2a2009-12-10 23:52:31 +00001696
Mikulas Patockad2fdb772009-12-10 23:52:36 +00001697 /* Full merging snapshots are redirected to the origin */
1698 if (!s->valid)
1699 goto redirect_to_origin;
Mikulas Patocka3452c2a2009-12-10 23:52:31 +00001700
1701 /* If the block is already remapped - use that */
1702 e = dm_lookup_exception(&s->complete, chunk);
1703 if (e) {
Mikulas Patocka9fe862542009-12-10 23:52:33 +00001704 /* Queue writes overlapping with chunks being merged */
1705 if (bio_rw(bio) == WRITE &&
1706 chunk >= s->first_merging_chunk &&
1707 chunk < (s->first_merging_chunk +
1708 s->num_merging_chunks)) {
1709 bio->bi_bdev = s->origin->bdev;
1710 bio_list_add(&s->bios_queued_during_merge, bio);
1711 r = DM_MAPIO_SUBMITTED;
1712 goto out_unlock;
1713 }
Mikulas Patocka17aa0332009-12-10 23:52:33 +00001714
Mikulas Patocka3452c2a2009-12-10 23:52:31 +00001715 remap_exception(s, e, bio, chunk);
Mikulas Patocka17aa0332009-12-10 23:52:33 +00001716
1717 if (bio_rw(bio) == WRITE)
Mikulas Patocka42bc9542012-12-21 20:23:38 +00001718 map_context->ptr = track_chunk(s, bio, chunk);
Mikulas Patocka3452c2a2009-12-10 23:52:31 +00001719 goto out_unlock;
1720 }
1721
Mikulas Patockad2fdb772009-12-10 23:52:36 +00001722redirect_to_origin:
Mikulas Patocka3452c2a2009-12-10 23:52:31 +00001723 bio->bi_bdev = s->origin->bdev;
1724
1725 if (bio_rw(bio) == WRITE) {
Mikulas Patocka9fe862542009-12-10 23:52:33 +00001726 up_write(&s->lock);
Mikulas Patocka3452c2a2009-12-10 23:52:31 +00001727 return do_origin(s->origin, bio);
1728 }
1729
1730out_unlock:
Mikulas Patocka9fe862542009-12-10 23:52:33 +00001731 up_write(&s->lock);
Mikulas Patocka3452c2a2009-12-10 23:52:31 +00001732
1733 return r;
1734}
1735
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001736static int snapshot_end_io(struct dm_target *ti, struct bio *bio,
1737 int error, union map_info *map_context)
1738{
1739 struct dm_snapshot *s = ti->private;
1740 struct dm_snap_tracked_chunk *c = map_context->ptr;
1741
1742 if (c)
1743 stop_tracking_chunk(s, c);
1744
1745 return 0;
1746}
1747
Mikulas Patocka1e03f972009-12-10 23:52:32 +00001748static void snapshot_merge_presuspend(struct dm_target *ti)
1749{
1750 struct dm_snapshot *s = ti->private;
1751
1752 stop_merge(s);
1753}
1754
Mike Snitzerc1f0c182009-12-10 23:52:24 +00001755static int snapshot_preresume(struct dm_target *ti)
1756{
1757 int r = 0;
1758 struct dm_snapshot *s = ti->private;
1759 struct dm_snapshot *snap_src = NULL, *snap_dest = NULL;
1760
1761 down_read(&_origins_lock);
Mikulas Patocka9d3b15c2009-12-10 23:52:32 +00001762 (void) __find_snapshots_sharing_cow(s, &snap_src, &snap_dest, NULL);
Mike Snitzerc1f0c182009-12-10 23:52:24 +00001763 if (snap_src && snap_dest) {
1764 down_read(&snap_src->lock);
1765 if (s == snap_src) {
1766 DMERR("Unable to resume snapshot source until "
1767 "handover completes.");
1768 r = -EINVAL;
Mike Snitzerb83b2f22011-01-13 19:59:59 +00001769 } else if (!dm_suspended(snap_src->ti)) {
Mike Snitzerc1f0c182009-12-10 23:52:24 +00001770 DMERR("Unable to perform snapshot handover until "
1771 "source is suspended.");
1772 r = -EINVAL;
1773 }
1774 up_read(&snap_src->lock);
1775 }
1776 up_read(&_origins_lock);
1777
1778 return r;
1779}
1780
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781static void snapshot_resume(struct dm_target *ti)
1782{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001783 struct dm_snapshot *s = ti->private;
Mike Snitzerc1f0c182009-12-10 23:52:24 +00001784 struct dm_snapshot *snap_src = NULL, *snap_dest = NULL;
1785
1786 down_read(&_origins_lock);
Mikulas Patocka9d3b15c2009-12-10 23:52:32 +00001787 (void) __find_snapshots_sharing_cow(s, &snap_src, &snap_dest, NULL);
Mike Snitzerc1f0c182009-12-10 23:52:24 +00001788 if (snap_src && snap_dest) {
1789 down_write(&snap_src->lock);
1790 down_write_nested(&snap_dest->lock, SINGLE_DEPTH_NESTING);
1791 __handover_exceptions(snap_src, snap_dest);
1792 up_write(&snap_dest->lock);
1793 up_write(&snap_src->lock);
1794 }
1795 up_read(&_origins_lock);
1796
1797 /* Now we have correct chunk size, reregister */
1798 reregister_snapshot(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -08001800 down_write(&s->lock);
1801 s->active = 1;
1802 up_write(&s->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803}
1804
Mike Snitzer542f9032012-07-27 15:08:00 +01001805static uint32_t get_origin_minimum_chunksize(struct block_device *bdev)
Mikulas Patocka1e03f972009-12-10 23:52:32 +00001806{
Mike Snitzer542f9032012-07-27 15:08:00 +01001807 uint32_t min_chunksize;
Mikulas Patocka1e03f972009-12-10 23:52:32 +00001808
1809 down_read(&_origins_lock);
1810 min_chunksize = __minimum_chunk_size(__lookup_origin(bdev));
1811 up_read(&_origins_lock);
1812
1813 return min_chunksize;
1814}
1815
1816static void snapshot_merge_resume(struct dm_target *ti)
1817{
1818 struct dm_snapshot *s = ti->private;
1819
1820 /*
1821 * Handover exceptions from existing snapshot.
1822 */
1823 snapshot_resume(ti);
1824
1825 /*
Mike Snitzer542f9032012-07-27 15:08:00 +01001826 * snapshot-merge acts as an origin, so set ti->max_io_len
Mikulas Patocka1e03f972009-12-10 23:52:32 +00001827 */
Mike Snitzer542f9032012-07-27 15:08:00 +01001828 ti->max_io_len = get_origin_minimum_chunksize(s->origin->bdev);
Mikulas Patocka1e03f972009-12-10 23:52:32 +00001829
1830 start_merge(s);
1831}
1832
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833static int snapshot_status(struct dm_target *ti, status_type_t type,
Alasdair G Kergon1f4e0ff2012-07-27 15:08:16 +01001834 unsigned status_flags, char *result, unsigned maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835{
Jonathan Brassow2e4a31d2009-04-02 19:55:34 +01001836 unsigned sz = 0;
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001837 struct dm_snapshot *snap = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838
1839 switch (type) {
1840 case STATUSTYPE_INFO:
Mikulas Patocka94e765722009-12-10 23:51:53 +00001841
1842 down_write(&snap->lock);
1843
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 if (!snap->valid)
Jonathan Brassow2e4a31d2009-04-02 19:55:34 +01001845 DMEMIT("Invalid");
Mike Snitzerd8ddb1c2009-12-10 23:52:35 +00001846 else if (snap->merge_failed)
1847 DMEMIT("Merge failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 else {
Mike Snitzer985903b2009-12-10 23:52:11 +00001849 if (snap->store->type->usage) {
1850 sector_t total_sectors, sectors_allocated,
1851 metadata_sectors;
1852 snap->store->type->usage(snap->store,
1853 &total_sectors,
1854 &sectors_allocated,
1855 &metadata_sectors);
1856 DMEMIT("%llu/%llu %llu",
1857 (unsigned long long)sectors_allocated,
1858 (unsigned long long)total_sectors,
1859 (unsigned long long)metadata_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 }
1861 else
Jonathan Brassow2e4a31d2009-04-02 19:55:34 +01001862 DMEMIT("Unknown");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 }
Mikulas Patocka94e765722009-12-10 23:51:53 +00001864
1865 up_write(&snap->lock);
1866
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 break;
1868
1869 case STATUSTYPE_TABLE:
1870 /*
1871 * kdevname returns a static pointer so we need
1872 * to make private copies if the output is to
1873 * make sense.
1874 */
Mike Snitzerfc56f6f2009-12-10 23:52:12 +00001875 DMEMIT("%s %s", snap->origin->name, snap->cow->name);
Jonathan Brassow1e302a92009-04-02 19:55:35 +01001876 snap->store->type->status(snap->store, type, result + sz,
1877 maxlen - sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 break;
1879 }
1880
1881 return 0;
1882}
1883
Mike Snitzer8811f462009-09-04 20:40:19 +01001884static int snapshot_iterate_devices(struct dm_target *ti,
1885 iterate_devices_callout_fn fn, void *data)
1886{
1887 struct dm_snapshot *snap = ti->private;
Mikulas Patocka1e5554c2010-08-12 04:13:50 +01001888 int r;
Mike Snitzer8811f462009-09-04 20:40:19 +01001889
Mikulas Patocka1e5554c2010-08-12 04:13:50 +01001890 r = fn(ti, snap->origin, 0, ti->len, data);
1891
1892 if (!r)
1893 r = fn(ti, snap->cow, 0, get_dev_size(snap->cow->bdev), data);
1894
1895 return r;
Mike Snitzer8811f462009-09-04 20:40:19 +01001896}
1897
1898
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899/*-----------------------------------------------------------------
1900 * Origin methods
1901 *---------------------------------------------------------------*/
Mikulas Patocka9eaae8f2009-12-10 23:52:28 +00001902
1903/*
1904 * If no exceptions need creating, DM_MAPIO_REMAPPED is returned and any
1905 * supplied bio was ignored. The caller may submit it immediately.
1906 * (No remapping actually occurs as the origin is always a direct linear
1907 * map.)
1908 *
1909 * If further exceptions are required, DM_MAPIO_SUBMITTED is returned
1910 * and any supplied bio is added to a list to be submitted once all
1911 * the necessary exceptions exist.
1912 */
1913static int __origin_write(struct list_head *snapshots, sector_t sector,
1914 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915{
Mikulas Patocka515ad662009-12-10 23:52:30 +00001916 int r = DM_MAPIO_REMAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 struct dm_snapshot *snap;
Jon Brassow1d4989c2009-12-10 23:52:10 +00001918 struct dm_exception *e;
Mikulas Patocka515ad662009-12-10 23:52:30 +00001919 struct dm_snap_pending_exception *pe;
1920 struct dm_snap_pending_exception *pe_to_start_now = NULL;
1921 struct dm_snap_pending_exception *pe_to_start_last = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 chunk_t chunk;
1923
1924 /* Do all the snapshots on this origin */
1925 list_for_each_entry (snap, snapshots, list) {
Mikulas Patocka3452c2a2009-12-10 23:52:31 +00001926 /*
1927 * Don't make new exceptions in a merging snapshot
1928 * because it has effectively been deleted
1929 */
1930 if (dm_target_is_snapshot_merge(snap->ti))
1931 continue;
1932
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001933 down_write(&snap->lock);
1934
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -08001935 /* Only deal with valid and active snapshots */
1936 if (!snap->valid || !snap->active)
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001937 goto next_snapshot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938
Alasdair G Kergond5e404c2005-07-12 15:53:05 -07001939 /* Nothing to do if writing beyond end of snapshot */
Mikulas Patocka9eaae8f2009-12-10 23:52:28 +00001940 if (sector >= dm_table_get_size(snap->ti->table))
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001941 goto next_snapshot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942
1943 /*
1944 * Remember, different snapshots can have
1945 * different chunk sizes.
1946 */
Mikulas Patocka9eaae8f2009-12-10 23:52:28 +00001947 chunk = sector_to_chunk(snap->store, sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948
1949 /*
1950 * Check exception table to see if block
1951 * is already remapped in this snapshot
1952 * and trigger an exception if not.
1953 */
Jon Brassow3510cb92009-12-10 23:52:11 +00001954 e = dm_lookup_exception(&snap->complete, chunk);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001955 if (e)
1956 goto next_snapshot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957
Mikulas Patocka29138082009-04-02 19:55:25 +01001958 pe = __lookup_pending_exception(snap, chunk);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001959 if (!pe) {
Mikulas Patockac6621392009-04-02 19:55:25 +01001960 up_write(&snap->lock);
1961 pe = alloc_pending_exception(snap);
1962 down_write(&snap->lock);
1963
1964 if (!snap->valid) {
1965 free_pending_exception(pe);
1966 goto next_snapshot;
1967 }
1968
Jon Brassow3510cb92009-12-10 23:52:11 +00001969 e = dm_lookup_exception(&snap->complete, chunk);
Mikulas Patocka35bf6592009-04-02 19:55:26 +01001970 if (e) {
1971 free_pending_exception(pe);
1972 goto next_snapshot;
1973 }
1974
Mikulas Patockac6621392009-04-02 19:55:25 +01001975 pe = __find_pending_exception(snap, pe, chunk);
Mikulas Patocka29138082009-04-02 19:55:25 +01001976 if (!pe) {
1977 __invalidate_snapshot(snap, -ENOMEM);
1978 goto next_snapshot;
1979 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 }
1981
Mikulas Patocka515ad662009-12-10 23:52:30 +00001982 r = DM_MAPIO_SUBMITTED;
1983
1984 /*
1985 * If an origin bio was supplied, queue it to wait for the
1986 * completion of this exception, and start this one last,
1987 * at the end of the function.
1988 */
1989 if (bio) {
1990 bio_list_add(&pe->origin_bios, bio);
1991 bio = NULL;
1992
1993 if (!pe->started) {
1994 pe->started = 1;
1995 pe_to_start_last = pe;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001996 }
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001997 }
1998
1999 if (!pe->started) {
2000 pe->started = 1;
Mikulas Patocka515ad662009-12-10 23:52:30 +00002001 pe_to_start_now = pe;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08002002 }
2003
Jonathan Brassowa2d2b032011-08-02 12:32:03 +01002004next_snapshot:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 up_write(&snap->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006
Mikulas Patocka515ad662009-12-10 23:52:30 +00002007 if (pe_to_start_now) {
2008 start_copy(pe_to_start_now);
2009 pe_to_start_now = NULL;
2010 }
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08002011 }
2012
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 /*
Mikulas Patocka515ad662009-12-10 23:52:30 +00002014 * Submit the exception against which the bio is queued last,
2015 * to give the other exceptions a head start.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 */
Mikulas Patocka515ad662009-12-10 23:52:30 +00002017 if (pe_to_start_last)
2018 start_copy(pe_to_start_last);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019
2020 return r;
2021}
2022
2023/*
2024 * Called on a write from the origin driver.
2025 */
2026static int do_origin(struct dm_dev *origin, struct bio *bio)
2027{
2028 struct origin *o;
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08002029 int r = DM_MAPIO_REMAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030
2031 down_read(&_origins_lock);
2032 o = __lookup_origin(origin->bdev);
2033 if (o)
Mikulas Patocka9eaae8f2009-12-10 23:52:28 +00002034 r = __origin_write(&o->snapshots, bio->bi_sector, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 up_read(&_origins_lock);
2036
2037 return r;
2038}
2039
2040/*
Mikulas Patocka73dfd072009-12-10 23:52:34 +00002041 * Trigger exceptions in all non-merging snapshots.
2042 *
2043 * The chunk size of the merging snapshot may be larger than the chunk
2044 * size of some other snapshot so we may need to reallocate multiple
2045 * chunks in other snapshots.
2046 *
2047 * We scan all the overlapping exceptions in the other snapshots.
2048 * Returns 1 if anything was reallocated and must be waited for,
2049 * otherwise returns 0.
2050 *
2051 * size must be a multiple of merging_snap's chunk_size.
2052 */
2053static int origin_write_extent(struct dm_snapshot *merging_snap,
2054 sector_t sector, unsigned size)
2055{
2056 int must_wait = 0;
2057 sector_t n;
2058 struct origin *o;
2059
2060 /*
Mike Snitzer542f9032012-07-27 15:08:00 +01002061 * The origin's __minimum_chunk_size() got stored in max_io_len
Mikulas Patocka73dfd072009-12-10 23:52:34 +00002062 * by snapshot_merge_resume().
2063 */
2064 down_read(&_origins_lock);
2065 o = __lookup_origin(merging_snap->origin->bdev);
Mike Snitzer542f9032012-07-27 15:08:00 +01002066 for (n = 0; n < size; n += merging_snap->ti->max_io_len)
Mikulas Patocka73dfd072009-12-10 23:52:34 +00002067 if (__origin_write(&o->snapshots, sector + n, NULL) ==
2068 DM_MAPIO_SUBMITTED)
2069 must_wait = 1;
2070 up_read(&_origins_lock);
2071
2072 return must_wait;
2073}
2074
2075/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 * Origin: maps a linear range of a device, with hooks for snapshotting.
2077 */
2078
2079/*
2080 * Construct an origin mapping: <dev_path>
2081 * The context for an origin is merely a 'struct dm_dev *'
2082 * pointing to the real device.
2083 */
2084static int origin_ctr(struct dm_target *ti, unsigned int argc, char **argv)
2085{
2086 int r;
2087 struct dm_dev *dev;
2088
2089 if (argc != 1) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07002090 ti->error = "origin: incorrect number of arguments";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 return -EINVAL;
2092 }
2093
Nikanth Karthikesan8215d6e2010-03-06 02:32:27 +00002094 r = dm_get_device(ti, argv[0], dm_table_get_mode(ti->table), &dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 if (r) {
2096 ti->error = "Cannot get target device";
2097 return r;
2098 }
2099
2100 ti->private = dev;
Mikulas Patocka494b3ee2009-06-22 10:12:25 +01002101 ti->num_flush_requests = 1;
2102
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 return 0;
2104}
2105
2106static void origin_dtr(struct dm_target *ti)
2107{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01002108 struct dm_dev *dev = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 dm_put_device(ti, dev);
2110}
2111
2112static int origin_map(struct dm_target *ti, struct bio *bio,
2113 union map_info *map_context)
2114{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01002115 struct dm_dev *dev = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 bio->bi_bdev = dev->bdev;
2117
Tejun Heod87f4c12010-09-03 11:56:19 +02002118 if (bio->bi_rw & REQ_FLUSH)
Mikulas Patocka494b3ee2009-06-22 10:12:25 +01002119 return DM_MAPIO_REMAPPED;
2120
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 /* Only tell snapshots if this is a write */
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08002122 return (bio_rw(bio) == WRITE) ? do_origin(dev, bio) : DM_MAPIO_REMAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123}
2124
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125/*
Mike Snitzer542f9032012-07-27 15:08:00 +01002126 * Set the target "max_io_len" field to the minimum of all the snapshots'
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 * chunk sizes.
2128 */
2129static void origin_resume(struct dm_target *ti)
2130{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01002131 struct dm_dev *dev = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132
Mike Snitzer542f9032012-07-27 15:08:00 +01002133 ti->max_io_len = get_origin_minimum_chunksize(dev->bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134}
2135
Alasdair G Kergon1f4e0ff2012-07-27 15:08:16 +01002136static int origin_status(struct dm_target *ti, status_type_t type,
2137 unsigned status_flags, char *result, unsigned maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01002139 struct dm_dev *dev = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140
2141 switch (type) {
2142 case STATUSTYPE_INFO:
2143 result[0] = '\0';
2144 break;
2145
2146 case STATUSTYPE_TABLE:
2147 snprintf(result, maxlen, "%s", dev->name);
2148 break;
2149 }
2150
2151 return 0;
2152}
2153
Mikulas Patockab1d55522010-08-12 04:14:02 +01002154static int origin_merge(struct dm_target *ti, struct bvec_merge_data *bvm,
2155 struct bio_vec *biovec, int max_size)
2156{
2157 struct dm_dev *dev = ti->private;
2158 struct request_queue *q = bdev_get_queue(dev->bdev);
2159
2160 if (!q->merge_bvec_fn)
2161 return max_size;
2162
2163 bvm->bi_bdev = dev->bdev;
Mikulas Patockab1d55522010-08-12 04:14:02 +01002164
2165 return min(max_size, q->merge_bvec_fn(q, bvm, biovec));
2166}
2167
Mike Snitzer8811f462009-09-04 20:40:19 +01002168static int origin_iterate_devices(struct dm_target *ti,
2169 iterate_devices_callout_fn fn, void *data)
2170{
2171 struct dm_dev *dev = ti->private;
2172
2173 return fn(ti, dev, 0, ti->len, data);
2174}
2175
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176static struct target_type origin_target = {
2177 .name = "snapshot-origin",
Mikulas Patocka42bc9542012-12-21 20:23:38 +00002178 .version = {1, 8, 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 .module = THIS_MODULE,
2180 .ctr = origin_ctr,
2181 .dtr = origin_dtr,
2182 .map = origin_map,
2183 .resume = origin_resume,
2184 .status = origin_status,
Mikulas Patockab1d55522010-08-12 04:14:02 +01002185 .merge = origin_merge,
Mike Snitzer8811f462009-09-04 20:40:19 +01002186 .iterate_devices = origin_iterate_devices,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187};
2188
2189static struct target_type snapshot_target = {
2190 .name = "snapshot",
Mikulas Patocka42bc9542012-12-21 20:23:38 +00002191 .version = {1, 11, 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 .module = THIS_MODULE,
2193 .ctr = snapshot_ctr,
2194 .dtr = snapshot_dtr,
2195 .map = snapshot_map,
Mikulas Patockacd45daf2008-07-21 12:00:32 +01002196 .end_io = snapshot_end_io,
Mike Snitzerc1f0c182009-12-10 23:52:24 +00002197 .preresume = snapshot_preresume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 .resume = snapshot_resume,
2199 .status = snapshot_status,
Mike Snitzer8811f462009-09-04 20:40:19 +01002200 .iterate_devices = snapshot_iterate_devices,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201};
2202
Mikulas Patockad698aa42009-12-10 23:52:30 +00002203static struct target_type merge_target = {
2204 .name = dm_snapshot_merge_target_name,
Mikulas Patocka42bc9542012-12-21 20:23:38 +00002205 .version = {1, 2, 0},
Mikulas Patockad698aa42009-12-10 23:52:30 +00002206 .module = THIS_MODULE,
2207 .ctr = snapshot_ctr,
2208 .dtr = snapshot_dtr,
Mikulas Patocka3452c2a2009-12-10 23:52:31 +00002209 .map = snapshot_merge_map,
Mikulas Patockad698aa42009-12-10 23:52:30 +00002210 .end_io = snapshot_end_io,
Mikulas Patocka1e03f972009-12-10 23:52:32 +00002211 .presuspend = snapshot_merge_presuspend,
Mikulas Patockad698aa42009-12-10 23:52:30 +00002212 .preresume = snapshot_preresume,
Mikulas Patocka1e03f972009-12-10 23:52:32 +00002213 .resume = snapshot_merge_resume,
Mikulas Patockad698aa42009-12-10 23:52:30 +00002214 .status = snapshot_status,
2215 .iterate_devices = snapshot_iterate_devices,
2216};
2217
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218static int __init dm_snapshot_init(void)
2219{
2220 int r;
2221
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00002222 r = dm_exception_store_init();
2223 if (r) {
2224 DMERR("Failed to initialize exception stores");
2225 return r;
2226 }
2227
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 r = dm_register_target(&snapshot_target);
Mikulas Patockad698aa42009-12-10 23:52:30 +00002229 if (r < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 DMERR("snapshot target register failed %d", r);
Jonathan Brassow034a1862009-10-16 23:18:14 +01002231 goto bad_register_snapshot_target;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 }
2233
2234 r = dm_register_target(&origin_target);
2235 if (r < 0) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07002236 DMERR("Origin target register failed %d", r);
Mikulas Patockad698aa42009-12-10 23:52:30 +00002237 goto bad_register_origin_target;
2238 }
2239
2240 r = dm_register_target(&merge_target);
2241 if (r < 0) {
2242 DMERR("Merge target register failed %d", r);
2243 goto bad_register_merge_target;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 }
2245
2246 r = init_origin_hash();
2247 if (r) {
2248 DMERR("init_origin_hash failed.");
Mikulas Patockad698aa42009-12-10 23:52:30 +00002249 goto bad_origin_hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 }
2251
Jon Brassow1d4989c2009-12-10 23:52:10 +00002252 exception_cache = KMEM_CACHE(dm_exception, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 if (!exception_cache) {
2254 DMERR("Couldn't create exception cache.");
2255 r = -ENOMEM;
Mikulas Patockad698aa42009-12-10 23:52:30 +00002256 goto bad_exception_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 }
2258
Alasdair G Kergon028867a2007-07-12 17:26:32 +01002259 pending_cache = KMEM_CACHE(dm_snap_pending_exception, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 if (!pending_cache) {
2261 DMERR("Couldn't create pending cache.");
2262 r = -ENOMEM;
Mikulas Patockad698aa42009-12-10 23:52:30 +00002263 goto bad_pending_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 }
2265
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 return 0;
2267
Mikulas Patockad698aa42009-12-10 23:52:30 +00002268bad_pending_cache:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 kmem_cache_destroy(exception_cache);
Mikulas Patockad698aa42009-12-10 23:52:30 +00002270bad_exception_cache:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 exit_origin_hash();
Mikulas Patockad698aa42009-12-10 23:52:30 +00002272bad_origin_hash:
2273 dm_unregister_target(&merge_target);
2274bad_register_merge_target:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 dm_unregister_target(&origin_target);
Mikulas Patockad698aa42009-12-10 23:52:30 +00002276bad_register_origin_target:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 dm_unregister_target(&snapshot_target);
Jonathan Brassow034a1862009-10-16 23:18:14 +01002278bad_register_snapshot_target:
2279 dm_exception_store_exit();
Mikulas Patockad698aa42009-12-10 23:52:30 +00002280
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 return r;
2282}
2283
2284static void __exit dm_snapshot_exit(void)
2285{
Mikulas Patocka10d3bd02009-01-06 03:04:58 +00002286 dm_unregister_target(&snapshot_target);
2287 dm_unregister_target(&origin_target);
Mikulas Patockad698aa42009-12-10 23:52:30 +00002288 dm_unregister_target(&merge_target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289
2290 exit_origin_hash();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 kmem_cache_destroy(pending_cache);
2292 kmem_cache_destroy(exception_cache);
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00002293
2294 dm_exception_store_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295}
2296
2297/* Module hooks */
2298module_init(dm_snapshot_init);
2299module_exit(dm_snapshot_exit);
2300
2301MODULE_DESCRIPTION(DM_NAME " snapshot target");
2302MODULE_AUTHOR("Joe Thornber");
2303MODULE_LICENSE("GPL");