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