RT-AC66 3.0.0.4.374.130 core
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / drivers / md / dm-raid1.c
blobf22e2521a8394d77d5fd0948ceaa89fbafc41525
1 /*
2 * Copyright (C) 2003 Sistina Software Limited.
4 * This file is released under the GPL.
5 */
7 #include "dm.h"
8 #include "dm-bio-list.h"
9 #include "dm-io.h"
10 #include "dm-log.h"
11 #include "kcopyd.h"
13 #include <linux/ctype.h>
14 #include <linux/init.h>
15 #include <linux/mempool.h>
16 #include <linux/module.h>
17 #include <linux/pagemap.h>
18 #include <linux/slab.h>
19 #include <linux/time.h>
20 #include <linux/vmalloc.h>
21 #include <linux/workqueue.h>
23 #define DM_MSG_PREFIX "raid1"
24 #define DM_IO_PAGES 64
26 #define DM_RAID1_HANDLE_ERRORS 0x01
28 static DECLARE_WAIT_QUEUE_HEAD(_kmirrord_recovery_stopped);
30 /*-----------------------------------------------------------------
31 * Region hash
33 * The mirror splits itself up into discrete regions. Each
34 * region can be in one of three states: clean, dirty,
35 * nosync. There is no need to put clean regions in the hash.
37 * In addition to being present in the hash table a region _may_
38 * be present on one of three lists.
40 * clean_regions: Regions on this list have no io pending to
41 * them, they are in sync, we are no longer interested in them,
42 * they are dull. rh_update_states() will remove them from the
43 * hash table.
45 * quiesced_regions: These regions have been spun down, ready
46 * for recovery. rh_recovery_start() will remove regions from
47 * this list and hand them to kmirrord, which will schedule the
48 * recovery io with kcopyd.
50 * recovered_regions: Regions that kcopyd has successfully
51 * recovered. rh_update_states() will now schedule any delayed
52 * io, up the recovery_count, and remove the region from the
53 * hash.
55 * There are 2 locks:
56 * A rw spin lock 'hash_lock' protects just the hash table,
57 * this is never held in write mode from interrupt context,
58 * which I believe means that we only have to disable irqs when
59 * doing a write lock.
61 * An ordinary spin lock 'region_lock' that protects the three
62 * lists in the region_hash, with the 'state', 'list' and
63 * 'bhs_delayed' fields of the regions. This is used from irq
64 * context, so all other uses will have to suspend local irqs.
65 *---------------------------------------------------------------*/
66 struct mirror_set;
67 struct region_hash {
68 struct mirror_set *ms;
69 uint32_t region_size;
70 unsigned region_shift;
72 /* holds persistent region state */
73 struct dirty_log *log;
75 /* hash table */
76 rwlock_t hash_lock;
77 mempool_t *region_pool;
78 unsigned int mask;
79 unsigned int nr_buckets;
80 struct list_head *buckets;
82 spinlock_t region_lock;
83 atomic_t recovery_in_flight;
84 struct semaphore recovery_count;
85 struct list_head clean_regions;
86 struct list_head quiesced_regions;
87 struct list_head recovered_regions;
90 enum {
91 RH_CLEAN,
92 RH_DIRTY,
93 RH_NOSYNC,
94 RH_RECOVERING
97 struct region {
98 struct region_hash *rh; /* FIXME: can we get rid of this ? */
99 region_t key;
100 int state;
102 struct list_head hash_list;
103 struct list_head list;
105 atomic_t pending;
106 struct bio_list delayed_bios;
110 /*-----------------------------------------------------------------
111 * Mirror set structures.
112 *---------------------------------------------------------------*/
113 struct mirror {
114 atomic_t error_count;
115 struct dm_dev *dev;
116 sector_t offset;
119 struct mirror_set {
120 struct dm_target *ti;
121 struct list_head list;
122 struct region_hash rh;
123 struct kcopyd_client *kcopyd_client;
124 uint64_t features;
126 spinlock_t lock; /* protects the next two lists */
127 struct bio_list reads;
128 struct bio_list writes;
130 struct dm_io_client *io_client;
132 /* recovery */
133 region_t nr_regions;
134 int in_sync;
136 struct mirror *default_mirror; /* Default mirror */
138 struct workqueue_struct *kmirrord_wq;
139 struct work_struct kmirrord_work;
141 unsigned int nr_mirrors;
142 struct mirror mirror[0];
146 * Conversion fns
148 static inline region_t bio_to_region(struct region_hash *rh, struct bio *bio)
150 return (bio->bi_sector - rh->ms->ti->begin) >> rh->region_shift;
153 static inline sector_t region_to_sector(struct region_hash *rh, region_t region)
155 return region << rh->region_shift;
158 static void wake(struct mirror_set *ms)
160 queue_work(ms->kmirrord_wq, &ms->kmirrord_work);
163 /* FIXME move this */
164 static void queue_bio(struct mirror_set *ms, struct bio *bio, int rw);
166 #define MIN_REGIONS 64
167 #define MAX_RECOVERY 1
168 static int rh_init(struct region_hash *rh, struct mirror_set *ms,
169 struct dirty_log *log, uint32_t region_size,
170 region_t nr_regions)
172 unsigned int nr_buckets, max_buckets;
173 size_t i;
176 * Calculate a suitable number of buckets for our hash
177 * table.
179 max_buckets = nr_regions >> 6;
180 for (nr_buckets = 128u; nr_buckets < max_buckets; nr_buckets <<= 1)
182 nr_buckets >>= 1;
184 rh->ms = ms;
185 rh->log = log;
186 rh->region_size = region_size;
187 rh->region_shift = ffs(region_size) - 1;
188 rwlock_init(&rh->hash_lock);
189 rh->mask = nr_buckets - 1;
190 rh->nr_buckets = nr_buckets;
192 rh->buckets = vmalloc(nr_buckets * sizeof(*rh->buckets));
193 if (!rh->buckets) {
194 DMERR("unable to allocate region hash memory");
195 return -ENOMEM;
198 for (i = 0; i < nr_buckets; i++)
199 INIT_LIST_HEAD(rh->buckets + i);
201 spin_lock_init(&rh->region_lock);
202 sema_init(&rh->recovery_count, 0);
203 atomic_set(&rh->recovery_in_flight, 0);
204 INIT_LIST_HEAD(&rh->clean_regions);
205 INIT_LIST_HEAD(&rh->quiesced_regions);
206 INIT_LIST_HEAD(&rh->recovered_regions);
208 rh->region_pool = mempool_create_kmalloc_pool(MIN_REGIONS,
209 sizeof(struct region));
210 if (!rh->region_pool) {
211 vfree(rh->buckets);
212 rh->buckets = NULL;
213 return -ENOMEM;
216 return 0;
219 static void rh_exit(struct region_hash *rh)
221 unsigned int h;
222 struct region *reg, *nreg;
224 BUG_ON(!list_empty(&rh->quiesced_regions));
225 for (h = 0; h < rh->nr_buckets; h++) {
226 list_for_each_entry_safe(reg, nreg, rh->buckets + h, hash_list) {
227 BUG_ON(atomic_read(&reg->pending));
228 mempool_free(reg, rh->region_pool);
232 if (rh->log)
233 dm_destroy_dirty_log(rh->log);
234 if (rh->region_pool)
235 mempool_destroy(rh->region_pool);
236 vfree(rh->buckets);
239 #define RH_HASH_MULT 2654435387U
241 static inline unsigned int rh_hash(struct region_hash *rh, region_t region)
243 return (unsigned int) ((region * RH_HASH_MULT) >> 12) & rh->mask;
246 static struct region *__rh_lookup(struct region_hash *rh, region_t region)
248 struct region *reg;
250 list_for_each_entry (reg, rh->buckets + rh_hash(rh, region), hash_list)
251 if (reg->key == region)
252 return reg;
254 return NULL;
257 static void __rh_insert(struct region_hash *rh, struct region *reg)
259 unsigned int h = rh_hash(rh, reg->key);
260 list_add(&reg->hash_list, rh->buckets + h);
263 static struct region *__rh_alloc(struct region_hash *rh, region_t region)
265 struct region *reg, *nreg;
267 read_unlock(&rh->hash_lock);
268 nreg = mempool_alloc(rh->region_pool, GFP_ATOMIC);
269 if (unlikely(!nreg))
270 nreg = kmalloc(sizeof(struct region), GFP_NOIO);
271 nreg->state = rh->log->type->in_sync(rh->log, region, 1) ?
272 RH_CLEAN : RH_NOSYNC;
273 nreg->rh = rh;
274 nreg->key = region;
276 INIT_LIST_HEAD(&nreg->list);
278 atomic_set(&nreg->pending, 0);
279 bio_list_init(&nreg->delayed_bios);
280 write_lock_irq(&rh->hash_lock);
282 reg = __rh_lookup(rh, region);
283 if (reg)
284 /* we lost the race */
285 mempool_free(nreg, rh->region_pool);
287 else {
288 __rh_insert(rh, nreg);
289 if (nreg->state == RH_CLEAN) {
290 spin_lock(&rh->region_lock);
291 list_add(&nreg->list, &rh->clean_regions);
292 spin_unlock(&rh->region_lock);
294 reg = nreg;
296 write_unlock_irq(&rh->hash_lock);
297 read_lock(&rh->hash_lock);
299 return reg;
302 static inline struct region *__rh_find(struct region_hash *rh, region_t region)
304 struct region *reg;
306 reg = __rh_lookup(rh, region);
307 if (!reg)
308 reg = __rh_alloc(rh, region);
310 return reg;
313 static int rh_state(struct region_hash *rh, region_t region, int may_block)
315 int r;
316 struct region *reg;
318 read_lock(&rh->hash_lock);
319 reg = __rh_lookup(rh, region);
320 read_unlock(&rh->hash_lock);
322 if (reg)
323 return reg->state;
326 * The region wasn't in the hash, so we fall back to the
327 * dirty log.
329 r = rh->log->type->in_sync(rh->log, region, may_block);
332 * Any error from the dirty log (eg. -EWOULDBLOCK) gets
333 * taken as a RH_NOSYNC
335 return r == 1 ? RH_CLEAN : RH_NOSYNC;
338 static inline int rh_in_sync(struct region_hash *rh,
339 region_t region, int may_block)
341 int state = rh_state(rh, region, may_block);
342 return state == RH_CLEAN || state == RH_DIRTY;
345 static void dispatch_bios(struct mirror_set *ms, struct bio_list *bio_list)
347 struct bio *bio;
349 while ((bio = bio_list_pop(bio_list))) {
350 queue_bio(ms, bio, WRITE);
354 static void complete_resync_work(struct region *reg, int success)
356 struct region_hash *rh = reg->rh;
358 rh->log->type->set_region_sync(rh->log, reg->key, success);
359 dispatch_bios(rh->ms, &reg->delayed_bios);
360 if (atomic_dec_and_test(&rh->recovery_in_flight))
361 wake_up_all(&_kmirrord_recovery_stopped);
362 up(&rh->recovery_count);
365 static void rh_update_states(struct region_hash *rh)
367 struct region *reg, *next;
369 LIST_HEAD(clean);
370 LIST_HEAD(recovered);
373 * Quickly grab the lists.
375 write_lock_irq(&rh->hash_lock);
376 spin_lock(&rh->region_lock);
377 if (!list_empty(&rh->clean_regions)) {
378 list_splice(&rh->clean_regions, &clean);
379 INIT_LIST_HEAD(&rh->clean_regions);
381 list_for_each_entry (reg, &clean, list) {
382 rh->log->type->clear_region(rh->log, reg->key);
383 list_del(&reg->hash_list);
387 if (!list_empty(&rh->recovered_regions)) {
388 list_splice(&rh->recovered_regions, &recovered);
389 INIT_LIST_HEAD(&rh->recovered_regions);
391 list_for_each_entry (reg, &recovered, list)
392 list_del(&reg->hash_list);
394 spin_unlock(&rh->region_lock);
395 write_unlock_irq(&rh->hash_lock);
398 * All the regions on the recovered and clean lists have
399 * now been pulled out of the system, so no need to do
400 * any more locking.
402 list_for_each_entry_safe (reg, next, &recovered, list) {
403 rh->log->type->clear_region(rh->log, reg->key);
404 complete_resync_work(reg, 1);
405 mempool_free(reg, rh->region_pool);
408 rh->log->type->flush(rh->log);
410 list_for_each_entry_safe (reg, next, &clean, list)
411 mempool_free(reg, rh->region_pool);
414 static void rh_inc(struct region_hash *rh, region_t region)
416 struct region *reg;
418 read_lock(&rh->hash_lock);
419 reg = __rh_find(rh, region);
421 spin_lock_irq(&rh->region_lock);
422 atomic_inc(&reg->pending);
424 if (reg->state == RH_CLEAN) {
425 reg->state = RH_DIRTY;
426 list_del_init(&reg->list); /* take off the clean list */
427 spin_unlock_irq(&rh->region_lock);
429 rh->log->type->mark_region(rh->log, reg->key);
430 } else
431 spin_unlock_irq(&rh->region_lock);
434 read_unlock(&rh->hash_lock);
437 static void rh_inc_pending(struct region_hash *rh, struct bio_list *bios)
439 struct bio *bio;
441 for (bio = bios->head; bio; bio = bio->bi_next)
442 rh_inc(rh, bio_to_region(rh, bio));
445 static void rh_dec(struct region_hash *rh, region_t region)
447 unsigned long flags;
448 struct region *reg;
449 int should_wake = 0;
451 read_lock(&rh->hash_lock);
452 reg = __rh_lookup(rh, region);
453 read_unlock(&rh->hash_lock);
455 spin_lock_irqsave(&rh->region_lock, flags);
456 if (atomic_dec_and_test(&reg->pending)) {
458 * There is no pending I/O for this region.
459 * We can move the region to corresponding list for next action.
460 * At this point, the region is not yet connected to any list.
462 * If the state is RH_NOSYNC, the region should be kept off
463 * from clean list.
464 * The hash entry for RH_NOSYNC will remain in memory
465 * until the region is recovered or the map is reloaded.
468 /* do nothing for RH_NOSYNC */
469 if (reg->state == RH_RECOVERING) {
470 list_add_tail(&reg->list, &rh->quiesced_regions);
471 } else if (reg->state == RH_DIRTY) {
472 reg->state = RH_CLEAN;
473 list_add(&reg->list, &rh->clean_regions);
475 should_wake = 1;
477 spin_unlock_irqrestore(&rh->region_lock, flags);
479 if (should_wake)
480 wake(rh->ms);
484 * Starts quiescing a region in preparation for recovery.
486 static int __rh_recovery_prepare(struct region_hash *rh)
488 int r;
489 struct region *reg;
490 region_t region;
493 * Ask the dirty log what's next.
495 r = rh->log->type->get_resync_work(rh->log, &region);
496 if (r <= 0)
497 return r;
500 * Get this region, and start it quiescing by setting the
501 * recovering flag.
503 read_lock(&rh->hash_lock);
504 reg = __rh_find(rh, region);
505 read_unlock(&rh->hash_lock);
507 spin_lock_irq(&rh->region_lock);
508 reg->state = RH_RECOVERING;
510 /* Already quiesced ? */
511 if (atomic_read(&reg->pending))
512 list_del_init(&reg->list);
513 else
514 list_move(&reg->list, &rh->quiesced_regions);
516 spin_unlock_irq(&rh->region_lock);
518 return 1;
521 static void rh_recovery_prepare(struct region_hash *rh)
523 /* Extra reference to avoid race with rh_stop_recovery */
524 atomic_inc(&rh->recovery_in_flight);
526 while (!down_trylock(&rh->recovery_count)) {
527 atomic_inc(&rh->recovery_in_flight);
528 if (__rh_recovery_prepare(rh) <= 0) {
529 atomic_dec(&rh->recovery_in_flight);
530 up(&rh->recovery_count);
531 break;
535 /* Drop the extra reference */
536 if (atomic_dec_and_test(&rh->recovery_in_flight))
537 wake_up_all(&_kmirrord_recovery_stopped);
541 * Returns any quiesced regions.
543 static struct region *rh_recovery_start(struct region_hash *rh)
545 struct region *reg = NULL;
547 spin_lock_irq(&rh->region_lock);
548 if (!list_empty(&rh->quiesced_regions)) {
549 reg = list_entry(rh->quiesced_regions.next,
550 struct region, list);
551 list_del_init(&reg->list); /* remove from the quiesced list */
553 spin_unlock_irq(&rh->region_lock);
555 return reg;
558 /* FIXME: success ignored for now */
559 static void rh_recovery_end(struct region *reg, int success)
561 struct region_hash *rh = reg->rh;
563 spin_lock_irq(&rh->region_lock);
564 list_add(&reg->list, &reg->rh->recovered_regions);
565 spin_unlock_irq(&rh->region_lock);
567 wake(rh->ms);
570 static void rh_flush(struct region_hash *rh)
572 rh->log->type->flush(rh->log);
575 static void rh_delay(struct region_hash *rh, struct bio *bio)
577 struct region *reg;
579 read_lock(&rh->hash_lock);
580 reg = __rh_find(rh, bio_to_region(rh, bio));
581 bio_list_add(&reg->delayed_bios, bio);
582 read_unlock(&rh->hash_lock);
585 static void rh_stop_recovery(struct region_hash *rh)
587 int i;
589 /* wait for any recovering regions */
590 for (i = 0; i < MAX_RECOVERY; i++)
591 down(&rh->recovery_count);
594 static void rh_start_recovery(struct region_hash *rh)
596 int i;
598 for (i = 0; i < MAX_RECOVERY; i++)
599 up(&rh->recovery_count);
601 wake(rh->ms);
605 * Every mirror should look like this one.
607 #define DEFAULT_MIRROR 0
610 * This is yucky. We squirrel the mirror_set struct away inside
611 * bi_next for write buffers. This is safe since the bh
612 * doesn't get submitted to the lower levels of block layer.
614 static struct mirror_set *bio_get_ms(struct bio *bio)
616 return (struct mirror_set *) bio->bi_next;
619 static void bio_set_ms(struct bio *bio, struct mirror_set *ms)
621 bio->bi_next = (struct bio *) ms;
624 /*-----------------------------------------------------------------
625 * Recovery.
627 * When a mirror is first activated we may find that some regions
628 * are in the no-sync state. We have to recover these by
629 * recopying from the default mirror to all the others.
630 *---------------------------------------------------------------*/
631 static void recovery_complete(int read_err, unsigned int write_err,
632 void *context)
634 struct region *reg = (struct region *) context;
636 /* FIXME: better error handling */
637 rh_recovery_end(reg, !(read_err || write_err));
640 static int recover(struct mirror_set *ms, struct region *reg)
642 int r;
643 unsigned int i;
644 struct io_region from, to[KCOPYD_MAX_REGIONS], *dest;
645 struct mirror *m;
646 unsigned long flags = 0;
648 /* fill in the source */
649 m = ms->default_mirror;
650 from.bdev = m->dev->bdev;
651 from.sector = m->offset + region_to_sector(reg->rh, reg->key);
652 if (reg->key == (ms->nr_regions - 1)) {
654 * The final region may be smaller than
655 * region_size.
657 from.count = ms->ti->len & (reg->rh->region_size - 1);
658 if (!from.count)
659 from.count = reg->rh->region_size;
660 } else
661 from.count = reg->rh->region_size;
663 /* fill in the destinations */
664 for (i = 0, dest = to; i < ms->nr_mirrors; i++) {
665 if (&ms->mirror[i] == ms->default_mirror)
666 continue;
668 m = ms->mirror + i;
669 dest->bdev = m->dev->bdev;
670 dest->sector = m->offset + region_to_sector(reg->rh, reg->key);
671 dest->count = from.count;
672 dest++;
675 /* hand to kcopyd */
676 set_bit(KCOPYD_IGNORE_ERROR, &flags);
677 r = kcopyd_copy(ms->kcopyd_client, &from, ms->nr_mirrors - 1, to, flags,
678 recovery_complete, reg);
680 return r;
683 static void do_recovery(struct mirror_set *ms)
685 int r;
686 struct region *reg;
687 struct dirty_log *log = ms->rh.log;
690 * Start quiescing some regions.
692 rh_recovery_prepare(&ms->rh);
695 * Copy any already quiesced regions.
697 while ((reg = rh_recovery_start(&ms->rh))) {
698 r = recover(ms, reg);
699 if (r)
700 rh_recovery_end(reg, 0);
704 * Update the in sync flag.
706 if (!ms->in_sync &&
707 (log->type->get_sync_count(log) == ms->nr_regions)) {
708 /* the sync is complete */
709 dm_table_event(ms->ti->table);
710 ms->in_sync = 1;
714 /*-----------------------------------------------------------------
715 * Reads
716 *---------------------------------------------------------------*/
717 static struct mirror *choose_mirror(struct mirror_set *ms, sector_t sector)
719 /* FIXME: add read balancing */
720 return ms->default_mirror;
724 * remap a buffer to a particular mirror.
726 static void map_bio(struct mirror_set *ms, struct mirror *m, struct bio *bio)
728 bio->bi_bdev = m->dev->bdev;
729 bio->bi_sector = m->offset + (bio->bi_sector - ms->ti->begin);
732 static void do_reads(struct mirror_set *ms, struct bio_list *reads)
734 region_t region;
735 struct bio *bio;
736 struct mirror *m;
738 while ((bio = bio_list_pop(reads))) {
739 region = bio_to_region(&ms->rh, bio);
742 * We can only read balance if the region is in sync.
744 if (rh_in_sync(&ms->rh, region, 1))
745 m = choose_mirror(ms, bio->bi_sector);
746 else
747 m = ms->default_mirror;
749 map_bio(ms, m, bio);
750 generic_make_request(bio);
754 /*-----------------------------------------------------------------
755 * Writes.
757 * We do different things with the write io depending on the
758 * state of the region that it's in:
760 * SYNC: increment pending, use kcopyd to write to *all* mirrors
761 * RECOVERING: delay the io until recovery completes
762 * NOSYNC: increment pending, just write to the default mirror
763 *---------------------------------------------------------------*/
764 static void write_callback(unsigned long error, void *context)
766 unsigned int i;
767 int uptodate = 1;
768 struct bio *bio = (struct bio *) context;
769 struct mirror_set *ms;
771 ms = bio_get_ms(bio);
772 bio_set_ms(bio, NULL);
775 * NOTE: We don't decrement the pending count here,
776 * instead it is done by the targets endio function.
777 * This way we handle both writes to SYNC and NOSYNC
778 * regions with the same code.
781 if (error) {
783 * only error the io if all mirrors failed.
784 * FIXME: bogus
786 uptodate = 0;
787 for (i = 0; i < ms->nr_mirrors; i++)
788 if (!test_bit(i, &error)) {
789 uptodate = 1;
790 break;
793 bio_endio(bio, bio->bi_size, 0);
796 static void do_write(struct mirror_set *ms, struct bio *bio)
798 unsigned int i;
799 struct io_region io[KCOPYD_MAX_REGIONS+1];
800 struct mirror *m;
801 struct dm_io_request io_req = {
802 .bi_rw = WRITE,
803 .mem.type = DM_IO_BVEC,
804 .mem.ptr.bvec = bio->bi_io_vec + bio->bi_idx,
805 .notify.fn = write_callback,
806 .notify.context = bio,
807 .client = ms->io_client,
810 for (i = 0; i < ms->nr_mirrors; i++) {
811 m = ms->mirror + i;
813 io[i].bdev = m->dev->bdev;
814 io[i].sector = m->offset + (bio->bi_sector - ms->ti->begin);
815 io[i].count = bio->bi_size >> 9;
818 bio_set_ms(bio, ms);
820 (void) dm_io(&io_req, ms->nr_mirrors, io, NULL);
823 static void do_writes(struct mirror_set *ms, struct bio_list *writes)
825 int state;
826 struct bio *bio;
827 struct bio_list sync, nosync, recover, *this_list = NULL;
829 if (!writes->head)
830 return;
833 * Classify each write.
835 bio_list_init(&sync);
836 bio_list_init(&nosync);
837 bio_list_init(&recover);
839 while ((bio = bio_list_pop(writes))) {
840 state = rh_state(&ms->rh, bio_to_region(&ms->rh, bio), 1);
841 switch (state) {
842 case RH_CLEAN:
843 case RH_DIRTY:
844 this_list = &sync;
845 break;
847 case RH_NOSYNC:
848 this_list = &nosync;
849 break;
851 case RH_RECOVERING:
852 this_list = &recover;
853 break;
856 bio_list_add(this_list, bio);
860 * Increment the pending counts for any regions that will
861 * be written to (writes to recover regions are going to
862 * be delayed).
864 rh_inc_pending(&ms->rh, &sync);
865 rh_inc_pending(&ms->rh, &nosync);
866 rh_flush(&ms->rh);
869 * Dispatch io.
871 while ((bio = bio_list_pop(&sync)))
872 do_write(ms, bio);
874 while ((bio = bio_list_pop(&recover)))
875 rh_delay(&ms->rh, bio);
877 while ((bio = bio_list_pop(&nosync))) {
878 map_bio(ms, ms->default_mirror, bio);
879 generic_make_request(bio);
883 /*-----------------------------------------------------------------
884 * kmirrord
885 *---------------------------------------------------------------*/
886 static void do_mirror(struct work_struct *work)
888 struct mirror_set *ms =container_of(work, struct mirror_set,
889 kmirrord_work);
890 struct bio_list reads, writes;
892 spin_lock(&ms->lock);
893 reads = ms->reads;
894 writes = ms->writes;
895 bio_list_init(&ms->reads);
896 bio_list_init(&ms->writes);
897 spin_unlock(&ms->lock);
899 rh_update_states(&ms->rh);
900 do_recovery(ms);
901 do_reads(ms, &reads);
902 do_writes(ms, &writes);
905 /*-----------------------------------------------------------------
906 * Target functions
907 *---------------------------------------------------------------*/
908 static struct mirror_set *alloc_context(unsigned int nr_mirrors,
909 uint32_t region_size,
910 struct dm_target *ti,
911 struct dirty_log *dl)
913 size_t len;
914 struct mirror_set *ms = NULL;
916 if (array_too_big(sizeof(*ms), sizeof(ms->mirror[0]), nr_mirrors))
917 return NULL;
919 len = sizeof(*ms) + (sizeof(ms->mirror[0]) * nr_mirrors);
921 ms = kzalloc(len, GFP_KERNEL);
922 if (!ms) {
923 ti->error = "Cannot allocate mirror context";
924 return NULL;
927 spin_lock_init(&ms->lock);
929 ms->ti = ti;
930 ms->nr_mirrors = nr_mirrors;
931 ms->nr_regions = dm_sector_div_up(ti->len, region_size);
932 ms->in_sync = 0;
933 ms->default_mirror = &ms->mirror[DEFAULT_MIRROR];
935 ms->io_client = dm_io_client_create(DM_IO_PAGES);
936 if (IS_ERR(ms->io_client)) {
937 ti->error = "Error creating dm_io client";
938 kfree(ms);
939 return NULL;
942 if (rh_init(&ms->rh, ms, dl, region_size, ms->nr_regions)) {
943 ti->error = "Error creating dirty region hash";
944 kfree(ms);
945 return NULL;
948 return ms;
951 static void free_context(struct mirror_set *ms, struct dm_target *ti,
952 unsigned int m)
954 while (m--)
955 dm_put_device(ti, ms->mirror[m].dev);
957 dm_io_client_destroy(ms->io_client);
958 rh_exit(&ms->rh);
959 kfree(ms);
962 static inline int _check_region_size(struct dm_target *ti, uint32_t size)
964 return !(size % (PAGE_SIZE >> 9) || (size & (size - 1)) ||
965 size > ti->len);
968 static int get_mirror(struct mirror_set *ms, struct dm_target *ti,
969 unsigned int mirror, char **argv)
971 unsigned long long offset;
973 if (sscanf(argv[1], "%llu", &offset) != 1) {
974 ti->error = "Invalid offset";
975 return -EINVAL;
978 if (dm_get_device(ti, argv[0], offset, ti->len,
979 dm_table_get_mode(ti->table),
980 &ms->mirror[mirror].dev)) {
981 ti->error = "Device lookup failure";
982 return -ENXIO;
985 ms->mirror[mirror].offset = offset;
987 return 0;
991 * Create dirty log: log_type #log_params <log_params>
993 static struct dirty_log *create_dirty_log(struct dm_target *ti,
994 unsigned int argc, char **argv,
995 unsigned int *args_used)
997 unsigned int param_count;
998 struct dirty_log *dl;
1000 if (argc < 2) {
1001 ti->error = "Insufficient mirror log arguments";
1002 return NULL;
1005 if (sscanf(argv[1], "%u", &param_count) != 1) {
1006 ti->error = "Invalid mirror log argument count";
1007 return NULL;
1010 *args_used = 2 + param_count;
1012 if (argc < *args_used) {
1013 ti->error = "Insufficient mirror log arguments";
1014 return NULL;
1017 dl = dm_create_dirty_log(argv[0], ti, param_count, argv + 2);
1018 if (!dl) {
1019 ti->error = "Error creating mirror dirty log";
1020 return NULL;
1023 if (!_check_region_size(ti, dl->type->get_region_size(dl))) {
1024 ti->error = "Invalid region size";
1025 dm_destroy_dirty_log(dl);
1026 return NULL;
1029 return dl;
1032 static int parse_features(struct mirror_set *ms, unsigned argc, char **argv,
1033 unsigned *args_used)
1035 unsigned num_features;
1036 struct dm_target *ti = ms->ti;
1038 *args_used = 0;
1040 if (!argc)
1041 return 0;
1043 if (sscanf(argv[0], "%u", &num_features) != 1) {
1044 ti->error = "Invalid number of features";
1045 return -EINVAL;
1048 argc--;
1049 argv++;
1050 (*args_used)++;
1052 if (num_features > argc) {
1053 ti->error = "Not enough arguments to support feature count";
1054 return -EINVAL;
1057 if (!strcmp("handle_errors", argv[0]))
1058 ms->features |= DM_RAID1_HANDLE_ERRORS;
1059 else {
1060 ti->error = "Unrecognised feature requested";
1061 return -EINVAL;
1064 (*args_used)++;
1066 return 0;
1070 * Construct a mirror mapping:
1072 * log_type #log_params <log_params>
1073 * #mirrors [mirror_path offset]{2,}
1074 * [#features <features>]
1076 * log_type is "core" or "disk"
1077 * #log_params is between 1 and 3
1079 * If present, features must be "handle_errors".
1081 static int mirror_ctr(struct dm_target *ti, unsigned int argc, char **argv)
1083 int r;
1084 unsigned int nr_mirrors, m, args_used;
1085 struct mirror_set *ms;
1086 struct dirty_log *dl;
1088 dl = create_dirty_log(ti, argc, argv, &args_used);
1089 if (!dl)
1090 return -EINVAL;
1092 argv += args_used;
1093 argc -= args_used;
1095 if (!argc || sscanf(argv[0], "%u", &nr_mirrors) != 1 ||
1096 nr_mirrors < 2 || nr_mirrors > KCOPYD_MAX_REGIONS + 1) {
1097 ti->error = "Invalid number of mirrors";
1098 dm_destroy_dirty_log(dl);
1099 return -EINVAL;
1102 argv++, argc--;
1104 if (argc < nr_mirrors * 2) {
1105 ti->error = "Too few mirror arguments";
1106 dm_destroy_dirty_log(dl);
1107 return -EINVAL;
1110 ms = alloc_context(nr_mirrors, dl->type->get_region_size(dl), ti, dl);
1111 if (!ms) {
1112 dm_destroy_dirty_log(dl);
1113 return -ENOMEM;
1116 /* Get the mirror parameter sets */
1117 for (m = 0; m < nr_mirrors; m++) {
1118 r = get_mirror(ms, ti, m, argv);
1119 if (r) {
1120 free_context(ms, ti, m);
1121 return r;
1123 argv += 2;
1124 argc -= 2;
1127 ti->private = ms;
1128 ti->split_io = ms->rh.region_size;
1130 ms->kmirrord_wq = create_singlethread_workqueue("kmirrord");
1131 if (!ms->kmirrord_wq) {
1132 DMERR("couldn't start kmirrord");
1133 free_context(ms, ti, m);
1134 return -ENOMEM;
1136 INIT_WORK(&ms->kmirrord_work, do_mirror);
1138 r = parse_features(ms, argc, argv, &args_used);
1139 if (r) {
1140 free_context(ms, ti, ms->nr_mirrors);
1141 return r;
1144 argv += args_used;
1145 argc -= args_used;
1147 if (argc) {
1148 ti->error = "Too many mirror arguments";
1149 free_context(ms, ti, ms->nr_mirrors);
1150 return -EINVAL;
1153 r = kcopyd_client_create(DM_IO_PAGES, &ms->kcopyd_client);
1154 if (r) {
1155 destroy_workqueue(ms->kmirrord_wq);
1156 free_context(ms, ti, ms->nr_mirrors);
1157 return r;
1160 wake(ms);
1161 return 0;
1164 static void mirror_dtr(struct dm_target *ti)
1166 struct mirror_set *ms = (struct mirror_set *) ti->private;
1168 flush_workqueue(ms->kmirrord_wq);
1169 kcopyd_client_destroy(ms->kcopyd_client);
1170 destroy_workqueue(ms->kmirrord_wq);
1171 free_context(ms, ti, ms->nr_mirrors);
1174 static void queue_bio(struct mirror_set *ms, struct bio *bio, int rw)
1176 int should_wake = 0;
1177 struct bio_list *bl;
1179 bl = (rw == WRITE) ? &ms->writes : &ms->reads;
1180 spin_lock(&ms->lock);
1181 should_wake = !(bl->head);
1182 bio_list_add(bl, bio);
1183 spin_unlock(&ms->lock);
1185 if (should_wake)
1186 wake(ms);
1190 * Mirror mapping function
1192 static int mirror_map(struct dm_target *ti, struct bio *bio,
1193 union map_info *map_context)
1195 int r, rw = bio_rw(bio);
1196 struct mirror *m;
1197 struct mirror_set *ms = ti->private;
1199 map_context->ll = bio_to_region(&ms->rh, bio);
1201 if (rw == WRITE) {
1202 queue_bio(ms, bio, rw);
1203 return DM_MAPIO_SUBMITTED;
1206 r = ms->rh.log->type->in_sync(ms->rh.log,
1207 bio_to_region(&ms->rh, bio), 0);
1208 if (r < 0 && r != -EWOULDBLOCK)
1209 return r;
1211 if (r == -EWOULDBLOCK) /* FIXME: ugly */
1212 r = DM_MAPIO_SUBMITTED;
1215 * We don't want to fast track a recovery just for a read
1216 * ahead. So we just let it silently fail.
1217 * FIXME: get rid of this.
1219 if (!r && rw == READA)
1220 return -EIO;
1222 if (!r) {
1223 /* Pass this io over to the daemon */
1224 queue_bio(ms, bio, rw);
1225 return DM_MAPIO_SUBMITTED;
1228 m = choose_mirror(ms, bio->bi_sector);
1229 if (!m)
1230 return -EIO;
1232 map_bio(ms, m, bio);
1233 return DM_MAPIO_REMAPPED;
1236 static int mirror_end_io(struct dm_target *ti, struct bio *bio,
1237 int error, union map_info *map_context)
1239 int rw = bio_rw(bio);
1240 struct mirror_set *ms = (struct mirror_set *) ti->private;
1241 region_t region = map_context->ll;
1244 * We need to dec pending if this was a write.
1246 if (rw == WRITE)
1247 rh_dec(&ms->rh, region);
1249 return 0;
1252 static void mirror_postsuspend(struct dm_target *ti)
1254 struct mirror_set *ms = (struct mirror_set *) ti->private;
1255 struct dirty_log *log = ms->rh.log;
1257 rh_stop_recovery(&ms->rh);
1259 /* Wait for all I/O we generated to complete */
1260 wait_event(_kmirrord_recovery_stopped,
1261 !atomic_read(&ms->rh.recovery_in_flight));
1263 if (log->type->suspend && log->type->suspend(log))
1264 /* FIXME: need better error handling */
1265 DMWARN("log suspend failed");
1268 static void mirror_resume(struct dm_target *ti)
1270 struct mirror_set *ms = (struct mirror_set *) ti->private;
1271 struct dirty_log *log = ms->rh.log;
1272 if (log->type->resume && log->type->resume(log))
1273 /* FIXME: need better error handling */
1274 DMWARN("log resume failed");
1275 rh_start_recovery(&ms->rh);
1278 static int mirror_status(struct dm_target *ti, status_type_t type,
1279 char *result, unsigned int maxlen)
1281 unsigned int m, sz = 0;
1282 struct mirror_set *ms = (struct mirror_set *) ti->private;
1284 switch (type) {
1285 case STATUSTYPE_INFO:
1286 DMEMIT("%d ", ms->nr_mirrors);
1287 for (m = 0; m < ms->nr_mirrors; m++)
1288 DMEMIT("%s ", ms->mirror[m].dev->name);
1290 DMEMIT("%llu/%llu 0 ",
1291 (unsigned long long)ms->rh.log->type->
1292 get_sync_count(ms->rh.log),
1293 (unsigned long long)ms->nr_regions);
1295 sz += ms->rh.log->type->status(ms->rh.log, type, result+sz, maxlen-sz);
1297 break;
1299 case STATUSTYPE_TABLE:
1300 sz = ms->rh.log->type->status(ms->rh.log, type, result, maxlen);
1302 DMEMIT("%d", ms->nr_mirrors);
1303 for (m = 0; m < ms->nr_mirrors; m++)
1304 DMEMIT(" %s %llu", ms->mirror[m].dev->name,
1305 (unsigned long long)ms->mirror[m].offset);
1307 if (ms->features & DM_RAID1_HANDLE_ERRORS)
1308 DMEMIT(" 1 handle_errors");
1311 return 0;
1314 static struct target_type mirror_target = {
1315 .name = "mirror",
1316 .version = {1, 0, 3},
1317 .module = THIS_MODULE,
1318 .ctr = mirror_ctr,
1319 .dtr = mirror_dtr,
1320 .map = mirror_map,
1321 .end_io = mirror_end_io,
1322 .postsuspend = mirror_postsuspend,
1323 .resume = mirror_resume,
1324 .status = mirror_status,
1327 static int __init dm_mirror_init(void)
1329 int r;
1331 r = dm_dirty_log_init();
1332 if (r)
1333 return r;
1335 r = dm_register_target(&mirror_target);
1336 if (r < 0) {
1337 DMERR("%s: Failed to register mirror target",
1338 mirror_target.name);
1339 dm_dirty_log_exit();
1342 return r;
1345 static void __exit dm_mirror_exit(void)
1347 int r;
1349 r = dm_unregister_target(&mirror_target);
1350 if (r < 0)
1351 DMERR("%s: unregister failed %d", mirror_target.name, r);
1353 dm_dirty_log_exit();
1356 /* Module hooks */
1357 module_init(dm_mirror_init);
1358 module_exit(dm_mirror_exit);
1360 MODULE_DESCRIPTION(DM_NAME " mirror target");
1361 MODULE_AUTHOR("Joe Thornber");
1362 MODULE_LICENSE("GPL");