blob: da2223aa727f86da02c13629e9f559163f858b9b [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 */
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +000072 wait_queue_head_t pg_init_wait; /* Wait for pg_init completion */
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74 unsigned nr_valid_paths; /* Total number of usable paths */
75 struct pgpath *current_pgpath;
76 struct priority_group *current_pg;
77 struct priority_group *next_pg; /* Switch to this PG if set */
78 unsigned repeat_count; /* I/Os left before calling PS again */
79
80 unsigned queue_io; /* Must we queue all I/O? */
81 unsigned queue_if_no_path; /* Queue I/O if last path fails? */
Alasdair G Kergon436d4102005-07-12 15:53:03 -070082 unsigned saved_queue_if_no_path;/* Saved state during suspension */
Dave Wysochanskic9e45582007-10-19 22:47:53 +010083 unsigned pg_init_retries; /* Number of times to retry pg_init */
84 unsigned pg_init_count; /* Number of times pg_init called */
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86 struct work_struct process_queued_ios;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +010087 struct list_head queued_ios;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 unsigned queue_size;
89
90 struct work_struct trigger_event;
91
92 /*
Alasdair G Kergon028867a2007-07-12 17:26:32 +010093 * We must use a mempool of dm_mpath_io structs so that we
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 * can resubmit bios on error.
95 */
96 mempool_t *mpio_pool;
Mike Anderson6380f262009-12-10 23:52:21 +000097
98 struct mutex work_mutex;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099};
100
101/*
102 * Context information attached to each bio we process.
103 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100104struct dm_mpath_io {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 struct pgpath *pgpath;
Kiyoshi Ueda02ab8232009-06-22 10:12:27 +0100106 size_t nr_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107};
108
109typedef int (*action_fn) (struct pgpath *pgpath);
110
111#define MIN_IOS 256 /* Mempool size */
112
Christoph Lametere18b8902006-12-06 20:33:20 -0800113static struct kmem_cache *_mpio_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -0700115static struct workqueue_struct *kmultipathd, *kmpath_handlerd;
David Howellsc4028952006-11-22 14:57:56 +0000116static void process_queued_ios(struct work_struct *work);
117static void trigger_event(struct work_struct *work);
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -0700118static void activate_path(struct work_struct *work);
Mike Anderson224cb3e2008-08-29 09:36:09 +0200119static void deactivate_path(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121
122/*-----------------------------------------------
123 * Allocation routines
124 *-----------------------------------------------*/
125
126static struct pgpath *alloc_pgpath(void)
127{
Micha³ Miros³awe69fae52006-10-03 01:15:34 -0700128 struct pgpath *pgpath = kzalloc(sizeof(*pgpath), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Mike Anderson224cb3e2008-08-29 09:36:09 +0200130 if (pgpath) {
Kiyoshi Ueda66800732008-10-10 13:36:58 +0100131 pgpath->is_active = 1;
Mike Anderson224cb3e2008-08-29 09:36:09 +0200132 INIT_WORK(&pgpath->deactivate_path, deactivate_path);
Chandra Seetharamane54f77d2009-06-22 10:12:12 +0100133 INIT_WORK(&pgpath->activate_path, activate_path);
Mike Anderson224cb3e2008-08-29 09:36:09 +0200134 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136 return pgpath;
137}
138
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100139static void free_pgpath(struct pgpath *pgpath)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
141 kfree(pgpath);
142}
143
Mike Anderson224cb3e2008-08-29 09:36:09 +0200144static void deactivate_path(struct work_struct *work)
145{
146 struct pgpath *pgpath =
147 container_of(work, struct pgpath, deactivate_path);
148
149 blk_abort_queue(pgpath->path.dev->bdev->bd_disk->queue);
150}
151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152static struct priority_group *alloc_priority_group(void)
153{
154 struct priority_group *pg;
155
Micha³ Miros³awe69fae52006-10-03 01:15:34 -0700156 pg = kzalloc(sizeof(*pg), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Micha³ Miros³awe69fae52006-10-03 01:15:34 -0700158 if (pg)
159 INIT_LIST_HEAD(&pg->pgpaths);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161 return pg;
162}
163
164static void free_pgpaths(struct list_head *pgpaths, struct dm_target *ti)
165{
166 struct pgpath *pgpath, *tmp;
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700167 struct multipath *m = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169 list_for_each_entry_safe(pgpath, tmp, pgpaths, list) {
170 list_del(&pgpath->list);
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700171 if (m->hw_handler_name)
172 scsi_dh_detach(bdev_get_queue(pgpath->path.dev->bdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 dm_put_device(ti, pgpath->path.dev);
174 free_pgpath(pgpath);
175 }
176}
177
178static void free_priority_group(struct priority_group *pg,
179 struct dm_target *ti)
180{
181 struct path_selector *ps = &pg->ps;
182
183 if (ps->type) {
184 ps->type->destroy(ps);
185 dm_put_path_selector(ps->type);
186 }
187
188 free_pgpaths(&pg->pgpaths, ti);
189 kfree(pg);
190}
191
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700192static struct multipath *alloc_multipath(struct dm_target *ti)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193{
194 struct multipath *m;
195
Micha³ Miros³awe69fae52006-10-03 01:15:34 -0700196 m = kzalloc(sizeof(*m), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 if (m) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 INIT_LIST_HEAD(&m->priority_groups);
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +0100199 INIT_LIST_HEAD(&m->queued_ios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 spin_lock_init(&m->lock);
201 m->queue_io = 1;
David Howellsc4028952006-11-22 14:57:56 +0000202 INIT_WORK(&m->process_queued_ios, process_queued_ios);
203 INIT_WORK(&m->trigger_event, trigger_event);
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +0000204 init_waitqueue_head(&m->pg_init_wait);
Mike Anderson6380f262009-12-10 23:52:21 +0000205 mutex_init(&m->work_mutex);
Matthew Dobson93d23412006-03-26 01:37:50 -0800206 m->mpio_pool = mempool_create_slab_pool(MIN_IOS, _mpio_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 if (!m->mpio_pool) {
208 kfree(m);
209 return NULL;
210 }
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700211 m->ti = ti;
212 ti->private = m;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 }
214
215 return m;
216}
217
218static void free_multipath(struct multipath *m)
219{
220 struct priority_group *pg, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222 list_for_each_entry_safe(pg, tmp, &m->priority_groups, list) {
223 list_del(&pg->list);
224 free_priority_group(pg, m->ti);
225 }
226
Chandra Seetharamancfae5c92008-05-01 14:50:11 -0700227 kfree(m->hw_handler_name);
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700228 kfree(m->hw_handler_params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 mempool_destroy(m->mpio_pool);
230 kfree(m);
231}
232
233
234/*-----------------------------------------------
235 * Path selection
236 *-----------------------------------------------*/
237
Kiyoshi Uedafb612642010-03-06 02:32:18 +0000238static void __pg_init_all_paths(struct multipath *m)
239{
240 struct pgpath *pgpath;
241
242 m->pg_init_count++;
243 m->pg_init_required = 0;
244 list_for_each_entry(pgpath, &m->current_pg->pgpaths, list) {
245 /* Skip failed paths */
246 if (!pgpath->is_active)
247 continue;
248 if (queue_work(kmpath_handlerd, &pgpath->activate_path))
249 m->pg_init_in_progress++;
250 }
251}
252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253static void __switch_pg(struct multipath *m, struct pgpath *pgpath)
254{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 m->current_pg = pgpath->pg;
256
257 /* Must we initialise the PG first, and queue I/O till it's ready? */
Chandra Seetharamancfae5c92008-05-01 14:50:11 -0700258 if (m->hw_handler_name) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 m->pg_init_required = 1;
260 m->queue_io = 1;
261 } else {
262 m->pg_init_required = 0;
263 m->queue_io = 0;
264 }
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100265
266 m->pg_init_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267}
268
Kiyoshi Ueda02ab8232009-06-22 10:12:27 +0100269static int __choose_path_in_pg(struct multipath *m, struct priority_group *pg,
270 size_t nr_bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271{
Josef "Jeff" Sipekc922d5f2006-12-08 02:36:33 -0800272 struct dm_path *path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
Kiyoshi Ueda02ab8232009-06-22 10:12:27 +0100274 path = pg->ps.type->select_path(&pg->ps, &m->repeat_count, nr_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 if (!path)
276 return -ENXIO;
277
278 m->current_pgpath = path_to_pgpath(path);
279
280 if (m->current_pg != pg)
281 __switch_pg(m, m->current_pgpath);
282
283 return 0;
284}
285
Kiyoshi Ueda02ab8232009-06-22 10:12:27 +0100286static void __choose_pgpath(struct multipath *m, size_t nr_bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287{
288 struct priority_group *pg;
289 unsigned bypassed = 1;
290
291 if (!m->nr_valid_paths)
292 goto failed;
293
294 /* Were we instructed to switch PG? */
295 if (m->next_pg) {
296 pg = m->next_pg;
297 m->next_pg = NULL;
Kiyoshi Ueda02ab8232009-06-22 10:12:27 +0100298 if (!__choose_path_in_pg(m, pg, nr_bytes))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 return;
300 }
301
302 /* Don't change PG until it has no remaining paths */
Kiyoshi Ueda02ab8232009-06-22 10:12:27 +0100303 if (m->current_pg && !__choose_path_in_pg(m, m->current_pg, nr_bytes))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 return;
305
306 /*
307 * Loop through priority groups until we find a valid path.
308 * First time we skip PGs marked 'bypassed'.
309 * Second time we only try the ones we skipped.
310 */
311 do {
312 list_for_each_entry(pg, &m->priority_groups, list) {
313 if (pg->bypassed == bypassed)
314 continue;
Kiyoshi Ueda02ab8232009-06-22 10:12:27 +0100315 if (!__choose_path_in_pg(m, pg, nr_bytes))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 return;
317 }
318 } while (bypassed--);
319
320failed:
321 m->current_pgpath = NULL;
322 m->current_pg = NULL;
323}
324
Kiyoshi Ueda45e15722006-12-08 02:41:10 -0800325/*
326 * Check whether bios must be queued in the device-mapper core rather
327 * than here in the target.
328 *
329 * m->lock must be held on entry.
330 *
331 * If m->queue_if_no_path and m->saved_queue_if_no_path hold the
332 * same value then we are not between multipath_presuspend()
333 * and multipath_resume() calls and we have no need to check
334 * for the DMF_NOFLUSH_SUSPENDING flag.
335 */
336static int __must_push_back(struct multipath *m)
337{
338 return (m->queue_if_no_path != m->saved_queue_if_no_path &&
339 dm_noflush_suspending(m->ti));
340}
341
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +0100342static int map_io(struct multipath *m, struct request *clone,
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100343 struct dm_mpath_io *mpio, unsigned was_queued)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344{
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -0800345 int r = DM_MAPIO_REMAPPED;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +0100346 size_t nr_bytes = blk_rq_bytes(clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 unsigned long flags;
348 struct pgpath *pgpath;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +0100349 struct block_device *bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
351 spin_lock_irqsave(&m->lock, flags);
352
353 /* Do we need to select a new pgpath? */
354 if (!m->current_pgpath ||
355 (!m->queue_io && (m->repeat_count && --m->repeat_count == 0)))
Kiyoshi Ueda02ab8232009-06-22 10:12:27 +0100356 __choose_pgpath(m, nr_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
358 pgpath = m->current_pgpath;
359
360 if (was_queued)
361 m->queue_size--;
362
363 if ((pgpath && m->queue_io) ||
Alasdair G Kergon436d4102005-07-12 15:53:03 -0700364 (!pgpath && m->queue_if_no_path)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 /* Queue for the daemon to resubmit */
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +0100366 list_add_tail(&clone->queuelist, &m->queued_ios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 m->queue_size++;
Alasdair G Kergonc3cd4f62005-07-12 15:53:04 -0700368 if ((m->pg_init_required && !m->pg_init_in_progress) ||
369 !m->queue_io)
Alasdair G Kergonc5573082005-05-05 16:16:07 -0700370 queue_work(kmultipathd, &m->process_queued_ios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 pgpath = NULL;
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -0800372 r = DM_MAPIO_SUBMITTED;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +0100373 } else if (pgpath) {
374 bdev = pgpath->path.dev->bdev;
375 clone->q = bdev_get_queue(bdev);
376 clone->rq_disk = bdev->bd_disk;
377 } else if (__must_push_back(m))
Kiyoshi Ueda45e15722006-12-08 02:41:10 -0800378 r = DM_MAPIO_REQUEUE;
379 else
380 r = -EIO; /* Failed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
382 mpio->pgpath = pgpath;
Kiyoshi Ueda02ab8232009-06-22 10:12:27 +0100383 mpio->nr_bytes = nr_bytes;
384
385 if (r == DM_MAPIO_REMAPPED && pgpath->pg->ps.type->start_io)
386 pgpath->pg->ps.type->start_io(&pgpath->pg->ps, &pgpath->path,
387 nr_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
389 spin_unlock_irqrestore(&m->lock, flags);
390
391 return r;
392}
393
394/*
395 * If we run out of usable paths, should we queue I/O or error it?
396 */
Alasdair G Kergon485ef692005-09-27 21:45:45 -0700397static int queue_if_no_path(struct multipath *m, unsigned queue_if_no_path,
398 unsigned save_old_value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399{
400 unsigned long flags;
401
402 spin_lock_irqsave(&m->lock, flags);
403
Alasdair G Kergon485ef692005-09-27 21:45:45 -0700404 if (save_old_value)
405 m->saved_queue_if_no_path = m->queue_if_no_path;
406 else
407 m->saved_queue_if_no_path = queue_if_no_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 m->queue_if_no_path = queue_if_no_path;
Alasdair G Kergonc3cd4f62005-07-12 15:53:04 -0700409 if (!m->queue_if_no_path && m->queue_size)
Alasdair G Kergonc5573082005-05-05 16:16:07 -0700410 queue_work(kmultipathd, &m->process_queued_ios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
412 spin_unlock_irqrestore(&m->lock, flags);
413
414 return 0;
415}
416
417/*-----------------------------------------------------------------
418 * The multipath daemon is responsible for resubmitting queued ios.
419 *---------------------------------------------------------------*/
420
421static void dispatch_queued_ios(struct multipath *m)
422{
423 int r;
424 unsigned long flags;
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100425 struct dm_mpath_io *mpio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 union map_info *info;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +0100427 struct request *clone, *n;
428 LIST_HEAD(cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
430 spin_lock_irqsave(&m->lock, flags);
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +0100431 list_splice_init(&m->queued_ios, &cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 spin_unlock_irqrestore(&m->lock, flags);
433
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +0100434 list_for_each_entry_safe(clone, n, &cl, queuelist) {
435 list_del_init(&clone->queuelist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +0100437 info = dm_get_rq_mapinfo(clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 mpio = info->ptr;
439
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +0100440 r = map_io(m, clone, mpio, 1);
441 if (r < 0) {
442 mempool_free(mpio, m->mpio_pool);
443 dm_kill_unmapped_request(clone, r);
444 } else if (r == DM_MAPIO_REMAPPED)
445 dm_dispatch_request(clone);
446 else if (r == DM_MAPIO_REQUEUE) {
447 mempool_free(mpio, m->mpio_pool);
448 dm_requeue_unmapped_request(clone);
449 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 }
451}
452
David Howellsc4028952006-11-22 14:57:56 +0000453static void process_queued_ios(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454{
David Howellsc4028952006-11-22 14:57:56 +0000455 struct multipath *m =
456 container_of(work, struct multipath, process_queued_ios);
Kiyoshi Uedafb612642010-03-06 02:32:18 +0000457 struct pgpath *pgpath = NULL;
Chandra Seetharamane54f77d2009-06-22 10:12:12 +0100458 unsigned must_queue = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 unsigned long flags;
460
461 spin_lock_irqsave(&m->lock, flags);
462
Alasdair G Kergonc3cd4f62005-07-12 15:53:04 -0700463 if (!m->queue_size)
464 goto out;
465
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 if (!m->current_pgpath)
Kiyoshi Ueda02ab8232009-06-22 10:12:27 +0100467 __choose_pgpath(m, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
469 pgpath = m->current_pgpath;
470
Alasdair G Kergonc3cd4f62005-07-12 15:53:04 -0700471 if ((pgpath && !m->queue_io) ||
472 (!pgpath && !m->queue_if_no_path))
473 must_queue = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Kiyoshi Uedafb612642010-03-06 02:32:18 +0000475 if (m->pg_init_required && !m->pg_init_in_progress && pgpath)
476 __pg_init_all_paths(m);
477
Alasdair G Kergonc3cd4f62005-07-12 15:53:04 -0700478out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 spin_unlock_irqrestore(&m->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 if (!must_queue)
481 dispatch_queued_ios(m);
482}
483
484/*
485 * An event is triggered whenever a path is taken out of use.
486 * Includes path failure and PG bypass.
487 */
David Howellsc4028952006-11-22 14:57:56 +0000488static void trigger_event(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489{
David Howellsc4028952006-11-22 14:57:56 +0000490 struct multipath *m =
491 container_of(work, struct multipath, trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
493 dm_table_event(m->ti->table);
494}
495
496/*-----------------------------------------------------------------
497 * Constructor/argument parsing:
498 * <#multipath feature args> [<arg>]*
499 * <#hw_handler args> [hw_handler [<arg>]*]
500 * <#priority groups>
501 * <initial priority group>
502 * [<selector> <#selector args> [<arg>]*
503 * <#paths> <#per-path selector args>
504 * [<path> [<arg>]* ]+ ]+
505 *---------------------------------------------------------------*/
506struct param {
507 unsigned min;
508 unsigned max;
509 char *error;
510};
511
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512static int read_param(struct param *param, char *str, unsigned *v, char **error)
513{
514 if (!str ||
515 (sscanf(str, "%u", v) != 1) ||
516 (*v < param->min) ||
517 (*v > param->max)) {
518 *error = param->error;
519 return -EINVAL;
520 }
521
522 return 0;
523}
524
525struct arg_set {
526 unsigned argc;
527 char **argv;
528};
529
530static char *shift(struct arg_set *as)
531{
532 char *r;
533
534 if (as->argc) {
535 as->argc--;
536 r = *as->argv;
537 as->argv++;
538 return r;
539 }
540
541 return NULL;
542}
543
544static void consume(struct arg_set *as, unsigned n)
545{
546 BUG_ON (as->argc < n);
547 as->argc -= n;
548 as->argv += n;
549}
550
551static int parse_path_selector(struct arg_set *as, struct priority_group *pg,
552 struct dm_target *ti)
553{
554 int r;
555 struct path_selector_type *pst;
556 unsigned ps_argc;
557
558 static struct param _params[] = {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700559 {0, 1024, "invalid number of path selector args"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 };
561
562 pst = dm_get_path_selector(shift(as));
563 if (!pst) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700564 ti->error = "unknown path selector type";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 return -EINVAL;
566 }
567
568 r = read_param(_params, shift(as), &ps_argc, &ti->error);
Mikulas Patocka371b2e32008-07-21 12:00:24 +0100569 if (r) {
570 dm_put_path_selector(pst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 return -EINVAL;
Mikulas Patocka371b2e32008-07-21 12:00:24 +0100572 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
Mikulas Patocka0e0497c2009-06-22 10:08:02 +0100574 if (ps_argc > as->argc) {
575 dm_put_path_selector(pst);
576 ti->error = "not enough arguments for path selector";
577 return -EINVAL;
578 }
579
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 r = pst->create(&pg->ps, ps_argc, as->argv);
581 if (r) {
582 dm_put_path_selector(pst);
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700583 ti->error = "path selector constructor failed";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 return r;
585 }
586
587 pg->ps.type = pst;
588 consume(as, ps_argc);
589
590 return 0;
591}
592
593static struct pgpath *parse_path(struct arg_set *as, struct path_selector *ps,
594 struct dm_target *ti)
595{
596 int r;
597 struct pgpath *p;
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700598 struct multipath *m = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
600 /* we need at least a path arg */
601 if (as->argc < 1) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700602 ti->error = "no device given";
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100603 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 }
605
606 p = alloc_pgpath();
607 if (!p)
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100608 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Nikanth Karthikesan8215d6e2010-03-06 02:32:27 +0000610 r = dm_get_device(ti, shift(as), dm_table_get_mode(ti->table),
611 &p->path.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 if (r) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700613 ti->error = "error getting device";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 goto bad;
615 }
616
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700617 if (m->hw_handler_name) {
Hannes Reineckea0cf7ea2009-06-22 10:12:11 +0100618 struct request_queue *q = bdev_get_queue(p->path.dev->bdev);
619
620 r = scsi_dh_attach(q, m->hw_handler_name);
621 if (r == -EBUSY) {
622 /*
623 * Already attached to different hw_handler,
624 * try to reattach with correct one.
625 */
626 scsi_dh_detach(q);
627 r = scsi_dh_attach(q, m->hw_handler_name);
628 }
629
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700630 if (r < 0) {
Hannes Reineckea0cf7ea2009-06-22 10:12:11 +0100631 ti->error = "error attaching hardware handler";
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700632 dm_put_device(ti, p->path.dev);
633 goto bad;
634 }
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700635
636 if (m->hw_handler_params) {
637 r = scsi_dh_set_params(q, m->hw_handler_params);
638 if (r < 0) {
639 ti->error = "unable to set hardware "
640 "handler parameters";
641 scsi_dh_detach(q);
642 dm_put_device(ti, p->path.dev);
643 goto bad;
644 }
645 }
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700646 }
647
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 r = ps->type->add_path(ps, &p->path, as->argc, as->argv, &ti->error);
649 if (r) {
650 dm_put_device(ti, p->path.dev);
651 goto bad;
652 }
653
654 return p;
655
656 bad:
657 free_pgpath(p);
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100658 return ERR_PTR(r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659}
660
661static struct priority_group *parse_priority_group(struct arg_set *as,
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700662 struct multipath *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663{
664 static struct param _params[] = {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700665 {1, 1024, "invalid number of paths"},
666 {0, 1024, "invalid number of selector args"}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 };
668
669 int r;
670 unsigned i, nr_selector_args, nr_params;
671 struct priority_group *pg;
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700672 struct dm_target *ti = m->ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
674 if (as->argc < 2) {
675 as->argc = 0;
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100676 ti->error = "not enough priority group arguments";
677 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 }
679
680 pg = alloc_priority_group();
681 if (!pg) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700682 ti->error = "couldn't allocate priority group";
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100683 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 }
685 pg->m = m;
686
687 r = parse_path_selector(as, pg, ti);
688 if (r)
689 goto bad;
690
691 /*
692 * read the paths
693 */
694 r = read_param(_params, shift(as), &pg->nr_pgpaths, &ti->error);
695 if (r)
696 goto bad;
697
698 r = read_param(_params + 1, shift(as), &nr_selector_args, &ti->error);
699 if (r)
700 goto bad;
701
702 nr_params = 1 + nr_selector_args;
703 for (i = 0; i < pg->nr_pgpaths; i++) {
704 struct pgpath *pgpath;
705 struct arg_set path_args;
706
Mikulas Patocka148acff2008-07-21 12:00:30 +0100707 if (as->argc < nr_params) {
708 ti->error = "not enough path parameters";
Alasdair G Kergon6bbf79a2010-08-12 04:13:49 +0100709 r = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 goto bad;
Mikulas Patocka148acff2008-07-21 12:00:30 +0100711 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
713 path_args.argc = nr_params;
714 path_args.argv = as->argv;
715
716 pgpath = parse_path(&path_args, &pg->ps, ti);
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100717 if (IS_ERR(pgpath)) {
718 r = PTR_ERR(pgpath);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 goto bad;
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100720 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
722 pgpath->pg = pg;
723 list_add_tail(&pgpath->list, &pg->pgpaths);
724 consume(as, nr_params);
725 }
726
727 return pg;
728
729 bad:
730 free_priority_group(pg, ti);
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100731 return ERR_PTR(r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732}
733
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700734static int parse_hw_handler(struct arg_set *as, struct multipath *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 unsigned hw_argc;
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700737 int ret;
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700738 struct dm_target *ti = m->ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
740 static struct param _params[] = {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700741 {0, 1024, "invalid number of hardware handler args"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 };
743
Chandra Seetharamancfae5c92008-05-01 14:50:11 -0700744 if (read_param(_params, shift(as), &hw_argc, &ti->error))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 return -EINVAL;
746
747 if (!hw_argc)
748 return 0;
749
Mikulas Patockae094f4f2009-06-22 10:12:10 +0100750 if (hw_argc > as->argc) {
751 ti->error = "not enough arguments for hardware handler";
752 return -EINVAL;
753 }
754
Chandra Seetharamancfae5c92008-05-01 14:50:11 -0700755 m->hw_handler_name = kstrdup(shift(as), GFP_KERNEL);
756 request_module("scsi_dh_%s", m->hw_handler_name);
757 if (scsi_dh_handler_exist(m->hw_handler_name) == 0) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700758 ti->error = "unknown hardware handler type";
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700759 ret = -EINVAL;
760 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 }
Chandra Seetharaman14e98c52008-11-13 23:39:06 +0000762
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700763 if (hw_argc > 1) {
764 char *p;
765 int i, j, len = 4;
766
767 for (i = 0; i <= hw_argc - 2; i++)
768 len += strlen(as->argv[i]) + 1;
769 p = m->hw_handler_params = kzalloc(len, GFP_KERNEL);
770 if (!p) {
771 ti->error = "memory allocation failed";
772 ret = -ENOMEM;
773 goto fail;
774 }
775 j = sprintf(p, "%d", hw_argc - 1);
776 for (i = 0, p+=j+1; i <= hw_argc - 2; i++, p+=j+1)
777 j = sprintf(p, "%s", as->argv[i]);
778 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 consume(as, hw_argc - 1);
780
781 return 0;
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700782fail:
783 kfree(m->hw_handler_name);
784 m->hw_handler_name = NULL;
785 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786}
787
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700788static int parse_features(struct arg_set *as, struct multipath *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789{
790 int r;
791 unsigned argc;
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700792 struct dm_target *ti = m->ti;
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100793 const char *param_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
795 static struct param _params[] = {
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100796 {0, 3, "invalid number of feature args"},
797 {1, 50, "pg_init_retries must be between 1 and 50"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 };
799
800 r = read_param(_params, shift(as), &argc, &ti->error);
801 if (r)
802 return -EINVAL;
803
804 if (!argc)
805 return 0;
806
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100807 do {
808 param_name = shift(as);
809 argc--;
810
811 if (!strnicmp(param_name, MESG_STR("queue_if_no_path"))) {
812 r = queue_if_no_path(m, 1, 0);
813 continue;
814 }
815
816 if (!strnicmp(param_name, MESG_STR("pg_init_retries")) &&
817 (argc >= 1)) {
818 r = read_param(_params + 1, shift(as),
819 &m->pg_init_retries, &ti->error);
820 argc--;
821 continue;
822 }
823
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 ti->error = "Unrecognised multipath feature request";
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100825 r = -EINVAL;
826 } while (argc && !r);
827
828 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829}
830
831static int multipath_ctr(struct dm_target *ti, unsigned int argc,
832 char **argv)
833{
834 /* target parameters */
835 static struct param _params[] = {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700836 {1, 1024, "invalid number of priority groups"},
837 {1, 1024, "invalid initial priority group number"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 };
839
840 int r;
841 struct multipath *m;
842 struct arg_set as;
843 unsigned pg_count = 0;
844 unsigned next_pg_num;
845
846 as.argc = argc;
847 as.argv = argv;
848
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700849 m = alloc_multipath(ti);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 if (!m) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700851 ti->error = "can't allocate multipath";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 return -EINVAL;
853 }
854
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700855 r = parse_features(&as, m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 if (r)
857 goto bad;
858
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700859 r = parse_hw_handler(&as, m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 if (r)
861 goto bad;
862
863 r = read_param(_params, shift(&as), &m->nr_priority_groups, &ti->error);
864 if (r)
865 goto bad;
866
867 r = read_param(_params + 1, shift(&as), &next_pg_num, &ti->error);
868 if (r)
869 goto bad;
870
871 /* parse the priority groups */
872 while (as.argc) {
873 struct priority_group *pg;
874
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700875 pg = parse_priority_group(&as, m);
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100876 if (IS_ERR(pg)) {
877 r = PTR_ERR(pg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 goto bad;
879 }
880
881 m->nr_valid_paths += pg->nr_pgpaths;
882 list_add_tail(&pg->list, &m->priority_groups);
883 pg_count++;
884 pg->pg_num = pg_count;
885 if (!--next_pg_num)
886 m->next_pg = pg;
887 }
888
889 if (pg_count != m->nr_priority_groups) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700890 ti->error = "priority group count mismatch";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 r = -EINVAL;
892 goto bad;
893 }
894
Mikulas Patocka86279212009-06-22 10:12:24 +0100895 ti->num_flush_requests = 1;
896
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 return 0;
898
899 bad:
900 free_multipath(m);
901 return r;
902}
903
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +0000904static void multipath_wait_for_pg_init_completion(struct multipath *m)
905{
906 DECLARE_WAITQUEUE(wait, current);
907 unsigned long flags;
908
909 add_wait_queue(&m->pg_init_wait, &wait);
910
911 while (1) {
912 set_current_state(TASK_UNINTERRUPTIBLE);
913
914 spin_lock_irqsave(&m->lock, flags);
915 if (!m->pg_init_in_progress) {
916 spin_unlock_irqrestore(&m->lock, flags);
917 break;
918 }
919 spin_unlock_irqrestore(&m->lock, flags);
920
921 io_schedule();
922 }
923 set_current_state(TASK_RUNNING);
924
925 remove_wait_queue(&m->pg_init_wait, &wait);
926}
927
928static void flush_multipath_work(struct multipath *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929{
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -0700930 flush_workqueue(kmpath_handlerd);
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +0000931 multipath_wait_for_pg_init_completion(m);
Alasdair G Kergona044d012005-07-12 15:53:02 -0700932 flush_workqueue(kmultipathd);
Mikulas Patocka53b351f2009-06-22 10:12:13 +0100933 flush_scheduled_work();
Kiyoshi Ueda6df400a2009-12-10 23:52:19 +0000934}
935
936static void multipath_dtr(struct dm_target *ti)
937{
938 struct multipath *m = ti->private;
939
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +0000940 flush_multipath_work(m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 free_multipath(m);
942}
943
944/*
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +0100945 * Map cloned requests
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 */
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +0100947static int multipath_map(struct dm_target *ti, struct request *clone,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 union map_info *map_context)
949{
950 int r;
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100951 struct dm_mpath_io *mpio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 struct multipath *m = (struct multipath *) ti->private;
953
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +0100954 mpio = mempool_alloc(m->mpio_pool, GFP_ATOMIC);
955 if (!mpio)
956 /* ENOMEM, requeue */
957 return DM_MAPIO_REQUEUE;
958 memset(mpio, 0, sizeof(*mpio));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
960 map_context->ptr = mpio;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +0100961 clone->cmd_flags |= REQ_FAILFAST_TRANSPORT;
962 r = map_io(m, clone, mpio, 0);
Kiyoshi Ueda45e15722006-12-08 02:41:10 -0800963 if (r < 0 || r == DM_MAPIO_REQUEUE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 mempool_free(mpio, m->mpio_pool);
965
966 return r;
967}
968
969/*
970 * Take a path out of use.
971 */
972static int fail_path(struct pgpath *pgpath)
973{
974 unsigned long flags;
975 struct multipath *m = pgpath->pg->m;
976
977 spin_lock_irqsave(&m->lock, flags);
978
Kiyoshi Ueda66800732008-10-10 13:36:58 +0100979 if (!pgpath->is_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 goto out;
981
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700982 DMWARN("Failing path %s.", pgpath->path.dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
984 pgpath->pg->ps.type->fail_path(&pgpath->pg->ps, &pgpath->path);
Kiyoshi Ueda66800732008-10-10 13:36:58 +0100985 pgpath->is_active = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 pgpath->fail_count++;
987
988 m->nr_valid_paths--;
989
990 if (pgpath == m->current_pgpath)
991 m->current_pgpath = NULL;
992
Mike Andersonb15546f2007-10-19 22:48:02 +0100993 dm_path_uevent(DM_UEVENT_PATH_FAILED, m->ti,
994 pgpath->path.dev->name, m->nr_valid_paths);
995
Alasdair G Kergonfe9cf302009-01-06 03:05:13 +0000996 schedule_work(&m->trigger_event);
Mike Anderson224cb3e2008-08-29 09:36:09 +0200997 queue_work(kmultipathd, &pgpath->deactivate_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
999out:
1000 spin_unlock_irqrestore(&m->lock, flags);
1001
1002 return 0;
1003}
1004
1005/*
1006 * Reinstate a previously-failed path
1007 */
1008static int reinstate_path(struct pgpath *pgpath)
1009{
1010 int r = 0;
1011 unsigned long flags;
1012 struct multipath *m = pgpath->pg->m;
1013
1014 spin_lock_irqsave(&m->lock, flags);
1015
Kiyoshi Ueda66800732008-10-10 13:36:58 +01001016 if (pgpath->is_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 goto out;
1018
Alasdair G Kergondef052d2008-07-21 12:00:31 +01001019 if (!pgpath->pg->ps.type->reinstate_path) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 DMWARN("Reinstate path not supported by path selector %s",
1021 pgpath->pg->ps.type->name);
1022 r = -EINVAL;
1023 goto out;
1024 }
1025
1026 r = pgpath->pg->ps.type->reinstate_path(&pgpath->pg->ps, &pgpath->path);
1027 if (r)
1028 goto out;
1029
Kiyoshi Ueda66800732008-10-10 13:36:58 +01001030 pgpath->is_active = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
Chandra Seetharamane54f77d2009-06-22 10:12:12 +01001032 if (!m->nr_valid_paths++ && m->queue_size) {
1033 m->current_pgpath = NULL;
Alasdair G Kergonc5573082005-05-05 16:16:07 -07001034 queue_work(kmultipathd, &m->process_queued_ios);
Chandra Seetharamane54f77d2009-06-22 10:12:12 +01001035 } else if (m->hw_handler_name && (m->current_pg == pgpath->pg)) {
1036 if (queue_work(kmpath_handlerd, &pgpath->activate_path))
1037 m->pg_init_in_progress++;
1038 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
Mike Andersonb15546f2007-10-19 22:48:02 +01001040 dm_path_uevent(DM_UEVENT_PATH_REINSTATED, m->ti,
1041 pgpath->path.dev->name, m->nr_valid_paths);
1042
Alasdair G Kergonfe9cf302009-01-06 03:05:13 +00001043 schedule_work(&m->trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
1045out:
1046 spin_unlock_irqrestore(&m->lock, flags);
1047
1048 return r;
1049}
1050
1051/*
1052 * Fail or reinstate all paths that match the provided struct dm_dev.
1053 */
1054static int action_dev(struct multipath *m, struct dm_dev *dev,
1055 action_fn action)
1056{
1057 int r = 0;
1058 struct pgpath *pgpath;
1059 struct priority_group *pg;
1060
1061 list_for_each_entry(pg, &m->priority_groups, list) {
1062 list_for_each_entry(pgpath, &pg->pgpaths, list) {
1063 if (pgpath->path.dev == dev)
1064 r = action(pgpath);
1065 }
1066 }
1067
1068 return r;
1069}
1070
1071/*
1072 * Temporarily try to avoid having to use the specified PG
1073 */
1074static void bypass_pg(struct multipath *m, struct priority_group *pg,
1075 int bypassed)
1076{
1077 unsigned long flags;
1078
1079 spin_lock_irqsave(&m->lock, flags);
1080
1081 pg->bypassed = bypassed;
1082 m->current_pgpath = NULL;
1083 m->current_pg = NULL;
1084
1085 spin_unlock_irqrestore(&m->lock, flags);
1086
Alasdair G Kergonfe9cf302009-01-06 03:05:13 +00001087 schedule_work(&m->trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088}
1089
1090/*
1091 * Switch to using the specified PG from the next I/O that gets mapped
1092 */
1093static int switch_pg_num(struct multipath *m, const char *pgstr)
1094{
1095 struct priority_group *pg;
1096 unsigned pgnum;
1097 unsigned long flags;
1098
1099 if (!pgstr || (sscanf(pgstr, "%u", &pgnum) != 1) || !pgnum ||
1100 (pgnum > m->nr_priority_groups)) {
1101 DMWARN("invalid PG number supplied to switch_pg_num");
1102 return -EINVAL;
1103 }
1104
1105 spin_lock_irqsave(&m->lock, flags);
1106 list_for_each_entry(pg, &m->priority_groups, list) {
1107 pg->bypassed = 0;
1108 if (--pgnum)
1109 continue;
1110
1111 m->current_pgpath = NULL;
1112 m->current_pg = NULL;
1113 m->next_pg = pg;
1114 }
1115 spin_unlock_irqrestore(&m->lock, flags);
1116
Alasdair G Kergonfe9cf302009-01-06 03:05:13 +00001117 schedule_work(&m->trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 return 0;
1119}
1120
1121/*
1122 * Set/clear bypassed status of a PG.
1123 * PGs are numbered upwards from 1 in the order they were declared.
1124 */
1125static int bypass_pg_num(struct multipath *m, const char *pgstr, int bypassed)
1126{
1127 struct priority_group *pg;
1128 unsigned pgnum;
1129
1130 if (!pgstr || (sscanf(pgstr, "%u", &pgnum) != 1) || !pgnum ||
1131 (pgnum > m->nr_priority_groups)) {
1132 DMWARN("invalid PG number supplied to bypass_pg");
1133 return -EINVAL;
1134 }
1135
1136 list_for_each_entry(pg, &m->priority_groups, list) {
1137 if (!--pgnum)
1138 break;
1139 }
1140
1141 bypass_pg(m, pg, bypassed);
1142 return 0;
1143}
1144
1145/*
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001146 * Should we retry pg_init immediately?
1147 */
1148static int pg_init_limit_reached(struct multipath *m, struct pgpath *pgpath)
1149{
1150 unsigned long flags;
1151 int limit_reached = 0;
1152
1153 spin_lock_irqsave(&m->lock, flags);
1154
1155 if (m->pg_init_count <= m->pg_init_retries)
1156 m->pg_init_required = 1;
1157 else
1158 limit_reached = 1;
1159
1160 spin_unlock_irqrestore(&m->lock, flags);
1161
1162 return limit_reached;
1163}
1164
Chandra Seetharaman3ae31f62009-10-21 09:22:46 -07001165static void pg_init_done(void *data, int errors)
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001166{
Moger, Babu83c0d5d2010-03-06 02:29:45 +00001167 struct pgpath *pgpath = data;
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001168 struct priority_group *pg = pgpath->pg;
1169 struct multipath *m = pg->m;
1170 unsigned long flags;
1171
1172 /* device or driver problems */
1173 switch (errors) {
1174 case SCSI_DH_OK:
1175 break;
1176 case SCSI_DH_NOSYS:
1177 if (!m->hw_handler_name) {
1178 errors = 0;
1179 break;
1180 }
Moger, Babuf7b934c2010-03-06 02:29:49 +00001181 DMERR("Could not failover the device: Handler scsi_dh_%s "
1182 "Error %d.", m->hw_handler_name, errors);
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001183 /*
1184 * Fail path for now, so we do not ping pong
1185 */
1186 fail_path(pgpath);
1187 break;
1188 case SCSI_DH_DEV_TEMP_BUSY:
1189 /*
1190 * Probably doing something like FW upgrade on the
1191 * controller so try the other pg.
1192 */
1193 bypass_pg(m, pg, 1);
1194 break;
1195 /* TODO: For SCSI_DH_RETRY we should wait a couple seconds */
1196 case SCSI_DH_RETRY:
1197 case SCSI_DH_IMM_RETRY:
1198 case SCSI_DH_RES_TEMP_UNAVAIL:
1199 if (pg_init_limit_reached(m, pgpath))
1200 fail_path(pgpath);
1201 errors = 0;
1202 break;
1203 default:
1204 /*
1205 * We probably do not want to fail the path for a device
1206 * error, but this is what the old dm did. In future
1207 * patches we can do more advanced handling.
1208 */
1209 fail_path(pgpath);
1210 }
1211
1212 spin_lock_irqsave(&m->lock, flags);
1213 if (errors) {
Chandra Seetharamane54f77d2009-06-22 10:12:12 +01001214 if (pgpath == m->current_pgpath) {
1215 DMERR("Could not failover device. Error %d.", errors);
1216 m->current_pgpath = NULL;
1217 m->current_pg = NULL;
1218 }
Kiyoshi Uedad0259bf2010-03-06 02:30:02 +00001219 } else if (!m->pg_init_required)
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001220 pg->bypassed = 0;
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001221
Kiyoshi Uedad0259bf2010-03-06 02:30:02 +00001222 if (--m->pg_init_in_progress)
1223 /* Activations of other paths are still on going */
1224 goto out;
1225
1226 if (!m->pg_init_required)
1227 m->queue_io = 0;
1228
1229 queue_work(kmultipathd, &m->process_queued_ios);
1230
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001231 /*
1232 * Wake up any thread waiting to suspend.
1233 */
1234 wake_up(&m->pg_init_wait);
1235
Kiyoshi Uedad0259bf2010-03-06 02:30:02 +00001236out:
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001237 spin_unlock_irqrestore(&m->lock, flags);
1238}
1239
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001240static void activate_path(struct work_struct *work)
1241{
Chandra Seetharamane54f77d2009-06-22 10:12:12 +01001242 struct pgpath *pgpath =
1243 container_of(work, struct pgpath, activate_path);
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001244
Chandra Seetharaman3ae31f62009-10-21 09:22:46 -07001245 scsi_dh_activate(bdev_get_queue(pgpath->path.dev->bdev),
Moger, Babu83c0d5d2010-03-06 02:29:45 +00001246 pg_init_done, pgpath);
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001247}
1248
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249/*
1250 * end_io handling
1251 */
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001252static int do_end_io(struct multipath *m, struct request *clone,
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001253 int error, struct dm_mpath_io *mpio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254{
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001255 /*
1256 * We don't queue any clone request inside the multipath target
1257 * during end I/O handling, since those clone requests don't have
1258 * bio clones. If we queue them inside the multipath target,
1259 * we need to make bio clones, that requires memory allocation.
1260 * (See drivers/md/dm.c:end_clone_bio() about why the clone requests
1261 * don't have bio clones.)
1262 * Instead of queueing the clone request here, we queue the original
1263 * request into dm core, which will remake a clone request and
1264 * clone bios for it and resubmit it later.
1265 */
1266 int r = DM_ENDIO_REQUEUE;
Stefan Bader640eb3b2005-11-21 21:32:35 -08001267 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001269 if (!error && !clone->errors)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 return 0; /* I/O complete */
1271
Alasdair G Kergonf6a80ea2005-07-12 15:53:01 -07001272 if (error == -EOPNOTSUPP)
1273 return error;
1274
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001275 if (mpio->pgpath)
1276 fail_path(mpio->pgpath);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
Stefan Bader640eb3b2005-11-21 21:32:35 -08001278 spin_lock_irqsave(&m->lock, flags);
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001279 if (!m->nr_valid_paths && !m->queue_if_no_path && !__must_push_back(m))
1280 r = -EIO;
Stefan Bader640eb3b2005-11-21 21:32:35 -08001281 spin_unlock_irqrestore(&m->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001283 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284}
1285
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001286static int multipath_end_io(struct dm_target *ti, struct request *clone,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 int error, union map_info *map_context)
1288{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001289 struct multipath *m = ti->private;
1290 struct dm_mpath_io *mpio = map_context->ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 struct pgpath *pgpath = mpio->pgpath;
1292 struct path_selector *ps;
1293 int r;
1294
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001295 r = do_end_io(m, clone, error, mpio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 if (pgpath) {
1297 ps = &pgpath->pg->ps;
1298 if (ps->type->end_io)
Kiyoshi Ueda02ab8232009-06-22 10:12:27 +01001299 ps->type->end_io(ps, &pgpath->path, mpio->nr_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 }
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001301 mempool_free(mpio, m->mpio_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
1303 return r;
1304}
1305
1306/*
1307 * Suspend can't complete until all the I/O is processed so if
Alasdair G Kergon436d4102005-07-12 15:53:03 -07001308 * the last path fails we must error any remaining I/O.
1309 * Note that if the freeze_bdev fails while suspending, the
1310 * queue_if_no_path state is lost - userspace should reset it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 */
1312static void multipath_presuspend(struct dm_target *ti)
1313{
1314 struct multipath *m = (struct multipath *) ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
Alasdair G Kergon485ef692005-09-27 21:45:45 -07001316 queue_if_no_path(m, 0, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317}
1318
Kiyoshi Ueda6df400a2009-12-10 23:52:19 +00001319static void multipath_postsuspend(struct dm_target *ti)
1320{
Mike Anderson6380f262009-12-10 23:52:21 +00001321 struct multipath *m = ti->private;
1322
1323 mutex_lock(&m->work_mutex);
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001324 flush_multipath_work(m);
Mike Anderson6380f262009-12-10 23:52:21 +00001325 mutex_unlock(&m->work_mutex);
Kiyoshi Ueda6df400a2009-12-10 23:52:19 +00001326}
1327
Alasdair G Kergon436d4102005-07-12 15:53:03 -07001328/*
1329 * Restore the queue_if_no_path setting.
1330 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331static void multipath_resume(struct dm_target *ti)
1332{
1333 struct multipath *m = (struct multipath *) ti->private;
1334 unsigned long flags;
1335
1336 spin_lock_irqsave(&m->lock, flags);
Alasdair G Kergon436d4102005-07-12 15:53:03 -07001337 m->queue_if_no_path = m->saved_queue_if_no_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 spin_unlock_irqrestore(&m->lock, flags);
1339}
1340
1341/*
1342 * Info output has the following format:
1343 * num_multipath_feature_args [multipath_feature_args]*
1344 * num_handler_status_args [handler_status_args]*
1345 * num_groups init_group_number
1346 * [A|D|E num_ps_status_args [ps_status_args]*
1347 * num_paths num_selector_args
1348 * [path_dev A|F fail_count [selector_args]* ]+ ]+
1349 *
1350 * Table output has the following format (identical to the constructor string):
1351 * num_feature_args [features_args]*
1352 * num_handler_args hw_handler [hw_handler_args]*
1353 * num_groups init_group_number
1354 * [priority selector-name num_ps_args [ps_args]*
1355 * num_paths num_selector_args [path_dev [selector_args]* ]+ ]+
1356 */
1357static int multipath_status(struct dm_target *ti, status_type_t type,
1358 char *result, unsigned int maxlen)
1359{
1360 int sz = 0;
1361 unsigned long flags;
1362 struct multipath *m = (struct multipath *) ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 struct priority_group *pg;
1364 struct pgpath *p;
1365 unsigned pg_num;
1366 char state;
1367
1368 spin_lock_irqsave(&m->lock, flags);
1369
1370 /* Features */
1371 if (type == STATUSTYPE_INFO)
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001372 DMEMIT("2 %u %u ", m->queue_size, m->pg_init_count);
1373 else {
1374 DMEMIT("%u ", m->queue_if_no_path +
1375 (m->pg_init_retries > 0) * 2);
1376 if (m->queue_if_no_path)
1377 DMEMIT("queue_if_no_path ");
1378 if (m->pg_init_retries)
1379 DMEMIT("pg_init_retries %u ", m->pg_init_retries);
1380 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001382 if (!m->hw_handler_name || type == STATUSTYPE_INFO)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 DMEMIT("0 ");
1384 else
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001385 DMEMIT("1 %s ", m->hw_handler_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
1387 DMEMIT("%u ", m->nr_priority_groups);
1388
1389 if (m->next_pg)
1390 pg_num = m->next_pg->pg_num;
1391 else if (m->current_pg)
1392 pg_num = m->current_pg->pg_num;
1393 else
1394 pg_num = 1;
1395
1396 DMEMIT("%u ", pg_num);
1397
1398 switch (type) {
1399 case STATUSTYPE_INFO:
1400 list_for_each_entry(pg, &m->priority_groups, list) {
1401 if (pg->bypassed)
1402 state = 'D'; /* Disabled */
1403 else if (pg == m->current_pg)
1404 state = 'A'; /* Currently Active */
1405 else
1406 state = 'E'; /* Enabled */
1407
1408 DMEMIT("%c ", state);
1409
1410 if (pg->ps.type->status)
1411 sz += pg->ps.type->status(&pg->ps, NULL, type,
1412 result + sz,
1413 maxlen - sz);
1414 else
1415 DMEMIT("0 ");
1416
1417 DMEMIT("%u %u ", pg->nr_pgpaths,
1418 pg->ps.type->info_args);
1419
1420 list_for_each_entry(p, &pg->pgpaths, list) {
1421 DMEMIT("%s %s %u ", p->path.dev->name,
Kiyoshi Ueda66800732008-10-10 13:36:58 +01001422 p->is_active ? "A" : "F",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 p->fail_count);
1424 if (pg->ps.type->status)
1425 sz += pg->ps.type->status(&pg->ps,
1426 &p->path, type, result + sz,
1427 maxlen - sz);
1428 }
1429 }
1430 break;
1431
1432 case STATUSTYPE_TABLE:
1433 list_for_each_entry(pg, &m->priority_groups, list) {
1434 DMEMIT("%s ", pg->ps.type->name);
1435
1436 if (pg->ps.type->status)
1437 sz += pg->ps.type->status(&pg->ps, NULL, type,
1438 result + sz,
1439 maxlen - sz);
1440 else
1441 DMEMIT("0 ");
1442
1443 DMEMIT("%u %u ", pg->nr_pgpaths,
1444 pg->ps.type->table_args);
1445
1446 list_for_each_entry(p, &pg->pgpaths, list) {
1447 DMEMIT("%s ", p->path.dev->name);
1448 if (pg->ps.type->status)
1449 sz += pg->ps.type->status(&pg->ps,
1450 &p->path, type, result + sz,
1451 maxlen - sz);
1452 }
1453 }
1454 break;
1455 }
1456
1457 spin_unlock_irqrestore(&m->lock, flags);
1458
1459 return 0;
1460}
1461
1462static int multipath_message(struct dm_target *ti, unsigned argc, char **argv)
1463{
Mike Anderson6380f262009-12-10 23:52:21 +00001464 int r = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 struct dm_dev *dev;
1466 struct multipath *m = (struct multipath *) ti->private;
1467 action_fn action;
1468
Mike Anderson6380f262009-12-10 23:52:21 +00001469 mutex_lock(&m->work_mutex);
1470
Kiyoshi Uedac2f3d242009-12-10 23:52:27 +00001471 if (dm_suspended(ti)) {
1472 r = -EBUSY;
1473 goto out;
1474 }
1475
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 if (argc == 1) {
Mike Anderson6380f262009-12-10 23:52:21 +00001477 if (!strnicmp(argv[0], MESG_STR("queue_if_no_path"))) {
1478 r = queue_if_no_path(m, 1, 0);
1479 goto out;
1480 } else if (!strnicmp(argv[0], MESG_STR("fail_if_no_path"))) {
1481 r = queue_if_no_path(m, 0, 0);
1482 goto out;
1483 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 }
1485
Mike Anderson6380f262009-12-10 23:52:21 +00001486 if (argc != 2) {
1487 DMWARN("Unrecognised multipath message received.");
1488 goto out;
1489 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490
Mike Anderson6380f262009-12-10 23:52:21 +00001491 if (!strnicmp(argv[0], MESG_STR("disable_group"))) {
1492 r = bypass_pg_num(m, argv[1], 1);
1493 goto out;
1494 } else if (!strnicmp(argv[0], MESG_STR("enable_group"))) {
1495 r = bypass_pg_num(m, argv[1], 0);
1496 goto out;
1497 } else if (!strnicmp(argv[0], MESG_STR("switch_group"))) {
1498 r = switch_pg_num(m, argv[1]);
1499 goto out;
1500 } else if (!strnicmp(argv[0], MESG_STR("reinstate_path")))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 action = reinstate_path;
1502 else if (!strnicmp(argv[0], MESG_STR("fail_path")))
1503 action = fail_path;
Mike Anderson6380f262009-12-10 23:52:21 +00001504 else {
1505 DMWARN("Unrecognised multipath message received.");
1506 goto out;
1507 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508
Nikanth Karthikesan8215d6e2010-03-06 02:32:27 +00001509 r = dm_get_device(ti, argv[1], dm_table_get_mode(ti->table), &dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 if (r) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001511 DMWARN("message: error getting device %s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 argv[1]);
Mike Anderson6380f262009-12-10 23:52:21 +00001513 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 }
1515
1516 r = action_dev(m, dev, action);
1517
1518 dm_put_device(ti, dev);
1519
Mike Anderson6380f262009-12-10 23:52:21 +00001520out:
1521 mutex_unlock(&m->work_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523}
1524
Al Viro647b3d02007-08-28 22:15:59 -04001525static int multipath_ioctl(struct dm_target *ti, unsigned int cmd,
Milan Broz9af4aa32006-10-03 01:15:20 -07001526 unsigned long arg)
1527{
1528 struct multipath *m = (struct multipath *) ti->private;
1529 struct block_device *bdev = NULL;
Al Viro633a08b2007-08-29 20:34:12 -04001530 fmode_t mode = 0;
Milan Broz9af4aa32006-10-03 01:15:20 -07001531 unsigned long flags;
1532 int r = 0;
1533
1534 spin_lock_irqsave(&m->lock, flags);
1535
1536 if (!m->current_pgpath)
Kiyoshi Ueda02ab8232009-06-22 10:12:27 +01001537 __choose_pgpath(m, 0);
Milan Broz9af4aa32006-10-03 01:15:20 -07001538
Milan Broze90dae12006-10-03 01:15:22 -07001539 if (m->current_pgpath) {
Milan Broz9af4aa32006-10-03 01:15:20 -07001540 bdev = m->current_pgpath->path.dev->bdev;
Al Viro633a08b2007-08-29 20:34:12 -04001541 mode = m->current_pgpath->path.dev->mode;
Milan Broze90dae12006-10-03 01:15:22 -07001542 }
Milan Broz9af4aa32006-10-03 01:15:20 -07001543
1544 if (m->queue_io)
1545 r = -EAGAIN;
1546 else if (!bdev)
1547 r = -EIO;
1548
1549 spin_unlock_irqrestore(&m->lock, flags);
1550
Al Viro633a08b2007-08-29 20:34:12 -04001551 return r ? : __blkdev_driver_ioctl(bdev, mode, cmd, arg);
Milan Broz9af4aa32006-10-03 01:15:20 -07001552}
1553
Mike Snitzeraf4874e2009-06-22 10:12:33 +01001554static int multipath_iterate_devices(struct dm_target *ti,
1555 iterate_devices_callout_fn fn, void *data)
1556{
1557 struct multipath *m = ti->private;
1558 struct priority_group *pg;
1559 struct pgpath *p;
1560 int ret = 0;
1561
1562 list_for_each_entry(pg, &m->priority_groups, list) {
1563 list_for_each_entry(p, &pg->pgpaths, list) {
Mike Snitzer5dea2712009-07-23 20:30:42 +01001564 ret = fn(ti, p->path.dev, ti->begin, ti->len, data);
Mike Snitzeraf4874e2009-06-22 10:12:33 +01001565 if (ret)
1566 goto out;
1567 }
1568 }
1569
1570out:
1571 return ret;
1572}
1573
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001574static int __pgpath_busy(struct pgpath *pgpath)
1575{
1576 struct request_queue *q = bdev_get_queue(pgpath->path.dev->bdev);
1577
1578 return dm_underlying_device_busy(q);
1579}
1580
1581/*
1582 * We return "busy", only when we can map I/Os but underlying devices
1583 * are busy (so even if we map I/Os now, the I/Os will wait on
1584 * the underlying queue).
1585 * In other words, if we want to kill I/Os or queue them inside us
1586 * due to map unavailability, we don't return "busy". Otherwise,
1587 * dm core won't give us the I/Os and we can't do what we want.
1588 */
1589static int multipath_busy(struct dm_target *ti)
1590{
1591 int busy = 0, has_active = 0;
1592 struct multipath *m = ti->private;
1593 struct priority_group *pg;
1594 struct pgpath *pgpath;
1595 unsigned long flags;
1596
1597 spin_lock_irqsave(&m->lock, flags);
1598
1599 /* Guess which priority_group will be used at next mapping time */
1600 if (unlikely(!m->current_pgpath && m->next_pg))
1601 pg = m->next_pg;
1602 else if (likely(m->current_pg))
1603 pg = m->current_pg;
1604 else
1605 /*
1606 * We don't know which pg will be used at next mapping time.
1607 * We don't call __choose_pgpath() here to avoid to trigger
1608 * pg_init just by busy checking.
1609 * So we don't know whether underlying devices we will be using
1610 * at next mapping time are busy or not. Just try mapping.
1611 */
1612 goto out;
1613
1614 /*
1615 * If there is one non-busy active path at least, the path selector
1616 * will be able to select it. So we consider such a pg as not busy.
1617 */
1618 busy = 1;
1619 list_for_each_entry(pgpath, &pg->pgpaths, list)
1620 if (pgpath->is_active) {
1621 has_active = 1;
1622
1623 if (!__pgpath_busy(pgpath)) {
1624 busy = 0;
1625 break;
1626 }
1627 }
1628
1629 if (!has_active)
1630 /*
1631 * No active path in this pg, so this pg won't be used and
1632 * the current_pg will be changed at next mapping time.
1633 * We need to try mapping to determine it.
1634 */
1635 busy = 0;
1636
1637out:
1638 spin_unlock_irqrestore(&m->lock, flags);
1639
1640 return busy;
1641}
1642
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643/*-----------------------------------------------------------------
1644 * Module setup
1645 *---------------------------------------------------------------*/
1646static struct target_type multipath_target = {
1647 .name = "multipath",
Kiyoshi Ueda6df400a2009-12-10 23:52:19 +00001648 .version = {1, 1, 1},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 .module = THIS_MODULE,
1650 .ctr = multipath_ctr,
1651 .dtr = multipath_dtr,
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001652 .map_rq = multipath_map,
1653 .rq_end_io = multipath_end_io,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 .presuspend = multipath_presuspend,
Kiyoshi Ueda6df400a2009-12-10 23:52:19 +00001655 .postsuspend = multipath_postsuspend,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 .resume = multipath_resume,
1657 .status = multipath_status,
1658 .message = multipath_message,
Milan Broz9af4aa32006-10-03 01:15:20 -07001659 .ioctl = multipath_ioctl,
Mike Snitzeraf4874e2009-06-22 10:12:33 +01001660 .iterate_devices = multipath_iterate_devices,
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001661 .busy = multipath_busy,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662};
1663
1664static int __init dm_multipath_init(void)
1665{
1666 int r;
1667
1668 /* allocate a slab for the dm_ios */
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001669 _mpio_cache = KMEM_CACHE(dm_mpath_io, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 if (!_mpio_cache)
1671 return -ENOMEM;
1672
1673 r = dm_register_target(&multipath_target);
1674 if (r < 0) {
Alasdair G Kergon0cd33122007-07-12 17:27:01 +01001675 DMERR("register failed %d", r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 kmem_cache_destroy(_mpio_cache);
1677 return -EINVAL;
1678 }
1679
Alasdair G Kergonc5573082005-05-05 16:16:07 -07001680 kmultipathd = create_workqueue("kmpathd");
1681 if (!kmultipathd) {
Alasdair G Kergon0cd33122007-07-12 17:27:01 +01001682 DMERR("failed to create workqueue kmpathd");
Alasdair G Kergonc5573082005-05-05 16:16:07 -07001683 dm_unregister_target(&multipath_target);
1684 kmem_cache_destroy(_mpio_cache);
1685 return -ENOMEM;
1686 }
1687
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001688 /*
1689 * A separate workqueue is used to handle the device handlers
1690 * to avoid overloading existing workqueue. Overloading the
1691 * old workqueue would also create a bottleneck in the
1692 * path of the storage hardware device activation.
1693 */
1694 kmpath_handlerd = create_singlethread_workqueue("kmpath_handlerd");
1695 if (!kmpath_handlerd) {
1696 DMERR("failed to create workqueue kmpath_handlerd");
1697 destroy_workqueue(kmultipathd);
1698 dm_unregister_target(&multipath_target);
1699 kmem_cache_destroy(_mpio_cache);
1700 return -ENOMEM;
1701 }
1702
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001703 DMINFO("version %u.%u.%u loaded",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 multipath_target.version[0], multipath_target.version[1],
1705 multipath_target.version[2]);
1706
1707 return r;
1708}
1709
1710static void __exit dm_multipath_exit(void)
1711{
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001712 destroy_workqueue(kmpath_handlerd);
Alasdair G Kergonc5573082005-05-05 16:16:07 -07001713 destroy_workqueue(kmultipathd);
1714
Mikulas Patocka10d3bd02009-01-06 03:04:58 +00001715 dm_unregister_target(&multipath_target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 kmem_cache_destroy(_mpio_cache);
1717}
1718
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719module_init(dm_multipath_init);
1720module_exit(dm_multipath_exit);
1721
1722MODULE_DESCRIPTION(DM_NAME " multipath target");
1723MODULE_AUTHOR("Sistina Software <dm-devel@redhat.com>");
1724MODULE_LICENSE("GPL");