blob: d3813b1e74e24977980747f70f8f20648299e59f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2003 Sistina Software Limited.
3 * Copyright (C) 2004-2005 Red Hat, Inc. All rights reserved.
4 *
5 * This file is released under the GPL.
6 */
7
Mikulas Patocka586e80e2008-10-21 17:44:59 +01008#include <linux/device-mapper.h>
9
Mike Snitzer4cc96132016-05-12 16:28:10 -040010#include "dm-rq.h"
Mike Snitzer76e33fe2016-05-19 16:15:14 -040011#include "dm-bio-record.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include "dm-path-selector.h"
Mike Andersonb15546f2007-10-19 22:48:02 +010013#include "dm-uevent.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
Mike Snitzere5863d92014-12-17 21:08:12 -050015#include <linux/blkdev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#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>
Mikulas Patocka35991652012-06-03 00:29:58 +010024#include <linux/delay.h>
Chandra Seetharamancfae5c92008-05-01 14:50:11 -070025#include <scsi/scsi_dh.h>
Arun Sharma600634972011-07-26 16:09:06 -070026#include <linux/atomic.h>
Mike Snitzer78ce23b2016-01-31 17:38:28 -050027#include <linux/blk-mq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Alasdair G Kergon72d94862006-06-26 00:27:35 -070029#define DM_MSG_PREFIX "multipath"
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +000030#define DM_PG_INIT_DELAY_MSECS 2000
31#define DM_PG_INIT_DELAY_DEFAULT ((unsigned) -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
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
Josef "Jeff" Sipekc922d5f2006-12-08 02:36:33 -080040 struct dm_path path;
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +000041 struct delayed_work activate_path;
Mike Snitzerbe7d31c2016-02-10 13:02:21 -050042
43 bool is_active:1; /* Path status */
Linus Torvalds1da177e2005-04-16 15:20:36 -070044};
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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 unsigned nr_pgpaths; /* Number of paths in PG */
60 struct list_head pgpaths;
Mike Snitzerbe7d31c2016-02-10 13:02:21 -050061
62 bool bypassed:1; /* Temporarily bypass this PG? */
Linus Torvalds1da177e2005-04-16 15:20:36 -070063};
64
65/* Multipath context */
66struct multipath {
67 struct list_head list;
68 struct dm_target *ti;
69
Chandra Seetharamancfae5c92008-05-01 14:50:11 -070070 const char *hw_handler_name;
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -070071 char *hw_handler_params;
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +000072
Mike Snitzer1fbdd2b2012-06-03 00:29:43 +010073 spinlock_t lock;
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 unsigned nr_priority_groups;
76 struct list_head priority_groups;
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +000077
78 wait_queue_head_t pg_init_wait; /* Wait for pg_init completion */
79
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 struct pgpath *current_pgpath;
81 struct priority_group *current_pg;
82 struct priority_group *next_pg; /* Switch to this PG if set */
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Mike Snitzer518257b2016-03-17 16:32:10 -040084 unsigned long flags; /* Multipath state flags */
Mike Snitzer1fbdd2b2012-06-03 00:29:43 +010085
Dave Wysochanskic9e45582007-10-19 22:47:53 +010086 unsigned pg_init_retries; /* Number of times to retry pg_init */
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +000087 unsigned pg_init_delay_msecs; /* Number of msecs before pg_init retry */
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Mike Snitzer91e968a2016-03-17 17:10:15 -040089 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
Bart Van Assche7e0d5742017-04-27 10:11:23 -070093 enum dm_queue_mode queue_mode;
Mike Snitzere83068a2016-05-24 21:16:51 -040094
Mike Anderson6380f262009-12-10 23:52:21 +000095 struct mutex work_mutex;
Mike Snitzer20800cb2016-03-17 17:13:10 -040096 struct work_struct trigger_event;
Mike Snitzer76e33fe2016-05-19 16:15:14 -040097
98 struct work_struct process_queued_bios;
99 struct bio_list queued_bios;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100};
101
102/*
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400103 * Context information attached to each io we process.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100105struct dm_mpath_io {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 struct pgpath *pgpath;
Kiyoshi Ueda02ab8232009-06-22 10:12:27 +0100107 size_t nr_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108};
109
110typedef int (*action_fn) (struct pgpath *pgpath);
111
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -0700112static struct workqueue_struct *kmultipathd, *kmpath_handlerd;
David Howellsc4028952006-11-22 14:57:56 +0000113static void trigger_event(struct work_struct *work);
Bart Van Assche89bfce72017-04-27 10:11:14 -0700114static void activate_or_offline_path(struct pgpath *pgpath);
115static void activate_path_work(struct work_struct *work);
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400116static void process_queued_bios(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Mike Snitzer518257b2016-03-17 16:32:10 -0400118/*-----------------------------------------------
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? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130/*-----------------------------------------------
131 * Allocation routines
132 *-----------------------------------------------*/
133
134static struct pgpath *alloc_pgpath(void)
135{
Micha³ Miros³awe69fae52006-10-03 01:15:34 -0700136 struct pgpath *pgpath = kzalloc(sizeof(*pgpath), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Mike Anderson224cb3e2008-08-29 09:36:09 +0200138 if (pgpath) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -0500139 pgpath->is_active = true;
Bart Van Assche89bfce72017-04-27 10:11:14 -0700140 INIT_DELAYED_WORK(&pgpath->activate_path, activate_path_work);
Mike Anderson224cb3e2008-08-29 09:36:09 +0200141 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
143 return pgpath;
144}
145
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100146static void free_pgpath(struct pgpath *pgpath)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
148 kfree(pgpath);
149}
150
151static struct priority_group *alloc_priority_group(void)
152{
153 struct priority_group *pg;
154
Micha³ Miros³awe69fae52006-10-03 01:15:34 -0700155 pg = kzalloc(sizeof(*pg), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Micha³ Miros³awe69fae52006-10-03 01:15:34 -0700157 if (pg)
158 INIT_LIST_HEAD(&pg->pgpaths);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
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
Mike Snitzere83068a2016-05-24 21:16:51 -0400188static struct multipath *alloc_multipath(struct dm_target *ti)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{
190 struct multipath *m;
191
Micha³ Miros³awe69fae52006-10-03 01:15:34 -0700192 m = kzalloc(sizeof(*m), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 if (m) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 INIT_LIST_HEAD(&m->priority_groups);
195 spin_lock_init(&m->lock);
Mike Snitzer518257b2016-03-17 16:32:10 -0400196 set_bit(MPATHF_QUEUE_IO, &m->flags);
Mike Snitzer91e968a2016-03-17 17:10:15 -0400197 atomic_set(&m->nr_valid_paths, 0);
198 atomic_set(&m->pg_init_in_progress, 0);
199 atomic_set(&m->pg_init_count, 0);
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +0000200 m->pg_init_delay_msecs = DM_PG_INIT_DELAY_DEFAULT;
David Howellsc4028952006-11-22 14:57:56 +0000201 INIT_WORK(&m->trigger_event, trigger_event);
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +0000202 init_waitqueue_head(&m->pg_init_wait);
Mike Anderson6380f262009-12-10 23:52:21 +0000203 mutex_init(&m->work_mutex);
Mike Snitzer8637a6b2016-01-31 12:08:36 -0500204
Mike Snitzere83068a2016-05-24 21:16:51 -0400205 m->queue_mode = DM_TYPE_NONE;
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400206
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700207 m->ti = ti;
208 ti->private = m;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 }
210
211 return m;
212}
213
Mike Snitzere83068a2016-05-24 21:16:51 -0400214static 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;
Mike Snitzercd025382017-12-05 16:02:21 -0500224
225 } else if (m->queue_mode == DM_TYPE_BIO_BASED ||
226 m->queue_mode == DM_TYPE_NVME_BIO_BASED) {
Mike Snitzere83068a2016-05-24 21:16:51 -0400227 INIT_WORK(&m->process_queued_bios, process_queued_bios);
Mike Snitzercd025382017-12-05 16:02:21 -0500228
229 if (m->queue_mode == DM_TYPE_BIO_BASED) {
230 /*
231 * bio-based doesn't support any direct scsi_dh management;
232 * it just discovers if a scsi_dh is attached.
233 */
234 set_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags);
235 }
Mike Snitzere83068a2016-05-24 21:16:51 -0400236 }
237
238 dm_table_set_type(ti->table, m->queue_mode);
239
240 return 0;
241}
242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243static void free_multipath(struct multipath *m)
244{
245 struct priority_group *pg, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
247 list_for_each_entry_safe(pg, tmp, &m->priority_groups, list) {
248 list_del(&pg->list);
249 free_priority_group(pg, m->ti);
250 }
251
Chandra Seetharamancfae5c92008-05-01 14:50:11 -0700252 kfree(m->hw_handler_name);
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700253 kfree(m->hw_handler_params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 kfree(m);
255}
256
Mike Snitzer2eff1922016-02-03 09:13:14 -0500257static struct dm_mpath_io *get_mpio(union map_info *info)
258{
259 return info->ptr;
260}
261
Mike Snitzerbf661be2016-05-24 15:48:08 -0400262static size_t multipath_per_bio_data_size(void)
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400263{
Mike Snitzerbf661be2016-05-24 15:48:08 -0400264 return sizeof(struct dm_mpath_io) + sizeof(struct dm_bio_details);
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400265}
266
Mike Snitzerbf661be2016-05-24 15:48:08 -0400267static struct dm_mpath_io *get_mpio_from_bio(struct bio *bio)
268{
269 return dm_per_bio_data(bio, multipath_per_bio_data_size());
270}
271
Mike Snitzerd07a2412017-12-11 16:08:54 -0500272static struct dm_bio_details *get_bio_details_from_mpio(struct dm_mpath_io *mpio)
Mike Snitzerbf661be2016-05-24 15:48:08 -0400273{
274 /* dm_bio_details is immediately after the dm_mpath_io in bio's per-bio-data */
Mike Snitzerbf661be2016-05-24 15:48:08 -0400275 void *bio_details = mpio + 1;
Mike Snitzerbf661be2016-05-24 15:48:08 -0400276 return bio_details;
277}
278
Mike Snitzer63f6e6f2017-12-05 14:10:33 -0500279static void multipath_init_per_bio_data(struct bio *bio, struct dm_mpath_io **mpio_p)
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400280{
281 struct dm_mpath_io *mpio = get_mpio_from_bio(bio);
Mike Snitzerd07a2412017-12-11 16:08:54 -0500282 struct dm_bio_details *bio_details = get_bio_details_from_mpio(mpio);
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400283
Mike Snitzerd0442f82017-12-11 15:58:41 -0500284 mpio->nr_bytes = bio->bi_iter.bi_size;
285 mpio->pgpath = NULL;
286 *mpio_p = mpio;
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400287
Mike Snitzerd0442f82017-12-11 15:58:41 -0500288 dm_bio_record(bio_details, bio);
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400289}
290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291/*-----------------------------------------------
292 * Path selection
293 *-----------------------------------------------*/
294
Hannes Reinecke3e9f1be2014-02-28 15:33:45 +0100295static int __pg_init_all_paths(struct multipath *m)
Kiyoshi Uedafb612642010-03-06 02:32:18 +0000296{
297 struct pgpath *pgpath;
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +0000298 unsigned long pg_init_delay = 0;
Kiyoshi Uedafb612642010-03-06 02:32:18 +0000299
Bart Van Asscheb1946792017-04-27 10:11:22 -0700300 lockdep_assert_held(&m->lock);
301
Mike Snitzer91e968a2016-03-17 17:10:15 -0400302 if (atomic_read(&m->pg_init_in_progress) || test_bit(MPATHF_PG_INIT_DISABLED, &m->flags))
Hannes Reinecke3e9f1be2014-02-28 15:33:45 +0100303 return 0;
Hannes Reinecke17f4ff42014-02-28 15:33:42 +0100304
Mike Snitzer91e968a2016-03-17 17:10:15 -0400305 atomic_inc(&m->pg_init_count);
Mike Snitzer518257b2016-03-17 16:32:10 -0400306 clear_bit(MPATHF_PG_INIT_REQUIRED, &m->flags);
Hannes Reinecke3e9f1be2014-02-28 15:33:45 +0100307
308 /* Check here to reset pg_init_required */
309 if (!m->current_pg)
310 return 0;
311
Mike Snitzer518257b2016-03-17 16:32:10 -0400312 if (test_bit(MPATHF_PG_INIT_DELAY_RETRY, &m->flags))
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +0000313 pg_init_delay = msecs_to_jiffies(m->pg_init_delay_msecs != DM_PG_INIT_DELAY_DEFAULT ?
314 m->pg_init_delay_msecs : DM_PG_INIT_DELAY_MSECS);
Kiyoshi Uedafb612642010-03-06 02:32:18 +0000315 list_for_each_entry(pgpath, &m->current_pg->pgpaths, list) {
316 /* Skip failed paths */
317 if (!pgpath->is_active)
318 continue;
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +0000319 if (queue_delayed_work(kmpath_handlerd, &pgpath->activate_path,
320 pg_init_delay))
Mike Snitzer91e968a2016-03-17 17:10:15 -0400321 atomic_inc(&m->pg_init_in_progress);
Kiyoshi Uedafb612642010-03-06 02:32:18 +0000322 }
Mike Snitzer91e968a2016-03-17 17:10:15 -0400323 return atomic_read(&m->pg_init_in_progress);
Kiyoshi Uedafb612642010-03-06 02:32:18 +0000324}
325
Bart Van Asschec1d7ecf2017-04-27 10:11:16 -0700326static int pg_init_all_paths(struct multipath *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327{
Bart Van Asschec1d7ecf2017-04-27 10:11:16 -0700328 int ret;
Mike Snitzer2da16102016-03-17 18:38:17 -0400329 unsigned long flags;
330
331 spin_lock_irqsave(&m->lock, flags);
Bart Van Asschec1d7ecf2017-04-27 10:11:16 -0700332 ret = __pg_init_all_paths(m);
Mike Snitzer2da16102016-03-17 18:38:17 -0400333 spin_unlock_irqrestore(&m->lock, flags);
Bart Van Asschec1d7ecf2017-04-27 10:11:16 -0700334
335 return ret;
Mike Snitzer2da16102016-03-17 18:38:17 -0400336}
337
338static void __switch_pg(struct multipath *m, struct priority_group *pg)
339{
340 m->current_pg = pg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
342 /* Must we initialise the PG first, and queue I/O till it's ready? */
Chandra Seetharamancfae5c92008-05-01 14:50:11 -0700343 if (m->hw_handler_name) {
Mike Snitzer518257b2016-03-17 16:32:10 -0400344 set_bit(MPATHF_PG_INIT_REQUIRED, &m->flags);
345 set_bit(MPATHF_QUEUE_IO, &m->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 } else {
Mike Snitzer518257b2016-03-17 16:32:10 -0400347 clear_bit(MPATHF_PG_INIT_REQUIRED, &m->flags);
348 clear_bit(MPATHF_QUEUE_IO, &m->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 }
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100350
Mike Snitzer91e968a2016-03-17 17:10:15 -0400351 atomic_set(&m->pg_init_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352}
353
Mike Snitzer2da16102016-03-17 18:38:17 -0400354static struct pgpath *choose_path_in_pg(struct multipath *m,
355 struct priority_group *pg,
356 size_t nr_bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
Mike Snitzer2da16102016-03-17 18:38:17 -0400358 unsigned long flags;
Josef "Jeff" Sipekc922d5f2006-12-08 02:36:33 -0800359 struct dm_path *path;
Mike Snitzer2da16102016-03-17 18:38:17 -0400360 struct pgpath *pgpath;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Mike Snitzer90a43232016-02-17 21:29:17 -0500362 path = pg->ps.type->select_path(&pg->ps, nr_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 if (!path)
Mike Snitzer2da16102016-03-17 18:38:17 -0400364 return ERR_PTR(-ENXIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Mike Snitzer2da16102016-03-17 18:38:17 -0400366 pgpath = path_to_pgpath(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Will Deacon506458e2017-10-24 11:22:48 +0100368 if (unlikely(READ_ONCE(m->current_pg) != pg)) {
Mike Snitzer2da16102016-03-17 18:38:17 -0400369 /* Only update current_pgpath if pg changed */
370 spin_lock_irqsave(&m->lock, flags);
371 m->current_pgpath = pgpath;
372 __switch_pg(m, pg);
373 spin_unlock_irqrestore(&m->lock, flags);
374 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Mike Snitzer2da16102016-03-17 18:38:17 -0400376 return pgpath;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377}
378
Mike Snitzer2da16102016-03-17 18:38:17 -0400379static struct pgpath *choose_pgpath(struct multipath *m, size_t nr_bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
Mike Snitzer2da16102016-03-17 18:38:17 -0400381 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 struct priority_group *pg;
Mike Snitzer2da16102016-03-17 18:38:17 -0400383 struct pgpath *pgpath;
Mike Snitzerd19a55c2017-01-06 15:33:14 -0500384 unsigned bypassed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Mike Snitzer91e968a2016-03-17 17:10:15 -0400386 if (!atomic_read(&m->nr_valid_paths)) {
Mike Snitzer518257b2016-03-17 16:32:10 -0400387 clear_bit(MPATHF_QUEUE_IO, &m->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 goto failed;
Benjamin Marzinski1f271972014-08-13 13:53:42 -0500389 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
391 /* Were we instructed to switch PG? */
Will Deacon506458e2017-10-24 11:22:48 +0100392 if (READ_ONCE(m->next_pg)) {
Mike Snitzer2da16102016-03-17 18:38:17 -0400393 spin_lock_irqsave(&m->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 pg = m->next_pg;
Mike Snitzer2da16102016-03-17 18:38:17 -0400395 if (!pg) {
396 spin_unlock_irqrestore(&m->lock, flags);
397 goto check_current_pg;
398 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 m->next_pg = NULL;
Mike Snitzer2da16102016-03-17 18:38:17 -0400400 spin_unlock_irqrestore(&m->lock, flags);
401 pgpath = choose_path_in_pg(m, pg, nr_bytes);
402 if (!IS_ERR_OR_NULL(pgpath))
403 return pgpath;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 }
405
406 /* Don't change PG until it has no remaining paths */
Mike Snitzer2da16102016-03-17 18:38:17 -0400407check_current_pg:
Will Deacon506458e2017-10-24 11:22:48 +0100408 pg = READ_ONCE(m->current_pg);
Mike Snitzer2da16102016-03-17 18:38:17 -0400409 if (pg) {
410 pgpath = choose_path_in_pg(m, pg, nr_bytes);
411 if (!IS_ERR_OR_NULL(pgpath))
412 return pgpath;
413 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
415 /*
416 * Loop through priority groups until we find a valid path.
417 * First time we skip PGs marked 'bypassed'.
Mike Christief220fd42012-06-03 00:29:45 +0100418 * Second time we only try the ones we skipped, but set
419 * pg_init_delay_retry so we do not hammer controllers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 */
421 do {
422 list_for_each_entry(pg, &m->priority_groups, list) {
Mike Snitzerd19a55c2017-01-06 15:33:14 -0500423 if (pg->bypassed == !!bypassed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 continue;
Mike Snitzer2da16102016-03-17 18:38:17 -0400425 pgpath = choose_path_in_pg(m, pg, nr_bytes);
426 if (!IS_ERR_OR_NULL(pgpath)) {
Mike Christief220fd42012-06-03 00:29:45 +0100427 if (!bypassed)
Mike Snitzer518257b2016-03-17 16:32:10 -0400428 set_bit(MPATHF_PG_INIT_DELAY_RETRY, &m->flags);
Mike Snitzer2da16102016-03-17 18:38:17 -0400429 return pgpath;
Mike Christief220fd42012-06-03 00:29:45 +0100430 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 }
432 } while (bypassed--);
433
434failed:
Mike Snitzer2da16102016-03-17 18:38:17 -0400435 spin_lock_irqsave(&m->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 m->current_pgpath = NULL;
437 m->current_pg = NULL;
Mike Snitzer2da16102016-03-17 18:38:17 -0400438 spin_unlock_irqrestore(&m->lock, flags);
439
440 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441}
442
Kiyoshi Ueda45e15722006-12-08 02:41:10 -0800443/*
Bart Van Assche86331f32017-04-27 10:11:26 -0700444 * dm_report_EIO() is a macro instead of a function to make pr_debug()
445 * report the function name and line number of the function from which
446 * it has been invoked.
Kiyoshi Ueda45e15722006-12-08 02:41:10 -0800447 */
Bart Van Assche86331f32017-04-27 10:11:26 -0700448#define dm_report_EIO(m) \
Christoph Hellwig18a482f2017-05-15 17:28:37 +0200449do { \
Bart Van Assche86331f32017-04-27 10:11:26 -0700450 struct mapped_device *md = dm_table_get_md((m)->ti->table); \
451 \
452 pr_debug("%s: returning EIO; QIFNP = %d; SQIFNP = %d; DNFS = %d\n", \
453 dm_device_name(md), \
454 test_bit(MPATHF_QUEUE_IF_NO_PATH, &(m)->flags), \
455 test_bit(MPATHF_SAVED_QUEUE_IF_NO_PATH, &(m)->flags), \
456 dm_noflush_suspending((m)->ti)); \
Christoph Hellwig18a482f2017-05-15 17:28:37 +0200457} while (0)
Kiyoshi Ueda45e15722006-12-08 02:41:10 -0800458
Hannes Reinecke36fcffc2014-02-28 15:33:47 +0100459/*
Mike Snitzerc1fd0ab2017-12-07 22:42:27 -0500460 * Check whether bios must be queued in the device-mapper core rather
461 * than here in the target.
462 *
463 * If MPATHF_QUEUE_IF_NO_PATH and MPATHF_SAVED_QUEUE_IF_NO_PATH hold
464 * the same value then we are not between multipath_presuspend()
465 * and multipath_resume() calls and we have no need to check
466 * for the DMF_NOFLUSH_SUSPENDING flag.
467 */
468static bool __must_push_back(struct multipath *m, unsigned long flags)
469{
470 return ((test_bit(MPATHF_QUEUE_IF_NO_PATH, &flags) !=
471 test_bit(MPATHF_SAVED_QUEUE_IF_NO_PATH, &flags)) &&
472 dm_noflush_suspending(m->ti));
473}
474
475/*
476 * Following functions use READ_ONCE to get atomic access to
477 * all m->flags to avoid taking spinlock
478 */
479static bool must_push_back_rq(struct multipath *m)
480{
481 unsigned long flags = READ_ONCE(m->flags);
482 return test_bit(MPATHF_QUEUE_IF_NO_PATH, &flags) || __must_push_back(m, flags);
483}
484
485static bool must_push_back_bio(struct multipath *m)
486{
487 unsigned long flags = READ_ONCE(m->flags);
488 return __must_push_back(m, flags);
489}
490
491/*
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400492 * Map cloned requests (request-based multipath)
Hannes Reinecke36fcffc2014-02-28 15:33:47 +0100493 */
Christoph Hellwigeb8db832017-01-22 18:32:46 +0100494static int multipath_clone_and_map(struct dm_target *ti, struct request *rq,
495 union map_info *map_context,
496 struct request **__clone)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497{
Mike Snitzer7943bd62016-02-02 21:53:15 -0500498 struct multipath *m = ti->private;
Christoph Hellwigeb8db832017-01-22 18:32:46 +0100499 size_t nr_bytes = blk_rq_bytes(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 struct pgpath *pgpath;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +0100501 struct block_device *bdev;
Christoph Hellwigeb8db832017-01-22 18:32:46 +0100502 struct dm_mpath_io *mpio = get_mpio(map_context);
Bart Van Assche7083abb2017-04-27 10:11:15 -0700503 struct request_queue *q;
Christoph Hellwigeb8db832017-01-22 18:32:46 +0100504 struct request *clone;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 /* Do we need to select a new pgpath? */
Will Deacon506458e2017-10-24 11:22:48 +0100507 pgpath = READ_ONCE(m->current_pgpath);
Mike Snitzer2da16102016-03-17 18:38:17 -0400508 if (!pgpath || !test_bit(MPATHF_QUEUE_IO, &m->flags))
509 pgpath = choose_pgpath(m, nr_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
Mike Snitzer9bf59a62014-02-28 15:33:48 +0100511 if (!pgpath) {
Mike Snitzerc1fd0ab2017-12-07 22:42:27 -0500512 if (must_push_back_rq(m))
Mike Snitzerb88efd42016-09-09 19:26:19 -0400513 return DM_MAPIO_DELAY_REQUEUE;
Christoph Hellwig18a482f2017-05-15 17:28:37 +0200514 dm_report_EIO(m); /* Failed */
Christoph Hellwigf98e0eb2017-05-15 17:28:38 +0200515 return DM_MAPIO_KILL;
Mike Snitzer518257b2016-03-17 16:32:10 -0400516 } else if (test_bit(MPATHF_QUEUE_IO, &m->flags) ||
517 test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags)) {
Bart Van Asschec1d7ecf2017-04-27 10:11:16 -0700518 if (pg_init_all_paths(m))
519 return DM_MAPIO_DELAY_REQUEUE;
Bart Van Assche06eb0612017-04-07 16:50:44 -0700520 return DM_MAPIO_REQUEUE;
Mike Snitzer9bf59a62014-02-28 15:33:48 +0100521 }
Mike Snitzer6afbc012014-07-08 11:55:09 -0400522
Mike Snitzer9bf59a62014-02-28 15:33:48 +0100523 mpio->pgpath = pgpath;
524 mpio->nr_bytes = nr_bytes;
Keith Busch2eb6e1e2014-10-17 17:46:36 -0600525
526 bdev = pgpath->path.dev->bdev;
Bart Van Assche7083abb2017-04-27 10:11:15 -0700527 q = bdev_get_queue(bdev);
528 clone = blk_get_request(q, rq->cmd_flags | REQ_NOMERGE, GFP_ATOMIC);
Christoph Hellwigeb8db832017-01-22 18:32:46 +0100529 if (IS_ERR(clone)) {
530 /* EBUSY, ENODEV or EWOULDBLOCK: requeue */
Bart Van Assche7083abb2017-04-27 10:11:15 -0700531 bool queue_dying = blk_queue_dying(q);
Bart Van Assche7083abb2017-04-27 10:11:15 -0700532 if (queue_dying) {
533 atomic_inc(&m->pg_init_in_progress);
534 activate_or_offline_path(pgpath);
Bart Van Assche7083abb2017-04-27 10:11:15 -0700535 }
Bart Van Assche06eb0612017-04-07 16:50:44 -0700536 return DM_MAPIO_DELAY_REQUEUE;
Mike Snitzere5863d92014-12-17 21:08:12 -0500537 }
Christoph Hellwigeb8db832017-01-22 18:32:46 +0100538 clone->bio = clone->biotail = NULL;
539 clone->rq_disk = bdev->bd_disk;
540 clone->cmd_flags |= REQ_FAILFAST_TRANSPORT;
541 *__clone = clone;
Mike Snitzere5863d92014-12-17 21:08:12 -0500542
Mike Snitzer9bf59a62014-02-28 15:33:48 +0100543 if (pgpath->pg->ps.type->start_io)
544 pgpath->pg->ps.type->start_io(&pgpath->pg->ps,
545 &pgpath->path,
546 nr_bytes);
Keith Busch2eb6e1e2014-10-17 17:46:36 -0600547 return DM_MAPIO_REMAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548}
549
Mike Snitzere5863d92014-12-17 21:08:12 -0500550static void multipath_release_clone(struct request *clone)
551{
Christoph Hellwigeb8db832017-01-22 18:32:46 +0100552 blk_put_request(clone);
Mike Snitzere5863d92014-12-17 21:08:12 -0500553}
554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555/*
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400556 * Map cloned bios (bio-based multipath)
557 */
558static int __multipath_map_bio(struct multipath *m, struct bio *bio, struct dm_mpath_io *mpio)
559{
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400560 struct pgpath *pgpath;
561 unsigned long flags;
562 bool queue_io;
563
564 /* Do we need to select a new pgpath? */
Will Deacon506458e2017-10-24 11:22:48 +0100565 pgpath = READ_ONCE(m->current_pgpath);
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400566 queue_io = test_bit(MPATHF_QUEUE_IO, &m->flags);
567 if (!pgpath || !queue_io)
Mike Snitzerd0442f82017-12-11 15:58:41 -0500568 pgpath = choose_pgpath(m, mpio->nr_bytes);
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400569
570 if ((pgpath && queue_io) ||
571 (!pgpath && test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))) {
572 /* Queue for the daemon to resubmit */
573 spin_lock_irqsave(&m->lock, flags);
574 bio_list_add(&m->queued_bios, bio);
575 spin_unlock_irqrestore(&m->lock, flags);
576 /* PG_INIT_REQUIRED cannot be set without QUEUE_IO */
577 if (queue_io || test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags))
578 pg_init_all_paths(m);
579 else if (!queue_io)
580 queue_work(kmultipathd, &m->process_queued_bios);
581 return DM_MAPIO_SUBMITTED;
582 }
583
584 if (!pgpath) {
Mike Snitzerc1fd0ab2017-12-07 22:42:27 -0500585 if (must_push_back_bio(m))
Bart Van Asscheca5beb72017-04-27 10:11:24 -0700586 return DM_MAPIO_REQUEUE;
Christoph Hellwig18a482f2017-05-15 17:28:37 +0200587 dm_report_EIO(m);
Christoph Hellwig846785e2017-06-03 09:38:02 +0200588 return DM_MAPIO_KILL;
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400589 }
590
591 mpio->pgpath = pgpath;
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400592
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200593 bio->bi_status = 0;
Christoph Hellwig74d46992017-08-23 19:10:32 +0200594 bio_set_dev(bio, pgpath->path.dev->bdev);
Jens Axboe1eff9d32016-08-05 15:35:16 -0600595 bio->bi_opf |= REQ_FAILFAST_TRANSPORT;
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400596
597 if (pgpath->pg->ps.type->start_io)
598 pgpath->pg->ps.type->start_io(&pgpath->pg->ps,
599 &pgpath->path,
Mike Snitzerd0442f82017-12-11 15:58:41 -0500600 mpio->nr_bytes);
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400601 return DM_MAPIO_REMAPPED;
602}
603
604static int multipath_map_bio(struct dm_target *ti, struct bio *bio)
605{
606 struct multipath *m = ti->private;
Mike Snitzerbf661be2016-05-24 15:48:08 -0400607 struct dm_mpath_io *mpio = NULL;
608
Mike Snitzer63f6e6f2017-12-05 14:10:33 -0500609 multipath_init_per_bio_data(bio, &mpio);
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400610 return __multipath_map_bio(m, bio, mpio);
611}
612
Mike Snitzer7e48c762016-09-14 10:47:03 -0400613static void process_queued_io_list(struct multipath *m)
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400614{
Mike Snitzer7e48c762016-09-14 10:47:03 -0400615 if (m->queue_mode == DM_TYPE_MQ_REQUEST_BASED)
616 dm_mq_kick_requeue_list(dm_table_get_md(m->ti->table));
Mike Snitzercd025382017-12-05 16:02:21 -0500617 else if (m->queue_mode == DM_TYPE_BIO_BASED ||
618 m->queue_mode == DM_TYPE_NVME_BIO_BASED)
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400619 queue_work(kmultipathd, &m->process_queued_bios);
620}
621
622static void process_queued_bios(struct work_struct *work)
623{
624 int r;
625 unsigned long flags;
626 struct bio *bio;
627 struct bio_list bios;
628 struct blk_plug plug;
629 struct multipath *m =
630 container_of(work, struct multipath, process_queued_bios);
631
632 bio_list_init(&bios);
633
634 spin_lock_irqsave(&m->lock, flags);
635
636 if (bio_list_empty(&m->queued_bios)) {
637 spin_unlock_irqrestore(&m->lock, flags);
638 return;
639 }
640
641 bio_list_merge(&bios, &m->queued_bios);
642 bio_list_init(&m->queued_bios);
643
644 spin_unlock_irqrestore(&m->lock, flags);
645
646 blk_start_plug(&plug);
647 while ((bio = bio_list_pop(&bios))) {
Mike Snitzer1836df02017-12-06 16:08:14 -0500648 struct dm_mpath_io *mpio = get_mpio_from_bio(bio);
649 dm_bio_restore(get_bio_details_from_mpio(mpio), bio);
650 r = __multipath_map_bio(m, bio, mpio);
Christoph Hellwig846785e2017-06-03 09:38:02 +0200651 switch (r) {
652 case DM_MAPIO_KILL:
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200653 bio->bi_status = BLK_STS_IOERR;
654 bio_endio(bio);
Dan Carpenter047385b2017-06-14 08:22:55 -0600655 break;
Christoph Hellwig846785e2017-06-03 09:38:02 +0200656 case DM_MAPIO_REQUEUE:
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200657 bio->bi_status = BLK_STS_DM_REQUEUE;
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400658 bio_endio(bio);
Christoph Hellwig846785e2017-06-03 09:38:02 +0200659 break;
660 case DM_MAPIO_REMAPPED:
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400661 generic_make_request(bio);
Christoph Hellwig846785e2017-06-03 09:38:02 +0200662 break;
Bart Van Assche9157c8d2017-08-09 11:32:14 -0700663 case 0:
664 break;
665 default:
666 WARN_ONCE(true, "__multipath_map_bio() returned %d\n", r);
Christoph Hellwig846785e2017-06-03 09:38:02 +0200667 }
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400668 }
669 blk_finish_plug(&plug);
670}
671
672/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 * If we run out of usable paths, should we queue I/O or error it?
674 */
Mike Snitzerbe7d31c2016-02-10 13:02:21 -0500675static int queue_if_no_path(struct multipath *m, bool queue_if_no_path,
676 bool save_old_value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677{
678 unsigned long flags;
679
680 spin_lock_irqsave(&m->lock, flags);
Lukas Wunner5307e2a2017-10-12 12:40:10 +0200681 assign_bit(MPATHF_SAVED_QUEUE_IF_NO_PATH, &m->flags,
682 (save_old_value && test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags)) ||
683 (!save_old_value && queue_if_no_path));
Mike Snitzerc1fd0ab2017-12-07 22:42:27 -0500684 assign_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags, queue_if_no_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 spin_unlock_irqrestore(&m->lock, flags);
686
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400687 if (!queue_if_no_path) {
Hannes Reinecke63d832c2014-05-26 14:45:39 +0200688 dm_table_run_md_queue_async(m->ti->table);
Mike Snitzer7e48c762016-09-14 10:47:03 -0400689 process_queued_io_list(m);
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400690 }
Hannes Reinecke63d832c2014-05-26 14:45:39 +0200691
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 return 0;
693}
694
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695/*
696 * An event is triggered whenever a path is taken out of use.
697 * Includes path failure and PG bypass.
698 */
David Howellsc4028952006-11-22 14:57:56 +0000699static void trigger_event(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700{
David Howellsc4028952006-11-22 14:57:56 +0000701 struct multipath *m =
702 container_of(work, struct multipath, trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
704 dm_table_event(m->ti->table);
705}
706
707/*-----------------------------------------------------------------
708 * Constructor/argument parsing:
709 * <#multipath feature args> [<arg>]*
710 * <#hw_handler args> [hw_handler [<arg>]*]
711 * <#priority groups>
712 * <initial priority group>
713 * [<selector> <#selector args> [<arg>]*
714 * <#paths> <#per-path selector args>
715 * [<path> [<arg>]* ]+ ]+
716 *---------------------------------------------------------------*/
Mike Snitzer498f0102011-08-02 12:32:04 +0100717static int parse_path_selector(struct dm_arg_set *as, struct priority_group *pg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 struct dm_target *ti)
719{
720 int r;
721 struct path_selector_type *pst;
722 unsigned ps_argc;
723
Eric Biggers5916a222017-06-22 11:32:45 -0700724 static const struct dm_arg _args[] = {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700725 {0, 1024, "invalid number of path selector args"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 };
727
Mike Snitzer498f0102011-08-02 12:32:04 +0100728 pst = dm_get_path_selector(dm_shift_arg(as));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 if (!pst) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700730 ti->error = "unknown path selector type";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 return -EINVAL;
732 }
733
Mike Snitzer498f0102011-08-02 12:32:04 +0100734 r = dm_read_arg_group(_args, as, &ps_argc, &ti->error);
Mikulas Patocka371b2e32008-07-21 12:00:24 +0100735 if (r) {
736 dm_put_path_selector(pst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 return -EINVAL;
Mikulas Patocka371b2e32008-07-21 12:00:24 +0100738 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
740 r = pst->create(&pg->ps, ps_argc, as->argv);
741 if (r) {
742 dm_put_path_selector(pst);
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700743 ti->error = "path selector constructor failed";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 return r;
745 }
746
747 pg->ps.type = pst;
Mike Snitzer498f0102011-08-02 12:32:04 +0100748 dm_consume_args(as, ps_argc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
750 return 0;
751}
752
Mike Snitzer498f0102011-08-02 12:32:04 +0100753static struct pgpath *parse_path(struct dm_arg_set *as, struct path_selector *ps,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 struct dm_target *ti)
755{
756 int r;
757 struct pgpath *p;
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700758 struct multipath *m = ti->private;
Mike Snitzera58a9352012-07-27 15:08:04 +0100759 struct request_queue *q = NULL;
760 const char *attached_handler_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
762 /* we need at least a path arg */
763 if (as->argc < 1) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700764 ti->error = "no device given";
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100765 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 }
767
768 p = alloc_pgpath();
769 if (!p)
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100770 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Mike Snitzer498f0102011-08-02 12:32:04 +0100772 r = dm_get_device(ti, dm_shift_arg(as), dm_table_get_mode(ti->table),
Nikanth Karthikesan8215d6e2010-03-06 02:32:27 +0000773 &p->path.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 if (r) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700775 ti->error = "error getting device";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 goto bad;
777 }
778
Mike Snitzer518257b2016-03-17 16:32:10 -0400779 if (test_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags) || m->hw_handler_name)
Mike Snitzera58a9352012-07-27 15:08:04 +0100780 q = bdev_get_queue(p->path.dev->bdev);
Hannes Reineckea0cf7ea2009-06-22 10:12:11 +0100781
Mike Snitzer518257b2016-03-17 16:32:10 -0400782 if (test_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags)) {
Christoph Hellwig1bab0de2015-08-27 14:16:54 +0200783retain:
Mike Snitzera58a9352012-07-27 15:08:04 +0100784 attached_handler_name = scsi_dh_attached_handler_name(q, GFP_KERNEL);
785 if (attached_handler_name) {
786 /*
tang.junhui54cd6402016-11-24 15:11:48 +0800787 * Clear any hw_handler_params associated with a
788 * handler that isn't already attached.
789 */
790 if (m->hw_handler_name && strcmp(attached_handler_name, m->hw_handler_name)) {
791 kfree(m->hw_handler_params);
792 m->hw_handler_params = NULL;
793 }
794
795 /*
Mike Snitzera58a9352012-07-27 15:08:04 +0100796 * Reset hw_handler_name to match the attached handler
Mike Snitzera58a9352012-07-27 15:08:04 +0100797 *
798 * NB. This modifies the table line to show the actual
799 * handler instead of the original table passed in.
800 */
801 kfree(m->hw_handler_name);
802 m->hw_handler_name = attached_handler_name;
Mike Snitzera58a9352012-07-27 15:08:04 +0100803 }
804 }
805
806 if (m->hw_handler_name) {
Hannes Reineckea0cf7ea2009-06-22 10:12:11 +0100807 r = scsi_dh_attach(q, m->hw_handler_name);
808 if (r == -EBUSY) {
Christoph Hellwig1bab0de2015-08-27 14:16:54 +0200809 char b[BDEVNAME_SIZE];
Hannes Reineckea0cf7ea2009-06-22 10:12:11 +0100810
Christoph Hellwig1bab0de2015-08-27 14:16:54 +0200811 printk(KERN_INFO "dm-mpath: retaining handler on device %s\n",
812 bdevname(p->path.dev->bdev, b));
813 goto retain;
814 }
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700815 if (r < 0) {
Hannes Reineckea0cf7ea2009-06-22 10:12:11 +0100816 ti->error = "error attaching hardware handler";
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700817 dm_put_device(ti, p->path.dev);
818 goto bad;
819 }
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700820
821 if (m->hw_handler_params) {
822 r = scsi_dh_set_params(q, m->hw_handler_params);
823 if (r < 0) {
824 ti->error = "unable to set hardware "
825 "handler parameters";
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700826 dm_put_device(ti, p->path.dev);
827 goto bad;
828 }
829 }
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700830 }
831
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 r = ps->type->add_path(ps, &p->path, as->argc, as->argv, &ti->error);
833 if (r) {
834 dm_put_device(ti, p->path.dev);
835 goto bad;
836 }
837
838 return p;
839
840 bad:
841 free_pgpath(p);
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100842 return ERR_PTR(r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843}
844
Mike Snitzer498f0102011-08-02 12:32:04 +0100845static struct priority_group *parse_priority_group(struct dm_arg_set *as,
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700846 struct multipath *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847{
Eric Biggers5916a222017-06-22 11:32:45 -0700848 static const struct dm_arg _args[] = {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700849 {1, 1024, "invalid number of paths"},
850 {0, 1024, "invalid number of selector args"}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 };
852
853 int r;
Mike Snitzer498f0102011-08-02 12:32:04 +0100854 unsigned i, nr_selector_args, nr_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 struct priority_group *pg;
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700856 struct dm_target *ti = m->ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
858 if (as->argc < 2) {
859 as->argc = 0;
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100860 ti->error = "not enough priority group arguments";
861 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 }
863
864 pg = alloc_priority_group();
865 if (!pg) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700866 ti->error = "couldn't allocate priority group";
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100867 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 }
869 pg->m = m;
870
871 r = parse_path_selector(as, pg, ti);
872 if (r)
873 goto bad;
874
875 /*
876 * read the paths
877 */
Mike Snitzer498f0102011-08-02 12:32:04 +0100878 r = dm_read_arg(_args, as, &pg->nr_pgpaths, &ti->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 if (r)
880 goto bad;
881
Mike Snitzer498f0102011-08-02 12:32:04 +0100882 r = dm_read_arg(_args + 1, as, &nr_selector_args, &ti->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 if (r)
884 goto bad;
885
Mike Snitzer498f0102011-08-02 12:32:04 +0100886 nr_args = 1 + nr_selector_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 for (i = 0; i < pg->nr_pgpaths; i++) {
888 struct pgpath *pgpath;
Mike Snitzer498f0102011-08-02 12:32:04 +0100889 struct dm_arg_set path_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
Mike Snitzer498f0102011-08-02 12:32:04 +0100891 if (as->argc < nr_args) {
Mikulas Patocka148acff2008-07-21 12:00:30 +0100892 ti->error = "not enough path parameters";
Alasdair G Kergon6bbf79a2010-08-12 04:13:49 +0100893 r = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 goto bad;
Mikulas Patocka148acff2008-07-21 12:00:30 +0100895 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
Mike Snitzer498f0102011-08-02 12:32:04 +0100897 path_args.argc = nr_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 path_args.argv = as->argv;
899
900 pgpath = parse_path(&path_args, &pg->ps, ti);
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100901 if (IS_ERR(pgpath)) {
902 r = PTR_ERR(pgpath);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 goto bad;
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100904 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
906 pgpath->pg = pg;
907 list_add_tail(&pgpath->list, &pg->pgpaths);
Mike Snitzer498f0102011-08-02 12:32:04 +0100908 dm_consume_args(as, nr_args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 }
910
911 return pg;
912
913 bad:
914 free_priority_group(pg, ti);
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100915 return ERR_PTR(r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916}
917
Mike Snitzer498f0102011-08-02 12:32:04 +0100918static int parse_hw_handler(struct dm_arg_set *as, struct multipath *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 unsigned hw_argc;
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700921 int ret;
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700922 struct dm_target *ti = m->ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
Eric Biggers5916a222017-06-22 11:32:45 -0700924 static const struct dm_arg _args[] = {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700925 {0, 1024, "invalid number of hardware handler args"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 };
927
Mike Snitzer498f0102011-08-02 12:32:04 +0100928 if (dm_read_arg_group(_args, as, &hw_argc, &ti->error))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 return -EINVAL;
930
931 if (!hw_argc)
932 return 0;
933
Mike Snitzercd025382017-12-05 16:02:21 -0500934 if (m->queue_mode == DM_TYPE_BIO_BASED ||
935 m->queue_mode == DM_TYPE_NVME_BIO_BASED) {
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400936 dm_consume_args(as, hw_argc);
937 DMERR("bio-based multipath doesn't allow hardware handler args");
938 return 0;
939 }
940
Mike Snitzer498f0102011-08-02 12:32:04 +0100941 m->hw_handler_name = kstrdup(dm_shift_arg(as), GFP_KERNEL);
tang.junhuif97dc422016-10-28 17:04:46 +0800942 if (!m->hw_handler_name)
943 return -EINVAL;
Chandra Seetharaman14e98c52008-11-13 23:39:06 +0000944
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700945 if (hw_argc > 1) {
946 char *p;
947 int i, j, len = 4;
948
949 for (i = 0; i <= hw_argc - 2; i++)
950 len += strlen(as->argv[i]) + 1;
951 p = m->hw_handler_params = kzalloc(len, GFP_KERNEL);
952 if (!p) {
953 ti->error = "memory allocation failed";
954 ret = -ENOMEM;
955 goto fail;
956 }
957 j = sprintf(p, "%d", hw_argc - 1);
958 for (i = 0, p+=j+1; i <= hw_argc - 2; i++, p+=j+1)
959 j = sprintf(p, "%s", as->argv[i]);
960 }
Mike Snitzer498f0102011-08-02 12:32:04 +0100961 dm_consume_args(as, hw_argc - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
963 return 0;
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700964fail:
965 kfree(m->hw_handler_name);
966 m->hw_handler_name = NULL;
967 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968}
969
Mike Snitzer498f0102011-08-02 12:32:04 +0100970static int parse_features(struct dm_arg_set *as, struct multipath *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971{
972 int r;
973 unsigned argc;
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700974 struct dm_target *ti = m->ti;
Mike Snitzer498f0102011-08-02 12:32:04 +0100975 const char *arg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
Eric Biggers5916a222017-06-22 11:32:45 -0700977 static const struct dm_arg _args[] = {
Mike Snitzere83068a2016-05-24 21:16:51 -0400978 {0, 8, "invalid number of feature args"},
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100979 {1, 50, "pg_init_retries must be between 1 and 50"},
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +0000980 {0, 60000, "pg_init_delay_msecs must be between 0 and 60000"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 };
982
Mike Snitzer498f0102011-08-02 12:32:04 +0100983 r = dm_read_arg_group(_args, as, &argc, &ti->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 if (r)
985 return -EINVAL;
986
987 if (!argc)
988 return 0;
989
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100990 do {
Mike Snitzer498f0102011-08-02 12:32:04 +0100991 arg_name = dm_shift_arg(as);
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100992 argc--;
993
Mike Snitzer498f0102011-08-02 12:32:04 +0100994 if (!strcasecmp(arg_name, "queue_if_no_path")) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -0500995 r = queue_if_no_path(m, true, false);
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100996 continue;
997 }
998
Mike Snitzera58a9352012-07-27 15:08:04 +0100999 if (!strcasecmp(arg_name, "retain_attached_hw_handler")) {
Mike Snitzer518257b2016-03-17 16:32:10 -04001000 set_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags);
Mike Snitzera58a9352012-07-27 15:08:04 +01001001 continue;
1002 }
1003
Mike Snitzer498f0102011-08-02 12:32:04 +01001004 if (!strcasecmp(arg_name, "pg_init_retries") &&
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001005 (argc >= 1)) {
Mike Snitzer498f0102011-08-02 12:32:04 +01001006 r = dm_read_arg(_args + 1, as, &m->pg_init_retries, &ti->error);
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001007 argc--;
1008 continue;
1009 }
1010
Mike Snitzer498f0102011-08-02 12:32:04 +01001011 if (!strcasecmp(arg_name, "pg_init_delay_msecs") &&
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +00001012 (argc >= 1)) {
Mike Snitzer498f0102011-08-02 12:32:04 +01001013 r = dm_read_arg(_args + 2, as, &m->pg_init_delay_msecs, &ti->error);
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +00001014 argc--;
1015 continue;
1016 }
1017
Mike Snitzere83068a2016-05-24 21:16:51 -04001018 if (!strcasecmp(arg_name, "queue_mode") &&
1019 (argc >= 1)) {
1020 const char *queue_mode_name = dm_shift_arg(as);
1021
1022 if (!strcasecmp(queue_mode_name, "bio"))
1023 m->queue_mode = DM_TYPE_BIO_BASED;
Mike Snitzercd025382017-12-05 16:02:21 -05001024 else if (!strcasecmp(queue_mode_name, "nvme"))
1025 m->queue_mode = DM_TYPE_NVME_BIO_BASED;
Mike Snitzere83068a2016-05-24 21:16:51 -04001026 else if (!strcasecmp(queue_mode_name, "rq"))
1027 m->queue_mode = DM_TYPE_REQUEST_BASED;
1028 else if (!strcasecmp(queue_mode_name, "mq"))
1029 m->queue_mode = DM_TYPE_MQ_REQUEST_BASED;
1030 else {
1031 ti->error = "Unknown 'queue_mode' requested";
1032 r = -EINVAL;
1033 }
1034 argc--;
1035 continue;
1036 }
1037
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 ti->error = "Unrecognised multipath feature request";
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001039 r = -EINVAL;
1040 } while (argc && !r);
1041
1042 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043}
1044
Mike Snitzere83068a2016-05-24 21:16:51 -04001045static int multipath_ctr(struct dm_target *ti, unsigned argc, char **argv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046{
Mike Snitzer498f0102011-08-02 12:32:04 +01001047 /* target arguments */
Eric Biggers5916a222017-06-22 11:32:45 -07001048 static const struct dm_arg _args[] = {
Mike Snitzera490a072011-03-24 13:54:33 +00001049 {0, 1024, "invalid number of priority groups"},
1050 {0, 1024, "invalid initial priority group number"},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 };
1052
1053 int r;
1054 struct multipath *m;
Mike Snitzer498f0102011-08-02 12:32:04 +01001055 struct dm_arg_set as;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 unsigned pg_count = 0;
1057 unsigned next_pg_num;
1058
1059 as.argc = argc;
1060 as.argv = argv;
1061
Mike Snitzere83068a2016-05-24 21:16:51 -04001062 m = alloc_multipath(ti);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 if (!m) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001064 ti->error = "can't allocate multipath";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 return -EINVAL;
1066 }
1067
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -07001068 r = parse_features(&as, m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 if (r)
1070 goto bad;
1071
Mike Snitzere83068a2016-05-24 21:16:51 -04001072 r = alloc_multipath_stage2(ti, m);
1073 if (r)
1074 goto bad;
1075
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -07001076 r = parse_hw_handler(&as, m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 if (r)
1078 goto bad;
1079
Mike Snitzer498f0102011-08-02 12:32:04 +01001080 r = dm_read_arg(_args, &as, &m->nr_priority_groups, &ti->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 if (r)
1082 goto bad;
1083
Mike Snitzer498f0102011-08-02 12:32:04 +01001084 r = dm_read_arg(_args + 1, &as, &next_pg_num, &ti->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 if (r)
1086 goto bad;
1087
Mike Snitzera490a072011-03-24 13:54:33 +00001088 if ((!m->nr_priority_groups && next_pg_num) ||
1089 (m->nr_priority_groups && !next_pg_num)) {
1090 ti->error = "invalid initial priority group";
1091 r = -EINVAL;
1092 goto bad;
1093 }
1094
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 /* parse the priority groups */
1096 while (as.argc) {
1097 struct priority_group *pg;
Mike Snitzer91e968a2016-03-17 17:10:15 -04001098 unsigned nr_valid_paths = atomic_read(&m->nr_valid_paths);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -07001100 pg = parse_priority_group(&as, m);
Benjamin Marzinski01460f32008-10-10 13:36:57 +01001101 if (IS_ERR(pg)) {
1102 r = PTR_ERR(pg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 goto bad;
1104 }
1105
Mike Snitzer91e968a2016-03-17 17:10:15 -04001106 nr_valid_paths += pg->nr_pgpaths;
1107 atomic_set(&m->nr_valid_paths, nr_valid_paths);
1108
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 list_add_tail(&pg->list, &m->priority_groups);
1110 pg_count++;
1111 pg->pg_num = pg_count;
1112 if (!--next_pg_num)
1113 m->next_pg = pg;
1114 }
1115
1116 if (pg_count != m->nr_priority_groups) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001117 ti->error = "priority group count mismatch";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 r = -EINVAL;
1119 goto bad;
1120 }
1121
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001122 ti->num_flush_bios = 1;
1123 ti->num_discard_bios = 1;
Mike Snitzer042bcef2013-05-10 14:37:16 +01001124 ti->num_write_same_bios = 1;
Christoph Hellwigac62d622017-04-05 19:21:05 +02001125 ti->num_write_zeroes_bios = 1;
Mike Snitzercd025382017-12-05 16:02:21 -05001126 if (m->queue_mode == DM_TYPE_BIO_BASED || m->queue_mode == DM_TYPE_NVME_BIO_BASED)
Mike Snitzerbf661be2016-05-24 15:48:08 -04001127 ti->per_io_data_size = multipath_per_bio_data_size();
Christoph Hellwigeb8db832017-01-22 18:32:46 +01001128 else
Mike Snitzer8637a6b2016-01-31 12:08:36 -05001129 ti->per_io_data_size = sizeof(struct dm_mpath_io);
Mikulas Patocka86279212009-06-22 10:12:24 +01001130
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 return 0;
1132
1133 bad:
1134 free_multipath(m);
1135 return r;
1136}
1137
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001138static void multipath_wait_for_pg_init_completion(struct multipath *m)
1139{
Bart Van Assche9f4c3f82016-08-31 15:16:43 -07001140 DEFINE_WAIT(wait);
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001141
1142 while (1) {
Bart Van Assche9f4c3f82016-08-31 15:16:43 -07001143 prepare_to_wait(&m->pg_init_wait, &wait, TASK_UNINTERRUPTIBLE);
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001144
Mike Snitzer91e968a2016-03-17 17:10:15 -04001145 if (!atomic_read(&m->pg_init_in_progress))
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001146 break;
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001147
1148 io_schedule();
1149 }
Bart Van Assche9f4c3f82016-08-31 15:16:43 -07001150 finish_wait(&m->pg_init_wait, &wait);
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001151}
1152
1153static void flush_multipath_work(struct multipath *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154{
Mike Snitzer518257b2016-03-17 16:32:10 -04001155 set_bit(MPATHF_PG_INIT_DISABLED, &m->flags);
1156 smp_mb__after_atomic();
Shiva Krishna Merla954a73d2013-10-30 03:26:38 +00001157
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001158 flush_workqueue(kmpath_handlerd);
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001159 multipath_wait_for_pg_init_completion(m);
Alasdair G Kergona044d012005-07-12 15:53:02 -07001160 flush_workqueue(kmultipathd);
Tejun Heo43829732012-08-20 14:51:24 -07001161 flush_work(&m->trigger_event);
Shiva Krishna Merla954a73d2013-10-30 03:26:38 +00001162
Mike Snitzer518257b2016-03-17 16:32:10 -04001163 clear_bit(MPATHF_PG_INIT_DISABLED, &m->flags);
1164 smp_mb__after_atomic();
Kiyoshi Ueda6df400a2009-12-10 23:52:19 +00001165}
1166
1167static void multipath_dtr(struct dm_target *ti)
1168{
1169 struct multipath *m = ti->private;
1170
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001171 flush_multipath_work(m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 free_multipath(m);
1173}
1174
1175/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 * Take a path out of use.
1177 */
1178static int fail_path(struct pgpath *pgpath)
1179{
1180 unsigned long flags;
1181 struct multipath *m = pgpath->pg->m;
1182
1183 spin_lock_irqsave(&m->lock, flags);
1184
Kiyoshi Ueda66800732008-10-10 13:36:58 +01001185 if (!pgpath->is_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 goto out;
1187
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001188 DMWARN("Failing path %s.", pgpath->path.dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
1190 pgpath->pg->ps.type->fail_path(&pgpath->pg->ps, &pgpath->path);
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001191 pgpath->is_active = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 pgpath->fail_count++;
1193
Mike Snitzer91e968a2016-03-17 17:10:15 -04001194 atomic_dec(&m->nr_valid_paths);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195
1196 if (pgpath == m->current_pgpath)
1197 m->current_pgpath = NULL;
1198
Mike Andersonb15546f2007-10-19 22:48:02 +01001199 dm_path_uevent(DM_UEVENT_PATH_FAILED, m->ti,
Mike Snitzer91e968a2016-03-17 17:10:15 -04001200 pgpath->path.dev->name, atomic_read(&m->nr_valid_paths));
Mike Andersonb15546f2007-10-19 22:48:02 +01001201
Alasdair G Kergonfe9cf302009-01-06 03:05:13 +00001202 schedule_work(&m->trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203
1204out:
1205 spin_unlock_irqrestore(&m->lock, flags);
1206
1207 return 0;
1208}
1209
1210/*
1211 * Reinstate a previously-failed path
1212 */
1213static int reinstate_path(struct pgpath *pgpath)
1214{
Hannes Reinecke63d832c2014-05-26 14:45:39 +02001215 int r = 0, run_queue = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 unsigned long flags;
1217 struct multipath *m = pgpath->pg->m;
Mike Snitzer91e968a2016-03-17 17:10:15 -04001218 unsigned nr_valid_paths;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
1220 spin_lock_irqsave(&m->lock, flags);
1221
Kiyoshi Ueda66800732008-10-10 13:36:58 +01001222 if (pgpath->is_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 goto out;
1224
Mike Snitzerec31f3f2016-02-20 12:49:43 -05001225 DMWARN("Reinstating path %s.", pgpath->path.dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226
1227 r = pgpath->pg->ps.type->reinstate_path(&pgpath->pg->ps, &pgpath->path);
1228 if (r)
1229 goto out;
1230
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001231 pgpath->is_active = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
Mike Snitzer91e968a2016-03-17 17:10:15 -04001233 nr_valid_paths = atomic_inc_return(&m->nr_valid_paths);
1234 if (nr_valid_paths == 1) {
Chandra Seetharamane54f77d2009-06-22 10:12:12 +01001235 m->current_pgpath = NULL;
Hannes Reinecke63d832c2014-05-26 14:45:39 +02001236 run_queue = 1;
Chandra Seetharamane54f77d2009-06-22 10:12:12 +01001237 } else if (m->hw_handler_name && (m->current_pg == pgpath->pg)) {
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +00001238 if (queue_work(kmpath_handlerd, &pgpath->activate_path.work))
Mike Snitzer91e968a2016-03-17 17:10:15 -04001239 atomic_inc(&m->pg_init_in_progress);
Chandra Seetharamane54f77d2009-06-22 10:12:12 +01001240 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241
Mike Andersonb15546f2007-10-19 22:48:02 +01001242 dm_path_uevent(DM_UEVENT_PATH_REINSTATED, m->ti,
Mike Snitzer91e968a2016-03-17 17:10:15 -04001243 pgpath->path.dev->name, nr_valid_paths);
Mike Andersonb15546f2007-10-19 22:48:02 +01001244
Alasdair G Kergonfe9cf302009-01-06 03:05:13 +00001245 schedule_work(&m->trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
1247out:
1248 spin_unlock_irqrestore(&m->lock, flags);
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001249 if (run_queue) {
Hannes Reinecke63d832c2014-05-26 14:45:39 +02001250 dm_table_run_md_queue_async(m->ti->table);
Mike Snitzer7e48c762016-09-14 10:47:03 -04001251 process_queued_io_list(m);
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001252 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
1254 return r;
1255}
1256
1257/*
1258 * Fail or reinstate all paths that match the provided struct dm_dev.
1259 */
1260static int action_dev(struct multipath *m, struct dm_dev *dev,
1261 action_fn action)
1262{
Mike Snitzer19040c02011-03-24 13:54:31 +00001263 int r = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 struct pgpath *pgpath;
1265 struct priority_group *pg;
1266
1267 list_for_each_entry(pg, &m->priority_groups, list) {
1268 list_for_each_entry(pgpath, &pg->pgpaths, list) {
1269 if (pgpath->path.dev == dev)
1270 r = action(pgpath);
1271 }
1272 }
1273
1274 return r;
1275}
1276
1277/*
1278 * Temporarily try to avoid having to use the specified PG
1279 */
1280static void bypass_pg(struct multipath *m, struct priority_group *pg,
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001281 bool bypassed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282{
1283 unsigned long flags;
1284
1285 spin_lock_irqsave(&m->lock, flags);
1286
1287 pg->bypassed = bypassed;
1288 m->current_pgpath = NULL;
1289 m->current_pg = NULL;
1290
1291 spin_unlock_irqrestore(&m->lock, flags);
1292
Alasdair G Kergonfe9cf302009-01-06 03:05:13 +00001293 schedule_work(&m->trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294}
1295
1296/*
1297 * Switch to using the specified PG from the next I/O that gets mapped
1298 */
1299static int switch_pg_num(struct multipath *m, const char *pgstr)
1300{
1301 struct priority_group *pg;
1302 unsigned pgnum;
1303 unsigned long flags;
Mikulas Patocka31998ef2012-03-28 18:41:26 +01001304 char dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
Mikulas Patocka31998ef2012-03-28 18:41:26 +01001306 if (!pgstr || (sscanf(pgstr, "%u%c", &pgnum, &dummy) != 1) || !pgnum ||
tang.junhuicc5bd922016-11-04 12:37:09 +08001307 !m->nr_priority_groups || (pgnum > m->nr_priority_groups)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 DMWARN("invalid PG number supplied to switch_pg_num");
1309 return -EINVAL;
1310 }
1311
1312 spin_lock_irqsave(&m->lock, flags);
1313 list_for_each_entry(pg, &m->priority_groups, list) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001314 pg->bypassed = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 if (--pgnum)
1316 continue;
1317
1318 m->current_pgpath = NULL;
1319 m->current_pg = NULL;
1320 m->next_pg = pg;
1321 }
1322 spin_unlock_irqrestore(&m->lock, flags);
1323
Alasdair G Kergonfe9cf302009-01-06 03:05:13 +00001324 schedule_work(&m->trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 return 0;
1326}
1327
1328/*
1329 * Set/clear bypassed status of a PG.
1330 * PGs are numbered upwards from 1 in the order they were declared.
1331 */
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001332static int bypass_pg_num(struct multipath *m, const char *pgstr, bool bypassed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333{
1334 struct priority_group *pg;
1335 unsigned pgnum;
Mikulas Patocka31998ef2012-03-28 18:41:26 +01001336 char dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
Mikulas Patocka31998ef2012-03-28 18:41:26 +01001338 if (!pgstr || (sscanf(pgstr, "%u%c", &pgnum, &dummy) != 1) || !pgnum ||
tang.junhuicc5bd922016-11-04 12:37:09 +08001339 !m->nr_priority_groups || (pgnum > m->nr_priority_groups)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 DMWARN("invalid PG number supplied to bypass_pg");
1341 return -EINVAL;
1342 }
1343
1344 list_for_each_entry(pg, &m->priority_groups, list) {
1345 if (!--pgnum)
1346 break;
1347 }
1348
1349 bypass_pg(m, pg, bypassed);
1350 return 0;
1351}
1352
1353/*
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001354 * Should we retry pg_init immediately?
1355 */
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001356static bool pg_init_limit_reached(struct multipath *m, struct pgpath *pgpath)
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001357{
1358 unsigned long flags;
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001359 bool limit_reached = false;
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001360
1361 spin_lock_irqsave(&m->lock, flags);
1362
Mike Snitzer91e968a2016-03-17 17:10:15 -04001363 if (atomic_read(&m->pg_init_count) <= m->pg_init_retries &&
1364 !test_bit(MPATHF_PG_INIT_DISABLED, &m->flags))
Mike Snitzer518257b2016-03-17 16:32:10 -04001365 set_bit(MPATHF_PG_INIT_REQUIRED, &m->flags);
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001366 else
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001367 limit_reached = true;
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001368
1369 spin_unlock_irqrestore(&m->lock, flags);
1370
1371 return limit_reached;
1372}
1373
Chandra Seetharaman3ae31f62009-10-21 09:22:46 -07001374static void pg_init_done(void *data, int errors)
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001375{
Moger, Babu83c0d5d2010-03-06 02:29:45 +00001376 struct pgpath *pgpath = data;
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001377 struct priority_group *pg = pgpath->pg;
1378 struct multipath *m = pg->m;
1379 unsigned long flags;
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001380 bool delay_retry = false;
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001381
1382 /* device or driver problems */
1383 switch (errors) {
1384 case SCSI_DH_OK:
1385 break;
1386 case SCSI_DH_NOSYS:
1387 if (!m->hw_handler_name) {
1388 errors = 0;
1389 break;
1390 }
Moger, Babuf7b934c2010-03-06 02:29:49 +00001391 DMERR("Could not failover the device: Handler scsi_dh_%s "
1392 "Error %d.", m->hw_handler_name, errors);
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001393 /*
1394 * Fail path for now, so we do not ping pong
1395 */
1396 fail_path(pgpath);
1397 break;
1398 case SCSI_DH_DEV_TEMP_BUSY:
1399 /*
1400 * Probably doing something like FW upgrade on the
1401 * controller so try the other pg.
1402 */
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001403 bypass_pg(m, pg, true);
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001404 break;
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001405 case SCSI_DH_RETRY:
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +00001406 /* Wait before retrying. */
1407 delay_retry = 1;
Bart Van Assche7b06e092017-08-09 11:32:13 -07001408 /* fall through */
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001409 case SCSI_DH_IMM_RETRY:
1410 case SCSI_DH_RES_TEMP_UNAVAIL:
1411 if (pg_init_limit_reached(m, pgpath))
1412 fail_path(pgpath);
1413 errors = 0;
1414 break;
Mike Snitzerec31f3f2016-02-20 12:49:43 -05001415 case SCSI_DH_DEV_OFFLINED:
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001416 default:
1417 /*
1418 * We probably do not want to fail the path for a device
1419 * error, but this is what the old dm did. In future
1420 * patches we can do more advanced handling.
1421 */
1422 fail_path(pgpath);
1423 }
1424
1425 spin_lock_irqsave(&m->lock, flags);
1426 if (errors) {
Chandra Seetharamane54f77d2009-06-22 10:12:12 +01001427 if (pgpath == m->current_pgpath) {
1428 DMERR("Could not failover device. Error %d.", errors);
1429 m->current_pgpath = NULL;
1430 m->current_pg = NULL;
1431 }
Mike Snitzer518257b2016-03-17 16:32:10 -04001432 } else if (!test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags))
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001433 pg->bypassed = false;
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001434
Mike Snitzer91e968a2016-03-17 17:10:15 -04001435 if (atomic_dec_return(&m->pg_init_in_progress) > 0)
Kiyoshi Uedad0259bf2010-03-06 02:30:02 +00001436 /* Activations of other paths are still on going */
1437 goto out;
1438
Mike Snitzer518257b2016-03-17 16:32:10 -04001439 if (test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags)) {
1440 if (delay_retry)
1441 set_bit(MPATHF_PG_INIT_DELAY_RETRY, &m->flags);
1442 else
1443 clear_bit(MPATHF_PG_INIT_DELAY_RETRY, &m->flags);
1444
Hannes Reinecke3e9f1be2014-02-28 15:33:45 +01001445 if (__pg_init_all_paths(m))
1446 goto out;
1447 }
Mike Snitzer518257b2016-03-17 16:32:10 -04001448 clear_bit(MPATHF_QUEUE_IO, &m->flags);
Kiyoshi Uedad0259bf2010-03-06 02:30:02 +00001449
Mike Snitzer7e48c762016-09-14 10:47:03 -04001450 process_queued_io_list(m);
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001451
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001452 /*
1453 * Wake up any thread waiting to suspend.
1454 */
1455 wake_up(&m->pg_init_wait);
1456
Kiyoshi Uedad0259bf2010-03-06 02:30:02 +00001457out:
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001458 spin_unlock_irqrestore(&m->lock, flags);
1459}
1460
Bart Van Assche89bfce72017-04-27 10:11:14 -07001461static void activate_or_offline_path(struct pgpath *pgpath)
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001462{
Mike Snitzerf10e06b2016-09-01 12:06:37 -04001463 struct request_queue *q = bdev_get_queue(pgpath->path.dev->bdev);
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001464
Mike Snitzerf10e06b2016-09-01 12:06:37 -04001465 if (pgpath->is_active && !blk_queue_dying(q))
1466 scsi_dh_activate(q, pg_init_done, pgpath);
Hannes Reinecke3a017502014-02-28 15:33:49 +01001467 else
1468 pg_init_done(pgpath, SCSI_DH_DEV_OFFLINED);
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001469}
1470
Bart Van Assche89bfce72017-04-27 10:11:14 -07001471static void activate_path_work(struct work_struct *work)
1472{
1473 struct pgpath *pgpath =
1474 container_of(work, struct pgpath, activate_path.work);
1475
1476 activate_or_offline_path(pgpath);
1477}
1478
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001479static int noretry_error(blk_status_t error)
Hannes Reinecke7e782af2013-07-01 15:16:26 +02001480{
1481 switch (error) {
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001482 case BLK_STS_NOTSUPP:
1483 case BLK_STS_NOSPC:
1484 case BLK_STS_TARGET:
1485 case BLK_STS_NEXUS:
1486 case BLK_STS_MEDIUM:
Hannes Reinecke7e782af2013-07-01 15:16:26 +02001487 return 1;
1488 }
1489
1490 /* Anything else could be a path failure, so should be retried */
1491 return 0;
1492}
1493
Christoph Hellwigb79f10e2017-04-26 09:40:36 +02001494static int multipath_end_io(struct dm_target *ti, struct request *clone,
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001495 blk_status_t error, union map_info *map_context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496{
Christoph Hellwigb79f10e2017-04-26 09:40:36 +02001497 struct dm_mpath_io *mpio = get_mpio(map_context);
1498 struct pgpath *pgpath = mpio->pgpath;
Christoph Hellwig7ed85782017-04-26 09:40:37 +02001499 int r = DM_ENDIO_DONE;
Christoph Hellwigb79f10e2017-04-26 09:40:36 +02001500
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001501 /*
1502 * We don't queue any clone request inside the multipath target
1503 * during end I/O handling, since those clone requests don't have
1504 * bio clones. If we queue them inside the multipath target,
1505 * we need to make bio clones, that requires memory allocation.
Mike Snitzer4cc96132016-05-12 16:28:10 -04001506 * (See drivers/md/dm-rq.c:end_clone_bio() about why the clone requests
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001507 * don't have bio clones.)
1508 * Instead of queueing the clone request here, we queue the original
1509 * request into dm core, which will remake a clone request and
1510 * clone bios for it and resubmit it later.
1511 */
Christoph Hellwigb79f10e2017-04-26 09:40:36 +02001512 if (error && !noretry_error(error)) {
1513 struct multipath *m = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
Christoph Hellwig7ed85782017-04-26 09:40:37 +02001515 r = DM_ENDIO_REQUEUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516
Christoph Hellwigb79f10e2017-04-26 09:40:36 +02001517 if (pgpath)
1518 fail_path(pgpath);
Mike Snitzer959eb4e2010-08-12 04:14:32 +01001519
Christoph Hellwigb79f10e2017-04-26 09:40:36 +02001520 if (atomic_read(&m->nr_valid_paths) == 0 &&
Mike Snitzerc1fd0ab2017-12-07 22:42:27 -05001521 !must_push_back_rq(m)) {
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001522 if (error == BLK_STS_IOERR)
Christoph Hellwig18a482f2017-05-15 17:28:37 +02001523 dm_report_EIO(m);
Christoph Hellwig7ed85782017-04-26 09:40:37 +02001524 /* complete with the original error */
1525 r = DM_ENDIO_DONE;
1526 }
Christoph Hellwigb79f10e2017-04-26 09:40:36 +02001527 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 if (pgpath) {
Christoph Hellwigb79f10e2017-04-26 09:40:36 +02001530 struct path_selector *ps = &pgpath->pg->ps;
1531
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 if (ps->type->end_io)
Kiyoshi Ueda02ab8232009-06-22 10:12:27 +01001533 ps->type->end_io(ps, &pgpath->path, mpio->nr_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
Christoph Hellwig7ed85782017-04-26 09:40:37 +02001536 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537}
1538
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001539static int multipath_end_io_bio(struct dm_target *ti, struct bio *clone,
1540 blk_status_t *error)
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001541{
Christoph Hellwig14ef1e42017-06-03 09:38:01 +02001542 struct multipath *m = ti->private;
1543 struct dm_mpath_io *mpio = get_mpio_from_bio(clone);
1544 struct pgpath *pgpath = mpio->pgpath;
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001545 unsigned long flags;
Christoph Hellwig1be56902017-06-03 09:38:03 +02001546 int r = DM_ENDIO_DONE;
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001547
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001548 if (!*error || noretry_error(*error))
Christoph Hellwig14ef1e42017-06-03 09:38:01 +02001549 goto done;
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001550
Christoph Hellwig14ef1e42017-06-03 09:38:01 +02001551 if (pgpath)
1552 fail_path(pgpath);
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001553
Bart Van Asscheca5beb72017-04-27 10:11:24 -07001554 if (atomic_read(&m->nr_valid_paths) == 0 &&
Christoph Hellwig18a482f2017-05-15 17:28:37 +02001555 !test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags)) {
Mike Snitzerc1fd0ab2017-12-07 22:42:27 -05001556 if (must_push_back_bio(m)) {
1557 r = DM_ENDIO_REQUEUE;
1558 } else {
1559 dm_report_EIO(m);
1560 *error = BLK_STS_IOERR;
1561 }
Christoph Hellwig14ef1e42017-06-03 09:38:01 +02001562 goto done;
Christoph Hellwig18a482f2017-05-15 17:28:37 +02001563 }
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001564
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001565 spin_lock_irqsave(&m->lock, flags);
1566 bio_list_add(&m->queued_bios, clone);
1567 spin_unlock_irqrestore(&m->lock, flags);
1568 if (!test_bit(MPATHF_QUEUE_IO, &m->flags))
1569 queue_work(kmultipathd, &m->process_queued_bios);
1570
Christoph Hellwig1be56902017-06-03 09:38:03 +02001571 r = DM_ENDIO_INCOMPLETE;
Christoph Hellwig14ef1e42017-06-03 09:38:01 +02001572done:
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001573 if (pgpath) {
Christoph Hellwig14ef1e42017-06-03 09:38:01 +02001574 struct path_selector *ps = &pgpath->pg->ps;
1575
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001576 if (ps->type->end_io)
1577 ps->type->end_io(ps, &pgpath->path, mpio->nr_bytes);
1578 }
1579
Christoph Hellwig1be56902017-06-03 09:38:03 +02001580 return r;
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001581}
1582
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583/*
1584 * Suspend can't complete until all the I/O is processed so if
Alasdair G Kergon436d4102005-07-12 15:53:03 -07001585 * the last path fails we must error any remaining I/O.
1586 * Note that if the freeze_bdev fails while suspending, the
1587 * queue_if_no_path state is lost - userspace should reset it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 */
1589static void multipath_presuspend(struct dm_target *ti)
1590{
Mike Snitzer7943bd62016-02-02 21:53:15 -05001591 struct multipath *m = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001593 queue_if_no_path(m, false, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594}
1595
Kiyoshi Ueda6df400a2009-12-10 23:52:19 +00001596static void multipath_postsuspend(struct dm_target *ti)
1597{
Mike Anderson6380f262009-12-10 23:52:21 +00001598 struct multipath *m = ti->private;
1599
1600 mutex_lock(&m->work_mutex);
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001601 flush_multipath_work(m);
Mike Anderson6380f262009-12-10 23:52:21 +00001602 mutex_unlock(&m->work_mutex);
Kiyoshi Ueda6df400a2009-12-10 23:52:19 +00001603}
1604
Alasdair G Kergon436d4102005-07-12 15:53:03 -07001605/*
1606 * Restore the queue_if_no_path setting.
1607 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608static void multipath_resume(struct dm_target *ti)
1609{
Mike Snitzer7943bd62016-02-02 21:53:15 -05001610 struct multipath *m = ti->private;
Mike Snitzer1814f2e2016-07-25 21:08:51 -04001611 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612
Mike Snitzer1814f2e2016-07-25 21:08:51 -04001613 spin_lock_irqsave(&m->lock, flags);
Lukas Wunner5307e2a2017-10-12 12:40:10 +02001614 assign_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags,
1615 test_bit(MPATHF_SAVED_QUEUE_IF_NO_PATH, &m->flags));
Mike Snitzer1814f2e2016-07-25 21:08:51 -04001616 spin_unlock_irqrestore(&m->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617}
1618
1619/*
1620 * Info output has the following format:
1621 * num_multipath_feature_args [multipath_feature_args]*
1622 * num_handler_status_args [handler_status_args]*
1623 * num_groups init_group_number
1624 * [A|D|E num_ps_status_args [ps_status_args]*
1625 * num_paths num_selector_args
1626 * [path_dev A|F fail_count [selector_args]* ]+ ]+
1627 *
1628 * Table output has the following format (identical to the constructor string):
1629 * num_feature_args [features_args]*
1630 * num_handler_args hw_handler [hw_handler_args]*
1631 * num_groups init_group_number
1632 * [priority selector-name num_ps_args [ps_args]*
1633 * num_paths num_selector_args [path_dev [selector_args]* ]+ ]+
1634 */
Mikulas Patockafd7c0922013-03-01 22:45:44 +00001635static void multipath_status(struct dm_target *ti, status_type_t type,
1636 unsigned status_flags, char *result, unsigned maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637{
1638 int sz = 0;
1639 unsigned long flags;
Mike Snitzer7943bd62016-02-02 21:53:15 -05001640 struct multipath *m = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 struct priority_group *pg;
1642 struct pgpath *p;
1643 unsigned pg_num;
1644 char state;
1645
1646 spin_lock_irqsave(&m->lock, flags);
1647
1648 /* Features */
1649 if (type == STATUSTYPE_INFO)
Mike Snitzer91e968a2016-03-17 17:10:15 -04001650 DMEMIT("2 %u %u ", test_bit(MPATHF_QUEUE_IO, &m->flags),
1651 atomic_read(&m->pg_init_count));
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001652 else {
Mike Snitzer518257b2016-03-17 16:32:10 -04001653 DMEMIT("%u ", test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags) +
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +00001654 (m->pg_init_retries > 0) * 2 +
Mike Snitzera58a9352012-07-27 15:08:04 +01001655 (m->pg_init_delay_msecs != DM_PG_INIT_DELAY_DEFAULT) * 2 +
Mike Snitzere83068a2016-05-24 21:16:51 -04001656 test_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags) +
1657 (m->queue_mode != DM_TYPE_REQUEST_BASED) * 2);
1658
Mike Snitzer518257b2016-03-17 16:32:10 -04001659 if (test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001660 DMEMIT("queue_if_no_path ");
1661 if (m->pg_init_retries)
1662 DMEMIT("pg_init_retries %u ", m->pg_init_retries);
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +00001663 if (m->pg_init_delay_msecs != DM_PG_INIT_DELAY_DEFAULT)
1664 DMEMIT("pg_init_delay_msecs %u ", m->pg_init_delay_msecs);
Mike Snitzer518257b2016-03-17 16:32:10 -04001665 if (test_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags))
Mike Snitzera58a9352012-07-27 15:08:04 +01001666 DMEMIT("retain_attached_hw_handler ");
Mike Snitzere83068a2016-05-24 21:16:51 -04001667 if (m->queue_mode != DM_TYPE_REQUEST_BASED) {
1668 switch(m->queue_mode) {
1669 case DM_TYPE_BIO_BASED:
1670 DMEMIT("queue_mode bio ");
1671 break;
Mike Snitzercd025382017-12-05 16:02:21 -05001672 case DM_TYPE_NVME_BIO_BASED:
1673 DMEMIT("queue_mode nvme ");
1674 break;
Mike Snitzere83068a2016-05-24 21:16:51 -04001675 case DM_TYPE_MQ_REQUEST_BASED:
1676 DMEMIT("queue_mode mq ");
1677 break;
Bart Van Assche7e0d5742017-04-27 10:11:23 -07001678 default:
1679 WARN_ON_ONCE(true);
1680 break;
Mike Snitzere83068a2016-05-24 21:16:51 -04001681 }
1682 }
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001683 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001685 if (!m->hw_handler_name || type == STATUSTYPE_INFO)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 DMEMIT("0 ");
1687 else
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001688 DMEMIT("1 %s ", m->hw_handler_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689
1690 DMEMIT("%u ", m->nr_priority_groups);
1691
1692 if (m->next_pg)
1693 pg_num = m->next_pg->pg_num;
1694 else if (m->current_pg)
1695 pg_num = m->current_pg->pg_num;
1696 else
Mike Snitzera490a072011-03-24 13:54:33 +00001697 pg_num = (m->nr_priority_groups ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698
1699 DMEMIT("%u ", pg_num);
1700
1701 switch (type) {
1702 case STATUSTYPE_INFO:
1703 list_for_each_entry(pg, &m->priority_groups, list) {
1704 if (pg->bypassed)
1705 state = 'D'; /* Disabled */
1706 else if (pg == m->current_pg)
1707 state = 'A'; /* Currently Active */
1708 else
1709 state = 'E'; /* Enabled */
1710
1711 DMEMIT("%c ", state);
1712
1713 if (pg->ps.type->status)
1714 sz += pg->ps.type->status(&pg->ps, NULL, type,
1715 result + sz,
1716 maxlen - sz);
1717 else
1718 DMEMIT("0 ");
1719
1720 DMEMIT("%u %u ", pg->nr_pgpaths,
1721 pg->ps.type->info_args);
1722
1723 list_for_each_entry(p, &pg->pgpaths, list) {
1724 DMEMIT("%s %s %u ", p->path.dev->name,
Kiyoshi Ueda66800732008-10-10 13:36:58 +01001725 p->is_active ? "A" : "F",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 p->fail_count);
1727 if (pg->ps.type->status)
1728 sz += pg->ps.type->status(&pg->ps,
1729 &p->path, type, result + sz,
1730 maxlen - sz);
1731 }
1732 }
1733 break;
1734
1735 case STATUSTYPE_TABLE:
1736 list_for_each_entry(pg, &m->priority_groups, list) {
1737 DMEMIT("%s ", pg->ps.type->name);
1738
1739 if (pg->ps.type->status)
1740 sz += pg->ps.type->status(&pg->ps, NULL, type,
1741 result + sz,
1742 maxlen - sz);
1743 else
1744 DMEMIT("0 ");
1745
1746 DMEMIT("%u %u ", pg->nr_pgpaths,
1747 pg->ps.type->table_args);
1748
1749 list_for_each_entry(p, &pg->pgpaths, list) {
1750 DMEMIT("%s ", p->path.dev->name);
1751 if (pg->ps.type->status)
1752 sz += pg->ps.type->status(&pg->ps,
1753 &p->path, type, result + sz,
1754 maxlen - sz);
1755 }
1756 }
1757 break;
1758 }
1759
1760 spin_unlock_irqrestore(&m->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761}
1762
1763static int multipath_message(struct dm_target *ti, unsigned argc, char **argv)
1764{
Mike Anderson6380f262009-12-10 23:52:21 +00001765 int r = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 struct dm_dev *dev;
Mike Snitzer7943bd62016-02-02 21:53:15 -05001767 struct multipath *m = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 action_fn action;
1769
Mike Anderson6380f262009-12-10 23:52:21 +00001770 mutex_lock(&m->work_mutex);
1771
Kiyoshi Uedac2f3d242009-12-10 23:52:27 +00001772 if (dm_suspended(ti)) {
1773 r = -EBUSY;
1774 goto out;
1775 }
1776
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 if (argc == 1) {
Mike Snitzer498f0102011-08-02 12:32:04 +01001778 if (!strcasecmp(argv[0], "queue_if_no_path")) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001779 r = queue_if_no_path(m, true, false);
Mike Anderson6380f262009-12-10 23:52:21 +00001780 goto out;
Mike Snitzer498f0102011-08-02 12:32:04 +01001781 } else if (!strcasecmp(argv[0], "fail_if_no_path")) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001782 r = queue_if_no_path(m, false, false);
Mike Anderson6380f262009-12-10 23:52:21 +00001783 goto out;
1784 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 }
1786
Mike Anderson6380f262009-12-10 23:52:21 +00001787 if (argc != 2) {
Jose Castilloa356e422014-01-29 17:52:45 +01001788 DMWARN("Invalid multipath message arguments. Expected 2 arguments, got %d.", argc);
Mike Anderson6380f262009-12-10 23:52:21 +00001789 goto out;
1790 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791
Mike Snitzer498f0102011-08-02 12:32:04 +01001792 if (!strcasecmp(argv[0], "disable_group")) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001793 r = bypass_pg_num(m, argv[1], true);
Mike Anderson6380f262009-12-10 23:52:21 +00001794 goto out;
Mike Snitzer498f0102011-08-02 12:32:04 +01001795 } else if (!strcasecmp(argv[0], "enable_group")) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001796 r = bypass_pg_num(m, argv[1], false);
Mike Anderson6380f262009-12-10 23:52:21 +00001797 goto out;
Mike Snitzer498f0102011-08-02 12:32:04 +01001798 } else if (!strcasecmp(argv[0], "switch_group")) {
Mike Anderson6380f262009-12-10 23:52:21 +00001799 r = switch_pg_num(m, argv[1]);
1800 goto out;
Mike Snitzer498f0102011-08-02 12:32:04 +01001801 } else if (!strcasecmp(argv[0], "reinstate_path"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 action = reinstate_path;
Mike Snitzer498f0102011-08-02 12:32:04 +01001803 else if (!strcasecmp(argv[0], "fail_path"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 action = fail_path;
Mike Anderson6380f262009-12-10 23:52:21 +00001805 else {
Jose Castilloa356e422014-01-29 17:52:45 +01001806 DMWARN("Unrecognised multipath message received: %s", argv[0]);
Mike Anderson6380f262009-12-10 23:52:21 +00001807 goto out;
1808 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809
Nikanth Karthikesan8215d6e2010-03-06 02:32:27 +00001810 r = dm_get_device(ti, argv[1], dm_table_get_mode(ti->table), &dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 if (r) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001812 DMWARN("message: error getting device %s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 argv[1]);
Mike Anderson6380f262009-12-10 23:52:21 +00001814 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 }
1816
1817 r = action_dev(m, dev, action);
1818
1819 dm_put_device(ti, dev);
1820
Mike Anderson6380f262009-12-10 23:52:21 +00001821out:
1822 mutex_unlock(&m->work_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824}
1825
Christoph Hellwige56f81e2015-10-15 14:10:50 +02001826static int multipath_prepare_ioctl(struct dm_target *ti,
1827 struct block_device **bdev, fmode_t *mode)
Milan Broz9af4aa32006-10-03 01:15:20 -07001828{
Mikulas Patocka35991652012-06-03 00:29:58 +01001829 struct multipath *m = ti->private;
Mike Snitzer2da16102016-03-17 18:38:17 -04001830 struct pgpath *current_pgpath;
Mikulas Patocka35991652012-06-03 00:29:58 +01001831 int r;
1832
Will Deacon506458e2017-10-24 11:22:48 +01001833 current_pgpath = READ_ONCE(m->current_pgpath);
Mike Snitzer2da16102016-03-17 18:38:17 -04001834 if (!current_pgpath)
1835 current_pgpath = choose_pgpath(m, 0);
Milan Broz9af4aa32006-10-03 01:15:20 -07001836
Mike Snitzer2da16102016-03-17 18:38:17 -04001837 if (current_pgpath) {
Mike Snitzer518257b2016-03-17 16:32:10 -04001838 if (!test_bit(MPATHF_QUEUE_IO, &m->flags)) {
Mike Snitzer2da16102016-03-17 18:38:17 -04001839 *bdev = current_pgpath->path.dev->bdev;
1840 *mode = current_pgpath->path.dev->mode;
Junichi Nomura43e43c92015-11-17 09:36:56 +00001841 r = 0;
1842 } else {
1843 /* pg_init has not started or completed */
1844 r = -ENOTCONN;
1845 }
1846 } else {
1847 /* No path is available */
Mike Snitzer518257b2016-03-17 16:32:10 -04001848 if (test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))
Junichi Nomura43e43c92015-11-17 09:36:56 +00001849 r = -ENOTCONN;
1850 else
1851 r = -EIO;
Milan Broze90dae12006-10-03 01:15:22 -07001852 }
Milan Broz9af4aa32006-10-03 01:15:20 -07001853
Junichi Nomura5bbbfdf2015-11-17 09:39:26 +00001854 if (r == -ENOTCONN) {
Will Deacon506458e2017-10-24 11:22:48 +01001855 if (!READ_ONCE(m->current_pg)) {
Hannes Reinecke3e9f1be2014-02-28 15:33:45 +01001856 /* Path status changed, redo selection */
Mike Snitzer2da16102016-03-17 18:38:17 -04001857 (void) choose_pgpath(m, 0);
Hannes Reinecke3e9f1be2014-02-28 15:33:45 +01001858 }
Mike Snitzer518257b2016-03-17 16:32:10 -04001859 if (test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags))
Mike Snitzer2da16102016-03-17 18:38:17 -04001860 pg_init_all_paths(m);
Hannes Reinecke63d832c2014-05-26 14:45:39 +02001861 dm_table_run_md_queue_async(m->ti->table);
Mike Snitzer7e48c762016-09-14 10:47:03 -04001862 process_queued_io_list(m);
Hannes Reinecke3e9f1be2014-02-28 15:33:45 +01001863 }
Mikulas Patocka35991652012-06-03 00:29:58 +01001864
Christoph Hellwige56f81e2015-10-15 14:10:50 +02001865 /*
1866 * Only pass ioctls through if the device sizes match exactly.
1867 */
1868 if (!r && ti->len != i_size_read((*bdev)->bd_inode) >> SECTOR_SHIFT)
1869 return 1;
1870 return r;
Milan Broz9af4aa32006-10-03 01:15:20 -07001871}
1872
Mike Snitzeraf4874e2009-06-22 10:12:33 +01001873static int multipath_iterate_devices(struct dm_target *ti,
1874 iterate_devices_callout_fn fn, void *data)
1875{
1876 struct multipath *m = ti->private;
1877 struct priority_group *pg;
1878 struct pgpath *p;
1879 int ret = 0;
1880
1881 list_for_each_entry(pg, &m->priority_groups, list) {
1882 list_for_each_entry(p, &pg->pgpaths, list) {
Mike Snitzer5dea2712009-07-23 20:30:42 +01001883 ret = fn(ti, p->path.dev, ti->begin, ti->len, data);
Mike Snitzeraf4874e2009-06-22 10:12:33 +01001884 if (ret)
1885 goto out;
1886 }
1887 }
1888
1889out:
1890 return ret;
1891}
1892
Mike Snitzer9f54cec2016-02-11 21:42:28 -05001893static int pgpath_busy(struct pgpath *pgpath)
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001894{
1895 struct request_queue *q = bdev_get_queue(pgpath->path.dev->bdev);
1896
Mike Snitzer52b09912015-02-23 16:36:41 -05001897 return blk_lld_busy(q);
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001898}
1899
1900/*
1901 * We return "busy", only when we can map I/Os but underlying devices
1902 * are busy (so even if we map I/Os now, the I/Os will wait on
1903 * the underlying queue).
1904 * In other words, if we want to kill I/Os or queue them inside us
1905 * due to map unavailability, we don't return "busy". Otherwise,
1906 * dm core won't give us the I/Os and we can't do what we want.
1907 */
1908static int multipath_busy(struct dm_target *ti)
1909{
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001910 bool busy = false, has_active = false;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001911 struct multipath *m = ti->private;
Mike Snitzer2da16102016-03-17 18:38:17 -04001912 struct priority_group *pg, *next_pg;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001913 struct pgpath *pgpath;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001914
Mike Snitzerb88efd42016-09-09 19:26:19 -04001915 /* pg_init in progress */
1916 if (atomic_read(&m->pg_init_in_progress))
Mike Snitzer2da16102016-03-17 18:38:17 -04001917 return true;
1918
Mike Snitzerb88efd42016-09-09 19:26:19 -04001919 /* no paths available, for blk-mq: rely on IO mapping to delay requeue */
1920 if (!atomic_read(&m->nr_valid_paths) && test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))
1921 return (m->queue_mode != DM_TYPE_MQ_REQUEST_BASED);
1922
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001923 /* Guess which priority_group will be used at next mapping time */
Will Deacon506458e2017-10-24 11:22:48 +01001924 pg = READ_ONCE(m->current_pg);
1925 next_pg = READ_ONCE(m->next_pg);
1926 if (unlikely(!READ_ONCE(m->current_pgpath) && next_pg))
Mike Snitzer2da16102016-03-17 18:38:17 -04001927 pg = next_pg;
1928
1929 if (!pg) {
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001930 /*
1931 * We don't know which pg will be used at next mapping time.
Mike Snitzer2da16102016-03-17 18:38:17 -04001932 * We don't call choose_pgpath() here to avoid to trigger
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001933 * pg_init just by busy checking.
1934 * So we don't know whether underlying devices we will be using
1935 * at next mapping time are busy or not. Just try mapping.
1936 */
Mike Snitzer2da16102016-03-17 18:38:17 -04001937 return busy;
1938 }
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001939
1940 /*
1941 * If there is one non-busy active path at least, the path selector
1942 * will be able to select it. So we consider such a pg as not busy.
1943 */
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001944 busy = true;
Mike Snitzer2da16102016-03-17 18:38:17 -04001945 list_for_each_entry(pgpath, &pg->pgpaths, list) {
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001946 if (pgpath->is_active) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001947 has_active = true;
Mike Snitzer9f54cec2016-02-11 21:42:28 -05001948 if (!pgpath_busy(pgpath)) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001949 busy = false;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001950 break;
1951 }
1952 }
Mike Snitzer2da16102016-03-17 18:38:17 -04001953 }
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001954
Mike Snitzer2da16102016-03-17 18:38:17 -04001955 if (!has_active) {
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001956 /*
1957 * No active path in this pg, so this pg won't be used and
1958 * the current_pg will be changed at next mapping time.
1959 * We need to try mapping to determine it.
1960 */
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001961 busy = false;
Mike Snitzer2da16102016-03-17 18:38:17 -04001962 }
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001963
1964 return busy;
1965}
1966
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967/*-----------------------------------------------------------------
1968 * Module setup
1969 *---------------------------------------------------------------*/
1970static struct target_type multipath_target = {
1971 .name = "multipath",
Mike Snitzere83068a2016-05-24 21:16:51 -04001972 .version = {1, 12, 0},
Mike Snitzer16f12262016-01-31 17:22:27 -05001973 .features = DM_TARGET_SINGLETON | DM_TARGET_IMMUTABLE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 .module = THIS_MODULE,
1975 .ctr = multipath_ctr,
1976 .dtr = multipath_dtr,
Mike Snitzere5863d92014-12-17 21:08:12 -05001977 .clone_and_map_rq = multipath_clone_and_map,
1978 .release_clone_rq = multipath_release_clone,
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001979 .rq_end_io = multipath_end_io,
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001980 .map = multipath_map_bio,
1981 .end_io = multipath_end_io_bio,
1982 .presuspend = multipath_presuspend,
1983 .postsuspend = multipath_postsuspend,
1984 .resume = multipath_resume,
1985 .status = multipath_status,
1986 .message = multipath_message,
1987 .prepare_ioctl = multipath_prepare_ioctl,
1988 .iterate_devices = multipath_iterate_devices,
1989 .busy = multipath_busy,
1990};
1991
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992static int __init dm_multipath_init(void)
1993{
1994 int r;
1995
Tejun Heo4d4d66a2011-01-13 19:59:57 +00001996 kmultipathd = alloc_workqueue("kmpathd", WQ_MEM_RECLAIM, 0);
Alasdair G Kergonc5573082005-05-05 16:16:07 -07001997 if (!kmultipathd) {
Alasdair G Kergon0cd33122007-07-12 17:27:01 +01001998 DMERR("failed to create workqueue kmpathd");
Johannes Thumshirnff658e92015-01-11 12:45:23 +01001999 r = -ENOMEM;
2000 goto bad_alloc_kmultipathd;
Alasdair G Kergonc5573082005-05-05 16:16:07 -07002001 }
2002
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07002003 /*
2004 * A separate workqueue is used to handle the device handlers
2005 * to avoid overloading existing workqueue. Overloading the
2006 * old workqueue would also create a bottleneck in the
2007 * path of the storage hardware device activation.
2008 */
Tejun Heo4d4d66a2011-01-13 19:59:57 +00002009 kmpath_handlerd = alloc_ordered_workqueue("kmpath_handlerd",
2010 WQ_MEM_RECLAIM);
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07002011 if (!kmpath_handlerd) {
2012 DMERR("failed to create workqueue kmpath_handlerd");
Johannes Thumshirnff658e92015-01-11 12:45:23 +01002013 r = -ENOMEM;
2014 goto bad_alloc_kmpath_handlerd;
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07002015 }
2016
monty_pavel@sina.com7e6358d2017-11-25 01:43:50 +08002017 r = dm_register_target(&multipath_target);
2018 if (r < 0) {
2019 DMERR("request-based register failed %d", r);
2020 r = -EINVAL;
2021 goto bad_register_target;
2022 }
2023
Johannes Thumshirnff658e92015-01-11 12:45:23 +01002024 return 0;
2025
monty_pavel@sina.com7e6358d2017-11-25 01:43:50 +08002026bad_register_target:
2027 destroy_workqueue(kmpath_handlerd);
Johannes Thumshirnff658e92015-01-11 12:45:23 +01002028bad_alloc_kmpath_handlerd:
2029 destroy_workqueue(kmultipathd);
2030bad_alloc_kmultipathd:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 return r;
2032}
2033
2034static void __exit dm_multipath_exit(void)
2035{
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07002036 destroy_workqueue(kmpath_handlerd);
Alasdair G Kergonc5573082005-05-05 16:16:07 -07002037 destroy_workqueue(kmultipathd);
2038
Mikulas Patocka10d3bd02009-01-06 03:04:58 +00002039 dm_unregister_target(&multipath_target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040}
2041
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042module_init(dm_multipath_init);
2043module_exit(dm_multipath_exit);
2044
2045MODULE_DESCRIPTION(DM_NAME " multipath target");
2046MODULE_AUTHOR("Sistina Software <dm-devel@redhat.com>");
2047MODULE_LICENSE("GPL");