]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - drivers/md/dm-mpath.c
ASoC: eukrea-tlv320: Remove include line of fsl_ssi.h
[mirror_ubuntu-hirsute-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
506458ef 369 if (unlikely(READ_ONCE(m->current_pg) != pg)) {
2da1610a
MS
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? */
506458ef 393 if (READ_ONCE(m->next_pg)) {
2da1610a 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 408check_current_pg:
506458ef 409 pg = READ_ONCE(m->current_pg);
2da1610a
MS
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? */
506458ef 476 pgpath = READ_ONCE(m->current_pgpath);
2da1610a
MS
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 501 bool queue_dying = blk_queue_dying(q);
7083abbb
BVA
502 if (queue_dying) {
503 atomic_inc(&m->pg_init_in_progress);
504 activate_or_offline_path(pgpath);
7083abbb 505 }
06eb061f 506 return DM_MAPIO_DELAY_REQUEUE;
e5863d9a 507 }
eb8db831
CH
508 clone->bio = clone->biotail = NULL;
509 clone->rq_disk = bdev->bd_disk;
510 clone->cmd_flags |= REQ_FAILFAST_TRANSPORT;
511 *__clone = clone;
e5863d9a 512
9bf59a61
MS
513 if (pgpath->pg->ps.type->start_io)
514 pgpath->pg->ps.type->start_io(&pgpath->pg->ps,
515 &pgpath->path,
516 nr_bytes);
2eb6e1e3 517 return DM_MAPIO_REMAPPED;
1da177e4
LT
518}
519
e5863d9a
MS
520static void multipath_release_clone(struct request *clone)
521{
eb8db831 522 blk_put_request(clone);
e5863d9a
MS
523}
524
76e33fe4
MS
525/*
526 * Map cloned bios (bio-based multipath)
527 */
528static int __multipath_map_bio(struct multipath *m, struct bio *bio, struct dm_mpath_io *mpio)
529{
530 size_t nr_bytes = bio->bi_iter.bi_size;
531 struct pgpath *pgpath;
532 unsigned long flags;
533 bool queue_io;
534
535 /* Do we need to select a new pgpath? */
506458ef 536 pgpath = READ_ONCE(m->current_pgpath);
76e33fe4
MS
537 queue_io = test_bit(MPATHF_QUEUE_IO, &m->flags);
538 if (!pgpath || !queue_io)
539 pgpath = choose_pgpath(m, nr_bytes);
540
541 if ((pgpath && queue_io) ||
542 (!pgpath && test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))) {
543 /* Queue for the daemon to resubmit */
544 spin_lock_irqsave(&m->lock, flags);
545 bio_list_add(&m->queued_bios, bio);
546 spin_unlock_irqrestore(&m->lock, flags);
547 /* PG_INIT_REQUIRED cannot be set without QUEUE_IO */
548 if (queue_io || test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags))
549 pg_init_all_paths(m);
550 else if (!queue_io)
551 queue_work(kmultipathd, &m->process_queued_bios);
552 return DM_MAPIO_SUBMITTED;
553 }
554
555 if (!pgpath) {
ca5beb76
BVA
556 if (test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))
557 return DM_MAPIO_REQUEUE;
18a482f5 558 dm_report_EIO(m);
846785e6 559 return DM_MAPIO_KILL;
76e33fe4
MS
560 }
561
562 mpio->pgpath = pgpath;
563 mpio->nr_bytes = nr_bytes;
564
4e4cbee9 565 bio->bi_status = 0;
74d46992 566 bio_set_dev(bio, pgpath->path.dev->bdev);
1eff9d32 567 bio->bi_opf |= REQ_FAILFAST_TRANSPORT;
76e33fe4
MS
568
569 if (pgpath->pg->ps.type->start_io)
570 pgpath->pg->ps.type->start_io(&pgpath->pg->ps,
571 &pgpath->path,
572 nr_bytes);
573 return DM_MAPIO_REMAPPED;
574}
575
576static int multipath_map_bio(struct dm_target *ti, struct bio *bio)
577{
578 struct multipath *m = ti->private;
bf661be1
MS
579 struct dm_mpath_io *mpio = NULL;
580
581 multipath_init_per_bio_data(bio, &mpio, NULL);
76e33fe4
MS
582
583 return __multipath_map_bio(m, bio, mpio);
584}
585
7e48c768 586static void process_queued_io_list(struct multipath *m)
76e33fe4 587{
7e48c768
MS
588 if (m->queue_mode == DM_TYPE_MQ_REQUEST_BASED)
589 dm_mq_kick_requeue_list(dm_table_get_md(m->ti->table));
590 else if (m->queue_mode == DM_TYPE_BIO_BASED)
76e33fe4
MS
591 queue_work(kmultipathd, &m->process_queued_bios);
592}
593
594static void process_queued_bios(struct work_struct *work)
595{
596 int r;
597 unsigned long flags;
598 struct bio *bio;
599 struct bio_list bios;
600 struct blk_plug plug;
601 struct multipath *m =
602 container_of(work, struct multipath, process_queued_bios);
603
604 bio_list_init(&bios);
605
606 spin_lock_irqsave(&m->lock, flags);
607
608 if (bio_list_empty(&m->queued_bios)) {
609 spin_unlock_irqrestore(&m->lock, flags);
610 return;
611 }
612
613 bio_list_merge(&bios, &m->queued_bios);
614 bio_list_init(&m->queued_bios);
615
616 spin_unlock_irqrestore(&m->lock, flags);
617
618 blk_start_plug(&plug);
619 while ((bio = bio_list_pop(&bios))) {
620 r = __multipath_map_bio(m, bio, get_mpio_from_bio(bio));
846785e6
CH
621 switch (r) {
622 case DM_MAPIO_KILL:
4e4cbee9
CH
623 bio->bi_status = BLK_STS_IOERR;
624 bio_endio(bio);
047385b3 625 break;
846785e6 626 case DM_MAPIO_REQUEUE:
4e4cbee9 627 bio->bi_status = BLK_STS_DM_REQUEUE;
76e33fe4 628 bio_endio(bio);
846785e6
CH
629 break;
630 case DM_MAPIO_REMAPPED:
76e33fe4 631 generic_make_request(bio);
846785e6 632 break;
9157c8d3
BVA
633 case 0:
634 break;
635 default:
636 WARN_ONCE(true, "__multipath_map_bio() returned %d\n", r);
846785e6 637 }
76e33fe4
MS
638 }
639 blk_finish_plug(&plug);
640}
641
1da177e4
LT
642/*
643 * If we run out of usable paths, should we queue I/O or error it?
644 */
be7d31cc
MS
645static int queue_if_no_path(struct multipath *m, bool queue_if_no_path,
646 bool save_old_value)
1da177e4
LT
647{
648 unsigned long flags;
649
650 spin_lock_irqsave(&m->lock, flags);
5307e2ad
LW
651 assign_bit(MPATHF_SAVED_QUEUE_IF_NO_PATH, &m->flags,
652 (save_old_value && test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags)) ||
653 (!save_old_value && queue_if_no_path));
654 assign_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags,
655 queue_if_no_path || dm_noflush_suspending(m->ti));
1da177e4
LT
656 spin_unlock_irqrestore(&m->lock, flags);
657
76e33fe4 658 if (!queue_if_no_path) {
63d832c3 659 dm_table_run_md_queue_async(m->ti->table);
7e48c768 660 process_queued_io_list(m);
76e33fe4 661 }
63d832c3 662
1da177e4
LT
663 return 0;
664}
665
1da177e4
LT
666/*
667 * An event is triggered whenever a path is taken out of use.
668 * Includes path failure and PG bypass.
669 */
c4028958 670static void trigger_event(struct work_struct *work)
1da177e4 671{
c4028958
DH
672 struct multipath *m =
673 container_of(work, struct multipath, trigger_event);
1da177e4
LT
674
675 dm_table_event(m->ti->table);
676}
677
678/*-----------------------------------------------------------------
679 * Constructor/argument parsing:
680 * <#multipath feature args> [<arg>]*
681 * <#hw_handler args> [hw_handler [<arg>]*]
682 * <#priority groups>
683 * <initial priority group>
684 * [<selector> <#selector args> [<arg>]*
685 * <#paths> <#per-path selector args>
686 * [<path> [<arg>]* ]+ ]+
687 *---------------------------------------------------------------*/
498f0103 688static int parse_path_selector(struct dm_arg_set *as, struct priority_group *pg,
1da177e4
LT
689 struct dm_target *ti)
690{
691 int r;
692 struct path_selector_type *pst;
693 unsigned ps_argc;
694
5916a22b 695 static const struct dm_arg _args[] = {
72d94861 696 {0, 1024, "invalid number of path selector args"},
1da177e4
LT
697 };
698
498f0103 699 pst = dm_get_path_selector(dm_shift_arg(as));
1da177e4 700 if (!pst) {
72d94861 701 ti->error = "unknown path selector type";
1da177e4
LT
702 return -EINVAL;
703 }
704
498f0103 705 r = dm_read_arg_group(_args, as, &ps_argc, &ti->error);
371b2e34
MP
706 if (r) {
707 dm_put_path_selector(pst);
1da177e4 708 return -EINVAL;
371b2e34 709 }
1da177e4
LT
710
711 r = pst->create(&pg->ps, ps_argc, as->argv);
712 if (r) {
713 dm_put_path_selector(pst);
72d94861 714 ti->error = "path selector constructor failed";
1da177e4
LT
715 return r;
716 }
717
718 pg->ps.type = pst;
498f0103 719 dm_consume_args(as, ps_argc);
1da177e4
LT
720
721 return 0;
722}
723
498f0103 724static struct pgpath *parse_path(struct dm_arg_set *as, struct path_selector *ps,
1da177e4
LT
725 struct dm_target *ti)
726{
727 int r;
728 struct pgpath *p;
ae11b1b3 729 struct multipath *m = ti->private;
a58a935d
MS
730 struct request_queue *q = NULL;
731 const char *attached_handler_name;
1da177e4
LT
732
733 /* we need at least a path arg */
734 if (as->argc < 1) {
72d94861 735 ti->error = "no device given";
01460f35 736 return ERR_PTR(-EINVAL);
1da177e4
LT
737 }
738
739 p = alloc_pgpath();
740 if (!p)
01460f35 741 return ERR_PTR(-ENOMEM);
1da177e4 742
498f0103 743 r = dm_get_device(ti, dm_shift_arg(as), dm_table_get_mode(ti->table),
8215d6ec 744 &p->path.dev);
1da177e4 745 if (r) {
72d94861 746 ti->error = "error getting device";
1da177e4
LT
747 goto bad;
748 }
749
518257b1 750 if (test_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags) || m->hw_handler_name)
a58a935d
MS
751 q = bdev_get_queue(p->path.dev->bdev);
752
518257b1 753 if (test_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags)) {
1bab0de0 754retain:
a58a935d
MS
755 attached_handler_name = scsi_dh_attached_handler_name(q, GFP_KERNEL);
756 if (attached_handler_name) {
54cd640d 757 /*
758 * Clear any hw_handler_params associated with a
759 * handler that isn't already attached.
760 */
761 if (m->hw_handler_name && strcmp(attached_handler_name, m->hw_handler_name)) {
762 kfree(m->hw_handler_params);
763 m->hw_handler_params = NULL;
764 }
765
a58a935d
MS
766 /*
767 * Reset hw_handler_name to match the attached handler
a58a935d
MS
768 *
769 * NB. This modifies the table line to show the actual
770 * handler instead of the original table passed in.
771 */
772 kfree(m->hw_handler_name);
773 m->hw_handler_name = attached_handler_name;
a58a935d
MS
774 }
775 }
a0cf7ea9 776
a58a935d 777 if (m->hw_handler_name) {
a0cf7ea9
HR
778 r = scsi_dh_attach(q, m->hw_handler_name);
779 if (r == -EBUSY) {
1bab0de0 780 char b[BDEVNAME_SIZE];
a0cf7ea9 781
1bab0de0
CH
782 printk(KERN_INFO "dm-mpath: retaining handler on device %s\n",
783 bdevname(p->path.dev->bdev, b));
784 goto retain;
785 }
ae11b1b3 786 if (r < 0) {
a0cf7ea9 787 ti->error = "error attaching hardware handler";
ae11b1b3
HR
788 dm_put_device(ti, p->path.dev);
789 goto bad;
790 }
2bfd2e13
CS
791
792 if (m->hw_handler_params) {
793 r = scsi_dh_set_params(q, m->hw_handler_params);
794 if (r < 0) {
795 ti->error = "unable to set hardware "
796 "handler parameters";
2bfd2e13
CS
797 dm_put_device(ti, p->path.dev);
798 goto bad;
799 }
800 }
ae11b1b3
HR
801 }
802
1da177e4
LT
803 r = ps->type->add_path(ps, &p->path, as->argc, as->argv, &ti->error);
804 if (r) {
805 dm_put_device(ti, p->path.dev);
806 goto bad;
807 }
808
809 return p;
810
811 bad:
812 free_pgpath(p);
01460f35 813 return ERR_PTR(r);
1da177e4
LT
814}
815
498f0103 816static struct priority_group *parse_priority_group(struct dm_arg_set *as,
28f16c20 817 struct multipath *m)
1da177e4 818{
5916a22b 819 static const struct dm_arg _args[] = {
72d94861
AK
820 {1, 1024, "invalid number of paths"},
821 {0, 1024, "invalid number of selector args"}
1da177e4
LT
822 };
823
824 int r;
498f0103 825 unsigned i, nr_selector_args, nr_args;
1da177e4 826 struct priority_group *pg;
28f16c20 827 struct dm_target *ti = m->ti;
1da177e4
LT
828
829 if (as->argc < 2) {
830 as->argc = 0;
01460f35
BM
831 ti->error = "not enough priority group arguments";
832 return ERR_PTR(-EINVAL);
1da177e4
LT
833 }
834
835 pg = alloc_priority_group();
836 if (!pg) {
72d94861 837 ti->error = "couldn't allocate priority group";
01460f35 838 return ERR_PTR(-ENOMEM);
1da177e4
LT
839 }
840 pg->m = m;
841
842 r = parse_path_selector(as, pg, ti);
843 if (r)
844 goto bad;
845
846 /*
847 * read the paths
848 */
498f0103 849 r = dm_read_arg(_args, as, &pg->nr_pgpaths, &ti->error);
1da177e4
LT
850 if (r)
851 goto bad;
852
498f0103 853 r = dm_read_arg(_args + 1, as, &nr_selector_args, &ti->error);
1da177e4
LT
854 if (r)
855 goto bad;
856
498f0103 857 nr_args = 1 + nr_selector_args;
1da177e4
LT
858 for (i = 0; i < pg->nr_pgpaths; i++) {
859 struct pgpath *pgpath;
498f0103 860 struct dm_arg_set path_args;
1da177e4 861
498f0103 862 if (as->argc < nr_args) {
148acff6 863 ti->error = "not enough path parameters";
6bbf79a1 864 r = -EINVAL;
1da177e4 865 goto bad;
148acff6 866 }
1da177e4 867
498f0103 868 path_args.argc = nr_args;
1da177e4
LT
869 path_args.argv = as->argv;
870
871 pgpath = parse_path(&path_args, &pg->ps, ti);
01460f35
BM
872 if (IS_ERR(pgpath)) {
873 r = PTR_ERR(pgpath);
1da177e4 874 goto bad;
01460f35 875 }
1da177e4
LT
876
877 pgpath->pg = pg;
878 list_add_tail(&pgpath->list, &pg->pgpaths);
498f0103 879 dm_consume_args(as, nr_args);
1da177e4
LT
880 }
881
882 return pg;
883
884 bad:
885 free_priority_group(pg, ti);
01460f35 886 return ERR_PTR(r);
1da177e4
LT
887}
888
498f0103 889static int parse_hw_handler(struct dm_arg_set *as, struct multipath *m)
1da177e4 890{
1da177e4 891 unsigned hw_argc;
2bfd2e13 892 int ret;
28f16c20 893 struct dm_target *ti = m->ti;
1da177e4 894
5916a22b 895 static const struct dm_arg _args[] = {
72d94861 896 {0, 1024, "invalid number of hardware handler args"},
1da177e4
LT
897 };
898
498f0103 899 if (dm_read_arg_group(_args, as, &hw_argc, &ti->error))
1da177e4
LT
900 return -EINVAL;
901
902 if (!hw_argc)
903 return 0;
904
e83068a5 905 if (m->queue_mode == DM_TYPE_BIO_BASED) {
76e33fe4
MS
906 dm_consume_args(as, hw_argc);
907 DMERR("bio-based multipath doesn't allow hardware handler args");
908 return 0;
909 }
910
498f0103 911 m->hw_handler_name = kstrdup(dm_shift_arg(as), GFP_KERNEL);
f97dc421 912 if (!m->hw_handler_name)
913 return -EINVAL;
14e98c5c 914
2bfd2e13
CS
915 if (hw_argc > 1) {
916 char *p;
917 int i, j, len = 4;
918
919 for (i = 0; i <= hw_argc - 2; i++)
920 len += strlen(as->argv[i]) + 1;
921 p = m->hw_handler_params = kzalloc(len, GFP_KERNEL);
922 if (!p) {
923 ti->error = "memory allocation failed";
924 ret = -ENOMEM;
925 goto fail;
926 }
927 j = sprintf(p, "%d", hw_argc - 1);
928 for (i = 0, p+=j+1; i <= hw_argc - 2; i++, p+=j+1)
929 j = sprintf(p, "%s", as->argv[i]);
930 }
498f0103 931 dm_consume_args(as, hw_argc - 1);
1da177e4
LT
932
933 return 0;
2bfd2e13
CS
934fail:
935 kfree(m->hw_handler_name);
936 m->hw_handler_name = NULL;
937 return ret;
1da177e4
LT
938}
939
498f0103 940static int parse_features(struct dm_arg_set *as, struct multipath *m)
1da177e4
LT
941{
942 int r;
943 unsigned argc;
28f16c20 944 struct dm_target *ti = m->ti;
498f0103 945 const char *arg_name;
1da177e4 946
5916a22b 947 static const struct dm_arg _args[] = {
e83068a5 948 {0, 8, "invalid number of feature args"},
c9e45581 949 {1, 50, "pg_init_retries must be between 1 and 50"},
4e2d19e4 950 {0, 60000, "pg_init_delay_msecs must be between 0 and 60000"},
1da177e4
LT
951 };
952
498f0103 953 r = dm_read_arg_group(_args, as, &argc, &ti->error);
1da177e4
LT
954 if (r)
955 return -EINVAL;
956
957 if (!argc)
958 return 0;
959
c9e45581 960 do {
498f0103 961 arg_name = dm_shift_arg(as);
c9e45581
DW
962 argc--;
963
498f0103 964 if (!strcasecmp(arg_name, "queue_if_no_path")) {
be7d31cc 965 r = queue_if_no_path(m, true, false);
c9e45581
DW
966 continue;
967 }
968
a58a935d 969 if (!strcasecmp(arg_name, "retain_attached_hw_handler")) {
518257b1 970 set_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags);
a58a935d
MS
971 continue;
972 }
973
498f0103 974 if (!strcasecmp(arg_name, "pg_init_retries") &&
c9e45581 975 (argc >= 1)) {
498f0103 976 r = dm_read_arg(_args + 1, as, &m->pg_init_retries, &ti->error);
c9e45581
DW
977 argc--;
978 continue;
979 }
980
498f0103 981 if (!strcasecmp(arg_name, "pg_init_delay_msecs") &&
4e2d19e4 982 (argc >= 1)) {
498f0103 983 r = dm_read_arg(_args + 2, as, &m->pg_init_delay_msecs, &ti->error);
4e2d19e4
CS
984 argc--;
985 continue;
986 }
987
e83068a5
MS
988 if (!strcasecmp(arg_name, "queue_mode") &&
989 (argc >= 1)) {
990 const char *queue_mode_name = dm_shift_arg(as);
991
992 if (!strcasecmp(queue_mode_name, "bio"))
993 m->queue_mode = DM_TYPE_BIO_BASED;
994 else if (!strcasecmp(queue_mode_name, "rq"))
995 m->queue_mode = DM_TYPE_REQUEST_BASED;
996 else if (!strcasecmp(queue_mode_name, "mq"))
997 m->queue_mode = DM_TYPE_MQ_REQUEST_BASED;
998 else {
999 ti->error = "Unknown 'queue_mode' requested";
1000 r = -EINVAL;
1001 }
1002 argc--;
1003 continue;
1004 }
1005
1da177e4 1006 ti->error = "Unrecognised multipath feature request";
c9e45581
DW
1007 r = -EINVAL;
1008 } while (argc && !r);
1009
1010 return r;
1da177e4
LT
1011}
1012
e83068a5 1013static int multipath_ctr(struct dm_target *ti, unsigned argc, char **argv)
1da177e4 1014{
498f0103 1015 /* target arguments */
5916a22b 1016 static const struct dm_arg _args[] = {
a490a07a
MS
1017 {0, 1024, "invalid number of priority groups"},
1018 {0, 1024, "invalid initial priority group number"},
1da177e4
LT
1019 };
1020
1021 int r;
1022 struct multipath *m;
498f0103 1023 struct dm_arg_set as;
1da177e4
LT
1024 unsigned pg_count = 0;
1025 unsigned next_pg_num;
1026
1027 as.argc = argc;
1028 as.argv = argv;
1029
e83068a5 1030 m = alloc_multipath(ti);
1da177e4 1031 if (!m) {
72d94861 1032 ti->error = "can't allocate multipath";
1da177e4
LT
1033 return -EINVAL;
1034 }
1035
28f16c20 1036 r = parse_features(&as, m);
1da177e4
LT
1037 if (r)
1038 goto bad;
1039
e83068a5
MS
1040 r = alloc_multipath_stage2(ti, m);
1041 if (r)
1042 goto bad;
1043
28f16c20 1044 r = parse_hw_handler(&as, m);
1da177e4
LT
1045 if (r)
1046 goto bad;
1047
498f0103 1048 r = dm_read_arg(_args, &as, &m->nr_priority_groups, &ti->error);
1da177e4
LT
1049 if (r)
1050 goto bad;
1051
498f0103 1052 r = dm_read_arg(_args + 1, &as, &next_pg_num, &ti->error);
1da177e4
LT
1053 if (r)
1054 goto bad;
1055
a490a07a
MS
1056 if ((!m->nr_priority_groups && next_pg_num) ||
1057 (m->nr_priority_groups && !next_pg_num)) {
1058 ti->error = "invalid initial priority group";
1059 r = -EINVAL;
1060 goto bad;
1061 }
1062
1da177e4
LT
1063 /* parse the priority groups */
1064 while (as.argc) {
1065 struct priority_group *pg;
91e968aa 1066 unsigned nr_valid_paths = atomic_read(&m->nr_valid_paths);
1da177e4 1067
28f16c20 1068 pg = parse_priority_group(&as, m);
01460f35
BM
1069 if (IS_ERR(pg)) {
1070 r = PTR_ERR(pg);
1da177e4
LT
1071 goto bad;
1072 }
1073
91e968aa
MS
1074 nr_valid_paths += pg->nr_pgpaths;
1075 atomic_set(&m->nr_valid_paths, nr_valid_paths);
1076
1da177e4
LT
1077 list_add_tail(&pg->list, &m->priority_groups);
1078 pg_count++;
1079 pg->pg_num = pg_count;
1080 if (!--next_pg_num)
1081 m->next_pg = pg;
1082 }
1083
1084 if (pg_count != m->nr_priority_groups) {
72d94861 1085 ti->error = "priority group count mismatch";
1da177e4
LT
1086 r = -EINVAL;
1087 goto bad;
1088 }
1089
55a62eef
AK
1090 ti->num_flush_bios = 1;
1091 ti->num_discard_bios = 1;
042bcef8 1092 ti->num_write_same_bios = 1;
ac62d620 1093 ti->num_write_zeroes_bios = 1;
e83068a5 1094 if (m->queue_mode == DM_TYPE_BIO_BASED)
bf661be1 1095 ti->per_io_data_size = multipath_per_bio_data_size();
eb8db831 1096 else
8637a6bf 1097 ti->per_io_data_size = sizeof(struct dm_mpath_io);
8627921f 1098
1da177e4
LT
1099 return 0;
1100
1101 bad:
1102 free_multipath(m);
1103 return r;
1104}
1105
2bded7bd
KU
1106static void multipath_wait_for_pg_init_completion(struct multipath *m)
1107{
9f4c3f87 1108 DEFINE_WAIT(wait);
2bded7bd
KU
1109
1110 while (1) {
9f4c3f87 1111 prepare_to_wait(&m->pg_init_wait, &wait, TASK_UNINTERRUPTIBLE);
2bded7bd 1112
91e968aa 1113 if (!atomic_read(&m->pg_init_in_progress))
2bded7bd 1114 break;
2bded7bd
KU
1115
1116 io_schedule();
1117 }
9f4c3f87 1118 finish_wait(&m->pg_init_wait, &wait);
2bded7bd
KU
1119}
1120
1121static void flush_multipath_work(struct multipath *m)
1da177e4 1122{
518257b1
MS
1123 set_bit(MPATHF_PG_INIT_DISABLED, &m->flags);
1124 smp_mb__after_atomic();
954a73d5 1125
bab7cfc7 1126 flush_workqueue(kmpath_handlerd);
2bded7bd 1127 multipath_wait_for_pg_init_completion(m);
a044d016 1128 flush_workqueue(kmultipathd);
43829731 1129 flush_work(&m->trigger_event);
954a73d5 1130
518257b1
MS
1131 clear_bit(MPATHF_PG_INIT_DISABLED, &m->flags);
1132 smp_mb__after_atomic();
6df400ab
KU
1133}
1134
1135static void multipath_dtr(struct dm_target *ti)
1136{
1137 struct multipath *m = ti->private;
1138
2bded7bd 1139 flush_multipath_work(m);
1da177e4
LT
1140 free_multipath(m);
1141}
1142
1da177e4
LT
1143/*
1144 * Take a path out of use.
1145 */
1146static int fail_path(struct pgpath *pgpath)
1147{
1148 unsigned long flags;
1149 struct multipath *m = pgpath->pg->m;
1150
1151 spin_lock_irqsave(&m->lock, flags);
1152
6680073d 1153 if (!pgpath->is_active)
1da177e4
LT
1154 goto out;
1155
72d94861 1156 DMWARN("Failing path %s.", pgpath->path.dev->name);
1da177e4
LT
1157
1158 pgpath->pg->ps.type->fail_path(&pgpath->pg->ps, &pgpath->path);
be7d31cc 1159 pgpath->is_active = false;
1da177e4
LT
1160 pgpath->fail_count++;
1161
91e968aa 1162 atomic_dec(&m->nr_valid_paths);
1da177e4
LT
1163
1164 if (pgpath == m->current_pgpath)
1165 m->current_pgpath = NULL;
1166
b15546f9 1167 dm_path_uevent(DM_UEVENT_PATH_FAILED, m->ti,
91e968aa 1168 pgpath->path.dev->name, atomic_read(&m->nr_valid_paths));
b15546f9 1169
fe9cf30e 1170 schedule_work(&m->trigger_event);
1da177e4
LT
1171
1172out:
1173 spin_unlock_irqrestore(&m->lock, flags);
1174
1175 return 0;
1176}
1177
1178/*
1179 * Reinstate a previously-failed path
1180 */
1181static int reinstate_path(struct pgpath *pgpath)
1182{
63d832c3 1183 int r = 0, run_queue = 0;
1da177e4
LT
1184 unsigned long flags;
1185 struct multipath *m = pgpath->pg->m;
91e968aa 1186 unsigned nr_valid_paths;
1da177e4
LT
1187
1188 spin_lock_irqsave(&m->lock, flags);
1189
6680073d 1190 if (pgpath->is_active)
1da177e4
LT
1191 goto out;
1192
ec31f3f7 1193 DMWARN("Reinstating path %s.", pgpath->path.dev->name);
1da177e4
LT
1194
1195 r = pgpath->pg->ps.type->reinstate_path(&pgpath->pg->ps, &pgpath->path);
1196 if (r)
1197 goto out;
1198
be7d31cc 1199 pgpath->is_active = true;
1da177e4 1200
91e968aa
MS
1201 nr_valid_paths = atomic_inc_return(&m->nr_valid_paths);
1202 if (nr_valid_paths == 1) {
e54f77dd 1203 m->current_pgpath = NULL;
63d832c3 1204 run_queue = 1;
e54f77dd 1205 } else if (m->hw_handler_name && (m->current_pg == pgpath->pg)) {
4e2d19e4 1206 if (queue_work(kmpath_handlerd, &pgpath->activate_path.work))
91e968aa 1207 atomic_inc(&m->pg_init_in_progress);
e54f77dd 1208 }
1da177e4 1209
b15546f9 1210 dm_path_uevent(DM_UEVENT_PATH_REINSTATED, m->ti,
91e968aa 1211 pgpath->path.dev->name, nr_valid_paths);
b15546f9 1212
fe9cf30e 1213 schedule_work(&m->trigger_event);
1da177e4
LT
1214
1215out:
1216 spin_unlock_irqrestore(&m->lock, flags);
76e33fe4 1217 if (run_queue) {
63d832c3 1218 dm_table_run_md_queue_async(m->ti->table);
7e48c768 1219 process_queued_io_list(m);
76e33fe4 1220 }
1da177e4
LT
1221
1222 return r;
1223}
1224
1225/*
1226 * Fail or reinstate all paths that match the provided struct dm_dev.
1227 */
1228static int action_dev(struct multipath *m, struct dm_dev *dev,
1229 action_fn action)
1230{
19040c0b 1231 int r = -EINVAL;
1da177e4
LT
1232 struct pgpath *pgpath;
1233 struct priority_group *pg;
1234
1235 list_for_each_entry(pg, &m->priority_groups, list) {
1236 list_for_each_entry(pgpath, &pg->pgpaths, list) {
1237 if (pgpath->path.dev == dev)
1238 r = action(pgpath);
1239 }
1240 }
1241
1242 return r;
1243}
1244
1245/*
1246 * Temporarily try to avoid having to use the specified PG
1247 */
1248static void bypass_pg(struct multipath *m, struct priority_group *pg,
be7d31cc 1249 bool bypassed)
1da177e4
LT
1250{
1251 unsigned long flags;
1252
1253 spin_lock_irqsave(&m->lock, flags);
1254
1255 pg->bypassed = bypassed;
1256 m->current_pgpath = NULL;
1257 m->current_pg = NULL;
1258
1259 spin_unlock_irqrestore(&m->lock, flags);
1260
fe9cf30e 1261 schedule_work(&m->trigger_event);
1da177e4
LT
1262}
1263
1264/*
1265 * Switch to using the specified PG from the next I/O that gets mapped
1266 */
1267static int switch_pg_num(struct multipath *m, const char *pgstr)
1268{
1269 struct priority_group *pg;
1270 unsigned pgnum;
1271 unsigned long flags;
31998ef1 1272 char dummy;
1da177e4 1273
31998ef1 1274 if (!pgstr || (sscanf(pgstr, "%u%c", &pgnum, &dummy) != 1) || !pgnum ||
cc5bd925 1275 !m->nr_priority_groups || (pgnum > m->nr_priority_groups)) {
1da177e4
LT
1276 DMWARN("invalid PG number supplied to switch_pg_num");
1277 return -EINVAL;
1278 }
1279
1280 spin_lock_irqsave(&m->lock, flags);
1281 list_for_each_entry(pg, &m->priority_groups, list) {
be7d31cc 1282 pg->bypassed = false;
1da177e4
LT
1283 if (--pgnum)
1284 continue;
1285
1286 m->current_pgpath = NULL;
1287 m->current_pg = NULL;
1288 m->next_pg = pg;
1289 }
1290 spin_unlock_irqrestore(&m->lock, flags);
1291
fe9cf30e 1292 schedule_work(&m->trigger_event);
1da177e4
LT
1293 return 0;
1294}
1295
1296/*
1297 * Set/clear bypassed status of a PG.
1298 * PGs are numbered upwards from 1 in the order they were declared.
1299 */
be7d31cc 1300static int bypass_pg_num(struct multipath *m, const char *pgstr, bool bypassed)
1da177e4
LT
1301{
1302 struct priority_group *pg;
1303 unsigned pgnum;
31998ef1 1304 char dummy;
1da177e4 1305
31998ef1 1306 if (!pgstr || (sscanf(pgstr, "%u%c", &pgnum, &dummy) != 1) || !pgnum ||
cc5bd925 1307 !m->nr_priority_groups || (pgnum > m->nr_priority_groups)) {
1da177e4
LT
1308 DMWARN("invalid PG number supplied to bypass_pg");
1309 return -EINVAL;
1310 }
1311
1312 list_for_each_entry(pg, &m->priority_groups, list) {
1313 if (!--pgnum)
1314 break;
1315 }
1316
1317 bypass_pg(m, pg, bypassed);
1318 return 0;
1319}
1320
c9e45581
DW
1321/*
1322 * Should we retry pg_init immediately?
1323 */
be7d31cc 1324static bool pg_init_limit_reached(struct multipath *m, struct pgpath *pgpath)
c9e45581
DW
1325{
1326 unsigned long flags;
be7d31cc 1327 bool limit_reached = false;
c9e45581
DW
1328
1329 spin_lock_irqsave(&m->lock, flags);
1330
91e968aa
MS
1331 if (atomic_read(&m->pg_init_count) <= m->pg_init_retries &&
1332 !test_bit(MPATHF_PG_INIT_DISABLED, &m->flags))
518257b1 1333 set_bit(MPATHF_PG_INIT_REQUIRED, &m->flags);
c9e45581 1334 else
be7d31cc 1335 limit_reached = true;
c9e45581
DW
1336
1337 spin_unlock_irqrestore(&m->lock, flags);
1338
1339 return limit_reached;
1340}
1341
3ae31f6a 1342static void pg_init_done(void *data, int errors)
cfae5c9b 1343{
83c0d5d5 1344 struct pgpath *pgpath = data;
cfae5c9b
CS
1345 struct priority_group *pg = pgpath->pg;
1346 struct multipath *m = pg->m;
1347 unsigned long flags;
be7d31cc 1348 bool delay_retry = false;
cfae5c9b
CS
1349
1350 /* device or driver problems */
1351 switch (errors) {
1352 case SCSI_DH_OK:
1353 break;
1354 case SCSI_DH_NOSYS:
1355 if (!m->hw_handler_name) {
1356 errors = 0;
1357 break;
1358 }
f7b934c8
MB
1359 DMERR("Could not failover the device: Handler scsi_dh_%s "
1360 "Error %d.", m->hw_handler_name, errors);
cfae5c9b
CS
1361 /*
1362 * Fail path for now, so we do not ping pong
1363 */
1364 fail_path(pgpath);
1365 break;
1366 case SCSI_DH_DEV_TEMP_BUSY:
1367 /*
1368 * Probably doing something like FW upgrade on the
1369 * controller so try the other pg.
1370 */
be7d31cc 1371 bypass_pg(m, pg, true);
cfae5c9b 1372 break;
cfae5c9b 1373 case SCSI_DH_RETRY:
4e2d19e4
CS
1374 /* Wait before retrying. */
1375 delay_retry = 1;
7b06e09a 1376 /* fall through */
cfae5c9b
CS
1377 case SCSI_DH_IMM_RETRY:
1378 case SCSI_DH_RES_TEMP_UNAVAIL:
1379 if (pg_init_limit_reached(m, pgpath))
1380 fail_path(pgpath);
1381 errors = 0;
1382 break;
ec31f3f7 1383 case SCSI_DH_DEV_OFFLINED:
cfae5c9b
CS
1384 default:
1385 /*
1386 * We probably do not want to fail the path for a device
1387 * error, but this is what the old dm did. In future
1388 * patches we can do more advanced handling.
1389 */
1390 fail_path(pgpath);
1391 }
1392
1393 spin_lock_irqsave(&m->lock, flags);
1394 if (errors) {
e54f77dd
CS
1395 if (pgpath == m->current_pgpath) {
1396 DMERR("Could not failover device. Error %d.", errors);
1397 m->current_pgpath = NULL;
1398 m->current_pg = NULL;
1399 }
518257b1 1400 } else if (!test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags))
be7d31cc 1401 pg->bypassed = false;
cfae5c9b 1402
91e968aa 1403 if (atomic_dec_return(&m->pg_init_in_progress) > 0)
d0259bf0
KU
1404 /* Activations of other paths are still on going */
1405 goto out;
1406
518257b1
MS
1407 if (test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags)) {
1408 if (delay_retry)
1409 set_bit(MPATHF_PG_INIT_DELAY_RETRY, &m->flags);
1410 else
1411 clear_bit(MPATHF_PG_INIT_DELAY_RETRY, &m->flags);
1412
3e9f1be1
HR
1413 if (__pg_init_all_paths(m))
1414 goto out;
1415 }
518257b1 1416 clear_bit(MPATHF_QUEUE_IO, &m->flags);
d0259bf0 1417
7e48c768 1418 process_queued_io_list(m);
76e33fe4 1419
2bded7bd
KU
1420 /*
1421 * Wake up any thread waiting to suspend.
1422 */
1423 wake_up(&m->pg_init_wait);
1424
d0259bf0 1425out:
cfae5c9b
CS
1426 spin_unlock_irqrestore(&m->lock, flags);
1427}
1428
89bfce76 1429static void activate_or_offline_path(struct pgpath *pgpath)
bab7cfc7 1430{
f10e06b7 1431 struct request_queue *q = bdev_get_queue(pgpath->path.dev->bdev);
bab7cfc7 1432
f10e06b7
MS
1433 if (pgpath->is_active && !blk_queue_dying(q))
1434 scsi_dh_activate(q, pg_init_done, pgpath);
3a017509
HR
1435 else
1436 pg_init_done(pgpath, SCSI_DH_DEV_OFFLINED);
bab7cfc7
CS
1437}
1438
89bfce76
BVA
1439static void activate_path_work(struct work_struct *work)
1440{
1441 struct pgpath *pgpath =
1442 container_of(work, struct pgpath, activate_path.work);
1443
1444 activate_or_offline_path(pgpath);
1445}
1446
2a842aca 1447static int noretry_error(blk_status_t error)
7e782af5
HR
1448{
1449 switch (error) {
2a842aca
CH
1450 case BLK_STS_NOTSUPP:
1451 case BLK_STS_NOSPC:
1452 case BLK_STS_TARGET:
1453 case BLK_STS_NEXUS:
1454 case BLK_STS_MEDIUM:
7e782af5
HR
1455 return 1;
1456 }
1457
1458 /* Anything else could be a path failure, so should be retried */
1459 return 0;
1460}
1461
b79f10ee 1462static int multipath_end_io(struct dm_target *ti, struct request *clone,
2a842aca 1463 blk_status_t error, union map_info *map_context)
1da177e4 1464{
b79f10ee
CH
1465 struct dm_mpath_io *mpio = get_mpio(map_context);
1466 struct pgpath *pgpath = mpio->pgpath;
7ed8578a 1467 int r = DM_ENDIO_DONE;
b79f10ee 1468
f40c67f0
KU
1469 /*
1470 * We don't queue any clone request inside the multipath target
1471 * during end I/O handling, since those clone requests don't have
1472 * bio clones. If we queue them inside the multipath target,
1473 * we need to make bio clones, that requires memory allocation.
4cc96131 1474 * (See drivers/md/dm-rq.c:end_clone_bio() about why the clone requests
f40c67f0
KU
1475 * don't have bio clones.)
1476 * Instead of queueing the clone request here, we queue the original
1477 * request into dm core, which will remake a clone request and
1478 * clone bios for it and resubmit it later.
1479 */
b79f10ee
CH
1480 if (error && !noretry_error(error)) {
1481 struct multipath *m = ti->private;
1da177e4 1482
7ed8578a 1483 r = DM_ENDIO_REQUEUE;
1da177e4 1484
b79f10ee
CH
1485 if (pgpath)
1486 fail_path(pgpath);
1da177e4 1487
b79f10ee 1488 if (atomic_read(&m->nr_valid_paths) == 0 &&
7ed8578a 1489 !test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags)) {
2a842aca 1490 if (error == BLK_STS_IOERR)
18a482f5 1491 dm_report_EIO(m);
7ed8578a
CH
1492 /* complete with the original error */
1493 r = DM_ENDIO_DONE;
1494 }
b79f10ee 1495 }
466891f9 1496
1da177e4 1497 if (pgpath) {
b79f10ee
CH
1498 struct path_selector *ps = &pgpath->pg->ps;
1499
1da177e4 1500 if (ps->type->end_io)
02ab823f 1501 ps->type->end_io(ps, &pgpath->path, mpio->nr_bytes);
1da177e4 1502 }
1da177e4 1503
7ed8578a 1504 return r;
1da177e4
LT
1505}
1506
4e4cbee9
CH
1507static int multipath_end_io_bio(struct dm_target *ti, struct bio *clone,
1508 blk_status_t *error)
76e33fe4 1509{
14ef1e48
CH
1510 struct multipath *m = ti->private;
1511 struct dm_mpath_io *mpio = get_mpio_from_bio(clone);
1512 struct pgpath *pgpath = mpio->pgpath;
76e33fe4 1513 unsigned long flags;
1be56909 1514 int r = DM_ENDIO_DONE;
76e33fe4 1515
4e4cbee9 1516 if (!*error || noretry_error(*error))
14ef1e48 1517 goto done;
76e33fe4 1518
14ef1e48
CH
1519 if (pgpath)
1520 fail_path(pgpath);
76e33fe4 1521
ca5beb76 1522 if (atomic_read(&m->nr_valid_paths) == 0 &&
18a482f5
CH
1523 !test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags)) {
1524 dm_report_EIO(m);
4e4cbee9 1525 *error = BLK_STS_IOERR;
14ef1e48 1526 goto done;
18a482f5 1527 }
76e33fe4
MS
1528
1529 /* Queue for the daemon to resubmit */
bf661be1 1530 dm_bio_restore(get_bio_details_from_bio(clone), clone);
76e33fe4
MS
1531
1532 spin_lock_irqsave(&m->lock, flags);
1533 bio_list_add(&m->queued_bios, clone);
1534 spin_unlock_irqrestore(&m->lock, flags);
1535 if (!test_bit(MPATHF_QUEUE_IO, &m->flags))
1536 queue_work(kmultipathd, &m->process_queued_bios);
1537
1be56909 1538 r = DM_ENDIO_INCOMPLETE;
14ef1e48 1539done:
76e33fe4 1540 if (pgpath) {
14ef1e48
CH
1541 struct path_selector *ps = &pgpath->pg->ps;
1542
76e33fe4
MS
1543 if (ps->type->end_io)
1544 ps->type->end_io(ps, &pgpath->path, mpio->nr_bytes);
1545 }
1546
1be56909 1547 return r;
76e33fe4
MS
1548}
1549
1da177e4
LT
1550/*
1551 * Suspend can't complete until all the I/O is processed so if
436d4108
AK
1552 * the last path fails we must error any remaining I/O.
1553 * Note that if the freeze_bdev fails while suspending, the
1554 * queue_if_no_path state is lost - userspace should reset it.
1da177e4
LT
1555 */
1556static void multipath_presuspend(struct dm_target *ti)
1557{
7943bd6d 1558 struct multipath *m = ti->private;
1da177e4 1559
be7d31cc 1560 queue_if_no_path(m, false, true);
1da177e4
LT
1561}
1562
6df400ab
KU
1563static void multipath_postsuspend(struct dm_target *ti)
1564{
6380f26f
MA
1565 struct multipath *m = ti->private;
1566
1567 mutex_lock(&m->work_mutex);
2bded7bd 1568 flush_multipath_work(m);
6380f26f 1569 mutex_unlock(&m->work_mutex);
6df400ab
KU
1570}
1571
436d4108
AK
1572/*
1573 * Restore the queue_if_no_path setting.
1574 */
1da177e4
LT
1575static void multipath_resume(struct dm_target *ti)
1576{
7943bd6d 1577 struct multipath *m = ti->private;
1814f2e3 1578 unsigned long flags;
1da177e4 1579
1814f2e3 1580 spin_lock_irqsave(&m->lock, flags);
5307e2ad
LW
1581 assign_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags,
1582 test_bit(MPATHF_SAVED_QUEUE_IF_NO_PATH, &m->flags));
1814f2e3 1583 spin_unlock_irqrestore(&m->lock, flags);
1da177e4
LT
1584}
1585
1586/*
1587 * Info output has the following format:
1588 * num_multipath_feature_args [multipath_feature_args]*
1589 * num_handler_status_args [handler_status_args]*
1590 * num_groups init_group_number
1591 * [A|D|E num_ps_status_args [ps_status_args]*
1592 * num_paths num_selector_args
1593 * [path_dev A|F fail_count [selector_args]* ]+ ]+
1594 *
1595 * Table output has the following format (identical to the constructor string):
1596 * num_feature_args [features_args]*
1597 * num_handler_args hw_handler [hw_handler_args]*
1598 * num_groups init_group_number
1599 * [priority selector-name num_ps_args [ps_args]*
1600 * num_paths num_selector_args [path_dev [selector_args]* ]+ ]+
1601 */
fd7c092e
MP
1602static void multipath_status(struct dm_target *ti, status_type_t type,
1603 unsigned status_flags, char *result, unsigned maxlen)
1da177e4
LT
1604{
1605 int sz = 0;
1606 unsigned long flags;
7943bd6d 1607 struct multipath *m = ti->private;
1da177e4
LT
1608 struct priority_group *pg;
1609 struct pgpath *p;
1610 unsigned pg_num;
1611 char state;
1612
1613 spin_lock_irqsave(&m->lock, flags);
1614
1615 /* Features */
1616 if (type == STATUSTYPE_INFO)
91e968aa
MS
1617 DMEMIT("2 %u %u ", test_bit(MPATHF_QUEUE_IO, &m->flags),
1618 atomic_read(&m->pg_init_count));
c9e45581 1619 else {
518257b1 1620 DMEMIT("%u ", test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags) +
4e2d19e4 1621 (m->pg_init_retries > 0) * 2 +
a58a935d 1622 (m->pg_init_delay_msecs != DM_PG_INIT_DELAY_DEFAULT) * 2 +
e83068a5
MS
1623 test_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags) +
1624 (m->queue_mode != DM_TYPE_REQUEST_BASED) * 2);
1625
518257b1 1626 if (test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))
c9e45581
DW
1627 DMEMIT("queue_if_no_path ");
1628 if (m->pg_init_retries)
1629 DMEMIT("pg_init_retries %u ", m->pg_init_retries);
4e2d19e4
CS
1630 if (m->pg_init_delay_msecs != DM_PG_INIT_DELAY_DEFAULT)
1631 DMEMIT("pg_init_delay_msecs %u ", m->pg_init_delay_msecs);
518257b1 1632 if (test_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags))
a58a935d 1633 DMEMIT("retain_attached_hw_handler ");
e83068a5
MS
1634 if (m->queue_mode != DM_TYPE_REQUEST_BASED) {
1635 switch(m->queue_mode) {
1636 case DM_TYPE_BIO_BASED:
1637 DMEMIT("queue_mode bio ");
1638 break;
1639 case DM_TYPE_MQ_REQUEST_BASED:
1640 DMEMIT("queue_mode mq ");
1641 break;
7e0d574f
BVA
1642 default:
1643 WARN_ON_ONCE(true);
1644 break;
e83068a5
MS
1645 }
1646 }
c9e45581 1647 }
1da177e4 1648
cfae5c9b 1649 if (!m->hw_handler_name || type == STATUSTYPE_INFO)
1da177e4
LT
1650 DMEMIT("0 ");
1651 else
cfae5c9b 1652 DMEMIT("1 %s ", m->hw_handler_name);
1da177e4
LT
1653
1654 DMEMIT("%u ", m->nr_priority_groups);
1655
1656 if (m->next_pg)
1657 pg_num = m->next_pg->pg_num;
1658 else if (m->current_pg)
1659 pg_num = m->current_pg->pg_num;
1660 else
a490a07a 1661 pg_num = (m->nr_priority_groups ? 1 : 0);
1da177e4
LT
1662
1663 DMEMIT("%u ", pg_num);
1664
1665 switch (type) {
1666 case STATUSTYPE_INFO:
1667 list_for_each_entry(pg, &m->priority_groups, list) {
1668 if (pg->bypassed)
1669 state = 'D'; /* Disabled */
1670 else if (pg == m->current_pg)
1671 state = 'A'; /* Currently Active */
1672 else
1673 state = 'E'; /* Enabled */
1674
1675 DMEMIT("%c ", state);
1676
1677 if (pg->ps.type->status)
1678 sz += pg->ps.type->status(&pg->ps, NULL, type,
1679 result + sz,
1680 maxlen - sz);
1681 else
1682 DMEMIT("0 ");
1683
1684 DMEMIT("%u %u ", pg->nr_pgpaths,
1685 pg->ps.type->info_args);
1686
1687 list_for_each_entry(p, &pg->pgpaths, list) {
1688 DMEMIT("%s %s %u ", p->path.dev->name,
6680073d 1689 p->is_active ? "A" : "F",
1da177e4
LT
1690 p->fail_count);
1691 if (pg->ps.type->status)
1692 sz += pg->ps.type->status(&pg->ps,
1693 &p->path, type, result + sz,
1694 maxlen - sz);
1695 }
1696 }
1697 break;
1698
1699 case STATUSTYPE_TABLE:
1700 list_for_each_entry(pg, &m->priority_groups, list) {
1701 DMEMIT("%s ", pg->ps.type->name);
1702
1703 if (pg->ps.type->status)
1704 sz += pg->ps.type->status(&pg->ps, NULL, type,
1705 result + sz,
1706 maxlen - sz);
1707 else
1708 DMEMIT("0 ");
1709
1710 DMEMIT("%u %u ", pg->nr_pgpaths,
1711 pg->ps.type->table_args);
1712
1713 list_for_each_entry(p, &pg->pgpaths, list) {
1714 DMEMIT("%s ", p->path.dev->name);
1715 if (pg->ps.type->status)
1716 sz += pg->ps.type->status(&pg->ps,
1717 &p->path, type, result + sz,
1718 maxlen - sz);
1719 }
1720 }
1721 break;
1722 }
1723
1724 spin_unlock_irqrestore(&m->lock, flags);
1da177e4
LT
1725}
1726
1727static int multipath_message(struct dm_target *ti, unsigned argc, char **argv)
1728{
6380f26f 1729 int r = -EINVAL;
1da177e4 1730 struct dm_dev *dev;
7943bd6d 1731 struct multipath *m = ti->private;
1da177e4
LT
1732 action_fn action;
1733
6380f26f
MA
1734 mutex_lock(&m->work_mutex);
1735
c2f3d24b
KU
1736 if (dm_suspended(ti)) {
1737 r = -EBUSY;
1738 goto out;
1739 }
1740
1da177e4 1741 if (argc == 1) {
498f0103 1742 if (!strcasecmp(argv[0], "queue_if_no_path")) {
be7d31cc 1743 r = queue_if_no_path(m, true, false);
6380f26f 1744 goto out;
498f0103 1745 } else if (!strcasecmp(argv[0], "fail_if_no_path")) {
be7d31cc 1746 r = queue_if_no_path(m, false, false);
6380f26f
MA
1747 goto out;
1748 }
1da177e4
LT
1749 }
1750
6380f26f 1751 if (argc != 2) {
a356e426 1752 DMWARN("Invalid multipath message arguments. Expected 2 arguments, got %d.", argc);
6380f26f
MA
1753 goto out;
1754 }
1da177e4 1755
498f0103 1756 if (!strcasecmp(argv[0], "disable_group")) {
be7d31cc 1757 r = bypass_pg_num(m, argv[1], true);
6380f26f 1758 goto out;
498f0103 1759 } else if (!strcasecmp(argv[0], "enable_group")) {
be7d31cc 1760 r = bypass_pg_num(m, argv[1], false);
6380f26f 1761 goto out;
498f0103 1762 } else if (!strcasecmp(argv[0], "switch_group")) {
6380f26f
MA
1763 r = switch_pg_num(m, argv[1]);
1764 goto out;
498f0103 1765 } else if (!strcasecmp(argv[0], "reinstate_path"))
1da177e4 1766 action = reinstate_path;
498f0103 1767 else if (!strcasecmp(argv[0], "fail_path"))
1da177e4 1768 action = fail_path;
6380f26f 1769 else {
a356e426 1770 DMWARN("Unrecognised multipath message received: %s", argv[0]);
6380f26f
MA
1771 goto out;
1772 }
1da177e4 1773
8215d6ec 1774 r = dm_get_device(ti, argv[1], dm_table_get_mode(ti->table), &dev);
1da177e4 1775 if (r) {
72d94861 1776 DMWARN("message: error getting device %s",
1da177e4 1777 argv[1]);
6380f26f 1778 goto out;
1da177e4
LT
1779 }
1780
1781 r = action_dev(m, dev, action);
1782
1783 dm_put_device(ti, dev);
1784
6380f26f
MA
1785out:
1786 mutex_unlock(&m->work_mutex);
1da177e4 1787 return r;
1da177e4
LT
1788}
1789
e56f81e0
CH
1790static int multipath_prepare_ioctl(struct dm_target *ti,
1791 struct block_device **bdev, fmode_t *mode)
9af4aa30 1792{
35991652 1793 struct multipath *m = ti->private;
2da1610a 1794 struct pgpath *current_pgpath;
35991652
MP
1795 int r;
1796
506458ef 1797 current_pgpath = READ_ONCE(m->current_pgpath);
2da1610a
MS
1798 if (!current_pgpath)
1799 current_pgpath = choose_pgpath(m, 0);
9af4aa30 1800
2da1610a 1801 if (current_pgpath) {
518257b1 1802 if (!test_bit(MPATHF_QUEUE_IO, &m->flags)) {
2da1610a
MS
1803 *bdev = current_pgpath->path.dev->bdev;
1804 *mode = current_pgpath->path.dev->mode;
43e43c9e
JN
1805 r = 0;
1806 } else {
1807 /* pg_init has not started or completed */
1808 r = -ENOTCONN;
1809 }
1810 } else {
1811 /* No path is available */
518257b1 1812 if (test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))
43e43c9e
JN
1813 r = -ENOTCONN;
1814 else
1815 r = -EIO;
e90dae1f 1816 }
9af4aa30 1817
5bbbfdf6 1818 if (r == -ENOTCONN) {
506458ef 1819 if (!READ_ONCE(m->current_pg)) {
3e9f1be1 1820 /* Path status changed, redo selection */
2da1610a 1821 (void) choose_pgpath(m, 0);
3e9f1be1 1822 }
518257b1 1823 if (test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags))
2da1610a 1824 pg_init_all_paths(m);
63d832c3 1825 dm_table_run_md_queue_async(m->ti->table);
7e48c768 1826 process_queued_io_list(m);
3e9f1be1 1827 }
35991652 1828
e56f81e0
CH
1829 /*
1830 * Only pass ioctls through if the device sizes match exactly.
1831 */
1832 if (!r && ti->len != i_size_read((*bdev)->bd_inode) >> SECTOR_SHIFT)
1833 return 1;
1834 return r;
9af4aa30
MB
1835}
1836
af4874e0
MS
1837static int multipath_iterate_devices(struct dm_target *ti,
1838 iterate_devices_callout_fn fn, void *data)
1839{
1840 struct multipath *m = ti->private;
1841 struct priority_group *pg;
1842 struct pgpath *p;
1843 int ret = 0;
1844
1845 list_for_each_entry(pg, &m->priority_groups, list) {
1846 list_for_each_entry(p, &pg->pgpaths, list) {
5dea271b 1847 ret = fn(ti, p->path.dev, ti->begin, ti->len, data);
af4874e0
MS
1848 if (ret)
1849 goto out;
1850 }
1851 }
1852
1853out:
1854 return ret;
1855}
1856
9f54cec5 1857static int pgpath_busy(struct pgpath *pgpath)
f40c67f0
KU
1858{
1859 struct request_queue *q = bdev_get_queue(pgpath->path.dev->bdev);
1860
52b09914 1861 return blk_lld_busy(q);
f40c67f0
KU
1862}
1863
1864/*
1865 * We return "busy", only when we can map I/Os but underlying devices
1866 * are busy (so even if we map I/Os now, the I/Os will wait on
1867 * the underlying queue).
1868 * In other words, if we want to kill I/Os or queue them inside us
1869 * due to map unavailability, we don't return "busy". Otherwise,
1870 * dm core won't give us the I/Os and we can't do what we want.
1871 */
1872static int multipath_busy(struct dm_target *ti)
1873{
be7d31cc 1874 bool busy = false, has_active = false;
f40c67f0 1875 struct multipath *m = ti->private;
2da1610a 1876 struct priority_group *pg, *next_pg;
f40c67f0 1877 struct pgpath *pgpath;
f40c67f0 1878
b88efd43
MS
1879 /* pg_init in progress */
1880 if (atomic_read(&m->pg_init_in_progress))
2da1610a
MS
1881 return true;
1882
b88efd43
MS
1883 /* no paths available, for blk-mq: rely on IO mapping to delay requeue */
1884 if (!atomic_read(&m->nr_valid_paths) && test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))
1885 return (m->queue_mode != DM_TYPE_MQ_REQUEST_BASED);
1886
f40c67f0 1887 /* Guess which priority_group will be used at next mapping time */
506458ef
WD
1888 pg = READ_ONCE(m->current_pg);
1889 next_pg = READ_ONCE(m->next_pg);
1890 if (unlikely(!READ_ONCE(m->current_pgpath) && next_pg))
2da1610a
MS
1891 pg = next_pg;
1892
1893 if (!pg) {
f40c67f0
KU
1894 /*
1895 * We don't know which pg will be used at next mapping time.
2da1610a 1896 * We don't call choose_pgpath() here to avoid to trigger
f40c67f0
KU
1897 * pg_init just by busy checking.
1898 * So we don't know whether underlying devices we will be using
1899 * at next mapping time are busy or not. Just try mapping.
1900 */
2da1610a
MS
1901 return busy;
1902 }
f40c67f0
KU
1903
1904 /*
1905 * If there is one non-busy active path at least, the path selector
1906 * will be able to select it. So we consider such a pg as not busy.
1907 */
be7d31cc 1908 busy = true;
2da1610a 1909 list_for_each_entry(pgpath, &pg->pgpaths, list) {
f40c67f0 1910 if (pgpath->is_active) {
be7d31cc 1911 has_active = true;
9f54cec5 1912 if (!pgpath_busy(pgpath)) {
be7d31cc 1913 busy = false;
f40c67f0
KU
1914 break;
1915 }
1916 }
2da1610a 1917 }
f40c67f0 1918
2da1610a 1919 if (!has_active) {
f40c67f0
KU
1920 /*
1921 * No active path in this pg, so this pg won't be used and
1922 * the current_pg will be changed at next mapping time.
1923 * We need to try mapping to determine it.
1924 */
be7d31cc 1925 busy = false;
2da1610a 1926 }
f40c67f0
KU
1927
1928 return busy;
1929}
1930
1da177e4
LT
1931/*-----------------------------------------------------------------
1932 * Module setup
1933 *---------------------------------------------------------------*/
1934static struct target_type multipath_target = {
1935 .name = "multipath",
e83068a5 1936 .version = {1, 12, 0},
16f12266 1937 .features = DM_TARGET_SINGLETON | DM_TARGET_IMMUTABLE,
1da177e4
LT
1938 .module = THIS_MODULE,
1939 .ctr = multipath_ctr,
1940 .dtr = multipath_dtr,
e5863d9a
MS
1941 .clone_and_map_rq = multipath_clone_and_map,
1942 .release_clone_rq = multipath_release_clone,
f40c67f0 1943 .rq_end_io = multipath_end_io,
76e33fe4
MS
1944 .map = multipath_map_bio,
1945 .end_io = multipath_end_io_bio,
1946 .presuspend = multipath_presuspend,
1947 .postsuspend = multipath_postsuspend,
1948 .resume = multipath_resume,
1949 .status = multipath_status,
1950 .message = multipath_message,
1951 .prepare_ioctl = multipath_prepare_ioctl,
1952 .iterate_devices = multipath_iterate_devices,
1953 .busy = multipath_busy,
1954};
1955
1da177e4
LT
1956static int __init dm_multipath_init(void)
1957{
1958 int r;
1959
1da177e4
LT
1960 r = dm_register_target(&multipath_target);
1961 if (r < 0) {
76e33fe4 1962 DMERR("request-based register failed %d", r);
ff658e9c
JT
1963 r = -EINVAL;
1964 goto bad_register_target;
1da177e4
LT
1965 }
1966
4d4d66ab 1967 kmultipathd = alloc_workqueue("kmpathd", WQ_MEM_RECLAIM, 0);
c557308e 1968 if (!kmultipathd) {
0cd33124 1969 DMERR("failed to create workqueue kmpathd");
ff658e9c
JT
1970 r = -ENOMEM;
1971 goto bad_alloc_kmultipathd;
c557308e
AK
1972 }
1973
bab7cfc7
CS
1974 /*
1975 * A separate workqueue is used to handle the device handlers
1976 * to avoid overloading existing workqueue. Overloading the
1977 * old workqueue would also create a bottleneck in the
1978 * path of the storage hardware device activation.
1979 */
4d4d66ab
TH
1980 kmpath_handlerd = alloc_ordered_workqueue("kmpath_handlerd",
1981 WQ_MEM_RECLAIM);
bab7cfc7
CS
1982 if (!kmpath_handlerd) {
1983 DMERR("failed to create workqueue kmpath_handlerd");
ff658e9c
JT
1984 r = -ENOMEM;
1985 goto bad_alloc_kmpath_handlerd;
bab7cfc7
CS
1986 }
1987
ff658e9c
JT
1988 return 0;
1989
1990bad_alloc_kmpath_handlerd:
1991 destroy_workqueue(kmultipathd);
1992bad_alloc_kmultipathd:
1993 dm_unregister_target(&multipath_target);
1994bad_register_target:
1da177e4
LT
1995 return r;
1996}
1997
1998static void __exit dm_multipath_exit(void)
1999{
bab7cfc7 2000 destroy_workqueue(kmpath_handlerd);
c557308e
AK
2001 destroy_workqueue(kmultipathd);
2002
10d3bd09 2003 dm_unregister_target(&multipath_target);
1da177e4
LT
2004}
2005
1da177e4
LT
2006module_init(dm_multipath_init);
2007module_exit(dm_multipath_exit);
2008
2009MODULE_DESCRIPTION(DM_NAME " multipath target");
2010MODULE_AUTHOR("Sistina Software <dm-devel@redhat.com>");
2011MODULE_LICENSE("GPL");