xref: /linux/drivers/md/dm-snap.c (revision 98f21c54f99519329c18e2625b0ea6db14524d09)
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * Copyright (C) 2001-2002 Sistina Software (UK) Limited.
4  *
5  * This file is released under the GPL.
6  */
7 
8 #include <linux/blkdev.h>
9 #include <linux/device-mapper.h>
10 #include <linux/delay.h>
11 #include <linux/fs.h>
12 #include <linux/init.h>
13 #include <linux/kdev_t.h>
14 #include <linux/list.h>
15 #include <linux/list_bl.h>
16 #include <linux/mempool.h>
17 #include <linux/module.h>
18 #include <linux/slab.h>
19 #include <linux/vmalloc.h>
20 #include <linux/log2.h>
21 #include <linux/dm-kcopyd.h>
22 
23 #include "dm.h"
24 
25 #include "dm-exception-store.h"
26 
27 #define DM_MSG_PREFIX "snapshots"
28 
29 static const char dm_snapshot_merge_target_name[] = "snapshot-merge";
30 
31 #define dm_target_is_snapshot_merge(ti) \
32 	((ti)->type->name == dm_snapshot_merge_target_name)
33 
34 /*
35  * The size of the mempool used to track chunks in use.
36  */
37 #define MIN_IOS 256
38 
39 #define DM_TRACKED_CHUNK_HASH_SIZE	16
40 #define DM_TRACKED_CHUNK_HASH(x)	((unsigned long)(x) & \
41 					 (DM_TRACKED_CHUNK_HASH_SIZE - 1))
42 
43 struct dm_hlist_head {
44 	struct hlist_head head;
45 	spinlock_t lock;
46 };
47 
48 struct dm_exception_table {
49 	uint32_t hash_mask;
50 	unsigned int hash_shift;
51 	struct dm_hlist_head *table;
52 };
53 
54 struct dm_snapshot {
55 	struct rw_semaphore lock;
56 
57 	struct dm_dev *origin;
58 	struct dm_dev *cow;
59 
60 	struct dm_target *ti;
61 
62 	/* List of snapshots per Origin */
63 	struct list_head list;
64 
65 	/*
66 	 * You can't use a snapshot if this is 0 (e.g. if full).
67 	 * A snapshot-merge target never clears this.
68 	 */
69 	int valid;
70 
71 	/*
72 	 * The snapshot overflowed because of a write to the snapshot device.
73 	 * We don't have to invalidate the snapshot in this case, but we need
74 	 * to prevent further writes.
75 	 */
76 	int snapshot_overflowed;
77 
78 	/* Origin writes don't trigger exceptions until this is set */
79 	int active;
80 
81 	atomic_t pending_exceptions_count;
82 
83 	spinlock_t pe_allocation_lock;
84 
85 	/* Protected by "pe_allocation_lock" */
86 	sector_t exception_start_sequence;
87 
88 	/* Protected by kcopyd single-threaded callback */
89 	sector_t exception_complete_sequence;
90 
91 	/*
92 	 * A list of pending exceptions that completed out of order.
93 	 * Protected by kcopyd single-threaded callback.
94 	 */
95 	struct rb_root out_of_order_tree;
96 
97 	mempool_t pending_pool;
98 
99 	struct dm_exception_table pending;
100 	struct dm_exception_table complete;
101 
102 	/*
103 	 * pe_lock protects all pending_exception operations and access
104 	 * as well as the snapshot_bios list.
105 	 */
106 	spinlock_t pe_lock;
107 
108 	/* Chunks with outstanding reads */
109 	spinlock_t tracked_chunk_lock;
110 	struct hlist_head tracked_chunk_hash[DM_TRACKED_CHUNK_HASH_SIZE];
111 
112 	/* The on disk metadata handler */
113 	struct dm_exception_store *store;
114 
115 	unsigned int in_progress;
116 	struct wait_queue_head in_progress_wait;
117 
118 	struct dm_kcopyd_client *kcopyd_client;
119 
120 	/* Wait for events based on state_bits */
121 	unsigned long state_bits;
122 
123 	/* Range of chunks currently being merged. */
124 	chunk_t first_merging_chunk;
125 	int num_merging_chunks;
126 
127 	/*
128 	 * The merge operation failed if this flag is set.
129 	 * Failure modes are handled as follows:
130 	 * - I/O error reading the header
131 	 *	=> don't load the target; abort.
132 	 * - Header does not have "valid" flag set
133 	 *	=> use the origin; forget about the snapshot.
134 	 * - I/O error when reading exceptions
135 	 *	=> don't load the target; abort.
136 	 *         (We can't use the intermediate origin state.)
137 	 * - I/O error while merging
138 	 *	=> stop merging; set merge_failed; process I/O normally.
139 	 */
140 	bool merge_failed:1;
141 
142 	bool discard_zeroes_cow:1;
143 	bool discard_passdown_origin:1;
144 
145 	/*
146 	 * Incoming bios that overlap with chunks being merged must wait
147 	 * for them to be committed.
148 	 */
149 	struct bio_list bios_queued_during_merge;
150 };
151 
152 /*
153  * state_bits:
154  *   RUNNING_MERGE  - Merge operation is in progress.
155  *   SHUTDOWN_MERGE - Set to signal that merge needs to be stopped;
156  *                    cleared afterwards.
157  */
158 #define RUNNING_MERGE          0
159 #define SHUTDOWN_MERGE         1
160 
161 /*
162  * Maximum number of chunks being copied on write.
163  *
164  * The value was decided experimentally as a trade-off between memory
165  * consumption, stalling the kernel's workqueues and maintaining a high enough
166  * throughput.
167  */
168 #define DEFAULT_COW_THRESHOLD 2048
169 
170 static unsigned int cow_threshold = DEFAULT_COW_THRESHOLD;
171 module_param_named(snapshot_cow_threshold, cow_threshold, uint, 0644);
172 MODULE_PARM_DESC(snapshot_cow_threshold, "Maximum number of chunks being copied on write");
173 
174 DECLARE_DM_KCOPYD_THROTTLE_WITH_MODULE_PARM(snapshot_copy_throttle,
175 		"A percentage of time allocated for copy on write");
176 
177 struct dm_dev *dm_snap_origin(struct dm_snapshot *s)
178 {
179 	return s->origin;
180 }
181 EXPORT_SYMBOL(dm_snap_origin);
182 
183 struct dm_dev *dm_snap_cow(struct dm_snapshot *s)
184 {
185 	return s->cow;
186 }
187 EXPORT_SYMBOL(dm_snap_cow);
188 
189 static sector_t chunk_to_sector(struct dm_exception_store *store,
190 				chunk_t chunk)
191 {
192 	return chunk << store->chunk_shift;
193 }
194 
195 static int bdev_equal(struct block_device *lhs, struct block_device *rhs)
196 {
197 	/*
198 	 * There is only ever one instance of a particular block
199 	 * device so we can compare pointers safely.
200 	 */
201 	return lhs == rhs;
202 }
203 
204 struct dm_snap_pending_exception {
205 	struct dm_exception e;
206 
207 	/*
208 	 * Origin buffers waiting for this to complete are held
209 	 * in a bio list
210 	 */
211 	struct bio_list origin_bios;
212 	struct bio_list snapshot_bios;
213 
214 	/* Pointer back to snapshot context */
215 	struct dm_snapshot *snap;
216 
217 	/*
218 	 * 1 indicates the exception has already been sent to
219 	 * kcopyd.
220 	 */
221 	int started;
222 
223 	/* There was copying error. */
224 	int copy_error;
225 
226 	/* A sequence number, it is used for in-order completion. */
227 	sector_t exception_sequence;
228 
229 	struct rb_node out_of_order_node;
230 
231 	/*
232 	 * For writing a complete chunk, bypassing the copy.
233 	 */
234 	struct bio *full_bio;
235 	bio_end_io_t *full_bio_end_io;
236 };
237 
238 /*
239  * Hash table mapping origin volumes to lists of snapshots and
240  * a lock to protect it
241  */
242 static struct kmem_cache *exception_cache;
243 static struct kmem_cache *pending_cache;
244 
245 struct dm_snap_tracked_chunk {
246 	struct hlist_node node;
247 	chunk_t chunk;
248 };
249 
250 static void init_tracked_chunk(struct bio *bio)
251 {
252 	struct dm_snap_tracked_chunk *c = dm_per_bio_data(bio, sizeof(struct dm_snap_tracked_chunk));
253 
254 	INIT_HLIST_NODE(&c->node);
255 }
256 
257 static bool is_bio_tracked(struct bio *bio)
258 {
259 	struct dm_snap_tracked_chunk *c = dm_per_bio_data(bio, sizeof(struct dm_snap_tracked_chunk));
260 
261 	return !hlist_unhashed(&c->node);
262 }
263 
264 static void track_chunk(struct dm_snapshot *s, struct bio *bio, chunk_t chunk)
265 {
266 	struct dm_snap_tracked_chunk *c = dm_per_bio_data(bio, sizeof(struct dm_snap_tracked_chunk));
267 
268 	c->chunk = chunk;
269 
270 	spin_lock_irq(&s->tracked_chunk_lock);
271 	hlist_add_head(&c->node,
272 		       &s->tracked_chunk_hash[DM_TRACKED_CHUNK_HASH(chunk)]);
273 	spin_unlock_irq(&s->tracked_chunk_lock);
274 }
275 
276 static void stop_tracking_chunk(struct dm_snapshot *s, struct bio *bio)
277 {
278 	struct dm_snap_tracked_chunk *c = dm_per_bio_data(bio, sizeof(struct dm_snap_tracked_chunk));
279 	unsigned long flags;
280 
281 	spin_lock_irqsave(&s->tracked_chunk_lock, flags);
282 	hlist_del(&c->node);
283 	spin_unlock_irqrestore(&s->tracked_chunk_lock, flags);
284 }
285 
286 static int __chunk_is_tracked(struct dm_snapshot *s, chunk_t chunk)
287 {
288 	struct dm_snap_tracked_chunk *c;
289 	int found = 0;
290 
291 	spin_lock_irq(&s->tracked_chunk_lock);
292 
293 	hlist_for_each_entry(c,
294 	    &s->tracked_chunk_hash[DM_TRACKED_CHUNK_HASH(chunk)], node) {
295 		if (c->chunk == chunk) {
296 			found = 1;
297 			break;
298 		}
299 	}
300 
301 	spin_unlock_irq(&s->tracked_chunk_lock);
302 
303 	return found;
304 }
305 
306 /*
307  * This conflicting I/O is extremely improbable in the caller,
308  * so fsleep(1000) is sufficient and there is no need for a wait queue.
309  */
310 static void __check_for_conflicting_io(struct dm_snapshot *s, chunk_t chunk)
311 {
312 	while (__chunk_is_tracked(s, chunk))
313 		fsleep(1000);
314 }
315 
316 /*
317  * One of these per registered origin, held in the snapshot_origins hash
318  */
319 struct origin {
320 	/* The origin device */
321 	struct block_device *bdev;
322 
323 	struct list_head hash_list;
324 
325 	/* List of snapshots for this origin */
326 	struct list_head snapshots;
327 };
328 
329 /*
330  * This structure is allocated for each origin target
331  */
332 struct dm_origin {
333 	struct dm_dev *dev;
334 	struct dm_target *ti;
335 	unsigned int split_boundary;
336 	struct list_head hash_list;
337 };
338 
339 /*
340  * Size of the hash table for origin volumes. If we make this
341  * the size of the minors list then it should be nearly perfect
342  */
343 #define ORIGIN_HASH_SIZE 256
344 #define ORIGIN_MASK      0xFF
345 static struct list_head *_origins;
346 static struct list_head *_dm_origins;
347 static struct rw_semaphore _origins_lock;
348 
349 static DECLARE_WAIT_QUEUE_HEAD(_pending_exceptions_done);
350 static DEFINE_SPINLOCK(_pending_exceptions_done_spinlock);
351 static uint64_t _pending_exceptions_done_count;
352 
353 static int init_origin_hash(void)
354 {
355 	int i;
356 
357 	_origins = kmalloc_objs(struct list_head, ORIGIN_HASH_SIZE);
358 	if (!_origins) {
359 		DMERR("unable to allocate memory for _origins");
360 		return -ENOMEM;
361 	}
362 	for (i = 0; i < ORIGIN_HASH_SIZE; i++)
363 		INIT_LIST_HEAD(_origins + i);
364 
365 	_dm_origins = kmalloc_objs(struct list_head, ORIGIN_HASH_SIZE);
366 	if (!_dm_origins) {
367 		DMERR("unable to allocate memory for _dm_origins");
368 		kfree(_origins);
369 		return -ENOMEM;
370 	}
371 	for (i = 0; i < ORIGIN_HASH_SIZE; i++)
372 		INIT_LIST_HEAD(_dm_origins + i);
373 
374 	init_rwsem(&_origins_lock);
375 
376 	return 0;
377 }
378 
379 static void exit_origin_hash(void)
380 {
381 	kfree(_origins);
382 	kfree(_dm_origins);
383 }
384 
385 static unsigned int origin_hash(struct block_device *bdev)
386 {
387 	return bdev->bd_dev & ORIGIN_MASK;
388 }
389 
390 static struct origin *__lookup_origin(struct block_device *origin)
391 {
392 	struct list_head *ol;
393 	struct origin *o;
394 
395 	ol = &_origins[origin_hash(origin)];
396 	list_for_each_entry(o, ol, hash_list)
397 		if (bdev_equal(o->bdev, origin))
398 			return o;
399 
400 	return NULL;
401 }
402 
403 static void __insert_origin(struct origin *o)
404 {
405 	struct list_head *sl = &_origins[origin_hash(o->bdev)];
406 
407 	list_add_tail(&o->hash_list, sl);
408 }
409 
410 static struct dm_origin *__lookup_dm_origin(struct block_device *origin)
411 {
412 	struct list_head *ol;
413 	struct dm_origin *o;
414 
415 	ol = &_dm_origins[origin_hash(origin)];
416 	list_for_each_entry(o, ol, hash_list)
417 		if (bdev_equal(o->dev->bdev, origin))
418 			return o;
419 
420 	return NULL;
421 }
422 
423 static void __insert_dm_origin(struct dm_origin *o)
424 {
425 	struct list_head *sl = &_dm_origins[origin_hash(o->dev->bdev)];
426 
427 	list_add_tail(&o->hash_list, sl);
428 }
429 
430 static void __remove_dm_origin(struct dm_origin *o)
431 {
432 	list_del(&o->hash_list);
433 }
434 
435 /*
436  * _origins_lock must be held when calling this function.
437  * Returns number of snapshots registered using the supplied cow device, plus:
438  * snap_src - a snapshot suitable for use as a source of exception handover
439  * snap_dest - a snapshot capable of receiving exception handover.
440  * snap_merge - an existing snapshot-merge target linked to the same origin.
441  *   There can be at most one snapshot-merge target. The parameter is optional.
442  *
443  * Possible return values and states of snap_src and snap_dest.
444  *   0: NULL, NULL  - first new snapshot
445  *   1: snap_src, NULL - normal snapshot
446  *   2: snap_src, snap_dest  - waiting for handover
447  *   2: snap_src, NULL - handed over, waiting for old to be deleted
448  *   1: NULL, snap_dest - source got destroyed without handover
449  */
450 static int __find_snapshots_sharing_cow(struct dm_snapshot *snap,
451 					struct dm_snapshot **snap_src,
452 					struct dm_snapshot **snap_dest,
453 					struct dm_snapshot **snap_merge)
454 {
455 	struct dm_snapshot *s;
456 	struct origin *o;
457 	int count = 0;
458 	int active;
459 
460 	o = __lookup_origin(snap->origin->bdev);
461 	if (!o)
462 		goto out;
463 
464 	list_for_each_entry(s, &o->snapshots, list) {
465 		if (dm_target_is_snapshot_merge(s->ti) && snap_merge)
466 			*snap_merge = s;
467 		if (!bdev_equal(s->cow->bdev, snap->cow->bdev))
468 			continue;
469 
470 		down_read(&s->lock);
471 		active = s->active;
472 		up_read(&s->lock);
473 
474 		if (active) {
475 			if (snap_src)
476 				*snap_src = s;
477 		} else if (snap_dest)
478 			*snap_dest = s;
479 
480 		count++;
481 	}
482 
483 out:
484 	return count;
485 }
486 
487 /*
488  * On success, returns 1 if this snapshot is a handover destination,
489  * otherwise returns 0.
490  */
491 static int __validate_exception_handover(struct dm_snapshot *snap)
492 {
493 	struct dm_snapshot *snap_src = NULL, *snap_dest = NULL;
494 	struct dm_snapshot *snap_merge = NULL;
495 
496 	/* Does snapshot need exceptions handed over to it? */
497 	if ((__find_snapshots_sharing_cow(snap, &snap_src, &snap_dest,
498 					  &snap_merge) == 2) ||
499 	    snap_dest) {
500 		snap->ti->error = "Snapshot cow pairing for exception table handover failed";
501 		return -EINVAL;
502 	}
503 
504 	/*
505 	 * If no snap_src was found, snap cannot become a handover
506 	 * destination.
507 	 */
508 	if (!snap_src)
509 		return 0;
510 
511 	/*
512 	 * Non-snapshot-merge handover?
513 	 */
514 	if (!dm_target_is_snapshot_merge(snap->ti))
515 		return 1;
516 
517 	/*
518 	 * Do not allow more than one merging snapshot.
519 	 */
520 	if (snap_merge) {
521 		snap->ti->error = "A snapshot is already merging.";
522 		return -EINVAL;
523 	}
524 
525 	if (!snap_src->store->type->prepare_merge ||
526 	    !snap_src->store->type->commit_merge) {
527 		snap->ti->error = "Snapshot exception store does not support snapshot-merge.";
528 		return -EINVAL;
529 	}
530 
531 	return 1;
532 }
533 
534 static void __insert_snapshot(struct origin *o, struct dm_snapshot *s)
535 {
536 	struct dm_snapshot *l;
537 
538 	/* Sort the list according to chunk size, largest-first smallest-last */
539 	list_for_each_entry(l, &o->snapshots, list)
540 		if (l->store->chunk_size < s->store->chunk_size)
541 			break;
542 	list_add_tail(&s->list, &l->list);
543 }
544 
545 /*
546  * Make a note of the snapshot and its origin so we can look it
547  * up when the origin has a write on it.
548  *
549  * Also validate snapshot exception store handovers.
550  * On success, returns 1 if this registration is a handover destination,
551  * otherwise returns 0.
552  */
553 static int register_snapshot(struct dm_snapshot *snap)
554 {
555 	struct origin *o, *new_o = NULL;
556 	struct block_device *bdev = snap->origin->bdev;
557 	int r = 0;
558 
559 	new_o = kmalloc_obj(*new_o);
560 	if (!new_o)
561 		return -ENOMEM;
562 
563 	down_write(&_origins_lock);
564 
565 	r = __validate_exception_handover(snap);
566 	if (r < 0) {
567 		kfree(new_o);
568 		goto out;
569 	}
570 
571 	o = __lookup_origin(bdev);
572 	if (o)
573 		kfree(new_o);
574 	else {
575 		/* New origin */
576 		o = new_o;
577 
578 		/* Initialise the struct */
579 		INIT_LIST_HEAD(&o->snapshots);
580 		o->bdev = bdev;
581 
582 		__insert_origin(o);
583 	}
584 
585 	__insert_snapshot(o, snap);
586 
587 out:
588 	up_write(&_origins_lock);
589 
590 	return r;
591 }
592 
593 /*
594  * Move snapshot to correct place in list according to chunk size.
595  */
596 static void reregister_snapshot(struct dm_snapshot *s)
597 {
598 	struct block_device *bdev = s->origin->bdev;
599 
600 	down_write(&_origins_lock);
601 
602 	list_del(&s->list);
603 	__insert_snapshot(__lookup_origin(bdev), s);
604 
605 	up_write(&_origins_lock);
606 }
607 
608 static void unregister_snapshot(struct dm_snapshot *s)
609 {
610 	struct origin *o;
611 
612 	down_write(&_origins_lock);
613 	o = __lookup_origin(s->origin->bdev);
614 
615 	list_del(&s->list);
616 	if (o && list_empty(&o->snapshots)) {
617 		list_del(&o->hash_list);
618 		kfree(o);
619 	}
620 
621 	up_write(&_origins_lock);
622 }
623 
624 /*
625  * Implementation of the exception hash tables.
626  * The lowest hash_shift bits of the chunk number are ignored, allowing
627  * some consecutive chunks to be grouped together.
628  */
629 static uint32_t exception_hash(struct dm_exception_table *et, chunk_t chunk);
630 
631 /* Lock to protect access to the completed and pending exception hash tables. */
632 struct dm_exception_table_lock {
633 	spinlock_t *complete_slot;
634 	spinlock_t *pending_slot;
635 };
636 
637 static void dm_exception_table_lock_init(struct dm_snapshot *s, chunk_t chunk,
638 					 struct dm_exception_table_lock *lock)
639 {
640 	struct dm_exception_table *complete = &s->complete;
641 	struct dm_exception_table *pending = &s->pending;
642 
643 	lock->complete_slot = &complete->table[exception_hash(complete, chunk)].lock;
644 	lock->pending_slot = &pending->table[exception_hash(pending, chunk)].lock;
645 }
646 
647 static void dm_exception_table_lock(struct dm_exception_table_lock *lock)
648 {
649 	spin_lock_nested(lock->complete_slot, 1);
650 	spin_lock_nested(lock->pending_slot, 2);
651 }
652 
653 static void dm_exception_table_unlock(struct dm_exception_table_lock *lock)
654 {
655 	spin_unlock(lock->pending_slot);
656 	spin_unlock(lock->complete_slot);
657 }
658 
659 static int dm_exception_table_init(struct dm_exception_table *et,
660 				   uint32_t size, unsigned int hash_shift)
661 {
662 	unsigned int i;
663 
664 	et->hash_shift = hash_shift;
665 	et->hash_mask = size - 1;
666 	et->table = kvmalloc_objs(struct dm_hlist_head, size);
667 	if (!et->table)
668 		return -ENOMEM;
669 
670 	for (i = 0; i < size; i++) {
671 		INIT_HLIST_HEAD(&et->table[i].head);
672 		spin_lock_init(&et->table[i].lock);
673 	}
674 
675 	return 0;
676 }
677 
678 static void dm_exception_table_exit(struct dm_exception_table *et,
679 				    struct kmem_cache *mem)
680 {
681 	struct dm_hlist_head *slot;
682 	struct dm_exception *ex;
683 	struct hlist_node *pos;
684 	int i, size;
685 
686 	size = et->hash_mask + 1;
687 	for (i = 0; i < size; i++) {
688 		slot = et->table + i;
689 
690 		hlist_for_each_entry_safe(ex, pos, &slot->head, hash_list) {
691 			hlist_del(&ex->hash_list);
692 			kmem_cache_free(mem, ex);
693 			cond_resched();
694 		}
695 	}
696 
697 	kvfree(et->table);
698 }
699 
700 static uint32_t exception_hash(struct dm_exception_table *et, chunk_t chunk)
701 {
702 	return (chunk >> et->hash_shift) & et->hash_mask;
703 }
704 
705 static void dm_remove_exception(struct dm_exception *e)
706 {
707 	hlist_del(&e->hash_list);
708 }
709 
710 /*
711  * Return the exception data for a sector, or NULL if not
712  * remapped.
713  */
714 static struct dm_exception *dm_lookup_exception(struct dm_exception_table *et,
715 						chunk_t chunk)
716 {
717 	struct hlist_head *slot;
718 	struct dm_exception *e;
719 
720 	slot = &et->table[exception_hash(et, chunk)].head;
721 	hlist_for_each_entry(e, slot, hash_list)
722 		if (chunk >= e->old_chunk &&
723 		    chunk <= e->old_chunk + dm_consecutive_chunk_count(e))
724 			return e;
725 
726 	return NULL;
727 }
728 
729 static struct dm_exception *alloc_completed_exception(gfp_t gfp)
730 {
731 	struct dm_exception *e;
732 
733 	e = kmem_cache_alloc(exception_cache, gfp);
734 	if (!e && gfp == GFP_NOIO)
735 		e = kmem_cache_alloc(exception_cache, GFP_ATOMIC);
736 
737 	return e;
738 }
739 
740 static void free_completed_exception(struct dm_exception *e)
741 {
742 	kmem_cache_free(exception_cache, e);
743 }
744 
745 static struct dm_snap_pending_exception *alloc_pending_exception(struct dm_snapshot *s)
746 {
747 	struct dm_snap_pending_exception *pe = mempool_alloc(&s->pending_pool,
748 							     GFP_NOIO);
749 
750 	atomic_inc(&s->pending_exceptions_count);
751 	pe->snap = s;
752 
753 	return pe;
754 }
755 
756 static void free_pending_exception(struct dm_snap_pending_exception *pe)
757 {
758 	struct dm_snapshot *s = pe->snap;
759 
760 	mempool_free(pe, &s->pending_pool);
761 	smp_mb__before_atomic();
762 	atomic_dec(&s->pending_exceptions_count);
763 }
764 
765 static void dm_insert_exception(struct dm_exception_table *eh,
766 				struct dm_exception *new_e)
767 {
768 	struct hlist_head *l;
769 	struct dm_exception *e = NULL;
770 
771 	l = &eh->table[exception_hash(eh, new_e->old_chunk)].head;
772 
773 	/* Add immediately if this table doesn't support consecutive chunks */
774 	if (!eh->hash_shift)
775 		goto out;
776 
777 	/* List is ordered by old_chunk */
778 	hlist_for_each_entry(e, l, hash_list) {
779 		/* Insert after an existing chunk? */
780 		if (new_e->old_chunk == (e->old_chunk +
781 					 dm_consecutive_chunk_count(e) + 1) &&
782 		    new_e->new_chunk == (dm_chunk_number(e->new_chunk) +
783 					 dm_consecutive_chunk_count(e) + 1)) {
784 			dm_consecutive_chunk_count_inc(e);
785 			free_completed_exception(new_e);
786 			return;
787 		}
788 
789 		/* Insert before an existing chunk? */
790 		if (new_e->old_chunk == (e->old_chunk - 1) &&
791 		    new_e->new_chunk == (dm_chunk_number(e->new_chunk) - 1)) {
792 			dm_consecutive_chunk_count_inc(e);
793 			e->old_chunk--;
794 			e->new_chunk--;
795 			free_completed_exception(new_e);
796 			return;
797 		}
798 
799 		if (new_e->old_chunk < e->old_chunk)
800 			break;
801 	}
802 
803 out:
804 	if (!e) {
805 		/*
806 		 * Either the table doesn't support consecutive chunks or slot
807 		 * l is empty.
808 		 */
809 		hlist_add_head(&new_e->hash_list, l);
810 	} else if (new_e->old_chunk < e->old_chunk) {
811 		/* Add before an existing exception */
812 		hlist_add_before(&new_e->hash_list, &e->hash_list);
813 	} else {
814 		/* Add to l's tail: e is the last exception in this slot */
815 		hlist_add_behind(&new_e->hash_list, &e->hash_list);
816 	}
817 }
818 
819 /*
820  * Callback used by the exception stores to load exceptions when
821  * initialising.
822  */
823 static int dm_add_exception(void *context, chunk_t old, chunk_t new)
824 {
825 	struct dm_snapshot *s = context;
826 	struct dm_exception *e;
827 
828 	e = alloc_completed_exception(GFP_KERNEL);
829 	if (!e)
830 		return -ENOMEM;
831 
832 	e->old_chunk = old;
833 
834 	/* Consecutive_count is implicitly initialised to zero */
835 	e->new_chunk = new;
836 
837 	dm_insert_exception(&s->complete, e);
838 
839 	return 0;
840 }
841 
842 /*
843  * Return a minimum chunk size of all snapshots that have the specified origin.
844  * Return zero if the origin has no snapshots.
845  */
846 static uint32_t __minimum_chunk_size(struct origin *o)
847 {
848 	struct dm_snapshot *snap;
849 	unsigned int chunk_size = rounddown_pow_of_two(UINT_MAX);
850 
851 	if (o)
852 		list_for_each_entry(snap, &o->snapshots, list)
853 			chunk_size = min_not_zero(chunk_size,
854 						  snap->store->chunk_size);
855 
856 	return (uint32_t) chunk_size;
857 }
858 
859 /*
860  * Hard coded magic.
861  */
862 static int calc_max_buckets(void)
863 {
864 	/* use a fixed size of 2MB */
865 	unsigned long mem = 2 * 1024 * 1024;
866 
867 	mem /= sizeof(struct dm_hlist_head);
868 
869 	return mem;
870 }
871 
872 /*
873  * Allocate room for a suitable hash table.
874  */
875 static int init_hash_tables(struct dm_snapshot *s)
876 {
877 	sector_t hash_size, cow_dev_size, max_buckets;
878 
879 	/*
880 	 * Calculate based on the size of the original volume or
881 	 * the COW volume...
882 	 */
883 	cow_dev_size = get_dev_size(s->cow->bdev);
884 	max_buckets = calc_max_buckets();
885 
886 	hash_size = cow_dev_size >> s->store->chunk_shift;
887 	hash_size = min(hash_size, max_buckets);
888 
889 	if (hash_size < 64)
890 		hash_size = 64;
891 	hash_size = rounddown_pow_of_two(hash_size);
892 	if (dm_exception_table_init(&s->complete, hash_size,
893 				    DM_CHUNK_CONSECUTIVE_BITS))
894 		return -ENOMEM;
895 
896 	/*
897 	 * Allocate hash table for in-flight exceptions
898 	 * Make this smaller than the real hash table
899 	 */
900 	hash_size >>= 3;
901 	if (hash_size < 64)
902 		hash_size = 64;
903 
904 	if (dm_exception_table_init(&s->pending, hash_size, 0)) {
905 		dm_exception_table_exit(&s->complete, exception_cache);
906 		return -ENOMEM;
907 	}
908 
909 	return 0;
910 }
911 
912 static void merge_shutdown(struct dm_snapshot *s)
913 {
914 	clear_and_wake_up_bit(RUNNING_MERGE, &s->state_bits);
915 }
916 
917 static struct bio *__release_queued_bios_after_merge(struct dm_snapshot *s)
918 {
919 	s->first_merging_chunk = 0;
920 	s->num_merging_chunks = 0;
921 
922 	return bio_list_get(&s->bios_queued_during_merge);
923 }
924 
925 /*
926  * Remove one chunk from the index of completed exceptions.
927  */
928 static int __remove_single_exception_chunk(struct dm_snapshot *s,
929 					   chunk_t old_chunk)
930 {
931 	struct dm_exception *e;
932 
933 	e = dm_lookup_exception(&s->complete, old_chunk);
934 	if (!e) {
935 		DMERR("Corruption detected: exception for block %llu is on disk but not in memory",
936 		      (unsigned long long)old_chunk);
937 		return -EINVAL;
938 	}
939 
940 	/*
941 	 * If this is the only chunk using this exception, remove exception.
942 	 */
943 	if (!dm_consecutive_chunk_count(e)) {
944 		dm_remove_exception(e);
945 		free_completed_exception(e);
946 		return 0;
947 	}
948 
949 	/*
950 	 * The chunk may be either at the beginning or the end of a
951 	 * group of consecutive chunks - never in the middle.  We are
952 	 * removing chunks in the opposite order to that in which they
953 	 * were added, so this should always be true.
954 	 * Decrement the consecutive chunk counter and adjust the
955 	 * starting point if necessary.
956 	 */
957 	if (old_chunk == e->old_chunk) {
958 		e->old_chunk++;
959 		e->new_chunk++;
960 	} else if (old_chunk != e->old_chunk +
961 		   dm_consecutive_chunk_count(e)) {
962 		DMERR("Attempt to merge block %llu from the middle of a chunk range [%llu - %llu]",
963 		      (unsigned long long)old_chunk,
964 		      (unsigned long long)e->old_chunk,
965 		      (unsigned long long)
966 		      e->old_chunk + dm_consecutive_chunk_count(e));
967 		return -EINVAL;
968 	}
969 
970 	dm_consecutive_chunk_count_dec(e);
971 
972 	return 0;
973 }
974 
975 static void flush_bios(struct bio *bio);
976 
977 static int remove_single_exception_chunk(struct dm_snapshot *s)
978 {
979 	struct bio *b = NULL;
980 	int r;
981 	chunk_t old_chunk = s->first_merging_chunk + s->num_merging_chunks - 1;
982 
983 	down_write(&s->lock);
984 
985 	/*
986 	 * Process chunks (and associated exceptions) in reverse order
987 	 * so that dm_consecutive_chunk_count_dec() accounting works.
988 	 */
989 	do {
990 		r = __remove_single_exception_chunk(s, old_chunk);
991 		if (r)
992 			goto out;
993 	} while (old_chunk-- > s->first_merging_chunk);
994 
995 	b = __release_queued_bios_after_merge(s);
996 
997 out:
998 	up_write(&s->lock);
999 	if (b)
1000 		flush_bios(b);
1001 
1002 	return r;
1003 }
1004 
1005 static int origin_write_extent(struct dm_snapshot *merging_snap,
1006 			       sector_t sector, unsigned int chunk_size);
1007 
1008 static void merge_callback(int read_err, unsigned long write_err,
1009 			   void *context);
1010 
1011 static uint64_t read_pending_exceptions_done_count(void)
1012 {
1013 	uint64_t pending_exceptions_done;
1014 
1015 	spin_lock(&_pending_exceptions_done_spinlock);
1016 	pending_exceptions_done = _pending_exceptions_done_count;
1017 	spin_unlock(&_pending_exceptions_done_spinlock);
1018 
1019 	return pending_exceptions_done;
1020 }
1021 
1022 static void increment_pending_exceptions_done_count(void)
1023 {
1024 	spin_lock(&_pending_exceptions_done_spinlock);
1025 	_pending_exceptions_done_count++;
1026 	spin_unlock(&_pending_exceptions_done_spinlock);
1027 
1028 	wake_up_all(&_pending_exceptions_done);
1029 }
1030 
1031 static void snapshot_merge_next_chunks(struct dm_snapshot *s)
1032 {
1033 	int i, linear_chunks;
1034 	chunk_t old_chunk, new_chunk;
1035 	struct dm_io_region src, dest;
1036 	sector_t io_size;
1037 	uint64_t previous_count;
1038 
1039 	BUG_ON(!test_bit(RUNNING_MERGE, &s->state_bits));
1040 	if (unlikely(test_bit(SHUTDOWN_MERGE, &s->state_bits)))
1041 		goto shut;
1042 
1043 	/*
1044 	 * valid flag never changes during merge, so no lock required.
1045 	 */
1046 	if (!s->valid) {
1047 		DMERR("Snapshot is invalid: can't merge");
1048 		goto shut;
1049 	}
1050 
1051 	linear_chunks = s->store->type->prepare_merge(s->store, &old_chunk,
1052 						      &new_chunk);
1053 	if (linear_chunks <= 0) {
1054 		if (linear_chunks < 0) {
1055 			DMERR("Read error in exception store: shutting down merge");
1056 			down_write(&s->lock);
1057 			s->merge_failed = true;
1058 			up_write(&s->lock);
1059 		}
1060 		goto shut;
1061 	}
1062 
1063 	/* Adjust old_chunk and new_chunk to reflect start of linear region */
1064 	old_chunk = old_chunk + 1 - linear_chunks;
1065 	new_chunk = new_chunk + 1 - linear_chunks;
1066 
1067 	/*
1068 	 * Use one (potentially large) I/O to copy all 'linear_chunks'
1069 	 * from the exception store to the origin
1070 	 */
1071 	io_size = linear_chunks * s->store->chunk_size;
1072 
1073 	dest.bdev = s->origin->bdev;
1074 	dest.sector = chunk_to_sector(s->store, old_chunk);
1075 	dest.count = min(io_size, get_dev_size(dest.bdev) - dest.sector);
1076 
1077 	src.bdev = s->cow->bdev;
1078 	src.sector = chunk_to_sector(s->store, new_chunk);
1079 	src.count = dest.count;
1080 
1081 	/*
1082 	 * Reallocate any exceptions needed in other snapshots then
1083 	 * wait for the pending exceptions to complete.
1084 	 * Each time any pending exception (globally on the system)
1085 	 * completes we are woken and repeat the process to find out
1086 	 * if we can proceed.  While this may not seem a particularly
1087 	 * efficient algorithm, it is not expected to have any
1088 	 * significant impact on performance.
1089 	 */
1090 	previous_count = read_pending_exceptions_done_count();
1091 	while (origin_write_extent(s, dest.sector, io_size)) {
1092 		wait_event(_pending_exceptions_done,
1093 			   (read_pending_exceptions_done_count() !=
1094 			    previous_count));
1095 		/* Retry after the wait, until all exceptions are done. */
1096 		previous_count = read_pending_exceptions_done_count();
1097 	}
1098 
1099 	down_write(&s->lock);
1100 	s->first_merging_chunk = old_chunk;
1101 	s->num_merging_chunks = linear_chunks;
1102 	up_write(&s->lock);
1103 
1104 	/* Wait until writes to all 'linear_chunks' drain */
1105 	for (i = 0; i < linear_chunks; i++)
1106 		__check_for_conflicting_io(s, old_chunk + i);
1107 
1108 	dm_kcopyd_copy(s->kcopyd_client, &src, 1, &dest, 0, merge_callback, s);
1109 	return;
1110 
1111 shut:
1112 	merge_shutdown(s);
1113 }
1114 
1115 static void error_bios(struct bio *bio);
1116 
1117 static void merge_callback(int read_err, unsigned long write_err, void *context)
1118 {
1119 	struct dm_snapshot *s = context;
1120 	struct bio *b = NULL;
1121 
1122 	if (read_err || write_err) {
1123 		if (read_err)
1124 			DMERR("Read error: shutting down merge.");
1125 		else
1126 			DMERR("Write error: shutting down merge.");
1127 		goto shut;
1128 	}
1129 
1130 	if (blkdev_issue_flush(s->origin->bdev) < 0) {
1131 		DMERR("Flush after merge failed: shutting down merge");
1132 		goto shut;
1133 	}
1134 
1135 	if (s->store->type->commit_merge(s->store,
1136 					 s->num_merging_chunks) < 0) {
1137 		DMERR("Write error in exception store: shutting down merge");
1138 		goto shut;
1139 	}
1140 
1141 	if (remove_single_exception_chunk(s) < 0)
1142 		goto shut;
1143 
1144 	snapshot_merge_next_chunks(s);
1145 
1146 	return;
1147 
1148 shut:
1149 	down_write(&s->lock);
1150 	s->merge_failed = true;
1151 	b = __release_queued_bios_after_merge(s);
1152 	up_write(&s->lock);
1153 	error_bios(b);
1154 
1155 	merge_shutdown(s);
1156 }
1157 
1158 static void start_merge(struct dm_snapshot *s)
1159 {
1160 	if (!test_and_set_bit(RUNNING_MERGE, &s->state_bits))
1161 		snapshot_merge_next_chunks(s);
1162 }
1163 
1164 /*
1165  * Stop the merging process and wait until it finishes.
1166  */
1167 static void stop_merge(struct dm_snapshot *s)
1168 {
1169 	set_bit(SHUTDOWN_MERGE, &s->state_bits);
1170 	wait_on_bit(&s->state_bits, RUNNING_MERGE, TASK_UNINTERRUPTIBLE);
1171 	clear_bit(SHUTDOWN_MERGE, &s->state_bits);
1172 }
1173 
1174 static int parse_snapshot_features(struct dm_arg_set *as, struct dm_snapshot *s,
1175 				   struct dm_target *ti)
1176 {
1177 	int r;
1178 	unsigned int argc;
1179 	const char *arg_name;
1180 
1181 	static const struct dm_arg _args[] = {
1182 		{0, 2, "Invalid number of feature arguments"},
1183 	};
1184 
1185 	/*
1186 	 * No feature arguments supplied.
1187 	 */
1188 	if (!as->argc)
1189 		return 0;
1190 
1191 	r = dm_read_arg_group(_args, as, &argc, &ti->error);
1192 	if (r)
1193 		return -EINVAL;
1194 
1195 	while (argc && !r) {
1196 		arg_name = dm_shift_arg(as);
1197 		argc--;
1198 
1199 		if (!strcasecmp(arg_name, "discard_zeroes_cow"))
1200 			s->discard_zeroes_cow = true;
1201 
1202 		else if (!strcasecmp(arg_name, "discard_passdown_origin"))
1203 			s->discard_passdown_origin = true;
1204 
1205 		else {
1206 			ti->error = "Unrecognised feature requested";
1207 			r = -EINVAL;
1208 			break;
1209 		}
1210 	}
1211 
1212 	if (!s->discard_zeroes_cow && s->discard_passdown_origin) {
1213 		/*
1214 		 * TODO: really these are disjoint.. but ti->num_discard_bios
1215 		 * and dm_bio_get_target_bio_nr() require rigid constraints.
1216 		 */
1217 		ti->error = "discard_passdown_origin feature depends on discard_zeroes_cow";
1218 		r = -EINVAL;
1219 	}
1220 
1221 	return r;
1222 }
1223 
1224 /*
1225  * Construct a snapshot mapping:
1226  * <origin_dev> <COW-dev> <p|po|n> <chunk-size> [<# feature args> [<arg>]*]
1227  */
1228 static int snapshot_ctr(struct dm_target *ti, unsigned int argc, char **argv)
1229 {
1230 	struct dm_snapshot *s;
1231 	struct dm_arg_set as;
1232 	int i;
1233 	int r = -EINVAL;
1234 	char *origin_path, *cow_path;
1235 	unsigned int args_used, num_flush_bios = 1;
1236 	blk_mode_t origin_mode = BLK_OPEN_READ;
1237 
1238 	if (argc < 4) {
1239 		ti->error = "requires 4 or more arguments";
1240 		r = -EINVAL;
1241 		goto bad;
1242 	}
1243 
1244 	if (dm_target_is_snapshot_merge(ti)) {
1245 		num_flush_bios = 2;
1246 		origin_mode = BLK_OPEN_WRITE;
1247 	}
1248 
1249 	s = kzalloc_obj(*s);
1250 	if (!s) {
1251 		ti->error = "Cannot allocate private snapshot structure";
1252 		r = -ENOMEM;
1253 		goto bad;
1254 	}
1255 
1256 	as.argc = argc;
1257 	as.argv = argv;
1258 	dm_consume_args(&as, 4);
1259 	r = parse_snapshot_features(&as, s, ti);
1260 	if (r)
1261 		goto bad_features;
1262 
1263 	origin_path = argv[0];
1264 	argv++;
1265 	argc--;
1266 
1267 	r = dm_get_device(ti, origin_path, origin_mode, &s->origin);
1268 	if (r) {
1269 		ti->error = "Cannot get origin device";
1270 		goto bad_origin;
1271 	}
1272 
1273 	cow_path = argv[0];
1274 	argv++;
1275 	argc--;
1276 
1277 	r = dm_get_device(ti, cow_path, dm_table_get_mode(ti->table), &s->cow);
1278 	if (r) {
1279 		ti->error = "Cannot get COW device";
1280 		goto bad_cow;
1281 	}
1282 	if (s->cow->bdev && s->cow->bdev == s->origin->bdev) {
1283 		ti->error = "COW device cannot be the same as origin device";
1284 		r = -EINVAL;
1285 		goto bad_store;
1286 	}
1287 
1288 	r = dm_exception_store_create(ti, argc, argv, s, &args_used, &s->store);
1289 	if (r) {
1290 		ti->error = "Couldn't create exception store";
1291 		r = -EINVAL;
1292 		goto bad_store;
1293 	}
1294 
1295 	argv += args_used;
1296 	argc -= args_used;
1297 
1298 	s->ti = ti;
1299 	s->valid = 1;
1300 	s->snapshot_overflowed = 0;
1301 	s->active = 0;
1302 	atomic_set(&s->pending_exceptions_count, 0);
1303 	spin_lock_init(&s->pe_allocation_lock);
1304 	s->exception_start_sequence = 0;
1305 	s->exception_complete_sequence = 0;
1306 	s->out_of_order_tree = RB_ROOT;
1307 	init_rwsem(&s->lock);
1308 	INIT_LIST_HEAD(&s->list);
1309 	spin_lock_init(&s->pe_lock);
1310 	s->state_bits = 0;
1311 	s->merge_failed = false;
1312 	s->first_merging_chunk = 0;
1313 	s->num_merging_chunks = 0;
1314 	bio_list_init(&s->bios_queued_during_merge);
1315 
1316 	/* Allocate hash table for COW data */
1317 	if (init_hash_tables(s)) {
1318 		ti->error = "Unable to allocate hash table space";
1319 		r = -ENOMEM;
1320 		goto bad_hash_tables;
1321 	}
1322 
1323 	init_waitqueue_head(&s->in_progress_wait);
1324 
1325 	s->kcopyd_client = dm_kcopyd_client_create(&dm_kcopyd_throttle);
1326 	if (IS_ERR(s->kcopyd_client)) {
1327 		r = PTR_ERR(s->kcopyd_client);
1328 		ti->error = "Could not create kcopyd client";
1329 		goto bad_kcopyd;
1330 	}
1331 
1332 	r = mempool_init_slab_pool(&s->pending_pool, MIN_IOS, pending_cache);
1333 	if (r) {
1334 		ti->error = "Could not allocate mempool for pending exceptions";
1335 		goto bad_pending_pool;
1336 	}
1337 
1338 	for (i = 0; i < DM_TRACKED_CHUNK_HASH_SIZE; i++)
1339 		INIT_HLIST_HEAD(&s->tracked_chunk_hash[i]);
1340 
1341 	spin_lock_init(&s->tracked_chunk_lock);
1342 
1343 	ti->private = s;
1344 	ti->num_flush_bios = num_flush_bios;
1345 	if (s->discard_zeroes_cow)
1346 		ti->num_discard_bios = (s->discard_passdown_origin ? 2 : 1);
1347 	ti->per_io_data_size = sizeof(struct dm_snap_tracked_chunk);
1348 
1349 	/* Add snapshot to the list of snapshots for this origin */
1350 	/* Exceptions aren't triggered till snapshot_resume() is called */
1351 	r = register_snapshot(s);
1352 	if (r == -ENOMEM) {
1353 		ti->error = "Snapshot origin struct allocation failed";
1354 		goto bad_load_and_register;
1355 	} else if (r < 0) {
1356 		/* invalid handover, register_snapshot has set ti->error */
1357 		goto bad_load_and_register;
1358 	}
1359 
1360 	/*
1361 	 * Metadata must only be loaded into one table at once, so skip this
1362 	 * if metadata will be handed over during resume.
1363 	 * Chunk size will be set during the handover - set it to zero to
1364 	 * ensure it's ignored.
1365 	 */
1366 	if (r > 0) {
1367 		s->store->chunk_size = 0;
1368 		return 0;
1369 	}
1370 
1371 	r = s->store->type->read_metadata(s->store, dm_add_exception,
1372 					  (void *)s);
1373 	if (r < 0) {
1374 		ti->error = "Failed to read snapshot metadata";
1375 		goto bad_read_metadata;
1376 	} else if (r > 0) {
1377 		s->valid = 0;
1378 		DMWARN("Snapshot is marked invalid.");
1379 	}
1380 
1381 	if (!s->store->chunk_size) {
1382 		ti->error = "Chunk size not set";
1383 		r = -EINVAL;
1384 		goto bad_read_metadata;
1385 	}
1386 
1387 	r = dm_set_target_max_io_len(ti, s->store->chunk_size);
1388 	if (r)
1389 		goto bad_read_metadata;
1390 
1391 	return 0;
1392 
1393 bad_read_metadata:
1394 	unregister_snapshot(s);
1395 bad_load_and_register:
1396 	mempool_exit(&s->pending_pool);
1397 bad_pending_pool:
1398 	dm_kcopyd_client_destroy(s->kcopyd_client);
1399 bad_kcopyd:
1400 	dm_exception_table_exit(&s->pending, pending_cache);
1401 	dm_exception_table_exit(&s->complete, exception_cache);
1402 bad_hash_tables:
1403 	dm_exception_store_destroy(s->store);
1404 bad_store:
1405 	dm_put_device(ti, s->cow);
1406 bad_cow:
1407 	dm_put_device(ti, s->origin);
1408 bad_origin:
1409 bad_features:
1410 	kfree(s);
1411 bad:
1412 	return r;
1413 }
1414 
1415 static void __free_exceptions(struct dm_snapshot *s)
1416 {
1417 	dm_kcopyd_client_destroy(s->kcopyd_client);
1418 	s->kcopyd_client = NULL;
1419 
1420 	dm_exception_table_exit(&s->pending, pending_cache);
1421 	dm_exception_table_exit(&s->complete, exception_cache);
1422 }
1423 
1424 static void __handover_exceptions(struct dm_snapshot *snap_src,
1425 				  struct dm_snapshot *snap_dest)
1426 {
1427 	union {
1428 		struct dm_exception_table table_swap;
1429 		struct dm_exception_store *store_swap;
1430 	} u;
1431 
1432 	/*
1433 	 * Swap all snapshot context information between the two instances.
1434 	 */
1435 	u.table_swap = snap_dest->complete;
1436 	snap_dest->complete = snap_src->complete;
1437 	snap_src->complete = u.table_swap;
1438 
1439 	u.store_swap = snap_dest->store;
1440 	snap_dest->store = snap_src->store;
1441 	snap_dest->store->userspace_supports_overflow = u.store_swap->userspace_supports_overflow;
1442 	snap_src->store = u.store_swap;
1443 
1444 	snap_dest->store->snap = snap_dest;
1445 	snap_src->store->snap = snap_src;
1446 
1447 	snap_dest->ti->max_io_len = snap_dest->store->chunk_size;
1448 	snap_dest->valid = snap_src->valid;
1449 	snap_dest->snapshot_overflowed = snap_src->snapshot_overflowed;
1450 
1451 	/*
1452 	 * Set source invalid to ensure it receives no further I/O.
1453 	 */
1454 	snap_src->valid = 0;
1455 }
1456 
1457 static void snapshot_dtr(struct dm_target *ti)
1458 {
1459 #ifdef CONFIG_DM_DEBUG
1460 	int i;
1461 #endif
1462 	struct dm_snapshot *s = ti->private;
1463 	struct dm_snapshot *snap_src = NULL, *snap_dest = NULL;
1464 
1465 	down_read(&_origins_lock);
1466 	/* Check whether exception handover must be cancelled */
1467 	(void) __find_snapshots_sharing_cow(s, &snap_src, &snap_dest, NULL);
1468 	if (snap_src && snap_dest && (s == snap_src)) {
1469 		down_write(&snap_dest->lock);
1470 		snap_dest->valid = 0;
1471 		up_write(&snap_dest->lock);
1472 		DMERR("Cancelling snapshot handover.");
1473 	}
1474 	up_read(&_origins_lock);
1475 
1476 	if (dm_target_is_snapshot_merge(ti))
1477 		stop_merge(s);
1478 
1479 	/* Prevent further origin writes from using this snapshot. */
1480 	/* After this returns there can be no new kcopyd jobs. */
1481 	unregister_snapshot(s);
1482 
1483 	while (atomic_read(&s->pending_exceptions_count))
1484 		fsleep(1000);
1485 	/*
1486 	 * Ensure instructions in mempool_exit aren't reordered
1487 	 * before atomic_read.
1488 	 */
1489 	smp_mb();
1490 
1491 #ifdef CONFIG_DM_DEBUG
1492 	for (i = 0; i < DM_TRACKED_CHUNK_HASH_SIZE; i++)
1493 		BUG_ON(!hlist_empty(&s->tracked_chunk_hash[i]));
1494 #endif
1495 
1496 	__free_exceptions(s);
1497 
1498 	mempool_exit(&s->pending_pool);
1499 
1500 	dm_exception_store_destroy(s->store);
1501 
1502 	dm_put_device(ti, s->cow);
1503 
1504 	dm_put_device(ti, s->origin);
1505 
1506 	WARN_ON(s->in_progress);
1507 
1508 	kfree(s);
1509 }
1510 
1511 static void account_start_copy(struct dm_snapshot *s)
1512 {
1513 	spin_lock(&s->in_progress_wait.lock);
1514 	s->in_progress++;
1515 	spin_unlock(&s->in_progress_wait.lock);
1516 }
1517 
1518 static void account_end_copy(struct dm_snapshot *s)
1519 {
1520 	spin_lock(&s->in_progress_wait.lock);
1521 	BUG_ON(!s->in_progress);
1522 	s->in_progress--;
1523 	if (likely(s->in_progress <= cow_threshold) &&
1524 	    unlikely(waitqueue_active(&s->in_progress_wait)))
1525 		wake_up_locked(&s->in_progress_wait);
1526 	spin_unlock(&s->in_progress_wait.lock);
1527 }
1528 
1529 static bool wait_for_in_progress(struct dm_snapshot *s, bool unlock_origins)
1530 {
1531 	if (unlikely(s->in_progress > cow_threshold)) {
1532 		spin_lock(&s->in_progress_wait.lock);
1533 		if (likely(s->in_progress > cow_threshold)) {
1534 			/*
1535 			 * NOTE: this throttle doesn't account for whether
1536 			 * the caller is servicing an IO that will trigger a COW
1537 			 * so excess throttling may result for chunks not required
1538 			 * to be COW'd.  But if cow_threshold was reached, extra
1539 			 * throttling is unlikely to negatively impact performance.
1540 			 */
1541 			DECLARE_WAITQUEUE(wait, current);
1542 
1543 			__add_wait_queue(&s->in_progress_wait, &wait);
1544 			__set_current_state(TASK_UNINTERRUPTIBLE);
1545 			spin_unlock(&s->in_progress_wait.lock);
1546 			if (unlock_origins)
1547 				up_read(&_origins_lock);
1548 			io_schedule();
1549 			remove_wait_queue(&s->in_progress_wait, &wait);
1550 			return false;
1551 		}
1552 		spin_unlock(&s->in_progress_wait.lock);
1553 	}
1554 	return true;
1555 }
1556 
1557 /*
1558  * Flush a list of buffers.
1559  */
1560 static void flush_bios(struct bio *bio)
1561 {
1562 	struct bio *n;
1563 
1564 	while (bio) {
1565 		n = bio->bi_next;
1566 		bio->bi_next = NULL;
1567 		submit_bio_noacct(bio);
1568 		bio = n;
1569 	}
1570 }
1571 
1572 static int do_origin(struct dm_dev *origin, struct bio *bio, bool limit);
1573 
1574 /*
1575  * Flush a list of buffers.
1576  */
1577 static void retry_origin_bios(struct dm_snapshot *s, struct bio *bio)
1578 {
1579 	struct bio *n;
1580 	int r;
1581 
1582 	while (bio) {
1583 		n = bio->bi_next;
1584 		bio->bi_next = NULL;
1585 		r = do_origin(s->origin, bio, false);
1586 		if (r == DM_MAPIO_REMAPPED)
1587 			submit_bio_noacct(bio);
1588 		bio = n;
1589 	}
1590 }
1591 
1592 /*
1593  * Error a list of buffers.
1594  */
1595 static void error_bios(struct bio *bio)
1596 {
1597 	struct bio *n;
1598 
1599 	while (bio) {
1600 		n = bio->bi_next;
1601 		bio->bi_next = NULL;
1602 		bio_io_error(bio);
1603 		bio = n;
1604 	}
1605 }
1606 
1607 static void __invalidate_snapshot(struct dm_snapshot *s, int err)
1608 {
1609 	if (!s->valid)
1610 		return;
1611 
1612 	if (err == -EIO)
1613 		DMERR("Invalidating snapshot: Error reading/writing.");
1614 	else if (err == -ENOMEM)
1615 		DMERR("Invalidating snapshot: Unable to allocate exception.");
1616 
1617 	if (s->store->type->drop_snapshot)
1618 		s->store->type->drop_snapshot(s->store);
1619 
1620 	s->valid = 0;
1621 
1622 	dm_table_event(s->ti->table);
1623 }
1624 
1625 static void invalidate_snapshot(struct dm_snapshot *s, int err)
1626 {
1627 	down_write(&s->lock);
1628 	__invalidate_snapshot(s, err);
1629 	up_write(&s->lock);
1630 }
1631 
1632 static void pending_complete(void *context, int success)
1633 {
1634 	struct dm_snap_pending_exception *pe = context;
1635 	struct dm_exception *e;
1636 	struct dm_snapshot *s = pe->snap;
1637 	struct bio *origin_bios = NULL;
1638 	struct bio *snapshot_bios = NULL;
1639 	struct bio *full_bio = NULL;
1640 	struct dm_exception_table_lock lock;
1641 	int error = 0;
1642 
1643 	dm_exception_table_lock_init(s, pe->e.old_chunk, &lock);
1644 
1645 	if (!success) {
1646 		/* Read/write error - snapshot is unusable */
1647 		invalidate_snapshot(s, -EIO);
1648 		error = 1;
1649 
1650 		dm_exception_table_lock(&lock);
1651 		goto out;
1652 	}
1653 
1654 	e = alloc_completed_exception(GFP_NOIO);
1655 	if (!e) {
1656 		invalidate_snapshot(s, -ENOMEM);
1657 		error = 1;
1658 
1659 		dm_exception_table_lock(&lock);
1660 		goto out;
1661 	}
1662 	*e = pe->e;
1663 
1664 	down_read(&s->lock);
1665 	dm_exception_table_lock(&lock);
1666 	if (!s->valid) {
1667 		up_read(&s->lock);
1668 		free_completed_exception(e);
1669 		error = 1;
1670 
1671 		goto out;
1672 	}
1673 
1674 	/*
1675 	 * Add a proper exception. After inserting the completed exception all
1676 	 * subsequent snapshot reads to this chunk will be redirected to the
1677 	 * COW device.  This ensures that we do not starve. Moreover, as long
1678 	 * as the pending exception exists, neither origin writes nor snapshot
1679 	 * merging can overwrite the chunk in origin.
1680 	 */
1681 	dm_insert_exception(&s->complete, e);
1682 	up_read(&s->lock);
1683 
1684 	/* Wait for conflicting reads to drain */
1685 	if (__chunk_is_tracked(s, pe->e.old_chunk)) {
1686 		dm_exception_table_unlock(&lock);
1687 		__check_for_conflicting_io(s, pe->e.old_chunk);
1688 		dm_exception_table_lock(&lock);
1689 	}
1690 
1691 out:
1692 	/* Remove the in-flight exception from the list */
1693 	dm_remove_exception(&pe->e);
1694 
1695 	dm_exception_table_unlock(&lock);
1696 
1697 	snapshot_bios = bio_list_get(&pe->snapshot_bios);
1698 	origin_bios = bio_list_get(&pe->origin_bios);
1699 	full_bio = pe->full_bio;
1700 	if (full_bio)
1701 		full_bio->bi_end_io = pe->full_bio_end_io;
1702 	increment_pending_exceptions_done_count();
1703 
1704 	/* Submit any pending write bios */
1705 	if (error) {
1706 		if (full_bio)
1707 			bio_io_error(full_bio);
1708 		error_bios(snapshot_bios);
1709 	} else {
1710 		if (full_bio)
1711 			bio_endio(full_bio);
1712 		flush_bios(snapshot_bios);
1713 	}
1714 
1715 	retry_origin_bios(s, origin_bios);
1716 
1717 	free_pending_exception(pe);
1718 }
1719 
1720 static void complete_exception(struct dm_snap_pending_exception *pe)
1721 {
1722 	struct dm_snapshot *s = pe->snap;
1723 
1724 	/* Update the metadata if we are persistent */
1725 	s->store->type->commit_exception(s->store, &pe->e, !pe->copy_error,
1726 					 pending_complete, pe);
1727 }
1728 
1729 /*
1730  * Called when the copy I/O has finished.  kcopyd actually runs
1731  * this code so don't block.
1732  */
1733 static void copy_callback(int read_err, unsigned long write_err, void *context)
1734 {
1735 	struct dm_snap_pending_exception *pe = context;
1736 	struct dm_snapshot *s = pe->snap;
1737 
1738 	pe->copy_error = read_err || write_err;
1739 
1740 	if (pe->exception_sequence == s->exception_complete_sequence) {
1741 		struct rb_node *next;
1742 
1743 		s->exception_complete_sequence++;
1744 		complete_exception(pe);
1745 
1746 		next = rb_first(&s->out_of_order_tree);
1747 		while (next) {
1748 			pe = rb_entry(next, struct dm_snap_pending_exception,
1749 					out_of_order_node);
1750 			if (pe->exception_sequence != s->exception_complete_sequence)
1751 				break;
1752 			next = rb_next(next);
1753 			s->exception_complete_sequence++;
1754 			rb_erase(&pe->out_of_order_node, &s->out_of_order_tree);
1755 			complete_exception(pe);
1756 			cond_resched();
1757 		}
1758 	} else {
1759 		struct rb_node *parent = NULL;
1760 		struct rb_node **p = &s->out_of_order_tree.rb_node;
1761 		struct dm_snap_pending_exception *pe2;
1762 
1763 		while (*p) {
1764 			pe2 = rb_entry(*p, struct dm_snap_pending_exception, out_of_order_node);
1765 			parent = *p;
1766 
1767 			BUG_ON(pe->exception_sequence == pe2->exception_sequence);
1768 			if (pe->exception_sequence < pe2->exception_sequence)
1769 				p = &((*p)->rb_left);
1770 			else
1771 				p = &((*p)->rb_right);
1772 		}
1773 
1774 		rb_link_node(&pe->out_of_order_node, parent, p);
1775 		rb_insert_color(&pe->out_of_order_node, &s->out_of_order_tree);
1776 	}
1777 	account_end_copy(s);
1778 }
1779 
1780 /*
1781  * Dispatches the copy operation to kcopyd.
1782  */
1783 static void start_copy(struct dm_snap_pending_exception *pe)
1784 {
1785 	struct dm_snapshot *s = pe->snap;
1786 	struct dm_io_region src, dest;
1787 	struct block_device *bdev = s->origin->bdev;
1788 	sector_t dev_size;
1789 
1790 	dev_size = get_dev_size(bdev);
1791 
1792 	src.bdev = bdev;
1793 	src.sector = chunk_to_sector(s->store, pe->e.old_chunk);
1794 	src.count = min((sector_t)s->store->chunk_size, dev_size - src.sector);
1795 
1796 	dest.bdev = s->cow->bdev;
1797 	dest.sector = chunk_to_sector(s->store, pe->e.new_chunk);
1798 	dest.count = src.count;
1799 
1800 	/* Hand over to kcopyd */
1801 	account_start_copy(s);
1802 	dm_kcopyd_copy(s->kcopyd_client, &src, 1, &dest, 0, copy_callback, pe);
1803 }
1804 
1805 static void full_bio_end_io(struct bio *bio)
1806 {
1807 	void *callback_data = bio->bi_private;
1808 
1809 	dm_kcopyd_do_callback(callback_data, 0, bio->bi_status ? 1 : 0);
1810 }
1811 
1812 static void start_full_bio(struct dm_snap_pending_exception *pe,
1813 			   struct bio *bio)
1814 {
1815 	struct dm_snapshot *s = pe->snap;
1816 	void *callback_data;
1817 
1818 	pe->full_bio = bio;
1819 	pe->full_bio_end_io = bio->bi_end_io;
1820 
1821 	account_start_copy(s);
1822 	callback_data = dm_kcopyd_prepare_callback(s->kcopyd_client,
1823 						   copy_callback, pe);
1824 
1825 	bio->bi_end_io = full_bio_end_io;
1826 	bio->bi_private = callback_data;
1827 
1828 	submit_bio_noacct(bio);
1829 }
1830 
1831 static struct dm_snap_pending_exception *
1832 __lookup_pending_exception(struct dm_snapshot *s, chunk_t chunk)
1833 {
1834 	struct dm_exception *e = dm_lookup_exception(&s->pending, chunk);
1835 
1836 	if (!e)
1837 		return NULL;
1838 
1839 	return container_of(e, struct dm_snap_pending_exception, e);
1840 }
1841 
1842 /*
1843  * Inserts a pending exception into the pending table.
1844  *
1845  * NOTE: a write lock must be held on the chunk's pending exception table slot
1846  * before calling this.
1847  */
1848 static struct dm_snap_pending_exception *
1849 __insert_pending_exception(struct dm_snapshot *s,
1850 			   struct dm_snap_pending_exception *pe, chunk_t chunk)
1851 {
1852 	pe->e.old_chunk = chunk;
1853 	bio_list_init(&pe->origin_bios);
1854 	bio_list_init(&pe->snapshot_bios);
1855 	pe->started = 0;
1856 	pe->full_bio = NULL;
1857 
1858 	spin_lock(&s->pe_allocation_lock);
1859 	if (s->store->type->prepare_exception(s->store, &pe->e)) {
1860 		spin_unlock(&s->pe_allocation_lock);
1861 		free_pending_exception(pe);
1862 		return NULL;
1863 	}
1864 
1865 	pe->exception_sequence = s->exception_start_sequence++;
1866 	spin_unlock(&s->pe_allocation_lock);
1867 
1868 	dm_insert_exception(&s->pending, &pe->e);
1869 
1870 	return pe;
1871 }
1872 
1873 /*
1874  * Looks to see if this snapshot already has a pending exception
1875  * for this chunk, otherwise it allocates a new one and inserts
1876  * it into the pending table.
1877  *
1878  * NOTE: a write lock must be held on the chunk's pending exception table slot
1879  * before calling this.
1880  */
1881 static struct dm_snap_pending_exception *
1882 __find_pending_exception(struct dm_snapshot *s,
1883 			 struct dm_snap_pending_exception *pe, chunk_t chunk)
1884 {
1885 	struct dm_snap_pending_exception *pe2;
1886 
1887 	pe2 = __lookup_pending_exception(s, chunk);
1888 	if (pe2) {
1889 		free_pending_exception(pe);
1890 		return pe2;
1891 	}
1892 
1893 	return __insert_pending_exception(s, pe, chunk);
1894 }
1895 
1896 static void remap_exception(struct dm_snapshot *s, struct dm_exception *e,
1897 			    struct bio *bio, chunk_t chunk)
1898 {
1899 	bio_set_dev(bio, s->cow->bdev);
1900 	bio->bi_iter.bi_sector =
1901 		chunk_to_sector(s->store, dm_chunk_number(e->new_chunk) +
1902 				(chunk - e->old_chunk)) +
1903 		(bio->bi_iter.bi_sector & s->store->chunk_mask);
1904 }
1905 
1906 static void zero_callback(int read_err, unsigned long write_err, void *context)
1907 {
1908 	struct bio *bio = context;
1909 	struct dm_snapshot *s = bio->bi_private;
1910 
1911 	account_end_copy(s);
1912 	bio->bi_status = write_err ? BLK_STS_IOERR : 0;
1913 	bio_endio(bio);
1914 }
1915 
1916 static void zero_exception(struct dm_snapshot *s, struct dm_exception *e,
1917 			   struct bio *bio, chunk_t chunk)
1918 {
1919 	struct dm_io_region dest;
1920 
1921 	dest.bdev = s->cow->bdev;
1922 	dest.sector = bio->bi_iter.bi_sector;
1923 	dest.count = s->store->chunk_size;
1924 
1925 	account_start_copy(s);
1926 	WARN_ON_ONCE(bio->bi_private);
1927 	bio->bi_private = s;
1928 	dm_kcopyd_zero(s->kcopyd_client, 1, &dest, 0, zero_callback, bio);
1929 }
1930 
1931 static bool io_overlaps_chunk(struct dm_snapshot *s, struct bio *bio)
1932 {
1933 	return bio->bi_iter.bi_size ==
1934 		(s->store->chunk_size << SECTOR_SHIFT);
1935 }
1936 
1937 static int snapshot_map(struct dm_target *ti, struct bio *bio)
1938 {
1939 	struct dm_exception *e;
1940 	struct dm_snapshot *s = ti->private;
1941 	int r = DM_MAPIO_REMAPPED;
1942 	chunk_t chunk;
1943 	struct dm_snap_pending_exception *pe = NULL;
1944 	struct dm_exception_table_lock lock;
1945 
1946 	init_tracked_chunk(bio);
1947 
1948 	if (bio->bi_opf & REQ_PREFLUSH) {
1949 		bio_set_dev(bio, s->cow->bdev);
1950 		return DM_MAPIO_REMAPPED;
1951 	}
1952 
1953 	chunk = sector_to_chunk(s->store, bio->bi_iter.bi_sector);
1954 	dm_exception_table_lock_init(s, chunk, &lock);
1955 
1956 	/* Full snapshots are not usable */
1957 	/* To get here the table must be live so s->active is always set. */
1958 	if (!s->valid)
1959 		return DM_MAPIO_KILL;
1960 
1961 	if (bio_data_dir(bio) == WRITE) {
1962 		while (unlikely(!wait_for_in_progress(s, false)))
1963 			; /* wait_for_in_progress() has slept */
1964 	}
1965 
1966 	down_read(&s->lock);
1967 	dm_exception_table_lock(&lock);
1968 
1969 	if (!s->valid || (unlikely(s->snapshot_overflowed) &&
1970 	    bio_data_dir(bio) == WRITE)) {
1971 		r = DM_MAPIO_KILL;
1972 		goto out_unlock;
1973 	}
1974 
1975 	if (unlikely(bio_op(bio) == REQ_OP_DISCARD)) {
1976 		if (s->discard_passdown_origin && dm_bio_get_target_bio_nr(bio)) {
1977 			/*
1978 			 * passdown discard to origin (without triggering
1979 			 * snapshot exceptions via do_origin; doing so would
1980 			 * defeat the goal of freeing space in origin that is
1981 			 * implied by the "discard_passdown_origin" feature)
1982 			 */
1983 			bio_set_dev(bio, s->origin->bdev);
1984 			track_chunk(s, bio, chunk);
1985 			goto out_unlock;
1986 		}
1987 		/* discard to snapshot (target_bio_nr == 0) zeroes exceptions */
1988 	}
1989 
1990 	/* If the block is already remapped - use that, else remap it */
1991 	e = dm_lookup_exception(&s->complete, chunk);
1992 	if (e) {
1993 		remap_exception(s, e, bio, chunk);
1994 		if (unlikely(bio_op(bio) == REQ_OP_DISCARD) &&
1995 		    io_overlaps_chunk(s, bio)) {
1996 			dm_exception_table_unlock(&lock);
1997 			up_read(&s->lock);
1998 			zero_exception(s, e, bio, chunk);
1999 			r = DM_MAPIO_SUBMITTED; /* discard is not issued */
2000 			goto out;
2001 		}
2002 		goto out_unlock;
2003 	}
2004 
2005 	if (unlikely(bio_op(bio) == REQ_OP_DISCARD)) {
2006 		/*
2007 		 * If no exception exists, complete discard immediately
2008 		 * otherwise it'll trigger copy-out.
2009 		 */
2010 		bio_endio(bio);
2011 		r = DM_MAPIO_SUBMITTED;
2012 		goto out_unlock;
2013 	}
2014 
2015 	/*
2016 	 * Write to snapshot - higher level takes care of RW/RO
2017 	 * flags so we should only get this if we are
2018 	 * writable.
2019 	 */
2020 	if (bio_data_dir(bio) == WRITE) {
2021 		pe = __lookup_pending_exception(s, chunk);
2022 		if (!pe) {
2023 			dm_exception_table_unlock(&lock);
2024 			pe = alloc_pending_exception(s);
2025 			dm_exception_table_lock(&lock);
2026 
2027 			e = dm_lookup_exception(&s->complete, chunk);
2028 			if (e) {
2029 				free_pending_exception(pe);
2030 				remap_exception(s, e, bio, chunk);
2031 				goto out_unlock;
2032 			}
2033 
2034 			pe = __find_pending_exception(s, pe, chunk);
2035 			if (!pe) {
2036 				dm_exception_table_unlock(&lock);
2037 				up_read(&s->lock);
2038 
2039 				down_write(&s->lock);
2040 
2041 				if (s->store->userspace_supports_overflow) {
2042 					if (s->valid && !s->snapshot_overflowed) {
2043 						s->snapshot_overflowed = 1;
2044 						DMERR("Snapshot overflowed: Unable to allocate exception.");
2045 					}
2046 				} else
2047 					__invalidate_snapshot(s, -ENOMEM);
2048 				up_write(&s->lock);
2049 
2050 				r = DM_MAPIO_KILL;
2051 				goto out;
2052 			}
2053 		}
2054 
2055 		remap_exception(s, &pe->e, bio, chunk);
2056 
2057 		r = DM_MAPIO_SUBMITTED;
2058 
2059 		if (!pe->started && io_overlaps_chunk(s, bio)) {
2060 			pe->started = 1;
2061 
2062 			dm_exception_table_unlock(&lock);
2063 			up_read(&s->lock);
2064 
2065 			start_full_bio(pe, bio);
2066 			goto out;
2067 		}
2068 
2069 		bio_list_add(&pe->snapshot_bios, bio);
2070 
2071 		if (!pe->started) {
2072 			/* this is protected by the exception table lock */
2073 			pe->started = 1;
2074 
2075 			dm_exception_table_unlock(&lock);
2076 			up_read(&s->lock);
2077 
2078 			start_copy(pe);
2079 			goto out;
2080 		}
2081 	} else {
2082 		bio_set_dev(bio, s->origin->bdev);
2083 		track_chunk(s, bio, chunk);
2084 	}
2085 
2086 out_unlock:
2087 	dm_exception_table_unlock(&lock);
2088 	up_read(&s->lock);
2089 out:
2090 	return r;
2091 }
2092 
2093 /*
2094  * A snapshot-merge target behaves like a combination of a snapshot
2095  * target and a snapshot-origin target.  It only generates new
2096  * exceptions in other snapshots and not in the one that is being
2097  * merged.
2098  *
2099  * For each chunk, if there is an existing exception, it is used to
2100  * redirect I/O to the cow device.  Otherwise I/O is sent to the origin,
2101  * which in turn might generate exceptions in other snapshots.
2102  * If merging is currently taking place on the chunk in question, the
2103  * I/O is deferred by adding it to s->bios_queued_during_merge.
2104  */
2105 static int snapshot_merge_map(struct dm_target *ti, struct bio *bio)
2106 {
2107 	struct dm_exception *e;
2108 	struct dm_snapshot *s = ti->private;
2109 	int r = DM_MAPIO_REMAPPED;
2110 	chunk_t chunk;
2111 
2112 	init_tracked_chunk(bio);
2113 
2114 	if (bio->bi_opf & REQ_PREFLUSH) {
2115 		if (!dm_bio_get_target_bio_nr(bio))
2116 			bio_set_dev(bio, s->origin->bdev);
2117 		else
2118 			bio_set_dev(bio, s->cow->bdev);
2119 		return DM_MAPIO_REMAPPED;
2120 	}
2121 
2122 	if (unlikely(bio_op(bio) == REQ_OP_DISCARD)) {
2123 		/* Once merging, discards no longer effect change */
2124 		bio_endio(bio);
2125 		return DM_MAPIO_SUBMITTED;
2126 	}
2127 
2128 	chunk = sector_to_chunk(s->store, bio->bi_iter.bi_sector);
2129 
2130 	down_write(&s->lock);
2131 
2132 	/* Full merging snapshots are redirected to the origin */
2133 	if (!s->valid)
2134 		goto redirect_to_origin;
2135 
2136 	/* If the block is already remapped - use that */
2137 	e = dm_lookup_exception(&s->complete, chunk);
2138 	if (e) {
2139 		/* Queue writes overlapping with chunks being merged */
2140 		if (bio_data_dir(bio) == WRITE &&
2141 		    chunk >= s->first_merging_chunk &&
2142 		    chunk < (s->first_merging_chunk +
2143 			     s->num_merging_chunks)) {
2144 			bio_set_dev(bio, s->origin->bdev);
2145 			bio_list_add(&s->bios_queued_during_merge, bio);
2146 			r = DM_MAPIO_SUBMITTED;
2147 			goto out_unlock;
2148 		}
2149 
2150 		remap_exception(s, e, bio, chunk);
2151 
2152 		if (bio_data_dir(bio) == WRITE)
2153 			track_chunk(s, bio, chunk);
2154 		goto out_unlock;
2155 	}
2156 
2157 redirect_to_origin:
2158 	bio_set_dev(bio, s->origin->bdev);
2159 
2160 	if (bio_data_dir(bio) == WRITE) {
2161 		up_write(&s->lock);
2162 		return do_origin(s->origin, bio, false);
2163 	}
2164 
2165 out_unlock:
2166 	up_write(&s->lock);
2167 
2168 	return r;
2169 }
2170 
2171 static int snapshot_end_io(struct dm_target *ti, struct bio *bio,
2172 		blk_status_t *error)
2173 {
2174 	struct dm_snapshot *s = ti->private;
2175 
2176 	if (is_bio_tracked(bio))
2177 		stop_tracking_chunk(s, bio);
2178 
2179 	return DM_ENDIO_DONE;
2180 }
2181 
2182 static void snapshot_merge_presuspend(struct dm_target *ti)
2183 {
2184 	struct dm_snapshot *s = ti->private;
2185 
2186 	stop_merge(s);
2187 }
2188 
2189 static int snapshot_preresume(struct dm_target *ti)
2190 {
2191 	int r = 0;
2192 	struct dm_snapshot *s = ti->private;
2193 	struct dm_snapshot *snap_src = NULL, *snap_dest = NULL;
2194 
2195 	down_read(&_origins_lock);
2196 	(void) __find_snapshots_sharing_cow(s, &snap_src, &snap_dest, NULL);
2197 	if (snap_src && snap_dest) {
2198 		down_read(&snap_src->lock);
2199 		if (s == snap_src) {
2200 			DMERR("Unable to resume snapshot source until handover completes.");
2201 			r = -EINVAL;
2202 		} else if (!dm_suspended(snap_src->ti)) {
2203 			DMERR("Unable to perform snapshot handover until source is suspended.");
2204 			r = -EINVAL;
2205 		}
2206 		up_read(&snap_src->lock);
2207 	}
2208 	up_read(&_origins_lock);
2209 
2210 	return r;
2211 }
2212 
2213 static void snapshot_resume(struct dm_target *ti)
2214 {
2215 	struct dm_snapshot *s = ti->private;
2216 	struct dm_snapshot *snap_src = NULL, *snap_dest = NULL, *snap_merging = NULL;
2217 	struct dm_origin *o;
2218 	struct mapped_device *origin_md = NULL;
2219 	bool must_restart_merging = false;
2220 
2221 	down_read(&_origins_lock);
2222 
2223 	o = __lookup_dm_origin(s->origin->bdev);
2224 	if (o)
2225 		origin_md = dm_table_get_md(o->ti->table);
2226 	if (!origin_md) {
2227 		(void) __find_snapshots_sharing_cow(s, NULL, NULL, &snap_merging);
2228 		if (snap_merging)
2229 			origin_md = dm_table_get_md(snap_merging->ti->table);
2230 	}
2231 	if (origin_md == dm_table_get_md(ti->table))
2232 		origin_md = NULL;
2233 	if (origin_md) {
2234 		if (dm_hold(origin_md))
2235 			origin_md = NULL;
2236 	}
2237 
2238 	up_read(&_origins_lock);
2239 
2240 	if (origin_md) {
2241 		dm_internal_suspend_fast(origin_md);
2242 		if (snap_merging && test_bit(RUNNING_MERGE, &snap_merging->state_bits)) {
2243 			must_restart_merging = true;
2244 			stop_merge(snap_merging);
2245 		}
2246 	}
2247 
2248 	down_read(&_origins_lock);
2249 
2250 	(void) __find_snapshots_sharing_cow(s, &snap_src, &snap_dest, NULL);
2251 	if (snap_src && snap_dest) {
2252 		down_write(&snap_src->lock);
2253 		down_write_nested(&snap_dest->lock, SINGLE_DEPTH_NESTING);
2254 		__handover_exceptions(snap_src, snap_dest);
2255 		up_write(&snap_dest->lock);
2256 		up_write(&snap_src->lock);
2257 	}
2258 
2259 	up_read(&_origins_lock);
2260 
2261 	if (origin_md) {
2262 		if (must_restart_merging)
2263 			start_merge(snap_merging);
2264 		dm_internal_resume_fast(origin_md);
2265 		dm_put(origin_md);
2266 	}
2267 
2268 	/* Now we have correct chunk size, reregister */
2269 	reregister_snapshot(s);
2270 
2271 	down_write(&s->lock);
2272 	s->active = 1;
2273 	up_write(&s->lock);
2274 }
2275 
2276 static uint32_t get_origin_minimum_chunksize(struct block_device *bdev)
2277 {
2278 	uint32_t min_chunksize;
2279 
2280 	down_read(&_origins_lock);
2281 	min_chunksize = __minimum_chunk_size(__lookup_origin(bdev));
2282 	up_read(&_origins_lock);
2283 
2284 	return min_chunksize;
2285 }
2286 
2287 static void snapshot_merge_resume(struct dm_target *ti)
2288 {
2289 	struct dm_snapshot *s = ti->private;
2290 
2291 	/*
2292 	 * Handover exceptions from existing snapshot.
2293 	 */
2294 	snapshot_resume(ti);
2295 
2296 	/*
2297 	 * snapshot-merge acts as an origin, so set ti->max_io_len
2298 	 */
2299 	ti->max_io_len = get_origin_minimum_chunksize(s->origin->bdev);
2300 
2301 	start_merge(s);
2302 }
2303 
2304 static void snapshot_status(struct dm_target *ti, status_type_t type,
2305 			    unsigned int status_flags, char *result, unsigned int maxlen)
2306 {
2307 	unsigned int sz = 0;
2308 	struct dm_snapshot *snap = ti->private;
2309 	unsigned int num_features;
2310 
2311 	switch (type) {
2312 	case STATUSTYPE_INFO:
2313 
2314 		down_write(&snap->lock);
2315 
2316 		if (!snap->valid)
2317 			DMEMIT("Invalid");
2318 		else if (snap->merge_failed)
2319 			DMEMIT("Merge failed");
2320 		else if (snap->snapshot_overflowed)
2321 			DMEMIT("Overflow");
2322 		else {
2323 			if (snap->store->type->usage) {
2324 				sector_t total_sectors, sectors_allocated,
2325 					 metadata_sectors;
2326 				snap->store->type->usage(snap->store,
2327 							 &total_sectors,
2328 							 &sectors_allocated,
2329 							 &metadata_sectors);
2330 				DMEMIT("%llu/%llu %llu",
2331 				       (unsigned long long)sectors_allocated,
2332 				       (unsigned long long)total_sectors,
2333 				       (unsigned long long)metadata_sectors);
2334 			} else
2335 				DMEMIT("Unknown");
2336 		}
2337 
2338 		up_write(&snap->lock);
2339 
2340 		break;
2341 
2342 	case STATUSTYPE_TABLE:
2343 		/*
2344 		 * kdevname returns a static pointer so we need
2345 		 * to make private copies if the output is to
2346 		 * make sense.
2347 		 */
2348 		DMEMIT("%s %s", snap->origin->name, snap->cow->name);
2349 		sz += snap->store->type->status(snap->store, type, result + sz,
2350 						maxlen - sz);
2351 		num_features = snap->discard_zeroes_cow + snap->discard_passdown_origin;
2352 		if (num_features) {
2353 			DMEMIT(" %u", num_features);
2354 			if (snap->discard_zeroes_cow)
2355 				DMEMIT(" discard_zeroes_cow");
2356 			if (snap->discard_passdown_origin)
2357 				DMEMIT(" discard_passdown_origin");
2358 		}
2359 		break;
2360 
2361 	case STATUSTYPE_IMA:
2362 		DMEMIT_TARGET_NAME_VERSION(ti->type);
2363 		DMEMIT(",snap_origin_name=%s", snap->origin->name);
2364 		DMEMIT(",snap_cow_name=%s", snap->cow->name);
2365 		DMEMIT(",snap_valid=%c", snap->valid ? 'y' : 'n');
2366 		DMEMIT(",snap_merge_failed=%c", snap->merge_failed ? 'y' : 'n');
2367 		DMEMIT(",snapshot_overflowed=%c", snap->snapshot_overflowed ? 'y' : 'n');
2368 		DMEMIT(";");
2369 		break;
2370 	}
2371 }
2372 
2373 static int snapshot_iterate_devices(struct dm_target *ti,
2374 				    iterate_devices_callout_fn fn, void *data)
2375 {
2376 	struct dm_snapshot *snap = ti->private;
2377 	int r;
2378 
2379 	r = fn(ti, snap->origin, 0, ti->len, data);
2380 
2381 	if (!r)
2382 		r = fn(ti, snap->cow, 0, get_dev_size(snap->cow->bdev), data);
2383 
2384 	return r;
2385 }
2386 
2387 static void snapshot_io_hints(struct dm_target *ti, struct queue_limits *limits)
2388 {
2389 	struct dm_snapshot *snap = ti->private;
2390 
2391 	if (snap->discard_zeroes_cow) {
2392 		struct dm_snapshot *snap_src = NULL, *snap_dest = NULL;
2393 
2394 		down_read(&_origins_lock);
2395 
2396 		(void) __find_snapshots_sharing_cow(snap, &snap_src, &snap_dest, NULL);
2397 		if (snap_src && snap_dest)
2398 			snap = snap_src;
2399 
2400 		/* All discards are split on chunk_size boundary */
2401 		limits->discard_granularity = snap->store->chunk_size;
2402 		limits->max_hw_discard_sectors = snap->store->chunk_size;
2403 
2404 		up_read(&_origins_lock);
2405 	}
2406 }
2407 
2408 /*
2409  *---------------------------------------------------------------
2410  * Origin methods
2411  *---------------------------------------------------------------
2412  */
2413 /*
2414  * If no exceptions need creating, DM_MAPIO_REMAPPED is returned and any
2415  * supplied bio was ignored.  The caller may submit it immediately.
2416  * (No remapping actually occurs as the origin is always a direct linear
2417  * map.)
2418  *
2419  * If further exceptions are required, DM_MAPIO_SUBMITTED is returned
2420  * and any supplied bio is added to a list to be submitted once all
2421  * the necessary exceptions exist.
2422  */
2423 static int __origin_write(struct list_head *snapshots, sector_t sector,
2424 			  struct bio *bio)
2425 {
2426 	int r = DM_MAPIO_REMAPPED;
2427 	struct dm_snapshot *snap;
2428 	struct dm_exception *e;
2429 	struct dm_snap_pending_exception *pe, *pe2;
2430 	struct dm_snap_pending_exception *pe_to_start_now = NULL;
2431 	struct dm_snap_pending_exception *pe_to_start_last = NULL;
2432 	struct dm_exception_table_lock lock;
2433 	chunk_t chunk;
2434 
2435 	/* Do all the snapshots on this origin */
2436 	list_for_each_entry(snap, snapshots, list) {
2437 		/*
2438 		 * Don't make new exceptions in a merging snapshot
2439 		 * because it has effectively been deleted
2440 		 */
2441 		if (dm_target_is_snapshot_merge(snap->ti))
2442 			continue;
2443 
2444 		/* Nothing to do if writing beyond end of snapshot */
2445 		if (sector >= dm_table_get_size(snap->ti->table))
2446 			continue;
2447 
2448 		/*
2449 		 * Remember, different snapshots can have
2450 		 * different chunk sizes.
2451 		 */
2452 		chunk = sector_to_chunk(snap->store, sector);
2453 		dm_exception_table_lock_init(snap, chunk, &lock);
2454 
2455 		down_read(&snap->lock);
2456 		dm_exception_table_lock(&lock);
2457 
2458 		/* Only deal with valid and active snapshots */
2459 		if (!snap->valid || !snap->active)
2460 			goto next_snapshot;
2461 
2462 		pe = __lookup_pending_exception(snap, chunk);
2463 		if (!pe) {
2464 			/*
2465 			 * Check exception table to see if block is already
2466 			 * remapped in this snapshot and trigger an exception
2467 			 * if not.
2468 			 */
2469 			e = dm_lookup_exception(&snap->complete, chunk);
2470 			if (e)
2471 				goto next_snapshot;
2472 
2473 			dm_exception_table_unlock(&lock);
2474 			pe = alloc_pending_exception(snap);
2475 			dm_exception_table_lock(&lock);
2476 
2477 			pe2 = __lookup_pending_exception(snap, chunk);
2478 
2479 			if (!pe2) {
2480 				e = dm_lookup_exception(&snap->complete, chunk);
2481 				if (e) {
2482 					free_pending_exception(pe);
2483 					goto next_snapshot;
2484 				}
2485 
2486 				pe = __insert_pending_exception(snap, pe, chunk);
2487 				if (!pe) {
2488 					dm_exception_table_unlock(&lock);
2489 					up_read(&snap->lock);
2490 
2491 					invalidate_snapshot(snap, -ENOMEM);
2492 					continue;
2493 				}
2494 			} else {
2495 				free_pending_exception(pe);
2496 				pe = pe2;
2497 			}
2498 		}
2499 
2500 		r = DM_MAPIO_SUBMITTED;
2501 
2502 		/*
2503 		 * If an origin bio was supplied, queue it to wait for the
2504 		 * completion of this exception, and start this one last,
2505 		 * at the end of the function.
2506 		 */
2507 		if (bio) {
2508 			bio_list_add(&pe->origin_bios, bio);
2509 			bio = NULL;
2510 
2511 			if (!pe->started) {
2512 				pe->started = 1;
2513 				pe_to_start_last = pe;
2514 			}
2515 		}
2516 
2517 		if (!pe->started) {
2518 			pe->started = 1;
2519 			pe_to_start_now = pe;
2520 		}
2521 
2522 next_snapshot:
2523 		dm_exception_table_unlock(&lock);
2524 		up_read(&snap->lock);
2525 
2526 		if (pe_to_start_now) {
2527 			start_copy(pe_to_start_now);
2528 			pe_to_start_now = NULL;
2529 		}
2530 	}
2531 
2532 	/*
2533 	 * Submit the exception against which the bio is queued last,
2534 	 * to give the other exceptions a head start.
2535 	 */
2536 	if (pe_to_start_last)
2537 		start_copy(pe_to_start_last);
2538 
2539 	return r;
2540 }
2541 
2542 /*
2543  * Called on a write from the origin driver.
2544  */
2545 static int do_origin(struct dm_dev *origin, struct bio *bio, bool limit)
2546 {
2547 	struct origin *o;
2548 	int r = DM_MAPIO_REMAPPED;
2549 
2550 again:
2551 	down_read(&_origins_lock);
2552 	o = __lookup_origin(origin->bdev);
2553 	if (o) {
2554 		if (limit) {
2555 			struct dm_snapshot *s;
2556 
2557 			list_for_each_entry(s, &o->snapshots, list)
2558 				if (unlikely(!wait_for_in_progress(s, true)))
2559 					goto again;
2560 		}
2561 
2562 		r = __origin_write(&o->snapshots, bio->bi_iter.bi_sector, bio);
2563 	}
2564 	up_read(&_origins_lock);
2565 
2566 	return r;
2567 }
2568 
2569 /*
2570  * Trigger exceptions in all non-merging snapshots.
2571  *
2572  * The chunk size of the merging snapshot may be larger than the chunk
2573  * size of some other snapshot so we may need to reallocate multiple
2574  * chunks in other snapshots.
2575  *
2576  * We scan all the overlapping exceptions in the other snapshots.
2577  * Returns 1 if anything was reallocated and must be waited for,
2578  * otherwise returns 0.
2579  *
2580  * size must be a multiple of merging_snap's chunk_size.
2581  */
2582 static int origin_write_extent(struct dm_snapshot *merging_snap,
2583 			       sector_t sector, unsigned int size)
2584 {
2585 	int must_wait = 0;
2586 	sector_t n;
2587 	struct origin *o;
2588 
2589 	/*
2590 	 * The origin's __minimum_chunk_size() got stored in max_io_len
2591 	 * by snapshot_merge_resume().
2592 	 */
2593 	down_read(&_origins_lock);
2594 	o = __lookup_origin(merging_snap->origin->bdev);
2595 	for (n = 0; n < size; n += merging_snap->ti->max_io_len)
2596 		if (__origin_write(&o->snapshots, sector + n, NULL) ==
2597 		    DM_MAPIO_SUBMITTED)
2598 			must_wait = 1;
2599 	up_read(&_origins_lock);
2600 
2601 	return must_wait;
2602 }
2603 
2604 /*
2605  * Origin: maps a linear range of a device, with hooks for snapshotting.
2606  */
2607 
2608 /*
2609  * Construct an origin mapping: <dev_path>
2610  * The context for an origin is merely a 'struct dm_dev *'
2611  * pointing to the real device.
2612  */
2613 static int origin_ctr(struct dm_target *ti, unsigned int argc, char **argv)
2614 {
2615 	int r;
2616 	struct dm_origin *o;
2617 
2618 	if (argc != 1) {
2619 		ti->error = "origin: incorrect number of arguments";
2620 		return -EINVAL;
2621 	}
2622 
2623 	o = kmalloc_obj(struct dm_origin);
2624 	if (!o) {
2625 		ti->error = "Cannot allocate private origin structure";
2626 		r = -ENOMEM;
2627 		goto bad_alloc;
2628 	}
2629 
2630 	r = dm_get_device(ti, argv[0], dm_table_get_mode(ti->table), &o->dev);
2631 	if (r) {
2632 		ti->error = "Cannot get target device";
2633 		goto bad_open;
2634 	}
2635 
2636 	o->ti = ti;
2637 	ti->private = o;
2638 	ti->num_flush_bios = 1;
2639 
2640 	return 0;
2641 
2642 bad_open:
2643 	kfree(o);
2644 bad_alloc:
2645 	return r;
2646 }
2647 
2648 static void origin_dtr(struct dm_target *ti)
2649 {
2650 	struct dm_origin *o = ti->private;
2651 
2652 	dm_put_device(ti, o->dev);
2653 	kfree(o);
2654 }
2655 
2656 static int origin_map(struct dm_target *ti, struct bio *bio)
2657 {
2658 	struct dm_origin *o = ti->private;
2659 	unsigned int available_sectors;
2660 
2661 	bio_set_dev(bio, o->dev->bdev);
2662 
2663 	if (unlikely(bio->bi_opf & REQ_PREFLUSH))
2664 		return DM_MAPIO_REMAPPED;
2665 
2666 	if (bio_data_dir(bio) != WRITE)
2667 		return DM_MAPIO_REMAPPED;
2668 
2669 	available_sectors = o->split_boundary -
2670 		((unsigned int)bio->bi_iter.bi_sector & (o->split_boundary - 1));
2671 
2672 	if (bio_sectors(bio) > available_sectors)
2673 		dm_accept_partial_bio(bio, available_sectors);
2674 
2675 	/* Only tell snapshots if this is a write */
2676 	return do_origin(o->dev, bio, true);
2677 }
2678 
2679 /*
2680  * Set the target "max_io_len" field to the minimum of all the snapshots'
2681  * chunk sizes.
2682  */
2683 static void origin_resume(struct dm_target *ti)
2684 {
2685 	struct dm_origin *o = ti->private;
2686 
2687 	o->split_boundary = get_origin_minimum_chunksize(o->dev->bdev);
2688 
2689 	down_write(&_origins_lock);
2690 	__insert_dm_origin(o);
2691 	up_write(&_origins_lock);
2692 }
2693 
2694 static void origin_postsuspend(struct dm_target *ti)
2695 {
2696 	struct dm_origin *o = ti->private;
2697 
2698 	down_write(&_origins_lock);
2699 	__remove_dm_origin(o);
2700 	up_write(&_origins_lock);
2701 }
2702 
2703 static void origin_status(struct dm_target *ti, status_type_t type,
2704 			  unsigned int status_flags, char *result, unsigned int maxlen)
2705 {
2706 	struct dm_origin *o = ti->private;
2707 
2708 	switch (type) {
2709 	case STATUSTYPE_INFO:
2710 		result[0] = '\0';
2711 		break;
2712 
2713 	case STATUSTYPE_TABLE:
2714 		snprintf(result, maxlen, "%s", o->dev->name);
2715 		break;
2716 	case STATUSTYPE_IMA:
2717 		result[0] = '\0';
2718 		break;
2719 	}
2720 }
2721 
2722 static int origin_iterate_devices(struct dm_target *ti,
2723 				  iterate_devices_callout_fn fn, void *data)
2724 {
2725 	struct dm_origin *o = ti->private;
2726 
2727 	return fn(ti, o->dev, 0, ti->len, data);
2728 }
2729 
2730 static struct target_type origin_target = {
2731 	.name    = "snapshot-origin",
2732 	.version = {1, 9, 0},
2733 	.module  = THIS_MODULE,
2734 	.ctr     = origin_ctr,
2735 	.dtr     = origin_dtr,
2736 	.map     = origin_map,
2737 	.resume  = origin_resume,
2738 	.postsuspend = origin_postsuspend,
2739 	.status  = origin_status,
2740 	.iterate_devices = origin_iterate_devices,
2741 };
2742 
2743 static struct target_type snapshot_target = {
2744 	.name    = "snapshot",
2745 	.version = {1, 16, 0},
2746 	.module  = THIS_MODULE,
2747 	.ctr     = snapshot_ctr,
2748 	.dtr     = snapshot_dtr,
2749 	.map     = snapshot_map,
2750 	.end_io  = snapshot_end_io,
2751 	.preresume  = snapshot_preresume,
2752 	.resume  = snapshot_resume,
2753 	.status  = snapshot_status,
2754 	.iterate_devices = snapshot_iterate_devices,
2755 	.io_hints = snapshot_io_hints,
2756 };
2757 
2758 static struct target_type merge_target = {
2759 	.name    = dm_snapshot_merge_target_name,
2760 	.version = {1, 5, 0},
2761 	.module  = THIS_MODULE,
2762 	.ctr     = snapshot_ctr,
2763 	.dtr     = snapshot_dtr,
2764 	.map     = snapshot_merge_map,
2765 	.end_io  = snapshot_end_io,
2766 	.presuspend = snapshot_merge_presuspend,
2767 	.preresume  = snapshot_preresume,
2768 	.resume  = snapshot_merge_resume,
2769 	.status  = snapshot_status,
2770 	.iterate_devices = snapshot_iterate_devices,
2771 	.io_hints = snapshot_io_hints,
2772 };
2773 
2774 static int __init dm_snapshot_init(void)
2775 {
2776 	int r;
2777 
2778 	r = dm_exception_store_init();
2779 	if (r) {
2780 		DMERR("Failed to initialize exception stores");
2781 		return r;
2782 	}
2783 
2784 	r = init_origin_hash();
2785 	if (r) {
2786 		DMERR("init_origin_hash failed.");
2787 		goto bad_origin_hash;
2788 	}
2789 
2790 	exception_cache = KMEM_CACHE(dm_exception, 0);
2791 	if (!exception_cache) {
2792 		DMERR("Couldn't create exception cache.");
2793 		r = -ENOMEM;
2794 		goto bad_exception_cache;
2795 	}
2796 
2797 	pending_cache = KMEM_CACHE(dm_snap_pending_exception, 0);
2798 	if (!pending_cache) {
2799 		DMERR("Couldn't create pending cache.");
2800 		r = -ENOMEM;
2801 		goto bad_pending_cache;
2802 	}
2803 
2804 	r = dm_register_target(&snapshot_target);
2805 	if (r < 0)
2806 		goto bad_register_snapshot_target;
2807 
2808 	r = dm_register_target(&origin_target);
2809 	if (r < 0)
2810 		goto bad_register_origin_target;
2811 
2812 	r = dm_register_target(&merge_target);
2813 	if (r < 0)
2814 		goto bad_register_merge_target;
2815 
2816 	return 0;
2817 
2818 bad_register_merge_target:
2819 	dm_unregister_target(&origin_target);
2820 bad_register_origin_target:
2821 	dm_unregister_target(&snapshot_target);
2822 bad_register_snapshot_target:
2823 	kmem_cache_destroy(pending_cache);
2824 bad_pending_cache:
2825 	kmem_cache_destroy(exception_cache);
2826 bad_exception_cache:
2827 	exit_origin_hash();
2828 bad_origin_hash:
2829 	dm_exception_store_exit();
2830 
2831 	return r;
2832 }
2833 
2834 static void __exit dm_snapshot_exit(void)
2835 {
2836 	dm_unregister_target(&snapshot_target);
2837 	dm_unregister_target(&origin_target);
2838 	dm_unregister_target(&merge_target);
2839 
2840 	exit_origin_hash();
2841 	kmem_cache_destroy(pending_cache);
2842 	kmem_cache_destroy(exception_cache);
2843 
2844 	dm_exception_store_exit();
2845 }
2846 
2847 /* Module hooks */
2848 module_init(dm_snapshot_init);
2849 module_exit(dm_snapshot_exit);
2850 
2851 MODULE_DESCRIPTION(DM_NAME " snapshot target");
2852 MODULE_AUTHOR("Joe Thornber");
2853 MODULE_LICENSE("GPL");
2854 MODULE_ALIAS("dm-snapshot-origin");
2855 MODULE_ALIAS("dm-snapshot-merge");
2856