2 * Copyright (C) 2003 Sistina Software Limited.
4 * This file is released under the GPL.
8 #include "dm-bio-list.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"
25 static struct workqueue_struct
*_kmirrord_wq
;
26 static struct work_struct _kmirrord_work
;
28 static inline void wake(void)
30 queue_work(_kmirrord_wq
, &_kmirrord_work
);
33 /*-----------------------------------------------------------------
36 * The mirror splits itself up into discrete regions. Each
37 * region can be in one of three states: clean, dirty,
38 * nosync. There is no need to put clean regions in the hash.
40 * In addition to being present in the hash table a region _may_
41 * be present on one of three lists.
43 * clean_regions: Regions on this list have no io pending to
44 * them, they are in sync, we are no longer interested in them,
45 * they are dull. rh_update_states() will remove them from the
48 * quiesced_regions: These regions have been spun down, ready
49 * for recovery. rh_recovery_start() will remove regions from
50 * this list and hand them to kmirrord, which will schedule the
51 * recovery io with kcopyd.
53 * recovered_regions: Regions that kcopyd has successfully
54 * recovered. rh_update_states() will now schedule any delayed
55 * io, up the recovery_count, and remove the region from the
59 * A rw spin lock 'hash_lock' protects just the hash table,
60 * this is never held in write mode from interrupt context,
61 * which I believe means that we only have to disable irqs when
64 * An ordinary spin lock 'region_lock' that protects the three
65 * lists in the region_hash, with the 'state', 'list' and
66 * 'bhs_delayed' fields of the regions. This is used from irq
67 * context, so all other uses will have to suspend local irqs.
68 *---------------------------------------------------------------*/
71 struct mirror_set
*ms
;
73 unsigned region_shift
;
75 /* holds persistent region state */
76 struct dirty_log
*log
;
80 mempool_t
*region_pool
;
82 unsigned int nr_buckets
;
83 struct list_head
*buckets
;
85 spinlock_t region_lock
;
86 struct semaphore recovery_count
;
87 struct list_head clean_regions
;
88 struct list_head quiesced_regions
;
89 struct list_head recovered_regions
;
100 struct region_hash
*rh
; /* FIXME: can we get rid of this ? */
104 struct list_head hash_list
;
105 struct list_head list
;
108 struct bio_list delayed_bios
;
112 /*-----------------------------------------------------------------
113 * Mirror set structures.
114 *---------------------------------------------------------------*/
116 atomic_t error_count
;
122 struct dm_target
*ti
;
123 struct list_head list
;
124 struct region_hash rh
;
125 struct kcopyd_client
*kcopyd_client
;
127 spinlock_t lock
; /* protects the next two lists */
128 struct bio_list reads
;
129 struct bio_list writes
;
135 struct mirror
*default_mirror
; /* Default mirror */
137 unsigned int nr_mirrors
;
138 struct mirror mirror
[0];
144 static inline region_t
bio_to_region(struct region_hash
*rh
, struct bio
*bio
)
146 return (bio
->bi_sector
- rh
->ms
->ti
->begin
) >> rh
->region_shift
;
149 static inline sector_t
region_to_sector(struct region_hash
*rh
, region_t region
)
151 return region
<< rh
->region_shift
;
154 /* FIXME move this */
155 static void queue_bio(struct mirror_set
*ms
, struct bio
*bio
, int rw
);
157 #define MIN_REGIONS 64
158 #define MAX_RECOVERY 1
159 static int rh_init(struct region_hash
*rh
, struct mirror_set
*ms
,
160 struct dirty_log
*log
, uint32_t region_size
,
163 unsigned int nr_buckets
, max_buckets
;
167 * Calculate a suitable number of buckets for our hash
170 max_buckets
= nr_regions
>> 6;
171 for (nr_buckets
= 128u; nr_buckets
< max_buckets
; nr_buckets
<<= 1)
177 rh
->region_size
= region_size
;
178 rh
->region_shift
= ffs(region_size
) - 1;
179 rwlock_init(&rh
->hash_lock
);
180 rh
->mask
= nr_buckets
- 1;
181 rh
->nr_buckets
= nr_buckets
;
183 rh
->buckets
= vmalloc(nr_buckets
* sizeof(*rh
->buckets
));
185 DMERR("unable to allocate region hash memory");
189 for (i
= 0; i
< nr_buckets
; i
++)
190 INIT_LIST_HEAD(rh
->buckets
+ i
);
192 spin_lock_init(&rh
->region_lock
);
193 sema_init(&rh
->recovery_count
, 0);
194 INIT_LIST_HEAD(&rh
->clean_regions
);
195 INIT_LIST_HEAD(&rh
->quiesced_regions
);
196 INIT_LIST_HEAD(&rh
->recovered_regions
);
198 rh
->region_pool
= mempool_create_kmalloc_pool(MIN_REGIONS
,
199 sizeof(struct region
));
200 if (!rh
->region_pool
) {
209 static void rh_exit(struct region_hash
*rh
)
212 struct region
*reg
, *nreg
;
214 BUG_ON(!list_empty(&rh
->quiesced_regions
));
215 for (h
= 0; h
< rh
->nr_buckets
; h
++) {
216 list_for_each_entry_safe(reg
, nreg
, rh
->buckets
+ h
, hash_list
) {
217 BUG_ON(atomic_read(®
->pending
));
218 mempool_free(reg
, rh
->region_pool
);
223 dm_destroy_dirty_log(rh
->log
);
225 mempool_destroy(rh
->region_pool
);
229 #define RH_HASH_MULT 2654435387U
231 static inline unsigned int rh_hash(struct region_hash
*rh
, region_t region
)
233 return (unsigned int) ((region
* RH_HASH_MULT
) >> 12) & rh
->mask
;
236 static struct region
*__rh_lookup(struct region_hash
*rh
, region_t region
)
240 list_for_each_entry (reg
, rh
->buckets
+ rh_hash(rh
, region
), hash_list
)
241 if (reg
->key
== region
)
247 static void __rh_insert(struct region_hash
*rh
, struct region
*reg
)
249 unsigned int h
= rh_hash(rh
, reg
->key
);
250 list_add(®
->hash_list
, rh
->buckets
+ h
);
253 static struct region
*__rh_alloc(struct region_hash
*rh
, region_t region
)
255 struct region
*reg
, *nreg
;
257 read_unlock(&rh
->hash_lock
);
258 nreg
= mempool_alloc(rh
->region_pool
, GFP_NOIO
);
259 nreg
->state
= rh
->log
->type
->in_sync(rh
->log
, region
, 1) ?
260 RH_CLEAN
: RH_NOSYNC
;
264 INIT_LIST_HEAD(&nreg
->list
);
266 atomic_set(&nreg
->pending
, 0);
267 bio_list_init(&nreg
->delayed_bios
);
268 write_lock_irq(&rh
->hash_lock
);
270 reg
= __rh_lookup(rh
, region
);
272 /* we lost the race */
273 mempool_free(nreg
, rh
->region_pool
);
276 __rh_insert(rh
, nreg
);
277 if (nreg
->state
== RH_CLEAN
) {
278 spin_lock(&rh
->region_lock
);
279 list_add(&nreg
->list
, &rh
->clean_regions
);
280 spin_unlock(&rh
->region_lock
);
284 write_unlock_irq(&rh
->hash_lock
);
285 read_lock(&rh
->hash_lock
);
290 static inline struct region
*__rh_find(struct region_hash
*rh
, region_t region
)
294 reg
= __rh_lookup(rh
, region
);
296 reg
= __rh_alloc(rh
, region
);
301 static int rh_state(struct region_hash
*rh
, region_t region
, int may_block
)
306 read_lock(&rh
->hash_lock
);
307 reg
= __rh_lookup(rh
, region
);
308 read_unlock(&rh
->hash_lock
);
314 * The region wasn't in the hash, so we fall back to the
317 r
= rh
->log
->type
->in_sync(rh
->log
, region
, may_block
);
320 * Any error from the dirty log (eg. -EWOULDBLOCK) gets
321 * taken as a RH_NOSYNC
323 return r
== 1 ? RH_CLEAN
: RH_NOSYNC
;
326 static inline int rh_in_sync(struct region_hash
*rh
,
327 region_t region
, int may_block
)
329 int state
= rh_state(rh
, region
, may_block
);
330 return state
== RH_CLEAN
|| state
== RH_DIRTY
;
333 static void dispatch_bios(struct mirror_set
*ms
, struct bio_list
*bio_list
)
337 while ((bio
= bio_list_pop(bio_list
))) {
338 queue_bio(ms
, bio
, WRITE
);
342 static void rh_update_states(struct region_hash
*rh
)
344 struct region
*reg
, *next
;
347 LIST_HEAD(recovered
);
350 * Quickly grab the lists.
352 write_lock_irq(&rh
->hash_lock
);
353 spin_lock(&rh
->region_lock
);
354 if (!list_empty(&rh
->clean_regions
)) {
355 list_splice(&rh
->clean_regions
, &clean
);
356 INIT_LIST_HEAD(&rh
->clean_regions
);
358 list_for_each_entry (reg
, &clean
, list
) {
359 rh
->log
->type
->clear_region(rh
->log
, reg
->key
);
360 list_del(®
->hash_list
);
364 if (!list_empty(&rh
->recovered_regions
)) {
365 list_splice(&rh
->recovered_regions
, &recovered
);
366 INIT_LIST_HEAD(&rh
->recovered_regions
);
368 list_for_each_entry (reg
, &recovered
, list
)
369 list_del(®
->hash_list
);
371 spin_unlock(&rh
->region_lock
);
372 write_unlock_irq(&rh
->hash_lock
);
375 * All the regions on the recovered and clean lists have
376 * now been pulled out of the system, so no need to do
379 list_for_each_entry_safe (reg
, next
, &recovered
, list
) {
380 rh
->log
->type
->clear_region(rh
->log
, reg
->key
);
381 rh
->log
->type
->complete_resync_work(rh
->log
, reg
->key
, 1);
382 dispatch_bios(rh
->ms
, ®
->delayed_bios
);
383 up(&rh
->recovery_count
);
384 mempool_free(reg
, rh
->region_pool
);
387 if (!list_empty(&recovered
))
388 rh
->log
->type
->flush(rh
->log
);
390 list_for_each_entry_safe (reg
, next
, &clean
, list
)
391 mempool_free(reg
, rh
->region_pool
);
394 static void rh_inc(struct region_hash
*rh
, region_t region
)
398 read_lock(&rh
->hash_lock
);
399 reg
= __rh_find(rh
, region
);
401 spin_lock_irq(&rh
->region_lock
);
402 atomic_inc(®
->pending
);
404 if (reg
->state
== RH_CLEAN
) {
405 reg
->state
= RH_DIRTY
;
406 list_del_init(®
->list
); /* take off the clean list */
407 spin_unlock_irq(&rh
->region_lock
);
409 rh
->log
->type
->mark_region(rh
->log
, reg
->key
);
411 spin_unlock_irq(&rh
->region_lock
);
414 read_unlock(&rh
->hash_lock
);
417 static void rh_inc_pending(struct region_hash
*rh
, struct bio_list
*bios
)
421 for (bio
= bios
->head
; bio
; bio
= bio
->bi_next
)
422 rh_inc(rh
, bio_to_region(rh
, bio
));
425 static void rh_dec(struct region_hash
*rh
, region_t region
)
431 read_lock(&rh
->hash_lock
);
432 reg
= __rh_lookup(rh
, region
);
433 read_unlock(&rh
->hash_lock
);
435 spin_lock_irqsave(&rh
->region_lock
, flags
);
436 if (atomic_dec_and_test(®
->pending
)) {
438 * There is no pending I/O for this region.
439 * We can move the region to corresponding list for next action.
440 * At this point, the region is not yet connected to any list.
442 * If the state is RH_NOSYNC, the region should be kept off
444 * The hash entry for RH_NOSYNC will remain in memory
445 * until the region is recovered or the map is reloaded.
448 /* do nothing for RH_NOSYNC */
449 if (reg
->state
== RH_RECOVERING
) {
450 list_add_tail(®
->list
, &rh
->quiesced_regions
);
451 } else if (reg
->state
== RH_DIRTY
) {
452 reg
->state
= RH_CLEAN
;
453 list_add(®
->list
, &rh
->clean_regions
);
457 spin_unlock_irqrestore(&rh
->region_lock
, flags
);
464 * Starts quiescing a region in preparation for recovery.
466 static int __rh_recovery_prepare(struct region_hash
*rh
)
473 * Ask the dirty log what's next.
475 r
= rh
->log
->type
->get_resync_work(rh
->log
, ®ion
);
480 * Get this region, and start it quiescing by setting the
483 read_lock(&rh
->hash_lock
);
484 reg
= __rh_find(rh
, region
);
485 read_unlock(&rh
->hash_lock
);
487 spin_lock_irq(&rh
->region_lock
);
488 reg
->state
= RH_RECOVERING
;
490 /* Already quiesced ? */
491 if (atomic_read(®
->pending
))
492 list_del_init(®
->list
);
494 list_move(®
->list
, &rh
->quiesced_regions
);
496 spin_unlock_irq(&rh
->region_lock
);
501 static void rh_recovery_prepare(struct region_hash
*rh
)
503 while (!down_trylock(&rh
->recovery_count
))
504 if (__rh_recovery_prepare(rh
) <= 0) {
505 up(&rh
->recovery_count
);
511 * Returns any quiesced regions.
513 static struct region
*rh_recovery_start(struct region_hash
*rh
)
515 struct region
*reg
= NULL
;
517 spin_lock_irq(&rh
->region_lock
);
518 if (!list_empty(&rh
->quiesced_regions
)) {
519 reg
= list_entry(rh
->quiesced_regions
.next
,
520 struct region
, list
);
521 list_del_init(®
->list
); /* remove from the quiesced list */
523 spin_unlock_irq(&rh
->region_lock
);
528 /* FIXME: success ignored for now */
529 static void rh_recovery_end(struct region
*reg
, int success
)
531 struct region_hash
*rh
= reg
->rh
;
533 spin_lock_irq(&rh
->region_lock
);
534 list_add(®
->list
, ®
->rh
->recovered_regions
);
535 spin_unlock_irq(&rh
->region_lock
);
540 static void rh_flush(struct region_hash
*rh
)
542 rh
->log
->type
->flush(rh
->log
);
545 static void rh_delay(struct region_hash
*rh
, struct bio
*bio
)
549 read_lock(&rh
->hash_lock
);
550 reg
= __rh_find(rh
, bio_to_region(rh
, bio
));
551 bio_list_add(®
->delayed_bios
, bio
);
552 read_unlock(&rh
->hash_lock
);
555 static void rh_stop_recovery(struct region_hash
*rh
)
559 /* wait for any recovering regions */
560 for (i
= 0; i
< MAX_RECOVERY
; i
++)
561 down(&rh
->recovery_count
);
564 static void rh_start_recovery(struct region_hash
*rh
)
568 for (i
= 0; i
< MAX_RECOVERY
; i
++)
569 up(&rh
->recovery_count
);
575 * Every mirror should look like this one.
577 #define DEFAULT_MIRROR 0
580 * This is yucky. We squirrel the mirror_set struct away inside
581 * bi_next for write buffers. This is safe since the bh
582 * doesn't get submitted to the lower levels of block layer.
584 static struct mirror_set
*bio_get_ms(struct bio
*bio
)
586 return (struct mirror_set
*) bio
->bi_next
;
589 static void bio_set_ms(struct bio
*bio
, struct mirror_set
*ms
)
591 bio
->bi_next
= (struct bio
*) ms
;
594 /*-----------------------------------------------------------------
597 * When a mirror is first activated we may find that some regions
598 * are in the no-sync state. We have to recover these by
599 * recopying from the default mirror to all the others.
600 *---------------------------------------------------------------*/
601 static void recovery_complete(int read_err
, unsigned int write_err
,
604 struct region
*reg
= (struct region
*) context
;
606 /* FIXME: better error handling */
607 rh_recovery_end(reg
, !(read_err
|| write_err
));
610 static int recover(struct mirror_set
*ms
, struct region
*reg
)
614 struct io_region from
, to
[KCOPYD_MAX_REGIONS
], *dest
;
616 unsigned long flags
= 0;
618 /* fill in the source */
619 m
= ms
->default_mirror
;
620 from
.bdev
= m
->dev
->bdev
;
621 from
.sector
= m
->offset
+ region_to_sector(reg
->rh
, reg
->key
);
622 if (reg
->key
== (ms
->nr_regions
- 1)) {
624 * The final region may be smaller than
627 from
.count
= ms
->ti
->len
& (reg
->rh
->region_size
- 1);
629 from
.count
= reg
->rh
->region_size
;
631 from
.count
= reg
->rh
->region_size
;
633 /* fill in the destinations */
634 for (i
= 0, dest
= to
; i
< ms
->nr_mirrors
; i
++) {
635 if (&ms
->mirror
[i
] == ms
->default_mirror
)
639 dest
->bdev
= m
->dev
->bdev
;
640 dest
->sector
= m
->offset
+ region_to_sector(reg
->rh
, reg
->key
);
641 dest
->count
= from
.count
;
646 set_bit(KCOPYD_IGNORE_ERROR
, &flags
);
647 r
= kcopyd_copy(ms
->kcopyd_client
, &from
, ms
->nr_mirrors
- 1, to
, flags
,
648 recovery_complete
, reg
);
653 static void do_recovery(struct mirror_set
*ms
)
657 struct dirty_log
*log
= ms
->rh
.log
;
660 * Start quiescing some regions.
662 rh_recovery_prepare(&ms
->rh
);
665 * Copy any already quiesced regions.
667 while ((reg
= rh_recovery_start(&ms
->rh
))) {
668 r
= recover(ms
, reg
);
670 rh_recovery_end(reg
, 0);
674 * Update the in sync flag.
677 (log
->type
->get_sync_count(log
) == ms
->nr_regions
)) {
678 /* the sync is complete */
679 dm_table_event(ms
->ti
->table
);
684 /*-----------------------------------------------------------------
686 *---------------------------------------------------------------*/
687 static struct mirror
*choose_mirror(struct mirror_set
*ms
, sector_t sector
)
689 /* FIXME: add read balancing */
690 return ms
->default_mirror
;
694 * remap a buffer to a particular mirror.
696 static void map_bio(struct mirror_set
*ms
, struct mirror
*m
, struct bio
*bio
)
698 bio
->bi_bdev
= m
->dev
->bdev
;
699 bio
->bi_sector
= m
->offset
+ (bio
->bi_sector
- ms
->ti
->begin
);
702 static void do_reads(struct mirror_set
*ms
, struct bio_list
*reads
)
708 while ((bio
= bio_list_pop(reads
))) {
709 region
= bio_to_region(&ms
->rh
, bio
);
712 * We can only read balance if the region is in sync.
714 if (rh_in_sync(&ms
->rh
, region
, 0))
715 m
= choose_mirror(ms
, bio
->bi_sector
);
717 m
= ms
->default_mirror
;
720 generic_make_request(bio
);
724 /*-----------------------------------------------------------------
727 * We do different things with the write io depending on the
728 * state of the region that it's in:
730 * SYNC: increment pending, use kcopyd to write to *all* mirrors
731 * RECOVERING: delay the io until recovery completes
732 * NOSYNC: increment pending, just write to the default mirror
733 *---------------------------------------------------------------*/
734 static void write_callback(unsigned long error
, void *context
)
738 struct bio
*bio
= (struct bio
*) context
;
739 struct mirror_set
*ms
;
741 ms
= bio_get_ms(bio
);
742 bio_set_ms(bio
, NULL
);
745 * NOTE: We don't decrement the pending count here,
746 * instead it is done by the targets endio function.
747 * This way we handle both writes to SYNC and NOSYNC
748 * regions with the same code.
753 * only error the io if all mirrors failed.
757 for (i
= 0; i
< ms
->nr_mirrors
; i
++)
758 if (!test_bit(i
, &error
)) {
763 bio_endio(bio
, bio
->bi_size
, 0);
766 static void do_write(struct mirror_set
*ms
, struct bio
*bio
)
769 struct io_region io
[KCOPYD_MAX_REGIONS
+1];
772 for (i
= 0; i
< ms
->nr_mirrors
; i
++) {
775 io
[i
].bdev
= m
->dev
->bdev
;
776 io
[i
].sector
= m
->offset
+ (bio
->bi_sector
- ms
->ti
->begin
);
777 io
[i
].count
= bio
->bi_size
>> 9;
781 dm_io_async_bvec(ms
->nr_mirrors
, io
, WRITE
,
782 bio
->bi_io_vec
+ bio
->bi_idx
,
783 write_callback
, bio
);
786 static void do_writes(struct mirror_set
*ms
, struct bio_list
*writes
)
790 struct bio_list sync
, nosync
, recover
, *this_list
= NULL
;
796 * Classify each write.
798 bio_list_init(&sync
);
799 bio_list_init(&nosync
);
800 bio_list_init(&recover
);
802 while ((bio
= bio_list_pop(writes
))) {
803 state
= rh_state(&ms
->rh
, bio_to_region(&ms
->rh
, bio
), 1);
815 this_list
= &recover
;
819 bio_list_add(this_list
, bio
);
823 * Increment the pending counts for any regions that will
824 * be written to (writes to recover regions are going to
827 rh_inc_pending(&ms
->rh
, &sync
);
828 rh_inc_pending(&ms
->rh
, &nosync
);
834 while ((bio
= bio_list_pop(&sync
)))
837 while ((bio
= bio_list_pop(&recover
)))
838 rh_delay(&ms
->rh
, bio
);
840 while ((bio
= bio_list_pop(&nosync
))) {
841 map_bio(ms
, ms
->default_mirror
, bio
);
842 generic_make_request(bio
);
846 /*-----------------------------------------------------------------
848 *---------------------------------------------------------------*/
849 static LIST_HEAD(_mirror_sets
);
850 static DECLARE_RWSEM(_mirror_sets_lock
);
852 static void do_mirror(struct mirror_set
*ms
)
854 struct bio_list reads
, writes
;
856 spin_lock(&ms
->lock
);
859 bio_list_init(&ms
->reads
);
860 bio_list_init(&ms
->writes
);
861 spin_unlock(&ms
->lock
);
863 rh_update_states(&ms
->rh
);
865 do_reads(ms
, &reads
);
866 do_writes(ms
, &writes
);
869 static void do_work(void *ignored
)
871 struct mirror_set
*ms
;
873 down_read(&_mirror_sets_lock
);
874 list_for_each_entry (ms
, &_mirror_sets
, list
)
876 up_read(&_mirror_sets_lock
);
879 /*-----------------------------------------------------------------
881 *---------------------------------------------------------------*/
882 static struct mirror_set
*alloc_context(unsigned int nr_mirrors
,
883 uint32_t region_size
,
884 struct dm_target
*ti
,
885 struct dirty_log
*dl
)
888 struct mirror_set
*ms
= NULL
;
890 if (array_too_big(sizeof(*ms
), sizeof(ms
->mirror
[0]), nr_mirrors
))
893 len
= sizeof(*ms
) + (sizeof(ms
->mirror
[0]) * nr_mirrors
);
895 ms
= kmalloc(len
, GFP_KERNEL
);
897 ti
->error
= "Cannot allocate mirror context";
902 spin_lock_init(&ms
->lock
);
905 ms
->nr_mirrors
= nr_mirrors
;
906 ms
->nr_regions
= dm_sector_div_up(ti
->len
, region_size
);
908 ms
->default_mirror
= &ms
->mirror
[DEFAULT_MIRROR
];
910 if (rh_init(&ms
->rh
, ms
, dl
, region_size
, ms
->nr_regions
)) {
911 ti
->error
= "Error creating dirty region hash";
919 static void free_context(struct mirror_set
*ms
, struct dm_target
*ti
,
923 dm_put_device(ti
, ms
->mirror
[m
].dev
);
929 static inline int _check_region_size(struct dm_target
*ti
, uint32_t size
)
931 return !(size
% (PAGE_SIZE
>> 9) || (size
& (size
- 1)) ||
935 static int get_mirror(struct mirror_set
*ms
, struct dm_target
*ti
,
936 unsigned int mirror
, char **argv
)
938 unsigned long long offset
;
940 if (sscanf(argv
[1], "%llu", &offset
) != 1) {
941 ti
->error
= "Invalid offset";
945 if (dm_get_device(ti
, argv
[0], offset
, ti
->len
,
946 dm_table_get_mode(ti
->table
),
947 &ms
->mirror
[mirror
].dev
)) {
948 ti
->error
= "Device lookup failure";
952 ms
->mirror
[mirror
].offset
= offset
;
957 static int add_mirror_set(struct mirror_set
*ms
)
959 down_write(&_mirror_sets_lock
);
960 list_add_tail(&ms
->list
, &_mirror_sets
);
961 up_write(&_mirror_sets_lock
);
967 static void del_mirror_set(struct mirror_set
*ms
)
969 down_write(&_mirror_sets_lock
);
971 up_write(&_mirror_sets_lock
);
975 * Create dirty log: log_type #log_params <log_params>
977 static struct dirty_log
*create_dirty_log(struct dm_target
*ti
,
978 unsigned int argc
, char **argv
,
979 unsigned int *args_used
)
981 unsigned int param_count
;
982 struct dirty_log
*dl
;
985 ti
->error
= "Insufficient mirror log arguments";
989 if (sscanf(argv
[1], "%u", ¶m_count
) != 1) {
990 ti
->error
= "Invalid mirror log argument count";
994 *args_used
= 2 + param_count
;
996 if (argc
< *args_used
) {
997 ti
->error
= "Insufficient mirror log arguments";
1001 dl
= dm_create_dirty_log(argv
[0], ti
, param_count
, argv
+ 2);
1003 ti
->error
= "Error creating mirror dirty log";
1007 if (!_check_region_size(ti
, dl
->type
->get_region_size(dl
))) {
1008 ti
->error
= "Invalid region size";
1009 dm_destroy_dirty_log(dl
);
1017 * Construct a mirror mapping:
1019 * log_type #log_params <log_params>
1020 * #mirrors [mirror_path offset]{2,}
1022 * log_type is "core" or "disk"
1023 * #log_params is between 1 and 3
1025 #define DM_IO_PAGES 64
1026 static int mirror_ctr(struct dm_target
*ti
, unsigned int argc
, char **argv
)
1029 unsigned int nr_mirrors
, m
, args_used
;
1030 struct mirror_set
*ms
;
1031 struct dirty_log
*dl
;
1033 dl
= create_dirty_log(ti
, argc
, argv
, &args_used
);
1040 if (!argc
|| sscanf(argv
[0], "%u", &nr_mirrors
) != 1 ||
1041 nr_mirrors
< 2 || nr_mirrors
> KCOPYD_MAX_REGIONS
+ 1) {
1042 ti
->error
= "Invalid number of mirrors";
1043 dm_destroy_dirty_log(dl
);
1049 if (argc
!= nr_mirrors
* 2) {
1050 ti
->error
= "Wrong number of mirror arguments";
1051 dm_destroy_dirty_log(dl
);
1055 ms
= alloc_context(nr_mirrors
, dl
->type
->get_region_size(dl
), ti
, dl
);
1057 dm_destroy_dirty_log(dl
);
1061 /* Get the mirror parameter sets */
1062 for (m
= 0; m
< nr_mirrors
; m
++) {
1063 r
= get_mirror(ms
, ti
, m
, argv
);
1065 free_context(ms
, ti
, m
);
1073 ti
->split_io
= ms
->rh
.region_size
;
1075 r
= kcopyd_client_create(DM_IO_PAGES
, &ms
->kcopyd_client
);
1077 free_context(ms
, ti
, ms
->nr_mirrors
);
1085 static void mirror_dtr(struct dm_target
*ti
)
1087 struct mirror_set
*ms
= (struct mirror_set
*) ti
->private;
1090 kcopyd_client_destroy(ms
->kcopyd_client
);
1091 free_context(ms
, ti
, ms
->nr_mirrors
);
1094 static void queue_bio(struct mirror_set
*ms
, struct bio
*bio
, int rw
)
1096 int should_wake
= 0;
1097 struct bio_list
*bl
;
1099 bl
= (rw
== WRITE
) ? &ms
->writes
: &ms
->reads
;
1100 spin_lock(&ms
->lock
);
1101 should_wake
= !(bl
->head
);
1102 bio_list_add(bl
, bio
);
1103 spin_unlock(&ms
->lock
);
1110 * Mirror mapping function
1112 static int mirror_map(struct dm_target
*ti
, struct bio
*bio
,
1113 union map_info
*map_context
)
1115 int r
, rw
= bio_rw(bio
);
1117 struct mirror_set
*ms
= ti
->private;
1119 map_context
->ll
= bio_to_region(&ms
->rh
, bio
);
1122 queue_bio(ms
, bio
, rw
);
1126 r
= ms
->rh
.log
->type
->in_sync(ms
->rh
.log
,
1127 bio_to_region(&ms
->rh
, bio
), 0);
1128 if (r
< 0 && r
!= -EWOULDBLOCK
)
1131 if (r
== -EWOULDBLOCK
) /* FIXME: ugly */
1135 * We don't want to fast track a recovery just for a read
1136 * ahead. So we just let it silently fail.
1137 * FIXME: get rid of this.
1139 if (!r
&& rw
== READA
)
1143 /* Pass this io over to the daemon */
1144 queue_bio(ms
, bio
, rw
);
1148 m
= choose_mirror(ms
, bio
->bi_sector
);
1152 map_bio(ms
, m
, bio
);
1156 static int mirror_end_io(struct dm_target
*ti
, struct bio
*bio
,
1157 int error
, union map_info
*map_context
)
1159 int rw
= bio_rw(bio
);
1160 struct mirror_set
*ms
= (struct mirror_set
*) ti
->private;
1161 region_t region
= map_context
->ll
;
1164 * We need to dec pending if this was a write.
1167 rh_dec(&ms
->rh
, region
);
1172 static void mirror_postsuspend(struct dm_target
*ti
)
1174 struct mirror_set
*ms
= (struct mirror_set
*) ti
->private;
1175 struct dirty_log
*log
= ms
->rh
.log
;
1177 rh_stop_recovery(&ms
->rh
);
1178 if (log
->type
->suspend
&& log
->type
->suspend(log
))
1179 /* FIXME: need better error handling */
1180 DMWARN("log suspend failed");
1183 static void mirror_resume(struct dm_target
*ti
)
1185 struct mirror_set
*ms
= (struct mirror_set
*) ti
->private;
1186 struct dirty_log
*log
= ms
->rh
.log
;
1187 if (log
->type
->resume
&& log
->type
->resume(log
))
1188 /* FIXME: need better error handling */
1189 DMWARN("log resume failed");
1190 rh_start_recovery(&ms
->rh
);
1193 static int mirror_status(struct dm_target
*ti
, status_type_t type
,
1194 char *result
, unsigned int maxlen
)
1197 struct mirror_set
*ms
= (struct mirror_set
*) ti
->private;
1199 sz
= ms
->rh
.log
->type
->status(ms
->rh
.log
, type
, result
, maxlen
);
1202 case STATUSTYPE_INFO
:
1203 DMEMIT("%d ", ms
->nr_mirrors
);
1204 for (m
= 0; m
< ms
->nr_mirrors
; m
++)
1205 DMEMIT("%s ", ms
->mirror
[m
].dev
->name
);
1208 (unsigned long long)ms
->rh
.log
->type
->
1209 get_sync_count(ms
->rh
.log
),
1210 (unsigned long long)ms
->nr_regions
);
1213 case STATUSTYPE_TABLE
:
1214 DMEMIT("%d ", ms
->nr_mirrors
);
1215 for (m
= 0; m
< ms
->nr_mirrors
; m
++)
1216 DMEMIT("%s %llu ", ms
->mirror
[m
].dev
->name
,
1217 (unsigned long long)ms
->mirror
[m
].offset
);
1223 static struct target_type mirror_target
= {
1225 .version
= {1, 0, 2},
1226 .module
= THIS_MODULE
,
1230 .end_io
= mirror_end_io
,
1231 .postsuspend
= mirror_postsuspend
,
1232 .resume
= mirror_resume
,
1233 .status
= mirror_status
,
1236 static int __init
dm_mirror_init(void)
1240 r
= dm_dirty_log_init();
1244 _kmirrord_wq
= create_singlethread_workqueue("kmirrord");
1245 if (!_kmirrord_wq
) {
1246 DMERR("couldn't start kmirrord");
1247 dm_dirty_log_exit();
1250 INIT_WORK(&_kmirrord_work
, do_work
, NULL
);
1252 r
= dm_register_target(&mirror_target
);
1254 DMERR("%s: Failed to register mirror target",
1255 mirror_target
.name
);
1256 dm_dirty_log_exit();
1257 destroy_workqueue(_kmirrord_wq
);
1263 static void __exit
dm_mirror_exit(void)
1267 r
= dm_unregister_target(&mirror_target
);
1269 DMERR("%s: unregister failed %d", mirror_target
.name
, r
);
1271 destroy_workqueue(_kmirrord_wq
);
1272 dm_dirty_log_exit();
1276 module_init(dm_mirror_init
);
1277 module_exit(dm_mirror_exit
);
1279 MODULE_DESCRIPTION(DM_NAME
" mirror target");
1280 MODULE_AUTHOR("Joe Thornber");
1281 MODULE_LICENSE("GPL");