blob: 9bfd057be6869dff2aba03a498b20e1c148ba4c8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2003 Sistina Software Limited.
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +01003 * Copyright (C) 2005-2008 Red Hat, Inc. All rights reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * This file is released under the GPL.
6 */
7
Jonathan Brassow06386bb2008-02-08 02:11:37 +00008#include "dm-bio-record.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -07009
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/init.h>
11#include <linux/mempool.h>
12#include <linux/module.h>
13#include <linux/pagemap.h>
14#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/workqueue.h>
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +010016#include <linux/device-mapper.h>
Alasdair G Kergona765e202008-04-24 22:02:01 +010017#include <linux/dm-io.h>
18#include <linux/dm-dirty-log.h>
19#include <linux/dm-kcopyd.h>
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +010020#include <linux/dm-region-hash.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Alasdair G Kergon72d94862006-06-26 00:27:35 -070022#define DM_MSG_PREFIX "raid1"
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +010023
24#define MAX_RECOVERY 1 /* Maximum number of regions recovered in parallel. */
Alasdair G Kergon72d94862006-06-26 00:27:35 -070025
Jonathan E Brassowa8e6afa2007-05-09 02:32:59 -070026#define DM_RAID1_HANDLE_ERRORS 0x01
Jonathan Brassowf44db672007-07-12 17:29:04 +010027#define errors_handled(p) ((p)->features & DM_RAID1_HANDLE_ERRORS)
Jonathan E Brassowa8e6afa2007-05-09 02:32:59 -070028
Jonathan E Brassow33184042006-11-08 17:44:44 -080029static DECLARE_WAIT_QUEUE_HEAD(_kmirrord_recovery_stopped);
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Linus Torvalds1da177e2005-04-16 15:20:36 -070031/*-----------------------------------------------------------------
Neil Browne4c8b3b2006-06-26 00:27:26 -070032 * Mirror set structures.
33 *---------------------------------------------------------------*/
Jonathan Brassow72f4b312008-02-08 02:11:29 +000034enum dm_raid1_error {
35 DM_RAID1_WRITE_ERROR,
Mikulas Patocka64b30c42009-12-10 23:52:02 +000036 DM_RAID1_FLUSH_ERROR,
Jonathan Brassow72f4b312008-02-08 02:11:29 +000037 DM_RAID1_SYNC_ERROR,
38 DM_RAID1_READ_ERROR
39};
40
Neil Browne4c8b3b2006-06-26 00:27:26 -070041struct mirror {
Jonathan Brassowaa5617c2007-10-19 22:47:58 +010042 struct mirror_set *ms;
Neil Browne4c8b3b2006-06-26 00:27:26 -070043 atomic_t error_count;
Al Viro39ed7ad2008-02-13 03:53:00 +000044 unsigned long error_type;
Neil Browne4c8b3b2006-06-26 00:27:26 -070045 struct dm_dev *dev;
46 sector_t offset;
47};
48
49struct mirror_set {
50 struct dm_target *ti;
51 struct list_head list;
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +010052
Jonathan E Brassowa8e6afa2007-05-09 02:32:59 -070053 uint64_t features;
Neil Browne4c8b3b2006-06-26 00:27:26 -070054
Jonathan Brassow72f4b312008-02-08 02:11:29 +000055 spinlock_t lock; /* protects the lists */
Neil Browne4c8b3b2006-06-26 00:27:26 -070056 struct bio_list reads;
57 struct bio_list writes;
Jonathan Brassow72f4b312008-02-08 02:11:29 +000058 struct bio_list failures;
Mikulas Patocka04788502009-12-10 23:52:03 +000059 struct bio_list holds; /* bios are waiting until suspend */
Neil Browne4c8b3b2006-06-26 00:27:26 -070060
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +010061 struct dm_region_hash *rh;
62 struct dm_kcopyd_client *kcopyd_client;
Milan Broz88be1632007-05-09 02:33:04 -070063 struct dm_io_client *io_client;
Jonathan Brassow06386bb2008-02-08 02:11:37 +000064 mempool_t *read_record_pool;
Milan Broz88be1632007-05-09 02:33:04 -070065
Neil Browne4c8b3b2006-06-26 00:27:26 -070066 /* recovery */
67 region_t nr_regions;
68 int in_sync;
Jonathan Brassowfc1ff952007-07-12 17:29:15 +010069 int log_failure;
Mikulas Patocka929be8f2009-12-10 23:52:06 +000070 int leg_failure;
Jonathan Brassowb80aa7a2008-02-08 02:11:35 +000071 atomic_t suspend;
Neil Browne4c8b3b2006-06-26 00:27:26 -070072
Jonathan Brassow72f4b312008-02-08 02:11:29 +000073 atomic_t default_mirror; /* Default mirror */
Neil Browne4c8b3b2006-06-26 00:27:26 -070074
Holger Smolinski6ad36fe2007-05-09 02:32:50 -070075 struct workqueue_struct *kmirrord_wq;
76 struct work_struct kmirrord_work;
Mikulas Patockaa2aebe02008-04-24 22:10:42 +010077 struct timer_list timer;
78 unsigned long timer_pending;
79
Jonathan Brassow72f4b312008-02-08 02:11:29 +000080 struct work_struct trigger_event;
Holger Smolinski6ad36fe2007-05-09 02:32:50 -070081
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +010082 unsigned nr_mirrors;
Neil Browne4c8b3b2006-06-26 00:27:26 -070083 struct mirror mirror[0];
84};
85
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +010086static void wakeup_mirrord(void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087{
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +010088 struct mirror_set *ms = context;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Holger Smolinski6ad36fe2007-05-09 02:32:50 -070090 queue_work(ms->kmirrord_wq, &ms->kmirrord_work);
91}
92
Mikulas Patockaa2aebe02008-04-24 22:10:42 +010093static void delayed_wake_fn(unsigned long data)
94{
95 struct mirror_set *ms = (struct mirror_set *) data;
96
97 clear_bit(0, &ms->timer_pending);
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +010098 wakeup_mirrord(ms);
Mikulas Patockaa2aebe02008-04-24 22:10:42 +010099}
100
101static void delayed_wake(struct mirror_set *ms)
102{
103 if (test_and_set_bit(0, &ms->timer_pending))
104 return;
105
106 ms->timer.expires = jiffies + HZ / 5;
107 ms->timer.data = (unsigned long) ms;
108 ms->timer.function = delayed_wake_fn;
109 add_timer(&ms->timer);
110}
111
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100112static void wakeup_all_recovery_waiters(void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100114 wake_up_all(&_kmirrord_recovery_stopped);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115}
116
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100117static void queue_bio(struct mirror_set *ms, struct bio *bio, int rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
119 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 int should_wake = 0;
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100121 struct bio_list *bl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100123 bl = (rw == WRITE) ? &ms->writes : &ms->reads;
124 spin_lock_irqsave(&ms->lock, flags);
125 should_wake = !(bl->head);
126 bio_list_add(bl, bio);
127 spin_unlock_irqrestore(&ms->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129 if (should_wake)
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100130 wakeup_mirrord(ms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131}
132
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100133static void dispatch_bios(void *context, struct bio_list *bio_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134{
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100135 struct mirror_set *ms = context;
136 struct bio *bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100138 while ((bio = bio_list_pop(bio_list)))
139 queue_bio(ms, bio, WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140}
141
Jonathan Brassow06386bb2008-02-08 02:11:37 +0000142#define MIN_READ_RECORDS 20
143struct dm_raid1_read_record {
144 struct mirror *m;
145 struct dm_bio_details details;
146};
147
Mikulas Patocka95f8fac2009-04-02 19:55:24 +0100148static struct kmem_cache *_dm_raid1_read_record_cache;
149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150/*
151 * Every mirror should look like this one.
152 */
153#define DEFAULT_MIRROR 0
154
155/*
Jonathan Brassow06386bb2008-02-08 02:11:37 +0000156 * This is yucky. We squirrel the mirror struct away inside
157 * bi_next for read/write buffers. This is safe since the bh
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 * doesn't get submitted to the lower levels of block layer.
159 */
Jonathan Brassow06386bb2008-02-08 02:11:37 +0000160static struct mirror *bio_get_m(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
Jonathan Brassow06386bb2008-02-08 02:11:37 +0000162 return (struct mirror *) bio->bi_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163}
164
Jonathan Brassow06386bb2008-02-08 02:11:37 +0000165static void bio_set_m(struct bio *bio, struct mirror *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166{
Jonathan Brassow06386bb2008-02-08 02:11:37 +0000167 bio->bi_next = (struct bio *) m;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168}
169
Jonathan Brassow72f4b312008-02-08 02:11:29 +0000170static struct mirror *get_default_mirror(struct mirror_set *ms)
171{
172 return &ms->mirror[atomic_read(&ms->default_mirror)];
173}
174
175static void set_default_mirror(struct mirror *m)
176{
177 struct mirror_set *ms = m->ms;
178 struct mirror *m0 = &(ms->mirror[0]);
179
180 atomic_set(&ms->default_mirror, m - m0);
181}
182
Mikulas Patocka87968dd2009-12-10 23:52:04 +0000183static struct mirror *get_valid_mirror(struct mirror_set *ms)
184{
185 struct mirror *m;
186
187 for (m = ms->mirror; m < ms->mirror + ms->nr_mirrors; m++)
188 if (!atomic_read(&m->error_count))
189 return m;
190
191 return NULL;
192}
193
Jonathan Brassow72f4b312008-02-08 02:11:29 +0000194/* fail_mirror
195 * @m: mirror device to fail
196 * @error_type: one of the enum's, DM_RAID1_*_ERROR
197 *
198 * If errors are being handled, record the type of
199 * error encountered for this device. If this type
200 * of error has already been recorded, we can return;
201 * otherwise, we must signal userspace by triggering
202 * an event. Additionally, if the device is the
203 * primary device, we must choose a new primary, but
204 * only if the mirror is in-sync.
205 *
206 * This function must not block.
207 */
208static void fail_mirror(struct mirror *m, enum dm_raid1_error error_type)
209{
210 struct mirror_set *ms = m->ms;
211 struct mirror *new;
212
Mikulas Patocka929be8f2009-12-10 23:52:06 +0000213 ms->leg_failure = 1;
214
Jonathan Brassow72f4b312008-02-08 02:11:29 +0000215 /*
216 * error_count is used for nothing more than a
217 * simple way to tell if a device has encountered
218 * errors.
219 */
220 atomic_inc(&m->error_count);
221
222 if (test_and_set_bit(error_type, &m->error_type))
223 return;
224
Jonathan Brassowd460c652009-01-06 03:04:57 +0000225 if (!errors_handled(ms))
226 return;
227
Jonathan Brassow72f4b312008-02-08 02:11:29 +0000228 if (m != get_default_mirror(ms))
229 goto out;
230
231 if (!ms->in_sync) {
232 /*
233 * Better to issue requests to same failing device
234 * than to risk returning corrupt data.
235 */
236 DMERR("Primary mirror (%s) failed while out-of-sync: "
237 "Reads may fail.", m->dev->name);
238 goto out;
239 }
240
Mikulas Patocka87968dd2009-12-10 23:52:04 +0000241 new = get_valid_mirror(ms);
242 if (new)
243 set_default_mirror(new);
244 else
Jonathan Brassow72f4b312008-02-08 02:11:29 +0000245 DMWARN("All sides of mirror have failed.");
246
247out:
248 schedule_work(&ms->trigger_event);
249}
250
Mikulas Patockac0da3742009-12-10 23:52:02 +0000251static int mirror_flush(struct dm_target *ti)
252{
253 struct mirror_set *ms = ti->private;
254 unsigned long error_bits;
255
256 unsigned int i;
257 struct dm_io_region io[ms->nr_mirrors];
258 struct mirror *m;
259 struct dm_io_request io_req = {
Tejun Heod87f4c12010-09-03 11:56:19 +0200260 .bi_rw = WRITE_FLUSH,
Mikulas Patockac0da3742009-12-10 23:52:02 +0000261 .mem.type = DM_IO_KMEM,
Mike Snitzer5fc2ffe2011-01-13 19:59:48 +0000262 .mem.ptr.addr = NULL,
Mikulas Patockac0da3742009-12-10 23:52:02 +0000263 .client = ms->io_client,
264 };
265
266 for (i = 0, m = ms->mirror; i < ms->nr_mirrors; i++, m++) {
267 io[i].bdev = m->dev->bdev;
268 io[i].sector = 0;
269 io[i].count = 0;
270 }
271
272 error_bits = -1;
273 dm_io(&io_req, ms->nr_mirrors, io, &error_bits);
274 if (unlikely(error_bits != 0)) {
275 for (i = 0; i < ms->nr_mirrors; i++)
276 if (test_bit(i, &error_bits))
277 fail_mirror(ms->mirror + i,
Mikulas Patocka64b30c42009-12-10 23:52:02 +0000278 DM_RAID1_FLUSH_ERROR);
Mikulas Patockac0da3742009-12-10 23:52:02 +0000279 return -EIO;
280 }
281
282 return 0;
283}
284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285/*-----------------------------------------------------------------
286 * Recovery.
287 *
288 * When a mirror is first activated we may find that some regions
289 * are in the no-sync state. We have to recover these by
290 * recopying from the default mirror to all the others.
291 *---------------------------------------------------------------*/
Alasdair G Kergon4cdc1d12008-03-28 14:16:10 -0700292static void recovery_complete(int read_err, unsigned long write_err,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 void *context)
294{
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100295 struct dm_region *reg = context;
296 struct mirror_set *ms = dm_rh_region_context(reg);
Jonathan Brassow8f0205b2008-02-08 02:11:32 +0000297 int m, bit = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
Jonathan Brassow8f0205b2008-02-08 02:11:32 +0000299 if (read_err) {
Jonathan Brassowf44db672007-07-12 17:29:04 +0100300 /* Read error means the failure of default mirror. */
301 DMERR_LIMIT("Unable to read primary mirror during recovery");
Jonathan Brassow8f0205b2008-02-08 02:11:32 +0000302 fail_mirror(get_default_mirror(ms), DM_RAID1_SYNC_ERROR);
303 }
Jonathan Brassowf44db672007-07-12 17:29:04 +0100304
Jonathan Brassow8f0205b2008-02-08 02:11:32 +0000305 if (write_err) {
Alasdair G Kergon4cdc1d12008-03-28 14:16:10 -0700306 DMERR_LIMIT("Write error during recovery (error = 0x%lx)",
Jonathan Brassowf44db672007-07-12 17:29:04 +0100307 write_err);
Jonathan Brassow8f0205b2008-02-08 02:11:32 +0000308 /*
309 * Bits correspond to devices (excluding default mirror).
310 * The default mirror cannot change during recovery.
311 */
312 for (m = 0; m < ms->nr_mirrors; m++) {
313 if (&ms->mirror[m] == get_default_mirror(ms))
314 continue;
315 if (test_bit(bit, &write_err))
316 fail_mirror(ms->mirror + m,
317 DM_RAID1_SYNC_ERROR);
318 bit++;
319 }
320 }
Jonathan Brassowf44db672007-07-12 17:29:04 +0100321
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100322 dm_rh_recovery_end(reg, !(read_err || write_err));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323}
324
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100325static int recover(struct mirror_set *ms, struct dm_region *reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326{
327 int r;
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100328 unsigned i;
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100329 struct dm_io_region from, to[DM_KCOPYD_MAX_REGIONS], *dest;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 struct mirror *m;
331 unsigned long flags = 0;
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100332 region_t key = dm_rh_get_region_key(reg);
333 sector_t region_size = dm_rh_get_region_size(ms->rh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
335 /* fill in the source */
Jonathan Brassow72f4b312008-02-08 02:11:29 +0000336 m = get_default_mirror(ms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 from.bdev = m->dev->bdev;
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100338 from.sector = m->offset + dm_rh_region_to_sector(ms->rh, key);
339 if (key == (ms->nr_regions - 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 /*
341 * The final region may be smaller than
342 * region_size.
343 */
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100344 from.count = ms->ti->len & (region_size - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 if (!from.count)
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100346 from.count = region_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 } else
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100348 from.count = region_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
350 /* fill in the destinations */
351 for (i = 0, dest = to; i < ms->nr_mirrors; i++) {
Jonathan Brassow72f4b312008-02-08 02:11:29 +0000352 if (&ms->mirror[i] == get_default_mirror(ms))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 continue;
354
355 m = ms->mirror + i;
356 dest->bdev = m->dev->bdev;
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100357 dest->sector = m->offset + dm_rh_region_to_sector(ms->rh, key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 dest->count = from.count;
359 dest++;
360 }
361
362 /* hand to kcopyd */
Jonathan Brassowf7c83e22008-10-10 13:36:59 +0100363 if (!errors_handled(ms))
364 set_bit(DM_KCOPYD_IGNORE_ERROR, &flags);
365
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100366 r = dm_kcopyd_copy(ms->kcopyd_client, &from, ms->nr_mirrors - 1, to,
367 flags, recovery_complete, reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
369 return r;
370}
371
372static void do_recovery(struct mirror_set *ms)
373{
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100374 struct dm_region *reg;
375 struct dm_dirty_log *log = dm_rh_dirty_log(ms->rh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
378 /*
379 * Start quiescing some regions.
380 */
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100381 dm_rh_recovery_prepare(ms->rh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
383 /*
384 * Copy any already quiesced regions.
385 */
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100386 while ((reg = dm_rh_recovery_start(ms->rh))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 r = recover(ms, reg);
388 if (r)
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100389 dm_rh_recovery_end(reg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 }
391
392 /*
393 * Update the in sync flag.
394 */
395 if (!ms->in_sync &&
396 (log->type->get_sync_count(log) == ms->nr_regions)) {
397 /* the sync is complete */
398 dm_table_event(ms->ti->table);
399 ms->in_sync = 1;
400 }
401}
402
403/*-----------------------------------------------------------------
404 * Reads
405 *---------------------------------------------------------------*/
406static struct mirror *choose_mirror(struct mirror_set *ms, sector_t sector)
407{
Jonathan Brassow06386bb2008-02-08 02:11:37 +0000408 struct mirror *m = get_default_mirror(ms);
409
410 do {
411 if (likely(!atomic_read(&m->error_count)))
412 return m;
413
414 if (m-- == ms->mirror)
415 m += ms->nr_mirrors;
416 } while (m != get_default_mirror(ms));
417
418 return NULL;
419}
420
421static int default_ok(struct mirror *m)
422{
423 struct mirror *default_mirror = get_default_mirror(m->ms);
424
425 return !atomic_read(&default_mirror->error_count);
426}
427
428static int mirror_available(struct mirror_set *ms, struct bio *bio)
429{
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100430 struct dm_dirty_log *log = dm_rh_dirty_log(ms->rh);
431 region_t region = dm_rh_bio_to_region(ms->rh, bio);
Jonathan Brassow06386bb2008-02-08 02:11:37 +0000432
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100433 if (log->type->in_sync(log, region, 0))
Jonathan Brassow06386bb2008-02-08 02:11:37 +0000434 return choose_mirror(ms, bio->bi_sector) ? 1 : 0;
435
436 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437}
438
439/*
440 * remap a buffer to a particular mirror.
441 */
Jonathan Brassow06386bb2008-02-08 02:11:37 +0000442static sector_t map_sector(struct mirror *m, struct bio *bio)
443{
Mikulas Patocka41841532009-12-10 23:51:59 +0000444 if (unlikely(!bio->bi_size))
445 return 0;
Alasdair G Kergonb441a2622010-08-12 04:14:11 +0100446 return m->offset + dm_target_offset(m->ms->ti, bio->bi_sector);
Jonathan Brassow06386bb2008-02-08 02:11:37 +0000447}
448
449static void map_bio(struct mirror *m, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450{
451 bio->bi_bdev = m->dev->bdev;
Jonathan Brassow06386bb2008-02-08 02:11:37 +0000452 bio->bi_sector = map_sector(m, bio);
453}
454
Heinz Mauelshagen22a1ceb2008-04-24 21:43:17 +0100455static void map_region(struct dm_io_region *io, struct mirror *m,
Jonathan Brassow06386bb2008-02-08 02:11:37 +0000456 struct bio *bio)
457{
458 io->bdev = m->dev->bdev;
459 io->sector = map_sector(m, bio);
460 io->count = bio->bi_size >> 9;
461}
462
Mikulas Patocka04788502009-12-10 23:52:03 +0000463static void hold_bio(struct mirror_set *ms, struct bio *bio)
464{
465 /*
Takahiro Yasuif0703042010-03-06 02:32:35 +0000466 * Lock is required to avoid race condition during suspend
467 * process.
Mikulas Patocka04788502009-12-10 23:52:03 +0000468 */
Takahiro Yasuif0703042010-03-06 02:32:35 +0000469 spin_lock_irq(&ms->lock);
470
Mikulas Patocka04788502009-12-10 23:52:03 +0000471 if (atomic_read(&ms->suspend)) {
Takahiro Yasuif0703042010-03-06 02:32:35 +0000472 spin_unlock_irq(&ms->lock);
473
474 /*
475 * If device is suspended, complete the bio.
476 */
Mikulas Patocka04788502009-12-10 23:52:03 +0000477 if (dm_noflush_suspending(ms->ti))
478 bio_endio(bio, DM_ENDIO_REQUEUE);
479 else
480 bio_endio(bio, -EIO);
481 return;
482 }
483
484 /*
485 * Hold bio until the suspend is complete.
486 */
Mikulas Patocka04788502009-12-10 23:52:03 +0000487 bio_list_add(&ms->holds, bio);
488 spin_unlock_irq(&ms->lock);
489}
490
Jonathan Brassow06386bb2008-02-08 02:11:37 +0000491/*-----------------------------------------------------------------
492 * Reads
493 *---------------------------------------------------------------*/
494static void read_callback(unsigned long error, void *context)
495{
496 struct bio *bio = context;
497 struct mirror *m;
498
499 m = bio_get_m(bio);
500 bio_set_m(bio, NULL);
501
502 if (likely(!error)) {
503 bio_endio(bio, 0);
504 return;
505 }
506
507 fail_mirror(m, DM_RAID1_READ_ERROR);
508
509 if (likely(default_ok(m)) || mirror_available(m->ms, bio)) {
510 DMWARN_LIMIT("Read failure on mirror device %s. "
511 "Trying alternative device.",
512 m->dev->name);
513 queue_bio(m->ms, bio, bio_rw(bio));
514 return;
515 }
516
517 DMERR_LIMIT("Read failure on mirror device %s. Failing I/O.",
518 m->dev->name);
519 bio_endio(bio, -EIO);
520}
521
522/* Asynchronous read. */
523static void read_async_bio(struct mirror *m, struct bio *bio)
524{
Heinz Mauelshagen22a1ceb2008-04-24 21:43:17 +0100525 struct dm_io_region io;
Jonathan Brassow06386bb2008-02-08 02:11:37 +0000526 struct dm_io_request io_req = {
527 .bi_rw = READ,
528 .mem.type = DM_IO_BVEC,
529 .mem.ptr.bvec = bio->bi_io_vec + bio->bi_idx,
530 .notify.fn = read_callback,
531 .notify.context = bio,
532 .client = m->ms->io_client,
533 };
534
535 map_region(&io, m, bio);
536 bio_set_m(bio, m);
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100537 BUG_ON(dm_io(&io_req, 1, &io, NULL));
538}
539
540static inline int region_in_sync(struct mirror_set *ms, region_t region,
541 int may_block)
542{
543 int state = dm_rh_get_state(ms->rh, region, may_block);
544 return state == DM_RH_CLEAN || state == DM_RH_DIRTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545}
546
547static void do_reads(struct mirror_set *ms, struct bio_list *reads)
548{
549 region_t region;
550 struct bio *bio;
551 struct mirror *m;
552
553 while ((bio = bio_list_pop(reads))) {
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100554 region = dm_rh_bio_to_region(ms->rh, bio);
Jonathan Brassow06386bb2008-02-08 02:11:37 +0000555 m = get_default_mirror(ms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
557 /*
558 * We can only read balance if the region is in sync.
559 */
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100560 if (likely(region_in_sync(ms, region, 1)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 m = choose_mirror(ms, bio->bi_sector);
Jonathan Brassow06386bb2008-02-08 02:11:37 +0000562 else if (m && atomic_read(&m->error_count))
563 m = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
Jonathan Brassow06386bb2008-02-08 02:11:37 +0000565 if (likely(m))
566 read_async_bio(m, bio);
567 else
568 bio_endio(bio, -EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 }
570}
571
572/*-----------------------------------------------------------------
573 * Writes.
574 *
575 * We do different things with the write io depending on the
576 * state of the region that it's in:
577 *
578 * SYNC: increment pending, use kcopyd to write to *all* mirrors
579 * RECOVERING: delay the io until recovery completes
580 * NOSYNC: increment pending, just write to the default mirror
581 *---------------------------------------------------------------*/
Jonathan Brassow72f4b312008-02-08 02:11:29 +0000582
Jonathan Brassow72f4b312008-02-08 02:11:29 +0000583
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584static void write_callback(unsigned long error, void *context)
585{
Jonathan Brassow72f4b312008-02-08 02:11:29 +0000586 unsigned i, ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 struct bio *bio = (struct bio *) context;
588 struct mirror_set *ms;
Jonathan Brassow72f4b312008-02-08 02:11:29 +0000589 int should_wake = 0;
590 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
Jonathan Brassow06386bb2008-02-08 02:11:37 +0000592 ms = bio_get_m(bio)->ms;
593 bio_set_m(bio, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
595 /*
596 * NOTE: We don't decrement the pending count here,
597 * instead it is done by the targets endio function.
598 * This way we handle both writes to SYNC and NOSYNC
599 * regions with the same code.
600 */
Mikulas Patocka60f355e2009-12-10 23:52:05 +0000601 if (likely(!error)) {
602 bio_endio(bio, ret);
603 return;
604 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
Jonathan Brassow72f4b312008-02-08 02:11:29 +0000606 for (i = 0; i < ms->nr_mirrors; i++)
607 if (test_bit(i, &error))
608 fail_mirror(ms->mirror + i, DM_RAID1_WRITE_ERROR);
Jonathan Brassow72f4b312008-02-08 02:11:29 +0000609
Mikulas Patocka60f355e2009-12-10 23:52:05 +0000610 /*
611 * Need to raise event. Since raising
612 * events can block, we need to do it in
613 * the main thread.
614 */
615 spin_lock_irqsave(&ms->lock, flags);
616 if (!ms->failures.head)
617 should_wake = 1;
618 bio_list_add(&ms->failures, bio);
619 spin_unlock_irqrestore(&ms->lock, flags);
620 if (should_wake)
621 wakeup_mirrord(ms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622}
623
624static void do_write(struct mirror_set *ms, struct bio *bio)
625{
626 unsigned int i;
Heinz Mauelshagen22a1ceb2008-04-24 21:43:17 +0100627 struct dm_io_region io[ms->nr_mirrors], *dest = io;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 struct mirror *m;
Milan Broz88be1632007-05-09 02:33:04 -0700629 struct dm_io_request io_req = {
Tejun Heod87f4c12010-09-03 11:56:19 +0200630 .bi_rw = WRITE | (bio->bi_rw & WRITE_FLUSH_FUA),
Milan Broz88be1632007-05-09 02:33:04 -0700631 .mem.type = DM_IO_BVEC,
632 .mem.ptr.bvec = bio->bi_io_vec + bio->bi_idx,
633 .notify.fn = write_callback,
634 .notify.context = bio,
635 .client = ms->io_client,
636 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Mike Snitzer5fc2ffe2011-01-13 19:59:48 +0000638 if (bio->bi_rw & REQ_DISCARD) {
639 io_req.bi_rw |= REQ_DISCARD;
640 io_req.mem.type = DM_IO_KMEM;
641 io_req.mem.ptr.addr = NULL;
642 }
643
Jonathan Brassow06386bb2008-02-08 02:11:37 +0000644 for (i = 0, m = ms->mirror; i < ms->nr_mirrors; i++, m++)
645 map_region(dest++, m, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Jonathan Brassow06386bb2008-02-08 02:11:37 +0000647 /*
648 * Use default mirror because we only need it to retrieve the reference
649 * to the mirror set in write_callback().
650 */
651 bio_set_m(bio, get_default_mirror(ms));
Milan Broz88be1632007-05-09 02:33:04 -0700652
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100653 BUG_ON(dm_io(&io_req, ms->nr_mirrors, io, NULL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654}
655
656static void do_writes(struct mirror_set *ms, struct bio_list *writes)
657{
658 int state;
659 struct bio *bio;
660 struct bio_list sync, nosync, recover, *this_list = NULL;
Jonathan Brassow7513c2a2009-04-02 19:55:30 +0100661 struct bio_list requeue;
662 struct dm_dirty_log *log = dm_rh_dirty_log(ms->rh);
663 region_t region;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
665 if (!writes->head)
666 return;
667
668 /*
669 * Classify each write.
670 */
671 bio_list_init(&sync);
672 bio_list_init(&nosync);
673 bio_list_init(&recover);
Jonathan Brassow7513c2a2009-04-02 19:55:30 +0100674 bio_list_init(&requeue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
676 while ((bio = bio_list_pop(writes))) {
Mike Snitzer5fc2ffe2011-01-13 19:59:48 +0000677 if ((bio->bi_rw & REQ_FLUSH) ||
678 (bio->bi_rw & REQ_DISCARD)) {
Mikulas Patocka41841532009-12-10 23:51:59 +0000679 bio_list_add(&sync, bio);
680 continue;
681 }
682
Jonathan Brassow7513c2a2009-04-02 19:55:30 +0100683 region = dm_rh_bio_to_region(ms->rh, bio);
684
685 if (log->type->is_remote_recovering &&
686 log->type->is_remote_recovering(log, region)) {
687 bio_list_add(&requeue, bio);
688 continue;
689 }
690
691 state = dm_rh_get_state(ms->rh, region, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 switch (state) {
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100693 case DM_RH_CLEAN:
694 case DM_RH_DIRTY:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 this_list = &sync;
696 break;
697
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100698 case DM_RH_NOSYNC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 this_list = &nosync;
700 break;
701
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100702 case DM_RH_RECOVERING:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 this_list = &recover;
704 break;
705 }
706
707 bio_list_add(this_list, bio);
708 }
709
710 /*
Jonathan Brassow7513c2a2009-04-02 19:55:30 +0100711 * Add bios that are delayed due to remote recovery
712 * back on to the write queue
713 */
714 if (unlikely(requeue.head)) {
715 spin_lock_irq(&ms->lock);
716 bio_list_merge(&ms->writes, &requeue);
717 spin_unlock_irq(&ms->lock);
Mikulas Patocka69885682009-07-23 20:30:37 +0100718 delayed_wake(ms);
Jonathan Brassow7513c2a2009-04-02 19:55:30 +0100719 }
720
721 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 * Increment the pending counts for any regions that will
723 * be written to (writes to recover regions are going to
724 * be delayed).
725 */
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100726 dm_rh_inc_pending(ms->rh, &sync);
727 dm_rh_inc_pending(ms->rh, &nosync);
Jonathan Brassowd2b69862009-09-04 20:40:32 +0100728
729 /*
730 * If the flush fails on a previous call and succeeds here,
731 * we must not reset the log_failure variable. We need
732 * userspace interaction to do that.
733 */
734 ms->log_failure = dm_rh_flush(ms->rh) ? 1 : ms->log_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
736 /*
737 * Dispatch io.
738 */
Mikulas Patocka5528d172010-02-16 18:42:55 +0000739 if (unlikely(ms->log_failure) && errors_handled(ms)) {
Jonathan Brassowb80aa7a2008-02-08 02:11:35 +0000740 spin_lock_irq(&ms->lock);
741 bio_list_merge(&ms->failures, &sync);
742 spin_unlock_irq(&ms->lock);
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100743 wakeup_mirrord(ms);
Jonathan Brassowb80aa7a2008-02-08 02:11:35 +0000744 } else
Jonathan Brassowfc1ff952007-07-12 17:29:15 +0100745 while ((bio = bio_list_pop(&sync)))
Jonathan Brassowb80aa7a2008-02-08 02:11:35 +0000746 do_write(ms, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
748 while ((bio = bio_list_pop(&recover)))
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100749 dm_rh_delay(ms->rh, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
751 while ((bio = bio_list_pop(&nosync))) {
Mikulas Patockaede5ea02010-03-06 02:32:22 +0000752 if (unlikely(ms->leg_failure) && errors_handled(ms)) {
753 spin_lock_irq(&ms->lock);
754 bio_list_add(&ms->failures, bio);
755 spin_unlock_irq(&ms->lock);
756 wakeup_mirrord(ms);
757 } else {
Mikulas Patocka929be8f2009-12-10 23:52:06 +0000758 map_bio(get_default_mirror(ms), bio);
759 generic_make_request(bio);
760 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 }
762}
763
Jonathan Brassow72f4b312008-02-08 02:11:29 +0000764static void do_failures(struct mirror_set *ms, struct bio_list *failures)
765{
766 struct bio *bio;
767
Mikulas Patocka0f398a82009-12-10 23:52:04 +0000768 if (likely(!failures->head))
Jonathan Brassow72f4b312008-02-08 02:11:29 +0000769 return;
770
Jonathan Brassowb80aa7a2008-02-08 02:11:35 +0000771 /*
772 * If the log has failed, unattempted writes are being
Mikulas Patocka0f398a82009-12-10 23:52:04 +0000773 * put on the holds list. We can't issue those writes
Jonathan Brassowb80aa7a2008-02-08 02:11:35 +0000774 * until a log has been marked, so we must store them.
775 *
776 * If a 'noflush' suspend is in progress, we can requeue
777 * the I/O's to the core. This give userspace a chance
778 * to reconfigure the mirror, at which point the core
779 * will reissue the writes. If the 'noflush' flag is
780 * not set, we have no choice but to return errors.
781 *
782 * Some writes on the failures list may have been
783 * submitted before the log failure and represent a
784 * failure to write to one of the devices. It is ok
785 * for us to treat them the same and requeue them
786 * as well.
787 */
Mikulas Patocka0f398a82009-12-10 23:52:04 +0000788 while ((bio = bio_list_pop(failures))) {
Mikulas Patocka60f355e2009-12-10 23:52:05 +0000789 if (!ms->log_failure) {
Mikulas Patocka0f398a82009-12-10 23:52:04 +0000790 ms->in_sync = 0;
Mikulas Patockac58098b2009-12-10 23:52:05 +0000791 dm_rh_mark_nosync(ms->rh, bio);
Mikulas Patocka0f398a82009-12-10 23:52:04 +0000792 }
Mikulas Patocka60f355e2009-12-10 23:52:05 +0000793
794 /*
795 * If all the legs are dead, fail the I/O.
796 * If we have been told to handle errors, hold the bio
797 * and wait for userspace to deal with the problem.
798 * Otherwise pretend that the I/O succeeded. (This would
799 * be wrong if the failed leg returned after reboot and
800 * got replicated back to the good legs.)
801 */
802 if (!get_valid_mirror(ms))
803 bio_endio(bio, -EIO);
804 else if (errors_handled(ms))
805 hold_bio(ms, bio);
806 else
807 bio_endio(bio, 0);
Jonathan Brassowb80aa7a2008-02-08 02:11:35 +0000808 }
Jonathan Brassow72f4b312008-02-08 02:11:29 +0000809}
810
811static void trigger_event(struct work_struct *work)
812{
813 struct mirror_set *ms =
814 container_of(work, struct mirror_set, trigger_event);
815
816 dm_table_event(ms->ti->table);
817}
818
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819/*-----------------------------------------------------------------
820 * kmirrord
821 *---------------------------------------------------------------*/
Mikulas Patockaa2aebe02008-04-24 22:10:42 +0100822static void do_mirror(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823{
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100824 struct mirror_set *ms = container_of(work, struct mirror_set,
825 kmirrord_work);
Jonathan Brassow72f4b312008-02-08 02:11:29 +0000826 struct bio_list reads, writes, failures;
827 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
Jonathan Brassow72f4b312008-02-08 02:11:29 +0000829 spin_lock_irqsave(&ms->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 reads = ms->reads;
831 writes = ms->writes;
Jonathan Brassow72f4b312008-02-08 02:11:29 +0000832 failures = ms->failures;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 bio_list_init(&ms->reads);
834 bio_list_init(&ms->writes);
Jonathan Brassow72f4b312008-02-08 02:11:29 +0000835 bio_list_init(&ms->failures);
836 spin_unlock_irqrestore(&ms->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100838 dm_rh_update_states(ms->rh, errors_handled(ms));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 do_recovery(ms);
840 do_reads(ms, &reads);
841 do_writes(ms, &writes);
Jonathan Brassow72f4b312008-02-08 02:11:29 +0000842 do_failures(ms, &failures);
Jonathan Brassow72f4b312008-02-08 02:11:29 +0000843}
844
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845/*-----------------------------------------------------------------
846 * Target functions
847 *---------------------------------------------------------------*/
848static struct mirror_set *alloc_context(unsigned int nr_mirrors,
849 uint32_t region_size,
850 struct dm_target *ti,
Heinz Mauelshagen416cd172008-04-24 21:43:35 +0100851 struct dm_dirty_log *dl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852{
853 size_t len;
854 struct mirror_set *ms = NULL;
855
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 len = sizeof(*ms) + (sizeof(ms->mirror[0]) * nr_mirrors);
857
Yoann Padioleaudd00cc42007-07-19 01:49:03 -0700858 ms = kzalloc(len, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 if (!ms) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700860 ti->error = "Cannot allocate mirror context";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 return NULL;
862 }
863
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 spin_lock_init(&ms->lock);
Mikulas Patocka5339fc22009-12-10 23:52:06 +0000865 bio_list_init(&ms->reads);
866 bio_list_init(&ms->writes);
867 bio_list_init(&ms->failures);
868 bio_list_init(&ms->holds);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
870 ms->ti = ti;
871 ms->nr_mirrors = nr_mirrors;
872 ms->nr_regions = dm_sector_div_up(ti->len, region_size);
873 ms->in_sync = 0;
Jonathan Brassowb80aa7a2008-02-08 02:11:35 +0000874 ms->log_failure = 0;
Mikulas Patocka929be8f2009-12-10 23:52:06 +0000875 ms->leg_failure = 0;
Jonathan Brassowb80aa7a2008-02-08 02:11:35 +0000876 atomic_set(&ms->suspend, 0);
Jonathan Brassow72f4b312008-02-08 02:11:29 +0000877 atomic_set(&ms->default_mirror, DEFAULT_MIRROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
Mikulas Patocka95f8fac2009-04-02 19:55:24 +0100879 ms->read_record_pool = mempool_create_slab_pool(MIN_READ_RECORDS,
880 _dm_raid1_read_record_cache);
881
Jonathan Brassow06386bb2008-02-08 02:11:37 +0000882 if (!ms->read_record_pool) {
883 ti->error = "Error creating mirror read_record_pool";
884 kfree(ms);
885 return NULL;
886 }
887
Mikulas Patockabda8efe2011-05-29 13:03:09 +0100888 ms->io_client = dm_io_client_create();
Milan Broz88be1632007-05-09 02:33:04 -0700889 if (IS_ERR(ms->io_client)) {
890 ti->error = "Error creating dm_io client";
Jonathan Brassow06386bb2008-02-08 02:11:37 +0000891 mempool_destroy(ms->read_record_pool);
Milan Broz88be1632007-05-09 02:33:04 -0700892 kfree(ms);
893 return NULL;
894 }
895
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100896 ms->rh = dm_region_hash_create(ms, dispatch_bios, wakeup_mirrord,
897 wakeup_all_recovery_waiters,
898 ms->ti->begin, MAX_RECOVERY,
899 dl, region_size, ms->nr_regions);
900 if (IS_ERR(ms->rh)) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700901 ti->error = "Error creating dirty region hash";
Dmitry Monakhova72cf732007-10-19 22:38:39 +0100902 dm_io_client_destroy(ms->io_client);
Jonathan Brassow06386bb2008-02-08 02:11:37 +0000903 mempool_destroy(ms->read_record_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 kfree(ms);
905 return NULL;
906 }
907
908 return ms;
909}
910
911static void free_context(struct mirror_set *ms, struct dm_target *ti,
912 unsigned int m)
913{
914 while (m--)
915 dm_put_device(ti, ms->mirror[m].dev);
916
Milan Broz88be1632007-05-09 02:33:04 -0700917 dm_io_client_destroy(ms->io_client);
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100918 dm_region_hash_destroy(ms->rh);
Jonathan Brassow06386bb2008-02-08 02:11:37 +0000919 mempool_destroy(ms->read_record_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 kfree(ms);
921}
922
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923static int get_mirror(struct mirror_set *ms, struct dm_target *ti,
924 unsigned int mirror, char **argv)
925{
Andrew Morton4ee218c2006-03-27 01:17:48 -0800926 unsigned long long offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
Andrew Morton4ee218c2006-03-27 01:17:48 -0800928 if (sscanf(argv[1], "%llu", &offset) != 1) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700929 ti->error = "Invalid offset";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 return -EINVAL;
931 }
932
Nikanth Karthikesan8215d6e2010-03-06 02:32:27 +0000933 if (dm_get_device(ti, argv[0], dm_table_get_mode(ti->table),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 &ms->mirror[mirror].dev)) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700935 ti->error = "Device lookup failure";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 return -ENXIO;
937 }
938
Jonathan Brassowaa5617c2007-10-19 22:47:58 +0100939 ms->mirror[mirror].ms = ms;
Jonathan Brassow72f4b312008-02-08 02:11:29 +0000940 atomic_set(&(ms->mirror[mirror].error_count), 0);
941 ms->mirror[mirror].error_type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 ms->mirror[mirror].offset = offset;
943
944 return 0;
945}
946
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947/*
948 * Create dirty log: log_type #log_params <log_params>
949 */
Heinz Mauelshagen416cd172008-04-24 21:43:35 +0100950static struct dm_dirty_log *create_dirty_log(struct dm_target *ti,
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100951 unsigned argc, char **argv,
952 unsigned *args_used)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953{
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100954 unsigned param_count;
Heinz Mauelshagen416cd172008-04-24 21:43:35 +0100955 struct dm_dirty_log *dl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
957 if (argc < 2) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700958 ti->error = "Insufficient mirror log arguments";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 return NULL;
960 }
961
962 if (sscanf(argv[1], "%u", &param_count) != 1) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700963 ti->error = "Invalid mirror log argument count";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 return NULL;
965 }
966
967 *args_used = 2 + param_count;
968
969 if (argc < *args_used) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700970 ti->error = "Insufficient mirror log arguments";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 return NULL;
972 }
973
Mikulas Patockac0da3742009-12-10 23:52:02 +0000974 dl = dm_dirty_log_create(argv[0], ti, mirror_flush, param_count,
975 argv + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 if (!dl) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700977 ti->error = "Error creating mirror dirty log";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 return NULL;
979 }
980
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 return dl;
982}
983
Jonathan E Brassowa8e6afa2007-05-09 02:32:59 -0700984static int parse_features(struct mirror_set *ms, unsigned argc, char **argv,
985 unsigned *args_used)
986{
987 unsigned num_features;
988 struct dm_target *ti = ms->ti;
989
990 *args_used = 0;
991
992 if (!argc)
993 return 0;
994
995 if (sscanf(argv[0], "%u", &num_features) != 1) {
996 ti->error = "Invalid number of features";
997 return -EINVAL;
998 }
999
1000 argc--;
1001 argv++;
1002 (*args_used)++;
1003
1004 if (num_features > argc) {
1005 ti->error = "Not enough arguments to support feature count";
1006 return -EINVAL;
1007 }
1008
1009 if (!strcmp("handle_errors", argv[0]))
1010 ms->features |= DM_RAID1_HANDLE_ERRORS;
1011 else {
1012 ti->error = "Unrecognised feature requested";
1013 return -EINVAL;
1014 }
1015
1016 (*args_used)++;
1017
1018 return 0;
1019}
1020
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021/*
1022 * Construct a mirror mapping:
1023 *
1024 * log_type #log_params <log_params>
1025 * #mirrors [mirror_path offset]{2,}
Jonathan E Brassowa8e6afa2007-05-09 02:32:59 -07001026 * [#features <features>]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 *
1028 * log_type is "core" or "disk"
1029 * #log_params is between 1 and 3
Jonathan E Brassowa8e6afa2007-05-09 02:32:59 -07001030 *
1031 * If present, features must be "handle_errors".
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033static int mirror_ctr(struct dm_target *ti, unsigned int argc, char **argv)
1034{
1035 int r;
1036 unsigned int nr_mirrors, m, args_used;
1037 struct mirror_set *ms;
Heinz Mauelshagen416cd172008-04-24 21:43:35 +01001038 struct dm_dirty_log *dl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
1040 dl = create_dirty_log(ti, argc, argv, &args_used);
1041 if (!dl)
1042 return -EINVAL;
1043
1044 argv += args_used;
1045 argc -= args_used;
1046
1047 if (!argc || sscanf(argv[0], "%u", &nr_mirrors) != 1 ||
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +01001048 nr_mirrors < 2 || nr_mirrors > DM_KCOPYD_MAX_REGIONS + 1) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001049 ti->error = "Invalid number of mirrors";
Heinz Mauelshagen416cd172008-04-24 21:43:35 +01001050 dm_dirty_log_destroy(dl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 return -EINVAL;
1052 }
1053
1054 argv++, argc--;
1055
Jonathan E Brassowa8e6afa2007-05-09 02:32:59 -07001056 if (argc < nr_mirrors * 2) {
1057 ti->error = "Too few mirror arguments";
Heinz Mauelshagen416cd172008-04-24 21:43:35 +01001058 dm_dirty_log_destroy(dl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 return -EINVAL;
1060 }
1061
1062 ms = alloc_context(nr_mirrors, dl->type->get_region_size(dl), ti, dl);
1063 if (!ms) {
Heinz Mauelshagen416cd172008-04-24 21:43:35 +01001064 dm_dirty_log_destroy(dl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 return -ENOMEM;
1066 }
1067
1068 /* Get the mirror parameter sets */
1069 for (m = 0; m < nr_mirrors; m++) {
1070 r = get_mirror(ms, ti, m, argv);
1071 if (r) {
1072 free_context(ms, ti, m);
1073 return r;
1074 }
1075 argv += 2;
1076 argc -= 2;
1077 }
1078
1079 ti->private = ms;
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +01001080 ti->split_io = dm_rh_get_region_size(ms->rh);
Mikulas Patocka41841532009-12-10 23:51:59 +00001081 ti->num_flush_requests = 1;
Mike Snitzer5fc2ffe2011-01-13 19:59:48 +00001082 ti->num_discard_requests = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083
Tejun Heo9c4376d2011-01-13 19:59:58 +00001084 ms->kmirrord_wq = alloc_workqueue("kmirrord",
1085 WQ_NON_REENTRANT | WQ_MEM_RECLAIM, 0);
Holger Smolinski6ad36fe2007-05-09 02:32:50 -07001086 if (!ms->kmirrord_wq) {
1087 DMERR("couldn't start kmirrord");
Dmitry Monakhova72cf732007-10-19 22:38:39 +01001088 r = -ENOMEM;
1089 goto err_free_context;
Holger Smolinski6ad36fe2007-05-09 02:32:50 -07001090 }
1091 INIT_WORK(&ms->kmirrord_work, do_mirror);
Mikulas Patockaa2aebe02008-04-24 22:10:42 +01001092 init_timer(&ms->timer);
1093 ms->timer_pending = 0;
Jonathan Brassow72f4b312008-02-08 02:11:29 +00001094 INIT_WORK(&ms->trigger_event, trigger_event);
Holger Smolinski6ad36fe2007-05-09 02:32:50 -07001095
Jonathan E Brassowa8e6afa2007-05-09 02:32:59 -07001096 r = parse_features(ms, argc, argv, &args_used);
Dmitry Monakhova72cf732007-10-19 22:38:39 +01001097 if (r)
1098 goto err_destroy_wq;
Jonathan E Brassowa8e6afa2007-05-09 02:32:59 -07001099
1100 argv += args_used;
1101 argc -= args_used;
1102
Jonathan Brassowf44db672007-07-12 17:29:04 +01001103 /*
1104 * Any read-balancing addition depends on the
1105 * DM_RAID1_HANDLE_ERRORS flag being present.
1106 * This is because the decision to balance depends
1107 * on the sync state of a region. If the above
1108 * flag is not present, we ignore errors; and
1109 * the sync state may be inaccurate.
1110 */
1111
Jonathan E Brassowa8e6afa2007-05-09 02:32:59 -07001112 if (argc) {
1113 ti->error = "Too many mirror arguments";
Dmitry Monakhova72cf732007-10-19 22:38:39 +01001114 r = -EINVAL;
1115 goto err_destroy_wq;
Jonathan E Brassowa8e6afa2007-05-09 02:32:59 -07001116 }
1117
Mikulas Patockafa34ce72011-05-29 13:03:13 +01001118 ms->kcopyd_client = dm_kcopyd_client_create();
1119 if (IS_ERR(ms->kcopyd_client)) {
1120 r = PTR_ERR(ms->kcopyd_client);
Dmitry Monakhova72cf732007-10-19 22:38:39 +01001121 goto err_destroy_wq;
Mikulas Patockafa34ce72011-05-29 13:03:13 +01001122 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +01001124 wakeup_mirrord(ms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 return 0;
Dmitry Monakhova72cf732007-10-19 22:38:39 +01001126
1127err_destroy_wq:
1128 destroy_workqueue(ms->kmirrord_wq);
1129err_free_context:
1130 free_context(ms, ti, ms->nr_mirrors);
1131 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132}
1133
1134static void mirror_dtr(struct dm_target *ti)
1135{
1136 struct mirror_set *ms = (struct mirror_set *) ti->private;
1137
Mikulas Patockaa2aebe02008-04-24 22:10:42 +01001138 del_timer_sync(&ms->timer);
Holger Smolinski6ad36fe2007-05-09 02:32:50 -07001139 flush_workqueue(ms->kmirrord_wq);
Tejun Heod5ffa382011-01-13 19:59:56 +00001140 flush_work_sync(&ms->trigger_event);
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +01001141 dm_kcopyd_client_destroy(ms->kcopyd_client);
Holger Smolinski6ad36fe2007-05-09 02:32:50 -07001142 destroy_workqueue(ms->kmirrord_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 free_context(ms, ti, ms->nr_mirrors);
1144}
1145
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146/*
1147 * Mirror mapping function
1148 */
1149static int mirror_map(struct dm_target *ti, struct bio *bio,
1150 union map_info *map_context)
1151{
1152 int r, rw = bio_rw(bio);
1153 struct mirror *m;
1154 struct mirror_set *ms = ti->private;
Jonathan Brassow06386bb2008-02-08 02:11:37 +00001155 struct dm_raid1_read_record *read_record = NULL;
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +01001156 struct dm_dirty_log *log = dm_rh_dirty_log(ms->rh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
1158 if (rw == WRITE) {
Jonathan Brassow06386bb2008-02-08 02:11:37 +00001159 /* Save region for mirror_end_io() handler */
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +01001160 map_context->ll = dm_rh_bio_to_region(ms->rh, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 queue_bio(ms, bio, rw);
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001162 return DM_MAPIO_SUBMITTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 }
1164
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +01001165 r = log->type->in_sync(log, dm_rh_bio_to_region(ms->rh, bio), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 if (r < 0 && r != -EWOULDBLOCK)
1167 return r;
1168
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 /*
Jonathan Brassow06386bb2008-02-08 02:11:37 +00001170 * If region is not in-sync queue the bio.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 */
Jonathan Brassow06386bb2008-02-08 02:11:37 +00001172 if (!r || (r == -EWOULDBLOCK)) {
1173 if (rw == READA)
1174 return -EWOULDBLOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 queue_bio(ms, bio, rw);
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001177 return DM_MAPIO_SUBMITTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 }
1179
Jonathan Brassow06386bb2008-02-08 02:11:37 +00001180 /*
1181 * The region is in-sync and we can perform reads directly.
1182 * Store enough information so we can retry if it fails.
1183 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 m = choose_mirror(ms, bio->bi_sector);
Jonathan Brassow06386bb2008-02-08 02:11:37 +00001185 if (unlikely(!m))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 return -EIO;
1187
Jonathan Brassow06386bb2008-02-08 02:11:37 +00001188 read_record = mempool_alloc(ms->read_record_pool, GFP_NOIO);
1189 if (likely(read_record)) {
1190 dm_bio_record(&read_record->details, bio);
1191 map_context->ptr = read_record;
1192 read_record->m = m;
1193 }
1194
1195 map_bio(m, bio);
1196
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001197 return DM_MAPIO_REMAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198}
1199
1200static int mirror_end_io(struct dm_target *ti, struct bio *bio,
1201 int error, union map_info *map_context)
1202{
1203 int rw = bio_rw(bio);
1204 struct mirror_set *ms = (struct mirror_set *) ti->private;
Jonathan Brassow06386bb2008-02-08 02:11:37 +00001205 struct mirror *m = NULL;
1206 struct dm_bio_details *bd = NULL;
1207 struct dm_raid1_read_record *read_record = map_context->ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
1209 /*
1210 * We need to dec pending if this was a write.
1211 */
Jonathan Brassow06386bb2008-02-08 02:11:37 +00001212 if (rw == WRITE) {
Tejun Heod87f4c12010-09-03 11:56:19 +02001213 if (!(bio->bi_rw & REQ_FLUSH))
Mikulas Patocka41841532009-12-10 23:51:59 +00001214 dm_rh_dec(ms->rh, map_context->ll);
Jonathan Brassow06386bb2008-02-08 02:11:37 +00001215 return error;
1216 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
Jonathan Brassow06386bb2008-02-08 02:11:37 +00001218 if (error == -EOPNOTSUPP)
1219 goto out;
1220
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001221 if ((error == -EWOULDBLOCK) && (bio->bi_rw & REQ_RAHEAD))
Jonathan Brassow06386bb2008-02-08 02:11:37 +00001222 goto out;
1223
1224 if (unlikely(error)) {
1225 if (!read_record) {
1226 /*
1227 * There wasn't enough memory to record necessary
1228 * information for a retry or there was no other
1229 * mirror in-sync.
1230 */
Adrian Bunke03f1a82008-02-19 19:44:19 +00001231 DMERR_LIMIT("Mirror read failed.");
Jonathan Brassow06386bb2008-02-08 02:11:37 +00001232 return -EIO;
1233 }
Adrian Bunke03f1a82008-02-19 19:44:19 +00001234
1235 m = read_record->m;
1236
Jonathan Brassow06386bb2008-02-08 02:11:37 +00001237 DMERR("Mirror read failed from %s. Trying alternative device.",
1238 m->dev->name);
1239
Jonathan Brassow06386bb2008-02-08 02:11:37 +00001240 fail_mirror(m, DM_RAID1_READ_ERROR);
1241
1242 /*
1243 * A failed read is requeued for another attempt using an intact
1244 * mirror.
1245 */
1246 if (default_ok(m) || mirror_available(ms, bio)) {
1247 bd = &read_record->details;
1248
1249 dm_bio_restore(bd, bio);
1250 mempool_free(read_record, ms->read_record_pool);
1251 map_context->ptr = NULL;
1252 queue_bio(ms, bio, rw);
1253 return 1;
1254 }
1255 DMERR("All replicated volumes dead, failing I/O");
1256 }
1257
1258out:
1259 if (read_record) {
1260 mempool_free(read_record, ms->read_record_pool);
1261 map_context->ptr = NULL;
1262 }
1263
1264 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265}
1266
Jonathan Brassowb80aa7a2008-02-08 02:11:35 +00001267static void mirror_presuspend(struct dm_target *ti)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268{
1269 struct mirror_set *ms = (struct mirror_set *) ti->private;
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +01001270 struct dm_dirty_log *log = dm_rh_dirty_log(ms->rh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271
Mikulas Patocka04788502009-12-10 23:52:03 +00001272 struct bio_list holds;
1273 struct bio *bio;
1274
Jonathan Brassowb80aa7a2008-02-08 02:11:35 +00001275 atomic_set(&ms->suspend, 1);
1276
1277 /*
Takahiro Yasuif0703042010-03-06 02:32:35 +00001278 * Process bios in the hold list to start recovery waiting
1279 * for bios in the hold list. After the process, no bio has
1280 * a chance to be added in the hold list because ms->suspend
1281 * is set.
1282 */
1283 spin_lock_irq(&ms->lock);
1284 holds = ms->holds;
1285 bio_list_init(&ms->holds);
1286 spin_unlock_irq(&ms->lock);
1287
1288 while ((bio = bio_list_pop(&holds)))
1289 hold_bio(ms, bio);
1290
1291 /*
Jonathan Brassowb80aa7a2008-02-08 02:11:35 +00001292 * We must finish up all the work that we've
1293 * generated (i.e. recovery work).
1294 */
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +01001295 dm_rh_stop_recovery(ms->rh);
Jonathan E Brassow33184042006-11-08 17:44:44 -08001296
Jonathan E Brassow33184042006-11-08 17:44:44 -08001297 wait_event(_kmirrord_recovery_stopped,
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +01001298 !dm_rh_recovery_in_flight(ms->rh));
Jonathan E Brassow33184042006-11-08 17:44:44 -08001299
Jonathan Brassowb80aa7a2008-02-08 02:11:35 +00001300 if (log->type->presuspend && log->type->presuspend(log))
1301 /* FIXME: need better error handling */
1302 DMWARN("log presuspend failed");
1303
1304 /*
1305 * Now that recovery is complete/stopped and the
1306 * delayed bios are queued, we need to wait for
1307 * the worker thread to complete. This way,
1308 * we know that all of our I/O has been pushed.
1309 */
1310 flush_workqueue(ms->kmirrord_wq);
1311}
1312
1313static void mirror_postsuspend(struct dm_target *ti)
1314{
1315 struct mirror_set *ms = ti->private;
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +01001316 struct dm_dirty_log *log = dm_rh_dirty_log(ms->rh);
Jonathan Brassowb80aa7a2008-02-08 02:11:35 +00001317
Jonathan Brassow6b3df0d2007-10-19 22:47:57 +01001318 if (log->type->postsuspend && log->type->postsuspend(log))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 /* FIXME: need better error handling */
Jonathan Brassowb80aa7a2008-02-08 02:11:35 +00001320 DMWARN("log postsuspend failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321}
1322
1323static void mirror_resume(struct dm_target *ti)
1324{
Jonathan Brassowb80aa7a2008-02-08 02:11:35 +00001325 struct mirror_set *ms = ti->private;
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +01001326 struct dm_dirty_log *log = dm_rh_dirty_log(ms->rh);
Jonathan Brassowb80aa7a2008-02-08 02:11:35 +00001327
1328 atomic_set(&ms->suspend, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 if (log->type->resume && log->type->resume(log))
1330 /* FIXME: need better error handling */
1331 DMWARN("log resume failed");
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +01001332 dm_rh_start_recovery(ms->rh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333}
1334
Jonathan Brassowaf195ac2008-02-08 02:11:39 +00001335/*
1336 * device_status_char
1337 * @m: mirror device/leg we want the status of
1338 *
1339 * We return one character representing the most severe error
1340 * we have encountered.
1341 * A => Alive - No failures
1342 * D => Dead - A write failure occurred leaving mirror out-of-sync
1343 * S => Sync - A sychronization failure occurred, mirror out-of-sync
1344 * R => Read - A read failure occurred, mirror data unaffected
1345 *
1346 * Returns: <char>
1347 */
1348static char device_status_char(struct mirror *m)
1349{
1350 if (!atomic_read(&(m->error_count)))
1351 return 'A';
1352
Mikulas Patocka64b30c42009-12-10 23:52:02 +00001353 return (test_bit(DM_RAID1_FLUSH_ERROR, &(m->error_type))) ? 'F' :
1354 (test_bit(DM_RAID1_WRITE_ERROR, &(m->error_type))) ? 'D' :
Jonathan Brassowaf195ac2008-02-08 02:11:39 +00001355 (test_bit(DM_RAID1_SYNC_ERROR, &(m->error_type))) ? 'S' :
1356 (test_bit(DM_RAID1_READ_ERROR, &(m->error_type))) ? 'R' : 'U';
1357}
1358
1359
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360static int mirror_status(struct dm_target *ti, status_type_t type,
1361 char *result, unsigned int maxlen)
1362{
Jonathan E Brassow315dcc22007-05-09 02:32:58 -07001363 unsigned int m, sz = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 struct mirror_set *ms = (struct mirror_set *) ti->private;
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +01001365 struct dm_dirty_log *log = dm_rh_dirty_log(ms->rh);
Jonathan Brassowaf195ac2008-02-08 02:11:39 +00001366 char buffer[ms->nr_mirrors + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 switch (type) {
1369 case STATUSTYPE_INFO:
1370 DMEMIT("%d ", ms->nr_mirrors);
Jonathan Brassowaf195ac2008-02-08 02:11:39 +00001371 for (m = 0; m < ms->nr_mirrors; m++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 DMEMIT("%s ", ms->mirror[m].dev->name);
Jonathan Brassowaf195ac2008-02-08 02:11:39 +00001373 buffer[m] = device_status_char(&(ms->mirror[m]));
1374 }
1375 buffer[m] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
Jonathan Brassowaf195ac2008-02-08 02:11:39 +00001377 DMEMIT("%llu/%llu 1 %s ",
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +01001378 (unsigned long long)log->type->get_sync_count(log),
Jonathan Brassowaf195ac2008-02-08 02:11:39 +00001379 (unsigned long long)ms->nr_regions, buffer);
Jonathan E Brassow315dcc22007-05-09 02:32:58 -07001380
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +01001381 sz += log->type->status(log, type, result+sz, maxlen-sz);
Jonathan E Brassow315dcc22007-05-09 02:32:58 -07001382
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 break;
1384
1385 case STATUSTYPE_TABLE:
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +01001386 sz = log->type->status(log, type, result, maxlen);
Jonathan E Brassow315dcc22007-05-09 02:32:58 -07001387
Jonathan Brassowe52b8f62006-10-03 01:15:32 -07001388 DMEMIT("%d", ms->nr_mirrors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 for (m = 0; m < ms->nr_mirrors; m++)
Jonathan Brassowe52b8f62006-10-03 01:15:32 -07001390 DMEMIT(" %s %llu", ms->mirror[m].dev->name,
Jonathan Brassowb80aa7a2008-02-08 02:11:35 +00001391 (unsigned long long)ms->mirror[m].offset);
Jonathan E Brassowa8e6afa2007-05-09 02:32:59 -07001392
1393 if (ms->features & DM_RAID1_HANDLE_ERRORS)
1394 DMEMIT(" 1 handle_errors");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 }
1396
1397 return 0;
1398}
1399
Mike Snitzeraf4874e2009-06-22 10:12:33 +01001400static int mirror_iterate_devices(struct dm_target *ti,
1401 iterate_devices_callout_fn fn, void *data)
1402{
1403 struct mirror_set *ms = ti->private;
1404 int ret = 0;
1405 unsigned i;
1406
1407 for (i = 0; !ret && i < ms->nr_mirrors; i++)
1408 ret = fn(ti, ms->mirror[i].dev,
Mike Snitzer5dea2712009-07-23 20:30:42 +01001409 ms->mirror[i].offset, ti->len, data);
Mike Snitzeraf4874e2009-06-22 10:12:33 +01001410
1411 return ret;
1412}
1413
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414static struct target_type mirror_target = {
1415 .name = "mirror",
Tejun Heo9c4376d2011-01-13 19:59:58 +00001416 .version = {1, 12, 1},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 .module = THIS_MODULE,
1418 .ctr = mirror_ctr,
1419 .dtr = mirror_dtr,
1420 .map = mirror_map,
1421 .end_io = mirror_end_io,
Jonathan Brassowb80aa7a2008-02-08 02:11:35 +00001422 .presuspend = mirror_presuspend,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 .postsuspend = mirror_postsuspend,
1424 .resume = mirror_resume,
1425 .status = mirror_status,
Mike Snitzeraf4874e2009-06-22 10:12:33 +01001426 .iterate_devices = mirror_iterate_devices,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427};
1428
1429static int __init dm_mirror_init(void)
1430{
1431 int r;
1432
Mikulas Patocka95f8fac2009-04-02 19:55:24 +01001433 _dm_raid1_read_record_cache = KMEM_CACHE(dm_raid1_read_record, 0);
1434 if (!_dm_raid1_read_record_cache) {
1435 DMERR("Can't allocate dm_raid1_read_record cache");
1436 r = -ENOMEM;
1437 goto bad_cache;
1438 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439
Mikulas Patocka95f8fac2009-04-02 19:55:24 +01001440 r = dm_register_target(&mirror_target);
1441 if (r < 0) {
1442 DMERR("Failed to register mirror target");
1443 goto bad_target;
1444 }
1445
1446 return 0;
1447
1448bad_target:
1449 kmem_cache_destroy(_dm_raid1_read_record_cache);
1450bad_cache:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 return r;
1452}
1453
1454static void __exit dm_mirror_exit(void)
1455{
Mikulas Patocka10d3bd02009-01-06 03:04:58 +00001456 dm_unregister_target(&mirror_target);
Mikulas Patocka95f8fac2009-04-02 19:55:24 +01001457 kmem_cache_destroy(_dm_raid1_read_record_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458}
1459
1460/* Module hooks */
1461module_init(dm_mirror_init);
1462module_exit(dm_mirror_exit);
1463
1464MODULE_DESCRIPTION(DM_NAME " mirror target");
1465MODULE_AUTHOR("Joe Thornber");
1466MODULE_LICENSE("GPL");