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