blob: c434e5aab2dfc9e6a63ca7700e5ac1c1deacd025 [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 Patockadf5d2e92013-03-01 22:45:49 +0000127DECLARE_DM_KCOPYD_THROTTLE_WITH_MODULE_PARM(snapshot_copy_throttle,
128 "A percentage of time allocated for copy on write");
129
Mikulas Patockac2411042010-08-12 04:13:51 +0100130struct dm_dev *dm_snap_origin(struct dm_snapshot *s)
131{
132 return s->origin;
133}
134EXPORT_SYMBOL(dm_snap_origin);
135
Mike Snitzerfc56f6f2009-12-10 23:52:12 +0000136struct dm_dev *dm_snap_cow(struct dm_snapshot *s)
137{
138 return s->cow;
139}
140EXPORT_SYMBOL(dm_snap_cow);
141
Jonathan Brassowccc45ea2009-04-02 19:55:34 +0100142static sector_t chunk_to_sector(struct dm_exception_store *store,
143 chunk_t chunk)
144{
145 return chunk << store->chunk_shift;
146}
147
148static int bdev_equal(struct block_device *lhs, struct block_device *rhs)
149{
150 /*
151 * There is only ever one instance of a particular block
152 * device so we can compare pointers safely.
153 */
154 return lhs == rhs;
155}
156
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100157struct dm_snap_pending_exception {
Jon Brassow1d4989c2009-12-10 23:52:10 +0000158 struct dm_exception e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
160 /*
161 * Origin buffers waiting for this to complete are held
162 * in a bio list
163 */
164 struct bio_list origin_bios;
165 struct bio_list snapshot_bios;
166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 /* Pointer back to snapshot context */
168 struct dm_snapshot *snap;
169
170 /*
171 * 1 indicates the exception has already been sent to
172 * kcopyd.
173 */
174 int started;
Mikulas Patockaa6e50b42011-08-02 12:32:04 +0100175
176 /*
177 * For writing a complete chunk, bypassing the copy.
178 */
179 struct bio *full_bio;
180 bio_end_io_t *full_bio_end_io;
181 void *full_bio_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182};
183
184/*
185 * Hash table mapping origin volumes to lists of snapshots and
186 * a lock to protect it
187 */
Christoph Lametere18b8902006-12-06 20:33:20 -0800188static struct kmem_cache *exception_cache;
189static struct kmem_cache *pending_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100191struct dm_snap_tracked_chunk {
192 struct hlist_node node;
193 chunk_t chunk;
194};
195
Mikulas Patockaee180262012-12-21 20:23:41 +0000196static void init_tracked_chunk(struct bio *bio)
197{
198 struct dm_snap_tracked_chunk *c = dm_per_bio_data(bio, sizeof(struct dm_snap_tracked_chunk));
199 INIT_HLIST_NODE(&c->node);
200}
201
202static bool is_bio_tracked(struct bio *bio)
203{
204 struct dm_snap_tracked_chunk *c = dm_per_bio_data(bio, sizeof(struct dm_snap_tracked_chunk));
205 return !hlist_unhashed(&c->node);
206}
207
208static void track_chunk(struct dm_snapshot *s, struct bio *bio, chunk_t chunk)
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100209{
Mikulas Patocka42bc9542012-12-21 20:23:38 +0000210 struct dm_snap_tracked_chunk *c = dm_per_bio_data(bio, sizeof(struct dm_snap_tracked_chunk));
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100211
212 c->chunk = chunk;
213
Mikulas Patocka9aa0c0e2012-12-21 20:23:33 +0000214 spin_lock_irq(&s->tracked_chunk_lock);
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100215 hlist_add_head(&c->node,
216 &s->tracked_chunk_hash[DM_TRACKED_CHUNK_HASH(chunk)]);
Mikulas Patocka9aa0c0e2012-12-21 20:23:33 +0000217 spin_unlock_irq(&s->tracked_chunk_lock);
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100218}
219
Mikulas Patockaee180262012-12-21 20:23:41 +0000220static void stop_tracking_chunk(struct dm_snapshot *s, struct bio *bio)
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100221{
Mikulas Patockaee180262012-12-21 20:23:41 +0000222 struct dm_snap_tracked_chunk *c = dm_per_bio_data(bio, sizeof(struct dm_snap_tracked_chunk));
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100223 unsigned long flags;
224
225 spin_lock_irqsave(&s->tracked_chunk_lock, flags);
226 hlist_del(&c->node);
227 spin_unlock_irqrestore(&s->tracked_chunk_lock, flags);
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100228}
229
Mikulas Patockaa8d41b52008-07-21 12:00:34 +0100230static int __chunk_is_tracked(struct dm_snapshot *s, chunk_t chunk)
231{
232 struct dm_snap_tracked_chunk *c;
Mikulas Patockaa8d41b52008-07-21 12:00:34 +0100233 int found = 0;
234
235 spin_lock_irq(&s->tracked_chunk_lock);
236
Sasha Levinb67bfe02013-02-27 17:06:00 -0800237 hlist_for_each_entry(c,
Mikulas Patockaa8d41b52008-07-21 12:00:34 +0100238 &s->tracked_chunk_hash[DM_TRACKED_CHUNK_HASH(chunk)], node) {
239 if (c->chunk == chunk) {
240 found = 1;
241 break;
242 }
243 }
244
245 spin_unlock_irq(&s->tracked_chunk_lock);
246
247 return found;
248}
249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250/*
Mike Snitzer615d1eb2009-12-10 23:52:29 +0000251 * This conflicting I/O is extremely improbable in the caller,
252 * so msleep(1) is sufficient and there is no need for a wait queue.
253 */
254static void __check_for_conflicting_io(struct dm_snapshot *s, chunk_t chunk)
255{
256 while (__chunk_is_tracked(s, chunk))
257 msleep(1);
258}
259
260/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 * One of these per registered origin, held in the snapshot_origins hash
262 */
263struct origin {
264 /* The origin device */
265 struct block_device *bdev;
266
267 struct list_head hash_list;
268
269 /* List of snapshots for this origin */
270 struct list_head snapshots;
271};
272
273/*
274 * Size of the hash table for origin volumes. If we make this
275 * the size of the minors list then it should be nearly perfect
276 */
277#define ORIGIN_HASH_SIZE 256
278#define ORIGIN_MASK 0xFF
279static struct list_head *_origins;
280static struct rw_semaphore _origins_lock;
281
Mikulas Patocka73dfd072009-12-10 23:52:34 +0000282static DECLARE_WAIT_QUEUE_HEAD(_pending_exceptions_done);
283static DEFINE_SPINLOCK(_pending_exceptions_done_spinlock);
284static uint64_t _pending_exceptions_done_count;
285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286static int init_origin_hash(void)
287{
288 int i;
289
290 _origins = kmalloc(ORIGIN_HASH_SIZE * sizeof(struct list_head),
291 GFP_KERNEL);
292 if (!_origins) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700293 DMERR("unable to allocate memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 return -ENOMEM;
295 }
296
297 for (i = 0; i < ORIGIN_HASH_SIZE; i++)
298 INIT_LIST_HEAD(_origins + i);
299 init_rwsem(&_origins_lock);
300
301 return 0;
302}
303
304static void exit_origin_hash(void)
305{
306 kfree(_origins);
307}
308
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100309static unsigned origin_hash(struct block_device *bdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
311 return bdev->bd_dev & ORIGIN_MASK;
312}
313
314static struct origin *__lookup_origin(struct block_device *origin)
315{
316 struct list_head *ol;
317 struct origin *o;
318
319 ol = &_origins[origin_hash(origin)];
320 list_for_each_entry (o, ol, hash_list)
321 if (bdev_equal(o->bdev, origin))
322 return o;
323
324 return NULL;
325}
326
327static void __insert_origin(struct origin *o)
328{
329 struct list_head *sl = &_origins[origin_hash(o->bdev)];
330 list_add_tail(&o->hash_list, sl);
331}
332
333/*
Mike Snitzerc1f0c182009-12-10 23:52:24 +0000334 * _origins_lock must be held when calling this function.
335 * Returns number of snapshots registered using the supplied cow device, plus:
336 * snap_src - a snapshot suitable for use as a source of exception handover
337 * snap_dest - a snapshot capable of receiving exception handover.
Mikulas Patocka9d3b15c2009-12-10 23:52:32 +0000338 * snap_merge - an existing snapshot-merge target linked to the same origin.
339 * There can be at most one snapshot-merge target. The parameter is optional.
Mike Snitzerc1f0c182009-12-10 23:52:24 +0000340 *
Mikulas Patocka9d3b15c2009-12-10 23:52:32 +0000341 * Possible return values and states of snap_src and snap_dest.
Mike Snitzerc1f0c182009-12-10 23:52:24 +0000342 * 0: NULL, NULL - first new snapshot
343 * 1: snap_src, NULL - normal snapshot
344 * 2: snap_src, snap_dest - waiting for handover
345 * 2: snap_src, NULL - handed over, waiting for old to be deleted
346 * 1: NULL, snap_dest - source got destroyed without handover
347 */
348static int __find_snapshots_sharing_cow(struct dm_snapshot *snap,
349 struct dm_snapshot **snap_src,
Mikulas Patocka9d3b15c2009-12-10 23:52:32 +0000350 struct dm_snapshot **snap_dest,
351 struct dm_snapshot **snap_merge)
Mike Snitzerc1f0c182009-12-10 23:52:24 +0000352{
353 struct dm_snapshot *s;
354 struct origin *o;
355 int count = 0;
356 int active;
357
358 o = __lookup_origin(snap->origin->bdev);
359 if (!o)
360 goto out;
361
362 list_for_each_entry(s, &o->snapshots, list) {
Mikulas Patocka9d3b15c2009-12-10 23:52:32 +0000363 if (dm_target_is_snapshot_merge(s->ti) && snap_merge)
364 *snap_merge = s;
Mike Snitzerc1f0c182009-12-10 23:52:24 +0000365 if (!bdev_equal(s->cow->bdev, snap->cow->bdev))
366 continue;
367
368 down_read(&s->lock);
369 active = s->active;
370 up_read(&s->lock);
371
372 if (active) {
373 if (snap_src)
374 *snap_src = s;
375 } else if (snap_dest)
376 *snap_dest = s;
377
378 count++;
379 }
380
381out:
382 return count;
383}
384
385/*
386 * On success, returns 1 if this snapshot is a handover destination,
387 * otherwise returns 0.
388 */
389static int __validate_exception_handover(struct dm_snapshot *snap)
390{
391 struct dm_snapshot *snap_src = NULL, *snap_dest = NULL;
Mikulas Patocka9d3b15c2009-12-10 23:52:32 +0000392 struct dm_snapshot *snap_merge = NULL;
Mike Snitzerc1f0c182009-12-10 23:52:24 +0000393
394 /* Does snapshot need exceptions handed over to it? */
Mikulas Patocka9d3b15c2009-12-10 23:52:32 +0000395 if ((__find_snapshots_sharing_cow(snap, &snap_src, &snap_dest,
396 &snap_merge) == 2) ||
Mike Snitzerc1f0c182009-12-10 23:52:24 +0000397 snap_dest) {
398 snap->ti->error = "Snapshot cow pairing for exception "
399 "table handover failed";
400 return -EINVAL;
401 }
402
403 /*
404 * If no snap_src was found, snap cannot become a handover
405 * destination.
406 */
407 if (!snap_src)
408 return 0;
409
Mikulas Patocka9d3b15c2009-12-10 23:52:32 +0000410 /*
411 * Non-snapshot-merge handover?
412 */
413 if (!dm_target_is_snapshot_merge(snap->ti))
414 return 1;
415
416 /*
417 * Do not allow more than one merging snapshot.
418 */
419 if (snap_merge) {
420 snap->ti->error = "A snapshot is already merging.";
421 return -EINVAL;
422 }
423
Mikulas Patocka1e03f972009-12-10 23:52:32 +0000424 if (!snap_src->store->type->prepare_merge ||
425 !snap_src->store->type->commit_merge) {
426 snap->ti->error = "Snapshot exception store does not "
427 "support snapshot-merge.";
428 return -EINVAL;
429 }
430
Mike Snitzerc1f0c182009-12-10 23:52:24 +0000431 return 1;
432}
433
434static void __insert_snapshot(struct origin *o, struct dm_snapshot *s)
435{
436 struct dm_snapshot *l;
437
438 /* Sort the list according to chunk size, largest-first smallest-last */
439 list_for_each_entry(l, &o->snapshots, list)
440 if (l->store->chunk_size < s->store->chunk_size)
441 break;
442 list_add_tail(&s->list, &l->list);
443}
444
445/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 * Make a note of the snapshot and its origin so we can look it
447 * up when the origin has a write on it.
Mike Snitzerc1f0c182009-12-10 23:52:24 +0000448 *
449 * Also validate snapshot exception store handovers.
450 * On success, returns 1 if this registration is a handover destination,
451 * otherwise returns 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 */
453static int register_snapshot(struct dm_snapshot *snap)
454{
Mike Snitzerc1f0c182009-12-10 23:52:24 +0000455 struct origin *o, *new_o = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 struct block_device *bdev = snap->origin->bdev;
Mike Snitzerc1f0c182009-12-10 23:52:24 +0000457 int r = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
Mikulas Patocka60c856c82008-10-30 13:33:12 +0000459 new_o = kmalloc(sizeof(*new_o), GFP_KERNEL);
460 if (!new_o)
461 return -ENOMEM;
462
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 down_write(&_origins_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Mike Snitzerc1f0c182009-12-10 23:52:24 +0000465 r = __validate_exception_handover(snap);
466 if (r < 0) {
467 kfree(new_o);
468 goto out;
469 }
470
471 o = __lookup_origin(bdev);
Mikulas Patocka60c856c82008-10-30 13:33:12 +0000472 if (o)
473 kfree(new_o);
474 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 /* New origin */
Mikulas Patocka60c856c82008-10-30 13:33:12 +0000476 o = new_o;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
478 /* Initialise the struct */
479 INIT_LIST_HEAD(&o->snapshots);
480 o->bdev = bdev;
481
482 __insert_origin(o);
483 }
484
Mike Snitzerc1f0c182009-12-10 23:52:24 +0000485 __insert_snapshot(o, snap);
486
487out:
488 up_write(&_origins_lock);
489
490 return r;
491}
492
493/*
494 * Move snapshot to correct place in list according to chunk size.
495 */
496static void reregister_snapshot(struct dm_snapshot *s)
497{
498 struct block_device *bdev = s->origin->bdev;
499
500 down_write(&_origins_lock);
501
502 list_del(&s->list);
503 __insert_snapshot(__lookup_origin(bdev), s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505 up_write(&_origins_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506}
507
508static void unregister_snapshot(struct dm_snapshot *s)
509{
510 struct origin *o;
511
512 down_write(&_origins_lock);
513 o = __lookup_origin(s->origin->bdev);
514
515 list_del(&s->list);
Mike Snitzerc1f0c182009-12-10 23:52:24 +0000516 if (o && list_empty(&o->snapshots)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 list_del(&o->hash_list);
518 kfree(o);
519 }
520
521 up_write(&_origins_lock);
522}
523
524/*
525 * Implementation of the exception hash tables.
Milan Brozd74f81f2008-02-08 02:11:27 +0000526 * The lowest hash_shift bits of the chunk number are ignored, allowing
527 * some consecutive chunks to be grouped together.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 */
Jon Brassow3510cb92009-12-10 23:52:11 +0000529static int dm_exception_table_init(struct dm_exception_table *et,
530 uint32_t size, unsigned hash_shift)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531{
532 unsigned int i;
533
Milan Brozd74f81f2008-02-08 02:11:27 +0000534 et->hash_shift = hash_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 et->hash_mask = size - 1;
536 et->table = dm_vcalloc(size, sizeof(struct list_head));
537 if (!et->table)
538 return -ENOMEM;
539
540 for (i = 0; i < size; i++)
541 INIT_LIST_HEAD(et->table + i);
542
543 return 0;
544}
545
Jon Brassow3510cb92009-12-10 23:52:11 +0000546static void dm_exception_table_exit(struct dm_exception_table *et,
547 struct kmem_cache *mem)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548{
549 struct list_head *slot;
Jon Brassow1d4989c2009-12-10 23:52:10 +0000550 struct dm_exception *ex, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 int i, size;
552
553 size = et->hash_mask + 1;
554 for (i = 0; i < size; i++) {
555 slot = et->table + i;
556
557 list_for_each_entry_safe (ex, next, slot, hash_list)
558 kmem_cache_free(mem, ex);
559 }
560
561 vfree(et->table);
562}
563
Jon Brassow191437a2009-12-10 23:52:10 +0000564static uint32_t exception_hash(struct dm_exception_table *et, chunk_t chunk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565{
Milan Brozd74f81f2008-02-08 02:11:27 +0000566 return (chunk >> et->hash_shift) & et->hash_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567}
568
Jon Brassow3510cb92009-12-10 23:52:11 +0000569static void dm_remove_exception(struct dm_exception *e)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570{
571 list_del(&e->hash_list);
572}
573
574/*
575 * Return the exception data for a sector, or NULL if not
576 * remapped.
577 */
Jon Brassow3510cb92009-12-10 23:52:11 +0000578static struct dm_exception *dm_lookup_exception(struct dm_exception_table *et,
579 chunk_t chunk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580{
581 struct list_head *slot;
Jon Brassow1d4989c2009-12-10 23:52:10 +0000582 struct dm_exception *e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
584 slot = &et->table[exception_hash(et, chunk)];
585 list_for_each_entry (e, slot, hash_list)
Milan Brozd74f81f2008-02-08 02:11:27 +0000586 if (chunk >= e->old_chunk &&
587 chunk <= e->old_chunk + dm_consecutive_chunk_count(e))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 return e;
589
590 return NULL;
591}
592
Jon Brassow3510cb92009-12-10 23:52:11 +0000593static struct dm_exception *alloc_completed_exception(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594{
Jon Brassow1d4989c2009-12-10 23:52:10 +0000595 struct dm_exception *e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
597 e = kmem_cache_alloc(exception_cache, GFP_NOIO);
598 if (!e)
599 e = kmem_cache_alloc(exception_cache, GFP_ATOMIC);
600
601 return e;
602}
603
Jon Brassow3510cb92009-12-10 23:52:11 +0000604static void free_completed_exception(struct dm_exception *e)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605{
606 kmem_cache_free(exception_cache, e);
607}
608
Mikulas Patocka92e86812008-07-21 12:00:35 +0100609static struct dm_snap_pending_exception *alloc_pending_exception(struct dm_snapshot *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610{
Mikulas Patocka92e86812008-07-21 12:00:35 +0100611 struct dm_snap_pending_exception *pe = mempool_alloc(s->pending_pool,
612 GFP_NOIO);
613
Mikulas Patocka879129d22008-10-30 13:33:16 +0000614 atomic_inc(&s->pending_exceptions_count);
Mikulas Patocka92e86812008-07-21 12:00:35 +0100615 pe->snap = s;
616
617 return pe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618}
619
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100620static void free_pending_exception(struct dm_snap_pending_exception *pe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621{
Mikulas Patocka879129d22008-10-30 13:33:16 +0000622 struct dm_snapshot *s = pe->snap;
623
624 mempool_free(pe, s->pending_pool);
625 smp_mb__before_atomic_dec();
626 atomic_dec(&s->pending_exceptions_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627}
628
Jon Brassow3510cb92009-12-10 23:52:11 +0000629static void dm_insert_exception(struct dm_exception_table *eh,
630 struct dm_exception *new_e)
Milan Brozd74f81f2008-02-08 02:11:27 +0000631{
Milan Brozd74f81f2008-02-08 02:11:27 +0000632 struct list_head *l;
Jon Brassow1d4989c2009-12-10 23:52:10 +0000633 struct dm_exception *e = NULL;
Milan Brozd74f81f2008-02-08 02:11:27 +0000634
635 l = &eh->table[exception_hash(eh, new_e->old_chunk)];
636
637 /* Add immediately if this table doesn't support consecutive chunks */
638 if (!eh->hash_shift)
639 goto out;
640
641 /* List is ordered by old_chunk */
642 list_for_each_entry_reverse(e, l, hash_list) {
643 /* Insert after an existing chunk? */
644 if (new_e->old_chunk == (e->old_chunk +
645 dm_consecutive_chunk_count(e) + 1) &&
646 new_e->new_chunk == (dm_chunk_number(e->new_chunk) +
647 dm_consecutive_chunk_count(e) + 1)) {
648 dm_consecutive_chunk_count_inc(e);
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 /* Insert before an existing chunk? */
654 if (new_e->old_chunk == (e->old_chunk - 1) &&
655 new_e->new_chunk == (dm_chunk_number(e->new_chunk) - 1)) {
656 dm_consecutive_chunk_count_inc(e);
657 e->old_chunk--;
658 e->new_chunk--;
Jon Brassow3510cb92009-12-10 23:52:11 +0000659 free_completed_exception(new_e);
Milan Brozd74f81f2008-02-08 02:11:27 +0000660 return;
661 }
662
663 if (new_e->old_chunk > e->old_chunk)
664 break;
665 }
666
667out:
668 list_add(&new_e->hash_list, e ? &e->hash_list : l);
669}
670
Jonathan Brassowa159c1a2009-01-06 03:05:19 +0000671/*
672 * Callback used by the exception stores to load exceptions when
673 * initialising.
674 */
675static int dm_add_exception(void *context, chunk_t old, chunk_t new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676{
Jonathan Brassowa159c1a2009-01-06 03:05:19 +0000677 struct dm_snapshot *s = context;
Jon Brassow1d4989c2009-12-10 23:52:10 +0000678 struct dm_exception *e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Jon Brassow3510cb92009-12-10 23:52:11 +0000680 e = alloc_completed_exception();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 if (!e)
682 return -ENOMEM;
683
684 e->old_chunk = old;
Milan Brozd74f81f2008-02-08 02:11:27 +0000685
686 /* Consecutive_count is implicitly initialised to zero */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 e->new_chunk = new;
Milan Brozd74f81f2008-02-08 02:11:27 +0000688
Jon Brassow3510cb92009-12-10 23:52:11 +0000689 dm_insert_exception(&s->complete, e);
Milan Brozd74f81f2008-02-08 02:11:27 +0000690
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 return 0;
692}
693
Mikulas Patocka7e201b32009-12-10 23:52:08 +0000694/*
695 * Return a minimum chunk size of all snapshots that have the specified origin.
696 * Return zero if the origin has no snapshots.
697 */
Mike Snitzer542f9032012-07-27 15:08:00 +0100698static uint32_t __minimum_chunk_size(struct origin *o)
Mikulas Patocka7e201b32009-12-10 23:52:08 +0000699{
700 struct dm_snapshot *snap;
701 unsigned chunk_size = 0;
702
703 if (o)
704 list_for_each_entry(snap, &o->snapshots, list)
705 chunk_size = min_not_zero(chunk_size,
706 snap->store->chunk_size);
707
Mike Snitzer542f9032012-07-27 15:08:00 +0100708 return (uint32_t) chunk_size;
Mikulas Patocka7e201b32009-12-10 23:52:08 +0000709}
710
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711/*
712 * Hard coded magic.
713 */
714static int calc_max_buckets(void)
715{
716 /* use a fixed size of 2MB */
717 unsigned long mem = 2 * 1024 * 1024;
718 mem /= sizeof(struct list_head);
719
720 return mem;
721}
722
723/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 * Allocate room for a suitable hash table.
725 */
Jonathan Brassowfee19982009-04-02 19:55:34 +0100726static int init_hash_tables(struct dm_snapshot *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727{
728 sector_t hash_size, cow_dev_size, origin_dev_size, max_buckets;
729
730 /*
731 * Calculate based on the size of the original volume or
732 * the COW volume...
733 */
Mike Snitzerfc56f6f2009-12-10 23:52:12 +0000734 cow_dev_size = get_dev_size(s->cow->bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 origin_dev_size = get_dev_size(s->origin->bdev);
736 max_buckets = calc_max_buckets();
737
Jonathan Brassowfee19982009-04-02 19:55:34 +0100738 hash_size = min(origin_dev_size, cow_dev_size) >> s->store->chunk_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 hash_size = min(hash_size, max_buckets);
740
Mikulas Patocka8e87b9b2009-12-10 23:51:54 +0000741 if (hash_size < 64)
742 hash_size = 64;
Robert P. J. Day8defd832008-02-08 02:10:06 +0000743 hash_size = rounddown_pow_of_two(hash_size);
Jon Brassow3510cb92009-12-10 23:52:11 +0000744 if (dm_exception_table_init(&s->complete, hash_size,
745 DM_CHUNK_CONSECUTIVE_BITS))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 return -ENOMEM;
747
748 /*
749 * Allocate hash table for in-flight exceptions
750 * Make this smaller than the real hash table
751 */
752 hash_size >>= 3;
753 if (hash_size < 64)
754 hash_size = 64;
755
Jon Brassow3510cb92009-12-10 23:52:11 +0000756 if (dm_exception_table_init(&s->pending, hash_size, 0)) {
757 dm_exception_table_exit(&s->complete, exception_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 return -ENOMEM;
759 }
760
761 return 0;
762}
763
Mikulas Patocka1e03f972009-12-10 23:52:32 +0000764static void merge_shutdown(struct dm_snapshot *s)
765{
766 clear_bit_unlock(RUNNING_MERGE, &s->state_bits);
767 smp_mb__after_clear_bit();
768 wake_up_bit(&s->state_bits, RUNNING_MERGE);
769}
770
Mikulas Patocka9fe862542009-12-10 23:52:33 +0000771static struct bio *__release_queued_bios_after_merge(struct dm_snapshot *s)
772{
773 s->first_merging_chunk = 0;
774 s->num_merging_chunks = 0;
775
776 return bio_list_get(&s->bios_queued_during_merge);
777}
778
Mikulas Patocka1e03f972009-12-10 23:52:32 +0000779/*
780 * Remove one chunk from the index of completed exceptions.
781 */
782static int __remove_single_exception_chunk(struct dm_snapshot *s,
783 chunk_t old_chunk)
784{
785 struct dm_exception *e;
786
Mikulas Patocka1e03f972009-12-10 23:52:32 +0000787 e = dm_lookup_exception(&s->complete, old_chunk);
788 if (!e) {
789 DMERR("Corruption detected: exception for block %llu is "
790 "on disk but not in memory",
791 (unsigned long long)old_chunk);
792 return -EINVAL;
793 }
794
795 /*
796 * If this is the only chunk using this exception, remove exception.
797 */
798 if (!dm_consecutive_chunk_count(e)) {
799 dm_remove_exception(e);
800 free_completed_exception(e);
801 return 0;
802 }
803
804 /*
805 * The chunk may be either at the beginning or the end of a
806 * group of consecutive chunks - never in the middle. We are
807 * removing chunks in the opposite order to that in which they
808 * were added, so this should always be true.
809 * Decrement the consecutive chunk counter and adjust the
810 * starting point if necessary.
811 */
812 if (old_chunk == e->old_chunk) {
813 e->old_chunk++;
814 e->new_chunk++;
815 } else if (old_chunk != e->old_chunk +
816 dm_consecutive_chunk_count(e)) {
817 DMERR("Attempt to merge block %llu from the "
818 "middle of a chunk range [%llu - %llu]",
819 (unsigned long long)old_chunk,
820 (unsigned long long)e->old_chunk,
821 (unsigned long long)
822 e->old_chunk + dm_consecutive_chunk_count(e));
823 return -EINVAL;
824 }
825
826 dm_consecutive_chunk_count_dec(e);
827
828 return 0;
829}
830
Mikulas Patocka9fe862542009-12-10 23:52:33 +0000831static void flush_bios(struct bio *bio);
832
833static int remove_single_exception_chunk(struct dm_snapshot *s)
Mikulas Patocka1e03f972009-12-10 23:52:32 +0000834{
Mikulas Patocka9fe862542009-12-10 23:52:33 +0000835 struct bio *b = NULL;
836 int r;
837 chunk_t old_chunk = s->first_merging_chunk + s->num_merging_chunks - 1;
Mikulas Patocka1e03f972009-12-10 23:52:32 +0000838
839 down_write(&s->lock);
Mikulas Patocka9fe862542009-12-10 23:52:33 +0000840
841 /*
842 * Process chunks (and associated exceptions) in reverse order
843 * so that dm_consecutive_chunk_count_dec() accounting works.
844 */
845 do {
846 r = __remove_single_exception_chunk(s, old_chunk);
847 if (r)
848 goto out;
849 } while (old_chunk-- > s->first_merging_chunk);
850
851 b = __release_queued_bios_after_merge(s);
852
853out:
Mikulas Patocka1e03f972009-12-10 23:52:32 +0000854 up_write(&s->lock);
Mikulas Patocka9fe862542009-12-10 23:52:33 +0000855 if (b)
856 flush_bios(b);
Mikulas Patocka1e03f972009-12-10 23:52:32 +0000857
858 return r;
859}
860
Mikulas Patocka73dfd072009-12-10 23:52:34 +0000861static int origin_write_extent(struct dm_snapshot *merging_snap,
862 sector_t sector, unsigned chunk_size);
863
Mikulas Patocka1e03f972009-12-10 23:52:32 +0000864static void merge_callback(int read_err, unsigned long write_err,
865 void *context);
866
Mikulas Patocka73dfd072009-12-10 23:52:34 +0000867static uint64_t read_pending_exceptions_done_count(void)
868{
869 uint64_t pending_exceptions_done;
870
871 spin_lock(&_pending_exceptions_done_spinlock);
872 pending_exceptions_done = _pending_exceptions_done_count;
873 spin_unlock(&_pending_exceptions_done_spinlock);
874
875 return pending_exceptions_done;
876}
877
878static void increment_pending_exceptions_done_count(void)
879{
880 spin_lock(&_pending_exceptions_done_spinlock);
881 _pending_exceptions_done_count++;
882 spin_unlock(&_pending_exceptions_done_spinlock);
883
884 wake_up_all(&_pending_exceptions_done);
885}
886
Mikulas Patocka1e03f972009-12-10 23:52:32 +0000887static void snapshot_merge_next_chunks(struct dm_snapshot *s)
888{
Mike Snitzer8a2d5282009-12-10 23:52:34 +0000889 int i, linear_chunks;
Mikulas Patocka1e03f972009-12-10 23:52:32 +0000890 chunk_t old_chunk, new_chunk;
891 struct dm_io_region src, dest;
Mike Snitzer8a2d5282009-12-10 23:52:34 +0000892 sector_t io_size;
Mikulas Patocka73dfd072009-12-10 23:52:34 +0000893 uint64_t previous_count;
Mikulas Patocka1e03f972009-12-10 23:52:32 +0000894
895 BUG_ON(!test_bit(RUNNING_MERGE, &s->state_bits));
896 if (unlikely(test_bit(SHUTDOWN_MERGE, &s->state_bits)))
897 goto shut;
898
899 /*
900 * valid flag never changes during merge, so no lock required.
901 */
902 if (!s->valid) {
903 DMERR("Snapshot is invalid: can't merge");
904 goto shut;
905 }
906
Mike Snitzer8a2d5282009-12-10 23:52:34 +0000907 linear_chunks = s->store->type->prepare_merge(s->store, &old_chunk,
908 &new_chunk);
909 if (linear_chunks <= 0) {
Mike Snitzerd8ddb1c2009-12-10 23:52:35 +0000910 if (linear_chunks < 0) {
Mikulas Patocka1e03f972009-12-10 23:52:32 +0000911 DMERR("Read error in exception store: "
912 "shutting down merge");
Mike Snitzerd8ddb1c2009-12-10 23:52:35 +0000913 down_write(&s->lock);
914 s->merge_failed = 1;
915 up_write(&s->lock);
916 }
Mikulas Patocka1e03f972009-12-10 23:52:32 +0000917 goto shut;
918 }
919
Mike Snitzer8a2d5282009-12-10 23:52:34 +0000920 /* Adjust old_chunk and new_chunk to reflect start of linear region */
921 old_chunk = old_chunk + 1 - linear_chunks;
922 new_chunk = new_chunk + 1 - linear_chunks;
923
924 /*
925 * Use one (potentially large) I/O to copy all 'linear_chunks'
926 * from the exception store to the origin
927 */
928 io_size = linear_chunks * s->store->chunk_size;
Mikulas Patocka1e03f972009-12-10 23:52:32 +0000929
Mikulas Patocka1e03f972009-12-10 23:52:32 +0000930 dest.bdev = s->origin->bdev;
931 dest.sector = chunk_to_sector(s->store, old_chunk);
Mike Snitzer8a2d5282009-12-10 23:52:34 +0000932 dest.count = min(io_size, get_dev_size(dest.bdev) - dest.sector);
Mikulas Patocka1e03f972009-12-10 23:52:32 +0000933
934 src.bdev = s->cow->bdev;
935 src.sector = chunk_to_sector(s->store, new_chunk);
936 src.count = dest.count;
937
Mikulas Patocka73dfd072009-12-10 23:52:34 +0000938 /*
939 * Reallocate any exceptions needed in other snapshots then
940 * wait for the pending exceptions to complete.
941 * Each time any pending exception (globally on the system)
942 * completes we are woken and repeat the process to find out
943 * if we can proceed. While this may not seem a particularly
944 * efficient algorithm, it is not expected to have any
945 * significant impact on performance.
946 */
947 previous_count = read_pending_exceptions_done_count();
Mike Snitzer8a2d5282009-12-10 23:52:34 +0000948 while (origin_write_extent(s, dest.sector, io_size)) {
Mikulas Patocka73dfd072009-12-10 23:52:34 +0000949 wait_event(_pending_exceptions_done,
950 (read_pending_exceptions_done_count() !=
951 previous_count));
952 /* Retry after the wait, until all exceptions are done. */
953 previous_count = read_pending_exceptions_done_count();
954 }
955
Mikulas Patocka9fe862542009-12-10 23:52:33 +0000956 down_write(&s->lock);
957 s->first_merging_chunk = old_chunk;
Mike Snitzer8a2d5282009-12-10 23:52:34 +0000958 s->num_merging_chunks = linear_chunks;
Mikulas Patocka9fe862542009-12-10 23:52:33 +0000959 up_write(&s->lock);
960
Mike Snitzer8a2d5282009-12-10 23:52:34 +0000961 /* Wait until writes to all 'linear_chunks' drain */
962 for (i = 0; i < linear_chunks; i++)
963 __check_for_conflicting_io(s, old_chunk + i);
Mikulas Patocka9fe862542009-12-10 23:52:33 +0000964
Mikulas Patocka1e03f972009-12-10 23:52:32 +0000965 dm_kcopyd_copy(s->kcopyd_client, &src, 1, &dest, 0, merge_callback, s);
966 return;
967
968shut:
969 merge_shutdown(s);
970}
971
Mikulas Patocka9fe862542009-12-10 23:52:33 +0000972static void error_bios(struct bio *bio);
973
Mikulas Patocka1e03f972009-12-10 23:52:32 +0000974static void merge_callback(int read_err, unsigned long write_err, void *context)
975{
976 struct dm_snapshot *s = context;
Mikulas Patocka9fe862542009-12-10 23:52:33 +0000977 struct bio *b = NULL;
Mikulas Patocka1e03f972009-12-10 23:52:32 +0000978
979 if (read_err || write_err) {
980 if (read_err)
981 DMERR("Read error: shutting down merge.");
982 else
983 DMERR("Write error: shutting down merge.");
984 goto shut;
985 }
986
Mikulas Patocka9fe862542009-12-10 23:52:33 +0000987 if (s->store->type->commit_merge(s->store,
988 s->num_merging_chunks) < 0) {
Mikulas Patocka1e03f972009-12-10 23:52:32 +0000989 DMERR("Write error in exception store: shutting down merge");
990 goto shut;
991 }
992
Mikulas Patocka9fe862542009-12-10 23:52:33 +0000993 if (remove_single_exception_chunk(s) < 0)
994 goto shut;
995
Mikulas Patocka1e03f972009-12-10 23:52:32 +0000996 snapshot_merge_next_chunks(s);
997
998 return;
999
1000shut:
Mikulas Patocka9fe862542009-12-10 23:52:33 +00001001 down_write(&s->lock);
Mike Snitzerd8ddb1c2009-12-10 23:52:35 +00001002 s->merge_failed = 1;
Mikulas Patocka9fe862542009-12-10 23:52:33 +00001003 b = __release_queued_bios_after_merge(s);
1004 up_write(&s->lock);
1005 error_bios(b);
1006
Mikulas Patocka1e03f972009-12-10 23:52:32 +00001007 merge_shutdown(s);
1008}
1009
1010static void start_merge(struct dm_snapshot *s)
1011{
1012 if (!test_and_set_bit(RUNNING_MERGE, &s->state_bits))
1013 snapshot_merge_next_chunks(s);
1014}
1015
1016static int wait_schedule(void *ptr)
1017{
1018 schedule();
1019
1020 return 0;
1021}
1022
1023/*
1024 * Stop the merging process and wait until it finishes.
1025 */
1026static void stop_merge(struct dm_snapshot *s)
1027{
1028 set_bit(SHUTDOWN_MERGE, &s->state_bits);
1029 wait_on_bit(&s->state_bits, RUNNING_MERGE, wait_schedule,
1030 TASK_UNINTERRUPTIBLE);
1031 clear_bit(SHUTDOWN_MERGE, &s->state_bits);
1032}
1033
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 * Construct a snapshot mapping: <origin_dev> <COW-dev> <p/n> <chunk-size>
1036 */
1037static int snapshot_ctr(struct dm_target *ti, unsigned int argc, char **argv)
1038{
1039 struct dm_snapshot *s;
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001040 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 int r = -EINVAL;
Mike Snitzerfc56f6f2009-12-10 23:52:12 +00001042 char *origin_path, *cow_path;
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001043 unsigned args_used, num_flush_bios = 1;
Mike Snitzer10b81062009-12-10 23:52:31 +00001044 fmode_t origin_mode = FMODE_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -07001046 if (argc != 4) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001047 ti->error = "requires exactly 4 arguments";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 r = -EINVAL;
Mike Snitzerfc56f6f2009-12-10 23:52:12 +00001049 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 }
1051
Mike Snitzer10b81062009-12-10 23:52:31 +00001052 if (dm_target_is_snapshot_merge(ti)) {
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001053 num_flush_bios = 2;
Mike Snitzer10b81062009-12-10 23:52:31 +00001054 origin_mode = FMODE_WRITE;
1055 }
1056
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 s = kmalloc(sizeof(*s), GFP_KERNEL);
Jonathan Brassowfee19982009-04-02 19:55:34 +01001058 if (!s) {
Jonathan Brassowa2d2b032011-08-02 12:32:03 +01001059 ti->error = "Cannot allocate private snapshot structure";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 r = -ENOMEM;
Mike Snitzerfc56f6f2009-12-10 23:52:12 +00001061 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 }
1063
Mikulas Patockac2411042010-08-12 04:13:51 +01001064 origin_path = argv[0];
1065 argv++;
1066 argc--;
1067
1068 r = dm_get_device(ti, origin_path, origin_mode, &s->origin);
1069 if (r) {
1070 ti->error = "Cannot get origin device";
1071 goto bad_origin;
1072 }
1073
Mike Snitzerfc56f6f2009-12-10 23:52:12 +00001074 cow_path = argv[0];
1075 argv++;
1076 argc--;
1077
Milan Broz024d37e2011-03-24 13:52:14 +00001078 r = dm_get_device(ti, cow_path, dm_table_get_mode(ti->table), &s->cow);
Mike Snitzerfc56f6f2009-12-10 23:52:12 +00001079 if (r) {
1080 ti->error = "Cannot get COW device";
1081 goto bad_cow;
1082 }
1083
1084 r = dm_exception_store_create(ti, argc, argv, s, &args_used, &s->store);
1085 if (r) {
1086 ti->error = "Couldn't create exception store";
1087 r = -EINVAL;
1088 goto bad_store;
1089 }
1090
1091 argv += args_used;
1092 argc -= args_used;
1093
Mike Snitzerfc56f6f2009-12-10 23:52:12 +00001094 s->ti = ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 s->valid = 1;
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -08001096 s->active = 0;
Mikulas Patocka879129d22008-10-30 13:33:16 +00001097 atomic_set(&s->pending_exceptions_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 init_rwsem(&s->lock);
Mike Snitzerc1f0c182009-12-10 23:52:24 +00001099 INIT_LIST_HEAD(&s->list);
Alasdair G Kergonca3a9312006-10-03 01:15:30 -07001100 spin_lock_init(&s->pe_lock);
Mikulas Patocka1e03f972009-12-10 23:52:32 +00001101 s->state_bits = 0;
Mike Snitzerd8ddb1c2009-12-10 23:52:35 +00001102 s->merge_failed = 0;
Mikulas Patocka9fe862542009-12-10 23:52:33 +00001103 s->first_merging_chunk = 0;
1104 s->num_merging_chunks = 0;
1105 bio_list_init(&s->bios_queued_during_merge);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
1107 /* Allocate hash table for COW data */
Jonathan Brassowfee19982009-04-02 19:55:34 +01001108 if (init_hash_tables(s)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 ti->error = "Unable to allocate hash table space";
1110 r = -ENOMEM;
Jonathan Brassowfee19982009-04-02 19:55:34 +01001111 goto bad_hash_tables;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 }
1113
Mikulas Patockadf5d2e92013-03-01 22:45:49 +00001114 s->kcopyd_client = dm_kcopyd_client_create(&dm_kcopyd_throttle);
Mikulas Patockafa34ce72011-05-29 13:03:13 +01001115 if (IS_ERR(s->kcopyd_client)) {
1116 r = PTR_ERR(s->kcopyd_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 ti->error = "Could not create kcopyd client";
Jonathan Brassowfee19982009-04-02 19:55:34 +01001118 goto bad_kcopyd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 }
1120
Mikulas Patocka92e86812008-07-21 12:00:35 +01001121 s->pending_pool = mempool_create_slab_pool(MIN_IOS, pending_cache);
1122 if (!s->pending_pool) {
1123 ti->error = "Could not allocate mempool for pending exceptions";
Wei Yongjun09e8b812013-05-10 14:37:15 +01001124 r = -ENOMEM;
Jonathan Brassowfee19982009-04-02 19:55:34 +01001125 goto bad_pending_pool;
Mikulas Patocka92e86812008-07-21 12:00:35 +01001126 }
1127
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001128 for (i = 0; i < DM_TRACKED_CHUNK_HASH_SIZE; i++)
1129 INIT_HLIST_HEAD(&s->tracked_chunk_hash[i]);
1130
1131 spin_lock_init(&s->tracked_chunk_lock);
1132
Mike Snitzerc1f0c182009-12-10 23:52:24 +00001133 ti->private = s;
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001134 ti->num_flush_bios = num_flush_bios;
Mikulas Patocka42bc9542012-12-21 20:23:38 +00001135 ti->per_bio_data_size = sizeof(struct dm_snap_tracked_chunk);
Mike Snitzerc1f0c182009-12-10 23:52:24 +00001136
1137 /* Add snapshot to the list of snapshots for this origin */
1138 /* Exceptions aren't triggered till snapshot_resume() is called */
1139 r = register_snapshot(s);
1140 if (r == -ENOMEM) {
1141 ti->error = "Snapshot origin struct allocation failed";
1142 goto bad_load_and_register;
1143 } else if (r < 0) {
1144 /* invalid handover, register_snapshot has set ti->error */
1145 goto bad_load_and_register;
1146 }
1147
1148 /*
1149 * Metadata must only be loaded into one table at once, so skip this
1150 * if metadata will be handed over during resume.
1151 * Chunk size will be set during the handover - set it to zero to
1152 * ensure it's ignored.
1153 */
1154 if (r > 0) {
1155 s->store->chunk_size = 0;
1156 return 0;
1157 }
1158
Jonathan Brassow493df712009-04-02 19:55:31 +01001159 r = s->store->type->read_metadata(s->store, dm_add_exception,
1160 (void *)s);
Milan Broz07641472007-07-12 17:28:13 +01001161 if (r < 0) {
Mark McLoughlinf9cea4f2006-10-03 01:15:25 -07001162 ti->error = "Failed to read snapshot metadata";
Mike Snitzerc1f0c182009-12-10 23:52:24 +00001163 goto bad_read_metadata;
Milan Broz07641472007-07-12 17:28:13 +01001164 } else if (r > 0) {
1165 s->valid = 0;
1166 DMWARN("Snapshot is marked invalid.");
Mark McLoughlinf9cea4f2006-10-03 01:15:25 -07001167 }
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -08001168
Mikulas Patocka3f2412d2009-10-16 23:18:16 +01001169 if (!s->store->chunk_size) {
1170 ti->error = "Chunk size not set";
Mike Snitzerc1f0c182009-12-10 23:52:24 +00001171 goto bad_read_metadata;
Mikulas Patocka3f2412d2009-10-16 23:18:16 +01001172 }
Mike Snitzer542f9032012-07-27 15:08:00 +01001173
1174 r = dm_set_target_max_io_len(ti, s->store->chunk_size);
1175 if (r)
1176 goto bad_read_metadata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
1178 return 0;
1179
Mike Snitzerc1f0c182009-12-10 23:52:24 +00001180bad_read_metadata:
1181 unregister_snapshot(s);
1182
Jonathan Brassowfee19982009-04-02 19:55:34 +01001183bad_load_and_register:
Mikulas Patocka92e86812008-07-21 12:00:35 +01001184 mempool_destroy(s->pending_pool);
1185
Jonathan Brassowfee19982009-04-02 19:55:34 +01001186bad_pending_pool:
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +01001187 dm_kcopyd_client_destroy(s->kcopyd_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188
Jonathan Brassowfee19982009-04-02 19:55:34 +01001189bad_kcopyd:
Jon Brassow3510cb92009-12-10 23:52:11 +00001190 dm_exception_table_exit(&s->pending, pending_cache);
1191 dm_exception_table_exit(&s->complete, exception_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
Jonathan Brassowfee19982009-04-02 19:55:34 +01001193bad_hash_tables:
Mike Snitzerfc56f6f2009-12-10 23:52:12 +00001194 dm_exception_store_destroy(s->store);
1195
1196bad_store:
1197 dm_put_device(ti, s->cow);
1198
1199bad_cow:
Mikulas Patockac2411042010-08-12 04:13:51 +01001200 dm_put_device(ti, s->origin);
1201
1202bad_origin:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 kfree(s);
1204
Mike Snitzerfc56f6f2009-12-10 23:52:12 +00001205bad:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 return r;
1207}
1208
Milan Broz31c93a02006-12-08 02:41:11 -08001209static void __free_exceptions(struct dm_snapshot *s)
1210{
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +01001211 dm_kcopyd_client_destroy(s->kcopyd_client);
Milan Broz31c93a02006-12-08 02:41:11 -08001212 s->kcopyd_client = NULL;
1213
Jon Brassow3510cb92009-12-10 23:52:11 +00001214 dm_exception_table_exit(&s->pending, pending_cache);
1215 dm_exception_table_exit(&s->complete, exception_cache);
Milan Broz31c93a02006-12-08 02:41:11 -08001216}
1217
Mike Snitzerc1f0c182009-12-10 23:52:24 +00001218static void __handover_exceptions(struct dm_snapshot *snap_src,
1219 struct dm_snapshot *snap_dest)
1220{
1221 union {
1222 struct dm_exception_table table_swap;
1223 struct dm_exception_store *store_swap;
1224 } u;
1225
1226 /*
1227 * Swap all snapshot context information between the two instances.
1228 */
1229 u.table_swap = snap_dest->complete;
1230 snap_dest->complete = snap_src->complete;
1231 snap_src->complete = u.table_swap;
1232
1233 u.store_swap = snap_dest->store;
1234 snap_dest->store = snap_src->store;
1235 snap_src->store = u.store_swap;
1236
1237 snap_dest->store->snap = snap_dest;
1238 snap_src->store->snap = snap_src;
1239
Mike Snitzer542f9032012-07-27 15:08:00 +01001240 snap_dest->ti->max_io_len = snap_dest->store->chunk_size;
Mike Snitzerc1f0c182009-12-10 23:52:24 +00001241 snap_dest->valid = snap_src->valid;
1242
1243 /*
1244 * Set source invalid to ensure it receives no further I/O.
1245 */
1246 snap_src->valid = 0;
1247}
1248
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249static void snapshot_dtr(struct dm_target *ti)
1250{
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001251#ifdef CONFIG_DM_DEBUG
1252 int i;
1253#endif
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001254 struct dm_snapshot *s = ti->private;
Mike Snitzerc1f0c182009-12-10 23:52:24 +00001255 struct dm_snapshot *snap_src = NULL, *snap_dest = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
Mike Snitzerc1f0c182009-12-10 23:52:24 +00001257 down_read(&_origins_lock);
1258 /* Check whether exception handover must be cancelled */
Mikulas Patocka9d3b15c2009-12-10 23:52:32 +00001259 (void) __find_snapshots_sharing_cow(s, &snap_src, &snap_dest, NULL);
Mike Snitzerc1f0c182009-12-10 23:52:24 +00001260 if (snap_src && snap_dest && (s == snap_src)) {
1261 down_write(&snap_dest->lock);
1262 snap_dest->valid = 0;
1263 up_write(&snap_dest->lock);
1264 DMERR("Cancelling snapshot handover.");
1265 }
1266 up_read(&_origins_lock);
1267
Mikulas Patocka1e03f972009-12-10 23:52:32 +00001268 if (dm_target_is_snapshot_merge(ti))
1269 stop_merge(s);
1270
Alasdair G Kergon138728dc2006-03-27 01:17:50 -08001271 /* Prevent further origin writes from using this snapshot. */
1272 /* After this returns there can be no new kcopyd jobs. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 unregister_snapshot(s);
1274
Mikulas Patocka879129d22008-10-30 13:33:16 +00001275 while (atomic_read(&s->pending_exceptions_count))
Mikulas Patocka90fa1522009-01-06 03:04:54 +00001276 msleep(1);
Mikulas Patocka879129d22008-10-30 13:33:16 +00001277 /*
1278 * Ensure instructions in mempool_destroy aren't reordered
1279 * before atomic_read.
1280 */
1281 smp_mb();
1282
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001283#ifdef CONFIG_DM_DEBUG
1284 for (i = 0; i < DM_TRACKED_CHUNK_HASH_SIZE; i++)
1285 BUG_ON(!hlist_empty(&s->tracked_chunk_hash[i]));
1286#endif
1287
Milan Broz31c93a02006-12-08 02:41:11 -08001288 __free_exceptions(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
Mikulas Patocka92e86812008-07-21 12:00:35 +01001290 mempool_destroy(s->pending_pool);
1291
Jonathan Brassowfee19982009-04-02 19:55:34 +01001292 dm_exception_store_destroy(s->store);
Alasdair G Kergon138728dc2006-03-27 01:17:50 -08001293
Mike Snitzerfc56f6f2009-12-10 23:52:12 +00001294 dm_put_device(ti, s->cow);
1295
Mikulas Patockac2411042010-08-12 04:13:51 +01001296 dm_put_device(ti, s->origin);
1297
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 kfree(s);
1299}
1300
1301/*
1302 * Flush a list of buffers.
1303 */
1304static void flush_bios(struct bio *bio)
1305{
1306 struct bio *n;
1307
1308 while (bio) {
1309 n = bio->bi_next;
1310 bio->bi_next = NULL;
1311 generic_make_request(bio);
1312 bio = n;
1313 }
1314}
1315
Mikulas Patocka515ad662009-12-10 23:52:30 +00001316static int do_origin(struct dm_dev *origin, struct bio *bio);
1317
1318/*
1319 * Flush a list of buffers.
1320 */
1321static void retry_origin_bios(struct dm_snapshot *s, struct bio *bio)
1322{
1323 struct bio *n;
1324 int r;
1325
1326 while (bio) {
1327 n = bio->bi_next;
1328 bio->bi_next = NULL;
1329 r = do_origin(s->origin, bio);
1330 if (r == DM_MAPIO_REMAPPED)
1331 generic_make_request(bio);
1332 bio = n;
1333 }
1334}
1335
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336/*
1337 * Error a list of buffers.
1338 */
1339static void error_bios(struct bio *bio)
1340{
1341 struct bio *n;
1342
1343 while (bio) {
1344 n = bio->bi_next;
1345 bio->bi_next = NULL;
NeilBrown6712ecf2007-09-27 12:47:43 +02001346 bio_io_error(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 bio = n;
1348 }
1349}
1350
Alasdair G Kergon695368a2006-10-03 01:15:31 -07001351static void __invalidate_snapshot(struct dm_snapshot *s, int err)
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001352{
1353 if (!s->valid)
1354 return;
1355
1356 if (err == -EIO)
1357 DMERR("Invalidating snapshot: Error reading/writing.");
1358 else if (err == -ENOMEM)
1359 DMERR("Invalidating snapshot: Unable to allocate exception.");
1360
Jonathan Brassow493df712009-04-02 19:55:31 +01001361 if (s->store->type->drop_snapshot)
1362 s->store->type->drop_snapshot(s->store);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001363
1364 s->valid = 0;
1365
Mike Snitzerfc56f6f2009-12-10 23:52:12 +00001366 dm_table_event(s->ti->table);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001367}
1368
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001369static void pending_complete(struct dm_snap_pending_exception *pe, int success)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370{
Jon Brassow1d4989c2009-12-10 23:52:10 +00001371 struct dm_exception *e;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 struct dm_snapshot *s = pe->snap;
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -07001373 struct bio *origin_bios = NULL;
1374 struct bio *snapshot_bios = NULL;
Mikulas Patockaa6e50b42011-08-02 12:32:04 +01001375 struct bio *full_bio = NULL;
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -07001376 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001378 if (!success) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 /* Read/write error - snapshot is unusable */
1380 down_write(&s->lock);
Alasdair G Kergon695368a2006-10-03 01:15:31 -07001381 __invalidate_snapshot(s, -EIO);
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -07001382 error = 1;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001383 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 }
1385
Jon Brassow3510cb92009-12-10 23:52:11 +00001386 e = alloc_completed_exception();
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001387 if (!e) {
1388 down_write(&s->lock);
Alasdair G Kergon695368a2006-10-03 01:15:31 -07001389 __invalidate_snapshot(s, -ENOMEM);
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -07001390 error = 1;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001391 goto out;
1392 }
1393 *e = pe->e;
1394
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -07001395 down_write(&s->lock);
1396 if (!s->valid) {
Jon Brassow3510cb92009-12-10 23:52:11 +00001397 free_completed_exception(e);
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -07001398 error = 1;
1399 goto out;
1400 }
1401
Mike Snitzer615d1eb2009-12-10 23:52:29 +00001402 /* Check for conflicting reads */
1403 __check_for_conflicting_io(s, pe->e.old_chunk);
Mikulas Patockaa8d41b52008-07-21 12:00:34 +01001404
1405 /*
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001406 * Add a proper exception, and remove the
1407 * in-flight exception from the list.
1408 */
Jon Brassow3510cb92009-12-10 23:52:11 +00001409 dm_insert_exception(&s->complete, e);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001410
Jonathan Brassowa2d2b032011-08-02 12:32:03 +01001411out:
Jon Brassow3510cb92009-12-10 23:52:11 +00001412 dm_remove_exception(&pe->e);
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -07001413 snapshot_bios = bio_list_get(&pe->snapshot_bios);
Mikulas Patocka515ad662009-12-10 23:52:30 +00001414 origin_bios = bio_list_get(&pe->origin_bios);
Mikulas Patockaa6e50b42011-08-02 12:32:04 +01001415 full_bio = pe->full_bio;
1416 if (full_bio) {
1417 full_bio->bi_end_io = pe->full_bio_end_io;
1418 full_bio->bi_private = pe->full_bio_private;
1419 }
Mikulas Patocka515ad662009-12-10 23:52:30 +00001420 free_pending_exception(pe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
Mikulas Patocka73dfd072009-12-10 23:52:34 +00001422 increment_pending_exceptions_done_count();
1423
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -07001424 up_write(&s->lock);
1425
1426 /* Submit any pending write bios */
Mikulas Patockaa6e50b42011-08-02 12:32:04 +01001427 if (error) {
1428 if (full_bio)
1429 bio_io_error(full_bio);
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -07001430 error_bios(snapshot_bios);
Mikulas Patockaa6e50b42011-08-02 12:32:04 +01001431 } else {
1432 if (full_bio)
1433 bio_endio(full_bio, 0);
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -07001434 flush_bios(snapshot_bios);
Mikulas Patockaa6e50b42011-08-02 12:32:04 +01001435 }
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -07001436
Mikulas Patocka515ad662009-12-10 23:52:30 +00001437 retry_origin_bios(s, origin_bios);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438}
1439
1440static void commit_callback(void *context, int success)
1441{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001442 struct dm_snap_pending_exception *pe = context;
1443
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 pending_complete(pe, success);
1445}
1446
1447/*
1448 * Called when the copy I/O has finished. kcopyd actually runs
1449 * this code so don't block.
1450 */
Alasdair G Kergon4cdc1d12008-03-28 14:16:10 -07001451static void copy_callback(int read_err, unsigned long write_err, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001453 struct dm_snap_pending_exception *pe = context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 struct dm_snapshot *s = pe->snap;
1455
1456 if (read_err || write_err)
1457 pending_complete(pe, 0);
1458
1459 else
1460 /* Update the metadata if we are persistent */
Jonathan Brassow493df712009-04-02 19:55:31 +01001461 s->store->type->commit_exception(s->store, &pe->e,
1462 commit_callback, pe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463}
1464
1465/*
1466 * Dispatches the copy operation to kcopyd.
1467 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001468static void start_copy(struct dm_snap_pending_exception *pe)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469{
1470 struct dm_snapshot *s = pe->snap;
Heinz Mauelshagen22a1ceb2008-04-24 21:43:17 +01001471 struct dm_io_region src, dest;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 struct block_device *bdev = s->origin->bdev;
1473 sector_t dev_size;
1474
1475 dev_size = get_dev_size(bdev);
1476
1477 src.bdev = bdev;
Jonathan Brassow71fab002009-04-02 19:55:33 +01001478 src.sector = chunk_to_sector(s->store, pe->e.old_chunk);
Mikulas Patockadf96eee2009-10-16 23:18:17 +01001479 src.count = min((sector_t)s->store->chunk_size, dev_size - src.sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
Mike Snitzerfc56f6f2009-12-10 23:52:12 +00001481 dest.bdev = s->cow->bdev;
Jonathan Brassow71fab002009-04-02 19:55:33 +01001482 dest.sector = chunk_to_sector(s->store, pe->e.new_chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 dest.count = src.count;
1484
1485 /* Hand over to kcopyd */
Jonathan Brassowa2d2b032011-08-02 12:32:03 +01001486 dm_kcopyd_copy(s->kcopyd_client, &src, 1, &dest, 0, copy_callback, pe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487}
1488
Mikulas Patockaa6e50b42011-08-02 12:32:04 +01001489static void full_bio_end_io(struct bio *bio, int error)
1490{
1491 void *callback_data = bio->bi_private;
1492
1493 dm_kcopyd_do_callback(callback_data, 0, error ? 1 : 0);
1494}
1495
1496static void start_full_bio(struct dm_snap_pending_exception *pe,
1497 struct bio *bio)
1498{
1499 struct dm_snapshot *s = pe->snap;
1500 void *callback_data;
1501
1502 pe->full_bio = bio;
1503 pe->full_bio_end_io = bio->bi_end_io;
1504 pe->full_bio_private = bio->bi_private;
1505
1506 callback_data = dm_kcopyd_prepare_callback(s->kcopyd_client,
1507 copy_callback, pe);
1508
1509 bio->bi_end_io = full_bio_end_io;
1510 bio->bi_private = callback_data;
1511
1512 generic_make_request(bio);
1513}
1514
Mikulas Patocka29138082009-04-02 19:55:25 +01001515static struct dm_snap_pending_exception *
1516__lookup_pending_exception(struct dm_snapshot *s, chunk_t chunk)
1517{
Jon Brassow3510cb92009-12-10 23:52:11 +00001518 struct dm_exception *e = dm_lookup_exception(&s->pending, chunk);
Mikulas Patocka29138082009-04-02 19:55:25 +01001519
1520 if (!e)
1521 return NULL;
1522
1523 return container_of(e, struct dm_snap_pending_exception, e);
1524}
1525
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526/*
1527 * Looks to see if this snapshot already has a pending exception
1528 * for this chunk, otherwise it allocates a new one and inserts
1529 * it into the pending table.
1530 *
1531 * NOTE: a write lock must be held on snap->lock before calling
1532 * this.
1533 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001534static struct dm_snap_pending_exception *
Mikulas Patockac6621392009-04-02 19:55:25 +01001535__find_pending_exception(struct dm_snapshot *s,
1536 struct dm_snap_pending_exception *pe, chunk_t chunk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537{
Mikulas Patockac6621392009-04-02 19:55:25 +01001538 struct dm_snap_pending_exception *pe2;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001539
Mikulas Patocka29138082009-04-02 19:55:25 +01001540 pe2 = __lookup_pending_exception(s, chunk);
1541 if (pe2) {
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001542 free_pending_exception(pe);
Mikulas Patocka29138082009-04-02 19:55:25 +01001543 return pe2;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001544 }
1545
1546 pe->e.old_chunk = chunk;
1547 bio_list_init(&pe->origin_bios);
1548 bio_list_init(&pe->snapshot_bios);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001549 pe->started = 0;
Mikulas Patockaa6e50b42011-08-02 12:32:04 +01001550 pe->full_bio = NULL;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001551
Jonathan Brassow493df712009-04-02 19:55:31 +01001552 if (s->store->type->prepare_exception(s->store, &pe->e)) {
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001553 free_pending_exception(pe);
1554 return NULL;
1555 }
1556
Jon Brassow3510cb92009-12-10 23:52:11 +00001557 dm_insert_exception(&s->pending, &pe->e);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001558
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 return pe;
1560}
1561
Jon Brassow1d4989c2009-12-10 23:52:10 +00001562static void remap_exception(struct dm_snapshot *s, struct dm_exception *e,
Milan Brozd74f81f2008-02-08 02:11:27 +00001563 struct bio *bio, chunk_t chunk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564{
Mike Snitzerfc56f6f2009-12-10 23:52:12 +00001565 bio->bi_bdev = s->cow->bdev;
Jonathan Brassow71fab002009-04-02 19:55:33 +01001566 bio->bi_sector = chunk_to_sector(s->store,
1567 dm_chunk_number(e->new_chunk) +
1568 (chunk - e->old_chunk)) +
1569 (bio->bi_sector &
1570 s->store->chunk_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571}
1572
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00001573static int snapshot_map(struct dm_target *ti, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574{
Jon Brassow1d4989c2009-12-10 23:52:10 +00001575 struct dm_exception *e;
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001576 struct dm_snapshot *s = ti->private;
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001577 int r = DM_MAPIO_REMAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 chunk_t chunk;
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001579 struct dm_snap_pending_exception *pe = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580
Mikulas Patockaee180262012-12-21 20:23:41 +00001581 init_tracked_chunk(bio);
1582
Tejun Heod87f4c12010-09-03 11:56:19 +02001583 if (bio->bi_rw & REQ_FLUSH) {
Mike Snitzerfc56f6f2009-12-10 23:52:12 +00001584 bio->bi_bdev = s->cow->bdev;
Mikulas Patocka494b3ee2009-06-22 10:12:25 +01001585 return DM_MAPIO_REMAPPED;
1586 }
1587
Jonathan Brassow71fab002009-04-02 19:55:33 +01001588 chunk = sector_to_chunk(s->store, bio->bi_sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589
1590 /* Full snapshots are not usable */
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001591 /* To get here the table must be live so s->active is always set. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 if (!s->valid)
Alasdair G Kergonf6a80ea2005-07-12 15:53:01 -07001593 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001595 /* FIXME: should only take write lock if we need
1596 * to copy an exception */
1597 down_write(&s->lock);
1598
1599 if (!s->valid) {
1600 r = -EIO;
1601 goto out_unlock;
1602 }
1603
1604 /* If the block is already remapped - use that, else remap it */
Jon Brassow3510cb92009-12-10 23:52:11 +00001605 e = dm_lookup_exception(&s->complete, chunk);
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001606 if (e) {
Milan Brozd74f81f2008-02-08 02:11:27 +00001607 remap_exception(s, e, bio, chunk);
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001608 goto out_unlock;
1609 }
1610
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 /*
1612 * Write to snapshot - higher level takes care of RW/RO
1613 * flags so we should only get this if we are
1614 * writeable.
1615 */
1616 if (bio_rw(bio) == WRITE) {
Mikulas Patocka29138082009-04-02 19:55:25 +01001617 pe = __lookup_pending_exception(s, chunk);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001618 if (!pe) {
Mikulas Patockac6621392009-04-02 19:55:25 +01001619 up_write(&s->lock);
1620 pe = alloc_pending_exception(s);
1621 down_write(&s->lock);
1622
1623 if (!s->valid) {
1624 free_pending_exception(pe);
1625 r = -EIO;
1626 goto out_unlock;
1627 }
1628
Jon Brassow3510cb92009-12-10 23:52:11 +00001629 e = dm_lookup_exception(&s->complete, chunk);
Mikulas Patocka35bf6592009-04-02 19:55:26 +01001630 if (e) {
1631 free_pending_exception(pe);
1632 remap_exception(s, e, bio, chunk);
1633 goto out_unlock;
1634 }
1635
Mikulas Patockac6621392009-04-02 19:55:25 +01001636 pe = __find_pending_exception(s, pe, chunk);
Mikulas Patocka29138082009-04-02 19:55:25 +01001637 if (!pe) {
1638 __invalidate_snapshot(s, -ENOMEM);
1639 r = -EIO;
1640 goto out_unlock;
1641 }
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001642 }
1643
Milan Brozd74f81f2008-02-08 02:11:27 +00001644 remap_exception(s, &pe->e, bio, chunk);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001645
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001646 r = DM_MAPIO_SUBMITTED;
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001647
Mikulas Patockaa6e50b42011-08-02 12:32:04 +01001648 if (!pe->started &&
1649 bio->bi_size == (s->store->chunk_size << SECTOR_SHIFT)) {
1650 pe->started = 1;
1651 up_write(&s->lock);
1652 start_full_bio(pe, bio);
1653 goto out;
1654 }
1655
1656 bio_list_add(&pe->snapshot_bios, bio);
1657
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001658 if (!pe->started) {
1659 /* this is protected by snap->lock */
1660 pe->started = 1;
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001661 up_write(&s->lock);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001662 start_copy(pe);
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001663 goto out;
1664 }
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001665 } else {
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001666 bio->bi_bdev = s->origin->bdev;
Mikulas Patockaee180262012-12-21 20:23:41 +00001667 track_chunk(s, bio, chunk);
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001668 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669
Jonathan Brassowa2d2b032011-08-02 12:32:03 +01001670out_unlock:
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001671 up_write(&s->lock);
Jonathan Brassowa2d2b032011-08-02 12:32:03 +01001672out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 return r;
1674}
1675
Mikulas Patocka3452c2a2009-12-10 23:52:31 +00001676/*
1677 * A snapshot-merge target behaves like a combination of a snapshot
1678 * target and a snapshot-origin target. It only generates new
1679 * exceptions in other snapshots and not in the one that is being
1680 * merged.
1681 *
1682 * For each chunk, if there is an existing exception, it is used to
1683 * redirect I/O to the cow device. Otherwise I/O is sent to the origin,
1684 * which in turn might generate exceptions in other snapshots.
Mikulas Patocka9fe862542009-12-10 23:52:33 +00001685 * If merging is currently taking place on the chunk in question, the
1686 * I/O is deferred by adding it to s->bios_queued_during_merge.
Mikulas Patocka3452c2a2009-12-10 23:52:31 +00001687 */
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00001688static int snapshot_merge_map(struct dm_target *ti, struct bio *bio)
Mikulas Patocka3452c2a2009-12-10 23:52:31 +00001689{
1690 struct dm_exception *e;
1691 struct dm_snapshot *s = ti->private;
1692 int r = DM_MAPIO_REMAPPED;
1693 chunk_t chunk;
1694
Mikulas Patockaee180262012-12-21 20:23:41 +00001695 init_tracked_chunk(bio);
1696
Tejun Heod87f4c12010-09-03 11:56:19 +02001697 if (bio->bi_rw & REQ_FLUSH) {
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001698 if (!dm_bio_get_target_bio_nr(bio))
Mike Snitzer10b81062009-12-10 23:52:31 +00001699 bio->bi_bdev = s->origin->bdev;
1700 else
1701 bio->bi_bdev = s->cow->bdev;
Mike Snitzer10b81062009-12-10 23:52:31 +00001702 return DM_MAPIO_REMAPPED;
1703 }
1704
Mikulas Patocka3452c2a2009-12-10 23:52:31 +00001705 chunk = sector_to_chunk(s->store, bio->bi_sector);
1706
Mikulas Patocka9fe862542009-12-10 23:52:33 +00001707 down_write(&s->lock);
Mikulas Patocka3452c2a2009-12-10 23:52:31 +00001708
Mikulas Patockad2fdb772009-12-10 23:52:36 +00001709 /* Full merging snapshots are redirected to the origin */
1710 if (!s->valid)
1711 goto redirect_to_origin;
Mikulas Patocka3452c2a2009-12-10 23:52:31 +00001712
1713 /* If the block is already remapped - use that */
1714 e = dm_lookup_exception(&s->complete, chunk);
1715 if (e) {
Mikulas Patocka9fe862542009-12-10 23:52:33 +00001716 /* Queue writes overlapping with chunks being merged */
1717 if (bio_rw(bio) == WRITE &&
1718 chunk >= s->first_merging_chunk &&
1719 chunk < (s->first_merging_chunk +
1720 s->num_merging_chunks)) {
1721 bio->bi_bdev = s->origin->bdev;
1722 bio_list_add(&s->bios_queued_during_merge, bio);
1723 r = DM_MAPIO_SUBMITTED;
1724 goto out_unlock;
1725 }
Mikulas Patocka17aa0332009-12-10 23:52:33 +00001726
Mikulas Patocka3452c2a2009-12-10 23:52:31 +00001727 remap_exception(s, e, bio, chunk);
Mikulas Patocka17aa0332009-12-10 23:52:33 +00001728
1729 if (bio_rw(bio) == WRITE)
Mikulas Patockaee180262012-12-21 20:23:41 +00001730 track_chunk(s, bio, chunk);
Mikulas Patocka3452c2a2009-12-10 23:52:31 +00001731 goto out_unlock;
1732 }
1733
Mikulas Patockad2fdb772009-12-10 23:52:36 +00001734redirect_to_origin:
Mikulas Patocka3452c2a2009-12-10 23:52:31 +00001735 bio->bi_bdev = s->origin->bdev;
1736
1737 if (bio_rw(bio) == WRITE) {
Mikulas Patocka9fe862542009-12-10 23:52:33 +00001738 up_write(&s->lock);
Mikulas Patocka3452c2a2009-12-10 23:52:31 +00001739 return do_origin(s->origin, bio);
1740 }
1741
1742out_unlock:
Mikulas Patocka9fe862542009-12-10 23:52:33 +00001743 up_write(&s->lock);
Mikulas Patocka3452c2a2009-12-10 23:52:31 +00001744
1745 return r;
1746}
1747
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00001748static int snapshot_end_io(struct dm_target *ti, struct bio *bio, int error)
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001749{
1750 struct dm_snapshot *s = ti->private;
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001751
Mikulas Patockaee180262012-12-21 20:23:41 +00001752 if (is_bio_tracked(bio))
1753 stop_tracking_chunk(s, bio);
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001754
1755 return 0;
1756}
1757
Mikulas Patocka1e03f972009-12-10 23:52:32 +00001758static void snapshot_merge_presuspend(struct dm_target *ti)
1759{
1760 struct dm_snapshot *s = ti->private;
1761
1762 stop_merge(s);
1763}
1764
Mike Snitzerc1f0c182009-12-10 23:52:24 +00001765static int snapshot_preresume(struct dm_target *ti)
1766{
1767 int r = 0;
1768 struct dm_snapshot *s = ti->private;
1769 struct dm_snapshot *snap_src = NULL, *snap_dest = NULL;
1770
1771 down_read(&_origins_lock);
Mikulas Patocka9d3b15c2009-12-10 23:52:32 +00001772 (void) __find_snapshots_sharing_cow(s, &snap_src, &snap_dest, NULL);
Mike Snitzerc1f0c182009-12-10 23:52:24 +00001773 if (snap_src && snap_dest) {
1774 down_read(&snap_src->lock);
1775 if (s == snap_src) {
1776 DMERR("Unable to resume snapshot source until "
1777 "handover completes.");
1778 r = -EINVAL;
Mike Snitzerb83b2f22011-01-13 19:59:59 +00001779 } else if (!dm_suspended(snap_src->ti)) {
Mike Snitzerc1f0c182009-12-10 23:52:24 +00001780 DMERR("Unable to perform snapshot handover until "
1781 "source is suspended.");
1782 r = -EINVAL;
1783 }
1784 up_read(&snap_src->lock);
1785 }
1786 up_read(&_origins_lock);
1787
1788 return r;
1789}
1790
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791static void snapshot_resume(struct dm_target *ti)
1792{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001793 struct dm_snapshot *s = ti->private;
Mike Snitzerc1f0c182009-12-10 23:52:24 +00001794 struct dm_snapshot *snap_src = NULL, *snap_dest = NULL;
1795
1796 down_read(&_origins_lock);
Mikulas Patocka9d3b15c2009-12-10 23:52:32 +00001797 (void) __find_snapshots_sharing_cow(s, &snap_src, &snap_dest, NULL);
Mike Snitzerc1f0c182009-12-10 23:52:24 +00001798 if (snap_src && snap_dest) {
1799 down_write(&snap_src->lock);
1800 down_write_nested(&snap_dest->lock, SINGLE_DEPTH_NESTING);
1801 __handover_exceptions(snap_src, snap_dest);
1802 up_write(&snap_dest->lock);
1803 up_write(&snap_src->lock);
1804 }
1805 up_read(&_origins_lock);
1806
1807 /* Now we have correct chunk size, reregister */
1808 reregister_snapshot(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -08001810 down_write(&s->lock);
1811 s->active = 1;
1812 up_write(&s->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813}
1814
Mike Snitzer542f9032012-07-27 15:08:00 +01001815static uint32_t get_origin_minimum_chunksize(struct block_device *bdev)
Mikulas Patocka1e03f972009-12-10 23:52:32 +00001816{
Mike Snitzer542f9032012-07-27 15:08:00 +01001817 uint32_t min_chunksize;
Mikulas Patocka1e03f972009-12-10 23:52:32 +00001818
1819 down_read(&_origins_lock);
1820 min_chunksize = __minimum_chunk_size(__lookup_origin(bdev));
1821 up_read(&_origins_lock);
1822
1823 return min_chunksize;
1824}
1825
1826static void snapshot_merge_resume(struct dm_target *ti)
1827{
1828 struct dm_snapshot *s = ti->private;
1829
1830 /*
1831 * Handover exceptions from existing snapshot.
1832 */
1833 snapshot_resume(ti);
1834
1835 /*
Mike Snitzer542f9032012-07-27 15:08:00 +01001836 * snapshot-merge acts as an origin, so set ti->max_io_len
Mikulas Patocka1e03f972009-12-10 23:52:32 +00001837 */
Mike Snitzer542f9032012-07-27 15:08:00 +01001838 ti->max_io_len = get_origin_minimum_chunksize(s->origin->bdev);
Mikulas Patocka1e03f972009-12-10 23:52:32 +00001839
1840 start_merge(s);
1841}
1842
Mikulas Patockafd7c0922013-03-01 22:45:44 +00001843static void snapshot_status(struct dm_target *ti, status_type_t type,
1844 unsigned status_flags, char *result, unsigned maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845{
Jonathan Brassow2e4a31d2009-04-02 19:55:34 +01001846 unsigned sz = 0;
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001847 struct dm_snapshot *snap = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848
1849 switch (type) {
1850 case STATUSTYPE_INFO:
Mikulas Patocka94e765722009-12-10 23:51:53 +00001851
1852 down_write(&snap->lock);
1853
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 if (!snap->valid)
Jonathan Brassow2e4a31d2009-04-02 19:55:34 +01001855 DMEMIT("Invalid");
Mike Snitzerd8ddb1c2009-12-10 23:52:35 +00001856 else if (snap->merge_failed)
1857 DMEMIT("Merge failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 else {
Mike Snitzer985903b2009-12-10 23:52:11 +00001859 if (snap->store->type->usage) {
1860 sector_t total_sectors, sectors_allocated,
1861 metadata_sectors;
1862 snap->store->type->usage(snap->store,
1863 &total_sectors,
1864 &sectors_allocated,
1865 &metadata_sectors);
1866 DMEMIT("%llu/%llu %llu",
1867 (unsigned long long)sectors_allocated,
1868 (unsigned long long)total_sectors,
1869 (unsigned long long)metadata_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 }
1871 else
Jonathan Brassow2e4a31d2009-04-02 19:55:34 +01001872 DMEMIT("Unknown");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 }
Mikulas Patocka94e765722009-12-10 23:51:53 +00001874
1875 up_write(&snap->lock);
1876
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 break;
1878
1879 case STATUSTYPE_TABLE:
1880 /*
1881 * kdevname returns a static pointer so we need
1882 * to make private copies if the output is to
1883 * make sense.
1884 */
Mike Snitzerfc56f6f2009-12-10 23:52:12 +00001885 DMEMIT("%s %s", snap->origin->name, snap->cow->name);
Jonathan Brassow1e302a92009-04-02 19:55:35 +01001886 snap->store->type->status(snap->store, type, result + sz,
1887 maxlen - sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 break;
1889 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890}
1891
Mike Snitzer8811f462009-09-04 20:40:19 +01001892static int snapshot_iterate_devices(struct dm_target *ti,
1893 iterate_devices_callout_fn fn, void *data)
1894{
1895 struct dm_snapshot *snap = ti->private;
Mikulas Patocka1e5554c2010-08-12 04:13:50 +01001896 int r;
Mike Snitzer8811f462009-09-04 20:40:19 +01001897
Mikulas Patocka1e5554c2010-08-12 04:13:50 +01001898 r = fn(ti, snap->origin, 0, ti->len, data);
1899
1900 if (!r)
1901 r = fn(ti, snap->cow, 0, get_dev_size(snap->cow->bdev), data);
1902
1903 return r;
Mike Snitzer8811f462009-09-04 20:40:19 +01001904}
1905
1906
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907/*-----------------------------------------------------------------
1908 * Origin methods
1909 *---------------------------------------------------------------*/
Mikulas Patocka9eaae8f2009-12-10 23:52:28 +00001910
1911/*
1912 * If no exceptions need creating, DM_MAPIO_REMAPPED is returned and any
1913 * supplied bio was ignored. The caller may submit it immediately.
1914 * (No remapping actually occurs as the origin is always a direct linear
1915 * map.)
1916 *
1917 * If further exceptions are required, DM_MAPIO_SUBMITTED is returned
1918 * and any supplied bio is added to a list to be submitted once all
1919 * the necessary exceptions exist.
1920 */
1921static int __origin_write(struct list_head *snapshots, sector_t sector,
1922 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923{
Mikulas Patocka515ad662009-12-10 23:52:30 +00001924 int r = DM_MAPIO_REMAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 struct dm_snapshot *snap;
Jon Brassow1d4989c2009-12-10 23:52:10 +00001926 struct dm_exception *e;
Mikulas Patocka515ad662009-12-10 23:52:30 +00001927 struct dm_snap_pending_exception *pe;
1928 struct dm_snap_pending_exception *pe_to_start_now = NULL;
1929 struct dm_snap_pending_exception *pe_to_start_last = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 chunk_t chunk;
1931
1932 /* Do all the snapshots on this origin */
1933 list_for_each_entry (snap, snapshots, list) {
Mikulas Patocka3452c2a2009-12-10 23:52:31 +00001934 /*
1935 * Don't make new exceptions in a merging snapshot
1936 * because it has effectively been deleted
1937 */
1938 if (dm_target_is_snapshot_merge(snap->ti))
1939 continue;
1940
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001941 down_write(&snap->lock);
1942
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -08001943 /* Only deal with valid and active snapshots */
1944 if (!snap->valid || !snap->active)
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001945 goto next_snapshot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946
Alasdair G Kergond5e404c2005-07-12 15:53:05 -07001947 /* Nothing to do if writing beyond end of snapshot */
Mikulas Patocka9eaae8f2009-12-10 23:52:28 +00001948 if (sector >= dm_table_get_size(snap->ti->table))
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001949 goto next_snapshot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950
1951 /*
1952 * Remember, different snapshots can have
1953 * different chunk sizes.
1954 */
Mikulas Patocka9eaae8f2009-12-10 23:52:28 +00001955 chunk = sector_to_chunk(snap->store, sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956
1957 /*
1958 * Check exception table to see if block
1959 * is already remapped in this snapshot
1960 * and trigger an exception if not.
1961 */
Jon Brassow3510cb92009-12-10 23:52:11 +00001962 e = dm_lookup_exception(&snap->complete, chunk);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001963 if (e)
1964 goto next_snapshot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965
Mikulas Patocka29138082009-04-02 19:55:25 +01001966 pe = __lookup_pending_exception(snap, chunk);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001967 if (!pe) {
Mikulas Patockac6621392009-04-02 19:55:25 +01001968 up_write(&snap->lock);
1969 pe = alloc_pending_exception(snap);
1970 down_write(&snap->lock);
1971
1972 if (!snap->valid) {
1973 free_pending_exception(pe);
1974 goto next_snapshot;
1975 }
1976
Jon Brassow3510cb92009-12-10 23:52:11 +00001977 e = dm_lookup_exception(&snap->complete, chunk);
Mikulas Patocka35bf6592009-04-02 19:55:26 +01001978 if (e) {
1979 free_pending_exception(pe);
1980 goto next_snapshot;
1981 }
1982
Mikulas Patockac6621392009-04-02 19:55:25 +01001983 pe = __find_pending_exception(snap, pe, chunk);
Mikulas Patocka29138082009-04-02 19:55:25 +01001984 if (!pe) {
1985 __invalidate_snapshot(snap, -ENOMEM);
1986 goto next_snapshot;
1987 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 }
1989
Mikulas Patocka515ad662009-12-10 23:52:30 +00001990 r = DM_MAPIO_SUBMITTED;
1991
1992 /*
1993 * If an origin bio was supplied, queue it to wait for the
1994 * completion of this exception, and start this one last,
1995 * at the end of the function.
1996 */
1997 if (bio) {
1998 bio_list_add(&pe->origin_bios, bio);
1999 bio = NULL;
2000
2001 if (!pe->started) {
2002 pe->started = 1;
2003 pe_to_start_last = pe;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08002004 }
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08002005 }
2006
2007 if (!pe->started) {
2008 pe->started = 1;
Mikulas Patocka515ad662009-12-10 23:52:30 +00002009 pe_to_start_now = pe;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08002010 }
2011
Jonathan Brassowa2d2b032011-08-02 12:32:03 +01002012next_snapshot:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 up_write(&snap->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014
Mikulas Patocka515ad662009-12-10 23:52:30 +00002015 if (pe_to_start_now) {
2016 start_copy(pe_to_start_now);
2017 pe_to_start_now = NULL;
2018 }
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08002019 }
2020
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 /*
Mikulas Patocka515ad662009-12-10 23:52:30 +00002022 * Submit the exception against which the bio is queued last,
2023 * to give the other exceptions a head start.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 */
Mikulas Patocka515ad662009-12-10 23:52:30 +00002025 if (pe_to_start_last)
2026 start_copy(pe_to_start_last);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027
2028 return r;
2029}
2030
2031/*
2032 * Called on a write from the origin driver.
2033 */
2034static int do_origin(struct dm_dev *origin, struct bio *bio)
2035{
2036 struct origin *o;
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08002037 int r = DM_MAPIO_REMAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038
2039 down_read(&_origins_lock);
2040 o = __lookup_origin(origin->bdev);
2041 if (o)
Mikulas Patocka9eaae8f2009-12-10 23:52:28 +00002042 r = __origin_write(&o->snapshots, bio->bi_sector, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 up_read(&_origins_lock);
2044
2045 return r;
2046}
2047
2048/*
Mikulas Patocka73dfd072009-12-10 23:52:34 +00002049 * Trigger exceptions in all non-merging snapshots.
2050 *
2051 * The chunk size of the merging snapshot may be larger than the chunk
2052 * size of some other snapshot so we may need to reallocate multiple
2053 * chunks in other snapshots.
2054 *
2055 * We scan all the overlapping exceptions in the other snapshots.
2056 * Returns 1 if anything was reallocated and must be waited for,
2057 * otherwise returns 0.
2058 *
2059 * size must be a multiple of merging_snap's chunk_size.
2060 */
2061static int origin_write_extent(struct dm_snapshot *merging_snap,
2062 sector_t sector, unsigned size)
2063{
2064 int must_wait = 0;
2065 sector_t n;
2066 struct origin *o;
2067
2068 /*
Mike Snitzer542f9032012-07-27 15:08:00 +01002069 * The origin's __minimum_chunk_size() got stored in max_io_len
Mikulas Patocka73dfd072009-12-10 23:52:34 +00002070 * by snapshot_merge_resume().
2071 */
2072 down_read(&_origins_lock);
2073 o = __lookup_origin(merging_snap->origin->bdev);
Mike Snitzer542f9032012-07-27 15:08:00 +01002074 for (n = 0; n < size; n += merging_snap->ti->max_io_len)
Mikulas Patocka73dfd072009-12-10 23:52:34 +00002075 if (__origin_write(&o->snapshots, sector + n, NULL) ==
2076 DM_MAPIO_SUBMITTED)
2077 must_wait = 1;
2078 up_read(&_origins_lock);
2079
2080 return must_wait;
2081}
2082
2083/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 * Origin: maps a linear range of a device, with hooks for snapshotting.
2085 */
2086
2087/*
2088 * Construct an origin mapping: <dev_path>
2089 * The context for an origin is merely a 'struct dm_dev *'
2090 * pointing to the real device.
2091 */
2092static int origin_ctr(struct dm_target *ti, unsigned int argc, char **argv)
2093{
2094 int r;
2095 struct dm_dev *dev;
2096
2097 if (argc != 1) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07002098 ti->error = "origin: incorrect number of arguments";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 return -EINVAL;
2100 }
2101
Nikanth Karthikesan8215d6e2010-03-06 02:32:27 +00002102 r = dm_get_device(ti, argv[0], dm_table_get_mode(ti->table), &dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 if (r) {
2104 ti->error = "Cannot get target device";
2105 return r;
2106 }
2107
2108 ti->private = dev;
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00002109 ti->num_flush_bios = 1;
Mikulas Patocka494b3ee2009-06-22 10:12:25 +01002110
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 return 0;
2112}
2113
2114static void origin_dtr(struct dm_target *ti)
2115{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01002116 struct dm_dev *dev = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 dm_put_device(ti, dev);
2118}
2119
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00002120static int origin_map(struct dm_target *ti, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01002122 struct dm_dev *dev = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 bio->bi_bdev = dev->bdev;
2124
Tejun Heod87f4c12010-09-03 11:56:19 +02002125 if (bio->bi_rw & REQ_FLUSH)
Mikulas Patocka494b3ee2009-06-22 10:12:25 +01002126 return DM_MAPIO_REMAPPED;
2127
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 /* Only tell snapshots if this is a write */
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08002129 return (bio_rw(bio) == WRITE) ? do_origin(dev, bio) : DM_MAPIO_REMAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130}
2131
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132/*
Mike Snitzer542f9032012-07-27 15:08:00 +01002133 * Set the target "max_io_len" field to the minimum of all the snapshots'
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 * chunk sizes.
2135 */
2136static void origin_resume(struct dm_target *ti)
2137{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01002138 struct dm_dev *dev = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139
Mike Snitzer542f9032012-07-27 15:08:00 +01002140 ti->max_io_len = get_origin_minimum_chunksize(dev->bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141}
2142
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002143static void origin_status(struct dm_target *ti, status_type_t type,
2144 unsigned status_flags, char *result, unsigned maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01002146 struct dm_dev *dev = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147
2148 switch (type) {
2149 case STATUSTYPE_INFO:
2150 result[0] = '\0';
2151 break;
2152
2153 case STATUSTYPE_TABLE:
2154 snprintf(result, maxlen, "%s", dev->name);
2155 break;
2156 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157}
2158
Mikulas Patockab1d55522010-08-12 04:14:02 +01002159static int origin_merge(struct dm_target *ti, struct bvec_merge_data *bvm,
2160 struct bio_vec *biovec, int max_size)
2161{
2162 struct dm_dev *dev = ti->private;
2163 struct request_queue *q = bdev_get_queue(dev->bdev);
2164
2165 if (!q->merge_bvec_fn)
2166 return max_size;
2167
2168 bvm->bi_bdev = dev->bdev;
Mikulas Patockab1d55522010-08-12 04:14:02 +01002169
2170 return min(max_size, q->merge_bvec_fn(q, bvm, biovec));
2171}
2172
Mike Snitzer8811f462009-09-04 20:40:19 +01002173static int origin_iterate_devices(struct dm_target *ti,
2174 iterate_devices_callout_fn fn, void *data)
2175{
2176 struct dm_dev *dev = ti->private;
2177
2178 return fn(ti, dev, 0, ti->len, data);
2179}
2180
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181static struct target_type origin_target = {
2182 .name = "snapshot-origin",
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002183 .version = {1, 8, 1},
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 .module = THIS_MODULE,
2185 .ctr = origin_ctr,
2186 .dtr = origin_dtr,
2187 .map = origin_map,
2188 .resume = origin_resume,
2189 .status = origin_status,
Mikulas Patockab1d55522010-08-12 04:14:02 +01002190 .merge = origin_merge,
Mike Snitzer8811f462009-09-04 20:40:19 +01002191 .iterate_devices = origin_iterate_devices,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192};
2193
2194static struct target_type snapshot_target = {
2195 .name = "snapshot",
Mikulas Patockafd7c0922013-03-01 22:45:44 +00002196 .version = {1, 11, 1},
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 .module = THIS_MODULE,
2198 .ctr = snapshot_ctr,
2199 .dtr = snapshot_dtr,
2200 .map = snapshot_map,
Mikulas Patockacd45daf2008-07-21 12:00:32 +01002201 .end_io = snapshot_end_io,
Mike Snitzerc1f0c182009-12-10 23:52:24 +00002202 .preresume = snapshot_preresume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 .resume = snapshot_resume,
2204 .status = snapshot_status,
Mike Snitzer8811f462009-09-04 20:40:19 +01002205 .iterate_devices = snapshot_iterate_devices,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206};
2207
Mikulas Patockad698aa42009-12-10 23:52:30 +00002208static struct target_type merge_target = {
2209 .name = dm_snapshot_merge_target_name,
Mikulas Patocka42bc9542012-12-21 20:23:38 +00002210 .version = {1, 2, 0},
Mikulas Patockad698aa42009-12-10 23:52:30 +00002211 .module = THIS_MODULE,
2212 .ctr = snapshot_ctr,
2213 .dtr = snapshot_dtr,
Mikulas Patocka3452c2a2009-12-10 23:52:31 +00002214 .map = snapshot_merge_map,
Mikulas Patockad698aa42009-12-10 23:52:30 +00002215 .end_io = snapshot_end_io,
Mikulas Patocka1e03f972009-12-10 23:52:32 +00002216 .presuspend = snapshot_merge_presuspend,
Mikulas Patockad698aa42009-12-10 23:52:30 +00002217 .preresume = snapshot_preresume,
Mikulas Patocka1e03f972009-12-10 23:52:32 +00002218 .resume = snapshot_merge_resume,
Mikulas Patockad698aa42009-12-10 23:52:30 +00002219 .status = snapshot_status,
2220 .iterate_devices = snapshot_iterate_devices,
2221};
2222
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223static int __init dm_snapshot_init(void)
2224{
2225 int r;
2226
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00002227 r = dm_exception_store_init();
2228 if (r) {
2229 DMERR("Failed to initialize exception stores");
2230 return r;
2231 }
2232
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 r = dm_register_target(&snapshot_target);
Mikulas Patockad698aa42009-12-10 23:52:30 +00002234 if (r < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 DMERR("snapshot target register failed %d", r);
Jonathan Brassow034a1862009-10-16 23:18:14 +01002236 goto bad_register_snapshot_target;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 }
2238
2239 r = dm_register_target(&origin_target);
2240 if (r < 0) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07002241 DMERR("Origin target register failed %d", r);
Mikulas Patockad698aa42009-12-10 23:52:30 +00002242 goto bad_register_origin_target;
2243 }
2244
2245 r = dm_register_target(&merge_target);
2246 if (r < 0) {
2247 DMERR("Merge target register failed %d", r);
2248 goto bad_register_merge_target;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 }
2250
2251 r = init_origin_hash();
2252 if (r) {
2253 DMERR("init_origin_hash failed.");
Mikulas Patockad698aa42009-12-10 23:52:30 +00002254 goto bad_origin_hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 }
2256
Jon Brassow1d4989c2009-12-10 23:52:10 +00002257 exception_cache = KMEM_CACHE(dm_exception, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 if (!exception_cache) {
2259 DMERR("Couldn't create exception cache.");
2260 r = -ENOMEM;
Mikulas Patockad698aa42009-12-10 23:52:30 +00002261 goto bad_exception_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 }
2263
Alasdair G Kergon028867a2007-07-12 17:26:32 +01002264 pending_cache = KMEM_CACHE(dm_snap_pending_exception, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 if (!pending_cache) {
2266 DMERR("Couldn't create pending cache.");
2267 r = -ENOMEM;
Mikulas Patockad698aa42009-12-10 23:52:30 +00002268 goto bad_pending_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 }
2270
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 return 0;
2272
Mikulas Patockad698aa42009-12-10 23:52:30 +00002273bad_pending_cache:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 kmem_cache_destroy(exception_cache);
Mikulas Patockad698aa42009-12-10 23:52:30 +00002275bad_exception_cache:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 exit_origin_hash();
Mikulas Patockad698aa42009-12-10 23:52:30 +00002277bad_origin_hash:
2278 dm_unregister_target(&merge_target);
2279bad_register_merge_target:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 dm_unregister_target(&origin_target);
Mikulas Patockad698aa42009-12-10 23:52:30 +00002281bad_register_origin_target:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 dm_unregister_target(&snapshot_target);
Jonathan Brassow034a1862009-10-16 23:18:14 +01002283bad_register_snapshot_target:
2284 dm_exception_store_exit();
Mikulas Patockad698aa42009-12-10 23:52:30 +00002285
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 return r;
2287}
2288
2289static void __exit dm_snapshot_exit(void)
2290{
Mikulas Patocka10d3bd02009-01-06 03:04:58 +00002291 dm_unregister_target(&snapshot_target);
2292 dm_unregister_target(&origin_target);
Mikulas Patockad698aa42009-12-10 23:52:30 +00002293 dm_unregister_target(&merge_target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294
2295 exit_origin_hash();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 kmem_cache_destroy(pending_cache);
2297 kmem_cache_destroy(exception_cache);
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00002298
2299 dm_exception_store_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300}
2301
2302/* Module hooks */
2303module_init(dm_snapshot_init);
2304module_exit(dm_snapshot_exit);
2305
2306MODULE_DESCRIPTION(DM_NAME " snapshot target");
2307MODULE_AUTHOR("Joe Thornber");
2308MODULE_LICENSE("GPL");
Mikulas Patocka23cb2102013-03-01 22:45:47 +00002309MODULE_ALIAS("dm-snapshot-origin");
2310MODULE_ALIAS("dm-snapshot-merge");