blob: 5b23f2df9bdebf81cdb17270464cba235415c374 [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
Mikulas Patocka586e80e2008-10-21 17:44:59 +01008#include <linux/device-mapper.h>
9
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include "dm-path-selector.h"
Mike Andersonb15546f2007-10-19 22:48:02 +010011#include "dm-uevent.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070012
13#include <linux/ctype.h>
14#include <linux/init.h>
15#include <linux/mempool.h>
16#include <linux/module.h>
17#include <linux/pagemap.h>
18#include <linux/slab.h>
19#include <linux/time.h>
20#include <linux/workqueue.h>
Chandra Seetharamancfae5c92008-05-01 14:50:11 -070021#include <scsi/scsi_dh.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <asm/atomic.h>
23
Alasdair G Kergon72d94862006-06-26 00:27:35 -070024#define DM_MSG_PREFIX "multipath"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#define MESG_STR(x) x, sizeof(x)
26
27/* Path properties */
28struct pgpath {
29 struct list_head list;
30
31 struct priority_group *pg; /* Owning PG */
Kiyoshi Ueda66800732008-10-10 13:36:58 +010032 unsigned is_active; /* Path status */
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 unsigned fail_count; /* Cumulative failure count */
34
Josef "Jeff" Sipekc922d5f2006-12-08 02:36:33 -080035 struct dm_path path;
Mike Anderson224cb3e2008-08-29 09:36:09 +020036 struct work_struct deactivate_path;
Chandra Seetharamane54f77d2009-06-22 10:12:12 +010037 struct work_struct activate_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038};
39
40#define path_to_pgpath(__pgp) container_of((__pgp), struct pgpath, path)
41
42/*
43 * Paths are grouped into Priority Groups and numbered from 1 upwards.
44 * Each has a path selector which controls which path gets used.
45 */
46struct priority_group {
47 struct list_head list;
48
49 struct multipath *m; /* Owning multipath instance */
50 struct path_selector ps;
51
52 unsigned pg_num; /* Reference number */
53 unsigned bypassed; /* Temporarily bypass this PG? */
54
55 unsigned nr_pgpaths; /* Number of paths in PG */
56 struct list_head pgpaths;
57};
58
59/* Multipath context */
60struct multipath {
61 struct list_head list;
62 struct dm_target *ti;
63
64 spinlock_t lock;
65
Chandra Seetharamancfae5c92008-05-01 14:50:11 -070066 const char *hw_handler_name;
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -070067 char *hw_handler_params;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 unsigned nr_priority_groups;
69 struct list_head priority_groups;
70 unsigned pg_init_required; /* pg_init needs calling? */
Alasdair G Kergonc3cd4f62005-07-12 15:53:04 -070071 unsigned pg_init_in_progress; /* Only one pg_init allowed at once */
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73 unsigned nr_valid_paths; /* Total number of usable paths */
74 struct pgpath *current_pgpath;
75 struct priority_group *current_pg;
76 struct priority_group *next_pg; /* Switch to this PG if set */
77 unsigned repeat_count; /* I/Os left before calling PS again */
78
79 unsigned queue_io; /* Must we queue all I/O? */
80 unsigned queue_if_no_path; /* Queue I/O if last path fails? */
Alasdair G Kergon436d4102005-07-12 15:53:03 -070081 unsigned saved_queue_if_no_path;/* Saved state during suspension */
Dave Wysochanskic9e45582007-10-19 22:47:53 +010082 unsigned pg_init_retries; /* Number of times to retry pg_init */
83 unsigned pg_init_count; /* Number of times pg_init called */
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85 struct work_struct process_queued_ios;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +010086 struct list_head queued_ios;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 unsigned queue_size;
88
89 struct work_struct trigger_event;
90
91 /*
Alasdair G Kergon028867a2007-07-12 17:26:32 +010092 * We must use a mempool of dm_mpath_io structs so that we
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 * can resubmit bios on error.
94 */
95 mempool_t *mpio_pool;
96};
97
98/*
99 * Context information attached to each bio we process.
100 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100101struct dm_mpath_io {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 struct pgpath *pgpath;
Kiyoshi Ueda02ab8232009-06-22 10:12:27 +0100103 size_t nr_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104};
105
106typedef int (*action_fn) (struct pgpath *pgpath);
107
108#define MIN_IOS 256 /* Mempool size */
109
Christoph Lametere18b8902006-12-06 20:33:20 -0800110static struct kmem_cache *_mpio_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -0700112static struct workqueue_struct *kmultipathd, *kmpath_handlerd;
David Howellsc4028952006-11-22 14:57:56 +0000113static void process_queued_ios(struct work_struct *work);
114static void trigger_event(struct work_struct *work);
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -0700115static void activate_path(struct work_struct *work);
Mike Anderson224cb3e2008-08-29 09:36:09 +0200116static void deactivate_path(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118
119/*-----------------------------------------------
120 * Allocation routines
121 *-----------------------------------------------*/
122
123static struct pgpath *alloc_pgpath(void)
124{
Micha³ Miros³awe69fae52006-10-03 01:15:34 -0700125 struct pgpath *pgpath = kzalloc(sizeof(*pgpath), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Mike Anderson224cb3e2008-08-29 09:36:09 +0200127 if (pgpath) {
Kiyoshi Ueda66800732008-10-10 13:36:58 +0100128 pgpath->is_active = 1;
Mike Anderson224cb3e2008-08-29 09:36:09 +0200129 INIT_WORK(&pgpath->deactivate_path, deactivate_path);
Chandra Seetharamane54f77d2009-06-22 10:12:12 +0100130 INIT_WORK(&pgpath->activate_path, activate_path);
Mike Anderson224cb3e2008-08-29 09:36:09 +0200131 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133 return pgpath;
134}
135
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100136static void free_pgpath(struct pgpath *pgpath)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137{
138 kfree(pgpath);
139}
140
Mike Anderson224cb3e2008-08-29 09:36:09 +0200141static void deactivate_path(struct work_struct *work)
142{
143 struct pgpath *pgpath =
144 container_of(work, struct pgpath, deactivate_path);
145
146 blk_abort_queue(pgpath->path.dev->bdev->bd_disk->queue);
147}
148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149static struct priority_group *alloc_priority_group(void)
150{
151 struct priority_group *pg;
152
Micha³ Miros³awe69fae52006-10-03 01:15:34 -0700153 pg = kzalloc(sizeof(*pg), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Micha³ Miros³awe69fae52006-10-03 01:15:34 -0700155 if (pg)
156 INIT_LIST_HEAD(&pg->pgpaths);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158 return pg;
159}
160
161static void free_pgpaths(struct list_head *pgpaths, struct dm_target *ti)
162{
163 struct pgpath *pgpath, *tmp;
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700164 struct multipath *m = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166 list_for_each_entry_safe(pgpath, tmp, pgpaths, list) {
167 list_del(&pgpath->list);
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700168 if (m->hw_handler_name)
169 scsi_dh_detach(bdev_get_queue(pgpath->path.dev->bdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 dm_put_device(ti, pgpath->path.dev);
171 free_pgpath(pgpath);
172 }
173}
174
175static void free_priority_group(struct priority_group *pg,
176 struct dm_target *ti)
177{
178 struct path_selector *ps = &pg->ps;
179
180 if (ps->type) {
181 ps->type->destroy(ps);
182 dm_put_path_selector(ps->type);
183 }
184
185 free_pgpaths(&pg->pgpaths, ti);
186 kfree(pg);
187}
188
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700189static struct multipath *alloc_multipath(struct dm_target *ti)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
191 struct multipath *m;
192
Micha³ Miros³awe69fae52006-10-03 01:15:34 -0700193 m = kzalloc(sizeof(*m), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 if (m) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 INIT_LIST_HEAD(&m->priority_groups);
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +0100196 INIT_LIST_HEAD(&m->queued_ios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 spin_lock_init(&m->lock);
198 m->queue_io = 1;
David Howellsc4028952006-11-22 14:57:56 +0000199 INIT_WORK(&m->process_queued_ios, process_queued_ios);
200 INIT_WORK(&m->trigger_event, trigger_event);
Matthew Dobson93d23412006-03-26 01:37:50 -0800201 m->mpio_pool = mempool_create_slab_pool(MIN_IOS, _mpio_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 if (!m->mpio_pool) {
203 kfree(m);
204 return NULL;
205 }
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700206 m->ti = ti;
207 ti->private = m;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 }
209
210 return m;
211}
212
213static void free_multipath(struct multipath *m)
214{
215 struct priority_group *pg, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217 list_for_each_entry_safe(pg, tmp, &m->priority_groups, list) {
218 list_del(&pg->list);
219 free_priority_group(pg, m->ti);
220 }
221
Chandra Seetharamancfae5c92008-05-01 14:50:11 -0700222 kfree(m->hw_handler_name);
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700223 kfree(m->hw_handler_params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 mempool_destroy(m->mpio_pool);
225 kfree(m);
226}
227
228
229/*-----------------------------------------------
230 * Path selection
231 *-----------------------------------------------*/
232
233static void __switch_pg(struct multipath *m, struct pgpath *pgpath)
234{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 m->current_pg = pgpath->pg;
236
237 /* Must we initialise the PG first, and queue I/O till it's ready? */
Chandra Seetharamancfae5c92008-05-01 14:50:11 -0700238 if (m->hw_handler_name) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 m->pg_init_required = 1;
240 m->queue_io = 1;
241 } else {
242 m->pg_init_required = 0;
243 m->queue_io = 0;
244 }
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100245
246 m->pg_init_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247}
248
Kiyoshi Ueda02ab8232009-06-22 10:12:27 +0100249static int __choose_path_in_pg(struct multipath *m, struct priority_group *pg,
250 size_t nr_bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251{
Josef "Jeff" Sipekc922d5f2006-12-08 02:36:33 -0800252 struct dm_path *path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Kiyoshi Ueda02ab8232009-06-22 10:12:27 +0100254 path = pg->ps.type->select_path(&pg->ps, &m->repeat_count, nr_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 if (!path)
256 return -ENXIO;
257
258 m->current_pgpath = path_to_pgpath(path);
259
260 if (m->current_pg != pg)
261 __switch_pg(m, m->current_pgpath);
262
263 return 0;
264}
265
Kiyoshi Ueda02ab8232009-06-22 10:12:27 +0100266static void __choose_pgpath(struct multipath *m, size_t nr_bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267{
268 struct priority_group *pg;
269 unsigned bypassed = 1;
270
271 if (!m->nr_valid_paths)
272 goto failed;
273
274 /* Were we instructed to switch PG? */
275 if (m->next_pg) {
276 pg = m->next_pg;
277 m->next_pg = NULL;
Kiyoshi Ueda02ab8232009-06-22 10:12:27 +0100278 if (!__choose_path_in_pg(m, pg, nr_bytes))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 return;
280 }
281
282 /* Don't change PG until it has no remaining paths */
Kiyoshi Ueda02ab8232009-06-22 10:12:27 +0100283 if (m->current_pg && !__choose_path_in_pg(m, m->current_pg, nr_bytes))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 return;
285
286 /*
287 * Loop through priority groups until we find a valid path.
288 * First time we skip PGs marked 'bypassed'.
289 * Second time we only try the ones we skipped.
290 */
291 do {
292 list_for_each_entry(pg, &m->priority_groups, list) {
293 if (pg->bypassed == bypassed)
294 continue;
Kiyoshi Ueda02ab8232009-06-22 10:12:27 +0100295 if (!__choose_path_in_pg(m, pg, nr_bytes))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 return;
297 }
298 } while (bypassed--);
299
300failed:
301 m->current_pgpath = NULL;
302 m->current_pg = NULL;
303}
304
Kiyoshi Ueda45e15722006-12-08 02:41:10 -0800305/*
306 * Check whether bios must be queued in the device-mapper core rather
307 * than here in the target.
308 *
309 * m->lock must be held on entry.
310 *
311 * If m->queue_if_no_path and m->saved_queue_if_no_path hold the
312 * same value then we are not between multipath_presuspend()
313 * and multipath_resume() calls and we have no need to check
314 * for the DMF_NOFLUSH_SUSPENDING flag.
315 */
316static int __must_push_back(struct multipath *m)
317{
318 return (m->queue_if_no_path != m->saved_queue_if_no_path &&
319 dm_noflush_suspending(m->ti));
320}
321
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +0100322static int map_io(struct multipath *m, struct request *clone,
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100323 struct dm_mpath_io *mpio, unsigned was_queued)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324{
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -0800325 int r = DM_MAPIO_REMAPPED;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +0100326 size_t nr_bytes = blk_rq_bytes(clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 unsigned long flags;
328 struct pgpath *pgpath;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +0100329 struct block_device *bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
331 spin_lock_irqsave(&m->lock, flags);
332
333 /* Do we need to select a new pgpath? */
334 if (!m->current_pgpath ||
335 (!m->queue_io && (m->repeat_count && --m->repeat_count == 0)))
Kiyoshi Ueda02ab8232009-06-22 10:12:27 +0100336 __choose_pgpath(m, nr_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
338 pgpath = m->current_pgpath;
339
340 if (was_queued)
341 m->queue_size--;
342
343 if ((pgpath && m->queue_io) ||
Alasdair G Kergon436d4102005-07-12 15:53:03 -0700344 (!pgpath && m->queue_if_no_path)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 /* Queue for the daemon to resubmit */
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +0100346 list_add_tail(&clone->queuelist, &m->queued_ios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 m->queue_size++;
Alasdair G Kergonc3cd4f62005-07-12 15:53:04 -0700348 if ((m->pg_init_required && !m->pg_init_in_progress) ||
349 !m->queue_io)
Alasdair G Kergonc5573082005-05-05 16:16:07 -0700350 queue_work(kmultipathd, &m->process_queued_ios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 pgpath = NULL;
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -0800352 r = DM_MAPIO_SUBMITTED;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +0100353 } else if (pgpath) {
354 bdev = pgpath->path.dev->bdev;
355 clone->q = bdev_get_queue(bdev);
356 clone->rq_disk = bdev->bd_disk;
357 } else if (__must_push_back(m))
Kiyoshi Ueda45e15722006-12-08 02:41:10 -0800358 r = DM_MAPIO_REQUEUE;
359 else
360 r = -EIO; /* Failed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
362 mpio->pgpath = pgpath;
Kiyoshi Ueda02ab8232009-06-22 10:12:27 +0100363 mpio->nr_bytes = nr_bytes;
364
365 if (r == DM_MAPIO_REMAPPED && pgpath->pg->ps.type->start_io)
366 pgpath->pg->ps.type->start_io(&pgpath->pg->ps, &pgpath->path,
367 nr_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
369 spin_unlock_irqrestore(&m->lock, flags);
370
371 return r;
372}
373
374/*
375 * If we run out of usable paths, should we queue I/O or error it?
376 */
Alasdair G Kergon485ef692005-09-27 21:45:45 -0700377static int queue_if_no_path(struct multipath *m, unsigned queue_if_no_path,
378 unsigned save_old_value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379{
380 unsigned long flags;
381
382 spin_lock_irqsave(&m->lock, flags);
383
Alasdair G Kergon485ef692005-09-27 21:45:45 -0700384 if (save_old_value)
385 m->saved_queue_if_no_path = m->queue_if_no_path;
386 else
387 m->saved_queue_if_no_path = queue_if_no_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 m->queue_if_no_path = queue_if_no_path;
Alasdair G Kergonc3cd4f62005-07-12 15:53:04 -0700389 if (!m->queue_if_no_path && m->queue_size)
Alasdair G Kergonc5573082005-05-05 16:16:07 -0700390 queue_work(kmultipathd, &m->process_queued_ios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
392 spin_unlock_irqrestore(&m->lock, flags);
393
394 return 0;
395}
396
397/*-----------------------------------------------------------------
398 * The multipath daemon is responsible for resubmitting queued ios.
399 *---------------------------------------------------------------*/
400
401static void dispatch_queued_ios(struct multipath *m)
402{
403 int r;
404 unsigned long flags;
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100405 struct dm_mpath_io *mpio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 union map_info *info;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +0100407 struct request *clone, *n;
408 LIST_HEAD(cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
410 spin_lock_irqsave(&m->lock, flags);
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +0100411 list_splice_init(&m->queued_ios, &cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 spin_unlock_irqrestore(&m->lock, flags);
413
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +0100414 list_for_each_entry_safe(clone, n, &cl, queuelist) {
415 list_del_init(&clone->queuelist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +0100417 info = dm_get_rq_mapinfo(clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 mpio = info->ptr;
419
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +0100420 r = map_io(m, clone, mpio, 1);
421 if (r < 0) {
422 mempool_free(mpio, m->mpio_pool);
423 dm_kill_unmapped_request(clone, r);
424 } else if (r == DM_MAPIO_REMAPPED)
425 dm_dispatch_request(clone);
426 else if (r == DM_MAPIO_REQUEUE) {
427 mempool_free(mpio, m->mpio_pool);
428 dm_requeue_unmapped_request(clone);
429 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 }
431}
432
David Howellsc4028952006-11-22 14:57:56 +0000433static void process_queued_ios(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
David Howellsc4028952006-11-22 14:57:56 +0000435 struct multipath *m =
436 container_of(work, struct multipath, process_queued_ios);
Chandra Seetharamane54f77d2009-06-22 10:12:12 +0100437 struct pgpath *pgpath = NULL, *tmp;
438 unsigned must_queue = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 unsigned long flags;
440
441 spin_lock_irqsave(&m->lock, flags);
442
Alasdair G Kergonc3cd4f62005-07-12 15:53:04 -0700443 if (!m->queue_size)
444 goto out;
445
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 if (!m->current_pgpath)
Kiyoshi Ueda02ab8232009-06-22 10:12:27 +0100447 __choose_pgpath(m, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
449 pgpath = m->current_pgpath;
450
Alasdair G Kergonc3cd4f62005-07-12 15:53:04 -0700451 if ((pgpath && !m->queue_io) ||
452 (!pgpath && !m->queue_if_no_path))
453 must_queue = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
Chandra Seetharamanb81aa1c2008-11-13 23:39:00 +0000455 if (m->pg_init_required && !m->pg_init_in_progress && pgpath) {
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100456 m->pg_init_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 m->pg_init_required = 0;
Chandra Seetharamane54f77d2009-06-22 10:12:12 +0100458 list_for_each_entry(tmp, &pgpath->pg->pgpaths, list) {
459 if (queue_work(kmpath_handlerd, &tmp->activate_path))
460 m->pg_init_in_progress++;
461 }
Alasdair G Kergonc3cd4f62005-07-12 15:53:04 -0700462 }
Alasdair G Kergonc3cd4f62005-07-12 15:53:04 -0700463out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 spin_unlock_irqrestore(&m->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 if (!must_queue)
466 dispatch_queued_ios(m);
467}
468
469/*
470 * An event is triggered whenever a path is taken out of use.
471 * Includes path failure and PG bypass.
472 */
David Howellsc4028952006-11-22 14:57:56 +0000473static void trigger_event(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
David Howellsc4028952006-11-22 14:57:56 +0000475 struct multipath *m =
476 container_of(work, struct multipath, trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
478 dm_table_event(m->ti->table);
479}
480
481/*-----------------------------------------------------------------
482 * Constructor/argument parsing:
483 * <#multipath feature args> [<arg>]*
484 * <#hw_handler args> [hw_handler [<arg>]*]
485 * <#priority groups>
486 * <initial priority group>
487 * [<selector> <#selector args> [<arg>]*
488 * <#paths> <#per-path selector args>
489 * [<path> [<arg>]* ]+ ]+
490 *---------------------------------------------------------------*/
491struct param {
492 unsigned min;
493 unsigned max;
494 char *error;
495};
496
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497static int read_param(struct param *param, char *str, unsigned *v, char **error)
498{
499 if (!str ||
500 (sscanf(str, "%u", v) != 1) ||
501 (*v < param->min) ||
502 (*v > param->max)) {
503 *error = param->error;
504 return -EINVAL;
505 }
506
507 return 0;
508}
509
510struct arg_set {
511 unsigned argc;
512 char **argv;
513};
514
515static char *shift(struct arg_set *as)
516{
517 char *r;
518
519 if (as->argc) {
520 as->argc--;
521 r = *as->argv;
522 as->argv++;
523 return r;
524 }
525
526 return NULL;
527}
528
529static void consume(struct arg_set *as, unsigned n)
530{
531 BUG_ON (as->argc < n);
532 as->argc -= n;
533 as->argv += n;
534}
535
536static int parse_path_selector(struct arg_set *as, struct priority_group *pg,
537 struct dm_target *ti)
538{
539 int r;
540 struct path_selector_type *pst;
541 unsigned ps_argc;
542
543 static struct param _params[] = {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700544 {0, 1024, "invalid number of path selector args"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 };
546
547 pst = dm_get_path_selector(shift(as));
548 if (!pst) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700549 ti->error = "unknown path selector type";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 return -EINVAL;
551 }
552
553 r = read_param(_params, shift(as), &ps_argc, &ti->error);
Mikulas Patocka371b2e32008-07-21 12:00:24 +0100554 if (r) {
555 dm_put_path_selector(pst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 return -EINVAL;
Mikulas Patocka371b2e32008-07-21 12:00:24 +0100557 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Mikulas Patocka0e0497c2009-06-22 10:08:02 +0100559 if (ps_argc > as->argc) {
560 dm_put_path_selector(pst);
561 ti->error = "not enough arguments for path selector";
562 return -EINVAL;
563 }
564
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 r = pst->create(&pg->ps, ps_argc, as->argv);
566 if (r) {
567 dm_put_path_selector(pst);
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700568 ti->error = "path selector constructor failed";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 return r;
570 }
571
572 pg->ps.type = pst;
573 consume(as, ps_argc);
574
575 return 0;
576}
577
578static struct pgpath *parse_path(struct arg_set *as, struct path_selector *ps,
579 struct dm_target *ti)
580{
581 int r;
582 struct pgpath *p;
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700583 struct multipath *m = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
585 /* we need at least a path arg */
586 if (as->argc < 1) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700587 ti->error = "no device given";
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100588 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 }
590
591 p = alloc_pgpath();
592 if (!p)
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100593 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
595 r = dm_get_device(ti, shift(as), ti->begin, ti->len,
596 dm_table_get_mode(ti->table), &p->path.dev);
597 if (r) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700598 ti->error = "error getting device";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 goto bad;
600 }
601
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700602 if (m->hw_handler_name) {
Hannes Reineckea0cf7ea2009-06-22 10:12:11 +0100603 struct request_queue *q = bdev_get_queue(p->path.dev->bdev);
604
605 r = scsi_dh_attach(q, m->hw_handler_name);
606 if (r == -EBUSY) {
607 /*
608 * Already attached to different hw_handler,
609 * try to reattach with correct one.
610 */
611 scsi_dh_detach(q);
612 r = scsi_dh_attach(q, m->hw_handler_name);
613 }
614
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700615 if (r < 0) {
Hannes Reineckea0cf7ea2009-06-22 10:12:11 +0100616 ti->error = "error attaching hardware handler";
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700617 dm_put_device(ti, p->path.dev);
618 goto bad;
619 }
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700620
621 if (m->hw_handler_params) {
622 r = scsi_dh_set_params(q, m->hw_handler_params);
623 if (r < 0) {
624 ti->error = "unable to set hardware "
625 "handler parameters";
626 scsi_dh_detach(q);
627 dm_put_device(ti, p->path.dev);
628 goto bad;
629 }
630 }
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700631 }
632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 r = ps->type->add_path(ps, &p->path, as->argc, as->argv, &ti->error);
634 if (r) {
635 dm_put_device(ti, p->path.dev);
636 goto bad;
637 }
638
639 return p;
640
641 bad:
642 free_pgpath(p);
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100643 return ERR_PTR(r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644}
645
646static struct priority_group *parse_priority_group(struct arg_set *as,
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700647 struct multipath *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648{
649 static struct param _params[] = {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700650 {1, 1024, "invalid number of paths"},
651 {0, 1024, "invalid number of selector args"}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 };
653
654 int r;
655 unsigned i, nr_selector_args, nr_params;
656 struct priority_group *pg;
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700657 struct dm_target *ti = m->ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
659 if (as->argc < 2) {
660 as->argc = 0;
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100661 ti->error = "not enough priority group arguments";
662 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 }
664
665 pg = alloc_priority_group();
666 if (!pg) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700667 ti->error = "couldn't allocate priority group";
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100668 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 }
670 pg->m = m;
671
672 r = parse_path_selector(as, pg, ti);
673 if (r)
674 goto bad;
675
676 /*
677 * read the paths
678 */
679 r = read_param(_params, shift(as), &pg->nr_pgpaths, &ti->error);
680 if (r)
681 goto bad;
682
683 r = read_param(_params + 1, shift(as), &nr_selector_args, &ti->error);
684 if (r)
685 goto bad;
686
687 nr_params = 1 + nr_selector_args;
688 for (i = 0; i < pg->nr_pgpaths; i++) {
689 struct pgpath *pgpath;
690 struct arg_set path_args;
691
Mikulas Patocka148acff2008-07-21 12:00:30 +0100692 if (as->argc < nr_params) {
693 ti->error = "not enough path parameters";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 goto bad;
Mikulas Patocka148acff2008-07-21 12:00:30 +0100695 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
697 path_args.argc = nr_params;
698 path_args.argv = as->argv;
699
700 pgpath = parse_path(&path_args, &pg->ps, ti);
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100701 if (IS_ERR(pgpath)) {
702 r = PTR_ERR(pgpath);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 goto bad;
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100704 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
706 pgpath->pg = pg;
707 list_add_tail(&pgpath->list, &pg->pgpaths);
708 consume(as, nr_params);
709 }
710
711 return pg;
712
713 bad:
714 free_priority_group(pg, ti);
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100715 return ERR_PTR(r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716}
717
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700718static int parse_hw_handler(struct arg_set *as, struct multipath *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 unsigned hw_argc;
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700721 int ret;
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700722 struct dm_target *ti = m->ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
724 static struct param _params[] = {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700725 {0, 1024, "invalid number of hardware handler args"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 };
727
Chandra Seetharamancfae5c92008-05-01 14:50:11 -0700728 if (read_param(_params, shift(as), &hw_argc, &ti->error))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 return -EINVAL;
730
731 if (!hw_argc)
732 return 0;
733
Mikulas Patockae094f4f2009-06-22 10:12:10 +0100734 if (hw_argc > as->argc) {
735 ti->error = "not enough arguments for hardware handler";
736 return -EINVAL;
737 }
738
Chandra Seetharamancfae5c92008-05-01 14:50:11 -0700739 m->hw_handler_name = kstrdup(shift(as), GFP_KERNEL);
740 request_module("scsi_dh_%s", m->hw_handler_name);
741 if (scsi_dh_handler_exist(m->hw_handler_name) == 0) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700742 ti->error = "unknown hardware handler type";
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700743 ret = -EINVAL;
744 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 }
Chandra Seetharaman14e98c52008-11-13 23:39:06 +0000746
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700747 if (hw_argc > 1) {
748 char *p;
749 int i, j, len = 4;
750
751 for (i = 0; i <= hw_argc - 2; i++)
752 len += strlen(as->argv[i]) + 1;
753 p = m->hw_handler_params = kzalloc(len, GFP_KERNEL);
754 if (!p) {
755 ti->error = "memory allocation failed";
756 ret = -ENOMEM;
757 goto fail;
758 }
759 j = sprintf(p, "%d", hw_argc - 1);
760 for (i = 0, p+=j+1; i <= hw_argc - 2; i++, p+=j+1)
761 j = sprintf(p, "%s", as->argv[i]);
762 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 consume(as, hw_argc - 1);
764
765 return 0;
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700766fail:
767 kfree(m->hw_handler_name);
768 m->hw_handler_name = NULL;
769 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770}
771
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700772static int parse_features(struct arg_set *as, struct multipath *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773{
774 int r;
775 unsigned argc;
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700776 struct dm_target *ti = m->ti;
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100777 const char *param_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
779 static struct param _params[] = {
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100780 {0, 3, "invalid number of feature args"},
781 {1, 50, "pg_init_retries must be between 1 and 50"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 };
783
784 r = read_param(_params, shift(as), &argc, &ti->error);
785 if (r)
786 return -EINVAL;
787
788 if (!argc)
789 return 0;
790
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100791 do {
792 param_name = shift(as);
793 argc--;
794
795 if (!strnicmp(param_name, MESG_STR("queue_if_no_path"))) {
796 r = queue_if_no_path(m, 1, 0);
797 continue;
798 }
799
800 if (!strnicmp(param_name, MESG_STR("pg_init_retries")) &&
801 (argc >= 1)) {
802 r = read_param(_params + 1, shift(as),
803 &m->pg_init_retries, &ti->error);
804 argc--;
805 continue;
806 }
807
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 ti->error = "Unrecognised multipath feature request";
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100809 r = -EINVAL;
810 } while (argc && !r);
811
812 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813}
814
815static int multipath_ctr(struct dm_target *ti, unsigned int argc,
816 char **argv)
817{
818 /* target parameters */
819 static struct param _params[] = {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700820 {1, 1024, "invalid number of priority groups"},
821 {1, 1024, "invalid initial priority group number"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 };
823
824 int r;
825 struct multipath *m;
826 struct arg_set as;
827 unsigned pg_count = 0;
828 unsigned next_pg_num;
829
830 as.argc = argc;
831 as.argv = argv;
832
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700833 m = alloc_multipath(ti);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 if (!m) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700835 ti->error = "can't allocate multipath";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 return -EINVAL;
837 }
838
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700839 r = parse_features(&as, m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 if (r)
841 goto bad;
842
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700843 r = parse_hw_handler(&as, m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 if (r)
845 goto bad;
846
847 r = read_param(_params, shift(&as), &m->nr_priority_groups, &ti->error);
848 if (r)
849 goto bad;
850
851 r = read_param(_params + 1, shift(&as), &next_pg_num, &ti->error);
852 if (r)
853 goto bad;
854
855 /* parse the priority groups */
856 while (as.argc) {
857 struct priority_group *pg;
858
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700859 pg = parse_priority_group(&as, m);
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100860 if (IS_ERR(pg)) {
861 r = PTR_ERR(pg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 goto bad;
863 }
864
865 m->nr_valid_paths += pg->nr_pgpaths;
866 list_add_tail(&pg->list, &m->priority_groups);
867 pg_count++;
868 pg->pg_num = pg_count;
869 if (!--next_pg_num)
870 m->next_pg = pg;
871 }
872
873 if (pg_count != m->nr_priority_groups) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700874 ti->error = "priority group count mismatch";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 r = -EINVAL;
876 goto bad;
877 }
878
Mikulas Patocka86279212009-06-22 10:12:24 +0100879 ti->num_flush_requests = 1;
880
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 return 0;
882
883 bad:
884 free_multipath(m);
885 return r;
886}
887
Kiyoshi Ueda6df400a2009-12-10 23:52:19 +0000888static void flush_multipath_work(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889{
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -0700890 flush_workqueue(kmpath_handlerd);
Alasdair G Kergona044d012005-07-12 15:53:02 -0700891 flush_workqueue(kmultipathd);
Mikulas Patocka53b351f2009-06-22 10:12:13 +0100892 flush_scheduled_work();
Kiyoshi Ueda6df400a2009-12-10 23:52:19 +0000893}
894
895static void multipath_dtr(struct dm_target *ti)
896{
897 struct multipath *m = ti->private;
898
899 flush_multipath_work();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 free_multipath(m);
901}
902
903/*
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +0100904 * Map cloned requests
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 */
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +0100906static int multipath_map(struct dm_target *ti, struct request *clone,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 union map_info *map_context)
908{
909 int r;
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100910 struct dm_mpath_io *mpio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 struct multipath *m = (struct multipath *) ti->private;
912
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +0100913 mpio = mempool_alloc(m->mpio_pool, GFP_ATOMIC);
914 if (!mpio)
915 /* ENOMEM, requeue */
916 return DM_MAPIO_REQUEUE;
917 memset(mpio, 0, sizeof(*mpio));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
919 map_context->ptr = mpio;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +0100920 clone->cmd_flags |= REQ_FAILFAST_TRANSPORT;
921 r = map_io(m, clone, mpio, 0);
Kiyoshi Ueda45e15722006-12-08 02:41:10 -0800922 if (r < 0 || r == DM_MAPIO_REQUEUE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 mempool_free(mpio, m->mpio_pool);
924
925 return r;
926}
927
928/*
929 * Take a path out of use.
930 */
931static int fail_path(struct pgpath *pgpath)
932{
933 unsigned long flags;
934 struct multipath *m = pgpath->pg->m;
935
936 spin_lock_irqsave(&m->lock, flags);
937
Kiyoshi Ueda66800732008-10-10 13:36:58 +0100938 if (!pgpath->is_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 goto out;
940
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700941 DMWARN("Failing path %s.", pgpath->path.dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
943 pgpath->pg->ps.type->fail_path(&pgpath->pg->ps, &pgpath->path);
Kiyoshi Ueda66800732008-10-10 13:36:58 +0100944 pgpath->is_active = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 pgpath->fail_count++;
946
947 m->nr_valid_paths--;
948
949 if (pgpath == m->current_pgpath)
950 m->current_pgpath = NULL;
951
Mike Andersonb15546f2007-10-19 22:48:02 +0100952 dm_path_uevent(DM_UEVENT_PATH_FAILED, m->ti,
953 pgpath->path.dev->name, m->nr_valid_paths);
954
Alasdair G Kergonfe9cf302009-01-06 03:05:13 +0000955 schedule_work(&m->trigger_event);
Mike Anderson224cb3e2008-08-29 09:36:09 +0200956 queue_work(kmultipathd, &pgpath->deactivate_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
958out:
959 spin_unlock_irqrestore(&m->lock, flags);
960
961 return 0;
962}
963
964/*
965 * Reinstate a previously-failed path
966 */
967static int reinstate_path(struct pgpath *pgpath)
968{
969 int r = 0;
970 unsigned long flags;
971 struct multipath *m = pgpath->pg->m;
972
973 spin_lock_irqsave(&m->lock, flags);
974
Kiyoshi Ueda66800732008-10-10 13:36:58 +0100975 if (pgpath->is_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 goto out;
977
Alasdair G Kergondef052d2008-07-21 12:00:31 +0100978 if (!pgpath->pg->ps.type->reinstate_path) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 DMWARN("Reinstate path not supported by path selector %s",
980 pgpath->pg->ps.type->name);
981 r = -EINVAL;
982 goto out;
983 }
984
985 r = pgpath->pg->ps.type->reinstate_path(&pgpath->pg->ps, &pgpath->path);
986 if (r)
987 goto out;
988
Kiyoshi Ueda66800732008-10-10 13:36:58 +0100989 pgpath->is_active = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
Chandra Seetharamane54f77d2009-06-22 10:12:12 +0100991 if (!m->nr_valid_paths++ && m->queue_size) {
992 m->current_pgpath = NULL;
Alasdair G Kergonc5573082005-05-05 16:16:07 -0700993 queue_work(kmultipathd, &m->process_queued_ios);
Chandra Seetharamane54f77d2009-06-22 10:12:12 +0100994 } else if (m->hw_handler_name && (m->current_pg == pgpath->pg)) {
995 if (queue_work(kmpath_handlerd, &pgpath->activate_path))
996 m->pg_init_in_progress++;
997 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
Mike Andersonb15546f2007-10-19 22:48:02 +0100999 dm_path_uevent(DM_UEVENT_PATH_REINSTATED, m->ti,
1000 pgpath->path.dev->name, m->nr_valid_paths);
1001
Alasdair G Kergonfe9cf302009-01-06 03:05:13 +00001002 schedule_work(&m->trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
1004out:
1005 spin_unlock_irqrestore(&m->lock, flags);
1006
1007 return r;
1008}
1009
1010/*
1011 * Fail or reinstate all paths that match the provided struct dm_dev.
1012 */
1013static int action_dev(struct multipath *m, struct dm_dev *dev,
1014 action_fn action)
1015{
1016 int r = 0;
1017 struct pgpath *pgpath;
1018 struct priority_group *pg;
1019
1020 list_for_each_entry(pg, &m->priority_groups, list) {
1021 list_for_each_entry(pgpath, &pg->pgpaths, list) {
1022 if (pgpath->path.dev == dev)
1023 r = action(pgpath);
1024 }
1025 }
1026
1027 return r;
1028}
1029
1030/*
1031 * Temporarily try to avoid having to use the specified PG
1032 */
1033static void bypass_pg(struct multipath *m, struct priority_group *pg,
1034 int bypassed)
1035{
1036 unsigned long flags;
1037
1038 spin_lock_irqsave(&m->lock, flags);
1039
1040 pg->bypassed = bypassed;
1041 m->current_pgpath = NULL;
1042 m->current_pg = NULL;
1043
1044 spin_unlock_irqrestore(&m->lock, flags);
1045
Alasdair G Kergonfe9cf302009-01-06 03:05:13 +00001046 schedule_work(&m->trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047}
1048
1049/*
1050 * Switch to using the specified PG from the next I/O that gets mapped
1051 */
1052static int switch_pg_num(struct multipath *m, const char *pgstr)
1053{
1054 struct priority_group *pg;
1055 unsigned pgnum;
1056 unsigned long flags;
1057
1058 if (!pgstr || (sscanf(pgstr, "%u", &pgnum) != 1) || !pgnum ||
1059 (pgnum > m->nr_priority_groups)) {
1060 DMWARN("invalid PG number supplied to switch_pg_num");
1061 return -EINVAL;
1062 }
1063
1064 spin_lock_irqsave(&m->lock, flags);
1065 list_for_each_entry(pg, &m->priority_groups, list) {
1066 pg->bypassed = 0;
1067 if (--pgnum)
1068 continue;
1069
1070 m->current_pgpath = NULL;
1071 m->current_pg = NULL;
1072 m->next_pg = pg;
1073 }
1074 spin_unlock_irqrestore(&m->lock, flags);
1075
Alasdair G Kergonfe9cf302009-01-06 03:05:13 +00001076 schedule_work(&m->trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 return 0;
1078}
1079
1080/*
1081 * Set/clear bypassed status of a PG.
1082 * PGs are numbered upwards from 1 in the order they were declared.
1083 */
1084static int bypass_pg_num(struct multipath *m, const char *pgstr, int bypassed)
1085{
1086 struct priority_group *pg;
1087 unsigned pgnum;
1088
1089 if (!pgstr || (sscanf(pgstr, "%u", &pgnum) != 1) || !pgnum ||
1090 (pgnum > m->nr_priority_groups)) {
1091 DMWARN("invalid PG number supplied to bypass_pg");
1092 return -EINVAL;
1093 }
1094
1095 list_for_each_entry(pg, &m->priority_groups, list) {
1096 if (!--pgnum)
1097 break;
1098 }
1099
1100 bypass_pg(m, pg, bypassed);
1101 return 0;
1102}
1103
1104/*
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001105 * Should we retry pg_init immediately?
1106 */
1107static int pg_init_limit_reached(struct multipath *m, struct pgpath *pgpath)
1108{
1109 unsigned long flags;
1110 int limit_reached = 0;
1111
1112 spin_lock_irqsave(&m->lock, flags);
1113
1114 if (m->pg_init_count <= m->pg_init_retries)
1115 m->pg_init_required = 1;
1116 else
1117 limit_reached = 1;
1118
1119 spin_unlock_irqrestore(&m->lock, flags);
1120
1121 return limit_reached;
1122}
1123
Chandra Seetharaman3ae31f62009-10-21 09:22:46 -07001124static void pg_init_done(void *data, int errors)
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001125{
Chandra Seetharaman3ae31f62009-10-21 09:22:46 -07001126 struct dm_path *path = data;
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001127 struct pgpath *pgpath = path_to_pgpath(path);
1128 struct priority_group *pg = pgpath->pg;
1129 struct multipath *m = pg->m;
1130 unsigned long flags;
1131
1132 /* device or driver problems */
1133 switch (errors) {
1134 case SCSI_DH_OK:
1135 break;
1136 case SCSI_DH_NOSYS:
1137 if (!m->hw_handler_name) {
1138 errors = 0;
1139 break;
1140 }
1141 DMERR("Cannot failover device because scsi_dh_%s was not "
1142 "loaded.", m->hw_handler_name);
1143 /*
1144 * Fail path for now, so we do not ping pong
1145 */
1146 fail_path(pgpath);
1147 break;
1148 case SCSI_DH_DEV_TEMP_BUSY:
1149 /*
1150 * Probably doing something like FW upgrade on the
1151 * controller so try the other pg.
1152 */
1153 bypass_pg(m, pg, 1);
1154 break;
1155 /* TODO: For SCSI_DH_RETRY we should wait a couple seconds */
1156 case SCSI_DH_RETRY:
1157 case SCSI_DH_IMM_RETRY:
1158 case SCSI_DH_RES_TEMP_UNAVAIL:
1159 if (pg_init_limit_reached(m, pgpath))
1160 fail_path(pgpath);
1161 errors = 0;
1162 break;
1163 default:
1164 /*
1165 * We probably do not want to fail the path for a device
1166 * error, but this is what the old dm did. In future
1167 * patches we can do more advanced handling.
1168 */
1169 fail_path(pgpath);
1170 }
1171
1172 spin_lock_irqsave(&m->lock, flags);
1173 if (errors) {
Chandra Seetharamane54f77d2009-06-22 10:12:12 +01001174 if (pgpath == m->current_pgpath) {
1175 DMERR("Could not failover device. Error %d.", errors);
1176 m->current_pgpath = NULL;
1177 m->current_pg = NULL;
1178 }
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001179 } else if (!m->pg_init_required) {
1180 m->queue_io = 0;
1181 pg->bypassed = 0;
1182 }
1183
Chandra Seetharamane54f77d2009-06-22 10:12:12 +01001184 m->pg_init_in_progress--;
1185 if (!m->pg_init_in_progress)
1186 queue_work(kmultipathd, &m->process_queued_ios);
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001187 spin_unlock_irqrestore(&m->lock, flags);
1188}
1189
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001190static void activate_path(struct work_struct *work)
1191{
Chandra Seetharamane54f77d2009-06-22 10:12:12 +01001192 struct pgpath *pgpath =
1193 container_of(work, struct pgpath, activate_path);
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001194
Chandra Seetharaman3ae31f62009-10-21 09:22:46 -07001195 scsi_dh_activate(bdev_get_queue(pgpath->path.dev->bdev),
1196 pg_init_done, &pgpath->path);
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001197}
1198
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199/*
1200 * end_io handling
1201 */
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001202static int do_end_io(struct multipath *m, struct request *clone,
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001203 int error, struct dm_mpath_io *mpio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204{
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001205 /*
1206 * We don't queue any clone request inside the multipath target
1207 * during end I/O handling, since those clone requests don't have
1208 * bio clones. If we queue them inside the multipath target,
1209 * we need to make bio clones, that requires memory allocation.
1210 * (See drivers/md/dm.c:end_clone_bio() about why the clone requests
1211 * don't have bio clones.)
1212 * Instead of queueing the clone request here, we queue the original
1213 * request into dm core, which will remake a clone request and
1214 * clone bios for it and resubmit it later.
1215 */
1216 int r = DM_ENDIO_REQUEUE;
Stefan Bader640eb3b2005-11-21 21:32:35 -08001217 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001219 if (!error && !clone->errors)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 return 0; /* I/O complete */
1221
Alasdair G Kergonf6a80ea2005-07-12 15:53:01 -07001222 if (error == -EOPNOTSUPP)
1223 return error;
1224
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001225 if (mpio->pgpath)
1226 fail_path(mpio->pgpath);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
Stefan Bader640eb3b2005-11-21 21:32:35 -08001228 spin_lock_irqsave(&m->lock, flags);
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001229 if (!m->nr_valid_paths && !m->queue_if_no_path && !__must_push_back(m))
1230 r = -EIO;
Stefan Bader640eb3b2005-11-21 21:32:35 -08001231 spin_unlock_irqrestore(&m->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001233 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234}
1235
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001236static int multipath_end_io(struct dm_target *ti, struct request *clone,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 int error, union map_info *map_context)
1238{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001239 struct multipath *m = ti->private;
1240 struct dm_mpath_io *mpio = map_context->ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 struct pgpath *pgpath = mpio->pgpath;
1242 struct path_selector *ps;
1243 int r;
1244
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001245 r = do_end_io(m, clone, error, mpio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 if (pgpath) {
1247 ps = &pgpath->pg->ps;
1248 if (ps->type->end_io)
Kiyoshi Ueda02ab8232009-06-22 10:12:27 +01001249 ps->type->end_io(ps, &pgpath->path, mpio->nr_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 }
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001251 mempool_free(mpio, m->mpio_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
1253 return r;
1254}
1255
1256/*
1257 * Suspend can't complete until all the I/O is processed so if
Alasdair G Kergon436d4102005-07-12 15:53:03 -07001258 * the last path fails we must error any remaining I/O.
1259 * Note that if the freeze_bdev fails while suspending, the
1260 * queue_if_no_path state is lost - userspace should reset it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 */
1262static void multipath_presuspend(struct dm_target *ti)
1263{
1264 struct multipath *m = (struct multipath *) ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
Alasdair G Kergon485ef692005-09-27 21:45:45 -07001266 queue_if_no_path(m, 0, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267}
1268
Kiyoshi Ueda6df400a2009-12-10 23:52:19 +00001269static void multipath_postsuspend(struct dm_target *ti)
1270{
1271 flush_multipath_work();
1272}
1273
Alasdair G Kergon436d4102005-07-12 15:53:03 -07001274/*
1275 * Restore the queue_if_no_path setting.
1276 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277static void multipath_resume(struct dm_target *ti)
1278{
1279 struct multipath *m = (struct multipath *) ti->private;
1280 unsigned long flags;
1281
1282 spin_lock_irqsave(&m->lock, flags);
Alasdair G Kergon436d4102005-07-12 15:53:03 -07001283 m->queue_if_no_path = m->saved_queue_if_no_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 spin_unlock_irqrestore(&m->lock, flags);
1285}
1286
1287/*
1288 * Info output has the following format:
1289 * num_multipath_feature_args [multipath_feature_args]*
1290 * num_handler_status_args [handler_status_args]*
1291 * num_groups init_group_number
1292 * [A|D|E num_ps_status_args [ps_status_args]*
1293 * num_paths num_selector_args
1294 * [path_dev A|F fail_count [selector_args]* ]+ ]+
1295 *
1296 * Table output has the following format (identical to the constructor string):
1297 * num_feature_args [features_args]*
1298 * num_handler_args hw_handler [hw_handler_args]*
1299 * num_groups init_group_number
1300 * [priority selector-name num_ps_args [ps_args]*
1301 * num_paths num_selector_args [path_dev [selector_args]* ]+ ]+
1302 */
1303static int multipath_status(struct dm_target *ti, status_type_t type,
1304 char *result, unsigned int maxlen)
1305{
1306 int sz = 0;
1307 unsigned long flags;
1308 struct multipath *m = (struct multipath *) ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 struct priority_group *pg;
1310 struct pgpath *p;
1311 unsigned pg_num;
1312 char state;
1313
1314 spin_lock_irqsave(&m->lock, flags);
1315
1316 /* Features */
1317 if (type == STATUSTYPE_INFO)
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001318 DMEMIT("2 %u %u ", m->queue_size, m->pg_init_count);
1319 else {
1320 DMEMIT("%u ", m->queue_if_no_path +
1321 (m->pg_init_retries > 0) * 2);
1322 if (m->queue_if_no_path)
1323 DMEMIT("queue_if_no_path ");
1324 if (m->pg_init_retries)
1325 DMEMIT("pg_init_retries %u ", m->pg_init_retries);
1326 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001328 if (!m->hw_handler_name || type == STATUSTYPE_INFO)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 DMEMIT("0 ");
1330 else
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001331 DMEMIT("1 %s ", m->hw_handler_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
1333 DMEMIT("%u ", m->nr_priority_groups);
1334
1335 if (m->next_pg)
1336 pg_num = m->next_pg->pg_num;
1337 else if (m->current_pg)
1338 pg_num = m->current_pg->pg_num;
1339 else
1340 pg_num = 1;
1341
1342 DMEMIT("%u ", pg_num);
1343
1344 switch (type) {
1345 case STATUSTYPE_INFO:
1346 list_for_each_entry(pg, &m->priority_groups, list) {
1347 if (pg->bypassed)
1348 state = 'D'; /* Disabled */
1349 else if (pg == m->current_pg)
1350 state = 'A'; /* Currently Active */
1351 else
1352 state = 'E'; /* Enabled */
1353
1354 DMEMIT("%c ", state);
1355
1356 if (pg->ps.type->status)
1357 sz += pg->ps.type->status(&pg->ps, NULL, type,
1358 result + sz,
1359 maxlen - sz);
1360 else
1361 DMEMIT("0 ");
1362
1363 DMEMIT("%u %u ", pg->nr_pgpaths,
1364 pg->ps.type->info_args);
1365
1366 list_for_each_entry(p, &pg->pgpaths, list) {
1367 DMEMIT("%s %s %u ", p->path.dev->name,
Kiyoshi Ueda66800732008-10-10 13:36:58 +01001368 p->is_active ? "A" : "F",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 p->fail_count);
1370 if (pg->ps.type->status)
1371 sz += pg->ps.type->status(&pg->ps,
1372 &p->path, type, result + sz,
1373 maxlen - sz);
1374 }
1375 }
1376 break;
1377
1378 case STATUSTYPE_TABLE:
1379 list_for_each_entry(pg, &m->priority_groups, list) {
1380 DMEMIT("%s ", pg->ps.type->name);
1381
1382 if (pg->ps.type->status)
1383 sz += pg->ps.type->status(&pg->ps, NULL, type,
1384 result + sz,
1385 maxlen - sz);
1386 else
1387 DMEMIT("0 ");
1388
1389 DMEMIT("%u %u ", pg->nr_pgpaths,
1390 pg->ps.type->table_args);
1391
1392 list_for_each_entry(p, &pg->pgpaths, list) {
1393 DMEMIT("%s ", p->path.dev->name);
1394 if (pg->ps.type->status)
1395 sz += pg->ps.type->status(&pg->ps,
1396 &p->path, type, result + sz,
1397 maxlen - sz);
1398 }
1399 }
1400 break;
1401 }
1402
1403 spin_unlock_irqrestore(&m->lock, flags);
1404
1405 return 0;
1406}
1407
1408static int multipath_message(struct dm_target *ti, unsigned argc, char **argv)
1409{
1410 int r;
1411 struct dm_dev *dev;
1412 struct multipath *m = (struct multipath *) ti->private;
1413 action_fn action;
1414
1415 if (argc == 1) {
1416 if (!strnicmp(argv[0], MESG_STR("queue_if_no_path")))
Alasdair G Kergon485ef692005-09-27 21:45:45 -07001417 return queue_if_no_path(m, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 else if (!strnicmp(argv[0], MESG_STR("fail_if_no_path")))
Alasdair G Kergon485ef692005-09-27 21:45:45 -07001419 return queue_if_no_path(m, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 }
1421
1422 if (argc != 2)
1423 goto error;
1424
1425 if (!strnicmp(argv[0], MESG_STR("disable_group")))
1426 return bypass_pg_num(m, argv[1], 1);
1427 else if (!strnicmp(argv[0], MESG_STR("enable_group")))
1428 return bypass_pg_num(m, argv[1], 0);
1429 else if (!strnicmp(argv[0], MESG_STR("switch_group")))
1430 return switch_pg_num(m, argv[1]);
1431 else if (!strnicmp(argv[0], MESG_STR("reinstate_path")))
1432 action = reinstate_path;
1433 else if (!strnicmp(argv[0], MESG_STR("fail_path")))
1434 action = fail_path;
1435 else
1436 goto error;
1437
1438 r = dm_get_device(ti, argv[1], ti->begin, ti->len,
1439 dm_table_get_mode(ti->table), &dev);
1440 if (r) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001441 DMWARN("message: error getting device %s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 argv[1]);
1443 return -EINVAL;
1444 }
1445
1446 r = action_dev(m, dev, action);
1447
1448 dm_put_device(ti, dev);
1449
1450 return r;
1451
1452error:
1453 DMWARN("Unrecognised multipath message received.");
1454 return -EINVAL;
1455}
1456
Al Viro647b3d02007-08-28 22:15:59 -04001457static int multipath_ioctl(struct dm_target *ti, unsigned int cmd,
Milan Broz9af4aa32006-10-03 01:15:20 -07001458 unsigned long arg)
1459{
1460 struct multipath *m = (struct multipath *) ti->private;
1461 struct block_device *bdev = NULL;
Al Viro633a08b2007-08-29 20:34:12 -04001462 fmode_t mode = 0;
Milan Broz9af4aa32006-10-03 01:15:20 -07001463 unsigned long flags;
1464 int r = 0;
1465
1466 spin_lock_irqsave(&m->lock, flags);
1467
1468 if (!m->current_pgpath)
Kiyoshi Ueda02ab8232009-06-22 10:12:27 +01001469 __choose_pgpath(m, 0);
Milan Broz9af4aa32006-10-03 01:15:20 -07001470
Milan Broze90dae12006-10-03 01:15:22 -07001471 if (m->current_pgpath) {
Milan Broz9af4aa32006-10-03 01:15:20 -07001472 bdev = m->current_pgpath->path.dev->bdev;
Al Viro633a08b2007-08-29 20:34:12 -04001473 mode = m->current_pgpath->path.dev->mode;
Milan Broze90dae12006-10-03 01:15:22 -07001474 }
Milan Broz9af4aa32006-10-03 01:15:20 -07001475
1476 if (m->queue_io)
1477 r = -EAGAIN;
1478 else if (!bdev)
1479 r = -EIO;
1480
1481 spin_unlock_irqrestore(&m->lock, flags);
1482
Al Viro633a08b2007-08-29 20:34:12 -04001483 return r ? : __blkdev_driver_ioctl(bdev, mode, cmd, arg);
Milan Broz9af4aa32006-10-03 01:15:20 -07001484}
1485
Mike Snitzeraf4874e2009-06-22 10:12:33 +01001486static int multipath_iterate_devices(struct dm_target *ti,
1487 iterate_devices_callout_fn fn, void *data)
1488{
1489 struct multipath *m = ti->private;
1490 struct priority_group *pg;
1491 struct pgpath *p;
1492 int ret = 0;
1493
1494 list_for_each_entry(pg, &m->priority_groups, list) {
1495 list_for_each_entry(p, &pg->pgpaths, list) {
Mike Snitzer5dea2712009-07-23 20:30:42 +01001496 ret = fn(ti, p->path.dev, ti->begin, ti->len, data);
Mike Snitzeraf4874e2009-06-22 10:12:33 +01001497 if (ret)
1498 goto out;
1499 }
1500 }
1501
1502out:
1503 return ret;
1504}
1505
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001506static int __pgpath_busy(struct pgpath *pgpath)
1507{
1508 struct request_queue *q = bdev_get_queue(pgpath->path.dev->bdev);
1509
1510 return dm_underlying_device_busy(q);
1511}
1512
1513/*
1514 * We return "busy", only when we can map I/Os but underlying devices
1515 * are busy (so even if we map I/Os now, the I/Os will wait on
1516 * the underlying queue).
1517 * In other words, if we want to kill I/Os or queue them inside us
1518 * due to map unavailability, we don't return "busy". Otherwise,
1519 * dm core won't give us the I/Os and we can't do what we want.
1520 */
1521static int multipath_busy(struct dm_target *ti)
1522{
1523 int busy = 0, has_active = 0;
1524 struct multipath *m = ti->private;
1525 struct priority_group *pg;
1526 struct pgpath *pgpath;
1527 unsigned long flags;
1528
1529 spin_lock_irqsave(&m->lock, flags);
1530
1531 /* Guess which priority_group will be used at next mapping time */
1532 if (unlikely(!m->current_pgpath && m->next_pg))
1533 pg = m->next_pg;
1534 else if (likely(m->current_pg))
1535 pg = m->current_pg;
1536 else
1537 /*
1538 * We don't know which pg will be used at next mapping time.
1539 * We don't call __choose_pgpath() here to avoid to trigger
1540 * pg_init just by busy checking.
1541 * So we don't know whether underlying devices we will be using
1542 * at next mapping time are busy or not. Just try mapping.
1543 */
1544 goto out;
1545
1546 /*
1547 * If there is one non-busy active path at least, the path selector
1548 * will be able to select it. So we consider such a pg as not busy.
1549 */
1550 busy = 1;
1551 list_for_each_entry(pgpath, &pg->pgpaths, list)
1552 if (pgpath->is_active) {
1553 has_active = 1;
1554
1555 if (!__pgpath_busy(pgpath)) {
1556 busy = 0;
1557 break;
1558 }
1559 }
1560
1561 if (!has_active)
1562 /*
1563 * No active path in this pg, so this pg won't be used and
1564 * the current_pg will be changed at next mapping time.
1565 * We need to try mapping to determine it.
1566 */
1567 busy = 0;
1568
1569out:
1570 spin_unlock_irqrestore(&m->lock, flags);
1571
1572 return busy;
1573}
1574
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575/*-----------------------------------------------------------------
1576 * Module setup
1577 *---------------------------------------------------------------*/
1578static struct target_type multipath_target = {
1579 .name = "multipath",
Kiyoshi Ueda6df400a2009-12-10 23:52:19 +00001580 .version = {1, 1, 1},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 .module = THIS_MODULE,
1582 .ctr = multipath_ctr,
1583 .dtr = multipath_dtr,
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001584 .map_rq = multipath_map,
1585 .rq_end_io = multipath_end_io,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 .presuspend = multipath_presuspend,
Kiyoshi Ueda6df400a2009-12-10 23:52:19 +00001587 .postsuspend = multipath_postsuspend,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 .resume = multipath_resume,
1589 .status = multipath_status,
1590 .message = multipath_message,
Milan Broz9af4aa32006-10-03 01:15:20 -07001591 .ioctl = multipath_ioctl,
Mike Snitzeraf4874e2009-06-22 10:12:33 +01001592 .iterate_devices = multipath_iterate_devices,
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001593 .busy = multipath_busy,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594};
1595
1596static int __init dm_multipath_init(void)
1597{
1598 int r;
1599
1600 /* allocate a slab for the dm_ios */
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001601 _mpio_cache = KMEM_CACHE(dm_mpath_io, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 if (!_mpio_cache)
1603 return -ENOMEM;
1604
1605 r = dm_register_target(&multipath_target);
1606 if (r < 0) {
Alasdair G Kergon0cd33122007-07-12 17:27:01 +01001607 DMERR("register failed %d", r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 kmem_cache_destroy(_mpio_cache);
1609 return -EINVAL;
1610 }
1611
Alasdair G Kergonc5573082005-05-05 16:16:07 -07001612 kmultipathd = create_workqueue("kmpathd");
1613 if (!kmultipathd) {
Alasdair G Kergon0cd33122007-07-12 17:27:01 +01001614 DMERR("failed to create workqueue kmpathd");
Alasdair G Kergonc5573082005-05-05 16:16:07 -07001615 dm_unregister_target(&multipath_target);
1616 kmem_cache_destroy(_mpio_cache);
1617 return -ENOMEM;
1618 }
1619
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001620 /*
1621 * A separate workqueue is used to handle the device handlers
1622 * to avoid overloading existing workqueue. Overloading the
1623 * old workqueue would also create a bottleneck in the
1624 * path of the storage hardware device activation.
1625 */
1626 kmpath_handlerd = create_singlethread_workqueue("kmpath_handlerd");
1627 if (!kmpath_handlerd) {
1628 DMERR("failed to create workqueue kmpath_handlerd");
1629 destroy_workqueue(kmultipathd);
1630 dm_unregister_target(&multipath_target);
1631 kmem_cache_destroy(_mpio_cache);
1632 return -ENOMEM;
1633 }
1634
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001635 DMINFO("version %u.%u.%u loaded",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 multipath_target.version[0], multipath_target.version[1],
1637 multipath_target.version[2]);
1638
1639 return r;
1640}
1641
1642static void __exit dm_multipath_exit(void)
1643{
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001644 destroy_workqueue(kmpath_handlerd);
Alasdair G Kergonc5573082005-05-05 16:16:07 -07001645 destroy_workqueue(kmultipathd);
1646
Mikulas Patocka10d3bd02009-01-06 03:04:58 +00001647 dm_unregister_target(&multipath_target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 kmem_cache_destroy(_mpio_cache);
1649}
1650
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651module_init(dm_multipath_init);
1652module_exit(dm_multipath_exit);
1653
1654MODULE_DESCRIPTION(DM_NAME " multipath target");
1655MODULE_AUTHOR("Sistina Software <dm-devel@redhat.com>");
1656MODULE_LICENSE("GPL");