blob: 71dd65aa31b696aa37a894b0d7bd9cbdc2034123 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2003 Sistina Software Limited.
3 * Copyright (C) 2004-2005 Red Hat, Inc. All rights reserved.
4 *
5 * This file is released under the GPL.
6 */
7
8#include "dm.h"
9#include "dm-path-selector.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include "dm-bio-list.h"
11#include "dm-bio-record.h"
Mike Andersonb15546f2007-10-19 22:48:02 +010012#include "dm-uevent.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
14#include <linux/ctype.h>
15#include <linux/init.h>
16#include <linux/mempool.h>
17#include <linux/module.h>
18#include <linux/pagemap.h>
19#include <linux/slab.h>
20#include <linux/time.h>
21#include <linux/workqueue.h>
Chandra Seetharamancfae5c92008-05-01 14:50:11 -070022#include <scsi/scsi_dh.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <asm/atomic.h>
24
Alasdair G Kergon72d94862006-06-26 00:27:35 -070025#define DM_MSG_PREFIX "multipath"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#define MESG_STR(x) x, sizeof(x)
27
28/* Path properties */
29struct pgpath {
30 struct list_head list;
31
32 struct priority_group *pg; /* Owning PG */
33 unsigned fail_count; /* Cumulative failure count */
34
Josef "Jeff" Sipekc922d5f2006-12-08 02:36:33 -080035 struct dm_path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036};
37
38#define path_to_pgpath(__pgp) container_of((__pgp), struct pgpath, path)
39
40/*
41 * Paths are grouped into Priority Groups and numbered from 1 upwards.
42 * Each has a path selector which controls which path gets used.
43 */
44struct priority_group {
45 struct list_head list;
46
47 struct multipath *m; /* Owning multipath instance */
48 struct path_selector ps;
49
50 unsigned pg_num; /* Reference number */
51 unsigned bypassed; /* Temporarily bypass this PG? */
52
53 unsigned nr_pgpaths; /* Number of paths in PG */
54 struct list_head pgpaths;
55};
56
57/* Multipath context */
58struct multipath {
59 struct list_head list;
60 struct dm_target *ti;
61
62 spinlock_t lock;
63
Chandra Seetharamancfae5c92008-05-01 14:50:11 -070064 const char *hw_handler_name;
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -070065 struct work_struct activate_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 unsigned nr_priority_groups;
67 struct list_head priority_groups;
68 unsigned pg_init_required; /* pg_init needs calling? */
Alasdair G Kergonc3cd4f62005-07-12 15:53:04 -070069 unsigned pg_init_in_progress; /* Only one pg_init allowed at once */
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
71 unsigned nr_valid_paths; /* Total number of usable paths */
72 struct pgpath *current_pgpath;
73 struct priority_group *current_pg;
74 struct priority_group *next_pg; /* Switch to this PG if set */
75 unsigned repeat_count; /* I/Os left before calling PS again */
76
77 unsigned queue_io; /* Must we queue all I/O? */
78 unsigned queue_if_no_path; /* Queue I/O if last path fails? */
Alasdair G Kergon436d4102005-07-12 15:53:03 -070079 unsigned saved_queue_if_no_path;/* Saved state during suspension */
Dave Wysochanskic9e45582007-10-19 22:47:53 +010080 unsigned pg_init_retries; /* Number of times to retry pg_init */
81 unsigned pg_init_count; /* Number of times pg_init called */
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83 struct work_struct process_queued_ios;
84 struct bio_list queued_ios;
85 unsigned queue_size;
86
87 struct work_struct trigger_event;
88
89 /*
Alasdair G Kergon028867a2007-07-12 17:26:32 +010090 * We must use a mempool of dm_mpath_io structs so that we
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 * can resubmit bios on error.
92 */
93 mempool_t *mpio_pool;
94};
95
96/*
97 * Context information attached to each bio we process.
98 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +010099struct dm_mpath_io {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 struct pgpath *pgpath;
101 struct dm_bio_details details;
102};
103
104typedef int (*action_fn) (struct pgpath *pgpath);
105
106#define MIN_IOS 256 /* Mempool size */
107
Christoph Lametere18b8902006-12-06 20:33:20 -0800108static struct kmem_cache *_mpio_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -0700110static struct workqueue_struct *kmultipathd, *kmpath_handlerd;
David Howellsc4028952006-11-22 14:57:56 +0000111static void process_queued_ios(struct work_struct *work);
112static void trigger_event(struct work_struct *work);
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -0700113static void activate_path(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115
116/*-----------------------------------------------
117 * Allocation routines
118 *-----------------------------------------------*/
119
120static struct pgpath *alloc_pgpath(void)
121{
Micha³ Miros³awe69fae52006-10-03 01:15:34 -0700122 struct pgpath *pgpath = kzalloc(sizeof(*pgpath), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Micha³ Miros³awe69fae52006-10-03 01:15:34 -0700124 if (pgpath)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 pgpath->path.is_active = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127 return pgpath;
128}
129
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100130static void free_pgpath(struct pgpath *pgpath)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131{
132 kfree(pgpath);
133}
134
135static struct priority_group *alloc_priority_group(void)
136{
137 struct priority_group *pg;
138
Micha³ Miros³awe69fae52006-10-03 01:15:34 -0700139 pg = kzalloc(sizeof(*pg), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Micha³ Miros³awe69fae52006-10-03 01:15:34 -0700141 if (pg)
142 INIT_LIST_HEAD(&pg->pgpaths);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144 return pg;
145}
146
147static void free_pgpaths(struct list_head *pgpaths, struct dm_target *ti)
148{
149 struct pgpath *pgpath, *tmp;
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700150 struct multipath *m = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152 list_for_each_entry_safe(pgpath, tmp, pgpaths, list) {
153 list_del(&pgpath->list);
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700154 if (m->hw_handler_name)
155 scsi_dh_detach(bdev_get_queue(pgpath->path.dev->bdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 dm_put_device(ti, pgpath->path.dev);
157 free_pgpath(pgpath);
158 }
159}
160
161static void free_priority_group(struct priority_group *pg,
162 struct dm_target *ti)
163{
164 struct path_selector *ps = &pg->ps;
165
166 if (ps->type) {
167 ps->type->destroy(ps);
168 dm_put_path_selector(ps->type);
169 }
170
171 free_pgpaths(&pg->pgpaths, ti);
172 kfree(pg);
173}
174
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700175static struct multipath *alloc_multipath(struct dm_target *ti)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
177 struct multipath *m;
178
Micha³ Miros³awe69fae52006-10-03 01:15:34 -0700179 m = kzalloc(sizeof(*m), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 if (m) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 INIT_LIST_HEAD(&m->priority_groups);
182 spin_lock_init(&m->lock);
183 m->queue_io = 1;
David Howellsc4028952006-11-22 14:57:56 +0000184 INIT_WORK(&m->process_queued_ios, process_queued_ios);
185 INIT_WORK(&m->trigger_event, trigger_event);
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -0700186 INIT_WORK(&m->activate_path, activate_path);
Matthew Dobson93d23412006-03-26 01:37:50 -0800187 m->mpio_pool = mempool_create_slab_pool(MIN_IOS, _mpio_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 if (!m->mpio_pool) {
189 kfree(m);
190 return NULL;
191 }
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700192 m->ti = ti;
193 ti->private = m;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 }
195
196 return m;
197}
198
199static void free_multipath(struct multipath *m)
200{
201 struct priority_group *pg, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
203 list_for_each_entry_safe(pg, tmp, &m->priority_groups, list) {
204 list_del(&pg->list);
205 free_priority_group(pg, m->ti);
206 }
207
Chandra Seetharamancfae5c92008-05-01 14:50:11 -0700208 kfree(m->hw_handler_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 mempool_destroy(m->mpio_pool);
210 kfree(m);
211}
212
213
214/*-----------------------------------------------
215 * Path selection
216 *-----------------------------------------------*/
217
218static void __switch_pg(struct multipath *m, struct pgpath *pgpath)
219{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 m->current_pg = pgpath->pg;
221
222 /* Must we initialise the PG first, and queue I/O till it's ready? */
Chandra Seetharamancfae5c92008-05-01 14:50:11 -0700223 if (m->hw_handler_name) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 m->pg_init_required = 1;
225 m->queue_io = 1;
226 } else {
227 m->pg_init_required = 0;
228 m->queue_io = 0;
229 }
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100230
231 m->pg_init_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232}
233
234static int __choose_path_in_pg(struct multipath *m, struct priority_group *pg)
235{
Josef "Jeff" Sipekc922d5f2006-12-08 02:36:33 -0800236 struct dm_path *path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
238 path = pg->ps.type->select_path(&pg->ps, &m->repeat_count);
239 if (!path)
240 return -ENXIO;
241
242 m->current_pgpath = path_to_pgpath(path);
243
244 if (m->current_pg != pg)
245 __switch_pg(m, m->current_pgpath);
246
247 return 0;
248}
249
250static void __choose_pgpath(struct multipath *m)
251{
252 struct priority_group *pg;
253 unsigned bypassed = 1;
254
255 if (!m->nr_valid_paths)
256 goto failed;
257
258 /* Were we instructed to switch PG? */
259 if (m->next_pg) {
260 pg = m->next_pg;
261 m->next_pg = NULL;
262 if (!__choose_path_in_pg(m, pg))
263 return;
264 }
265
266 /* Don't change PG until it has no remaining paths */
267 if (m->current_pg && !__choose_path_in_pg(m, m->current_pg))
268 return;
269
270 /*
271 * Loop through priority groups until we find a valid path.
272 * First time we skip PGs marked 'bypassed'.
273 * Second time we only try the ones we skipped.
274 */
275 do {
276 list_for_each_entry(pg, &m->priority_groups, list) {
277 if (pg->bypassed == bypassed)
278 continue;
279 if (!__choose_path_in_pg(m, pg))
280 return;
281 }
282 } while (bypassed--);
283
284failed:
285 m->current_pgpath = NULL;
286 m->current_pg = NULL;
287}
288
Kiyoshi Ueda45e15722006-12-08 02:41:10 -0800289/*
290 * Check whether bios must be queued in the device-mapper core rather
291 * than here in the target.
292 *
293 * m->lock must be held on entry.
294 *
295 * If m->queue_if_no_path and m->saved_queue_if_no_path hold the
296 * same value then we are not between multipath_presuspend()
297 * and multipath_resume() calls and we have no need to check
298 * for the DMF_NOFLUSH_SUSPENDING flag.
299 */
300static int __must_push_back(struct multipath *m)
301{
302 return (m->queue_if_no_path != m->saved_queue_if_no_path &&
303 dm_noflush_suspending(m->ti));
304}
305
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100306static int map_io(struct multipath *m, struct bio *bio,
307 struct dm_mpath_io *mpio, unsigned was_queued)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -0800309 int r = DM_MAPIO_REMAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 unsigned long flags;
311 struct pgpath *pgpath;
312
313 spin_lock_irqsave(&m->lock, flags);
314
315 /* Do we need to select a new pgpath? */
316 if (!m->current_pgpath ||
317 (!m->queue_io && (m->repeat_count && --m->repeat_count == 0)))
318 __choose_pgpath(m);
319
320 pgpath = m->current_pgpath;
321
322 if (was_queued)
323 m->queue_size--;
324
325 if ((pgpath && m->queue_io) ||
Alasdair G Kergon436d4102005-07-12 15:53:03 -0700326 (!pgpath && m->queue_if_no_path)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 /* Queue for the daemon to resubmit */
328 bio_list_add(&m->queued_ios, bio);
329 m->queue_size++;
Alasdair G Kergonc3cd4f62005-07-12 15:53:04 -0700330 if ((m->pg_init_required && !m->pg_init_in_progress) ||
331 !m->queue_io)
Alasdair G Kergonc5573082005-05-05 16:16:07 -0700332 queue_work(kmultipathd, &m->process_queued_ios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 pgpath = NULL;
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -0800334 r = DM_MAPIO_SUBMITTED;
Kiyoshi Ueda45e15722006-12-08 02:41:10 -0800335 } else if (pgpath)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 bio->bi_bdev = pgpath->path.dev->bdev;
Kiyoshi Ueda45e15722006-12-08 02:41:10 -0800337 else if (__must_push_back(m))
338 r = DM_MAPIO_REQUEUE;
339 else
340 r = -EIO; /* Failed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
342 mpio->pgpath = pgpath;
343
344 spin_unlock_irqrestore(&m->lock, flags);
345
346 return r;
347}
348
349/*
350 * If we run out of usable paths, should we queue I/O or error it?
351 */
Alasdair G Kergon485ef692005-09-27 21:45:45 -0700352static int queue_if_no_path(struct multipath *m, unsigned queue_if_no_path,
353 unsigned save_old_value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
355 unsigned long flags;
356
357 spin_lock_irqsave(&m->lock, flags);
358
Alasdair G Kergon485ef692005-09-27 21:45:45 -0700359 if (save_old_value)
360 m->saved_queue_if_no_path = m->queue_if_no_path;
361 else
362 m->saved_queue_if_no_path = queue_if_no_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 m->queue_if_no_path = queue_if_no_path;
Alasdair G Kergonc3cd4f62005-07-12 15:53:04 -0700364 if (!m->queue_if_no_path && m->queue_size)
Alasdair G Kergonc5573082005-05-05 16:16:07 -0700365 queue_work(kmultipathd, &m->process_queued_ios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
367 spin_unlock_irqrestore(&m->lock, flags);
368
369 return 0;
370}
371
372/*-----------------------------------------------------------------
373 * The multipath daemon is responsible for resubmitting queued ios.
374 *---------------------------------------------------------------*/
375
376static void dispatch_queued_ios(struct multipath *m)
377{
378 int r;
379 unsigned long flags;
380 struct bio *bio = NULL, *next;
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100381 struct dm_mpath_io *mpio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 union map_info *info;
383
384 spin_lock_irqsave(&m->lock, flags);
385 bio = bio_list_get(&m->queued_ios);
386 spin_unlock_irqrestore(&m->lock, flags);
387
388 while (bio) {
389 next = bio->bi_next;
390 bio->bi_next = NULL;
391
392 info = dm_get_mapinfo(bio);
393 mpio = info->ptr;
394
395 r = map_io(m, bio, mpio, 1);
396 if (r < 0)
NeilBrown6712ecf2007-09-27 12:47:43 +0200397 bio_endio(bio, r);
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -0800398 else if (r == DM_MAPIO_REMAPPED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 generic_make_request(bio);
Kiyoshi Ueda45e15722006-12-08 02:41:10 -0800400 else if (r == DM_MAPIO_REQUEUE)
NeilBrown6712ecf2007-09-27 12:47:43 +0200401 bio_endio(bio, -EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403 bio = next;
404 }
405}
406
David Howellsc4028952006-11-22 14:57:56 +0000407static void process_queued_ios(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408{
David Howellsc4028952006-11-22 14:57:56 +0000409 struct multipath *m =
410 container_of(work, struct multipath, process_queued_ios);
Alasdair G Kergonc3cd4f62005-07-12 15:53:04 -0700411 struct pgpath *pgpath = NULL;
412 unsigned init_required = 0, must_queue = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 unsigned long flags;
414
415 spin_lock_irqsave(&m->lock, flags);
416
Alasdair G Kergonc3cd4f62005-07-12 15:53:04 -0700417 if (!m->queue_size)
418 goto out;
419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 if (!m->current_pgpath)
421 __choose_pgpath(m);
422
423 pgpath = m->current_pgpath;
424
Alasdair G Kergonc3cd4f62005-07-12 15:53:04 -0700425 if ((pgpath && !m->queue_io) ||
426 (!pgpath && !m->queue_if_no_path))
427 must_queue = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Alasdair G Kergonc3cd4f62005-07-12 15:53:04 -0700429 if (m->pg_init_required && !m->pg_init_in_progress) {
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100430 m->pg_init_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 m->pg_init_required = 0;
Alasdair G Kergonc3cd4f62005-07-12 15:53:04 -0700432 m->pg_init_in_progress = 1;
433 init_required = 1;
434 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
Alasdair G Kergonc3cd4f62005-07-12 15:53:04 -0700436out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 spin_unlock_irqrestore(&m->lock, flags);
438
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -0700439 if (init_required)
440 queue_work(kmpath_handlerd, &m->activate_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
442 if (!must_queue)
443 dispatch_queued_ios(m);
444}
445
446/*
447 * An event is triggered whenever a path is taken out of use.
448 * Includes path failure and PG bypass.
449 */
David Howellsc4028952006-11-22 14:57:56 +0000450static void trigger_event(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451{
David Howellsc4028952006-11-22 14:57:56 +0000452 struct multipath *m =
453 container_of(work, struct multipath, trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
455 dm_table_event(m->ti->table);
456}
457
458/*-----------------------------------------------------------------
459 * Constructor/argument parsing:
460 * <#multipath feature args> [<arg>]*
461 * <#hw_handler args> [hw_handler [<arg>]*]
462 * <#priority groups>
463 * <initial priority group>
464 * [<selector> <#selector args> [<arg>]*
465 * <#paths> <#per-path selector args>
466 * [<path> [<arg>]* ]+ ]+
467 *---------------------------------------------------------------*/
468struct param {
469 unsigned min;
470 unsigned max;
471 char *error;
472};
473
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474static int read_param(struct param *param, char *str, unsigned *v, char **error)
475{
476 if (!str ||
477 (sscanf(str, "%u", v) != 1) ||
478 (*v < param->min) ||
479 (*v > param->max)) {
480 *error = param->error;
481 return -EINVAL;
482 }
483
484 return 0;
485}
486
487struct arg_set {
488 unsigned argc;
489 char **argv;
490};
491
492static char *shift(struct arg_set *as)
493{
494 char *r;
495
496 if (as->argc) {
497 as->argc--;
498 r = *as->argv;
499 as->argv++;
500 return r;
501 }
502
503 return NULL;
504}
505
506static void consume(struct arg_set *as, unsigned n)
507{
508 BUG_ON (as->argc < n);
509 as->argc -= n;
510 as->argv += n;
511}
512
513static int parse_path_selector(struct arg_set *as, struct priority_group *pg,
514 struct dm_target *ti)
515{
516 int r;
517 struct path_selector_type *pst;
518 unsigned ps_argc;
519
520 static struct param _params[] = {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700521 {0, 1024, "invalid number of path selector args"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 };
523
524 pst = dm_get_path_selector(shift(as));
525 if (!pst) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700526 ti->error = "unknown path selector type";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 return -EINVAL;
528 }
529
530 r = read_param(_params, shift(as), &ps_argc, &ti->error);
Mikulas Patocka371b2e32008-07-21 12:00:24 +0100531 if (r) {
532 dm_put_path_selector(pst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 return -EINVAL;
Mikulas Patocka371b2e32008-07-21 12:00:24 +0100534 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
536 r = pst->create(&pg->ps, ps_argc, as->argv);
537 if (r) {
538 dm_put_path_selector(pst);
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700539 ti->error = "path selector constructor failed";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 return r;
541 }
542
543 pg->ps.type = pst;
544 consume(as, ps_argc);
545
546 return 0;
547}
548
549static struct pgpath *parse_path(struct arg_set *as, struct path_selector *ps,
550 struct dm_target *ti)
551{
552 int r;
553 struct pgpath *p;
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700554 struct multipath *m = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
556 /* we need at least a path arg */
557 if (as->argc < 1) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700558 ti->error = "no device given";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 return NULL;
560 }
561
562 p = alloc_pgpath();
563 if (!p)
564 return NULL;
565
566 r = dm_get_device(ti, shift(as), ti->begin, ti->len,
567 dm_table_get_mode(ti->table), &p->path.dev);
568 if (r) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700569 ti->error = "error getting device";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 goto bad;
571 }
572
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700573 if (m->hw_handler_name) {
574 r = scsi_dh_attach(bdev_get_queue(p->path.dev->bdev),
575 m->hw_handler_name);
576 if (r < 0) {
577 dm_put_device(ti, p->path.dev);
578 goto bad;
579 }
580 }
581
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 r = ps->type->add_path(ps, &p->path, as->argc, as->argv, &ti->error);
583 if (r) {
584 dm_put_device(ti, p->path.dev);
585 goto bad;
586 }
587
588 return p;
589
590 bad:
591 free_pgpath(p);
592 return NULL;
593}
594
595static struct priority_group *parse_priority_group(struct arg_set *as,
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700596 struct multipath *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597{
598 static struct param _params[] = {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700599 {1, 1024, "invalid number of paths"},
600 {0, 1024, "invalid number of selector args"}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 };
602
603 int r;
604 unsigned i, nr_selector_args, nr_params;
605 struct priority_group *pg;
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700606 struct dm_target *ti = m->ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
608 if (as->argc < 2) {
609 as->argc = 0;
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700610 ti->error = "not enough priority group aruments";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 return NULL;
612 }
613
614 pg = alloc_priority_group();
615 if (!pg) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700616 ti->error = "couldn't allocate priority group";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 return NULL;
618 }
619 pg->m = m;
620
621 r = parse_path_selector(as, pg, ti);
622 if (r)
623 goto bad;
624
625 /*
626 * read the paths
627 */
628 r = read_param(_params, shift(as), &pg->nr_pgpaths, &ti->error);
629 if (r)
630 goto bad;
631
632 r = read_param(_params + 1, shift(as), &nr_selector_args, &ti->error);
633 if (r)
634 goto bad;
635
636 nr_params = 1 + nr_selector_args;
637 for (i = 0; i < pg->nr_pgpaths; i++) {
638 struct pgpath *pgpath;
639 struct arg_set path_args;
640
Mikulas Patocka148acff2008-07-21 12:00:30 +0100641 if (as->argc < nr_params) {
642 ti->error = "not enough path parameters";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 goto bad;
Mikulas Patocka148acff2008-07-21 12:00:30 +0100644 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
646 path_args.argc = nr_params;
647 path_args.argv = as->argv;
648
649 pgpath = parse_path(&path_args, &pg->ps, ti);
650 if (!pgpath)
651 goto bad;
652
653 pgpath->pg = pg;
654 list_add_tail(&pgpath->list, &pg->pgpaths);
655 consume(as, nr_params);
656 }
657
658 return pg;
659
660 bad:
661 free_priority_group(pg, ti);
662 return NULL;
663}
664
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700665static int parse_hw_handler(struct arg_set *as, struct multipath *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 unsigned hw_argc;
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700668 struct dm_target *ti = m->ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
670 static struct param _params[] = {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700671 {0, 1024, "invalid number of hardware handler args"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 };
673
Chandra Seetharamancfae5c92008-05-01 14:50:11 -0700674 if (read_param(_params, shift(as), &hw_argc, &ti->error))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 return -EINVAL;
676
677 if (!hw_argc)
678 return 0;
679
Chandra Seetharamancfae5c92008-05-01 14:50:11 -0700680 m->hw_handler_name = kstrdup(shift(as), GFP_KERNEL);
681 request_module("scsi_dh_%s", m->hw_handler_name);
682 if (scsi_dh_handler_exist(m->hw_handler_name) == 0) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700683 ti->error = "unknown hardware handler type";
Chandra Seetharamanfe9233f2008-05-23 18:16:40 -0700684 kfree(m->hw_handler_name);
685 m->hw_handler_name = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 return -EINVAL;
687 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 consume(as, hw_argc - 1);
689
690 return 0;
691}
692
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700693static int parse_features(struct arg_set *as, struct multipath *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694{
695 int r;
696 unsigned argc;
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700697 struct dm_target *ti = m->ti;
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100698 const char *param_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
700 static struct param _params[] = {
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100701 {0, 3, "invalid number of feature args"},
702 {1, 50, "pg_init_retries must be between 1 and 50"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 };
704
705 r = read_param(_params, shift(as), &argc, &ti->error);
706 if (r)
707 return -EINVAL;
708
709 if (!argc)
710 return 0;
711
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100712 do {
713 param_name = shift(as);
714 argc--;
715
716 if (!strnicmp(param_name, MESG_STR("queue_if_no_path"))) {
717 r = queue_if_no_path(m, 1, 0);
718 continue;
719 }
720
721 if (!strnicmp(param_name, MESG_STR("pg_init_retries")) &&
722 (argc >= 1)) {
723 r = read_param(_params + 1, shift(as),
724 &m->pg_init_retries, &ti->error);
725 argc--;
726 continue;
727 }
728
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 ti->error = "Unrecognised multipath feature request";
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100730 r = -EINVAL;
731 } while (argc && !r);
732
733 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734}
735
736static int multipath_ctr(struct dm_target *ti, unsigned int argc,
737 char **argv)
738{
739 /* target parameters */
740 static struct param _params[] = {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700741 {1, 1024, "invalid number of priority groups"},
742 {1, 1024, "invalid initial priority group number"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 };
744
745 int r;
746 struct multipath *m;
747 struct arg_set as;
748 unsigned pg_count = 0;
749 unsigned next_pg_num;
750
751 as.argc = argc;
752 as.argv = argv;
753
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700754 m = alloc_multipath(ti);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 if (!m) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700756 ti->error = "can't allocate multipath";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 return -EINVAL;
758 }
759
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700760 r = parse_features(&as, m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 if (r)
762 goto bad;
763
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700764 r = parse_hw_handler(&as, m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 if (r)
766 goto bad;
767
768 r = read_param(_params, shift(&as), &m->nr_priority_groups, &ti->error);
769 if (r)
770 goto bad;
771
772 r = read_param(_params + 1, shift(&as), &next_pg_num, &ti->error);
773 if (r)
774 goto bad;
775
776 /* parse the priority groups */
777 while (as.argc) {
778 struct priority_group *pg;
779
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700780 pg = parse_priority_group(&as, m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 if (!pg) {
782 r = -EINVAL;
783 goto bad;
784 }
785
786 m->nr_valid_paths += pg->nr_pgpaths;
787 list_add_tail(&pg->list, &m->priority_groups);
788 pg_count++;
789 pg->pg_num = pg_count;
790 if (!--next_pg_num)
791 m->next_pg = pg;
792 }
793
794 if (pg_count != m->nr_priority_groups) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700795 ti->error = "priority group count mismatch";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 r = -EINVAL;
797 goto bad;
798 }
799
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 return 0;
801
802 bad:
803 free_multipath(m);
804 return r;
805}
806
807static void multipath_dtr(struct dm_target *ti)
808{
809 struct multipath *m = (struct multipath *) ti->private;
Alasdair G Kergona044d012005-07-12 15:53:02 -0700810
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -0700811 flush_workqueue(kmpath_handlerd);
Alasdair G Kergona044d012005-07-12 15:53:02 -0700812 flush_workqueue(kmultipathd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 free_multipath(m);
814}
815
816/*
817 * Map bios, recording original fields for later in case we have to resubmit
818 */
819static int multipath_map(struct dm_target *ti, struct bio *bio,
820 union map_info *map_context)
821{
822 int r;
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100823 struct dm_mpath_io *mpio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 struct multipath *m = (struct multipath *) ti->private;
825
826 mpio = mempool_alloc(m->mpio_pool, GFP_NOIO);
827 dm_bio_record(&mpio->details, bio);
828
829 map_context->ptr = mpio;
830 bio->bi_rw |= (1 << BIO_RW_FAILFAST);
831 r = map_io(m, bio, mpio, 0);
Kiyoshi Ueda45e15722006-12-08 02:41:10 -0800832 if (r < 0 || r == DM_MAPIO_REQUEUE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 mempool_free(mpio, m->mpio_pool);
834
835 return r;
836}
837
838/*
839 * Take a path out of use.
840 */
841static int fail_path(struct pgpath *pgpath)
842{
843 unsigned long flags;
844 struct multipath *m = pgpath->pg->m;
845
846 spin_lock_irqsave(&m->lock, flags);
847
848 if (!pgpath->path.is_active)
849 goto out;
850
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700851 DMWARN("Failing path %s.", pgpath->path.dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
853 pgpath->pg->ps.type->fail_path(&pgpath->pg->ps, &pgpath->path);
854 pgpath->path.is_active = 0;
855 pgpath->fail_count++;
856
857 m->nr_valid_paths--;
858
859 if (pgpath == m->current_pgpath)
860 m->current_pgpath = NULL;
861
Mike Andersonb15546f2007-10-19 22:48:02 +0100862 dm_path_uevent(DM_UEVENT_PATH_FAILED, m->ti,
863 pgpath->path.dev->name, m->nr_valid_paths);
864
Alasdair G Kergonc5573082005-05-05 16:16:07 -0700865 queue_work(kmultipathd, &m->trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
867out:
868 spin_unlock_irqrestore(&m->lock, flags);
869
870 return 0;
871}
872
873/*
874 * Reinstate a previously-failed path
875 */
876static int reinstate_path(struct pgpath *pgpath)
877{
878 int r = 0;
879 unsigned long flags;
880 struct multipath *m = pgpath->pg->m;
881
882 spin_lock_irqsave(&m->lock, flags);
883
884 if (pgpath->path.is_active)
885 goto out;
886
Alasdair G Kergondef052d2008-07-21 12:00:31 +0100887 if (!pgpath->pg->ps.type->reinstate_path) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 DMWARN("Reinstate path not supported by path selector %s",
889 pgpath->pg->ps.type->name);
890 r = -EINVAL;
891 goto out;
892 }
893
894 r = pgpath->pg->ps.type->reinstate_path(&pgpath->pg->ps, &pgpath->path);
895 if (r)
896 goto out;
897
898 pgpath->path.is_active = 1;
899
900 m->current_pgpath = NULL;
Alasdair G Kergonc3cd4f62005-07-12 15:53:04 -0700901 if (!m->nr_valid_paths++ && m->queue_size)
Alasdair G Kergonc5573082005-05-05 16:16:07 -0700902 queue_work(kmultipathd, &m->process_queued_ios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
Mike Andersonb15546f2007-10-19 22:48:02 +0100904 dm_path_uevent(DM_UEVENT_PATH_REINSTATED, m->ti,
905 pgpath->path.dev->name, m->nr_valid_paths);
906
Alasdair G Kergonc5573082005-05-05 16:16:07 -0700907 queue_work(kmultipathd, &m->trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
909out:
910 spin_unlock_irqrestore(&m->lock, flags);
911
912 return r;
913}
914
915/*
916 * Fail or reinstate all paths that match the provided struct dm_dev.
917 */
918static int action_dev(struct multipath *m, struct dm_dev *dev,
919 action_fn action)
920{
921 int r = 0;
922 struct pgpath *pgpath;
923 struct priority_group *pg;
924
925 list_for_each_entry(pg, &m->priority_groups, list) {
926 list_for_each_entry(pgpath, &pg->pgpaths, list) {
927 if (pgpath->path.dev == dev)
928 r = action(pgpath);
929 }
930 }
931
932 return r;
933}
934
935/*
936 * Temporarily try to avoid having to use the specified PG
937 */
938static void bypass_pg(struct multipath *m, struct priority_group *pg,
939 int bypassed)
940{
941 unsigned long flags;
942
943 spin_lock_irqsave(&m->lock, flags);
944
945 pg->bypassed = bypassed;
946 m->current_pgpath = NULL;
947 m->current_pg = NULL;
948
949 spin_unlock_irqrestore(&m->lock, flags);
950
Alasdair G Kergonc5573082005-05-05 16:16:07 -0700951 queue_work(kmultipathd, &m->trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952}
953
954/*
955 * Switch to using the specified PG from the next I/O that gets mapped
956 */
957static int switch_pg_num(struct multipath *m, const char *pgstr)
958{
959 struct priority_group *pg;
960 unsigned pgnum;
961 unsigned long flags;
962
963 if (!pgstr || (sscanf(pgstr, "%u", &pgnum) != 1) || !pgnum ||
964 (pgnum > m->nr_priority_groups)) {
965 DMWARN("invalid PG number supplied to switch_pg_num");
966 return -EINVAL;
967 }
968
969 spin_lock_irqsave(&m->lock, flags);
970 list_for_each_entry(pg, &m->priority_groups, list) {
971 pg->bypassed = 0;
972 if (--pgnum)
973 continue;
974
975 m->current_pgpath = NULL;
976 m->current_pg = NULL;
977 m->next_pg = pg;
978 }
979 spin_unlock_irqrestore(&m->lock, flags);
980
Alasdair G Kergonc5573082005-05-05 16:16:07 -0700981 queue_work(kmultipathd, &m->trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 return 0;
983}
984
985/*
986 * Set/clear bypassed status of a PG.
987 * PGs are numbered upwards from 1 in the order they were declared.
988 */
989static int bypass_pg_num(struct multipath *m, const char *pgstr, int bypassed)
990{
991 struct priority_group *pg;
992 unsigned pgnum;
993
994 if (!pgstr || (sscanf(pgstr, "%u", &pgnum) != 1) || !pgnum ||
995 (pgnum > m->nr_priority_groups)) {
996 DMWARN("invalid PG number supplied to bypass_pg");
997 return -EINVAL;
998 }
999
1000 list_for_each_entry(pg, &m->priority_groups, list) {
1001 if (!--pgnum)
1002 break;
1003 }
1004
1005 bypass_pg(m, pg, bypassed);
1006 return 0;
1007}
1008
1009/*
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001010 * Should we retry pg_init immediately?
1011 */
1012static int pg_init_limit_reached(struct multipath *m, struct pgpath *pgpath)
1013{
1014 unsigned long flags;
1015 int limit_reached = 0;
1016
1017 spin_lock_irqsave(&m->lock, flags);
1018
1019 if (m->pg_init_count <= m->pg_init_retries)
1020 m->pg_init_required = 1;
1021 else
1022 limit_reached = 1;
1023
1024 spin_unlock_irqrestore(&m->lock, flags);
1025
1026 return limit_reached;
1027}
1028
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001029static void pg_init_done(struct dm_path *path, int errors)
1030{
1031 struct pgpath *pgpath = path_to_pgpath(path);
1032 struct priority_group *pg = pgpath->pg;
1033 struct multipath *m = pg->m;
1034 unsigned long flags;
1035
1036 /* device or driver problems */
1037 switch (errors) {
1038 case SCSI_DH_OK:
1039 break;
1040 case SCSI_DH_NOSYS:
1041 if (!m->hw_handler_name) {
1042 errors = 0;
1043 break;
1044 }
1045 DMERR("Cannot failover device because scsi_dh_%s was not "
1046 "loaded.", m->hw_handler_name);
1047 /*
1048 * Fail path for now, so we do not ping pong
1049 */
1050 fail_path(pgpath);
1051 break;
1052 case SCSI_DH_DEV_TEMP_BUSY:
1053 /*
1054 * Probably doing something like FW upgrade on the
1055 * controller so try the other pg.
1056 */
1057 bypass_pg(m, pg, 1);
1058 break;
1059 /* TODO: For SCSI_DH_RETRY we should wait a couple seconds */
1060 case SCSI_DH_RETRY:
1061 case SCSI_DH_IMM_RETRY:
1062 case SCSI_DH_RES_TEMP_UNAVAIL:
1063 if (pg_init_limit_reached(m, pgpath))
1064 fail_path(pgpath);
1065 errors = 0;
1066 break;
1067 default:
1068 /*
1069 * We probably do not want to fail the path for a device
1070 * error, but this is what the old dm did. In future
1071 * patches we can do more advanced handling.
1072 */
1073 fail_path(pgpath);
1074 }
1075
1076 spin_lock_irqsave(&m->lock, flags);
1077 if (errors) {
1078 DMERR("Could not failover device. Error %d.", errors);
1079 m->current_pgpath = NULL;
1080 m->current_pg = NULL;
1081 } else if (!m->pg_init_required) {
1082 m->queue_io = 0;
1083 pg->bypassed = 0;
1084 }
1085
1086 m->pg_init_in_progress = 0;
1087 queue_work(kmultipathd, &m->process_queued_ios);
1088 spin_unlock_irqrestore(&m->lock, flags);
1089}
1090
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001091static void activate_path(struct work_struct *work)
1092{
1093 int ret;
1094 struct multipath *m =
1095 container_of(work, struct multipath, activate_path);
1096 struct dm_path *path = &m->current_pgpath->path;
1097
1098 ret = scsi_dh_activate(bdev_get_queue(path->dev->bdev));
1099 pg_init_done(path, ret);
1100}
1101
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102/*
1103 * end_io handling
1104 */
1105static int do_end_io(struct multipath *m, struct bio *bio,
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001106 int error, struct dm_mpath_io *mpio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107{
Stefan Bader640eb3b2005-11-21 21:32:35 -08001108 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
1110 if (!error)
1111 return 0; /* I/O complete */
1112
Lars Marowsky-Bree4f588022005-06-08 15:50:31 -07001113 if ((error == -EWOULDBLOCK) && bio_rw_ahead(bio))
1114 return error;
1115
Alasdair G Kergonf6a80ea2005-07-12 15:53:01 -07001116 if (error == -EOPNOTSUPP)
1117 return error;
1118
Stefan Bader640eb3b2005-11-21 21:32:35 -08001119 spin_lock_irqsave(&m->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 if (!m->nr_valid_paths) {
Kiyoshi Ueda45e15722006-12-08 02:41:10 -08001121 if (__must_push_back(m)) {
1122 spin_unlock_irqrestore(&m->lock, flags);
1123 return DM_ENDIO_REQUEUE;
1124 } else if (!m->queue_if_no_path) {
Stefan Bader640eb3b2005-11-21 21:32:35 -08001125 spin_unlock_irqrestore(&m->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 return -EIO;
1127 } else {
Stefan Bader640eb3b2005-11-21 21:32:35 -08001128 spin_unlock_irqrestore(&m->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 goto requeue;
1130 }
1131 }
Stefan Bader640eb3b2005-11-21 21:32:35 -08001132 spin_unlock_irqrestore(&m->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001134 if (mpio->pgpath)
1135 fail_path(mpio->pgpath);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136
1137 requeue:
1138 dm_bio_restore(&mpio->details, bio);
1139
1140 /* queue for the daemon to resubmit or fail */
Stefan Bader640eb3b2005-11-21 21:32:35 -08001141 spin_lock_irqsave(&m->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 bio_list_add(&m->queued_ios, bio);
1143 m->queue_size++;
1144 if (!m->queue_io)
Alasdair G Kergonc5573082005-05-05 16:16:07 -07001145 queue_work(kmultipathd, &m->process_queued_ios);
Stefan Bader640eb3b2005-11-21 21:32:35 -08001146 spin_unlock_irqrestore(&m->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001148 return DM_ENDIO_INCOMPLETE; /* io not complete */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149}
1150
1151static int multipath_end_io(struct dm_target *ti, struct bio *bio,
1152 int error, union map_info *map_context)
1153{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001154 struct multipath *m = ti->private;
1155 struct dm_mpath_io *mpio = map_context->ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 struct pgpath *pgpath = mpio->pgpath;
1157 struct path_selector *ps;
1158 int r;
1159
1160 r = do_end_io(m, bio, error, mpio);
1161 if (pgpath) {
1162 ps = &pgpath->pg->ps;
1163 if (ps->type->end_io)
1164 ps->type->end_io(ps, &pgpath->path);
1165 }
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001166 if (r != DM_ENDIO_INCOMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 mempool_free(mpio, m->mpio_pool);
1168
1169 return r;
1170}
1171
1172/*
1173 * Suspend can't complete until all the I/O is processed so if
Alasdair G Kergon436d4102005-07-12 15:53:03 -07001174 * the last path fails we must error any remaining I/O.
1175 * Note that if the freeze_bdev fails while suspending, the
1176 * queue_if_no_path state is lost - userspace should reset it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 */
1178static void multipath_presuspend(struct dm_target *ti)
1179{
1180 struct multipath *m = (struct multipath *) ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181
Alasdair G Kergon485ef692005-09-27 21:45:45 -07001182 queue_if_no_path(m, 0, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183}
1184
Alasdair G Kergon436d4102005-07-12 15:53:03 -07001185/*
1186 * Restore the queue_if_no_path setting.
1187 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188static void multipath_resume(struct dm_target *ti)
1189{
1190 struct multipath *m = (struct multipath *) ti->private;
1191 unsigned long flags;
1192
1193 spin_lock_irqsave(&m->lock, flags);
Alasdair G Kergon436d4102005-07-12 15:53:03 -07001194 m->queue_if_no_path = m->saved_queue_if_no_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 spin_unlock_irqrestore(&m->lock, flags);
1196}
1197
1198/*
1199 * Info output has the following format:
1200 * num_multipath_feature_args [multipath_feature_args]*
1201 * num_handler_status_args [handler_status_args]*
1202 * num_groups init_group_number
1203 * [A|D|E num_ps_status_args [ps_status_args]*
1204 * num_paths num_selector_args
1205 * [path_dev A|F fail_count [selector_args]* ]+ ]+
1206 *
1207 * Table output has the following format (identical to the constructor string):
1208 * num_feature_args [features_args]*
1209 * num_handler_args hw_handler [hw_handler_args]*
1210 * num_groups init_group_number
1211 * [priority selector-name num_ps_args [ps_args]*
1212 * num_paths num_selector_args [path_dev [selector_args]* ]+ ]+
1213 */
1214static int multipath_status(struct dm_target *ti, status_type_t type,
1215 char *result, unsigned int maxlen)
1216{
1217 int sz = 0;
1218 unsigned long flags;
1219 struct multipath *m = (struct multipath *) ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 struct priority_group *pg;
1221 struct pgpath *p;
1222 unsigned pg_num;
1223 char state;
1224
1225 spin_lock_irqsave(&m->lock, flags);
1226
1227 /* Features */
1228 if (type == STATUSTYPE_INFO)
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001229 DMEMIT("2 %u %u ", m->queue_size, m->pg_init_count);
1230 else {
1231 DMEMIT("%u ", m->queue_if_no_path +
1232 (m->pg_init_retries > 0) * 2);
1233 if (m->queue_if_no_path)
1234 DMEMIT("queue_if_no_path ");
1235 if (m->pg_init_retries)
1236 DMEMIT("pg_init_retries %u ", m->pg_init_retries);
1237 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001239 if (!m->hw_handler_name || type == STATUSTYPE_INFO)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 DMEMIT("0 ");
1241 else
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001242 DMEMIT("1 %s ", m->hw_handler_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243
1244 DMEMIT("%u ", m->nr_priority_groups);
1245
1246 if (m->next_pg)
1247 pg_num = m->next_pg->pg_num;
1248 else if (m->current_pg)
1249 pg_num = m->current_pg->pg_num;
1250 else
1251 pg_num = 1;
1252
1253 DMEMIT("%u ", pg_num);
1254
1255 switch (type) {
1256 case STATUSTYPE_INFO:
1257 list_for_each_entry(pg, &m->priority_groups, list) {
1258 if (pg->bypassed)
1259 state = 'D'; /* Disabled */
1260 else if (pg == m->current_pg)
1261 state = 'A'; /* Currently Active */
1262 else
1263 state = 'E'; /* Enabled */
1264
1265 DMEMIT("%c ", state);
1266
1267 if (pg->ps.type->status)
1268 sz += pg->ps.type->status(&pg->ps, NULL, type,
1269 result + sz,
1270 maxlen - sz);
1271 else
1272 DMEMIT("0 ");
1273
1274 DMEMIT("%u %u ", pg->nr_pgpaths,
1275 pg->ps.type->info_args);
1276
1277 list_for_each_entry(p, &pg->pgpaths, list) {
1278 DMEMIT("%s %s %u ", p->path.dev->name,
1279 p->path.is_active ? "A" : "F",
1280 p->fail_count);
1281 if (pg->ps.type->status)
1282 sz += pg->ps.type->status(&pg->ps,
1283 &p->path, type, result + sz,
1284 maxlen - sz);
1285 }
1286 }
1287 break;
1288
1289 case STATUSTYPE_TABLE:
1290 list_for_each_entry(pg, &m->priority_groups, list) {
1291 DMEMIT("%s ", pg->ps.type->name);
1292
1293 if (pg->ps.type->status)
1294 sz += pg->ps.type->status(&pg->ps, NULL, type,
1295 result + sz,
1296 maxlen - sz);
1297 else
1298 DMEMIT("0 ");
1299
1300 DMEMIT("%u %u ", pg->nr_pgpaths,
1301 pg->ps.type->table_args);
1302
1303 list_for_each_entry(p, &pg->pgpaths, list) {
1304 DMEMIT("%s ", p->path.dev->name);
1305 if (pg->ps.type->status)
1306 sz += pg->ps.type->status(&pg->ps,
1307 &p->path, type, result + sz,
1308 maxlen - sz);
1309 }
1310 }
1311 break;
1312 }
1313
1314 spin_unlock_irqrestore(&m->lock, flags);
1315
1316 return 0;
1317}
1318
1319static int multipath_message(struct dm_target *ti, unsigned argc, char **argv)
1320{
1321 int r;
1322 struct dm_dev *dev;
1323 struct multipath *m = (struct multipath *) ti->private;
1324 action_fn action;
1325
1326 if (argc == 1) {
1327 if (!strnicmp(argv[0], MESG_STR("queue_if_no_path")))
Alasdair G Kergon485ef692005-09-27 21:45:45 -07001328 return queue_if_no_path(m, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 else if (!strnicmp(argv[0], MESG_STR("fail_if_no_path")))
Alasdair G Kergon485ef692005-09-27 21:45:45 -07001330 return queue_if_no_path(m, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 }
1332
1333 if (argc != 2)
1334 goto error;
1335
1336 if (!strnicmp(argv[0], MESG_STR("disable_group")))
1337 return bypass_pg_num(m, argv[1], 1);
1338 else if (!strnicmp(argv[0], MESG_STR("enable_group")))
1339 return bypass_pg_num(m, argv[1], 0);
1340 else if (!strnicmp(argv[0], MESG_STR("switch_group")))
1341 return switch_pg_num(m, argv[1]);
1342 else if (!strnicmp(argv[0], MESG_STR("reinstate_path")))
1343 action = reinstate_path;
1344 else if (!strnicmp(argv[0], MESG_STR("fail_path")))
1345 action = fail_path;
1346 else
1347 goto error;
1348
1349 r = dm_get_device(ti, argv[1], ti->begin, ti->len,
1350 dm_table_get_mode(ti->table), &dev);
1351 if (r) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001352 DMWARN("message: error getting device %s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 argv[1]);
1354 return -EINVAL;
1355 }
1356
1357 r = action_dev(m, dev, action);
1358
1359 dm_put_device(ti, dev);
1360
1361 return r;
1362
1363error:
1364 DMWARN("Unrecognised multipath message received.");
1365 return -EINVAL;
1366}
1367
Milan Broz9af4aa32006-10-03 01:15:20 -07001368static int multipath_ioctl(struct dm_target *ti, struct inode *inode,
1369 struct file *filp, unsigned int cmd,
1370 unsigned long arg)
1371{
1372 struct multipath *m = (struct multipath *) ti->private;
1373 struct block_device *bdev = NULL;
1374 unsigned long flags;
Milan Broze90dae12006-10-03 01:15:22 -07001375 struct file fake_file = {};
1376 struct dentry fake_dentry = {};
Milan Broz9af4aa32006-10-03 01:15:20 -07001377 int r = 0;
1378
Josef Sipekc649bb92006-12-08 02:37:19 -08001379 fake_file.f_path.dentry = &fake_dentry;
Milan Broze90dae12006-10-03 01:15:22 -07001380
Milan Broz9af4aa32006-10-03 01:15:20 -07001381 spin_lock_irqsave(&m->lock, flags);
1382
1383 if (!m->current_pgpath)
1384 __choose_pgpath(m);
1385
Milan Broze90dae12006-10-03 01:15:22 -07001386 if (m->current_pgpath) {
Milan Broz9af4aa32006-10-03 01:15:20 -07001387 bdev = m->current_pgpath->path.dev->bdev;
Milan Broze90dae12006-10-03 01:15:22 -07001388 fake_dentry.d_inode = bdev->bd_inode;
1389 fake_file.f_mode = m->current_pgpath->path.dev->mode;
1390 }
Milan Broz9af4aa32006-10-03 01:15:20 -07001391
1392 if (m->queue_io)
1393 r = -EAGAIN;
1394 else if (!bdev)
1395 r = -EIO;
1396
1397 spin_unlock_irqrestore(&m->lock, flags);
1398
Milan Broze90dae12006-10-03 01:15:22 -07001399 return r ? : blkdev_driver_ioctl(bdev->bd_inode, &fake_file,
1400 bdev->bd_disk, cmd, arg);
Milan Broz9af4aa32006-10-03 01:15:20 -07001401}
1402
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403/*-----------------------------------------------------------------
1404 * Module setup
1405 *---------------------------------------------------------------*/
1406static struct target_type multipath_target = {
1407 .name = "multipath",
Milan Broz9af4aa32006-10-03 01:15:20 -07001408 .version = {1, 0, 5},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 .module = THIS_MODULE,
1410 .ctr = multipath_ctr,
1411 .dtr = multipath_dtr,
1412 .map = multipath_map,
1413 .end_io = multipath_end_io,
1414 .presuspend = multipath_presuspend,
1415 .resume = multipath_resume,
1416 .status = multipath_status,
1417 .message = multipath_message,
Milan Broz9af4aa32006-10-03 01:15:20 -07001418 .ioctl = multipath_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419};
1420
1421static int __init dm_multipath_init(void)
1422{
1423 int r;
1424
1425 /* allocate a slab for the dm_ios */
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001426 _mpio_cache = KMEM_CACHE(dm_mpath_io, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 if (!_mpio_cache)
1428 return -ENOMEM;
1429
1430 r = dm_register_target(&multipath_target);
1431 if (r < 0) {
Alasdair G Kergon0cd33122007-07-12 17:27:01 +01001432 DMERR("register failed %d", r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 kmem_cache_destroy(_mpio_cache);
1434 return -EINVAL;
1435 }
1436
Alasdair G Kergonc5573082005-05-05 16:16:07 -07001437 kmultipathd = create_workqueue("kmpathd");
1438 if (!kmultipathd) {
Alasdair G Kergon0cd33122007-07-12 17:27:01 +01001439 DMERR("failed to create workqueue kmpathd");
Alasdair G Kergonc5573082005-05-05 16:16:07 -07001440 dm_unregister_target(&multipath_target);
1441 kmem_cache_destroy(_mpio_cache);
1442 return -ENOMEM;
1443 }
1444
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001445 /*
1446 * A separate workqueue is used to handle the device handlers
1447 * to avoid overloading existing workqueue. Overloading the
1448 * old workqueue would also create a bottleneck in the
1449 * path of the storage hardware device activation.
1450 */
1451 kmpath_handlerd = create_singlethread_workqueue("kmpath_handlerd");
1452 if (!kmpath_handlerd) {
1453 DMERR("failed to create workqueue kmpath_handlerd");
1454 destroy_workqueue(kmultipathd);
1455 dm_unregister_target(&multipath_target);
1456 kmem_cache_destroy(_mpio_cache);
1457 return -ENOMEM;
1458 }
1459
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001460 DMINFO("version %u.%u.%u loaded",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 multipath_target.version[0], multipath_target.version[1],
1462 multipath_target.version[2]);
1463
1464 return r;
1465}
1466
1467static void __exit dm_multipath_exit(void)
1468{
1469 int r;
1470
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001471 destroy_workqueue(kmpath_handlerd);
Alasdair G Kergonc5573082005-05-05 16:16:07 -07001472 destroy_workqueue(kmultipathd);
1473
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 r = dm_unregister_target(&multipath_target);
1475 if (r < 0)
Alasdair G Kergon0cd33122007-07-12 17:27:01 +01001476 DMERR("target unregister failed %d", r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 kmem_cache_destroy(_mpio_cache);
1478}
1479
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480module_init(dm_multipath_init);
1481module_exit(dm_multipath_exit);
1482
1483MODULE_DESCRIPTION(DM_NAME " multipath target");
1484MODULE_AUTHOR("Sistina Software <dm-devel@redhat.com>");
1485MODULE_LICENSE("GPL");