[PATCH] dm snapshot: add workqueue
[safe/jmp/linux-2.6] / 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/ctype.h>
11 #include <linux/device-mapper.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
21 #include "dm-snap.h"
22 #include "dm-bio-list.h"
23 #include "kcopyd.h"
24
25 #define DM_MSG_PREFIX "snapshots"
26
27 /*
28  * The percentage increment we will wake up users at
29  */
30 #define WAKE_UP_PERCENT 5
31
32 /*
33  * kcopyd priority of snapshot operations
34  */
35 #define SNAPSHOT_COPY_PRIORITY 2
36
37 /*
38  * Each snapshot reserves this many pages for io
39  */
40 #define SNAPSHOT_PAGES 256
41
42 struct workqueue_struct *ksnapd;
43 static void flush_queued_bios(void *data);
44
45 struct pending_exception {
46         struct exception e;
47
48         /*
49          * Origin buffers waiting for this to complete are held
50          * in a bio list
51          */
52         struct bio_list origin_bios;
53         struct bio_list snapshot_bios;
54
55         /*
56          * Short-term queue of pending exceptions prior to submission.
57          */
58         struct list_head list;
59
60         /*
61          * The primary pending_exception is the one that holds
62          * the sibling_count and the list of origin_bios for a
63          * group of pending_exceptions.  It is always last to get freed.
64          * These fields get set up when writing to the origin.
65          */
66         struct pending_exception *primary_pe;
67
68         /*
69          * Number of pending_exceptions processing this chunk.
70          * When this drops to zero we must complete the origin bios.
71          * If incrementing or decrementing this, hold pe->snap->lock for
72          * the sibling concerned and not pe->primary_pe->snap->lock unless
73          * they are the same.
74          */
75         atomic_t sibling_count;
76
77         /* Pointer back to snapshot context */
78         struct dm_snapshot *snap;
79
80         /*
81          * 1 indicates the exception has already been sent to
82          * kcopyd.
83          */
84         int started;
85 };
86
87 /*
88  * Hash table mapping origin volumes to lists of snapshots and
89  * a lock to protect it
90  */
91 static kmem_cache_t *exception_cache;
92 static kmem_cache_t *pending_cache;
93 static mempool_t *pending_pool;
94
95 /*
96  * One of these per registered origin, held in the snapshot_origins hash
97  */
98 struct origin {
99         /* The origin device */
100         struct block_device *bdev;
101
102         struct list_head hash_list;
103
104         /* List of snapshots for this origin */
105         struct list_head snapshots;
106 };
107
108 /*
109  * Size of the hash table for origin volumes. If we make this
110  * the size of the minors list then it should be nearly perfect
111  */
112 #define ORIGIN_HASH_SIZE 256
113 #define ORIGIN_MASK      0xFF
114 static struct list_head *_origins;
115 static struct rw_semaphore _origins_lock;
116
117 static int init_origin_hash(void)
118 {
119         int i;
120
121         _origins = kmalloc(ORIGIN_HASH_SIZE * sizeof(struct list_head),
122                            GFP_KERNEL);
123         if (!_origins) {
124                 DMERR("unable to allocate memory");
125                 return -ENOMEM;
126         }
127
128         for (i = 0; i < ORIGIN_HASH_SIZE; i++)
129                 INIT_LIST_HEAD(_origins + i);
130         init_rwsem(&_origins_lock);
131
132         return 0;
133 }
134
135 static void exit_origin_hash(void)
136 {
137         kfree(_origins);
138 }
139
140 static inline unsigned int origin_hash(struct block_device *bdev)
141 {
142         return bdev->bd_dev & ORIGIN_MASK;
143 }
144
145 static struct origin *__lookup_origin(struct block_device *origin)
146 {
147         struct list_head *ol;
148         struct origin *o;
149
150         ol = &_origins[origin_hash(origin)];
151         list_for_each_entry (o, ol, hash_list)
152                 if (bdev_equal(o->bdev, origin))
153                         return o;
154
155         return NULL;
156 }
157
158 static void __insert_origin(struct origin *o)
159 {
160         struct list_head *sl = &_origins[origin_hash(o->bdev)];
161         list_add_tail(&o->hash_list, sl);
162 }
163
164 /*
165  * Make a note of the snapshot and its origin so we can look it
166  * up when the origin has a write on it.
167  */
168 static int register_snapshot(struct dm_snapshot *snap)
169 {
170         struct origin *o;
171         struct block_device *bdev = snap->origin->bdev;
172
173         down_write(&_origins_lock);
174         o = __lookup_origin(bdev);
175
176         if (!o) {
177                 /* New origin */
178                 o = kmalloc(sizeof(*o), GFP_KERNEL);
179                 if (!o) {
180                         up_write(&_origins_lock);
181                         return -ENOMEM;
182                 }
183
184                 /* Initialise the struct */
185                 INIT_LIST_HEAD(&o->snapshots);
186                 o->bdev = bdev;
187
188                 __insert_origin(o);
189         }
190
191         list_add_tail(&snap->list, &o->snapshots);
192
193         up_write(&_origins_lock);
194         return 0;
195 }
196
197 static void unregister_snapshot(struct dm_snapshot *s)
198 {
199         struct origin *o;
200
201         down_write(&_origins_lock);
202         o = __lookup_origin(s->origin->bdev);
203
204         list_del(&s->list);
205         if (list_empty(&o->snapshots)) {
206                 list_del(&o->hash_list);
207                 kfree(o);
208         }
209
210         up_write(&_origins_lock);
211 }
212
213 /*
214  * Implementation of the exception hash tables.
215  */
216 static int init_exception_table(struct exception_table *et, uint32_t size)
217 {
218         unsigned int i;
219
220         et->hash_mask = size - 1;
221         et->table = dm_vcalloc(size, sizeof(struct list_head));
222         if (!et->table)
223                 return -ENOMEM;
224
225         for (i = 0; i < size; i++)
226                 INIT_LIST_HEAD(et->table + i);
227
228         return 0;
229 }
230
231 static void exit_exception_table(struct exception_table *et, kmem_cache_t *mem)
232 {
233         struct list_head *slot;
234         struct exception *ex, *next;
235         int i, size;
236
237         size = et->hash_mask + 1;
238         for (i = 0; i < size; i++) {
239                 slot = et->table + i;
240
241                 list_for_each_entry_safe (ex, next, slot, hash_list)
242                         kmem_cache_free(mem, ex);
243         }
244
245         vfree(et->table);
246 }
247
248 static inline uint32_t exception_hash(struct exception_table *et, chunk_t chunk)
249 {
250         return chunk & et->hash_mask;
251 }
252
253 static void insert_exception(struct exception_table *eh, struct exception *e)
254 {
255         struct list_head *l = &eh->table[exception_hash(eh, e->old_chunk)];
256         list_add(&e->hash_list, l);
257 }
258
259 static inline void remove_exception(struct exception *e)
260 {
261         list_del(&e->hash_list);
262 }
263
264 /*
265  * Return the exception data for a sector, or NULL if not
266  * remapped.
267  */
268 static struct exception *lookup_exception(struct exception_table *et,
269                                           chunk_t chunk)
270 {
271         struct list_head *slot;
272         struct exception *e;
273
274         slot = &et->table[exception_hash(et, chunk)];
275         list_for_each_entry (e, slot, hash_list)
276                 if (e->old_chunk == chunk)
277                         return e;
278
279         return NULL;
280 }
281
282 static inline struct exception *alloc_exception(void)
283 {
284         struct exception *e;
285
286         e = kmem_cache_alloc(exception_cache, GFP_NOIO);
287         if (!e)
288                 e = kmem_cache_alloc(exception_cache, GFP_ATOMIC);
289
290         return e;
291 }
292
293 static inline void free_exception(struct exception *e)
294 {
295         kmem_cache_free(exception_cache, e);
296 }
297
298 static inline struct pending_exception *alloc_pending_exception(void)
299 {
300         return mempool_alloc(pending_pool, GFP_NOIO);
301 }
302
303 static inline void free_pending_exception(struct pending_exception *pe)
304 {
305         mempool_free(pe, pending_pool);
306 }
307
308 int dm_add_exception(struct dm_snapshot *s, chunk_t old, chunk_t new)
309 {
310         struct exception *e;
311
312         e = alloc_exception();
313         if (!e)
314                 return -ENOMEM;
315
316         e->old_chunk = old;
317         e->new_chunk = new;
318         insert_exception(&s->complete, e);
319         return 0;
320 }
321
322 /*
323  * Hard coded magic.
324  */
325 static int calc_max_buckets(void)
326 {
327         /* use a fixed size of 2MB */
328         unsigned long mem = 2 * 1024 * 1024;
329         mem /= sizeof(struct list_head);
330
331         return mem;
332 }
333
334 /*
335  * Rounds a number down to a power of 2.
336  */
337 static inline uint32_t round_down(uint32_t n)
338 {
339         while (n & (n - 1))
340                 n &= (n - 1);
341         return n;
342 }
343
344 /*
345  * Allocate room for a suitable hash table.
346  */
347 static int init_hash_tables(struct dm_snapshot *s)
348 {
349         sector_t hash_size, cow_dev_size, origin_dev_size, max_buckets;
350
351         /*
352          * Calculate based on the size of the original volume or
353          * the COW volume...
354          */
355         cow_dev_size = get_dev_size(s->cow->bdev);
356         origin_dev_size = get_dev_size(s->origin->bdev);
357         max_buckets = calc_max_buckets();
358
359         hash_size = min(origin_dev_size, cow_dev_size) >> s->chunk_shift;
360         hash_size = min(hash_size, max_buckets);
361
362         /* Round it down to a power of 2 */
363         hash_size = round_down(hash_size);
364         if (init_exception_table(&s->complete, hash_size))
365                 return -ENOMEM;
366
367         /*
368          * Allocate hash table for in-flight exceptions
369          * Make this smaller than the real hash table
370          */
371         hash_size >>= 3;
372         if (hash_size < 64)
373                 hash_size = 64;
374
375         if (init_exception_table(&s->pending, hash_size)) {
376                 exit_exception_table(&s->complete, exception_cache);
377                 return -ENOMEM;
378         }
379
380         return 0;
381 }
382
383 /*
384  * Round a number up to the nearest 'size' boundary.  size must
385  * be a power of 2.
386  */
387 static inline ulong round_up(ulong n, ulong size)
388 {
389         size--;
390         return (n + size) & ~size;
391 }
392
393 static int set_chunk_size(struct dm_snapshot *s, const char *chunk_size_arg,
394                           char **error)
395 {
396         unsigned long chunk_size;
397         char *value;
398
399         chunk_size = simple_strtoul(chunk_size_arg, &value, 10);
400         if (*chunk_size_arg == '\0' || *value != '\0') {
401                 *error = "Invalid chunk size";
402                 return -EINVAL;
403         }
404
405         if (!chunk_size) {
406                 s->chunk_size = s->chunk_mask = s->chunk_shift = 0;
407                 return 0;
408         }
409
410         /*
411          * Chunk size must be multiple of page size.  Silently
412          * round up if it's not.
413          */
414         chunk_size = round_up(chunk_size, PAGE_SIZE >> 9);
415
416         /* Check chunk_size is a power of 2 */
417         if (chunk_size & (chunk_size - 1)) {
418                 *error = "Chunk size is not a power of 2";
419                 return -EINVAL;
420         }
421
422         /* Validate the chunk size against the device block size */
423         if (chunk_size % (bdev_hardsect_size(s->cow->bdev) >> 9)) {
424                 *error = "Chunk size is not a multiple of device blocksize";
425                 return -EINVAL;
426         }
427
428         s->chunk_size = chunk_size;
429         s->chunk_mask = chunk_size - 1;
430         s->chunk_shift = ffs(chunk_size) - 1;
431
432         return 0;
433 }
434
435 /*
436  * Construct a snapshot mapping: <origin_dev> <COW-dev> <p/n> <chunk-size>
437  */
438 static int snapshot_ctr(struct dm_target *ti, unsigned int argc, char **argv)
439 {
440         struct dm_snapshot *s;
441         int r = -EINVAL;
442         char persistent;
443         char *origin_path;
444         char *cow_path;
445
446         if (argc != 4) {
447                 ti->error = "requires exactly 4 arguments";
448                 r = -EINVAL;
449                 goto bad1;
450         }
451
452         origin_path = argv[0];
453         cow_path = argv[1];
454         persistent = toupper(*argv[2]);
455
456         if (persistent != 'P' && persistent != 'N') {
457                 ti->error = "Persistent flag is not P or N";
458                 r = -EINVAL;
459                 goto bad1;
460         }
461
462         s = kmalloc(sizeof(*s), GFP_KERNEL);
463         if (s == NULL) {
464                 ti->error = "Cannot allocate snapshot context private "
465                     "structure";
466                 r = -ENOMEM;
467                 goto bad1;
468         }
469
470         r = dm_get_device(ti, origin_path, 0, ti->len, FMODE_READ, &s->origin);
471         if (r) {
472                 ti->error = "Cannot get origin device";
473                 goto bad2;
474         }
475
476         r = dm_get_device(ti, cow_path, 0, 0,
477                           FMODE_READ | FMODE_WRITE, &s->cow);
478         if (r) {
479                 dm_put_device(ti, s->origin);
480                 ti->error = "Cannot get COW device";
481                 goto bad2;
482         }
483
484         r = set_chunk_size(s, argv[3], &ti->error);
485         if (r)
486                 goto bad3;
487
488         s->type = persistent;
489
490         s->valid = 1;
491         s->active = 0;
492         s->last_percent = 0;
493         init_rwsem(&s->lock);
494         spin_lock_init(&s->pe_lock);
495         s->table = ti->table;
496
497         /* Allocate hash table for COW data */
498         if (init_hash_tables(s)) {
499                 ti->error = "Unable to allocate hash table space";
500                 r = -ENOMEM;
501                 goto bad3;
502         }
503
504         s->store.snap = s;
505
506         if (persistent == 'P')
507                 r = dm_create_persistent(&s->store);
508         else
509                 r = dm_create_transient(&s->store);
510
511         if (r) {
512                 ti->error = "Couldn't create exception store";
513                 r = -EINVAL;
514                 goto bad4;
515         }
516
517         r = kcopyd_client_create(SNAPSHOT_PAGES, &s->kcopyd_client);
518         if (r) {
519                 ti->error = "Could not create kcopyd client";
520                 goto bad5;
521         }
522
523         /* Metadata must only be loaded into one table at once */
524         r = s->store.read_metadata(&s->store);
525         if (r) {
526                 ti->error = "Failed to read snapshot metadata";
527                 goto bad6;
528         }
529
530         bio_list_init(&s->queued_bios);
531         INIT_WORK(&s->queued_bios_work, flush_queued_bios, s);
532
533         /* Add snapshot to the list of snapshots for this origin */
534         /* Exceptions aren't triggered till snapshot_resume() is called */
535         if (register_snapshot(s)) {
536                 r = -EINVAL;
537                 ti->error = "Cannot register snapshot origin";
538                 goto bad6;
539         }
540
541         ti->private = s;
542         ti->split_io = s->chunk_size;
543
544         return 0;
545
546  bad6:
547         kcopyd_client_destroy(s->kcopyd_client);
548
549  bad5:
550         s->store.destroy(&s->store);
551
552  bad4:
553         exit_exception_table(&s->pending, pending_cache);
554         exit_exception_table(&s->complete, exception_cache);
555
556  bad3:
557         dm_put_device(ti, s->cow);
558         dm_put_device(ti, s->origin);
559
560  bad2:
561         kfree(s);
562
563  bad1:
564         return r;
565 }
566
567 static void snapshot_dtr(struct dm_target *ti)
568 {
569         struct dm_snapshot *s = (struct dm_snapshot *) ti->private;
570
571         flush_workqueue(ksnapd);
572
573         /* Prevent further origin writes from using this snapshot. */
574         /* After this returns there can be no new kcopyd jobs. */
575         unregister_snapshot(s);
576
577         kcopyd_client_destroy(s->kcopyd_client);
578
579         exit_exception_table(&s->pending, pending_cache);
580         exit_exception_table(&s->complete, exception_cache);
581
582         /* Deallocate memory used */
583         s->store.destroy(&s->store);
584
585         dm_put_device(ti, s->origin);
586         dm_put_device(ti, s->cow);
587
588         kfree(s);
589 }
590
591 /*
592  * Flush a list of buffers.
593  */
594 static void flush_bios(struct bio *bio)
595 {
596         struct bio *n;
597
598         while (bio) {
599                 n = bio->bi_next;
600                 bio->bi_next = NULL;
601                 generic_make_request(bio);
602                 bio = n;
603         }
604 }
605
606 static void flush_queued_bios(void *data)
607 {
608         struct dm_snapshot *s = (struct dm_snapshot *) data;
609         struct bio *queued_bios;
610         unsigned long flags;
611
612         spin_lock_irqsave(&s->pe_lock, flags);
613         queued_bios = bio_list_get(&s->queued_bios);
614         spin_unlock_irqrestore(&s->pe_lock, flags);
615
616         flush_bios(queued_bios);
617 }
618
619 /*
620  * Error a list of buffers.
621  */
622 static void error_bios(struct bio *bio)
623 {
624         struct bio *n;
625
626         while (bio) {
627                 n = bio->bi_next;
628                 bio->bi_next = NULL;
629                 bio_io_error(bio, bio->bi_size);
630                 bio = n;
631         }
632 }
633
634 static void __invalidate_snapshot(struct dm_snapshot *s,
635                                 struct pending_exception *pe, int err)
636 {
637         if (!s->valid)
638                 return;
639
640         if (err == -EIO)
641                 DMERR("Invalidating snapshot: Error reading/writing.");
642         else if (err == -ENOMEM)
643                 DMERR("Invalidating snapshot: Unable to allocate exception.");
644
645         if (pe)
646                 remove_exception(&pe->e);
647
648         if (s->store.drop_snapshot)
649                 s->store.drop_snapshot(&s->store);
650
651         s->valid = 0;
652
653         dm_table_event(s->table);
654 }
655
656 static void pending_complete(struct pending_exception *pe, int success)
657 {
658         struct exception *e;
659         struct pending_exception *primary_pe;
660         struct dm_snapshot *s = pe->snap;
661         struct bio *origin_bios = NULL;
662         struct bio *snapshot_bios = NULL;
663         int error = 0;
664
665         if (!success) {
666                 /* Read/write error - snapshot is unusable */
667                 down_write(&s->lock);
668                 __invalidate_snapshot(s, pe, -EIO);
669                 error = 1;
670                 goto out;
671         }
672
673         e = alloc_exception();
674         if (!e) {
675                 down_write(&s->lock);
676                 __invalidate_snapshot(s, pe, -ENOMEM);
677                 error = 1;
678                 goto out;
679         }
680         *e = pe->e;
681
682         down_write(&s->lock);
683         if (!s->valid) {
684                 free_exception(e);
685                 error = 1;
686                 goto out;
687         }
688
689         /*
690          * Add a proper exception, and remove the
691          * in-flight exception from the list.
692          */
693         insert_exception(&s->complete, e);
694         remove_exception(&pe->e);
695
696  out:
697         snapshot_bios = bio_list_get(&pe->snapshot_bios);
698
699         primary_pe = pe->primary_pe;
700
701         /*
702          * If this pe is involved in a write to the origin and
703          * it is the last sibling to complete then release
704          * the bios for the original write to the origin.
705          */
706         if (primary_pe &&
707             atomic_dec_and_test(&primary_pe->sibling_count))
708                 origin_bios = bio_list_get(&primary_pe->origin_bios);
709
710         /*
711          * Free the pe if it's not linked to an origin write or if
712          * it's not itself a primary pe.
713          */
714         if (!primary_pe || primary_pe != pe)
715                 free_pending_exception(pe);
716
717         /*
718          * Free the primary pe if nothing references it.
719          */
720         if (primary_pe && !atomic_read(&primary_pe->sibling_count))
721                 free_pending_exception(primary_pe);
722
723         up_write(&s->lock);
724
725         /* Submit any pending write bios */
726         if (error)
727                 error_bios(snapshot_bios);
728         else
729                 flush_bios(snapshot_bios);
730
731         flush_bios(origin_bios);
732 }
733
734 static void commit_callback(void *context, int success)
735 {
736         struct pending_exception *pe = (struct pending_exception *) context;
737         pending_complete(pe, success);
738 }
739
740 /*
741  * Called when the copy I/O has finished.  kcopyd actually runs
742  * this code so don't block.
743  */
744 static void copy_callback(int read_err, unsigned int write_err, void *context)
745 {
746         struct pending_exception *pe = (struct pending_exception *) context;
747         struct dm_snapshot *s = pe->snap;
748
749         if (read_err || write_err)
750                 pending_complete(pe, 0);
751
752         else
753                 /* Update the metadata if we are persistent */
754                 s->store.commit_exception(&s->store, &pe->e, commit_callback,
755                                           pe);
756 }
757
758 /*
759  * Dispatches the copy operation to kcopyd.
760  */
761 static void start_copy(struct pending_exception *pe)
762 {
763         struct dm_snapshot *s = pe->snap;
764         struct io_region src, dest;
765         struct block_device *bdev = s->origin->bdev;
766         sector_t dev_size;
767
768         dev_size = get_dev_size(bdev);
769
770         src.bdev = bdev;
771         src.sector = chunk_to_sector(s, pe->e.old_chunk);
772         src.count = min(s->chunk_size, dev_size - src.sector);
773
774         dest.bdev = s->cow->bdev;
775         dest.sector = chunk_to_sector(s, pe->e.new_chunk);
776         dest.count = src.count;
777
778         /* Hand over to kcopyd */
779         kcopyd_copy(s->kcopyd_client,
780                     &src, 1, &dest, 0, copy_callback, pe);
781 }
782
783 /*
784  * Looks to see if this snapshot already has a pending exception
785  * for this chunk, otherwise it allocates a new one and inserts
786  * it into the pending table.
787  *
788  * NOTE: a write lock must be held on snap->lock before calling
789  * this.
790  */
791 static struct pending_exception *
792 __find_pending_exception(struct dm_snapshot *s, struct bio *bio)
793 {
794         struct exception *e;
795         struct pending_exception *pe;
796         chunk_t chunk = sector_to_chunk(s, bio->bi_sector);
797
798         /*
799          * Is there a pending exception for this already ?
800          */
801         e = lookup_exception(&s->pending, chunk);
802         if (e) {
803                 /* cast the exception to a pending exception */
804                 pe = container_of(e, struct pending_exception, e);
805                 goto out;
806         }
807
808         /*
809          * Create a new pending exception, we don't want
810          * to hold the lock while we do this.
811          */
812         up_write(&s->lock);
813         pe = alloc_pending_exception();
814         down_write(&s->lock);
815
816         if (!s->valid) {
817                 free_pending_exception(pe);
818                 return NULL;
819         }
820
821         e = lookup_exception(&s->pending, chunk);
822         if (e) {
823                 free_pending_exception(pe);
824                 pe = container_of(e, struct pending_exception, e);
825                 goto out;
826         }
827
828         pe->e.old_chunk = chunk;
829         bio_list_init(&pe->origin_bios);
830         bio_list_init(&pe->snapshot_bios);
831         pe->primary_pe = NULL;
832         atomic_set(&pe->sibling_count, 1);
833         pe->snap = s;
834         pe->started = 0;
835
836         if (s->store.prepare_exception(&s->store, &pe->e)) {
837                 free_pending_exception(pe);
838                 return NULL;
839         }
840
841         insert_exception(&s->pending, &pe->e);
842
843  out:
844         return pe;
845 }
846
847 static inline void remap_exception(struct dm_snapshot *s, struct exception *e,
848                                    struct bio *bio)
849 {
850         bio->bi_bdev = s->cow->bdev;
851         bio->bi_sector = chunk_to_sector(s, e->new_chunk) +
852                 (bio->bi_sector & s->chunk_mask);
853 }
854
855 static int snapshot_map(struct dm_target *ti, struct bio *bio,
856                         union map_info *map_context)
857 {
858         struct exception *e;
859         struct dm_snapshot *s = (struct dm_snapshot *) ti->private;
860         int r = 1;
861         chunk_t chunk;
862         struct pending_exception *pe = NULL;
863
864         chunk = sector_to_chunk(s, bio->bi_sector);
865
866         /* Full snapshots are not usable */
867         /* To get here the table must be live so s->active is always set. */
868         if (!s->valid)
869                 return -EIO;
870
871         if (unlikely(bio_barrier(bio)))
872                 return -EOPNOTSUPP;
873
874         /* FIXME: should only take write lock if we need
875          * to copy an exception */
876         down_write(&s->lock);
877
878         if (!s->valid) {
879                 r = -EIO;
880                 goto out_unlock;
881         }
882
883         /* If the block is already remapped - use that, else remap it */
884         e = lookup_exception(&s->complete, chunk);
885         if (e) {
886                 remap_exception(s, e, bio);
887                 goto out_unlock;
888         }
889
890         /*
891          * Write to snapshot - higher level takes care of RW/RO
892          * flags so we should only get this if we are
893          * writeable.
894          */
895         if (bio_rw(bio) == WRITE) {
896                 pe = __find_pending_exception(s, bio);
897                 if (!pe) {
898                         __invalidate_snapshot(s, pe, -ENOMEM);
899                         r = -EIO;
900                         goto out_unlock;
901                 }
902
903                 remap_exception(s, &pe->e, bio);
904                 bio_list_add(&pe->snapshot_bios, bio);
905
906                 r = 0;
907
908                 if (!pe->started) {
909                         /* this is protected by snap->lock */
910                         pe->started = 1;
911                         up_write(&s->lock);
912                         start_copy(pe);
913                         goto out;
914                 }
915         } else
916                 /*
917                  * FIXME: this read path scares me because we
918                  * always use the origin when we have a pending
919                  * exception.  However I can't think of a
920                  * situation where this is wrong - ejt.
921                  */
922                 bio->bi_bdev = s->origin->bdev;
923
924  out_unlock:
925         up_write(&s->lock);
926  out:
927         return r;
928 }
929
930 static void snapshot_resume(struct dm_target *ti)
931 {
932         struct dm_snapshot *s = (struct dm_snapshot *) ti->private;
933
934         down_write(&s->lock);
935         s->active = 1;
936         up_write(&s->lock);
937 }
938
939 static int snapshot_status(struct dm_target *ti, status_type_t type,
940                            char *result, unsigned int maxlen)
941 {
942         struct dm_snapshot *snap = (struct dm_snapshot *) ti->private;
943
944         switch (type) {
945         case STATUSTYPE_INFO:
946                 if (!snap->valid)
947                         snprintf(result, maxlen, "Invalid");
948                 else {
949                         if (snap->store.fraction_full) {
950                                 sector_t numerator, denominator;
951                                 snap->store.fraction_full(&snap->store,
952                                                           &numerator,
953                                                           &denominator);
954                                 snprintf(result, maxlen, "%llu/%llu",
955                                         (unsigned long long)numerator,
956                                         (unsigned long long)denominator);
957                         }
958                         else
959                                 snprintf(result, maxlen, "Unknown");
960                 }
961                 break;
962
963         case STATUSTYPE_TABLE:
964                 /*
965                  * kdevname returns a static pointer so we need
966                  * to make private copies if the output is to
967                  * make sense.
968                  */
969                 snprintf(result, maxlen, "%s %s %c %llu",
970                          snap->origin->name, snap->cow->name,
971                          snap->type,
972                          (unsigned long long)snap->chunk_size);
973                 break;
974         }
975
976         return 0;
977 }
978
979 /*-----------------------------------------------------------------
980  * Origin methods
981  *---------------------------------------------------------------*/
982 static int __origin_write(struct list_head *snapshots, struct bio *bio)
983 {
984         int r = 1, first = 0;
985         struct dm_snapshot *snap;
986         struct exception *e;
987         struct pending_exception *pe, *next_pe, *primary_pe = NULL;
988         chunk_t chunk;
989         LIST_HEAD(pe_queue);
990
991         /* Do all the snapshots on this origin */
992         list_for_each_entry (snap, snapshots, list) {
993
994                 down_write(&snap->lock);
995
996                 /* Only deal with valid and active snapshots */
997                 if (!snap->valid || !snap->active)
998                         goto next_snapshot;
999
1000                 /* Nothing to do if writing beyond end of snapshot */
1001                 if (bio->bi_sector >= dm_table_get_size(snap->table))
1002                         goto next_snapshot;
1003
1004                 /*
1005                  * Remember, different snapshots can have
1006                  * different chunk sizes.
1007                  */
1008                 chunk = sector_to_chunk(snap, bio->bi_sector);
1009
1010                 /*
1011                  * Check exception table to see if block
1012                  * is already remapped in this snapshot
1013                  * and trigger an exception if not.
1014                  *
1015                  * sibling_count is initialised to 1 so pending_complete()
1016                  * won't destroy the primary_pe while we're inside this loop.
1017                  */
1018                 e = lookup_exception(&snap->complete, chunk);
1019                 if (e)
1020                         goto next_snapshot;
1021
1022                 pe = __find_pending_exception(snap, bio);
1023                 if (!pe) {
1024                         __invalidate_snapshot(snap, pe, -ENOMEM);
1025                         goto next_snapshot;
1026                 }
1027
1028                 if (!primary_pe) {
1029                         /*
1030                          * Either every pe here has same
1031                          * primary_pe or none has one yet.
1032                          */
1033                         if (pe->primary_pe)
1034                                 primary_pe = pe->primary_pe;
1035                         else {
1036                                 primary_pe = pe;
1037                                 first = 1;
1038                         }
1039
1040                         bio_list_add(&primary_pe->origin_bios, bio);
1041
1042                         r = 0;
1043                 }
1044
1045                 if (!pe->primary_pe) {
1046                         atomic_inc(&primary_pe->sibling_count);
1047                         pe->primary_pe = primary_pe;
1048                 }
1049
1050                 if (!pe->started) {
1051                         pe->started = 1;
1052                         list_add_tail(&pe->list, &pe_queue);
1053                 }
1054
1055  next_snapshot:
1056                 up_write(&snap->lock);
1057         }
1058
1059         if (!primary_pe)
1060                 goto out;
1061
1062         /*
1063          * If this is the first time we're processing this chunk and
1064          * sibling_count is now 1 it means all the pending exceptions
1065          * got completed while we were in the loop above, so it falls to
1066          * us here to remove the primary_pe and submit any origin_bios.
1067          */
1068
1069         if (first && atomic_dec_and_test(&primary_pe->sibling_count)) {
1070                 flush_bios(bio_list_get(&primary_pe->origin_bios));
1071                 free_pending_exception(primary_pe);
1072                 /* If we got here, pe_queue is necessarily empty. */
1073                 goto out;
1074         }
1075
1076         /*
1077          * Now that we have a complete pe list we can start the copying.
1078          */
1079         list_for_each_entry_safe(pe, next_pe, &pe_queue, list)
1080                 start_copy(pe);
1081
1082  out:
1083         return r;
1084 }
1085
1086 /*
1087  * Called on a write from the origin driver.
1088  */
1089 static int do_origin(struct dm_dev *origin, struct bio *bio)
1090 {
1091         struct origin *o;
1092         int r = 1;
1093
1094         down_read(&_origins_lock);
1095         o = __lookup_origin(origin->bdev);
1096         if (o)
1097                 r = __origin_write(&o->snapshots, bio);
1098         up_read(&_origins_lock);
1099
1100         return r;
1101 }
1102
1103 /*
1104  * Origin: maps a linear range of a device, with hooks for snapshotting.
1105  */
1106
1107 /*
1108  * Construct an origin mapping: <dev_path>
1109  * The context for an origin is merely a 'struct dm_dev *'
1110  * pointing to the real device.
1111  */
1112 static int origin_ctr(struct dm_target *ti, unsigned int argc, char **argv)
1113 {
1114         int r;
1115         struct dm_dev *dev;
1116
1117         if (argc != 1) {
1118                 ti->error = "origin: incorrect number of arguments";
1119                 return -EINVAL;
1120         }
1121
1122         r = dm_get_device(ti, argv[0], 0, ti->len,
1123                           dm_table_get_mode(ti->table), &dev);
1124         if (r) {
1125                 ti->error = "Cannot get target device";
1126                 return r;
1127         }
1128
1129         ti->private = dev;
1130         return 0;
1131 }
1132
1133 static void origin_dtr(struct dm_target *ti)
1134 {
1135         struct dm_dev *dev = (struct dm_dev *) ti->private;
1136         dm_put_device(ti, dev);
1137 }
1138
1139 static int origin_map(struct dm_target *ti, struct bio *bio,
1140                       union map_info *map_context)
1141 {
1142         struct dm_dev *dev = (struct dm_dev *) ti->private;
1143         bio->bi_bdev = dev->bdev;
1144
1145         if (unlikely(bio_barrier(bio)))
1146                 return -EOPNOTSUPP;
1147
1148         /* Only tell snapshots if this is a write */
1149         return (bio_rw(bio) == WRITE) ? do_origin(dev, bio) : 1;
1150 }
1151
1152 #define min_not_zero(l, r) (l == 0) ? r : ((r == 0) ? l : min(l, r))
1153
1154 /*
1155  * Set the target "split_io" field to the minimum of all the snapshots'
1156  * chunk sizes.
1157  */
1158 static void origin_resume(struct dm_target *ti)
1159 {
1160         struct dm_dev *dev = (struct dm_dev *) ti->private;
1161         struct dm_snapshot *snap;
1162         struct origin *o;
1163         chunk_t chunk_size = 0;
1164
1165         down_read(&_origins_lock);
1166         o = __lookup_origin(dev->bdev);
1167         if (o)
1168                 list_for_each_entry (snap, &o->snapshots, list)
1169                         chunk_size = min_not_zero(chunk_size, snap->chunk_size);
1170         up_read(&_origins_lock);
1171
1172         ti->split_io = chunk_size;
1173 }
1174
1175 static int origin_status(struct dm_target *ti, status_type_t type, char *result,
1176                          unsigned int maxlen)
1177 {
1178         struct dm_dev *dev = (struct dm_dev *) ti->private;
1179
1180         switch (type) {
1181         case STATUSTYPE_INFO:
1182                 result[0] = '\0';
1183                 break;
1184
1185         case STATUSTYPE_TABLE:
1186                 snprintf(result, maxlen, "%s", dev->name);
1187                 break;
1188         }
1189
1190         return 0;
1191 }
1192
1193 static struct target_type origin_target = {
1194         .name    = "snapshot-origin",
1195         .version = {1, 5, 0},
1196         .module  = THIS_MODULE,
1197         .ctr     = origin_ctr,
1198         .dtr     = origin_dtr,
1199         .map     = origin_map,
1200         .resume  = origin_resume,
1201         .status  = origin_status,
1202 };
1203
1204 static struct target_type snapshot_target = {
1205         .name    = "snapshot",
1206         .version = {1, 5, 0},
1207         .module  = THIS_MODULE,
1208         .ctr     = snapshot_ctr,
1209         .dtr     = snapshot_dtr,
1210         .map     = snapshot_map,
1211         .resume  = snapshot_resume,
1212         .status  = snapshot_status,
1213 };
1214
1215 static int __init dm_snapshot_init(void)
1216 {
1217         int r;
1218
1219         r = dm_register_target(&snapshot_target);
1220         if (r) {
1221                 DMERR("snapshot target register failed %d", r);
1222                 return r;
1223         }
1224
1225         r = dm_register_target(&origin_target);
1226         if (r < 0) {
1227                 DMERR("Origin target register failed %d", r);
1228                 goto bad1;
1229         }
1230
1231         r = init_origin_hash();
1232         if (r) {
1233                 DMERR("init_origin_hash failed.");
1234                 goto bad2;
1235         }
1236
1237         exception_cache = kmem_cache_create("dm-snapshot-ex",
1238                                             sizeof(struct exception),
1239                                             __alignof__(struct exception),
1240                                             0, NULL, NULL);
1241         if (!exception_cache) {
1242                 DMERR("Couldn't create exception cache.");
1243                 r = -ENOMEM;
1244                 goto bad3;
1245         }
1246
1247         pending_cache =
1248             kmem_cache_create("dm-snapshot-in",
1249                               sizeof(struct pending_exception),
1250                               __alignof__(struct pending_exception),
1251                               0, NULL, NULL);
1252         if (!pending_cache) {
1253                 DMERR("Couldn't create pending cache.");
1254                 r = -ENOMEM;
1255                 goto bad4;
1256         }
1257
1258         pending_pool = mempool_create_slab_pool(128, pending_cache);
1259         if (!pending_pool) {
1260                 DMERR("Couldn't create pending pool.");
1261                 r = -ENOMEM;
1262                 goto bad5;
1263         }
1264
1265         ksnapd = create_singlethread_workqueue("ksnapd");
1266         if (!ksnapd) {
1267                 DMERR("Failed to create ksnapd workqueue.");
1268                 r = -ENOMEM;
1269                 goto bad6;
1270         }
1271
1272         return 0;
1273
1274       bad6:
1275         mempool_destroy(pending_pool);
1276       bad5:
1277         kmem_cache_destroy(pending_cache);
1278       bad4:
1279         kmem_cache_destroy(exception_cache);
1280       bad3:
1281         exit_origin_hash();
1282       bad2:
1283         dm_unregister_target(&origin_target);
1284       bad1:
1285         dm_unregister_target(&snapshot_target);
1286         return r;
1287 }
1288
1289 static void __exit dm_snapshot_exit(void)
1290 {
1291         int r;
1292
1293         destroy_workqueue(ksnapd);
1294
1295         r = dm_unregister_target(&snapshot_target);
1296         if (r)
1297                 DMERR("snapshot unregister failed %d", r);
1298
1299         r = dm_unregister_target(&origin_target);
1300         if (r)
1301                 DMERR("origin unregister failed %d", r);
1302
1303         exit_origin_hash();
1304         mempool_destroy(pending_pool);
1305         kmem_cache_destroy(pending_cache);
1306         kmem_cache_destroy(exception_cache);
1307 }
1308
1309 /* Module hooks */
1310 module_init(dm_snapshot_init);
1311 module_exit(dm_snapshot_exit);
1312
1313 MODULE_DESCRIPTION(DM_NAME " snapshot target");
1314 MODULE_AUTHOR("Joe Thornber");
1315 MODULE_LICENSE("GPL");