blob: 85c8704c67bb1412a91cc1dd9ed3167991392b49 [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. */
Milan Broz88be1632007-05-09 02:33:04 -070025#define DM_IO_PAGES 64
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +010026#define DM_KCOPYD_PAGES 64
Alasdair G Kergon72d94862006-06-26 00:27:35 -070027
Jonathan E Brassowa8e6afa2007-05-09 02:32:59 -070028#define DM_RAID1_HANDLE_ERRORS 0x01
Jonathan Brassowf44db672007-07-12 17:29:04 +010029#define errors_handled(p) ((p)->features & DM_RAID1_HANDLE_ERRORS)
Jonathan E Brassowa8e6afa2007-05-09 02:32:59 -070030
Jonathan E Brassow33184042006-11-08 17:44:44 -080031static DECLARE_WAIT_QUEUE_HEAD(_kmirrord_recovery_stopped);
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Linus Torvalds1da177e2005-04-16 15:20:36 -070033/*-----------------------------------------------------------------
Neil Browne4c8b3b2006-06-26 00:27:26 -070034 * Mirror set structures.
35 *---------------------------------------------------------------*/
Jonathan Brassow72f4b312008-02-08 02:11:29 +000036enum dm_raid1_error {
37 DM_RAID1_WRITE_ERROR,
Mikulas Patocka64b30c42009-12-10 23:52:02 +000038 DM_RAID1_FLUSH_ERROR,
Jonathan Brassow72f4b312008-02-08 02:11:29 +000039 DM_RAID1_SYNC_ERROR,
40 DM_RAID1_READ_ERROR
41};
42
Neil Browne4c8b3b2006-06-26 00:27:26 -070043struct mirror {
Jonathan Brassowaa5617c2007-10-19 22:47:58 +010044 struct mirror_set *ms;
Neil Browne4c8b3b2006-06-26 00:27:26 -070045 atomic_t error_count;
Al Viro39ed7ad2008-02-13 03:53:00 +000046 unsigned long error_type;
Neil Browne4c8b3b2006-06-26 00:27:26 -070047 struct dm_dev *dev;
48 sector_t offset;
49};
50
51struct mirror_set {
52 struct dm_target *ti;
53 struct list_head list;
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +010054
Jonathan E Brassowa8e6afa2007-05-09 02:32:59 -070055 uint64_t features;
Neil Browne4c8b3b2006-06-26 00:27:26 -070056
Jonathan Brassow72f4b312008-02-08 02:11:29 +000057 spinlock_t lock; /* protects the lists */
Neil Browne4c8b3b2006-06-26 00:27:26 -070058 struct bio_list reads;
59 struct bio_list writes;
Jonathan Brassow72f4b312008-02-08 02:11:29 +000060 struct bio_list failures;
Neil Browne4c8b3b2006-06-26 00:27:26 -070061
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +010062 struct dm_region_hash *rh;
63 struct dm_kcopyd_client *kcopyd_client;
Milan Broz88be1632007-05-09 02:33:04 -070064 struct dm_io_client *io_client;
Jonathan Brassow06386bb2008-02-08 02:11:37 +000065 mempool_t *read_record_pool;
Milan Broz88be1632007-05-09 02:33:04 -070066
Neil Browne4c8b3b2006-06-26 00:27:26 -070067 /* recovery */
68 region_t nr_regions;
69 int in_sync;
Jonathan Brassowfc1ff952007-07-12 17:29:15 +010070 int log_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
183/* fail_mirror
184 * @m: mirror device to fail
185 * @error_type: one of the enum's, DM_RAID1_*_ERROR
186 *
187 * If errors are being handled, record the type of
188 * error encountered for this device. If this type
189 * of error has already been recorded, we can return;
190 * otherwise, we must signal userspace by triggering
191 * an event. Additionally, if the device is the
192 * primary device, we must choose a new primary, but
193 * only if the mirror is in-sync.
194 *
195 * This function must not block.
196 */
197static void fail_mirror(struct mirror *m, enum dm_raid1_error error_type)
198{
199 struct mirror_set *ms = m->ms;
200 struct mirror *new;
201
Jonathan Brassow72f4b312008-02-08 02:11:29 +0000202 /*
203 * error_count is used for nothing more than a
204 * simple way to tell if a device has encountered
205 * errors.
206 */
207 atomic_inc(&m->error_count);
208
209 if (test_and_set_bit(error_type, &m->error_type))
210 return;
211
Jonathan Brassowd460c652009-01-06 03:04:57 +0000212 if (!errors_handled(ms))
213 return;
214
Jonathan Brassow72f4b312008-02-08 02:11:29 +0000215 if (m != get_default_mirror(ms))
216 goto out;
217
218 if (!ms->in_sync) {
219 /*
220 * Better to issue requests to same failing device
221 * than to risk returning corrupt data.
222 */
223 DMERR("Primary mirror (%s) failed while out-of-sync: "
224 "Reads may fail.", m->dev->name);
225 goto out;
226 }
227
228 for (new = ms->mirror; new < ms->mirror + ms->nr_mirrors; new++)
229 if (!atomic_read(&new->error_count)) {
230 set_default_mirror(new);
231 break;
232 }
233
234 if (unlikely(new == ms->mirror + ms->nr_mirrors))
235 DMWARN("All sides of mirror have failed.");
236
237out:
238 schedule_work(&ms->trigger_event);
239}
240
Mikulas Patockac0da3742009-12-10 23:52:02 +0000241static int mirror_flush(struct dm_target *ti)
242{
243 struct mirror_set *ms = ti->private;
244 unsigned long error_bits;
245
246 unsigned int i;
247 struct dm_io_region io[ms->nr_mirrors];
248 struct mirror *m;
249 struct dm_io_request io_req = {
250 .bi_rw = WRITE_BARRIER,
251 .mem.type = DM_IO_KMEM,
252 .mem.ptr.bvec = NULL,
253 .client = ms->io_client,
254 };
255
256 for (i = 0, m = ms->mirror; i < ms->nr_mirrors; i++, m++) {
257 io[i].bdev = m->dev->bdev;
258 io[i].sector = 0;
259 io[i].count = 0;
260 }
261
262 error_bits = -1;
263 dm_io(&io_req, ms->nr_mirrors, io, &error_bits);
264 if (unlikely(error_bits != 0)) {
265 for (i = 0; i < ms->nr_mirrors; i++)
266 if (test_bit(i, &error_bits))
267 fail_mirror(ms->mirror + i,
Mikulas Patocka64b30c42009-12-10 23:52:02 +0000268 DM_RAID1_FLUSH_ERROR);
Mikulas Patockac0da3742009-12-10 23:52:02 +0000269 return -EIO;
270 }
271
272 return 0;
273}
274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275/*-----------------------------------------------------------------
276 * Recovery.
277 *
278 * When a mirror is first activated we may find that some regions
279 * are in the no-sync state. We have to recover these by
280 * recopying from the default mirror to all the others.
281 *---------------------------------------------------------------*/
Alasdair G Kergon4cdc1d12008-03-28 14:16:10 -0700282static void recovery_complete(int read_err, unsigned long write_err,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 void *context)
284{
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100285 struct dm_region *reg = context;
286 struct mirror_set *ms = dm_rh_region_context(reg);
Jonathan Brassow8f0205b2008-02-08 02:11:32 +0000287 int m, bit = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Jonathan Brassow8f0205b2008-02-08 02:11:32 +0000289 if (read_err) {
Jonathan Brassowf44db672007-07-12 17:29:04 +0100290 /* Read error means the failure of default mirror. */
291 DMERR_LIMIT("Unable to read primary mirror during recovery");
Jonathan Brassow8f0205b2008-02-08 02:11:32 +0000292 fail_mirror(get_default_mirror(ms), DM_RAID1_SYNC_ERROR);
293 }
Jonathan Brassowf44db672007-07-12 17:29:04 +0100294
Jonathan Brassow8f0205b2008-02-08 02:11:32 +0000295 if (write_err) {
Alasdair G Kergon4cdc1d12008-03-28 14:16:10 -0700296 DMERR_LIMIT("Write error during recovery (error = 0x%lx)",
Jonathan Brassowf44db672007-07-12 17:29:04 +0100297 write_err);
Jonathan Brassow8f0205b2008-02-08 02:11:32 +0000298 /*
299 * Bits correspond to devices (excluding default mirror).
300 * The default mirror cannot change during recovery.
301 */
302 for (m = 0; m < ms->nr_mirrors; m++) {
303 if (&ms->mirror[m] == get_default_mirror(ms))
304 continue;
305 if (test_bit(bit, &write_err))
306 fail_mirror(ms->mirror + m,
307 DM_RAID1_SYNC_ERROR);
308 bit++;
309 }
310 }
Jonathan Brassowf44db672007-07-12 17:29:04 +0100311
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100312 dm_rh_recovery_end(reg, !(read_err || write_err));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313}
314
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100315static int recover(struct mirror_set *ms, struct dm_region *reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316{
317 int r;
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100318 unsigned i;
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100319 struct dm_io_region from, to[DM_KCOPYD_MAX_REGIONS], *dest;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 struct mirror *m;
321 unsigned long flags = 0;
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100322 region_t key = dm_rh_get_region_key(reg);
323 sector_t region_size = dm_rh_get_region_size(ms->rh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
325 /* fill in the source */
Jonathan Brassow72f4b312008-02-08 02:11:29 +0000326 m = get_default_mirror(ms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 from.bdev = m->dev->bdev;
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100328 from.sector = m->offset + dm_rh_region_to_sector(ms->rh, key);
329 if (key == (ms->nr_regions - 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 /*
331 * The final region may be smaller than
332 * region_size.
333 */
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100334 from.count = ms->ti->len & (region_size - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 if (!from.count)
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100336 from.count = region_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 } else
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100338 from.count = region_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
340 /* fill in the destinations */
341 for (i = 0, dest = to; i < ms->nr_mirrors; i++) {
Jonathan Brassow72f4b312008-02-08 02:11:29 +0000342 if (&ms->mirror[i] == get_default_mirror(ms))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 continue;
344
345 m = ms->mirror + i;
346 dest->bdev = m->dev->bdev;
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100347 dest->sector = m->offset + dm_rh_region_to_sector(ms->rh, key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 dest->count = from.count;
349 dest++;
350 }
351
352 /* hand to kcopyd */
Jonathan Brassowf7c83e22008-10-10 13:36:59 +0100353 if (!errors_handled(ms))
354 set_bit(DM_KCOPYD_IGNORE_ERROR, &flags);
355
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100356 r = dm_kcopyd_copy(ms->kcopyd_client, &from, ms->nr_mirrors - 1, to,
357 flags, recovery_complete, reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
359 return r;
360}
361
362static void do_recovery(struct mirror_set *ms)
363{
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100364 struct dm_region *reg;
365 struct dm_dirty_log *log = dm_rh_dirty_log(ms->rh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
368 /*
369 * Start quiescing some regions.
370 */
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100371 dm_rh_recovery_prepare(ms->rh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
373 /*
374 * Copy any already quiesced regions.
375 */
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100376 while ((reg = dm_rh_recovery_start(ms->rh))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 r = recover(ms, reg);
378 if (r)
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100379 dm_rh_recovery_end(reg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 }
381
382 /*
383 * Update the in sync flag.
384 */
385 if (!ms->in_sync &&
386 (log->type->get_sync_count(log) == ms->nr_regions)) {
387 /* the sync is complete */
388 dm_table_event(ms->ti->table);
389 ms->in_sync = 1;
390 }
391}
392
393/*-----------------------------------------------------------------
394 * Reads
395 *---------------------------------------------------------------*/
396static struct mirror *choose_mirror(struct mirror_set *ms, sector_t sector)
397{
Jonathan Brassow06386bb2008-02-08 02:11:37 +0000398 struct mirror *m = get_default_mirror(ms);
399
400 do {
401 if (likely(!atomic_read(&m->error_count)))
402 return m;
403
404 if (m-- == ms->mirror)
405 m += ms->nr_mirrors;
406 } while (m != get_default_mirror(ms));
407
408 return NULL;
409}
410
411static int default_ok(struct mirror *m)
412{
413 struct mirror *default_mirror = get_default_mirror(m->ms);
414
415 return !atomic_read(&default_mirror->error_count);
416}
417
418static int mirror_available(struct mirror_set *ms, struct bio *bio)
419{
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100420 struct dm_dirty_log *log = dm_rh_dirty_log(ms->rh);
421 region_t region = dm_rh_bio_to_region(ms->rh, bio);
Jonathan Brassow06386bb2008-02-08 02:11:37 +0000422
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100423 if (log->type->in_sync(log, region, 0))
Jonathan Brassow06386bb2008-02-08 02:11:37 +0000424 return choose_mirror(ms, bio->bi_sector) ? 1 : 0;
425
426 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427}
428
429/*
430 * remap a buffer to a particular mirror.
431 */
Jonathan Brassow06386bb2008-02-08 02:11:37 +0000432static sector_t map_sector(struct mirror *m, struct bio *bio)
433{
Mikulas Patocka41841532009-12-10 23:51:59 +0000434 if (unlikely(!bio->bi_size))
435 return 0;
Jonathan Brassow06386bb2008-02-08 02:11:37 +0000436 return m->offset + (bio->bi_sector - m->ms->ti->begin);
437}
438
439static void map_bio(struct mirror *m, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440{
441 bio->bi_bdev = m->dev->bdev;
Jonathan Brassow06386bb2008-02-08 02:11:37 +0000442 bio->bi_sector = map_sector(m, bio);
443}
444
Heinz Mauelshagen22a1ceb2008-04-24 21:43:17 +0100445static void map_region(struct dm_io_region *io, struct mirror *m,
Jonathan Brassow06386bb2008-02-08 02:11:37 +0000446 struct bio *bio)
447{
448 io->bdev = m->dev->bdev;
449 io->sector = map_sector(m, bio);
450 io->count = bio->bi_size >> 9;
451}
452
453/*-----------------------------------------------------------------
454 * Reads
455 *---------------------------------------------------------------*/
456static void read_callback(unsigned long error, void *context)
457{
458 struct bio *bio = context;
459 struct mirror *m;
460
461 m = bio_get_m(bio);
462 bio_set_m(bio, NULL);
463
464 if (likely(!error)) {
465 bio_endio(bio, 0);
466 return;
467 }
468
469 fail_mirror(m, DM_RAID1_READ_ERROR);
470
471 if (likely(default_ok(m)) || mirror_available(m->ms, bio)) {
472 DMWARN_LIMIT("Read failure on mirror device %s. "
473 "Trying alternative device.",
474 m->dev->name);
475 queue_bio(m->ms, bio, bio_rw(bio));
476 return;
477 }
478
479 DMERR_LIMIT("Read failure on mirror device %s. Failing I/O.",
480 m->dev->name);
481 bio_endio(bio, -EIO);
482}
483
484/* Asynchronous read. */
485static void read_async_bio(struct mirror *m, struct bio *bio)
486{
Heinz Mauelshagen22a1ceb2008-04-24 21:43:17 +0100487 struct dm_io_region io;
Jonathan Brassow06386bb2008-02-08 02:11:37 +0000488 struct dm_io_request io_req = {
489 .bi_rw = READ,
490 .mem.type = DM_IO_BVEC,
491 .mem.ptr.bvec = bio->bi_io_vec + bio->bi_idx,
492 .notify.fn = read_callback,
493 .notify.context = bio,
494 .client = m->ms->io_client,
495 };
496
497 map_region(&io, m, bio);
498 bio_set_m(bio, m);
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100499 BUG_ON(dm_io(&io_req, 1, &io, NULL));
500}
501
502static inline int region_in_sync(struct mirror_set *ms, region_t region,
503 int may_block)
504{
505 int state = dm_rh_get_state(ms->rh, region, may_block);
506 return state == DM_RH_CLEAN || state == DM_RH_DIRTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507}
508
509static void do_reads(struct mirror_set *ms, struct bio_list *reads)
510{
511 region_t region;
512 struct bio *bio;
513 struct mirror *m;
514
515 while ((bio = bio_list_pop(reads))) {
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100516 region = dm_rh_bio_to_region(ms->rh, bio);
Jonathan Brassow06386bb2008-02-08 02:11:37 +0000517 m = get_default_mirror(ms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
519 /*
520 * We can only read balance if the region is in sync.
521 */
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100522 if (likely(region_in_sync(ms, region, 1)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 m = choose_mirror(ms, bio->bi_sector);
Jonathan Brassow06386bb2008-02-08 02:11:37 +0000524 else if (m && atomic_read(&m->error_count))
525 m = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Jonathan Brassow06386bb2008-02-08 02:11:37 +0000527 if (likely(m))
528 read_async_bio(m, bio);
529 else
530 bio_endio(bio, -EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 }
532}
533
534/*-----------------------------------------------------------------
535 * Writes.
536 *
537 * We do different things with the write io depending on the
538 * state of the region that it's in:
539 *
540 * SYNC: increment pending, use kcopyd to write to *all* mirrors
541 * RECOVERING: delay the io until recovery completes
542 * NOSYNC: increment pending, just write to the default mirror
543 *---------------------------------------------------------------*/
Jonathan Brassow72f4b312008-02-08 02:11:29 +0000544
Jonathan Brassow72f4b312008-02-08 02:11:29 +0000545
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546static void write_callback(unsigned long error, void *context)
547{
Jonathan Brassow72f4b312008-02-08 02:11:29 +0000548 unsigned i, ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 struct bio *bio = (struct bio *) context;
550 struct mirror_set *ms;
Jonathan Brassow72f4b312008-02-08 02:11:29 +0000551 int uptodate = 0;
552 int should_wake = 0;
553 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Jonathan Brassow06386bb2008-02-08 02:11:37 +0000555 ms = bio_get_m(bio)->ms;
556 bio_set_m(bio, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
558 /*
559 * NOTE: We don't decrement the pending count here,
560 * instead it is done by the targets endio function.
561 * This way we handle both writes to SYNC and NOSYNC
562 * regions with the same code.
563 */
Jonathan Brassow72f4b312008-02-08 02:11:29 +0000564 if (likely(!error))
565 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
Jonathan Brassow72f4b312008-02-08 02:11:29 +0000567 for (i = 0; i < ms->nr_mirrors; i++)
568 if (test_bit(i, &error))
569 fail_mirror(ms->mirror + i, DM_RAID1_WRITE_ERROR);
570 else
571 uptodate = 1;
572
573 if (unlikely(!uptodate)) {
574 DMERR("All replicated volumes dead, failing I/O");
575 /* None of the writes succeeded, fail the I/O. */
576 ret = -EIO;
577 } else if (errors_handled(ms)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 /*
Jonathan Brassow72f4b312008-02-08 02:11:29 +0000579 * Need to raise event. Since raising
580 * events can block, we need to do it in
581 * the main thread.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 */
Jonathan Brassow72f4b312008-02-08 02:11:29 +0000583 spin_lock_irqsave(&ms->lock, flags);
584 if (!ms->failures.head)
585 should_wake = 1;
586 bio_list_add(&ms->failures, bio);
587 spin_unlock_irqrestore(&ms->lock, flags);
588 if (should_wake)
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100589 wakeup_mirrord(ms);
Jonathan Brassow72f4b312008-02-08 02:11:29 +0000590 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 }
Jonathan Brassow72f4b312008-02-08 02:11:29 +0000592out:
593 bio_endio(bio, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594}
595
596static void do_write(struct mirror_set *ms, struct bio *bio)
597{
598 unsigned int i;
Heinz Mauelshagen22a1ceb2008-04-24 21:43:17 +0100599 struct dm_io_region io[ms->nr_mirrors], *dest = io;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 struct mirror *m;
Milan Broz88be1632007-05-09 02:33:04 -0700601 struct dm_io_request io_req = {
Mikulas Patocka41841532009-12-10 23:51:59 +0000602 .bi_rw = WRITE | (bio->bi_rw & WRITE_BARRIER),
Milan Broz88be1632007-05-09 02:33:04 -0700603 .mem.type = DM_IO_BVEC,
604 .mem.ptr.bvec = bio->bi_io_vec + bio->bi_idx,
605 .notify.fn = write_callback,
606 .notify.context = bio,
607 .client = ms->io_client,
608 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Jonathan Brassow06386bb2008-02-08 02:11:37 +0000610 for (i = 0, m = ms->mirror; i < ms->nr_mirrors; i++, m++)
611 map_region(dest++, m, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Jonathan Brassow06386bb2008-02-08 02:11:37 +0000613 /*
614 * Use default mirror because we only need it to retrieve the reference
615 * to the mirror set in write_callback().
616 */
617 bio_set_m(bio, get_default_mirror(ms));
Milan Broz88be1632007-05-09 02:33:04 -0700618
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100619 BUG_ON(dm_io(&io_req, ms->nr_mirrors, io, NULL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620}
621
622static void do_writes(struct mirror_set *ms, struct bio_list *writes)
623{
624 int state;
625 struct bio *bio;
626 struct bio_list sync, nosync, recover, *this_list = NULL;
Jonathan Brassow7513c2a2009-04-02 19:55:30 +0100627 struct bio_list requeue;
628 struct dm_dirty_log *log = dm_rh_dirty_log(ms->rh);
629 region_t region;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
631 if (!writes->head)
632 return;
633
634 /*
635 * Classify each write.
636 */
637 bio_list_init(&sync);
638 bio_list_init(&nosync);
639 bio_list_init(&recover);
Jonathan Brassow7513c2a2009-04-02 19:55:30 +0100640 bio_list_init(&requeue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
642 while ((bio = bio_list_pop(writes))) {
Mikulas Patocka41841532009-12-10 23:51:59 +0000643 if (unlikely(bio_empty_barrier(bio))) {
644 bio_list_add(&sync, bio);
645 continue;
646 }
647
Jonathan Brassow7513c2a2009-04-02 19:55:30 +0100648 region = dm_rh_bio_to_region(ms->rh, bio);
649
650 if (log->type->is_remote_recovering &&
651 log->type->is_remote_recovering(log, region)) {
652 bio_list_add(&requeue, bio);
653 continue;
654 }
655
656 state = dm_rh_get_state(ms->rh, region, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 switch (state) {
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100658 case DM_RH_CLEAN:
659 case DM_RH_DIRTY:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 this_list = &sync;
661 break;
662
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100663 case DM_RH_NOSYNC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 this_list = &nosync;
665 break;
666
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100667 case DM_RH_RECOVERING:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 this_list = &recover;
669 break;
670 }
671
672 bio_list_add(this_list, bio);
673 }
674
675 /*
Jonathan Brassow7513c2a2009-04-02 19:55:30 +0100676 * Add bios that are delayed due to remote recovery
677 * back on to the write queue
678 */
679 if (unlikely(requeue.head)) {
680 spin_lock_irq(&ms->lock);
681 bio_list_merge(&ms->writes, &requeue);
682 spin_unlock_irq(&ms->lock);
Mikulas Patocka69885682009-07-23 20:30:37 +0100683 delayed_wake(ms);
Jonathan Brassow7513c2a2009-04-02 19:55:30 +0100684 }
685
686 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 * Increment the pending counts for any regions that will
688 * be written to (writes to recover regions are going to
689 * be delayed).
690 */
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100691 dm_rh_inc_pending(ms->rh, &sync);
692 dm_rh_inc_pending(ms->rh, &nosync);
Jonathan Brassowd2b69862009-09-04 20:40:32 +0100693
694 /*
695 * If the flush fails on a previous call and succeeds here,
696 * we must not reset the log_failure variable. We need
697 * userspace interaction to do that.
698 */
699 ms->log_failure = dm_rh_flush(ms->rh) ? 1 : ms->log_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
701 /*
702 * Dispatch io.
703 */
Jonathan Brassowb80aa7a2008-02-08 02:11:35 +0000704 if (unlikely(ms->log_failure)) {
705 spin_lock_irq(&ms->lock);
706 bio_list_merge(&ms->failures, &sync);
707 spin_unlock_irq(&ms->lock);
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100708 wakeup_mirrord(ms);
Jonathan Brassowb80aa7a2008-02-08 02:11:35 +0000709 } else
Jonathan Brassowfc1ff952007-07-12 17:29:15 +0100710 while ((bio = bio_list_pop(&sync)))
Jonathan Brassowb80aa7a2008-02-08 02:11:35 +0000711 do_write(ms, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
713 while ((bio = bio_list_pop(&recover)))
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100714 dm_rh_delay(ms->rh, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
716 while ((bio = bio_list_pop(&nosync))) {
Jonathan Brassow06386bb2008-02-08 02:11:37 +0000717 map_bio(get_default_mirror(ms), bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 generic_make_request(bio);
719 }
720}
721
Jonathan Brassow72f4b312008-02-08 02:11:29 +0000722static void do_failures(struct mirror_set *ms, struct bio_list *failures)
723{
724 struct bio *bio;
725
726 if (!failures->head)
727 return;
728
Jonathan Brassowb80aa7a2008-02-08 02:11:35 +0000729 if (!ms->log_failure) {
Ilpo Jarvinenb34578a2008-10-30 13:33:07 +0000730 while ((bio = bio_list_pop(failures))) {
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100731 ms->in_sync = 0;
732 dm_rh_mark_nosync(ms->rh, bio, bio->bi_size, 0);
Ilpo Jarvinenb34578a2008-10-30 13:33:07 +0000733 }
Jonathan Brassowb80aa7a2008-02-08 02:11:35 +0000734 return;
735 }
736
737 /*
738 * If the log has failed, unattempted writes are being
739 * put on the failures list. We can't issue those writes
740 * until a log has been marked, so we must store them.
741 *
742 * If a 'noflush' suspend is in progress, we can requeue
743 * the I/O's to the core. This give userspace a chance
744 * to reconfigure the mirror, at which point the core
745 * will reissue the writes. If the 'noflush' flag is
746 * not set, we have no choice but to return errors.
747 *
748 * Some writes on the failures list may have been
749 * submitted before the log failure and represent a
750 * failure to write to one of the devices. It is ok
751 * for us to treat them the same and requeue them
752 * as well.
753 */
754 if (dm_noflush_suspending(ms->ti)) {
755 while ((bio = bio_list_pop(failures)))
756 bio_endio(bio, DM_ENDIO_REQUEUE);
757 return;
758 }
759
760 if (atomic_read(&ms->suspend)) {
761 while ((bio = bio_list_pop(failures)))
762 bio_endio(bio, -EIO);
763 return;
764 }
765
766 spin_lock_irq(&ms->lock);
767 bio_list_merge(&ms->failures, failures);
768 spin_unlock_irq(&ms->lock);
769
Mikulas Patockaa2aebe02008-04-24 22:10:42 +0100770 delayed_wake(ms);
Jonathan Brassow72f4b312008-02-08 02:11:29 +0000771}
772
773static void trigger_event(struct work_struct *work)
774{
775 struct mirror_set *ms =
776 container_of(work, struct mirror_set, trigger_event);
777
778 dm_table_event(ms->ti->table);
779}
780
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781/*-----------------------------------------------------------------
782 * kmirrord
783 *---------------------------------------------------------------*/
Mikulas Patockaa2aebe02008-04-24 22:10:42 +0100784static void do_mirror(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785{
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100786 struct mirror_set *ms = container_of(work, struct mirror_set,
787 kmirrord_work);
Jonathan Brassow72f4b312008-02-08 02:11:29 +0000788 struct bio_list reads, writes, failures;
789 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
Jonathan Brassow72f4b312008-02-08 02:11:29 +0000791 spin_lock_irqsave(&ms->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 reads = ms->reads;
793 writes = ms->writes;
Jonathan Brassow72f4b312008-02-08 02:11:29 +0000794 failures = ms->failures;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 bio_list_init(&ms->reads);
796 bio_list_init(&ms->writes);
Jonathan Brassow72f4b312008-02-08 02:11:29 +0000797 bio_list_init(&ms->failures);
798 spin_unlock_irqrestore(&ms->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100800 dm_rh_update_states(ms->rh, errors_handled(ms));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 do_recovery(ms);
802 do_reads(ms, &reads);
803 do_writes(ms, &writes);
Jonathan Brassow72f4b312008-02-08 02:11:29 +0000804 do_failures(ms, &failures);
Mikulas Patocka7ff14a32008-04-24 22:10:47 +0100805
806 dm_table_unplug_all(ms->ti->table);
Jonathan Brassow72f4b312008-02-08 02:11:29 +0000807}
808
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809/*-----------------------------------------------------------------
810 * Target functions
811 *---------------------------------------------------------------*/
812static struct mirror_set *alloc_context(unsigned int nr_mirrors,
813 uint32_t region_size,
814 struct dm_target *ti,
Heinz Mauelshagen416cd172008-04-24 21:43:35 +0100815 struct dm_dirty_log *dl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816{
817 size_t len;
818 struct mirror_set *ms = NULL;
819
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 len = sizeof(*ms) + (sizeof(ms->mirror[0]) * nr_mirrors);
821
Yoann Padioleaudd00cc42007-07-19 01:49:03 -0700822 ms = kzalloc(len, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 if (!ms) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700824 ti->error = "Cannot allocate mirror context";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 return NULL;
826 }
827
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 spin_lock_init(&ms->lock);
829
830 ms->ti = ti;
831 ms->nr_mirrors = nr_mirrors;
832 ms->nr_regions = dm_sector_div_up(ti->len, region_size);
833 ms->in_sync = 0;
Jonathan Brassowb80aa7a2008-02-08 02:11:35 +0000834 ms->log_failure = 0;
835 atomic_set(&ms->suspend, 0);
Jonathan Brassow72f4b312008-02-08 02:11:29 +0000836 atomic_set(&ms->default_mirror, DEFAULT_MIRROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
Mikulas Patocka95f8fac2009-04-02 19:55:24 +0100838 ms->read_record_pool = mempool_create_slab_pool(MIN_READ_RECORDS,
839 _dm_raid1_read_record_cache);
840
Jonathan Brassow06386bb2008-02-08 02:11:37 +0000841 if (!ms->read_record_pool) {
842 ti->error = "Error creating mirror read_record_pool";
843 kfree(ms);
844 return NULL;
845 }
846
Milan Broz88be1632007-05-09 02:33:04 -0700847 ms->io_client = dm_io_client_create(DM_IO_PAGES);
848 if (IS_ERR(ms->io_client)) {
849 ti->error = "Error creating dm_io client";
Jonathan Brassow06386bb2008-02-08 02:11:37 +0000850 mempool_destroy(ms->read_record_pool);
Milan Broz88be1632007-05-09 02:33:04 -0700851 kfree(ms);
852 return NULL;
853 }
854
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100855 ms->rh = dm_region_hash_create(ms, dispatch_bios, wakeup_mirrord,
856 wakeup_all_recovery_waiters,
857 ms->ti->begin, MAX_RECOVERY,
858 dl, region_size, ms->nr_regions);
859 if (IS_ERR(ms->rh)) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700860 ti->error = "Error creating dirty region hash";
Dmitry Monakhova72cf732007-10-19 22:38:39 +0100861 dm_io_client_destroy(ms->io_client);
Jonathan Brassow06386bb2008-02-08 02:11:37 +0000862 mempool_destroy(ms->read_record_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 kfree(ms);
864 return NULL;
865 }
866
867 return ms;
868}
869
870static void free_context(struct mirror_set *ms, struct dm_target *ti,
871 unsigned int m)
872{
873 while (m--)
874 dm_put_device(ti, ms->mirror[m].dev);
875
Milan Broz88be1632007-05-09 02:33:04 -0700876 dm_io_client_destroy(ms->io_client);
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100877 dm_region_hash_destroy(ms->rh);
Jonathan Brassow06386bb2008-02-08 02:11:37 +0000878 mempool_destroy(ms->read_record_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 kfree(ms);
880}
881
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882static int get_mirror(struct mirror_set *ms, struct dm_target *ti,
883 unsigned int mirror, char **argv)
884{
Andrew Morton4ee218c2006-03-27 01:17:48 -0800885 unsigned long long offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
Andrew Morton4ee218c2006-03-27 01:17:48 -0800887 if (sscanf(argv[1], "%llu", &offset) != 1) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700888 ti->error = "Invalid offset";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 return -EINVAL;
890 }
891
892 if (dm_get_device(ti, argv[0], offset, ti->len,
893 dm_table_get_mode(ti->table),
894 &ms->mirror[mirror].dev)) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700895 ti->error = "Device lookup failure";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 return -ENXIO;
897 }
898
Jonathan Brassowaa5617c2007-10-19 22:47:58 +0100899 ms->mirror[mirror].ms = ms;
Jonathan Brassow72f4b312008-02-08 02:11:29 +0000900 atomic_set(&(ms->mirror[mirror].error_count), 0);
901 ms->mirror[mirror].error_type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 ms->mirror[mirror].offset = offset;
903
904 return 0;
905}
906
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907/*
908 * Create dirty log: log_type #log_params <log_params>
909 */
Heinz Mauelshagen416cd172008-04-24 21:43:35 +0100910static struct dm_dirty_log *create_dirty_log(struct dm_target *ti,
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100911 unsigned argc, char **argv,
912 unsigned *args_used)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913{
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +0100914 unsigned param_count;
Heinz Mauelshagen416cd172008-04-24 21:43:35 +0100915 struct dm_dirty_log *dl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
917 if (argc < 2) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700918 ti->error = "Insufficient mirror log arguments";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 return NULL;
920 }
921
922 if (sscanf(argv[1], "%u", &param_count) != 1) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700923 ti->error = "Invalid mirror log argument count";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 return NULL;
925 }
926
927 *args_used = 2 + param_count;
928
929 if (argc < *args_used) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700930 ti->error = "Insufficient mirror log arguments";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 return NULL;
932 }
933
Mikulas Patockac0da3742009-12-10 23:52:02 +0000934 dl = dm_dirty_log_create(argv[0], ti, mirror_flush, param_count,
935 argv + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 if (!dl) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700937 ti->error = "Error creating mirror dirty log";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 return NULL;
939 }
940
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 return dl;
942}
943
Jonathan E Brassowa8e6afa2007-05-09 02:32:59 -0700944static int parse_features(struct mirror_set *ms, unsigned argc, char **argv,
945 unsigned *args_used)
946{
947 unsigned num_features;
948 struct dm_target *ti = ms->ti;
949
950 *args_used = 0;
951
952 if (!argc)
953 return 0;
954
955 if (sscanf(argv[0], "%u", &num_features) != 1) {
956 ti->error = "Invalid number of features";
957 return -EINVAL;
958 }
959
960 argc--;
961 argv++;
962 (*args_used)++;
963
964 if (num_features > argc) {
965 ti->error = "Not enough arguments to support feature count";
966 return -EINVAL;
967 }
968
969 if (!strcmp("handle_errors", argv[0]))
970 ms->features |= DM_RAID1_HANDLE_ERRORS;
971 else {
972 ti->error = "Unrecognised feature requested";
973 return -EINVAL;
974 }
975
976 (*args_used)++;
977
978 return 0;
979}
980
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981/*
982 * Construct a mirror mapping:
983 *
984 * log_type #log_params <log_params>
985 * #mirrors [mirror_path offset]{2,}
Jonathan E Brassowa8e6afa2007-05-09 02:32:59 -0700986 * [#features <features>]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 *
988 * log_type is "core" or "disk"
989 * #log_params is between 1 and 3
Jonathan E Brassowa8e6afa2007-05-09 02:32:59 -0700990 *
991 * If present, features must be "handle_errors".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993static int mirror_ctr(struct dm_target *ti, unsigned int argc, char **argv)
994{
995 int r;
996 unsigned int nr_mirrors, m, args_used;
997 struct mirror_set *ms;
Heinz Mauelshagen416cd172008-04-24 21:43:35 +0100998 struct dm_dirty_log *dl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
1000 dl = create_dirty_log(ti, argc, argv, &args_used);
1001 if (!dl)
1002 return -EINVAL;
1003
1004 argv += args_used;
1005 argc -= args_used;
1006
1007 if (!argc || sscanf(argv[0], "%u", &nr_mirrors) != 1 ||
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +01001008 nr_mirrors < 2 || nr_mirrors > DM_KCOPYD_MAX_REGIONS + 1) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001009 ti->error = "Invalid number of mirrors";
Heinz Mauelshagen416cd172008-04-24 21:43:35 +01001010 dm_dirty_log_destroy(dl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 return -EINVAL;
1012 }
1013
1014 argv++, argc--;
1015
Jonathan E Brassowa8e6afa2007-05-09 02:32:59 -07001016 if (argc < nr_mirrors * 2) {
1017 ti->error = "Too few mirror arguments";
Heinz Mauelshagen416cd172008-04-24 21:43:35 +01001018 dm_dirty_log_destroy(dl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 return -EINVAL;
1020 }
1021
1022 ms = alloc_context(nr_mirrors, dl->type->get_region_size(dl), ti, dl);
1023 if (!ms) {
Heinz Mauelshagen416cd172008-04-24 21:43:35 +01001024 dm_dirty_log_destroy(dl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 return -ENOMEM;
1026 }
1027
1028 /* Get the mirror parameter sets */
1029 for (m = 0; m < nr_mirrors; m++) {
1030 r = get_mirror(ms, ti, m, argv);
1031 if (r) {
1032 free_context(ms, ti, m);
1033 return r;
1034 }
1035 argv += 2;
1036 argc -= 2;
1037 }
1038
1039 ti->private = ms;
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +01001040 ti->split_io = dm_rh_get_region_size(ms->rh);
Mikulas Patocka41841532009-12-10 23:51:59 +00001041 ti->num_flush_requests = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042
Holger Smolinski6ad36fe2007-05-09 02:32:50 -07001043 ms->kmirrord_wq = create_singlethread_workqueue("kmirrord");
1044 if (!ms->kmirrord_wq) {
1045 DMERR("couldn't start kmirrord");
Dmitry Monakhova72cf732007-10-19 22:38:39 +01001046 r = -ENOMEM;
1047 goto err_free_context;
Holger Smolinski6ad36fe2007-05-09 02:32:50 -07001048 }
1049 INIT_WORK(&ms->kmirrord_work, do_mirror);
Mikulas Patockaa2aebe02008-04-24 22:10:42 +01001050 init_timer(&ms->timer);
1051 ms->timer_pending = 0;
Jonathan Brassow72f4b312008-02-08 02:11:29 +00001052 INIT_WORK(&ms->trigger_event, trigger_event);
Holger Smolinski6ad36fe2007-05-09 02:32:50 -07001053
Jonathan E Brassowa8e6afa2007-05-09 02:32:59 -07001054 r = parse_features(ms, argc, argv, &args_used);
Dmitry Monakhova72cf732007-10-19 22:38:39 +01001055 if (r)
1056 goto err_destroy_wq;
Jonathan E Brassowa8e6afa2007-05-09 02:32:59 -07001057
1058 argv += args_used;
1059 argc -= args_used;
1060
Jonathan Brassowf44db672007-07-12 17:29:04 +01001061 /*
1062 * Any read-balancing addition depends on the
1063 * DM_RAID1_HANDLE_ERRORS flag being present.
1064 * This is because the decision to balance depends
1065 * on the sync state of a region. If the above
1066 * flag is not present, we ignore errors; and
1067 * the sync state may be inaccurate.
1068 */
1069
Jonathan E Brassowa8e6afa2007-05-09 02:32:59 -07001070 if (argc) {
1071 ti->error = "Too many mirror arguments";
Dmitry Monakhova72cf732007-10-19 22:38:39 +01001072 r = -EINVAL;
1073 goto err_destroy_wq;
Jonathan E Brassowa8e6afa2007-05-09 02:32:59 -07001074 }
1075
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +01001076 r = dm_kcopyd_client_create(DM_KCOPYD_PAGES, &ms->kcopyd_client);
Dmitry Monakhova72cf732007-10-19 22:38:39 +01001077 if (r)
1078 goto err_destroy_wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +01001080 wakeup_mirrord(ms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 return 0;
Dmitry Monakhova72cf732007-10-19 22:38:39 +01001082
1083err_destroy_wq:
1084 destroy_workqueue(ms->kmirrord_wq);
1085err_free_context:
1086 free_context(ms, ti, ms->nr_mirrors);
1087 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088}
1089
1090static void mirror_dtr(struct dm_target *ti)
1091{
1092 struct mirror_set *ms = (struct mirror_set *) ti->private;
1093
Mikulas Patockaa2aebe02008-04-24 22:10:42 +01001094 del_timer_sync(&ms->timer);
Holger Smolinski6ad36fe2007-05-09 02:32:50 -07001095 flush_workqueue(ms->kmirrord_wq);
Mikulas Patocka18776c72008-11-13 23:38:52 +00001096 flush_scheduled_work();
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +01001097 dm_kcopyd_client_destroy(ms->kcopyd_client);
Holger Smolinski6ad36fe2007-05-09 02:32:50 -07001098 destroy_workqueue(ms->kmirrord_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 free_context(ms, ti, ms->nr_mirrors);
1100}
1101
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102/*
1103 * Mirror mapping function
1104 */
1105static int mirror_map(struct dm_target *ti, struct bio *bio,
1106 union map_info *map_context)
1107{
1108 int r, rw = bio_rw(bio);
1109 struct mirror *m;
1110 struct mirror_set *ms = ti->private;
Jonathan Brassow06386bb2008-02-08 02:11:37 +00001111 struct dm_raid1_read_record *read_record = NULL;
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +01001112 struct dm_dirty_log *log = dm_rh_dirty_log(ms->rh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113
1114 if (rw == WRITE) {
Jonathan Brassow06386bb2008-02-08 02:11:37 +00001115 /* Save region for mirror_end_io() handler */
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +01001116 map_context->ll = dm_rh_bio_to_region(ms->rh, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 queue_bio(ms, bio, rw);
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001118 return DM_MAPIO_SUBMITTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 }
1120
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +01001121 r = log->type->in_sync(log, dm_rh_bio_to_region(ms->rh, bio), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 if (r < 0 && r != -EWOULDBLOCK)
1123 return r;
1124
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 /*
Jonathan Brassow06386bb2008-02-08 02:11:37 +00001126 * If region is not in-sync queue the bio.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 */
Jonathan Brassow06386bb2008-02-08 02:11:37 +00001128 if (!r || (r == -EWOULDBLOCK)) {
1129 if (rw == READA)
1130 return -EWOULDBLOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 queue_bio(ms, bio, rw);
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001133 return DM_MAPIO_SUBMITTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 }
1135
Jonathan Brassow06386bb2008-02-08 02:11:37 +00001136 /*
1137 * The region is in-sync and we can perform reads directly.
1138 * Store enough information so we can retry if it fails.
1139 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 m = choose_mirror(ms, bio->bi_sector);
Jonathan Brassow06386bb2008-02-08 02:11:37 +00001141 if (unlikely(!m))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 return -EIO;
1143
Jonathan Brassow06386bb2008-02-08 02:11:37 +00001144 read_record = mempool_alloc(ms->read_record_pool, GFP_NOIO);
1145 if (likely(read_record)) {
1146 dm_bio_record(&read_record->details, bio);
1147 map_context->ptr = read_record;
1148 read_record->m = m;
1149 }
1150
1151 map_bio(m, bio);
1152
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001153 return DM_MAPIO_REMAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154}
1155
1156static int mirror_end_io(struct dm_target *ti, struct bio *bio,
1157 int error, union map_info *map_context)
1158{
1159 int rw = bio_rw(bio);
1160 struct mirror_set *ms = (struct mirror_set *) ti->private;
Jonathan Brassow06386bb2008-02-08 02:11:37 +00001161 struct mirror *m = NULL;
1162 struct dm_bio_details *bd = NULL;
1163 struct dm_raid1_read_record *read_record = map_context->ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
1165 /*
1166 * We need to dec pending if this was a write.
1167 */
Jonathan Brassow06386bb2008-02-08 02:11:37 +00001168 if (rw == WRITE) {
Mikulas Patocka41841532009-12-10 23:51:59 +00001169 if (likely(!bio_empty_barrier(bio)))
1170 dm_rh_dec(ms->rh, map_context->ll);
Jonathan Brassow06386bb2008-02-08 02:11:37 +00001171 return error;
1172 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173
Jonathan Brassow06386bb2008-02-08 02:11:37 +00001174 if (error == -EOPNOTSUPP)
1175 goto out;
1176
Jens Axboe1f98a132009-09-11 14:32:04 +02001177 if ((error == -EWOULDBLOCK) && bio_rw_flagged(bio, BIO_RW_AHEAD))
Jonathan Brassow06386bb2008-02-08 02:11:37 +00001178 goto out;
1179
1180 if (unlikely(error)) {
1181 if (!read_record) {
1182 /*
1183 * There wasn't enough memory to record necessary
1184 * information for a retry or there was no other
1185 * mirror in-sync.
1186 */
Adrian Bunke03f1a82008-02-19 19:44:19 +00001187 DMERR_LIMIT("Mirror read failed.");
Jonathan Brassow06386bb2008-02-08 02:11:37 +00001188 return -EIO;
1189 }
Adrian Bunke03f1a82008-02-19 19:44:19 +00001190
1191 m = read_record->m;
1192
Jonathan Brassow06386bb2008-02-08 02:11:37 +00001193 DMERR("Mirror read failed from %s. Trying alternative device.",
1194 m->dev->name);
1195
Jonathan Brassow06386bb2008-02-08 02:11:37 +00001196 fail_mirror(m, DM_RAID1_READ_ERROR);
1197
1198 /*
1199 * A failed read is requeued for another attempt using an intact
1200 * mirror.
1201 */
1202 if (default_ok(m) || mirror_available(ms, bio)) {
1203 bd = &read_record->details;
1204
1205 dm_bio_restore(bd, bio);
1206 mempool_free(read_record, ms->read_record_pool);
1207 map_context->ptr = NULL;
1208 queue_bio(ms, bio, rw);
1209 return 1;
1210 }
1211 DMERR("All replicated volumes dead, failing I/O");
1212 }
1213
1214out:
1215 if (read_record) {
1216 mempool_free(read_record, ms->read_record_pool);
1217 map_context->ptr = NULL;
1218 }
1219
1220 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221}
1222
Jonathan Brassowb80aa7a2008-02-08 02:11:35 +00001223static void mirror_presuspend(struct dm_target *ti)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224{
1225 struct mirror_set *ms = (struct mirror_set *) ti->private;
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +01001226 struct dm_dirty_log *log = dm_rh_dirty_log(ms->rh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
Jonathan Brassowb80aa7a2008-02-08 02:11:35 +00001228 atomic_set(&ms->suspend, 1);
1229
1230 /*
1231 * We must finish up all the work that we've
1232 * generated (i.e. recovery work).
1233 */
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +01001234 dm_rh_stop_recovery(ms->rh);
Jonathan E Brassow33184042006-11-08 17:44:44 -08001235
Jonathan E Brassow33184042006-11-08 17:44:44 -08001236 wait_event(_kmirrord_recovery_stopped,
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +01001237 !dm_rh_recovery_in_flight(ms->rh));
Jonathan E Brassow33184042006-11-08 17:44:44 -08001238
Jonathan Brassowb80aa7a2008-02-08 02:11:35 +00001239 if (log->type->presuspend && log->type->presuspend(log))
1240 /* FIXME: need better error handling */
1241 DMWARN("log presuspend failed");
1242
1243 /*
1244 * Now that recovery is complete/stopped and the
1245 * delayed bios are queued, we need to wait for
1246 * the worker thread to complete. This way,
1247 * we know that all of our I/O has been pushed.
1248 */
1249 flush_workqueue(ms->kmirrord_wq);
1250}
1251
1252static void mirror_postsuspend(struct dm_target *ti)
1253{
1254 struct mirror_set *ms = ti->private;
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +01001255 struct dm_dirty_log *log = dm_rh_dirty_log(ms->rh);
Jonathan Brassowb80aa7a2008-02-08 02:11:35 +00001256
Jonathan Brassow6b3df0d2007-10-19 22:47:57 +01001257 if (log->type->postsuspend && log->type->postsuspend(log))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 /* FIXME: need better error handling */
Jonathan Brassowb80aa7a2008-02-08 02:11:35 +00001259 DMWARN("log postsuspend failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260}
1261
1262static void mirror_resume(struct dm_target *ti)
1263{
Jonathan Brassowb80aa7a2008-02-08 02:11:35 +00001264 struct mirror_set *ms = ti->private;
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +01001265 struct dm_dirty_log *log = dm_rh_dirty_log(ms->rh);
Jonathan Brassowb80aa7a2008-02-08 02:11:35 +00001266
1267 atomic_set(&ms->suspend, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 if (log->type->resume && log->type->resume(log))
1269 /* FIXME: need better error handling */
1270 DMWARN("log resume failed");
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +01001271 dm_rh_start_recovery(ms->rh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272}
1273
Jonathan Brassowaf195ac2008-02-08 02:11:39 +00001274/*
1275 * device_status_char
1276 * @m: mirror device/leg we want the status of
1277 *
1278 * We return one character representing the most severe error
1279 * we have encountered.
1280 * A => Alive - No failures
1281 * D => Dead - A write failure occurred leaving mirror out-of-sync
1282 * S => Sync - A sychronization failure occurred, mirror out-of-sync
1283 * R => Read - A read failure occurred, mirror data unaffected
1284 *
1285 * Returns: <char>
1286 */
1287static char device_status_char(struct mirror *m)
1288{
1289 if (!atomic_read(&(m->error_count)))
1290 return 'A';
1291
Mikulas Patocka64b30c42009-12-10 23:52:02 +00001292 return (test_bit(DM_RAID1_FLUSH_ERROR, &(m->error_type))) ? 'F' :
1293 (test_bit(DM_RAID1_WRITE_ERROR, &(m->error_type))) ? 'D' :
Jonathan Brassowaf195ac2008-02-08 02:11:39 +00001294 (test_bit(DM_RAID1_SYNC_ERROR, &(m->error_type))) ? 'S' :
1295 (test_bit(DM_RAID1_READ_ERROR, &(m->error_type))) ? 'R' : 'U';
1296}
1297
1298
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299static int mirror_status(struct dm_target *ti, status_type_t type,
1300 char *result, unsigned int maxlen)
1301{
Jonathan E Brassow315dcc22007-05-09 02:32:58 -07001302 unsigned int m, sz = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 struct mirror_set *ms = (struct mirror_set *) ti->private;
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +01001304 struct dm_dirty_log *log = dm_rh_dirty_log(ms->rh);
Jonathan Brassowaf195ac2008-02-08 02:11:39 +00001305 char buffer[ms->nr_mirrors + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 switch (type) {
1308 case STATUSTYPE_INFO:
1309 DMEMIT("%d ", ms->nr_mirrors);
Jonathan Brassowaf195ac2008-02-08 02:11:39 +00001310 for (m = 0; m < ms->nr_mirrors; m++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 DMEMIT("%s ", ms->mirror[m].dev->name);
Jonathan Brassowaf195ac2008-02-08 02:11:39 +00001312 buffer[m] = device_status_char(&(ms->mirror[m]));
1313 }
1314 buffer[m] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
Jonathan Brassowaf195ac2008-02-08 02:11:39 +00001316 DMEMIT("%llu/%llu 1 %s ",
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +01001317 (unsigned long long)log->type->get_sync_count(log),
Jonathan Brassowaf195ac2008-02-08 02:11:39 +00001318 (unsigned long long)ms->nr_regions, buffer);
Jonathan E Brassow315dcc22007-05-09 02:32:58 -07001319
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +01001320 sz += log->type->status(log, type, result+sz, maxlen-sz);
Jonathan E Brassow315dcc22007-05-09 02:32:58 -07001321
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 break;
1323
1324 case STATUSTYPE_TABLE:
Heinz Mauelshagen1f965b12008-10-21 17:45:06 +01001325 sz = log->type->status(log, type, result, maxlen);
Jonathan E Brassow315dcc22007-05-09 02:32:58 -07001326
Jonathan Brassowe52b8f62006-10-03 01:15:32 -07001327 DMEMIT("%d", ms->nr_mirrors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 for (m = 0; m < ms->nr_mirrors; m++)
Jonathan Brassowe52b8f62006-10-03 01:15:32 -07001329 DMEMIT(" %s %llu", ms->mirror[m].dev->name,
Jonathan Brassowb80aa7a2008-02-08 02:11:35 +00001330 (unsigned long long)ms->mirror[m].offset);
Jonathan E Brassowa8e6afa2007-05-09 02:32:59 -07001331
1332 if (ms->features & DM_RAID1_HANDLE_ERRORS)
1333 DMEMIT(" 1 handle_errors");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 }
1335
1336 return 0;
1337}
1338
Mike Snitzeraf4874e2009-06-22 10:12:33 +01001339static int mirror_iterate_devices(struct dm_target *ti,
1340 iterate_devices_callout_fn fn, void *data)
1341{
1342 struct mirror_set *ms = ti->private;
1343 int ret = 0;
1344 unsigned i;
1345
1346 for (i = 0; !ret && i < ms->nr_mirrors; i++)
1347 ret = fn(ti, ms->mirror[i].dev,
Mike Snitzer5dea2712009-07-23 20:30:42 +01001348 ms->mirror[i].offset, ti->len, data);
Mike Snitzeraf4874e2009-06-22 10:12:33 +01001349
1350 return ret;
1351}
1352
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353static struct target_type mirror_target = {
1354 .name = "mirror",
Mike Snitzeraf4874e2009-06-22 10:12:33 +01001355 .version = {1, 12, 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 .module = THIS_MODULE,
1357 .ctr = mirror_ctr,
1358 .dtr = mirror_dtr,
1359 .map = mirror_map,
1360 .end_io = mirror_end_io,
Jonathan Brassowb80aa7a2008-02-08 02:11:35 +00001361 .presuspend = mirror_presuspend,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 .postsuspend = mirror_postsuspend,
1363 .resume = mirror_resume,
1364 .status = mirror_status,
Mike Snitzeraf4874e2009-06-22 10:12:33 +01001365 .iterate_devices = mirror_iterate_devices,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366};
1367
1368static int __init dm_mirror_init(void)
1369{
1370 int r;
1371
Mikulas Patocka95f8fac2009-04-02 19:55:24 +01001372 _dm_raid1_read_record_cache = KMEM_CACHE(dm_raid1_read_record, 0);
1373 if (!_dm_raid1_read_record_cache) {
1374 DMERR("Can't allocate dm_raid1_read_record cache");
1375 r = -ENOMEM;
1376 goto bad_cache;
1377 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378
Mikulas Patocka95f8fac2009-04-02 19:55:24 +01001379 r = dm_register_target(&mirror_target);
1380 if (r < 0) {
1381 DMERR("Failed to register mirror target");
1382 goto bad_target;
1383 }
1384
1385 return 0;
1386
1387bad_target:
1388 kmem_cache_destroy(_dm_raid1_read_record_cache);
1389bad_cache:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 return r;
1391}
1392
1393static void __exit dm_mirror_exit(void)
1394{
Mikulas Patocka10d3bd02009-01-06 03:04:58 +00001395 dm_unregister_target(&mirror_target);
Mikulas Patocka95f8fac2009-04-02 19:55:24 +01001396 kmem_cache_destroy(_dm_raid1_read_record_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397}
1398
1399/* Module hooks */
1400module_init(dm_mirror_init);
1401module_exit(dm_mirror_exit);
1402
1403MODULE_DESCRIPTION(DM_NAME " mirror target");
1404MODULE_AUTHOR("Joe Thornber");
1405MODULE_LICENSE("GPL");