]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/md/dm-mpath.c
dm mpath: avoid that building with W=1 causes gcc 7 to complain about fall-through
[mirror_ubuntu-bionic-kernel.git] / drivers / md / dm-mpath.c
CommitLineData
1da177e4
LT
1/*
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
586e80e6
MP
8#include <linux/device-mapper.h>
9
4cc96131 10#include "dm-rq.h"
76e33fe4 11#include "dm-bio-record.h"
1da177e4 12#include "dm-path-selector.h"
b15546f9 13#include "dm-uevent.h"
1da177e4 14
e5863d9a 15#include <linux/blkdev.h>
1da177e4
LT
16#include <linux/ctype.h>
17#include <linux/init.h>
18#include <linux/mempool.h>
19#include <linux/module.h>
20#include <linux/pagemap.h>
21#include <linux/slab.h>
22#include <linux/time.h>
23#include <linux/workqueue.h>
35991652 24#include <linux/delay.h>
cfae5c9b 25#include <scsi/scsi_dh.h>
60063497 26#include <linux/atomic.h>
78ce23b5 27#include <linux/blk-mq.h>
1da177e4 28
72d94861 29#define DM_MSG_PREFIX "multipath"
4e2d19e4
CS
30#define DM_PG_INIT_DELAY_MSECS 2000
31#define DM_PG_INIT_DELAY_DEFAULT ((unsigned) -1)
1da177e4
LT
32
33/* Path properties */
34struct pgpath {
35 struct list_head list;
36
37 struct priority_group *pg; /* Owning PG */
38 unsigned fail_count; /* Cumulative failure count */
39
c922d5f7 40 struct dm_path path;
4e2d19e4 41 struct delayed_work activate_path;
be7d31cc
MS
42
43 bool is_active:1; /* Path status */
1da177e4
LT
44};
45
46#define path_to_pgpath(__pgp) container_of((__pgp), struct pgpath, path)
47
48/*
49 * Paths are grouped into Priority Groups and numbered from 1 upwards.
50 * Each has a path selector which controls which path gets used.
51 */
52struct priority_group {
53 struct list_head list;
54
55 struct multipath *m; /* Owning multipath instance */
56 struct path_selector ps;
57
58 unsigned pg_num; /* Reference number */
1da177e4
LT
59 unsigned nr_pgpaths; /* Number of paths in PG */
60 struct list_head pgpaths;
be7d31cc
MS
61
62 bool bypassed:1; /* Temporarily bypass this PG? */
1da177e4
LT
63};
64
65/* Multipath context */
66struct multipath {
67 struct list_head list;
68 struct dm_target *ti;
69
cfae5c9b 70 const char *hw_handler_name;
2bfd2e13 71 char *hw_handler_params;
4e2d19e4 72
1fbdd2b3
MS
73 spinlock_t lock;
74
1da177e4
LT
75 unsigned nr_priority_groups;
76 struct list_head priority_groups;
4e2d19e4
CS
77
78 wait_queue_head_t pg_init_wait; /* Wait for pg_init completion */
79
1da177e4
LT
80 struct pgpath *current_pgpath;
81 struct priority_group *current_pg;
82 struct priority_group *next_pg; /* Switch to this PG if set */
1da177e4 83
518257b1 84 unsigned long flags; /* Multipath state flags */
1fbdd2b3 85
c9e45581 86 unsigned pg_init_retries; /* Number of times to retry pg_init */
4e2d19e4 87 unsigned pg_init_delay_msecs; /* Number of msecs before pg_init retry */
1da177e4 88
91e968aa
MS
89 atomic_t nr_valid_paths; /* Total number of usable paths */
90 atomic_t pg_init_in_progress; /* Only one pg_init allowed at once */
91 atomic_t pg_init_count; /* Number of times pg_init called */
92
7e0d574f 93 enum dm_queue_mode queue_mode;
e83068a5 94
6380f26f 95 struct mutex work_mutex;
20800cb3 96 struct work_struct trigger_event;
76e33fe4
MS
97
98 struct work_struct process_queued_bios;
99 struct bio_list queued_bios;
1da177e4
LT
100};
101
102/*
76e33fe4 103 * Context information attached to each io we process.
1da177e4 104 */
028867ac 105struct dm_mpath_io {
1da177e4 106 struct pgpath *pgpath;
02ab823f 107 size_t nr_bytes;
1da177e4
LT
108};
109
110typedef int (*action_fn) (struct pgpath *pgpath);
111
bab7cfc7 112static struct workqueue_struct *kmultipathd, *kmpath_handlerd;
c4028958 113static void trigger_event(struct work_struct *work);
89bfce76
BVA
114static void activate_or_offline_path(struct pgpath *pgpath);
115static void activate_path_work(struct work_struct *work);
76e33fe4 116static void process_queued_bios(struct work_struct *work);
1da177e4 117
518257b1
MS
118/*-----------------------------------------------
119 * Multipath state flags.
120 *-----------------------------------------------*/
121
122#define MPATHF_QUEUE_IO 0 /* Must we queue all I/O? */
123#define MPATHF_QUEUE_IF_NO_PATH 1 /* Queue I/O if last path fails? */
124#define MPATHF_SAVED_QUEUE_IF_NO_PATH 2 /* Saved state during suspension */
125#define MPATHF_RETAIN_ATTACHED_HW_HANDLER 3 /* If there's already a hw_handler present, don't change it. */
126#define MPATHF_PG_INIT_DISABLED 4 /* pg_init is not currently allowed */
127#define MPATHF_PG_INIT_REQUIRED 5 /* pg_init needs calling? */
128#define MPATHF_PG_INIT_DELAY_RETRY 6 /* Delay pg_init retry? */
1da177e4
LT
129
130/*-----------------------------------------------
131 * Allocation routines
132 *-----------------------------------------------*/
133
134static struct pgpath *alloc_pgpath(void)
135{
e69fae56 136 struct pgpath *pgpath = kzalloc(sizeof(*pgpath), GFP_KERNEL);
1da177e4 137
224cb3e9 138 if (pgpath) {
be7d31cc 139 pgpath->is_active = true;
89bfce76 140 INIT_DELAYED_WORK(&pgpath->activate_path, activate_path_work);
224cb3e9 141 }
1da177e4
LT
142
143 return pgpath;
144}
145
028867ac 146static void free_pgpath(struct pgpath *pgpath)
1da177e4
LT
147{
148 kfree(pgpath);
149}
150
151static struct priority_group *alloc_priority_group(void)
152{
153 struct priority_group *pg;
154
e69fae56 155 pg = kzalloc(sizeof(*pg), GFP_KERNEL);
1da177e4 156
e69fae56
MM
157 if (pg)
158 INIT_LIST_HEAD(&pg->pgpaths);
1da177e4
LT
159
160 return pg;
161}
162
163static void free_pgpaths(struct list_head *pgpaths, struct dm_target *ti)
164{
165 struct pgpath *pgpath, *tmp;
166
167 list_for_each_entry_safe(pgpath, tmp, pgpaths, list) {
168 list_del(&pgpath->list);
169 dm_put_device(ti, pgpath->path.dev);
170 free_pgpath(pgpath);
171 }
172}
173
174static void free_priority_group(struct priority_group *pg,
175 struct dm_target *ti)
176{
177 struct path_selector *ps = &pg->ps;
178
179 if (ps->type) {
180 ps->type->destroy(ps);
181 dm_put_path_selector(ps->type);
182 }
183
184 free_pgpaths(&pg->pgpaths, ti);
185 kfree(pg);
186}
187
e83068a5 188static struct multipath *alloc_multipath(struct dm_target *ti)
1da177e4
LT
189{
190 struct multipath *m;
191
e69fae56 192 m = kzalloc(sizeof(*m), GFP_KERNEL);
1da177e4 193 if (m) {
1da177e4
LT
194 INIT_LIST_HEAD(&m->priority_groups);
195 spin_lock_init(&m->lock);
518257b1 196 set_bit(MPATHF_QUEUE_IO, &m->flags);
91e968aa
MS
197 atomic_set(&m->nr_valid_paths, 0);
198 atomic_set(&m->pg_init_in_progress, 0);
199 atomic_set(&m->pg_init_count, 0);
4e2d19e4 200 m->pg_init_delay_msecs = DM_PG_INIT_DELAY_DEFAULT;
c4028958 201 INIT_WORK(&m->trigger_event, trigger_event);
2bded7bd 202 init_waitqueue_head(&m->pg_init_wait);
6380f26f 203 mutex_init(&m->work_mutex);
8637a6bf 204
e83068a5 205 m->queue_mode = DM_TYPE_NONE;
76e33fe4 206
28f16c20
MM
207 m->ti = ti;
208 ti->private = m;
1da177e4
LT
209 }
210
211 return m;
212}
213
e83068a5
MS
214static int alloc_multipath_stage2(struct dm_target *ti, struct multipath *m)
215{
216 if (m->queue_mode == DM_TYPE_NONE) {
217 /*
218 * Default to request-based.
219 */
220 if (dm_use_blk_mq(dm_table_get_md(ti->table)))
221 m->queue_mode = DM_TYPE_MQ_REQUEST_BASED;
222 else
223 m->queue_mode = DM_TYPE_REQUEST_BASED;
eb8db831 224 } else if (m->queue_mode == DM_TYPE_BIO_BASED) {
e83068a5
MS
225 INIT_WORK(&m->process_queued_bios, process_queued_bios);
226 /*
227 * bio-based doesn't support any direct scsi_dh management;
228 * it just discovers if a scsi_dh is attached.
229 */
230 set_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags);
231 }
232
233 dm_table_set_type(ti->table, m->queue_mode);
234
235 return 0;
236}
237
1da177e4
LT
238static void free_multipath(struct multipath *m)
239{
240 struct priority_group *pg, *tmp;
1da177e4
LT
241
242 list_for_each_entry_safe(pg, tmp, &m->priority_groups, list) {
243 list_del(&pg->list);
244 free_priority_group(pg, m->ti);
245 }
246
cfae5c9b 247 kfree(m->hw_handler_name);
2bfd2e13 248 kfree(m->hw_handler_params);
1da177e4
LT
249 kfree(m);
250}
251
2eff1924
MS
252static struct dm_mpath_io *get_mpio(union map_info *info)
253{
254 return info->ptr;
255}
256
bf661be1
MS
257static size_t multipath_per_bio_data_size(void)
258{
259 return sizeof(struct dm_mpath_io) + sizeof(struct dm_bio_details);
260}
261
76e33fe4
MS
262static struct dm_mpath_io *get_mpio_from_bio(struct bio *bio)
263{
bf661be1 264 return dm_per_bio_data(bio, multipath_per_bio_data_size());
76e33fe4
MS
265}
266
bf661be1 267static struct dm_bio_details *get_bio_details_from_bio(struct bio *bio)
76e33fe4 268{
bf661be1 269 /* dm_bio_details is immediately after the dm_mpath_io in bio's per-bio-data */
76e33fe4 270 struct dm_mpath_io *mpio = get_mpio_from_bio(bio);
bf661be1
MS
271 void *bio_details = mpio + 1;
272
273 return bio_details;
274}
275
276static void multipath_init_per_bio_data(struct bio *bio, struct dm_mpath_io **mpio_p,
277 struct dm_bio_details **bio_details_p)
278{
279 struct dm_mpath_io *mpio = get_mpio_from_bio(bio);
280 struct dm_bio_details *bio_details = get_bio_details_from_bio(bio);
76e33fe4
MS
281
282 memset(mpio, 0, sizeof(*mpio));
bf661be1
MS
283 memset(bio_details, 0, sizeof(*bio_details));
284 dm_bio_record(bio_details, bio);
76e33fe4 285
bf661be1
MS
286 if (mpio_p)
287 *mpio_p = mpio;
288 if (bio_details_p)
289 *bio_details_p = bio_details;
76e33fe4
MS
290}
291
1da177e4
LT
292/*-----------------------------------------------
293 * Path selection
294 *-----------------------------------------------*/
295
3e9f1be1 296static int __pg_init_all_paths(struct multipath *m)
fb612642
KU
297{
298 struct pgpath *pgpath;
4e2d19e4 299 unsigned long pg_init_delay = 0;
fb612642 300
b194679f
BVA
301 lockdep_assert_held(&m->lock);
302
91e968aa 303 if (atomic_read(&m->pg_init_in_progress) || test_bit(MPATHF_PG_INIT_DISABLED, &m->flags))
3e9f1be1 304 return 0;
17f4ff45 305
91e968aa 306 atomic_inc(&m->pg_init_count);
518257b1 307 clear_bit(MPATHF_PG_INIT_REQUIRED, &m->flags);
3e9f1be1
HR
308
309 /* Check here to reset pg_init_required */
310 if (!m->current_pg)
311 return 0;
312
518257b1 313 if (test_bit(MPATHF_PG_INIT_DELAY_RETRY, &m->flags))
4e2d19e4
CS
314 pg_init_delay = msecs_to_jiffies(m->pg_init_delay_msecs != DM_PG_INIT_DELAY_DEFAULT ?
315 m->pg_init_delay_msecs : DM_PG_INIT_DELAY_MSECS);
fb612642
KU
316 list_for_each_entry(pgpath, &m->current_pg->pgpaths, list) {
317 /* Skip failed paths */
318 if (!pgpath->is_active)
319 continue;
4e2d19e4
CS
320 if (queue_delayed_work(kmpath_handlerd, &pgpath->activate_path,
321 pg_init_delay))
91e968aa 322 atomic_inc(&m->pg_init_in_progress);
fb612642 323 }
91e968aa 324 return atomic_read(&m->pg_init_in_progress);
fb612642
KU
325}
326
c1d7ecf7 327static int pg_init_all_paths(struct multipath *m)
1da177e4 328{
c1d7ecf7 329 int ret;
2da1610a
MS
330 unsigned long flags;
331
332 spin_lock_irqsave(&m->lock, flags);
c1d7ecf7 333 ret = __pg_init_all_paths(m);
2da1610a 334 spin_unlock_irqrestore(&m->lock, flags);
c1d7ecf7
BVA
335
336 return ret;
2da1610a
MS
337}
338
339static void __switch_pg(struct multipath *m, struct priority_group *pg)
340{
341 m->current_pg = pg;
1da177e4
LT
342
343 /* Must we initialise the PG first, and queue I/O till it's ready? */
cfae5c9b 344 if (m->hw_handler_name) {
518257b1
MS
345 set_bit(MPATHF_PG_INIT_REQUIRED, &m->flags);
346 set_bit(MPATHF_QUEUE_IO, &m->flags);
1da177e4 347 } else {
518257b1
MS
348 clear_bit(MPATHF_PG_INIT_REQUIRED, &m->flags);
349 clear_bit(MPATHF_QUEUE_IO, &m->flags);
1da177e4 350 }
c9e45581 351
91e968aa 352 atomic_set(&m->pg_init_count, 0);
1da177e4
LT
353}
354
2da1610a
MS
355static struct pgpath *choose_path_in_pg(struct multipath *m,
356 struct priority_group *pg,
357 size_t nr_bytes)
1da177e4 358{
2da1610a 359 unsigned long flags;
c922d5f7 360 struct dm_path *path;
2da1610a 361 struct pgpath *pgpath;
1da177e4 362
90a4323c 363 path = pg->ps.type->select_path(&pg->ps, nr_bytes);
1da177e4 364 if (!path)
2da1610a 365 return ERR_PTR(-ENXIO);
1da177e4 366
2da1610a 367 pgpath = path_to_pgpath(path);
1da177e4 368
2da1610a
MS
369 if (unlikely(lockless_dereference(m->current_pg) != pg)) {
370 /* Only update current_pgpath if pg changed */
371 spin_lock_irqsave(&m->lock, flags);
372 m->current_pgpath = pgpath;
373 __switch_pg(m, pg);
374 spin_unlock_irqrestore(&m->lock, flags);
375 }
1da177e4 376
2da1610a 377 return pgpath;
1da177e4
LT
378}
379
2da1610a 380static struct pgpath *choose_pgpath(struct multipath *m, size_t nr_bytes)
1da177e4 381{
2da1610a 382 unsigned long flags;
1da177e4 383 struct priority_group *pg;
2da1610a 384 struct pgpath *pgpath;
d19a55cc 385 unsigned bypassed = 1;
1da177e4 386
91e968aa 387 if (!atomic_read(&m->nr_valid_paths)) {
518257b1 388 clear_bit(MPATHF_QUEUE_IO, &m->flags);
1da177e4 389 goto failed;
1f271972 390 }
1da177e4
LT
391
392 /* Were we instructed to switch PG? */
2da1610a
MS
393 if (lockless_dereference(m->next_pg)) {
394 spin_lock_irqsave(&m->lock, flags);
1da177e4 395 pg = m->next_pg;
2da1610a
MS
396 if (!pg) {
397 spin_unlock_irqrestore(&m->lock, flags);
398 goto check_current_pg;
399 }
1da177e4 400 m->next_pg = NULL;
2da1610a
MS
401 spin_unlock_irqrestore(&m->lock, flags);
402 pgpath = choose_path_in_pg(m, pg, nr_bytes);
403 if (!IS_ERR_OR_NULL(pgpath))
404 return pgpath;
1da177e4
LT
405 }
406
407 /* Don't change PG until it has no remaining paths */
2da1610a
MS
408check_current_pg:
409 pg = lockless_dereference(m->current_pg);
410 if (pg) {
411 pgpath = choose_path_in_pg(m, pg, nr_bytes);
412 if (!IS_ERR_OR_NULL(pgpath))
413 return pgpath;
414 }
1da177e4
LT
415
416 /*
417 * Loop through priority groups until we find a valid path.
418 * First time we skip PGs marked 'bypassed'.
f220fd4e
MC
419 * Second time we only try the ones we skipped, but set
420 * pg_init_delay_retry so we do not hammer controllers.
1da177e4
LT
421 */
422 do {
423 list_for_each_entry(pg, &m->priority_groups, list) {
d19a55cc 424 if (pg->bypassed == !!bypassed)
1da177e4 425 continue;
2da1610a
MS
426 pgpath = choose_path_in_pg(m, pg, nr_bytes);
427 if (!IS_ERR_OR_NULL(pgpath)) {
f220fd4e 428 if (!bypassed)
518257b1 429 set_bit(MPATHF_PG_INIT_DELAY_RETRY, &m->flags);
2da1610a 430 return pgpath;
f220fd4e 431 }
1da177e4
LT
432 }
433 } while (bypassed--);
434
435failed:
2da1610a 436 spin_lock_irqsave(&m->lock, flags);
1da177e4
LT
437 m->current_pgpath = NULL;
438 m->current_pg = NULL;
2da1610a
MS
439 spin_unlock_irqrestore(&m->lock, flags);
440
441 return NULL;
1da177e4
LT
442}
443
45e15720 444/*
86331f39
BVA
445 * dm_report_EIO() is a macro instead of a function to make pr_debug()
446 * report the function name and line number of the function from which
447 * it has been invoked.
45e15720 448 */
86331f39 449#define dm_report_EIO(m) \
18a482f5 450do { \
86331f39
BVA
451 struct mapped_device *md = dm_table_get_md((m)->ti->table); \
452 \
453 pr_debug("%s: returning EIO; QIFNP = %d; SQIFNP = %d; DNFS = %d\n", \
454 dm_device_name(md), \
455 test_bit(MPATHF_QUEUE_IF_NO_PATH, &(m)->flags), \
456 test_bit(MPATHF_SAVED_QUEUE_IF_NO_PATH, &(m)->flags), \
457 dm_noflush_suspending((m)->ti)); \
18a482f5 458} while (0)
45e15720 459
36fcffcc 460/*
76e33fe4 461 * Map cloned requests (request-based multipath)
36fcffcc 462 */
eb8db831
CH
463static int multipath_clone_and_map(struct dm_target *ti, struct request *rq,
464 union map_info *map_context,
465 struct request **__clone)
1da177e4 466{
7943bd6d 467 struct multipath *m = ti->private;
eb8db831 468 size_t nr_bytes = blk_rq_bytes(rq);
1da177e4 469 struct pgpath *pgpath;
f40c67f0 470 struct block_device *bdev;
eb8db831 471 struct dm_mpath_io *mpio = get_mpio(map_context);
7083abbb 472 struct request_queue *q;
eb8db831 473 struct request *clone;
1da177e4 474
1da177e4 475 /* Do we need to select a new pgpath? */
2da1610a
MS
476 pgpath = lockless_dereference(m->current_pgpath);
477 if (!pgpath || !test_bit(MPATHF_QUEUE_IO, &m->flags))
478 pgpath = choose_pgpath(m, nr_bytes);
1da177e4 479
9bf59a61 480 if (!pgpath) {
ca5beb76 481 if (test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))
b88efd43 482 return DM_MAPIO_DELAY_REQUEUE;
18a482f5 483 dm_report_EIO(m); /* Failed */
f98e0eb6 484 return DM_MAPIO_KILL;
518257b1
MS
485 } else if (test_bit(MPATHF_QUEUE_IO, &m->flags) ||
486 test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags)) {
c1d7ecf7
BVA
487 if (pg_init_all_paths(m))
488 return DM_MAPIO_DELAY_REQUEUE;
06eb061f 489 return DM_MAPIO_REQUEUE;
9bf59a61 490 }
6afbc01d 491
eb8db831 492 memset(mpio, 0, sizeof(*mpio));
2eb6e1e3
KB
493 mpio->pgpath = pgpath;
494 mpio->nr_bytes = nr_bytes;
495
9bf59a61 496 bdev = pgpath->path.dev->bdev;
7083abbb
BVA
497 q = bdev_get_queue(bdev);
498 clone = blk_get_request(q, rq->cmd_flags | REQ_NOMERGE, GFP_ATOMIC);
eb8db831
CH
499 if (IS_ERR(clone)) {
500 /* EBUSY, ENODEV or EWOULDBLOCK: requeue */
7083abbb
BVA
501 bool queue_dying = blk_queue_dying(q);
502 DMERR_LIMIT("blk_get_request() returned %ld%s - requeuing",
503 PTR_ERR(clone), queue_dying ? " (path offline)" : "");
504 if (queue_dying) {
505 atomic_inc(&m->pg_init_in_progress);
506 activate_or_offline_path(pgpath);
7083abbb 507 }
06eb061f 508 return DM_MAPIO_DELAY_REQUEUE;
e5863d9a 509 }
eb8db831
CH
510 clone->bio = clone->biotail = NULL;
511 clone->rq_disk = bdev->bd_disk;
512 clone->cmd_flags |= REQ_FAILFAST_TRANSPORT;
513 *__clone = clone;
e5863d9a 514
9bf59a61
MS
515 if (pgpath->pg->ps.type->start_io)
516 pgpath->pg->ps.type->start_io(&pgpath->pg->ps,
517 &pgpath->path,
518 nr_bytes);
2eb6e1e3 519 return DM_MAPIO_REMAPPED;
1da177e4
LT
520}
521
e5863d9a
MS
522static void multipath_release_clone(struct request *clone)
523{
eb8db831 524 blk_put_request(clone);
e5863d9a
MS
525}
526
76e33fe4
MS
527/*
528 * Map cloned bios (bio-based multipath)
529 */
530static int __multipath_map_bio(struct multipath *m, struct bio *bio, struct dm_mpath_io *mpio)
531{
532 size_t nr_bytes = bio->bi_iter.bi_size;
533 struct pgpath *pgpath;
534 unsigned long flags;
535 bool queue_io;
536
537 /* Do we need to select a new pgpath? */
538 pgpath = lockless_dereference(m->current_pgpath);
539 queue_io = test_bit(MPATHF_QUEUE_IO, &m->flags);
540 if (!pgpath || !queue_io)
541 pgpath = choose_pgpath(m, nr_bytes);
542
543 if ((pgpath && queue_io) ||
544 (!pgpath && test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))) {
545 /* Queue for the daemon to resubmit */
546 spin_lock_irqsave(&m->lock, flags);
547 bio_list_add(&m->queued_bios, bio);
548 spin_unlock_irqrestore(&m->lock, flags);
549 /* PG_INIT_REQUIRED cannot be set without QUEUE_IO */
550 if (queue_io || test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags))
551 pg_init_all_paths(m);
552 else if (!queue_io)
553 queue_work(kmultipathd, &m->process_queued_bios);
554 return DM_MAPIO_SUBMITTED;
555 }
556
557 if (!pgpath) {
ca5beb76
BVA
558 if (test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))
559 return DM_MAPIO_REQUEUE;
18a482f5 560 dm_report_EIO(m);
846785e6 561 return DM_MAPIO_KILL;
76e33fe4
MS
562 }
563
564 mpio->pgpath = pgpath;
565 mpio->nr_bytes = nr_bytes;
566
4e4cbee9 567 bio->bi_status = 0;
76e33fe4 568 bio->bi_bdev = pgpath->path.dev->bdev;
1eff9d32 569 bio->bi_opf |= REQ_FAILFAST_TRANSPORT;
76e33fe4
MS
570
571 if (pgpath->pg->ps.type->start_io)
572 pgpath->pg->ps.type->start_io(&pgpath->pg->ps,
573 &pgpath->path,
574 nr_bytes);
575 return DM_MAPIO_REMAPPED;
576}
577
578static int multipath_map_bio(struct dm_target *ti, struct bio *bio)
579{
580 struct multipath *m = ti->private;
bf661be1
MS
581 struct dm_mpath_io *mpio = NULL;
582
583 multipath_init_per_bio_data(bio, &mpio, NULL);
76e33fe4
MS
584
585 return __multipath_map_bio(m, bio, mpio);
586}
587
7e48c768 588static void process_queued_io_list(struct multipath *m)
76e33fe4 589{
7e48c768
MS
590 if (m->queue_mode == DM_TYPE_MQ_REQUEST_BASED)
591 dm_mq_kick_requeue_list(dm_table_get_md(m->ti->table));
592 else if (m->queue_mode == DM_TYPE_BIO_BASED)
76e33fe4
MS
593 queue_work(kmultipathd, &m->process_queued_bios);
594}
595
596static void process_queued_bios(struct work_struct *work)
597{
598 int r;
599 unsigned long flags;
600 struct bio *bio;
601 struct bio_list bios;
602 struct blk_plug plug;
603 struct multipath *m =
604 container_of(work, struct multipath, process_queued_bios);
605
606 bio_list_init(&bios);
607
608 spin_lock_irqsave(&m->lock, flags);
609
610 if (bio_list_empty(&m->queued_bios)) {
611 spin_unlock_irqrestore(&m->lock, flags);
612 return;
613 }
614
615 bio_list_merge(&bios, &m->queued_bios);
616 bio_list_init(&m->queued_bios);
617
618 spin_unlock_irqrestore(&m->lock, flags);
619
620 blk_start_plug(&plug);
621 while ((bio = bio_list_pop(&bios))) {
622 r = __multipath_map_bio(m, bio, get_mpio_from_bio(bio));
846785e6
CH
623 switch (r) {
624 case DM_MAPIO_KILL:
4e4cbee9
CH
625 bio->bi_status = BLK_STS_IOERR;
626 bio_endio(bio);
047385b3 627 break;
846785e6 628 case DM_MAPIO_REQUEUE:
4e4cbee9 629 bio->bi_status = BLK_STS_DM_REQUEUE;
76e33fe4 630 bio_endio(bio);
846785e6
CH
631 break;
632 case DM_MAPIO_REMAPPED:
76e33fe4 633 generic_make_request(bio);
846785e6
CH
634 break;
635 }
76e33fe4
MS
636 }
637 blk_finish_plug(&plug);
638}
639
9a8ac3ae
BVA
640static void assign_bit(bool value, long nr, unsigned long *addr)
641{
642 if (value)
643 set_bit(nr, addr);
644 else
645 clear_bit(nr, addr);
646}
647
1da177e4
LT
648/*
649 * If we run out of usable paths, should we queue I/O or error it?
650 */
be7d31cc
MS
651static int queue_if_no_path(struct multipath *m, bool queue_if_no_path,
652 bool save_old_value)
1da177e4
LT
653{
654 unsigned long flags;
655
656 spin_lock_irqsave(&m->lock, flags);
9a8ac3ae
BVA
657 assign_bit((save_old_value && test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags)) ||
658 (!save_old_value && queue_if_no_path),
659 MPATHF_SAVED_QUEUE_IF_NO_PATH, &m->flags);
660 assign_bit(queue_if_no_path || dm_noflush_suspending(m->ti),
661 MPATHF_QUEUE_IF_NO_PATH, &m->flags);
1da177e4
LT
662 spin_unlock_irqrestore(&m->lock, flags);
663
76e33fe4 664 if (!queue_if_no_path) {
63d832c3 665 dm_table_run_md_queue_async(m->ti->table);
7e48c768 666 process_queued_io_list(m);
76e33fe4 667 }
63d832c3 668
1da177e4
LT
669 return 0;
670}
671
1da177e4
LT
672/*
673 * An event is triggered whenever a path is taken out of use.
674 * Includes path failure and PG bypass.
675 */
c4028958 676static void trigger_event(struct work_struct *work)
1da177e4 677{
c4028958
DH
678 struct multipath *m =
679 container_of(work, struct multipath, trigger_event);
1da177e4
LT
680
681 dm_table_event(m->ti->table);
682}
683
684/*-----------------------------------------------------------------
685 * Constructor/argument parsing:
686 * <#multipath feature args> [<arg>]*
687 * <#hw_handler args> [hw_handler [<arg>]*]
688 * <#priority groups>
689 * <initial priority group>
690 * [<selector> <#selector args> [<arg>]*
691 * <#paths> <#per-path selector args>
692 * [<path> [<arg>]* ]+ ]+
693 *---------------------------------------------------------------*/
498f0103 694static int parse_path_selector(struct dm_arg_set *as, struct priority_group *pg,
1da177e4
LT
695 struct dm_target *ti)
696{
697 int r;
698 struct path_selector_type *pst;
699 unsigned ps_argc;
700
498f0103 701 static struct dm_arg _args[] = {
72d94861 702 {0, 1024, "invalid number of path selector args"},
1da177e4
LT
703 };
704
498f0103 705 pst = dm_get_path_selector(dm_shift_arg(as));
1da177e4 706 if (!pst) {
72d94861 707 ti->error = "unknown path selector type";
1da177e4
LT
708 return -EINVAL;
709 }
710
498f0103 711 r = dm_read_arg_group(_args, as, &ps_argc, &ti->error);
371b2e34
MP
712 if (r) {
713 dm_put_path_selector(pst);
1da177e4 714 return -EINVAL;
371b2e34 715 }
1da177e4
LT
716
717 r = pst->create(&pg->ps, ps_argc, as->argv);
718 if (r) {
719 dm_put_path_selector(pst);
72d94861 720 ti->error = "path selector constructor failed";
1da177e4
LT
721 return r;
722 }
723
724 pg->ps.type = pst;
498f0103 725 dm_consume_args(as, ps_argc);
1da177e4
LT
726
727 return 0;
728}
729
498f0103 730static struct pgpath *parse_path(struct dm_arg_set *as, struct path_selector *ps,
1da177e4
LT
731 struct dm_target *ti)
732{
733 int r;
734 struct pgpath *p;
ae11b1b3 735 struct multipath *m = ti->private;
a58a935d
MS
736 struct request_queue *q = NULL;
737 const char *attached_handler_name;
1da177e4
LT
738
739 /* we need at least a path arg */
740 if (as->argc < 1) {
72d94861 741 ti->error = "no device given";
01460f35 742 return ERR_PTR(-EINVAL);
1da177e4
LT
743 }
744
745 p = alloc_pgpath();
746 if (!p)
01460f35 747 return ERR_PTR(-ENOMEM);
1da177e4 748
498f0103 749 r = dm_get_device(ti, dm_shift_arg(as), dm_table_get_mode(ti->table),
8215d6ec 750 &p->path.dev);
1da177e4 751 if (r) {
72d94861 752 ti->error = "error getting device";
1da177e4
LT
753 goto bad;
754 }
755
518257b1 756 if (test_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags) || m->hw_handler_name)
a58a935d
MS
757 q = bdev_get_queue(p->path.dev->bdev);
758
518257b1 759 if (test_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags)) {
1bab0de0 760retain:
a58a935d
MS
761 attached_handler_name = scsi_dh_attached_handler_name(q, GFP_KERNEL);
762 if (attached_handler_name) {
54cd640d 763 /*
764 * Clear any hw_handler_params associated with a
765 * handler that isn't already attached.
766 */
767 if (m->hw_handler_name && strcmp(attached_handler_name, m->hw_handler_name)) {
768 kfree(m->hw_handler_params);
769 m->hw_handler_params = NULL;
770 }
771
a58a935d
MS
772 /*
773 * Reset hw_handler_name to match the attached handler
a58a935d
MS
774 *
775 * NB. This modifies the table line to show the actual
776 * handler instead of the original table passed in.
777 */
778 kfree(m->hw_handler_name);
779 m->hw_handler_name = attached_handler_name;
a58a935d
MS
780 }
781 }
a0cf7ea9 782
a58a935d 783 if (m->hw_handler_name) {
a0cf7ea9
HR
784 r = scsi_dh_attach(q, m->hw_handler_name);
785 if (r == -EBUSY) {
1bab0de0 786 char b[BDEVNAME_SIZE];
a0cf7ea9 787
1bab0de0
CH
788 printk(KERN_INFO "dm-mpath: retaining handler on device %s\n",
789 bdevname(p->path.dev->bdev, b));
790 goto retain;
791 }
ae11b1b3 792 if (r < 0) {
a0cf7ea9 793 ti->error = "error attaching hardware handler";
ae11b1b3
HR
794 dm_put_device(ti, p->path.dev);
795 goto bad;
796 }
2bfd2e13
CS
797
798 if (m->hw_handler_params) {
799 r = scsi_dh_set_params(q, m->hw_handler_params);
800 if (r < 0) {
801 ti->error = "unable to set hardware "
802 "handler parameters";
2bfd2e13
CS
803 dm_put_device(ti, p->path.dev);
804 goto bad;
805 }
806 }
ae11b1b3
HR
807 }
808
1da177e4
LT
809 r = ps->type->add_path(ps, &p->path, as->argc, as->argv, &ti->error);
810 if (r) {
811 dm_put_device(ti, p->path.dev);
812 goto bad;
813 }
814
815 return p;
816
817 bad:
818 free_pgpath(p);
01460f35 819 return ERR_PTR(r);
1da177e4
LT
820}
821
498f0103 822static struct priority_group *parse_priority_group(struct dm_arg_set *as,
28f16c20 823 struct multipath *m)
1da177e4 824{
498f0103 825 static struct dm_arg _args[] = {
72d94861
AK
826 {1, 1024, "invalid number of paths"},
827 {0, 1024, "invalid number of selector args"}
1da177e4
LT
828 };
829
830 int r;
498f0103 831 unsigned i, nr_selector_args, nr_args;
1da177e4 832 struct priority_group *pg;
28f16c20 833 struct dm_target *ti = m->ti;
1da177e4
LT
834
835 if (as->argc < 2) {
836 as->argc = 0;
01460f35
BM
837 ti->error = "not enough priority group arguments";
838 return ERR_PTR(-EINVAL);
1da177e4
LT
839 }
840
841 pg = alloc_priority_group();
842 if (!pg) {
72d94861 843 ti->error = "couldn't allocate priority group";
01460f35 844 return ERR_PTR(-ENOMEM);
1da177e4
LT
845 }
846 pg->m = m;
847
848 r = parse_path_selector(as, pg, ti);
849 if (r)
850 goto bad;
851
852 /*
853 * read the paths
854 */
498f0103 855 r = dm_read_arg(_args, as, &pg->nr_pgpaths, &ti->error);
1da177e4
LT
856 if (r)
857 goto bad;
858
498f0103 859 r = dm_read_arg(_args + 1, as, &nr_selector_args, &ti->error);
1da177e4
LT
860 if (r)
861 goto bad;
862
498f0103 863 nr_args = 1 + nr_selector_args;
1da177e4
LT
864 for (i = 0; i < pg->nr_pgpaths; i++) {
865 struct pgpath *pgpath;
498f0103 866 struct dm_arg_set path_args;
1da177e4 867
498f0103 868 if (as->argc < nr_args) {
148acff6 869 ti->error = "not enough path parameters";
6bbf79a1 870 r = -EINVAL;
1da177e4 871 goto bad;
148acff6 872 }
1da177e4 873
498f0103 874 path_args.argc = nr_args;
1da177e4
LT
875 path_args.argv = as->argv;
876
877 pgpath = parse_path(&path_args, &pg->ps, ti);
01460f35
BM
878 if (IS_ERR(pgpath)) {
879 r = PTR_ERR(pgpath);
1da177e4 880 goto bad;
01460f35 881 }
1da177e4
LT
882
883 pgpath->pg = pg;
884 list_add_tail(&pgpath->list, &pg->pgpaths);
498f0103 885 dm_consume_args(as, nr_args);
1da177e4
LT
886 }
887
888 return pg;
889
890 bad:
891 free_priority_group(pg, ti);
01460f35 892 return ERR_PTR(r);
1da177e4
LT
893}
894
498f0103 895static int parse_hw_handler(struct dm_arg_set *as, struct multipath *m)
1da177e4 896{
1da177e4 897 unsigned hw_argc;
2bfd2e13 898 int ret;
28f16c20 899 struct dm_target *ti = m->ti;
1da177e4 900
498f0103 901 static struct dm_arg _args[] = {
72d94861 902 {0, 1024, "invalid number of hardware handler args"},
1da177e4
LT
903 };
904
498f0103 905 if (dm_read_arg_group(_args, as, &hw_argc, &ti->error))
1da177e4
LT
906 return -EINVAL;
907
908 if (!hw_argc)
909 return 0;
910
e83068a5 911 if (m->queue_mode == DM_TYPE_BIO_BASED) {
76e33fe4
MS
912 dm_consume_args(as, hw_argc);
913 DMERR("bio-based multipath doesn't allow hardware handler args");
914 return 0;
915 }
916
498f0103 917 m->hw_handler_name = kstrdup(dm_shift_arg(as), GFP_KERNEL);
f97dc421 918 if (!m->hw_handler_name)
919 return -EINVAL;
14e98c5c 920
2bfd2e13
CS
921 if (hw_argc > 1) {
922 char *p;
923 int i, j, len = 4;
924
925 for (i = 0; i <= hw_argc - 2; i++)
926 len += strlen(as->argv[i]) + 1;
927 p = m->hw_handler_params = kzalloc(len, GFP_KERNEL);
928 if (!p) {
929 ti->error = "memory allocation failed";
930 ret = -ENOMEM;
931 goto fail;
932 }
933 j = sprintf(p, "%d", hw_argc - 1);
934 for (i = 0, p+=j+1; i <= hw_argc - 2; i++, p+=j+1)
935 j = sprintf(p, "%s", as->argv[i]);
936 }
498f0103 937 dm_consume_args(as, hw_argc - 1);
1da177e4
LT
938
939 return 0;
2bfd2e13
CS
940fail:
941 kfree(m->hw_handler_name);
942 m->hw_handler_name = NULL;
943 return ret;
1da177e4
LT
944}
945
498f0103 946static int parse_features(struct dm_arg_set *as, struct multipath *m)
1da177e4
LT
947{
948 int r;
949 unsigned argc;
28f16c20 950 struct dm_target *ti = m->ti;
498f0103 951 const char *arg_name;
1da177e4 952
498f0103 953 static struct dm_arg _args[] = {
e83068a5 954 {0, 8, "invalid number of feature args"},
c9e45581 955 {1, 50, "pg_init_retries must be between 1 and 50"},
4e2d19e4 956 {0, 60000, "pg_init_delay_msecs must be between 0 and 60000"},
1da177e4
LT
957 };
958
498f0103 959 r = dm_read_arg_group(_args, as, &argc, &ti->error);
1da177e4
LT
960 if (r)
961 return -EINVAL;
962
963 if (!argc)
964 return 0;
965
c9e45581 966 do {
498f0103 967 arg_name = dm_shift_arg(as);
c9e45581
DW
968 argc--;
969
498f0103 970 if (!strcasecmp(arg_name, "queue_if_no_path")) {
be7d31cc 971 r = queue_if_no_path(m, true, false);
c9e45581
DW
972 continue;
973 }
974
a58a935d 975 if (!strcasecmp(arg_name, "retain_attached_hw_handler")) {
518257b1 976 set_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags);
a58a935d
MS
977 continue;
978 }
979
498f0103 980 if (!strcasecmp(arg_name, "pg_init_retries") &&
c9e45581 981 (argc >= 1)) {
498f0103 982 r = dm_read_arg(_args + 1, as, &m->pg_init_retries, &ti->error);
c9e45581
DW
983 argc--;
984 continue;
985 }
986
498f0103 987 if (!strcasecmp(arg_name, "pg_init_delay_msecs") &&
4e2d19e4 988 (argc >= 1)) {
498f0103 989 r = dm_read_arg(_args + 2, as, &m->pg_init_delay_msecs, &ti->error);
4e2d19e4
CS
990 argc--;
991 continue;
992 }
993
e83068a5
MS
994 if (!strcasecmp(arg_name, "queue_mode") &&
995 (argc >= 1)) {
996 const char *queue_mode_name = dm_shift_arg(as);
997
998 if (!strcasecmp(queue_mode_name, "bio"))
999 m->queue_mode = DM_TYPE_BIO_BASED;
1000 else if (!strcasecmp(queue_mode_name, "rq"))
1001 m->queue_mode = DM_TYPE_REQUEST_BASED;
1002 else if (!strcasecmp(queue_mode_name, "mq"))
1003 m->queue_mode = DM_TYPE_MQ_REQUEST_BASED;
1004 else {
1005 ti->error = "Unknown 'queue_mode' requested";
1006 r = -EINVAL;
1007 }
1008 argc--;
1009 continue;
1010 }
1011
1da177e4 1012 ti->error = "Unrecognised multipath feature request";
c9e45581
DW
1013 r = -EINVAL;
1014 } while (argc && !r);
1015
1016 return r;
1da177e4
LT
1017}
1018
e83068a5 1019static int multipath_ctr(struct dm_target *ti, unsigned argc, char **argv)
1da177e4 1020{
498f0103
MS
1021 /* target arguments */
1022 static struct dm_arg _args[] = {
a490a07a
MS
1023 {0, 1024, "invalid number of priority groups"},
1024 {0, 1024, "invalid initial priority group number"},
1da177e4
LT
1025 };
1026
1027 int r;
1028 struct multipath *m;
498f0103 1029 struct dm_arg_set as;
1da177e4
LT
1030 unsigned pg_count = 0;
1031 unsigned next_pg_num;
1032
1033 as.argc = argc;
1034 as.argv = argv;
1035
e83068a5 1036 m = alloc_multipath(ti);
1da177e4 1037 if (!m) {
72d94861 1038 ti->error = "can't allocate multipath";
1da177e4
LT
1039 return -EINVAL;
1040 }
1041
28f16c20 1042 r = parse_features(&as, m);
1da177e4
LT
1043 if (r)
1044 goto bad;
1045
e83068a5
MS
1046 r = alloc_multipath_stage2(ti, m);
1047 if (r)
1048 goto bad;
1049
28f16c20 1050 r = parse_hw_handler(&as, m);
1da177e4
LT
1051 if (r)
1052 goto bad;
1053
498f0103 1054 r = dm_read_arg(_args, &as, &m->nr_priority_groups, &ti->error);
1da177e4
LT
1055 if (r)
1056 goto bad;
1057
498f0103 1058 r = dm_read_arg(_args + 1, &as, &next_pg_num, &ti->error);
1da177e4
LT
1059 if (r)
1060 goto bad;
1061
a490a07a
MS
1062 if ((!m->nr_priority_groups && next_pg_num) ||
1063 (m->nr_priority_groups && !next_pg_num)) {
1064 ti->error = "invalid initial priority group";
1065 r = -EINVAL;
1066 goto bad;
1067 }
1068
1da177e4
LT
1069 /* parse the priority groups */
1070 while (as.argc) {
1071 struct priority_group *pg;
91e968aa 1072 unsigned nr_valid_paths = atomic_read(&m->nr_valid_paths);
1da177e4 1073
28f16c20 1074 pg = parse_priority_group(&as, m);
01460f35
BM
1075 if (IS_ERR(pg)) {
1076 r = PTR_ERR(pg);
1da177e4
LT
1077 goto bad;
1078 }
1079
91e968aa
MS
1080 nr_valid_paths += pg->nr_pgpaths;
1081 atomic_set(&m->nr_valid_paths, nr_valid_paths);
1082
1da177e4
LT
1083 list_add_tail(&pg->list, &m->priority_groups);
1084 pg_count++;
1085 pg->pg_num = pg_count;
1086 if (!--next_pg_num)
1087 m->next_pg = pg;
1088 }
1089
1090 if (pg_count != m->nr_priority_groups) {
72d94861 1091 ti->error = "priority group count mismatch";
1da177e4
LT
1092 r = -EINVAL;
1093 goto bad;
1094 }
1095
55a62eef
AK
1096 ti->num_flush_bios = 1;
1097 ti->num_discard_bios = 1;
042bcef8 1098 ti->num_write_same_bios = 1;
ac62d620 1099 ti->num_write_zeroes_bios = 1;
e83068a5 1100 if (m->queue_mode == DM_TYPE_BIO_BASED)
bf661be1 1101 ti->per_io_data_size = multipath_per_bio_data_size();
eb8db831 1102 else
8637a6bf 1103 ti->per_io_data_size = sizeof(struct dm_mpath_io);
8627921f 1104
1da177e4
LT
1105 return 0;
1106
1107 bad:
1108 free_multipath(m);
1109 return r;
1110}
1111
2bded7bd
KU
1112static void multipath_wait_for_pg_init_completion(struct multipath *m)
1113{
9f4c3f87 1114 DEFINE_WAIT(wait);
2bded7bd
KU
1115
1116 while (1) {
9f4c3f87 1117 prepare_to_wait(&m->pg_init_wait, &wait, TASK_UNINTERRUPTIBLE);
2bded7bd 1118
91e968aa 1119 if (!atomic_read(&m->pg_init_in_progress))
2bded7bd 1120 break;
2bded7bd
KU
1121
1122 io_schedule();
1123 }
9f4c3f87 1124 finish_wait(&m->pg_init_wait, &wait);
2bded7bd
KU
1125}
1126
1127static void flush_multipath_work(struct multipath *m)
1da177e4 1128{
518257b1
MS
1129 set_bit(MPATHF_PG_INIT_DISABLED, &m->flags);
1130 smp_mb__after_atomic();
954a73d5 1131
bab7cfc7 1132 flush_workqueue(kmpath_handlerd);
2bded7bd 1133 multipath_wait_for_pg_init_completion(m);
a044d016 1134 flush_workqueue(kmultipathd);
43829731 1135 flush_work(&m->trigger_event);
954a73d5 1136
518257b1
MS
1137 clear_bit(MPATHF_PG_INIT_DISABLED, &m->flags);
1138 smp_mb__after_atomic();
6df400ab
KU
1139}
1140
1141static void multipath_dtr(struct dm_target *ti)
1142{
1143 struct multipath *m = ti->private;
1144
2bded7bd 1145 flush_multipath_work(m);
1da177e4
LT
1146 free_multipath(m);
1147}
1148
1da177e4
LT
1149/*
1150 * Take a path out of use.
1151 */
1152static int fail_path(struct pgpath *pgpath)
1153{
1154 unsigned long flags;
1155 struct multipath *m = pgpath->pg->m;
1156
1157 spin_lock_irqsave(&m->lock, flags);
1158
6680073d 1159 if (!pgpath->is_active)
1da177e4
LT
1160 goto out;
1161
72d94861 1162 DMWARN("Failing path %s.", pgpath->path.dev->name);
1da177e4
LT
1163
1164 pgpath->pg->ps.type->fail_path(&pgpath->pg->ps, &pgpath->path);
be7d31cc 1165 pgpath->is_active = false;
1da177e4
LT
1166 pgpath->fail_count++;
1167
91e968aa 1168 atomic_dec(&m->nr_valid_paths);
1da177e4
LT
1169
1170 if (pgpath == m->current_pgpath)
1171 m->current_pgpath = NULL;
1172
b15546f9 1173 dm_path_uevent(DM_UEVENT_PATH_FAILED, m->ti,
91e968aa 1174 pgpath->path.dev->name, atomic_read(&m->nr_valid_paths));
b15546f9 1175
fe9cf30e 1176 schedule_work(&m->trigger_event);
1da177e4
LT
1177
1178out:
1179 spin_unlock_irqrestore(&m->lock, flags);
1180
1181 return 0;
1182}
1183
1184/*
1185 * Reinstate a previously-failed path
1186 */
1187static int reinstate_path(struct pgpath *pgpath)
1188{
63d832c3 1189 int r = 0, run_queue = 0;
1da177e4
LT
1190 unsigned long flags;
1191 struct multipath *m = pgpath->pg->m;
91e968aa 1192 unsigned nr_valid_paths;
1da177e4
LT
1193
1194 spin_lock_irqsave(&m->lock, flags);
1195
6680073d 1196 if (pgpath->is_active)
1da177e4
LT
1197 goto out;
1198
ec31f3f7 1199 DMWARN("Reinstating path %s.", pgpath->path.dev->name);
1da177e4
LT
1200
1201 r = pgpath->pg->ps.type->reinstate_path(&pgpath->pg->ps, &pgpath->path);
1202 if (r)
1203 goto out;
1204
be7d31cc 1205 pgpath->is_active = true;
1da177e4 1206
91e968aa
MS
1207 nr_valid_paths = atomic_inc_return(&m->nr_valid_paths);
1208 if (nr_valid_paths == 1) {
e54f77dd 1209 m->current_pgpath = NULL;
63d832c3 1210 run_queue = 1;
e54f77dd 1211 } else if (m->hw_handler_name && (m->current_pg == pgpath->pg)) {
4e2d19e4 1212 if (queue_work(kmpath_handlerd, &pgpath->activate_path.work))
91e968aa 1213 atomic_inc(&m->pg_init_in_progress);
e54f77dd 1214 }
1da177e4 1215
b15546f9 1216 dm_path_uevent(DM_UEVENT_PATH_REINSTATED, m->ti,
91e968aa 1217 pgpath->path.dev->name, nr_valid_paths);
b15546f9 1218
fe9cf30e 1219 schedule_work(&m->trigger_event);
1da177e4
LT
1220
1221out:
1222 spin_unlock_irqrestore(&m->lock, flags);
76e33fe4 1223 if (run_queue) {
63d832c3 1224 dm_table_run_md_queue_async(m->ti->table);
7e48c768 1225 process_queued_io_list(m);
76e33fe4 1226 }
1da177e4
LT
1227
1228 return r;
1229}
1230
1231/*
1232 * Fail or reinstate all paths that match the provided struct dm_dev.
1233 */
1234static int action_dev(struct multipath *m, struct dm_dev *dev,
1235 action_fn action)
1236{
19040c0b 1237 int r = -EINVAL;
1da177e4
LT
1238 struct pgpath *pgpath;
1239 struct priority_group *pg;
1240
1241 list_for_each_entry(pg, &m->priority_groups, list) {
1242 list_for_each_entry(pgpath, &pg->pgpaths, list) {
1243 if (pgpath->path.dev == dev)
1244 r = action(pgpath);
1245 }
1246 }
1247
1248 return r;
1249}
1250
1251/*
1252 * Temporarily try to avoid having to use the specified PG
1253 */
1254static void bypass_pg(struct multipath *m, struct priority_group *pg,
be7d31cc 1255 bool bypassed)
1da177e4
LT
1256{
1257 unsigned long flags;
1258
1259 spin_lock_irqsave(&m->lock, flags);
1260
1261 pg->bypassed = bypassed;
1262 m->current_pgpath = NULL;
1263 m->current_pg = NULL;
1264
1265 spin_unlock_irqrestore(&m->lock, flags);
1266
fe9cf30e 1267 schedule_work(&m->trigger_event);
1da177e4
LT
1268}
1269
1270/*
1271 * Switch to using the specified PG from the next I/O that gets mapped
1272 */
1273static int switch_pg_num(struct multipath *m, const char *pgstr)
1274{
1275 struct priority_group *pg;
1276 unsigned pgnum;
1277 unsigned long flags;
31998ef1 1278 char dummy;
1da177e4 1279
31998ef1 1280 if (!pgstr || (sscanf(pgstr, "%u%c", &pgnum, &dummy) != 1) || !pgnum ||
cc5bd925 1281 !m->nr_priority_groups || (pgnum > m->nr_priority_groups)) {
1da177e4
LT
1282 DMWARN("invalid PG number supplied to switch_pg_num");
1283 return -EINVAL;
1284 }
1285
1286 spin_lock_irqsave(&m->lock, flags);
1287 list_for_each_entry(pg, &m->priority_groups, list) {
be7d31cc 1288 pg->bypassed = false;
1da177e4
LT
1289 if (--pgnum)
1290 continue;
1291
1292 m->current_pgpath = NULL;
1293 m->current_pg = NULL;
1294 m->next_pg = pg;
1295 }
1296 spin_unlock_irqrestore(&m->lock, flags);
1297
fe9cf30e 1298 schedule_work(&m->trigger_event);
1da177e4
LT
1299 return 0;
1300}
1301
1302/*
1303 * Set/clear bypassed status of a PG.
1304 * PGs are numbered upwards from 1 in the order they were declared.
1305 */
be7d31cc 1306static int bypass_pg_num(struct multipath *m, const char *pgstr, bool bypassed)
1da177e4
LT
1307{
1308 struct priority_group *pg;
1309 unsigned pgnum;
31998ef1 1310 char dummy;
1da177e4 1311
31998ef1 1312 if (!pgstr || (sscanf(pgstr, "%u%c", &pgnum, &dummy) != 1) || !pgnum ||
cc5bd925 1313 !m->nr_priority_groups || (pgnum > m->nr_priority_groups)) {
1da177e4
LT
1314 DMWARN("invalid PG number supplied to bypass_pg");
1315 return -EINVAL;
1316 }
1317
1318 list_for_each_entry(pg, &m->priority_groups, list) {
1319 if (!--pgnum)
1320 break;
1321 }
1322
1323 bypass_pg(m, pg, bypassed);
1324 return 0;
1325}
1326
c9e45581
DW
1327/*
1328 * Should we retry pg_init immediately?
1329 */
be7d31cc 1330static bool pg_init_limit_reached(struct multipath *m, struct pgpath *pgpath)
c9e45581
DW
1331{
1332 unsigned long flags;
be7d31cc 1333 bool limit_reached = false;
c9e45581
DW
1334
1335 spin_lock_irqsave(&m->lock, flags);
1336
91e968aa
MS
1337 if (atomic_read(&m->pg_init_count) <= m->pg_init_retries &&
1338 !test_bit(MPATHF_PG_INIT_DISABLED, &m->flags))
518257b1 1339 set_bit(MPATHF_PG_INIT_REQUIRED, &m->flags);
c9e45581 1340 else
be7d31cc 1341 limit_reached = true;
c9e45581
DW
1342
1343 spin_unlock_irqrestore(&m->lock, flags);
1344
1345 return limit_reached;
1346}
1347
3ae31f6a 1348static void pg_init_done(void *data, int errors)
cfae5c9b 1349{
83c0d5d5 1350 struct pgpath *pgpath = data;
cfae5c9b
CS
1351 struct priority_group *pg = pgpath->pg;
1352 struct multipath *m = pg->m;
1353 unsigned long flags;
be7d31cc 1354 bool delay_retry = false;
cfae5c9b
CS
1355
1356 /* device or driver problems */
1357 switch (errors) {
1358 case SCSI_DH_OK:
1359 break;
1360 case SCSI_DH_NOSYS:
1361 if (!m->hw_handler_name) {
1362 errors = 0;
1363 break;
1364 }
f7b934c8
MB
1365 DMERR("Could not failover the device: Handler scsi_dh_%s "
1366 "Error %d.", m->hw_handler_name, errors);
cfae5c9b
CS
1367 /*
1368 * Fail path for now, so we do not ping pong
1369 */
1370 fail_path(pgpath);
1371 break;
1372 case SCSI_DH_DEV_TEMP_BUSY:
1373 /*
1374 * Probably doing something like FW upgrade on the
1375 * controller so try the other pg.
1376 */
be7d31cc 1377 bypass_pg(m, pg, true);
cfae5c9b 1378 break;
cfae5c9b 1379 case SCSI_DH_RETRY:
4e2d19e4
CS
1380 /* Wait before retrying. */
1381 delay_retry = 1;
7b06e09a 1382 /* fall through */
cfae5c9b
CS
1383 case SCSI_DH_IMM_RETRY:
1384 case SCSI_DH_RES_TEMP_UNAVAIL:
1385 if (pg_init_limit_reached(m, pgpath))
1386 fail_path(pgpath);
1387 errors = 0;
1388 break;
ec31f3f7 1389 case SCSI_DH_DEV_OFFLINED:
cfae5c9b
CS
1390 default:
1391 /*
1392 * We probably do not want to fail the path for a device
1393 * error, but this is what the old dm did. In future
1394 * patches we can do more advanced handling.
1395 */
1396 fail_path(pgpath);
1397 }
1398
1399 spin_lock_irqsave(&m->lock, flags);
1400 if (errors) {
e54f77dd
CS
1401 if (pgpath == m->current_pgpath) {
1402 DMERR("Could not failover device. Error %d.", errors);
1403 m->current_pgpath = NULL;
1404 m->current_pg = NULL;
1405 }
518257b1 1406 } else if (!test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags))
be7d31cc 1407 pg->bypassed = false;
cfae5c9b 1408
91e968aa 1409 if (atomic_dec_return(&m->pg_init_in_progress) > 0)
d0259bf0
KU
1410 /* Activations of other paths are still on going */
1411 goto out;
1412
518257b1
MS
1413 if (test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags)) {
1414 if (delay_retry)
1415 set_bit(MPATHF_PG_INIT_DELAY_RETRY, &m->flags);
1416 else
1417 clear_bit(MPATHF_PG_INIT_DELAY_RETRY, &m->flags);
1418
3e9f1be1
HR
1419 if (__pg_init_all_paths(m))
1420 goto out;
1421 }
518257b1 1422 clear_bit(MPATHF_QUEUE_IO, &m->flags);
d0259bf0 1423
7e48c768 1424 process_queued_io_list(m);
76e33fe4 1425
2bded7bd
KU
1426 /*
1427 * Wake up any thread waiting to suspend.
1428 */
1429 wake_up(&m->pg_init_wait);
1430
d0259bf0 1431out:
cfae5c9b
CS
1432 spin_unlock_irqrestore(&m->lock, flags);
1433}
1434
89bfce76 1435static void activate_or_offline_path(struct pgpath *pgpath)
bab7cfc7 1436{
f10e06b7 1437 struct request_queue *q = bdev_get_queue(pgpath->path.dev->bdev);
bab7cfc7 1438
f10e06b7
MS
1439 if (pgpath->is_active && !blk_queue_dying(q))
1440 scsi_dh_activate(q, pg_init_done, pgpath);
3a017509
HR
1441 else
1442 pg_init_done(pgpath, SCSI_DH_DEV_OFFLINED);
bab7cfc7
CS
1443}
1444
89bfce76
BVA
1445static void activate_path_work(struct work_struct *work)
1446{
1447 struct pgpath *pgpath =
1448 container_of(work, struct pgpath, activate_path.work);
1449
1450 activate_or_offline_path(pgpath);
1451}
1452
2a842aca 1453static int noretry_error(blk_status_t error)
7e782af5
HR
1454{
1455 switch (error) {
2a842aca
CH
1456 case BLK_STS_NOTSUPP:
1457 case BLK_STS_NOSPC:
1458 case BLK_STS_TARGET:
1459 case BLK_STS_NEXUS:
1460 case BLK_STS_MEDIUM:
7e782af5
HR
1461 return 1;
1462 }
1463
1464 /* Anything else could be a path failure, so should be retried */
1465 return 0;
1466}
1467
b79f10ee 1468static int multipath_end_io(struct dm_target *ti, struct request *clone,
2a842aca 1469 blk_status_t error, union map_info *map_context)
1da177e4 1470{
b79f10ee
CH
1471 struct dm_mpath_io *mpio = get_mpio(map_context);
1472 struct pgpath *pgpath = mpio->pgpath;
7ed8578a 1473 int r = DM_ENDIO_DONE;
b79f10ee 1474
f40c67f0
KU
1475 /*
1476 * We don't queue any clone request inside the multipath target
1477 * during end I/O handling, since those clone requests don't have
1478 * bio clones. If we queue them inside the multipath target,
1479 * we need to make bio clones, that requires memory allocation.
4cc96131 1480 * (See drivers/md/dm-rq.c:end_clone_bio() about why the clone requests
f40c67f0
KU
1481 * don't have bio clones.)
1482 * Instead of queueing the clone request here, we queue the original
1483 * request into dm core, which will remake a clone request and
1484 * clone bios for it and resubmit it later.
1485 */
b79f10ee
CH
1486 if (error && !noretry_error(error)) {
1487 struct multipath *m = ti->private;
1da177e4 1488
7ed8578a 1489 r = DM_ENDIO_REQUEUE;
1da177e4 1490
b79f10ee
CH
1491 if (pgpath)
1492 fail_path(pgpath);
1da177e4 1493
b79f10ee 1494 if (atomic_read(&m->nr_valid_paths) == 0 &&
7ed8578a 1495 !test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags)) {
2a842aca 1496 if (error == BLK_STS_IOERR)
18a482f5 1497 dm_report_EIO(m);
7ed8578a
CH
1498 /* complete with the original error */
1499 r = DM_ENDIO_DONE;
1500 }
b79f10ee 1501 }
466891f9 1502
1da177e4 1503 if (pgpath) {
b79f10ee
CH
1504 struct path_selector *ps = &pgpath->pg->ps;
1505
1da177e4 1506 if (ps->type->end_io)
02ab823f 1507 ps->type->end_io(ps, &pgpath->path, mpio->nr_bytes);
1da177e4 1508 }
1da177e4 1509
7ed8578a 1510 return r;
1da177e4
LT
1511}
1512
4e4cbee9
CH
1513static int multipath_end_io_bio(struct dm_target *ti, struct bio *clone,
1514 blk_status_t *error)
76e33fe4 1515{
14ef1e48
CH
1516 struct multipath *m = ti->private;
1517 struct dm_mpath_io *mpio = get_mpio_from_bio(clone);
1518 struct pgpath *pgpath = mpio->pgpath;
76e33fe4 1519 unsigned long flags;
1be56909 1520 int r = DM_ENDIO_DONE;
76e33fe4 1521
4e4cbee9 1522 if (!*error || noretry_error(*error))
14ef1e48 1523 goto done;
76e33fe4 1524
14ef1e48
CH
1525 if (pgpath)
1526 fail_path(pgpath);
76e33fe4 1527
ca5beb76 1528 if (atomic_read(&m->nr_valid_paths) == 0 &&
18a482f5
CH
1529 !test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags)) {
1530 dm_report_EIO(m);
4e4cbee9 1531 *error = BLK_STS_IOERR;
14ef1e48 1532 goto done;
18a482f5 1533 }
76e33fe4
MS
1534
1535 /* Queue for the daemon to resubmit */
bf661be1 1536 dm_bio_restore(get_bio_details_from_bio(clone), clone);
76e33fe4
MS
1537
1538 spin_lock_irqsave(&m->lock, flags);
1539 bio_list_add(&m->queued_bios, clone);
1540 spin_unlock_irqrestore(&m->lock, flags);
1541 if (!test_bit(MPATHF_QUEUE_IO, &m->flags))
1542 queue_work(kmultipathd, &m->process_queued_bios);
1543
1be56909 1544 r = DM_ENDIO_INCOMPLETE;
14ef1e48 1545done:
76e33fe4 1546 if (pgpath) {
14ef1e48
CH
1547 struct path_selector *ps = &pgpath->pg->ps;
1548
76e33fe4
MS
1549 if (ps->type->end_io)
1550 ps->type->end_io(ps, &pgpath->path, mpio->nr_bytes);
1551 }
1552
1be56909 1553 return r;
76e33fe4
MS
1554}
1555
1da177e4
LT
1556/*
1557 * Suspend can't complete until all the I/O is processed so if
436d4108
AK
1558 * the last path fails we must error any remaining I/O.
1559 * Note that if the freeze_bdev fails while suspending, the
1560 * queue_if_no_path state is lost - userspace should reset it.
1da177e4
LT
1561 */
1562static void multipath_presuspend(struct dm_target *ti)
1563{
7943bd6d 1564 struct multipath *m = ti->private;
1da177e4 1565
be7d31cc 1566 queue_if_no_path(m, false, true);
1da177e4
LT
1567}
1568
6df400ab
KU
1569static void multipath_postsuspend(struct dm_target *ti)
1570{
6380f26f
MA
1571 struct multipath *m = ti->private;
1572
1573 mutex_lock(&m->work_mutex);
2bded7bd 1574 flush_multipath_work(m);
6380f26f 1575 mutex_unlock(&m->work_mutex);
6df400ab
KU
1576}
1577
436d4108
AK
1578/*
1579 * Restore the queue_if_no_path setting.
1580 */
1da177e4
LT
1581static void multipath_resume(struct dm_target *ti)
1582{
7943bd6d 1583 struct multipath *m = ti->private;
1814f2e3 1584 unsigned long flags;
1da177e4 1585
1814f2e3 1586 spin_lock_irqsave(&m->lock, flags);
9a8ac3ae
BVA
1587 assign_bit(test_bit(MPATHF_SAVED_QUEUE_IF_NO_PATH, &m->flags),
1588 MPATHF_QUEUE_IF_NO_PATH, &m->flags);
1814f2e3 1589 spin_unlock_irqrestore(&m->lock, flags);
1da177e4
LT
1590}
1591
1592/*
1593 * Info output has the following format:
1594 * num_multipath_feature_args [multipath_feature_args]*
1595 * num_handler_status_args [handler_status_args]*
1596 * num_groups init_group_number
1597 * [A|D|E num_ps_status_args [ps_status_args]*
1598 * num_paths num_selector_args
1599 * [path_dev A|F fail_count [selector_args]* ]+ ]+
1600 *
1601 * Table output has the following format (identical to the constructor string):
1602 * num_feature_args [features_args]*
1603 * num_handler_args hw_handler [hw_handler_args]*
1604 * num_groups init_group_number
1605 * [priority selector-name num_ps_args [ps_args]*
1606 * num_paths num_selector_args [path_dev [selector_args]* ]+ ]+
1607 */
fd7c092e
MP
1608static void multipath_status(struct dm_target *ti, status_type_t type,
1609 unsigned status_flags, char *result, unsigned maxlen)
1da177e4
LT
1610{
1611 int sz = 0;
1612 unsigned long flags;
7943bd6d 1613 struct multipath *m = ti->private;
1da177e4
LT
1614 struct priority_group *pg;
1615 struct pgpath *p;
1616 unsigned pg_num;
1617 char state;
1618
1619 spin_lock_irqsave(&m->lock, flags);
1620
1621 /* Features */
1622 if (type == STATUSTYPE_INFO)
91e968aa
MS
1623 DMEMIT("2 %u %u ", test_bit(MPATHF_QUEUE_IO, &m->flags),
1624 atomic_read(&m->pg_init_count));
c9e45581 1625 else {
518257b1 1626 DMEMIT("%u ", test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags) +
4e2d19e4 1627 (m->pg_init_retries > 0) * 2 +
a58a935d 1628 (m->pg_init_delay_msecs != DM_PG_INIT_DELAY_DEFAULT) * 2 +
e83068a5
MS
1629 test_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags) +
1630 (m->queue_mode != DM_TYPE_REQUEST_BASED) * 2);
1631
518257b1 1632 if (test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))
c9e45581
DW
1633 DMEMIT("queue_if_no_path ");
1634 if (m->pg_init_retries)
1635 DMEMIT("pg_init_retries %u ", m->pg_init_retries);
4e2d19e4
CS
1636 if (m->pg_init_delay_msecs != DM_PG_INIT_DELAY_DEFAULT)
1637 DMEMIT("pg_init_delay_msecs %u ", m->pg_init_delay_msecs);
518257b1 1638 if (test_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags))
a58a935d 1639 DMEMIT("retain_attached_hw_handler ");
e83068a5
MS
1640 if (m->queue_mode != DM_TYPE_REQUEST_BASED) {
1641 switch(m->queue_mode) {
1642 case DM_TYPE_BIO_BASED:
1643 DMEMIT("queue_mode bio ");
1644 break;
1645 case DM_TYPE_MQ_REQUEST_BASED:
1646 DMEMIT("queue_mode mq ");
1647 break;
7e0d574f
BVA
1648 default:
1649 WARN_ON_ONCE(true);
1650 break;
e83068a5
MS
1651 }
1652 }
c9e45581 1653 }
1da177e4 1654
cfae5c9b 1655 if (!m->hw_handler_name || type == STATUSTYPE_INFO)
1da177e4
LT
1656 DMEMIT("0 ");
1657 else
cfae5c9b 1658 DMEMIT("1 %s ", m->hw_handler_name);
1da177e4
LT
1659
1660 DMEMIT("%u ", m->nr_priority_groups);
1661
1662 if (m->next_pg)
1663 pg_num = m->next_pg->pg_num;
1664 else if (m->current_pg)
1665 pg_num = m->current_pg->pg_num;
1666 else
a490a07a 1667 pg_num = (m->nr_priority_groups ? 1 : 0);
1da177e4
LT
1668
1669 DMEMIT("%u ", pg_num);
1670
1671 switch (type) {
1672 case STATUSTYPE_INFO:
1673 list_for_each_entry(pg, &m->priority_groups, list) {
1674 if (pg->bypassed)
1675 state = 'D'; /* Disabled */
1676 else if (pg == m->current_pg)
1677 state = 'A'; /* Currently Active */
1678 else
1679 state = 'E'; /* Enabled */
1680
1681 DMEMIT("%c ", state);
1682
1683 if (pg->ps.type->status)
1684 sz += pg->ps.type->status(&pg->ps, NULL, type,
1685 result + sz,
1686 maxlen - sz);
1687 else
1688 DMEMIT("0 ");
1689
1690 DMEMIT("%u %u ", pg->nr_pgpaths,
1691 pg->ps.type->info_args);
1692
1693 list_for_each_entry(p, &pg->pgpaths, list) {
1694 DMEMIT("%s %s %u ", p->path.dev->name,
6680073d 1695 p->is_active ? "A" : "F",
1da177e4
LT
1696 p->fail_count);
1697 if (pg->ps.type->status)
1698 sz += pg->ps.type->status(&pg->ps,
1699 &p->path, type, result + sz,
1700 maxlen - sz);
1701 }
1702 }
1703 break;
1704
1705 case STATUSTYPE_TABLE:
1706 list_for_each_entry(pg, &m->priority_groups, list) {
1707 DMEMIT("%s ", pg->ps.type->name);
1708
1709 if (pg->ps.type->status)
1710 sz += pg->ps.type->status(&pg->ps, NULL, type,
1711 result + sz,
1712 maxlen - sz);
1713 else
1714 DMEMIT("0 ");
1715
1716 DMEMIT("%u %u ", pg->nr_pgpaths,
1717 pg->ps.type->table_args);
1718
1719 list_for_each_entry(p, &pg->pgpaths, list) {
1720 DMEMIT("%s ", p->path.dev->name);
1721 if (pg->ps.type->status)
1722 sz += pg->ps.type->status(&pg->ps,
1723 &p->path, type, result + sz,
1724 maxlen - sz);
1725 }
1726 }
1727 break;
1728 }
1729
1730 spin_unlock_irqrestore(&m->lock, flags);
1da177e4
LT
1731}
1732
1733static int multipath_message(struct dm_target *ti, unsigned argc, char **argv)
1734{
6380f26f 1735 int r = -EINVAL;
1da177e4 1736 struct dm_dev *dev;
7943bd6d 1737 struct multipath *m = ti->private;
1da177e4
LT
1738 action_fn action;
1739
6380f26f
MA
1740 mutex_lock(&m->work_mutex);
1741
c2f3d24b
KU
1742 if (dm_suspended(ti)) {
1743 r = -EBUSY;
1744 goto out;
1745 }
1746
1da177e4 1747 if (argc == 1) {
498f0103 1748 if (!strcasecmp(argv[0], "queue_if_no_path")) {
be7d31cc 1749 r = queue_if_no_path(m, true, false);
6380f26f 1750 goto out;
498f0103 1751 } else if (!strcasecmp(argv[0], "fail_if_no_path")) {
be7d31cc 1752 r = queue_if_no_path(m, false, false);
6380f26f
MA
1753 goto out;
1754 }
1da177e4
LT
1755 }
1756
6380f26f 1757 if (argc != 2) {
a356e426 1758 DMWARN("Invalid multipath message arguments. Expected 2 arguments, got %d.", argc);
6380f26f
MA
1759 goto out;
1760 }
1da177e4 1761
498f0103 1762 if (!strcasecmp(argv[0], "disable_group")) {
be7d31cc 1763 r = bypass_pg_num(m, argv[1], true);
6380f26f 1764 goto out;
498f0103 1765 } else if (!strcasecmp(argv[0], "enable_group")) {
be7d31cc 1766 r = bypass_pg_num(m, argv[1], false);
6380f26f 1767 goto out;
498f0103 1768 } else if (!strcasecmp(argv[0], "switch_group")) {
6380f26f
MA
1769 r = switch_pg_num(m, argv[1]);
1770 goto out;
498f0103 1771 } else if (!strcasecmp(argv[0], "reinstate_path"))
1da177e4 1772 action = reinstate_path;
498f0103 1773 else if (!strcasecmp(argv[0], "fail_path"))
1da177e4 1774 action = fail_path;
6380f26f 1775 else {
a356e426 1776 DMWARN("Unrecognised multipath message received: %s", argv[0]);
6380f26f
MA
1777 goto out;
1778 }
1da177e4 1779
8215d6ec 1780 r = dm_get_device(ti, argv[1], dm_table_get_mode(ti->table), &dev);
1da177e4 1781 if (r) {
72d94861 1782 DMWARN("message: error getting device %s",
1da177e4 1783 argv[1]);
6380f26f 1784 goto out;
1da177e4
LT
1785 }
1786
1787 r = action_dev(m, dev, action);
1788
1789 dm_put_device(ti, dev);
1790
6380f26f
MA
1791out:
1792 mutex_unlock(&m->work_mutex);
1da177e4 1793 return r;
1da177e4
LT
1794}
1795
e56f81e0
CH
1796static int multipath_prepare_ioctl(struct dm_target *ti,
1797 struct block_device **bdev, fmode_t *mode)
9af4aa30 1798{
35991652 1799 struct multipath *m = ti->private;
2da1610a 1800 struct pgpath *current_pgpath;
35991652
MP
1801 int r;
1802
2da1610a
MS
1803 current_pgpath = lockless_dereference(m->current_pgpath);
1804 if (!current_pgpath)
1805 current_pgpath = choose_pgpath(m, 0);
9af4aa30 1806
2da1610a 1807 if (current_pgpath) {
518257b1 1808 if (!test_bit(MPATHF_QUEUE_IO, &m->flags)) {
2da1610a
MS
1809 *bdev = current_pgpath->path.dev->bdev;
1810 *mode = current_pgpath->path.dev->mode;
43e43c9e
JN
1811 r = 0;
1812 } else {
1813 /* pg_init has not started or completed */
1814 r = -ENOTCONN;
1815 }
1816 } else {
1817 /* No path is available */
518257b1 1818 if (test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))
43e43c9e
JN
1819 r = -ENOTCONN;
1820 else
1821 r = -EIO;
e90dae1f 1822 }
9af4aa30 1823
5bbbfdf6 1824 if (r == -ENOTCONN) {
2da1610a 1825 if (!lockless_dereference(m->current_pg)) {
3e9f1be1 1826 /* Path status changed, redo selection */
2da1610a 1827 (void) choose_pgpath(m, 0);
3e9f1be1 1828 }
518257b1 1829 if (test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags))
2da1610a 1830 pg_init_all_paths(m);
63d832c3 1831 dm_table_run_md_queue_async(m->ti->table);
7e48c768 1832 process_queued_io_list(m);
3e9f1be1 1833 }
35991652 1834
e56f81e0
CH
1835 /*
1836 * Only pass ioctls through if the device sizes match exactly.
1837 */
1838 if (!r && ti->len != i_size_read((*bdev)->bd_inode) >> SECTOR_SHIFT)
1839 return 1;
1840 return r;
9af4aa30
MB
1841}
1842
af4874e0
MS
1843static int multipath_iterate_devices(struct dm_target *ti,
1844 iterate_devices_callout_fn fn, void *data)
1845{
1846 struct multipath *m = ti->private;
1847 struct priority_group *pg;
1848 struct pgpath *p;
1849 int ret = 0;
1850
1851 list_for_each_entry(pg, &m->priority_groups, list) {
1852 list_for_each_entry(p, &pg->pgpaths, list) {
5dea271b 1853 ret = fn(ti, p->path.dev, ti->begin, ti->len, data);
af4874e0
MS
1854 if (ret)
1855 goto out;
1856 }
1857 }
1858
1859out:
1860 return ret;
1861}
1862
9f54cec5 1863static int pgpath_busy(struct pgpath *pgpath)
f40c67f0
KU
1864{
1865 struct request_queue *q = bdev_get_queue(pgpath->path.dev->bdev);
1866
52b09914 1867 return blk_lld_busy(q);
f40c67f0
KU
1868}
1869
1870/*
1871 * We return "busy", only when we can map I/Os but underlying devices
1872 * are busy (so even if we map I/Os now, the I/Os will wait on
1873 * the underlying queue).
1874 * In other words, if we want to kill I/Os or queue them inside us
1875 * due to map unavailability, we don't return "busy". Otherwise,
1876 * dm core won't give us the I/Os and we can't do what we want.
1877 */
1878static int multipath_busy(struct dm_target *ti)
1879{
be7d31cc 1880 bool busy = false, has_active = false;
f40c67f0 1881 struct multipath *m = ti->private;
2da1610a 1882 struct priority_group *pg, *next_pg;
f40c67f0 1883 struct pgpath *pgpath;
f40c67f0 1884
b88efd43
MS
1885 /* pg_init in progress */
1886 if (atomic_read(&m->pg_init_in_progress))
2da1610a
MS
1887 return true;
1888
b88efd43
MS
1889 /* no paths available, for blk-mq: rely on IO mapping to delay requeue */
1890 if (!atomic_read(&m->nr_valid_paths) && test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))
1891 return (m->queue_mode != DM_TYPE_MQ_REQUEST_BASED);
1892
f40c67f0 1893 /* Guess which priority_group will be used at next mapping time */
2da1610a
MS
1894 pg = lockless_dereference(m->current_pg);
1895 next_pg = lockless_dereference(m->next_pg);
1896 if (unlikely(!lockless_dereference(m->current_pgpath) && next_pg))
1897 pg = next_pg;
1898
1899 if (!pg) {
f40c67f0
KU
1900 /*
1901 * We don't know which pg will be used at next mapping time.
2da1610a 1902 * We don't call choose_pgpath() here to avoid to trigger
f40c67f0
KU
1903 * pg_init just by busy checking.
1904 * So we don't know whether underlying devices we will be using
1905 * at next mapping time are busy or not. Just try mapping.
1906 */
2da1610a
MS
1907 return busy;
1908 }
f40c67f0
KU
1909
1910 /*
1911 * If there is one non-busy active path at least, the path selector
1912 * will be able to select it. So we consider such a pg as not busy.
1913 */
be7d31cc 1914 busy = true;
2da1610a 1915 list_for_each_entry(pgpath, &pg->pgpaths, list) {
f40c67f0 1916 if (pgpath->is_active) {
be7d31cc 1917 has_active = true;
9f54cec5 1918 if (!pgpath_busy(pgpath)) {
be7d31cc 1919 busy = false;
f40c67f0
KU
1920 break;
1921 }
1922 }
2da1610a 1923 }
f40c67f0 1924
2da1610a 1925 if (!has_active) {
f40c67f0
KU
1926 /*
1927 * No active path in this pg, so this pg won't be used and
1928 * the current_pg will be changed at next mapping time.
1929 * We need to try mapping to determine it.
1930 */
be7d31cc 1931 busy = false;
2da1610a 1932 }
f40c67f0
KU
1933
1934 return busy;
1935}
1936
1da177e4
LT
1937/*-----------------------------------------------------------------
1938 * Module setup
1939 *---------------------------------------------------------------*/
1940static struct target_type multipath_target = {
1941 .name = "multipath",
e83068a5 1942 .version = {1, 12, 0},
16f12266 1943 .features = DM_TARGET_SINGLETON | DM_TARGET_IMMUTABLE,
1da177e4
LT
1944 .module = THIS_MODULE,
1945 .ctr = multipath_ctr,
1946 .dtr = multipath_dtr,
e5863d9a
MS
1947 .clone_and_map_rq = multipath_clone_and_map,
1948 .release_clone_rq = multipath_release_clone,
f40c67f0 1949 .rq_end_io = multipath_end_io,
76e33fe4
MS
1950 .map = multipath_map_bio,
1951 .end_io = multipath_end_io_bio,
1952 .presuspend = multipath_presuspend,
1953 .postsuspend = multipath_postsuspend,
1954 .resume = multipath_resume,
1955 .status = multipath_status,
1956 .message = multipath_message,
1957 .prepare_ioctl = multipath_prepare_ioctl,
1958 .iterate_devices = multipath_iterate_devices,
1959 .busy = multipath_busy,
1960};
1961
1da177e4
LT
1962static int __init dm_multipath_init(void)
1963{
1964 int r;
1965
1da177e4
LT
1966 r = dm_register_target(&multipath_target);
1967 if (r < 0) {
76e33fe4 1968 DMERR("request-based register failed %d", r);
ff658e9c
JT
1969 r = -EINVAL;
1970 goto bad_register_target;
1da177e4
LT
1971 }
1972
4d4d66ab 1973 kmultipathd = alloc_workqueue("kmpathd", WQ_MEM_RECLAIM, 0);
c557308e 1974 if (!kmultipathd) {
0cd33124 1975 DMERR("failed to create workqueue kmpathd");
ff658e9c
JT
1976 r = -ENOMEM;
1977 goto bad_alloc_kmultipathd;
c557308e
AK
1978 }
1979
bab7cfc7
CS
1980 /*
1981 * A separate workqueue is used to handle the device handlers
1982 * to avoid overloading existing workqueue. Overloading the
1983 * old workqueue would also create a bottleneck in the
1984 * path of the storage hardware device activation.
1985 */
4d4d66ab
TH
1986 kmpath_handlerd = alloc_ordered_workqueue("kmpath_handlerd",
1987 WQ_MEM_RECLAIM);
bab7cfc7
CS
1988 if (!kmpath_handlerd) {
1989 DMERR("failed to create workqueue kmpath_handlerd");
ff658e9c
JT
1990 r = -ENOMEM;
1991 goto bad_alloc_kmpath_handlerd;
bab7cfc7
CS
1992 }
1993
ff658e9c
JT
1994 return 0;
1995
1996bad_alloc_kmpath_handlerd:
1997 destroy_workqueue(kmultipathd);
1998bad_alloc_kmultipathd:
1999 dm_unregister_target(&multipath_target);
2000bad_register_target:
1da177e4
LT
2001 return r;
2002}
2003
2004static void __exit dm_multipath_exit(void)
2005{
bab7cfc7 2006 destroy_workqueue(kmpath_handlerd);
c557308e
AK
2007 destroy_workqueue(kmultipathd);
2008
10d3bd09 2009 dm_unregister_target(&multipath_target);
1da177e4
LT
2010}
2011
1da177e4
LT
2012module_init(dm_multipath_init);
2013module_exit(dm_multipath_exit);
2014
2015MODULE_DESCRIPTION(DM_NAME " multipath target");
2016MODULE_AUTHOR("Sistina Software <dm-devel@redhat.com>");
2017MODULE_LICENSE("GPL");