blob: 7c60aace8d25d86e26bdb02a2eae71cc7a934664 [file] [log] [blame]
rjw1f884582022-01-06 17:20:42 +08001/*
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
8#include <linux/device-mapper.h>
9
10#include "dm-rq.h"
11#include "dm-bio-record.h"
12#include "dm-path-selector.h"
13#include "dm-uevent.h"
14
15#include <linux/blkdev.h>
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>
24#include <linux/delay.h>
25#include <scsi/scsi_dh.h>
26#include <linux/atomic.h>
27#include <linux/blk-mq.h>
28
29#define DM_MSG_PREFIX "multipath"
30#define DM_PG_INIT_DELAY_MSECS 2000
31#define DM_PG_INIT_DELAY_DEFAULT ((unsigned) -1)
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
40 struct dm_path path;
41 struct delayed_work activate_path;
42
43 bool is_active:1; /* Path status */
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 */
59 unsigned nr_pgpaths; /* Number of paths in PG */
60 struct list_head pgpaths;
61
62 bool bypassed:1; /* Temporarily bypass this PG? */
63};
64
65/* Multipath context */
66struct multipath {
67 struct list_head list;
68 struct dm_target *ti;
69
70 const char *hw_handler_name;
71 char *hw_handler_params;
72
73 spinlock_t lock;
74
75 unsigned nr_priority_groups;
76 struct list_head priority_groups;
77
78 wait_queue_head_t pg_init_wait; /* Wait for pg_init completion */
79
80 struct pgpath *current_pgpath;
81 struct priority_group *current_pg;
82 struct priority_group *next_pg; /* Switch to this PG if set */
83
84 unsigned long flags; /* Multipath state flags */
85
86 unsigned pg_init_retries; /* Number of times to retry pg_init */
87 unsigned pg_init_delay_msecs; /* Number of msecs before pg_init retry */
88
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
93 enum dm_queue_mode queue_mode;
94
95 struct mutex work_mutex;
96 struct work_struct trigger_event;
97
98 struct work_struct process_queued_bios;
99 struct bio_list queued_bios;
100};
101
102/*
103 * Context information attached to each io we process.
104 */
105struct dm_mpath_io {
106 struct pgpath *pgpath;
107 size_t nr_bytes;
108};
109
110typedef int (*action_fn) (struct pgpath *pgpath);
111
112static struct workqueue_struct *kmultipathd, *kmpath_handlerd;
113static void trigger_event(struct work_struct *work);
114static void activate_or_offline_path(struct pgpath *pgpath);
115static void activate_path_work(struct work_struct *work);
116static void process_queued_bios(struct work_struct *work);
117
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? */
129
130/*-----------------------------------------------
131 * Allocation routines
132 *-----------------------------------------------*/
133
134static struct pgpath *alloc_pgpath(void)
135{
136 struct pgpath *pgpath = kzalloc(sizeof(*pgpath), GFP_KERNEL);
137
138 if (pgpath) {
139 pgpath->is_active = true;
140 INIT_DELAYED_WORK(&pgpath->activate_path, activate_path_work);
141 }
142
143 return pgpath;
144}
145
146static void free_pgpath(struct pgpath *pgpath)
147{
148 kfree(pgpath);
149}
150
151static struct priority_group *alloc_priority_group(void)
152{
153 struct priority_group *pg;
154
155 pg = kzalloc(sizeof(*pg), GFP_KERNEL);
156
157 if (pg)
158 INIT_LIST_HEAD(&pg->pgpaths);
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
188static struct multipath *alloc_multipath(struct dm_target *ti)
189{
190 struct multipath *m;
191
192 m = kzalloc(sizeof(*m), GFP_KERNEL);
193 if (m) {
194 INIT_LIST_HEAD(&m->priority_groups);
195 spin_lock_init(&m->lock);
196 set_bit(MPATHF_QUEUE_IO, &m->flags);
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);
200 m->pg_init_delay_msecs = DM_PG_INIT_DELAY_DEFAULT;
201 INIT_WORK(&m->trigger_event, trigger_event);
202 init_waitqueue_head(&m->pg_init_wait);
203 mutex_init(&m->work_mutex);
204
205 m->queue_mode = DM_TYPE_NONE;
206
207 m->ti = ti;
208 ti->private = m;
209 }
210
211 return m;
212}
213
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;
224 } else if (m->queue_mode == DM_TYPE_BIO_BASED) {
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
238static void free_multipath(struct multipath *m)
239{
240 struct priority_group *pg, *tmp;
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
247 kfree(m->hw_handler_name);
248 kfree(m->hw_handler_params);
249 kfree(m);
250}
251
252static struct dm_mpath_io *get_mpio(union map_info *info)
253{
254 return info->ptr;
255}
256
257static size_t multipath_per_bio_data_size(void)
258{
259 return sizeof(struct dm_mpath_io) + sizeof(struct dm_bio_details);
260}
261
262static struct dm_mpath_io *get_mpio_from_bio(struct bio *bio)
263{
264 return dm_per_bio_data(bio, multipath_per_bio_data_size());
265}
266
267static struct dm_bio_details *get_bio_details_from_bio(struct bio *bio)
268{
269 /* dm_bio_details is immediately after the dm_mpath_io in bio's per-bio-data */
270 struct dm_mpath_io *mpio = get_mpio_from_bio(bio);
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);
281
282 memset(mpio, 0, sizeof(*mpio));
283 memset(bio_details, 0, sizeof(*bio_details));
284 dm_bio_record(bio_details, bio);
285
286 if (mpio_p)
287 *mpio_p = mpio;
288 if (bio_details_p)
289 *bio_details_p = bio_details;
290}
291
292/*-----------------------------------------------
293 * Path selection
294 *-----------------------------------------------*/
295
296static int __pg_init_all_paths(struct multipath *m)
297{
298 struct pgpath *pgpath;
299 unsigned long pg_init_delay = 0;
300
301 lockdep_assert_held(&m->lock);
302
303 if (atomic_read(&m->pg_init_in_progress) || test_bit(MPATHF_PG_INIT_DISABLED, &m->flags))
304 return 0;
305
306 atomic_inc(&m->pg_init_count);
307 clear_bit(MPATHF_PG_INIT_REQUIRED, &m->flags);
308
309 /* Check here to reset pg_init_required */
310 if (!m->current_pg)
311 return 0;
312
313 if (test_bit(MPATHF_PG_INIT_DELAY_RETRY, &m->flags))
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);
316 list_for_each_entry(pgpath, &m->current_pg->pgpaths, list) {
317 /* Skip failed paths */
318 if (!pgpath->is_active)
319 continue;
320 if (queue_delayed_work(kmpath_handlerd, &pgpath->activate_path,
321 pg_init_delay))
322 atomic_inc(&m->pg_init_in_progress);
323 }
324 return atomic_read(&m->pg_init_in_progress);
325}
326
327static int pg_init_all_paths(struct multipath *m)
328{
329 int ret;
330 unsigned long flags;
331
332 spin_lock_irqsave(&m->lock, flags);
333 ret = __pg_init_all_paths(m);
334 spin_unlock_irqrestore(&m->lock, flags);
335
336 return ret;
337}
338
339static void __switch_pg(struct multipath *m, struct priority_group *pg)
340{
341 m->current_pg = pg;
342
343 /* Must we initialise the PG first, and queue I/O till it's ready? */
344 if (m->hw_handler_name) {
345 set_bit(MPATHF_PG_INIT_REQUIRED, &m->flags);
346 set_bit(MPATHF_QUEUE_IO, &m->flags);
347 } else {
348 clear_bit(MPATHF_PG_INIT_REQUIRED, &m->flags);
349 clear_bit(MPATHF_QUEUE_IO, &m->flags);
350 }
351
352 atomic_set(&m->pg_init_count, 0);
353}
354
355static struct pgpath *choose_path_in_pg(struct multipath *m,
356 struct priority_group *pg,
357 size_t nr_bytes)
358{
359 unsigned long flags;
360 struct dm_path *path;
361 struct pgpath *pgpath;
362
363 path = pg->ps.type->select_path(&pg->ps, nr_bytes);
364 if (!path)
365 return ERR_PTR(-ENXIO);
366
367 pgpath = path_to_pgpath(path);
368
369 if (unlikely(READ_ONCE(m->current_pg) != pg)) {
370 /* Only update current_pgpath if pg changed */
371 spin_lock_irqsave(&m->lock, flags);
372 m->current_pgpath = pgpath;
373 __switch_pg(m, pg);
374 spin_unlock_irqrestore(&m->lock, flags);
375 }
376
377 return pgpath;
378}
379
380static struct pgpath *choose_pgpath(struct multipath *m, size_t nr_bytes)
381{
382 unsigned long flags;
383 struct priority_group *pg;
384 struct pgpath *pgpath;
385 unsigned bypassed = 1;
386
387 if (!atomic_read(&m->nr_valid_paths)) {
388 clear_bit(MPATHF_QUEUE_IO, &m->flags);
389 goto failed;
390 }
391
392 /* Were we instructed to switch PG? */
393 if (READ_ONCE(m->next_pg)) {
394 spin_lock_irqsave(&m->lock, flags);
395 pg = m->next_pg;
396 if (!pg) {
397 spin_unlock_irqrestore(&m->lock, flags);
398 goto check_current_pg;
399 }
400 m->next_pg = NULL;
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;
405 }
406
407 /* Don't change PG until it has no remaining paths */
408check_current_pg:
409 pg = READ_ONCE(m->current_pg);
410 if (pg) {
411 pgpath = choose_path_in_pg(m, pg, nr_bytes);
412 if (!IS_ERR_OR_NULL(pgpath))
413 return pgpath;
414 }
415
416 /*
417 * Loop through priority groups until we find a valid path.
418 * First time we skip PGs marked 'bypassed'.
419 * Second time we only try the ones we skipped, but set
420 * pg_init_delay_retry so we do not hammer controllers.
421 */
422 do {
423 list_for_each_entry(pg, &m->priority_groups, list) {
424 if (pg->bypassed == !!bypassed)
425 continue;
426 pgpath = choose_path_in_pg(m, pg, nr_bytes);
427 if (!IS_ERR_OR_NULL(pgpath)) {
428 if (!bypassed)
429 set_bit(MPATHF_PG_INIT_DELAY_RETRY, &m->flags);
430 return pgpath;
431 }
432 }
433 } while (bypassed--);
434
435failed:
436 spin_lock_irqsave(&m->lock, flags);
437 m->current_pgpath = NULL;
438 m->current_pg = NULL;
439 spin_unlock_irqrestore(&m->lock, flags);
440
441 return NULL;
442}
443
444/*
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.
448 */
449#define dm_report_EIO(m) \
450do { \
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)); \
458} while (0)
459
460/*
461 * Map cloned requests (request-based multipath)
462 */
463static int multipath_clone_and_map(struct dm_target *ti, struct request *rq,
464 union map_info *map_context,
465 struct request **__clone)
466{
467 struct multipath *m = ti->private;
468 size_t nr_bytes = blk_rq_bytes(rq);
469 struct pgpath *pgpath;
470 struct block_device *bdev;
471 struct dm_mpath_io *mpio = get_mpio(map_context);
472 struct request_queue *q;
473 struct request *clone;
474
475 /* Do we need to select a new pgpath? */
476 pgpath = READ_ONCE(m->current_pgpath);
477 if (!pgpath || !test_bit(MPATHF_QUEUE_IO, &m->flags))
478 pgpath = choose_pgpath(m, nr_bytes);
479
480 if (!pgpath) {
481 if (test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))
482 return DM_MAPIO_DELAY_REQUEUE;
483 dm_report_EIO(m); /* Failed */
484 return DM_MAPIO_KILL;
485 } else if (test_bit(MPATHF_QUEUE_IO, &m->flags) ||
486 test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags)) {
487 if (pg_init_all_paths(m))
488 return DM_MAPIO_DELAY_REQUEUE;
489 return DM_MAPIO_REQUEUE;
490 }
491
492 memset(mpio, 0, sizeof(*mpio));
493 mpio->pgpath = pgpath;
494 mpio->nr_bytes = nr_bytes;
495
496 bdev = pgpath->path.dev->bdev;
497 q = bdev_get_queue(bdev);
498 clone = blk_get_request(q, rq->cmd_flags | REQ_NOMERGE, GFP_ATOMIC);
499 if (IS_ERR(clone)) {
500 /* EBUSY, ENODEV or EWOULDBLOCK: requeue */
501 bool queue_dying = blk_queue_dying(q);
502 if (queue_dying) {
503 atomic_inc(&m->pg_init_in_progress);
504 activate_or_offline_path(pgpath);
505 return DM_MAPIO_DELAY_REQUEUE;
506 }
507
508 /*
509 * blk-mq's SCHED_RESTART can cover this requeue, so we
510 * needn't deal with it by DELAY_REQUEUE. More importantly,
511 * we have to return DM_MAPIO_REQUEUE so that blk-mq can
512 * get the queue busy feedback (via BLK_STS_RESOURCE),
513 * otherwise I/O merging can suffer.
514 */
515 if (q->mq_ops)
516 return DM_MAPIO_REQUEUE;
517 else
518 return DM_MAPIO_DELAY_REQUEUE;
519 }
520 clone->bio = clone->biotail = NULL;
521 clone->rq_disk = bdev->bd_disk;
522 clone->cmd_flags |= REQ_FAILFAST_TRANSPORT;
523 *__clone = clone;
524
525 if (pgpath->pg->ps.type->start_io)
526 pgpath->pg->ps.type->start_io(&pgpath->pg->ps,
527 &pgpath->path,
528 nr_bytes);
529 return DM_MAPIO_REMAPPED;
530}
531
532static void multipath_release_clone(struct request *clone)
533{
534 blk_put_request(clone);
535}
536
537/*
538 * Map cloned bios (bio-based multipath)
539 */
540static int __multipath_map_bio(struct multipath *m, struct bio *bio, struct dm_mpath_io *mpio)
541{
542 size_t nr_bytes = bio->bi_iter.bi_size;
543 struct pgpath *pgpath;
544 unsigned long flags;
545 bool queue_io;
546
547 /* Do we need to select a new pgpath? */
548 pgpath = READ_ONCE(m->current_pgpath);
549 queue_io = test_bit(MPATHF_QUEUE_IO, &m->flags);
550 if (!pgpath || !queue_io)
551 pgpath = choose_pgpath(m, nr_bytes);
552
553 if ((pgpath && queue_io) ||
554 (!pgpath && test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))) {
555 /* Queue for the daemon to resubmit */
556 spin_lock_irqsave(&m->lock, flags);
557 bio_list_add(&m->queued_bios, bio);
558 spin_unlock_irqrestore(&m->lock, flags);
559 /* PG_INIT_REQUIRED cannot be set without QUEUE_IO */
560 if (queue_io || test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags))
561 pg_init_all_paths(m);
562 else if (!queue_io)
563 queue_work(kmultipathd, &m->process_queued_bios);
564 return DM_MAPIO_SUBMITTED;
565 }
566
567 if (!pgpath) {
568 if (test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))
569 return DM_MAPIO_REQUEUE;
570 dm_report_EIO(m);
571 return DM_MAPIO_KILL;
572 }
573
574 mpio->pgpath = pgpath;
575 mpio->nr_bytes = nr_bytes;
576
577 bio->bi_status = 0;
578 bio_set_dev(bio, pgpath->path.dev->bdev);
579 bio->bi_opf |= REQ_FAILFAST_TRANSPORT;
580
581 if (pgpath->pg->ps.type->start_io)
582 pgpath->pg->ps.type->start_io(&pgpath->pg->ps,
583 &pgpath->path,
584 nr_bytes);
585 return DM_MAPIO_REMAPPED;
586}
587
588static int multipath_map_bio(struct dm_target *ti, struct bio *bio)
589{
590 struct multipath *m = ti->private;
591 struct dm_mpath_io *mpio = NULL;
592
593 multipath_init_per_bio_data(bio, &mpio, NULL);
594
595 return __multipath_map_bio(m, bio, mpio);
596}
597
598static void process_queued_io_list(struct multipath *m)
599{
600 if (m->queue_mode == DM_TYPE_MQ_REQUEST_BASED)
601 dm_mq_kick_requeue_list(dm_table_get_md(m->ti->table));
602 else if (m->queue_mode == DM_TYPE_BIO_BASED)
603 queue_work(kmultipathd, &m->process_queued_bios);
604}
605
606static void process_queued_bios(struct work_struct *work)
607{
608 int r;
609 unsigned long flags;
610 struct bio *bio;
611 struct bio_list bios;
612 struct blk_plug plug;
613 struct multipath *m =
614 container_of(work, struct multipath, process_queued_bios);
615
616 bio_list_init(&bios);
617
618 spin_lock_irqsave(&m->lock, flags);
619
620 if (bio_list_empty(&m->queued_bios)) {
621 spin_unlock_irqrestore(&m->lock, flags);
622 return;
623 }
624
625 bio_list_merge(&bios, &m->queued_bios);
626 bio_list_init(&m->queued_bios);
627
628 spin_unlock_irqrestore(&m->lock, flags);
629
630 blk_start_plug(&plug);
631 while ((bio = bio_list_pop(&bios))) {
632 r = __multipath_map_bio(m, bio, get_mpio_from_bio(bio));
633 switch (r) {
634 case DM_MAPIO_KILL:
635 bio->bi_status = BLK_STS_IOERR;
636 bio_endio(bio);
637 break;
638 case DM_MAPIO_REQUEUE:
639 bio->bi_status = BLK_STS_DM_REQUEUE;
640 bio_endio(bio);
641 break;
642 case DM_MAPIO_REMAPPED:
643 generic_make_request(bio);
644 break;
645 case 0:
646 break;
647 default:
648 WARN_ONCE(true, "__multipath_map_bio() returned %d\n", r);
649 }
650 }
651 blk_finish_plug(&plug);
652}
653
654static void assign_bit(bool value, long nr, unsigned long *addr)
655{
656 if (value)
657 set_bit(nr, addr);
658 else
659 clear_bit(nr, addr);
660}
661
662/*
663 * If we run out of usable paths, should we queue I/O or error it?
664 */
665static int queue_if_no_path(struct multipath *m, bool queue_if_no_path,
666 bool save_old_value)
667{
668 unsigned long flags;
669
670 spin_lock_irqsave(&m->lock, flags);
671 assign_bit((save_old_value && test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags)) ||
672 (!save_old_value && queue_if_no_path),
673 MPATHF_SAVED_QUEUE_IF_NO_PATH, &m->flags);
674 assign_bit(queue_if_no_path || dm_noflush_suspending(m->ti),
675 MPATHF_QUEUE_IF_NO_PATH, &m->flags);
676 spin_unlock_irqrestore(&m->lock, flags);
677
678 if (!queue_if_no_path) {
679 dm_table_run_md_queue_async(m->ti->table);
680 process_queued_io_list(m);
681 }
682
683 return 0;
684}
685
686/*
687 * An event is triggered whenever a path is taken out of use.
688 * Includes path failure and PG bypass.
689 */
690static void trigger_event(struct work_struct *work)
691{
692 struct multipath *m =
693 container_of(work, struct multipath, trigger_event);
694
695 dm_table_event(m->ti->table);
696}
697
698/*-----------------------------------------------------------------
699 * Constructor/argument parsing:
700 * <#multipath feature args> [<arg>]*
701 * <#hw_handler args> [hw_handler [<arg>]*]
702 * <#priority groups>
703 * <initial priority group>
704 * [<selector> <#selector args> [<arg>]*
705 * <#paths> <#per-path selector args>
706 * [<path> [<arg>]* ]+ ]+
707 *---------------------------------------------------------------*/
708static int parse_path_selector(struct dm_arg_set *as, struct priority_group *pg,
709 struct dm_target *ti)
710{
711 int r;
712 struct path_selector_type *pst;
713 unsigned ps_argc;
714
715 static const struct dm_arg _args[] = {
716 {0, 1024, "invalid number of path selector args"},
717 };
718
719 pst = dm_get_path_selector(dm_shift_arg(as));
720 if (!pst) {
721 ti->error = "unknown path selector type";
722 return -EINVAL;
723 }
724
725 r = dm_read_arg_group(_args, as, &ps_argc, &ti->error);
726 if (r) {
727 dm_put_path_selector(pst);
728 return -EINVAL;
729 }
730
731 r = pst->create(&pg->ps, ps_argc, as->argv);
732 if (r) {
733 dm_put_path_selector(pst);
734 ti->error = "path selector constructor failed";
735 return r;
736 }
737
738 pg->ps.type = pst;
739 dm_consume_args(as, ps_argc);
740
741 return 0;
742}
743
744static struct pgpath *parse_path(struct dm_arg_set *as, struct path_selector *ps,
745 struct dm_target *ti)
746{
747 int r;
748 struct pgpath *p;
749 struct multipath *m = ti->private;
750 struct request_queue *q = NULL;
751 const char *attached_handler_name;
752
753 /* we need at least a path arg */
754 if (as->argc < 1) {
755 ti->error = "no device given";
756 return ERR_PTR(-EINVAL);
757 }
758
759 p = alloc_pgpath();
760 if (!p)
761 return ERR_PTR(-ENOMEM);
762
763 r = dm_get_device(ti, dm_shift_arg(as), dm_table_get_mode(ti->table),
764 &p->path.dev);
765 if (r) {
766 ti->error = "error getting device";
767 goto bad;
768 }
769
770 if (test_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags) || m->hw_handler_name)
771 q = bdev_get_queue(p->path.dev->bdev);
772
773 if (test_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags)) {
774retain:
775 attached_handler_name = scsi_dh_attached_handler_name(q, GFP_KERNEL);
776 if (attached_handler_name) {
777 /*
778 * Clear any hw_handler_params associated with a
779 * handler that isn't already attached.
780 */
781 if (m->hw_handler_name && strcmp(attached_handler_name, m->hw_handler_name)) {
782 kfree(m->hw_handler_params);
783 m->hw_handler_params = NULL;
784 }
785
786 /*
787 * Reset hw_handler_name to match the attached handler
788 *
789 * NB. This modifies the table line to show the actual
790 * handler instead of the original table passed in.
791 */
792 kfree(m->hw_handler_name);
793 m->hw_handler_name = attached_handler_name;
794 }
795 }
796
797 if (m->hw_handler_name) {
798 r = scsi_dh_attach(q, m->hw_handler_name);
799 if (r == -EBUSY) {
800 char b[BDEVNAME_SIZE];
801
802 printk(KERN_INFO "dm-mpath: retaining handler on device %s\n",
803 bdevname(p->path.dev->bdev, b));
804 goto retain;
805 }
806 if (r < 0) {
807 ti->error = "error attaching hardware handler";
808 dm_put_device(ti, p->path.dev);
809 goto bad;
810 }
811
812 if (m->hw_handler_params) {
813 r = scsi_dh_set_params(q, m->hw_handler_params);
814 if (r < 0) {
815 ti->error = "unable to set hardware "
816 "handler parameters";
817 dm_put_device(ti, p->path.dev);
818 goto bad;
819 }
820 }
821 }
822
823 r = ps->type->add_path(ps, &p->path, as->argc, as->argv, &ti->error);
824 if (r) {
825 dm_put_device(ti, p->path.dev);
826 goto bad;
827 }
828
829 return p;
830
831 bad:
832 free_pgpath(p);
833 return ERR_PTR(r);
834}
835
836static struct priority_group *parse_priority_group(struct dm_arg_set *as,
837 struct multipath *m)
838{
839 static const struct dm_arg _args[] = {
840 {1, 1024, "invalid number of paths"},
841 {0, 1024, "invalid number of selector args"}
842 };
843
844 int r;
845 unsigned i, nr_selector_args, nr_args;
846 struct priority_group *pg;
847 struct dm_target *ti = m->ti;
848
849 if (as->argc < 2) {
850 as->argc = 0;
851 ti->error = "not enough priority group arguments";
852 return ERR_PTR(-EINVAL);
853 }
854
855 pg = alloc_priority_group();
856 if (!pg) {
857 ti->error = "couldn't allocate priority group";
858 return ERR_PTR(-ENOMEM);
859 }
860 pg->m = m;
861
862 r = parse_path_selector(as, pg, ti);
863 if (r)
864 goto bad;
865
866 /*
867 * read the paths
868 */
869 r = dm_read_arg(_args, as, &pg->nr_pgpaths, &ti->error);
870 if (r)
871 goto bad;
872
873 r = dm_read_arg(_args + 1, as, &nr_selector_args, &ti->error);
874 if (r)
875 goto bad;
876
877 nr_args = 1 + nr_selector_args;
878 for (i = 0; i < pg->nr_pgpaths; i++) {
879 struct pgpath *pgpath;
880 struct dm_arg_set path_args;
881
882 if (as->argc < nr_args) {
883 ti->error = "not enough path parameters";
884 r = -EINVAL;
885 goto bad;
886 }
887
888 path_args.argc = nr_args;
889 path_args.argv = as->argv;
890
891 pgpath = parse_path(&path_args, &pg->ps, ti);
892 if (IS_ERR(pgpath)) {
893 r = PTR_ERR(pgpath);
894 goto bad;
895 }
896
897 pgpath->pg = pg;
898 list_add_tail(&pgpath->list, &pg->pgpaths);
899 dm_consume_args(as, nr_args);
900 }
901
902 return pg;
903
904 bad:
905 free_priority_group(pg, ti);
906 return ERR_PTR(r);
907}
908
909static int parse_hw_handler(struct dm_arg_set *as, struct multipath *m)
910{
911 unsigned hw_argc;
912 int ret;
913 struct dm_target *ti = m->ti;
914
915 static const struct dm_arg _args[] = {
916 {0, 1024, "invalid number of hardware handler args"},
917 };
918
919 if (dm_read_arg_group(_args, as, &hw_argc, &ti->error))
920 return -EINVAL;
921
922 if (!hw_argc)
923 return 0;
924
925 if (m->queue_mode == DM_TYPE_BIO_BASED) {
926 dm_consume_args(as, hw_argc);
927 DMERR("bio-based multipath doesn't allow hardware handler args");
928 return 0;
929 }
930
931 m->hw_handler_name = kstrdup(dm_shift_arg(as), GFP_KERNEL);
932 if (!m->hw_handler_name)
933 return -EINVAL;
934
935 if (hw_argc > 1) {
936 char *p;
937 int i, j, len = 4;
938
939 for (i = 0; i <= hw_argc - 2; i++)
940 len += strlen(as->argv[i]) + 1;
941 p = m->hw_handler_params = kzalloc(len, GFP_KERNEL);
942 if (!p) {
943 ti->error = "memory allocation failed";
944 ret = -ENOMEM;
945 goto fail;
946 }
947 j = sprintf(p, "%d", hw_argc - 1);
948 for (i = 0, p+=j+1; i <= hw_argc - 2; i++, p+=j+1)
949 j = sprintf(p, "%s", as->argv[i]);
950 }
951 dm_consume_args(as, hw_argc - 1);
952
953 return 0;
954fail:
955 kfree(m->hw_handler_name);
956 m->hw_handler_name = NULL;
957 return ret;
958}
959
960static int parse_features(struct dm_arg_set *as, struct multipath *m)
961{
962 int r;
963 unsigned argc;
964 struct dm_target *ti = m->ti;
965 const char *arg_name;
966
967 static const struct dm_arg _args[] = {
968 {0, 8, "invalid number of feature args"},
969 {1, 50, "pg_init_retries must be between 1 and 50"},
970 {0, 60000, "pg_init_delay_msecs must be between 0 and 60000"},
971 };
972
973 r = dm_read_arg_group(_args, as, &argc, &ti->error);
974 if (r)
975 return -EINVAL;
976
977 if (!argc)
978 return 0;
979
980 do {
981 arg_name = dm_shift_arg(as);
982 argc--;
983
984 if (!strcasecmp(arg_name, "queue_if_no_path")) {
985 r = queue_if_no_path(m, true, false);
986 continue;
987 }
988
989 if (!strcasecmp(arg_name, "retain_attached_hw_handler")) {
990 set_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags);
991 continue;
992 }
993
994 if (!strcasecmp(arg_name, "pg_init_retries") &&
995 (argc >= 1)) {
996 r = dm_read_arg(_args + 1, as, &m->pg_init_retries, &ti->error);
997 argc--;
998 continue;
999 }
1000
1001 if (!strcasecmp(arg_name, "pg_init_delay_msecs") &&
1002 (argc >= 1)) {
1003 r = dm_read_arg(_args + 2, as, &m->pg_init_delay_msecs, &ti->error);
1004 argc--;
1005 continue;
1006 }
1007
1008 if (!strcasecmp(arg_name, "queue_mode") &&
1009 (argc >= 1)) {
1010 const char *queue_mode_name = dm_shift_arg(as);
1011
1012 if (!strcasecmp(queue_mode_name, "bio"))
1013 m->queue_mode = DM_TYPE_BIO_BASED;
1014 else if (!strcasecmp(queue_mode_name, "rq"))
1015 m->queue_mode = DM_TYPE_REQUEST_BASED;
1016 else if (!strcasecmp(queue_mode_name, "mq"))
1017 m->queue_mode = DM_TYPE_MQ_REQUEST_BASED;
1018 else {
1019 ti->error = "Unknown 'queue_mode' requested";
1020 r = -EINVAL;
1021 }
1022 argc--;
1023 continue;
1024 }
1025
1026 ti->error = "Unrecognised multipath feature request";
1027 r = -EINVAL;
1028 } while (argc && !r);
1029
1030 return r;
1031}
1032
1033static int multipath_ctr(struct dm_target *ti, unsigned argc, char **argv)
1034{
1035 /* target arguments */
1036 static const struct dm_arg _args[] = {
1037 {0, 1024, "invalid number of priority groups"},
1038 {0, 1024, "invalid initial priority group number"},
1039 };
1040
1041 int r;
1042 struct multipath *m;
1043 struct dm_arg_set as;
1044 unsigned pg_count = 0;
1045 unsigned next_pg_num;
1046
1047 as.argc = argc;
1048 as.argv = argv;
1049
1050 m = alloc_multipath(ti);
1051 if (!m) {
1052 ti->error = "can't allocate multipath";
1053 return -EINVAL;
1054 }
1055
1056 r = parse_features(&as, m);
1057 if (r)
1058 goto bad;
1059
1060 r = alloc_multipath_stage2(ti, m);
1061 if (r)
1062 goto bad;
1063
1064 r = parse_hw_handler(&as, m);
1065 if (r)
1066 goto bad;
1067
1068 r = dm_read_arg(_args, &as, &m->nr_priority_groups, &ti->error);
1069 if (r)
1070 goto bad;
1071
1072 r = dm_read_arg(_args + 1, &as, &next_pg_num, &ti->error);
1073 if (r)
1074 goto bad;
1075
1076 if ((!m->nr_priority_groups && next_pg_num) ||
1077 (m->nr_priority_groups && !next_pg_num)) {
1078 ti->error = "invalid initial priority group";
1079 r = -EINVAL;
1080 goto bad;
1081 }
1082
1083 /* parse the priority groups */
1084 while (as.argc) {
1085 struct priority_group *pg;
1086 unsigned nr_valid_paths = atomic_read(&m->nr_valid_paths);
1087
1088 pg = parse_priority_group(&as, m);
1089 if (IS_ERR(pg)) {
1090 r = PTR_ERR(pg);
1091 goto bad;
1092 }
1093
1094 nr_valid_paths += pg->nr_pgpaths;
1095 atomic_set(&m->nr_valid_paths, nr_valid_paths);
1096
1097 list_add_tail(&pg->list, &m->priority_groups);
1098 pg_count++;
1099 pg->pg_num = pg_count;
1100 if (!--next_pg_num)
1101 m->next_pg = pg;
1102 }
1103
1104 if (pg_count != m->nr_priority_groups) {
1105 ti->error = "priority group count mismatch";
1106 r = -EINVAL;
1107 goto bad;
1108 }
1109
1110 ti->num_flush_bios = 1;
1111 ti->num_discard_bios = 1;
1112 ti->num_write_same_bios = 1;
1113 ti->num_write_zeroes_bios = 1;
1114 if (m->queue_mode == DM_TYPE_BIO_BASED)
1115 ti->per_io_data_size = multipath_per_bio_data_size();
1116 else
1117 ti->per_io_data_size = sizeof(struct dm_mpath_io);
1118
1119 return 0;
1120
1121 bad:
1122 free_multipath(m);
1123 return r;
1124}
1125
1126static void multipath_wait_for_pg_init_completion(struct multipath *m)
1127{
1128 DEFINE_WAIT(wait);
1129
1130 while (1) {
1131 prepare_to_wait(&m->pg_init_wait, &wait, TASK_UNINTERRUPTIBLE);
1132
1133 if (!atomic_read(&m->pg_init_in_progress))
1134 break;
1135
1136 io_schedule();
1137 }
1138 finish_wait(&m->pg_init_wait, &wait);
1139}
1140
1141static void flush_multipath_work(struct multipath *m)
1142{
1143 set_bit(MPATHF_PG_INIT_DISABLED, &m->flags);
1144 smp_mb__after_atomic();
1145
1146 flush_workqueue(kmpath_handlerd);
1147 multipath_wait_for_pg_init_completion(m);
1148 flush_workqueue(kmultipathd);
1149 flush_work(&m->trigger_event);
1150
1151 clear_bit(MPATHF_PG_INIT_DISABLED, &m->flags);
1152 smp_mb__after_atomic();
1153}
1154
1155static void multipath_dtr(struct dm_target *ti)
1156{
1157 struct multipath *m = ti->private;
1158
1159 flush_multipath_work(m);
1160 free_multipath(m);
1161}
1162
1163/*
1164 * Take a path out of use.
1165 */
1166static int fail_path(struct pgpath *pgpath)
1167{
1168 unsigned long flags;
1169 struct multipath *m = pgpath->pg->m;
1170
1171 spin_lock_irqsave(&m->lock, flags);
1172
1173 if (!pgpath->is_active)
1174 goto out;
1175
1176 DMWARN("Failing path %s.", pgpath->path.dev->name);
1177
1178 pgpath->pg->ps.type->fail_path(&pgpath->pg->ps, &pgpath->path);
1179 pgpath->is_active = false;
1180 pgpath->fail_count++;
1181
1182 atomic_dec(&m->nr_valid_paths);
1183
1184 if (pgpath == m->current_pgpath)
1185 m->current_pgpath = NULL;
1186
1187 dm_path_uevent(DM_UEVENT_PATH_FAILED, m->ti,
1188 pgpath->path.dev->name, atomic_read(&m->nr_valid_paths));
1189
1190 schedule_work(&m->trigger_event);
1191
1192out:
1193 spin_unlock_irqrestore(&m->lock, flags);
1194
1195 return 0;
1196}
1197
1198/*
1199 * Reinstate a previously-failed path
1200 */
1201static int reinstate_path(struct pgpath *pgpath)
1202{
1203 int r = 0, run_queue = 0;
1204 unsigned long flags;
1205 struct multipath *m = pgpath->pg->m;
1206 unsigned nr_valid_paths;
1207
1208 spin_lock_irqsave(&m->lock, flags);
1209
1210 if (pgpath->is_active)
1211 goto out;
1212
1213 DMWARN("Reinstating path %s.", pgpath->path.dev->name);
1214
1215 r = pgpath->pg->ps.type->reinstate_path(&pgpath->pg->ps, &pgpath->path);
1216 if (r)
1217 goto out;
1218
1219 pgpath->is_active = true;
1220
1221 nr_valid_paths = atomic_inc_return(&m->nr_valid_paths);
1222 if (nr_valid_paths == 1) {
1223 m->current_pgpath = NULL;
1224 run_queue = 1;
1225 } else if (m->hw_handler_name && (m->current_pg == pgpath->pg)) {
1226 if (queue_work(kmpath_handlerd, &pgpath->activate_path.work))
1227 atomic_inc(&m->pg_init_in_progress);
1228 }
1229
1230 dm_path_uevent(DM_UEVENT_PATH_REINSTATED, m->ti,
1231 pgpath->path.dev->name, nr_valid_paths);
1232
1233 schedule_work(&m->trigger_event);
1234
1235out:
1236 spin_unlock_irqrestore(&m->lock, flags);
1237 if (run_queue) {
1238 dm_table_run_md_queue_async(m->ti->table);
1239 process_queued_io_list(m);
1240 }
1241
1242 return r;
1243}
1244
1245/*
1246 * Fail or reinstate all paths that match the provided struct dm_dev.
1247 */
1248static int action_dev(struct multipath *m, struct dm_dev *dev,
1249 action_fn action)
1250{
1251 int r = -EINVAL;
1252 struct pgpath *pgpath;
1253 struct priority_group *pg;
1254
1255 list_for_each_entry(pg, &m->priority_groups, list) {
1256 list_for_each_entry(pgpath, &pg->pgpaths, list) {
1257 if (pgpath->path.dev == dev)
1258 r = action(pgpath);
1259 }
1260 }
1261
1262 return r;
1263}
1264
1265/*
1266 * Temporarily try to avoid having to use the specified PG
1267 */
1268static void bypass_pg(struct multipath *m, struct priority_group *pg,
1269 bool bypassed)
1270{
1271 unsigned long flags;
1272
1273 spin_lock_irqsave(&m->lock, flags);
1274
1275 pg->bypassed = bypassed;
1276 m->current_pgpath = NULL;
1277 m->current_pg = NULL;
1278
1279 spin_unlock_irqrestore(&m->lock, flags);
1280
1281 schedule_work(&m->trigger_event);
1282}
1283
1284/*
1285 * Switch to using the specified PG from the next I/O that gets mapped
1286 */
1287static int switch_pg_num(struct multipath *m, const char *pgstr)
1288{
1289 struct priority_group *pg;
1290 unsigned pgnum;
1291 unsigned long flags;
1292 char dummy;
1293
1294 if (!pgstr || (sscanf(pgstr, "%u%c", &pgnum, &dummy) != 1) || !pgnum ||
1295 !m->nr_priority_groups || (pgnum > m->nr_priority_groups)) {
1296 DMWARN("invalid PG number supplied to switch_pg_num");
1297 return -EINVAL;
1298 }
1299
1300 spin_lock_irqsave(&m->lock, flags);
1301 list_for_each_entry(pg, &m->priority_groups, list) {
1302 pg->bypassed = false;
1303 if (--pgnum)
1304 continue;
1305
1306 m->current_pgpath = NULL;
1307 m->current_pg = NULL;
1308 m->next_pg = pg;
1309 }
1310 spin_unlock_irqrestore(&m->lock, flags);
1311
1312 schedule_work(&m->trigger_event);
1313 return 0;
1314}
1315
1316/*
1317 * Set/clear bypassed status of a PG.
1318 * PGs are numbered upwards from 1 in the order they were declared.
1319 */
1320static int bypass_pg_num(struct multipath *m, const char *pgstr, bool bypassed)
1321{
1322 struct priority_group *pg;
1323 unsigned pgnum;
1324 char dummy;
1325
1326 if (!pgstr || (sscanf(pgstr, "%u%c", &pgnum, &dummy) != 1) || !pgnum ||
1327 !m->nr_priority_groups || (pgnum > m->nr_priority_groups)) {
1328 DMWARN("invalid PG number supplied to bypass_pg");
1329 return -EINVAL;
1330 }
1331
1332 list_for_each_entry(pg, &m->priority_groups, list) {
1333 if (!--pgnum)
1334 break;
1335 }
1336
1337 bypass_pg(m, pg, bypassed);
1338 return 0;
1339}
1340
1341/*
1342 * Should we retry pg_init immediately?
1343 */
1344static bool pg_init_limit_reached(struct multipath *m, struct pgpath *pgpath)
1345{
1346 unsigned long flags;
1347 bool limit_reached = false;
1348
1349 spin_lock_irqsave(&m->lock, flags);
1350
1351 if (atomic_read(&m->pg_init_count) <= m->pg_init_retries &&
1352 !test_bit(MPATHF_PG_INIT_DISABLED, &m->flags))
1353 set_bit(MPATHF_PG_INIT_REQUIRED, &m->flags);
1354 else
1355 limit_reached = true;
1356
1357 spin_unlock_irqrestore(&m->lock, flags);
1358
1359 return limit_reached;
1360}
1361
1362static void pg_init_done(void *data, int errors)
1363{
1364 struct pgpath *pgpath = data;
1365 struct priority_group *pg = pgpath->pg;
1366 struct multipath *m = pg->m;
1367 unsigned long flags;
1368 bool delay_retry = false;
1369
1370 /* device or driver problems */
1371 switch (errors) {
1372 case SCSI_DH_OK:
1373 break;
1374 case SCSI_DH_NOSYS:
1375 if (!m->hw_handler_name) {
1376 errors = 0;
1377 break;
1378 }
1379 DMERR("Could not failover the device: Handler scsi_dh_%s "
1380 "Error %d.", m->hw_handler_name, errors);
1381 /*
1382 * Fail path for now, so we do not ping pong
1383 */
1384 fail_path(pgpath);
1385 break;
1386 case SCSI_DH_DEV_TEMP_BUSY:
1387 /*
1388 * Probably doing something like FW upgrade on the
1389 * controller so try the other pg.
1390 */
1391 bypass_pg(m, pg, true);
1392 break;
1393 case SCSI_DH_RETRY:
1394 /* Wait before retrying. */
1395 delay_retry = 1;
1396 /* fall through */
1397 case SCSI_DH_IMM_RETRY:
1398 case SCSI_DH_RES_TEMP_UNAVAIL:
1399 if (pg_init_limit_reached(m, pgpath))
1400 fail_path(pgpath);
1401 errors = 0;
1402 break;
1403 case SCSI_DH_DEV_OFFLINED:
1404 default:
1405 /*
1406 * We probably do not want to fail the path for a device
1407 * error, but this is what the old dm did. In future
1408 * patches we can do more advanced handling.
1409 */
1410 fail_path(pgpath);
1411 }
1412
1413 spin_lock_irqsave(&m->lock, flags);
1414 if (errors) {
1415 if (pgpath == m->current_pgpath) {
1416 DMERR("Could not failover device. Error %d.", errors);
1417 m->current_pgpath = NULL;
1418 m->current_pg = NULL;
1419 }
1420 } else if (!test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags))
1421 pg->bypassed = false;
1422
1423 if (atomic_dec_return(&m->pg_init_in_progress) > 0)
1424 /* Activations of other paths are still on going */
1425 goto out;
1426
1427 if (test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags)) {
1428 if (delay_retry)
1429 set_bit(MPATHF_PG_INIT_DELAY_RETRY, &m->flags);
1430 else
1431 clear_bit(MPATHF_PG_INIT_DELAY_RETRY, &m->flags);
1432
1433 if (__pg_init_all_paths(m))
1434 goto out;
1435 }
1436 clear_bit(MPATHF_QUEUE_IO, &m->flags);
1437
1438 process_queued_io_list(m);
1439
1440 /*
1441 * Wake up any thread waiting to suspend.
1442 */
1443 wake_up(&m->pg_init_wait);
1444
1445out:
1446 spin_unlock_irqrestore(&m->lock, flags);
1447}
1448
1449static void activate_or_offline_path(struct pgpath *pgpath)
1450{
1451 struct request_queue *q = bdev_get_queue(pgpath->path.dev->bdev);
1452
1453 if (pgpath->is_active && !blk_queue_dying(q))
1454 scsi_dh_activate(q, pg_init_done, pgpath);
1455 else
1456 pg_init_done(pgpath, SCSI_DH_DEV_OFFLINED);
1457}
1458
1459static void activate_path_work(struct work_struct *work)
1460{
1461 struct pgpath *pgpath =
1462 container_of(work, struct pgpath, activate_path.work);
1463
1464 activate_or_offline_path(pgpath);
1465}
1466
1467static int noretry_error(blk_status_t error)
1468{
1469 switch (error) {
1470 case BLK_STS_NOTSUPP:
1471 case BLK_STS_NOSPC:
1472 case BLK_STS_TARGET:
1473 case BLK_STS_NEXUS:
1474 case BLK_STS_MEDIUM:
1475 return 1;
1476 }
1477
1478 /* Anything else could be a path failure, so should be retried */
1479 return 0;
1480}
1481
1482static int multipath_end_io(struct dm_target *ti, struct request *clone,
1483 blk_status_t error, union map_info *map_context)
1484{
1485 struct dm_mpath_io *mpio = get_mpio(map_context);
1486 struct pgpath *pgpath = mpio->pgpath;
1487 int r = DM_ENDIO_DONE;
1488
1489 /*
1490 * We don't queue any clone request inside the multipath target
1491 * during end I/O handling, since those clone requests don't have
1492 * bio clones. If we queue them inside the multipath target,
1493 * we need to make bio clones, that requires memory allocation.
1494 * (See drivers/md/dm-rq.c:end_clone_bio() about why the clone requests
1495 * don't have bio clones.)
1496 * Instead of queueing the clone request here, we queue the original
1497 * request into dm core, which will remake a clone request and
1498 * clone bios for it and resubmit it later.
1499 */
1500 if (error && !noretry_error(error)) {
1501 struct multipath *m = ti->private;
1502
1503 r = DM_ENDIO_REQUEUE;
1504
1505 if (pgpath)
1506 fail_path(pgpath);
1507
1508 if (atomic_read(&m->nr_valid_paths) == 0 &&
1509 !test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags)) {
1510 if (error == BLK_STS_IOERR)
1511 dm_report_EIO(m);
1512 /* complete with the original error */
1513 r = DM_ENDIO_DONE;
1514 }
1515 }
1516
1517 if (pgpath) {
1518 struct path_selector *ps = &pgpath->pg->ps;
1519
1520 if (ps->type->end_io)
1521 ps->type->end_io(ps, &pgpath->path, mpio->nr_bytes);
1522 }
1523
1524 return r;
1525}
1526
1527static int multipath_end_io_bio(struct dm_target *ti, struct bio *clone,
1528 blk_status_t *error)
1529{
1530 struct multipath *m = ti->private;
1531 struct dm_mpath_io *mpio = get_mpio_from_bio(clone);
1532 struct pgpath *pgpath = mpio->pgpath;
1533 unsigned long flags;
1534 int r = DM_ENDIO_DONE;
1535
1536 if (!*error || noretry_error(*error))
1537 goto done;
1538
1539 if (pgpath)
1540 fail_path(pgpath);
1541
1542 if (atomic_read(&m->nr_valid_paths) == 0 &&
1543 !test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags)) {
1544 dm_report_EIO(m);
1545 *error = BLK_STS_IOERR;
1546 goto done;
1547 }
1548
1549 /* Queue for the daemon to resubmit */
1550 dm_bio_restore(get_bio_details_from_bio(clone), clone);
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
1558 r = DM_ENDIO_INCOMPLETE;
1559done:
1560 if (pgpath) {
1561 struct path_selector *ps = &pgpath->pg->ps;
1562
1563 if (ps->type->end_io)
1564 ps->type->end_io(ps, &pgpath->path, mpio->nr_bytes);
1565 }
1566
1567 return r;
1568}
1569
1570/*
1571 * Suspend can't complete until all the I/O is processed so if
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.
1575 */
1576static void multipath_presuspend(struct dm_target *ti)
1577{
1578 struct multipath *m = ti->private;
1579
1580 queue_if_no_path(m, false, true);
1581}
1582
1583static void multipath_postsuspend(struct dm_target *ti)
1584{
1585 struct multipath *m = ti->private;
1586
1587 mutex_lock(&m->work_mutex);
1588 flush_multipath_work(m);
1589 mutex_unlock(&m->work_mutex);
1590}
1591
1592/*
1593 * Restore the queue_if_no_path setting.
1594 */
1595static void multipath_resume(struct dm_target *ti)
1596{
1597 struct multipath *m = ti->private;
1598 unsigned long flags;
1599
1600 spin_lock_irqsave(&m->lock, flags);
1601 assign_bit(test_bit(MPATHF_SAVED_QUEUE_IF_NO_PATH, &m->flags),
1602 MPATHF_QUEUE_IF_NO_PATH, &m->flags);
1603 spin_unlock_irqrestore(&m->lock, flags);
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 */
1622static void multipath_status(struct dm_target *ti, status_type_t type,
1623 unsigned status_flags, char *result, unsigned maxlen)
1624{
1625 int sz = 0;
1626 unsigned long flags;
1627 struct multipath *m = ti->private;
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)
1637 DMEMIT("2 %u %u ", test_bit(MPATHF_QUEUE_IO, &m->flags),
1638 atomic_read(&m->pg_init_count));
1639 else {
1640 DMEMIT("%u ", test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags) +
1641 (m->pg_init_retries > 0) * 2 +
1642 (m->pg_init_delay_msecs != DM_PG_INIT_DELAY_DEFAULT) * 2 +
1643 test_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags) +
1644 (m->queue_mode != DM_TYPE_REQUEST_BASED) * 2);
1645
1646 if (test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))
1647 DMEMIT("queue_if_no_path ");
1648 if (m->pg_init_retries)
1649 DMEMIT("pg_init_retries %u ", m->pg_init_retries);
1650 if (m->pg_init_delay_msecs != DM_PG_INIT_DELAY_DEFAULT)
1651 DMEMIT("pg_init_delay_msecs %u ", m->pg_init_delay_msecs);
1652 if (test_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags))
1653 DMEMIT("retain_attached_hw_handler ");
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;
1662 default:
1663 WARN_ON_ONCE(true);
1664 break;
1665 }
1666 }
1667 }
1668
1669 if (!m->hw_handler_name || type == STATUSTYPE_INFO)
1670 DMEMIT("0 ");
1671 else
1672 DMEMIT("1 %s ", m->hw_handler_name);
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
1681 pg_num = (m->nr_priority_groups ? 1 : 0);
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,
1709 p->is_active ? "A" : "F",
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);
1745}
1746
1747static int multipath_message(struct dm_target *ti, unsigned argc, char **argv)
1748{
1749 int r = -EINVAL;
1750 struct dm_dev *dev;
1751 struct multipath *m = ti->private;
1752 action_fn action;
1753
1754 mutex_lock(&m->work_mutex);
1755
1756 if (dm_suspended(ti)) {
1757 r = -EBUSY;
1758 goto out;
1759 }
1760
1761 if (argc == 1) {
1762 if (!strcasecmp(argv[0], "queue_if_no_path")) {
1763 r = queue_if_no_path(m, true, false);
1764 goto out;
1765 } else if (!strcasecmp(argv[0], "fail_if_no_path")) {
1766 r = queue_if_no_path(m, false, false);
1767 goto out;
1768 }
1769 }
1770
1771 if (argc != 2) {
1772 DMWARN("Invalid multipath message arguments. Expected 2 arguments, got %d.", argc);
1773 goto out;
1774 }
1775
1776 if (!strcasecmp(argv[0], "disable_group")) {
1777 r = bypass_pg_num(m, argv[1], true);
1778 goto out;
1779 } else if (!strcasecmp(argv[0], "enable_group")) {
1780 r = bypass_pg_num(m, argv[1], false);
1781 goto out;
1782 } else if (!strcasecmp(argv[0], "switch_group")) {
1783 r = switch_pg_num(m, argv[1]);
1784 goto out;
1785 } else if (!strcasecmp(argv[0], "reinstate_path"))
1786 action = reinstate_path;
1787 else if (!strcasecmp(argv[0], "fail_path"))
1788 action = fail_path;
1789 else {
1790 DMWARN("Unrecognised multipath message received: %s", argv[0]);
1791 goto out;
1792 }
1793
1794 r = dm_get_device(ti, argv[1], dm_table_get_mode(ti->table), &dev);
1795 if (r) {
1796 DMWARN("message: error getting device %s",
1797 argv[1]);
1798 goto out;
1799 }
1800
1801 r = action_dev(m, dev, action);
1802
1803 dm_put_device(ti, dev);
1804
1805out:
1806 mutex_unlock(&m->work_mutex);
1807 return r;
1808}
1809
1810static int multipath_prepare_ioctl(struct dm_target *ti,
1811 struct block_device **bdev, fmode_t *mode)
1812{
1813 struct multipath *m = ti->private;
1814 struct pgpath *current_pgpath;
1815 int r;
1816
1817 current_pgpath = READ_ONCE(m->current_pgpath);
1818 if (!current_pgpath || !test_bit(MPATHF_QUEUE_IO, &m->flags))
1819 current_pgpath = choose_pgpath(m, 0);
1820
1821 if (current_pgpath) {
1822 if (!test_bit(MPATHF_QUEUE_IO, &m->flags)) {
1823 *bdev = current_pgpath->path.dev->bdev;
1824 *mode = current_pgpath->path.dev->mode;
1825 r = 0;
1826 } else {
1827 /* pg_init has not started or completed */
1828 r = -ENOTCONN;
1829 }
1830 } else {
1831 /* No path is available */
1832 if (test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))
1833 r = -ENOTCONN;
1834 else
1835 r = -EIO;
1836 }
1837
1838 if (r == -ENOTCONN) {
1839 if (!READ_ONCE(m->current_pg)) {
1840 /* Path status changed, redo selection */
1841 (void) choose_pgpath(m, 0);
1842 }
1843 if (test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags))
1844 pg_init_all_paths(m);
1845 dm_table_run_md_queue_async(m->ti->table);
1846 process_queued_io_list(m);
1847 }
1848
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;
1855}
1856
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) {
1867 ret = fn(ti, p->path.dev, ti->begin, ti->len, data);
1868 if (ret)
1869 goto out;
1870 }
1871 }
1872
1873out:
1874 return ret;
1875}
1876
1877static int pgpath_busy(struct pgpath *pgpath)
1878{
1879 struct request_queue *q = bdev_get_queue(pgpath->path.dev->bdev);
1880
1881 return blk_lld_busy(q);
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{
1894 bool busy = false, has_active = false;
1895 struct multipath *m = ti->private;
1896 struct priority_group *pg, *next_pg;
1897 struct pgpath *pgpath;
1898
1899 /* pg_init in progress */
1900 if (atomic_read(&m->pg_init_in_progress))
1901 return true;
1902
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
1907 /* Guess which priority_group will be used at next mapping time */
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))
1911 pg = next_pg;
1912
1913 if (!pg) {
1914 /*
1915 * We don't know which pg will be used at next mapping time.
1916 * We don't call choose_pgpath() here to avoid to trigger
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 */
1921 return busy;
1922 }
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 */
1928 busy = true;
1929 list_for_each_entry(pgpath, &pg->pgpaths, list) {
1930 if (pgpath->is_active) {
1931 has_active = true;
1932 if (!pgpath_busy(pgpath)) {
1933 busy = false;
1934 break;
1935 }
1936 }
1937 }
1938
1939 if (!has_active) {
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 */
1945 busy = false;
1946 }
1947
1948 return busy;
1949}
1950
1951/*-----------------------------------------------------------------
1952 * Module setup
1953 *---------------------------------------------------------------*/
1954static struct target_type multipath_target = {
1955 .name = "multipath",
1956 .version = {1, 13, 0},
1957 .features = DM_TARGET_SINGLETON | DM_TARGET_IMMUTABLE |
1958 DM_TARGET_PASSES_INTEGRITY,
1959 .module = THIS_MODULE,
1960 .ctr = multipath_ctr,
1961 .dtr = multipath_dtr,
1962 .clone_and_map_rq = multipath_clone_and_map,
1963 .release_clone_rq = multipath_release_clone,
1964 .rq_end_io = multipath_end_io,
1965 .map = multipath_map_bio,
1966 .end_io = multipath_end_io_bio,
1967 .presuspend = multipath_presuspend,
1968 .postsuspend = multipath_postsuspend,
1969 .resume = multipath_resume,
1970 .status = multipath_status,
1971 .message = multipath_message,
1972 .prepare_ioctl = multipath_prepare_ioctl,
1973 .iterate_devices = multipath_iterate_devices,
1974 .busy = multipath_busy,
1975};
1976
1977static int __init dm_multipath_init(void)
1978{
1979 int r;
1980
1981 kmultipathd = alloc_workqueue("kmpathd", WQ_MEM_RECLAIM, 0);
1982 if (!kmultipathd) {
1983 DMERR("failed to create workqueue kmpathd");
1984 r = -ENOMEM;
1985 goto bad_alloc_kmultipathd;
1986 }
1987
1988 /*
1989 * A separate workqueue is used to handle the device handlers
1990 * to avoid overloading existing workqueue. Overloading the
1991 * old workqueue would also create a bottleneck in the
1992 * path of the storage hardware device activation.
1993 */
1994 kmpath_handlerd = alloc_ordered_workqueue("kmpath_handlerd",
1995 WQ_MEM_RECLAIM);
1996 if (!kmpath_handlerd) {
1997 DMERR("failed to create workqueue kmpath_handlerd");
1998 r = -ENOMEM;
1999 goto bad_alloc_kmpath_handlerd;
2000 }
2001
2002 r = dm_register_target(&multipath_target);
2003 if (r < 0) {
2004 DMERR("request-based register failed %d", r);
2005 r = -EINVAL;
2006 goto bad_register_target;
2007 }
2008
2009 return 0;
2010
2011bad_register_target:
2012 destroy_workqueue(kmpath_handlerd);
2013bad_alloc_kmpath_handlerd:
2014 destroy_workqueue(kmultipathd);
2015bad_alloc_kmultipathd:
2016 return r;
2017}
2018
2019static void __exit dm_multipath_exit(void)
2020{
2021 destroy_workqueue(kmpath_handlerd);
2022 destroy_workqueue(kmultipathd);
2023
2024 dm_unregister_target(&multipath_target);
2025}
2026
2027module_init(dm_multipath_init);
2028module_exit(dm_multipath_exit);
2029
2030MODULE_DESCRIPTION(DM_NAME " multipath target");
2031MODULE_AUTHOR("Sistina Software <dm-devel@redhat.com>");
2032MODULE_LICENSE("GPL");