blob: 6400cffb986df21be7289dce8d2a4d4ff228a9a2 [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
Mike Snitzere83068a2016-05-24 21:16:51 -040093 unsigned queue_mode;
94
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 /*
Alasdair G Kergon028867a2007-07-12 17:26:32 +010096 * We must use a mempool of dm_mpath_io structs so that we
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 * can resubmit bios on error.
98 */
99 mempool_t *mpio_pool;
Mike Anderson6380f262009-12-10 23:52:21 +0000100
101 struct mutex work_mutex;
Mike Snitzer20800cb2016-03-17 17:13:10 -0400102 struct work_struct trigger_event;
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400103
104 struct work_struct process_queued_bios;
105 struct bio_list queued_bios;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106};
107
108/*
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400109 * Context information attached to each io we process.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100111struct dm_mpath_io {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 struct pgpath *pgpath;
Kiyoshi Ueda02ab8232009-06-22 10:12:27 +0100113 size_t nr_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114};
115
116typedef int (*action_fn) (struct pgpath *pgpath);
117
Christoph Lametere18b8902006-12-06 20:33:20 -0800118static struct kmem_cache *_mpio_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -0700120static struct workqueue_struct *kmultipathd, *kmpath_handlerd;
David Howellsc4028952006-11-22 14:57:56 +0000121static void trigger_event(struct work_struct *work);
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -0700122static void activate_path(struct work_struct *work);
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400123static void process_queued_bios(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Mike Snitzer518257b2016-03-17 16:32:10 -0400125/*-----------------------------------------------
126 * Multipath state flags.
127 *-----------------------------------------------*/
128
129#define MPATHF_QUEUE_IO 0 /* Must we queue all I/O? */
130#define MPATHF_QUEUE_IF_NO_PATH 1 /* Queue I/O if last path fails? */
131#define MPATHF_SAVED_QUEUE_IF_NO_PATH 2 /* Saved state during suspension */
132#define MPATHF_RETAIN_ATTACHED_HW_HANDLER 3 /* If there's already a hw_handler present, don't change it. */
133#define MPATHF_PG_INIT_DISABLED 4 /* pg_init is not currently allowed */
134#define MPATHF_PG_INIT_REQUIRED 5 /* pg_init needs calling? */
135#define MPATHF_PG_INIT_DELAY_RETRY 6 /* Delay pg_init retry? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137/*-----------------------------------------------
138 * Allocation routines
139 *-----------------------------------------------*/
140
141static struct pgpath *alloc_pgpath(void)
142{
Micha³ Miros³awe69fae52006-10-03 01:15:34 -0700143 struct pgpath *pgpath = kzalloc(sizeof(*pgpath), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Mike Anderson224cb3e2008-08-29 09:36:09 +0200145 if (pgpath) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -0500146 pgpath->is_active = true;
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +0000147 INIT_DELAYED_WORK(&pgpath->activate_path, activate_path);
Mike Anderson224cb3e2008-08-29 09:36:09 +0200148 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150 return pgpath;
151}
152
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100153static void free_pgpath(struct pgpath *pgpath)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
155 kfree(pgpath);
156}
157
158static struct priority_group *alloc_priority_group(void)
159{
160 struct priority_group *pg;
161
Micha³ Miros³awe69fae52006-10-03 01:15:34 -0700162 pg = kzalloc(sizeof(*pg), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Micha³ Miros³awe69fae52006-10-03 01:15:34 -0700164 if (pg)
165 INIT_LIST_HEAD(&pg->pgpaths);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
167 return pg;
168}
169
170static void free_pgpaths(struct list_head *pgpaths, struct dm_target *ti)
171{
172 struct pgpath *pgpath, *tmp;
173
174 list_for_each_entry_safe(pgpath, tmp, pgpaths, list) {
175 list_del(&pgpath->list);
176 dm_put_device(ti, pgpath->path.dev);
177 free_pgpath(pgpath);
178 }
179}
180
181static void free_priority_group(struct priority_group *pg,
182 struct dm_target *ti)
183{
184 struct path_selector *ps = &pg->ps;
185
186 if (ps->type) {
187 ps->type->destroy(ps);
188 dm_put_path_selector(ps->type);
189 }
190
191 free_pgpaths(&pg->pgpaths, ti);
192 kfree(pg);
193}
194
Mike Snitzere83068a2016-05-24 21:16:51 -0400195static struct multipath *alloc_multipath(struct dm_target *ti)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
197 struct multipath *m;
198
Micha³ Miros³awe69fae52006-10-03 01:15:34 -0700199 m = kzalloc(sizeof(*m), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 if (m) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 INIT_LIST_HEAD(&m->priority_groups);
202 spin_lock_init(&m->lock);
Mike Snitzer518257b2016-03-17 16:32:10 -0400203 set_bit(MPATHF_QUEUE_IO, &m->flags);
Mike Snitzer91e968a2016-03-17 17:10:15 -0400204 atomic_set(&m->nr_valid_paths, 0);
205 atomic_set(&m->pg_init_in_progress, 0);
206 atomic_set(&m->pg_init_count, 0);
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +0000207 m->pg_init_delay_msecs = DM_PG_INIT_DELAY_DEFAULT;
David Howellsc4028952006-11-22 14:57:56 +0000208 INIT_WORK(&m->trigger_event, trigger_event);
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +0000209 init_waitqueue_head(&m->pg_init_wait);
Mike Anderson6380f262009-12-10 23:52:21 +0000210 mutex_init(&m->work_mutex);
Mike Snitzer8637a6b2016-01-31 12:08:36 -0500211
212 m->mpio_pool = NULL;
Mike Snitzere83068a2016-05-24 21:16:51 -0400213 m->queue_mode = DM_TYPE_NONE;
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400214
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700215 m->ti = ti;
216 ti->private = m;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 }
218
219 return m;
220}
221
Mike Snitzere83068a2016-05-24 21:16:51 -0400222static int alloc_multipath_stage2(struct dm_target *ti, struct multipath *m)
223{
224 if (m->queue_mode == DM_TYPE_NONE) {
225 /*
226 * Default to request-based.
227 */
228 if (dm_use_blk_mq(dm_table_get_md(ti->table)))
229 m->queue_mode = DM_TYPE_MQ_REQUEST_BASED;
230 else
231 m->queue_mode = DM_TYPE_REQUEST_BASED;
232 }
233
234 if (m->queue_mode == DM_TYPE_REQUEST_BASED) {
235 unsigned min_ios = dm_get_reserved_rq_based_ios();
236
237 m->mpio_pool = mempool_create_slab_pool(min_ios, _mpio_cache);
238 if (!m->mpio_pool)
239 return -ENOMEM;
240 }
241 else if (m->queue_mode == DM_TYPE_BIO_BASED) {
242 INIT_WORK(&m->process_queued_bios, process_queued_bios);
243 /*
244 * bio-based doesn't support any direct scsi_dh management;
245 * it just discovers if a scsi_dh is attached.
246 */
247 set_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags);
248 }
249
250 dm_table_set_type(ti->table, m->queue_mode);
251
252 return 0;
253}
254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255static void free_multipath(struct multipath *m)
256{
257 struct priority_group *pg, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259 list_for_each_entry_safe(pg, tmp, &m->priority_groups, list) {
260 list_del(&pg->list);
261 free_priority_group(pg, m->ti);
262 }
263
Chandra Seetharamancfae5c92008-05-01 14:50:11 -0700264 kfree(m->hw_handler_name);
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700265 kfree(m->hw_handler_params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 mempool_destroy(m->mpio_pool);
267 kfree(m);
268}
269
Mike Snitzer2eff1922016-02-03 09:13:14 -0500270static struct dm_mpath_io *get_mpio(union map_info *info)
271{
272 return info->ptr;
273}
274
275static struct dm_mpath_io *set_mpio(struct multipath *m, union map_info *info)
Jun'ichi Nomura466891f2012-03-28 18:41:25 +0100276{
277 struct dm_mpath_io *mpio;
278
Mike Snitzer8637a6b2016-01-31 12:08:36 -0500279 if (!m->mpio_pool) {
280 /* Use blk-mq pdu memory requested via per_io_data_size */
Mike Snitzer2eff1922016-02-03 09:13:14 -0500281 mpio = get_mpio(info);
Mike Snitzer8637a6b2016-01-31 12:08:36 -0500282 memset(mpio, 0, sizeof(*mpio));
283 return mpio;
284 }
285
Jun'ichi Nomura466891f2012-03-28 18:41:25 +0100286 mpio = mempool_alloc(m->mpio_pool, GFP_ATOMIC);
287 if (!mpio)
Mike Snitzer2eff1922016-02-03 09:13:14 -0500288 return NULL;
Jun'ichi Nomura466891f2012-03-28 18:41:25 +0100289
290 memset(mpio, 0, sizeof(*mpio));
291 info->ptr = mpio;
292
Mike Snitzer2eff1922016-02-03 09:13:14 -0500293 return mpio;
Jun'ichi Nomura466891f2012-03-28 18:41:25 +0100294}
295
Mike Snitzer2eff1922016-02-03 09:13:14 -0500296static void clear_request_fn_mpio(struct multipath *m, union map_info *info)
Jun'ichi Nomura466891f2012-03-28 18:41:25 +0100297{
Mike Snitzer2eff1922016-02-03 09:13:14 -0500298 /* Only needed for non blk-mq (.request_fn) multipath */
Mike Snitzer8637a6b2016-01-31 12:08:36 -0500299 if (m->mpio_pool) {
300 struct dm_mpath_io *mpio = info->ptr;
Jun'ichi Nomura466891f2012-03-28 18:41:25 +0100301
Mike Snitzer8637a6b2016-01-31 12:08:36 -0500302 info->ptr = NULL;
303 mempool_free(mpio, m->mpio_pool);
304 }
Jun'ichi Nomura466891f2012-03-28 18:41:25 +0100305}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
Mike Snitzerbf661be2016-05-24 15:48:08 -0400307static size_t multipath_per_bio_data_size(void)
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400308{
Mike Snitzerbf661be2016-05-24 15:48:08 -0400309 return sizeof(struct dm_mpath_io) + sizeof(struct dm_bio_details);
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400310}
311
Mike Snitzerbf661be2016-05-24 15:48:08 -0400312static struct dm_mpath_io *get_mpio_from_bio(struct bio *bio)
313{
314 return dm_per_bio_data(bio, multipath_per_bio_data_size());
315}
316
317static struct dm_bio_details *get_bio_details_from_bio(struct bio *bio)
318{
319 /* dm_bio_details is immediately after the dm_mpath_io in bio's per-bio-data */
320 struct dm_mpath_io *mpio = get_mpio_from_bio(bio);
321 void *bio_details = mpio + 1;
322
323 return bio_details;
324}
325
326static void multipath_init_per_bio_data(struct bio *bio, struct dm_mpath_io **mpio_p,
327 struct dm_bio_details **bio_details_p)
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400328{
329 struct dm_mpath_io *mpio = get_mpio_from_bio(bio);
Mike Snitzerbf661be2016-05-24 15:48:08 -0400330 struct dm_bio_details *bio_details = get_bio_details_from_bio(bio);
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400331
332 memset(mpio, 0, sizeof(*mpio));
Mike Snitzerbf661be2016-05-24 15:48:08 -0400333 memset(bio_details, 0, sizeof(*bio_details));
334 dm_bio_record(bio_details, bio);
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400335
Mike Snitzerbf661be2016-05-24 15:48:08 -0400336 if (mpio_p)
337 *mpio_p = mpio;
338 if (bio_details_p)
339 *bio_details_p = bio_details;
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400340}
341
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342/*-----------------------------------------------
343 * Path selection
344 *-----------------------------------------------*/
345
Hannes Reinecke3e9f1be2014-02-28 15:33:45 +0100346static int __pg_init_all_paths(struct multipath *m)
Kiyoshi Uedafb612642010-03-06 02:32:18 +0000347{
348 struct pgpath *pgpath;
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +0000349 unsigned long pg_init_delay = 0;
Kiyoshi Uedafb612642010-03-06 02:32:18 +0000350
Mike Snitzer91e968a2016-03-17 17:10:15 -0400351 if (atomic_read(&m->pg_init_in_progress) || test_bit(MPATHF_PG_INIT_DISABLED, &m->flags))
Hannes Reinecke3e9f1be2014-02-28 15:33:45 +0100352 return 0;
Hannes Reinecke17f4ff42014-02-28 15:33:42 +0100353
Mike Snitzer91e968a2016-03-17 17:10:15 -0400354 atomic_inc(&m->pg_init_count);
Mike Snitzer518257b2016-03-17 16:32:10 -0400355 clear_bit(MPATHF_PG_INIT_REQUIRED, &m->flags);
Hannes Reinecke3e9f1be2014-02-28 15:33:45 +0100356
357 /* Check here to reset pg_init_required */
358 if (!m->current_pg)
359 return 0;
360
Mike Snitzer518257b2016-03-17 16:32:10 -0400361 if (test_bit(MPATHF_PG_INIT_DELAY_RETRY, &m->flags))
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +0000362 pg_init_delay = msecs_to_jiffies(m->pg_init_delay_msecs != DM_PG_INIT_DELAY_DEFAULT ?
363 m->pg_init_delay_msecs : DM_PG_INIT_DELAY_MSECS);
Kiyoshi Uedafb612642010-03-06 02:32:18 +0000364 list_for_each_entry(pgpath, &m->current_pg->pgpaths, list) {
365 /* Skip failed paths */
366 if (!pgpath->is_active)
367 continue;
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +0000368 if (queue_delayed_work(kmpath_handlerd, &pgpath->activate_path,
369 pg_init_delay))
Mike Snitzer91e968a2016-03-17 17:10:15 -0400370 atomic_inc(&m->pg_init_in_progress);
Kiyoshi Uedafb612642010-03-06 02:32:18 +0000371 }
Mike Snitzer91e968a2016-03-17 17:10:15 -0400372 return atomic_read(&m->pg_init_in_progress);
Kiyoshi Uedafb612642010-03-06 02:32:18 +0000373}
374
Bart Van Assche48135772016-11-15 15:34:09 -0800375static void pg_init_all_paths(struct multipath *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376{
Mike Snitzer2da16102016-03-17 18:38:17 -0400377 unsigned long flags;
378
379 spin_lock_irqsave(&m->lock, flags);
Bart Van Assche48135772016-11-15 15:34:09 -0800380 __pg_init_all_paths(m);
Mike Snitzer2da16102016-03-17 18:38:17 -0400381 spin_unlock_irqrestore(&m->lock, flags);
Mike Snitzer2da16102016-03-17 18:38:17 -0400382}
383
384static void __switch_pg(struct multipath *m, struct priority_group *pg)
385{
386 m->current_pg = pg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
388 /* Must we initialise the PG first, and queue I/O till it's ready? */
Chandra Seetharamancfae5c92008-05-01 14:50:11 -0700389 if (m->hw_handler_name) {
Mike Snitzer518257b2016-03-17 16:32:10 -0400390 set_bit(MPATHF_PG_INIT_REQUIRED, &m->flags);
391 set_bit(MPATHF_QUEUE_IO, &m->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 } else {
Mike Snitzer518257b2016-03-17 16:32:10 -0400393 clear_bit(MPATHF_PG_INIT_REQUIRED, &m->flags);
394 clear_bit(MPATHF_QUEUE_IO, &m->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 }
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100396
Mike Snitzer91e968a2016-03-17 17:10:15 -0400397 atomic_set(&m->pg_init_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398}
399
Mike Snitzer2da16102016-03-17 18:38:17 -0400400static struct pgpath *choose_path_in_pg(struct multipath *m,
401 struct priority_group *pg,
402 size_t nr_bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403{
Mike Snitzer2da16102016-03-17 18:38:17 -0400404 unsigned long flags;
Josef "Jeff" Sipekc922d5f2006-12-08 02:36:33 -0800405 struct dm_path *path;
Mike Snitzer2da16102016-03-17 18:38:17 -0400406 struct pgpath *pgpath;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
Mike Snitzer90a43232016-02-17 21:29:17 -0500408 path = pg->ps.type->select_path(&pg->ps, nr_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 if (!path)
Mike Snitzer2da16102016-03-17 18:38:17 -0400410 return ERR_PTR(-ENXIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Mike Snitzer2da16102016-03-17 18:38:17 -0400412 pgpath = path_to_pgpath(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Mike Snitzer2da16102016-03-17 18:38:17 -0400414 if (unlikely(lockless_dereference(m->current_pg) != pg)) {
415 /* Only update current_pgpath if pg changed */
416 spin_lock_irqsave(&m->lock, flags);
417 m->current_pgpath = pgpath;
418 __switch_pg(m, pg);
419 spin_unlock_irqrestore(&m->lock, flags);
420 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Mike Snitzer2da16102016-03-17 18:38:17 -0400422 return pgpath;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423}
424
Mike Snitzer2da16102016-03-17 18:38:17 -0400425static struct pgpath *choose_pgpath(struct multipath *m, size_t nr_bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426{
Mike Snitzer2da16102016-03-17 18:38:17 -0400427 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 struct priority_group *pg;
Mike Snitzer2da16102016-03-17 18:38:17 -0400429 struct pgpath *pgpath;
Mike Snitzerbe7d31c2016-02-10 13:02:21 -0500430 bool bypassed = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Mike Snitzer91e968a2016-03-17 17:10:15 -0400432 if (!atomic_read(&m->nr_valid_paths)) {
Mike Snitzer518257b2016-03-17 16:32:10 -0400433 clear_bit(MPATHF_QUEUE_IO, &m->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 goto failed;
Benjamin Marzinski1f271972014-08-13 13:53:42 -0500435 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
437 /* Were we instructed to switch PG? */
Mike Snitzer2da16102016-03-17 18:38:17 -0400438 if (lockless_dereference(m->next_pg)) {
439 spin_lock_irqsave(&m->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 pg = m->next_pg;
Mike Snitzer2da16102016-03-17 18:38:17 -0400441 if (!pg) {
442 spin_unlock_irqrestore(&m->lock, flags);
443 goto check_current_pg;
444 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 m->next_pg = NULL;
Mike Snitzer2da16102016-03-17 18:38:17 -0400446 spin_unlock_irqrestore(&m->lock, flags);
447 pgpath = choose_path_in_pg(m, pg, nr_bytes);
448 if (!IS_ERR_OR_NULL(pgpath))
449 return pgpath;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 }
451
452 /* Don't change PG until it has no remaining paths */
Mike Snitzer2da16102016-03-17 18:38:17 -0400453check_current_pg:
454 pg = lockless_dereference(m->current_pg);
455 if (pg) {
456 pgpath = choose_path_in_pg(m, pg, nr_bytes);
457 if (!IS_ERR_OR_NULL(pgpath))
458 return pgpath;
459 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
461 /*
462 * Loop through priority groups until we find a valid path.
463 * First time we skip PGs marked 'bypassed'.
Mike Christief220fd42012-06-03 00:29:45 +0100464 * Second time we only try the ones we skipped, but set
465 * pg_init_delay_retry so we do not hammer controllers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 */
467 do {
468 list_for_each_entry(pg, &m->priority_groups, list) {
469 if (pg->bypassed == bypassed)
470 continue;
Mike Snitzer2da16102016-03-17 18:38:17 -0400471 pgpath = choose_path_in_pg(m, pg, nr_bytes);
472 if (!IS_ERR_OR_NULL(pgpath)) {
Mike Christief220fd42012-06-03 00:29:45 +0100473 if (!bypassed)
Mike Snitzer518257b2016-03-17 16:32:10 -0400474 set_bit(MPATHF_PG_INIT_DELAY_RETRY, &m->flags);
Mike Snitzer2da16102016-03-17 18:38:17 -0400475 return pgpath;
Mike Christief220fd42012-06-03 00:29:45 +0100476 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 }
478 } while (bypassed--);
479
480failed:
Mike Snitzer2da16102016-03-17 18:38:17 -0400481 spin_lock_irqsave(&m->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 m->current_pgpath = NULL;
483 m->current_pg = NULL;
Mike Snitzer2da16102016-03-17 18:38:17 -0400484 spin_unlock_irqrestore(&m->lock, flags);
485
486 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487}
488
Kiyoshi Ueda45e15722006-12-08 02:41:10 -0800489/*
490 * Check whether bios must be queued in the device-mapper core rather
491 * than here in the target.
492 *
Kiyoshi Ueda45e15722006-12-08 02:41:10 -0800493 * If m->queue_if_no_path and m->saved_queue_if_no_path hold the
494 * same value then we are not between multipath_presuspend()
495 * and multipath_resume() calls and we have no need to check
496 * for the DMF_NOFLUSH_SUSPENDING flag.
497 */
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400498static bool __must_push_back(struct multipath *m)
499{
500 return ((test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags) !=
501 test_bit(MPATHF_SAVED_QUEUE_IF_NO_PATH, &m->flags)) &&
502 dm_noflush_suspending(m->ti));
503}
504
505static bool must_push_back_rq(struct multipath *m)
Kiyoshi Ueda45e15722006-12-08 02:41:10 -0800506{
Mike Snitzer1814f2e2016-07-25 21:08:51 -0400507 bool r;
508 unsigned long flags;
509
510 spin_lock_irqsave(&m->lock, flags);
511 r = (test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags) ||
512 __must_push_back(m));
513 spin_unlock_irqrestore(&m->lock, flags);
514
515 return r;
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400516}
517
518static bool must_push_back_bio(struct multipath *m)
519{
Mike Snitzer1814f2e2016-07-25 21:08:51 -0400520 bool r;
521 unsigned long flags;
522
523 spin_lock_irqsave(&m->lock, flags);
524 r = __must_push_back(m);
525 spin_unlock_irqrestore(&m->lock, flags);
526
527 return r;
Kiyoshi Ueda45e15722006-12-08 02:41:10 -0800528}
529
Hannes Reinecke36fcffc2014-02-28 15:33:47 +0100530/*
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400531 * Map cloned requests (request-based multipath)
Hannes Reinecke36fcffc2014-02-28 15:33:47 +0100532 */
Mike Snitzere5863d92014-12-17 21:08:12 -0500533static int __multipath_map(struct dm_target *ti, struct request *clone,
534 union map_info *map_context,
535 struct request *rq, struct request **__clone)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536{
Mike Snitzer7943bd62016-02-02 21:53:15 -0500537 struct multipath *m = ti->private;
Hannes Reineckee3bde042014-02-28 15:33:46 +0100538 int r = DM_MAPIO_REQUEUE;
Mike Snitzere5863d92014-12-17 21:08:12 -0500539 size_t nr_bytes = clone ? blk_rq_bytes(clone) : blk_rq_bytes(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 struct pgpath *pgpath;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +0100541 struct block_device *bdev;
Hannes Reineckee3bde042014-02-28 15:33:46 +0100542 struct dm_mpath_io *mpio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 /* Do we need to select a new pgpath? */
Mike Snitzer2da16102016-03-17 18:38:17 -0400545 pgpath = lockless_dereference(m->current_pgpath);
546 if (!pgpath || !test_bit(MPATHF_QUEUE_IO, &m->flags))
547 pgpath = choose_pgpath(m, nr_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Mike Snitzer9bf59a62014-02-28 15:33:48 +0100549 if (!pgpath) {
Mike Snitzerb88efd42016-09-09 19:26:19 -0400550 if (must_push_back_rq(m))
551 return DM_MAPIO_DELAY_REQUEUE;
552 return -EIO; /* Failed */
Mike Snitzer518257b2016-03-17 16:32:10 -0400553 } else if (test_bit(MPATHF_QUEUE_IO, &m->flags) ||
554 test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags)) {
Mike Snitzer2da16102016-03-17 18:38:17 -0400555 pg_init_all_paths(m);
556 return r;
Mike Snitzer9bf59a62014-02-28 15:33:48 +0100557 }
Mike Snitzer6afbc012014-07-08 11:55:09 -0400558
Mike Snitzer2eff1922016-02-03 09:13:14 -0500559 mpio = set_mpio(m, map_context);
560 if (!mpio)
Mike Snitzer9bf59a62014-02-28 15:33:48 +0100561 /* ENOMEM, requeue */
Mike Snitzer2da16102016-03-17 18:38:17 -0400562 return r;
Mike Snitzer9bf59a62014-02-28 15:33:48 +0100563
Mike Snitzer9bf59a62014-02-28 15:33:48 +0100564 mpio->pgpath = pgpath;
565 mpio->nr_bytes = nr_bytes;
Keith Busch2eb6e1e2014-10-17 17:46:36 -0600566
567 bdev = pgpath->path.dev->bdev;
568
Mike Snitzere5863d92014-12-17 21:08:12 -0500569 if (clone) {
Mike Snitzerc5248f72016-02-20 14:02:49 -0500570 /*
571 * Old request-based interface: allocated clone is passed in.
572 * Used by: .request_fn stacked on .request_fn path(s).
573 */
Mike Snitzere5863d92014-12-17 21:08:12 -0500574 clone->q = bdev_get_queue(bdev);
575 clone->rq_disk = bdev->bd_disk;
576 clone->cmd_flags |= REQ_FAILFAST_TRANSPORT;
577 } else {
Mike Snitzereca7ee62016-02-20 13:45:38 -0500578 /*
579 * blk-mq request-based interface; used by both:
580 * .request_fn stacked on blk-mq path(s) and
581 * blk-mq stacked on blk-mq path(s).
582 */
Bart Van Assche6599c842016-11-15 15:34:32 -0800583 clone = blk_mq_alloc_request(bdev_get_queue(bdev),
584 rq_data_dir(rq), BLK_MQ_REQ_NOWAIT);
585 if (IS_ERR(clone)) {
586 /* EBUSY, ENODEV or EWOULDBLOCK: requeue */
Mike Snitzer2eff1922016-02-03 09:13:14 -0500587 clear_request_fn_mpio(m, map_context);
Mike Snitzere5863d92014-12-17 21:08:12 -0500588 return r;
Mike Snitzer4c6dd532015-05-27 15:23:56 -0400589 }
Bart Van Assche6599c842016-11-15 15:34:32 -0800590 clone->bio = clone->biotail = NULL;
591 clone->rq_disk = bdev->bd_disk;
592 clone->cmd_flags |= REQ_FAILFAST_TRANSPORT;
593 *__clone = clone;
Mike Snitzere5863d92014-12-17 21:08:12 -0500594 }
595
Mike Snitzer9bf59a62014-02-28 15:33:48 +0100596 if (pgpath->pg->ps.type->start_io)
597 pgpath->pg->ps.type->start_io(&pgpath->pg->ps,
598 &pgpath->path,
599 nr_bytes);
Keith Busch2eb6e1e2014-10-17 17:46:36 -0600600 return DM_MAPIO_REMAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601}
602
Mike Snitzere5863d92014-12-17 21:08:12 -0500603static int multipath_map(struct dm_target *ti, struct request *clone,
604 union map_info *map_context)
605{
606 return __multipath_map(ti, clone, map_context, NULL, NULL);
607}
608
609static int multipath_clone_and_map(struct dm_target *ti, struct request *rq,
610 union map_info *map_context,
611 struct request **clone)
612{
613 return __multipath_map(ti, NULL, map_context, rq, clone);
614}
615
616static void multipath_release_clone(struct request *clone)
617{
Mike Snitzer78ce23b2016-01-31 17:38:28 -0500618 blk_mq_free_request(clone);
Mike Snitzere5863d92014-12-17 21:08:12 -0500619}
620
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621/*
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400622 * Map cloned bios (bio-based multipath)
623 */
624static int __multipath_map_bio(struct multipath *m, struct bio *bio, struct dm_mpath_io *mpio)
625{
626 size_t nr_bytes = bio->bi_iter.bi_size;
627 struct pgpath *pgpath;
628 unsigned long flags;
629 bool queue_io;
630
631 /* Do we need to select a new pgpath? */
632 pgpath = lockless_dereference(m->current_pgpath);
633 queue_io = test_bit(MPATHF_QUEUE_IO, &m->flags);
634 if (!pgpath || !queue_io)
635 pgpath = choose_pgpath(m, nr_bytes);
636
637 if ((pgpath && queue_io) ||
638 (!pgpath && test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))) {
639 /* Queue for the daemon to resubmit */
640 spin_lock_irqsave(&m->lock, flags);
641 bio_list_add(&m->queued_bios, bio);
642 spin_unlock_irqrestore(&m->lock, flags);
643 /* PG_INIT_REQUIRED cannot be set without QUEUE_IO */
644 if (queue_io || test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags))
645 pg_init_all_paths(m);
646 else if (!queue_io)
647 queue_work(kmultipathd, &m->process_queued_bios);
648 return DM_MAPIO_SUBMITTED;
649 }
650
651 if (!pgpath) {
652 if (!must_push_back_bio(m))
653 return -EIO;
654 return DM_MAPIO_REQUEUE;
655 }
656
657 mpio->pgpath = pgpath;
658 mpio->nr_bytes = nr_bytes;
659
660 bio->bi_error = 0;
661 bio->bi_bdev = pgpath->path.dev->bdev;
Jens Axboe1eff9d32016-08-05 15:35:16 -0600662 bio->bi_opf |= REQ_FAILFAST_TRANSPORT;
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400663
664 if (pgpath->pg->ps.type->start_io)
665 pgpath->pg->ps.type->start_io(&pgpath->pg->ps,
666 &pgpath->path,
667 nr_bytes);
668 return DM_MAPIO_REMAPPED;
669}
670
671static int multipath_map_bio(struct dm_target *ti, struct bio *bio)
672{
673 struct multipath *m = ti->private;
Mike Snitzerbf661be2016-05-24 15:48:08 -0400674 struct dm_mpath_io *mpio = NULL;
675
676 multipath_init_per_bio_data(bio, &mpio, NULL);
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400677
678 return __multipath_map_bio(m, bio, mpio);
679}
680
Mike Snitzer7e48c762016-09-14 10:47:03 -0400681static void process_queued_io_list(struct multipath *m)
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400682{
Mike Snitzer7e48c762016-09-14 10:47:03 -0400683 if (m->queue_mode == DM_TYPE_MQ_REQUEST_BASED)
684 dm_mq_kick_requeue_list(dm_table_get_md(m->ti->table));
685 else if (m->queue_mode == DM_TYPE_BIO_BASED)
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400686 queue_work(kmultipathd, &m->process_queued_bios);
687}
688
689static void process_queued_bios(struct work_struct *work)
690{
691 int r;
692 unsigned long flags;
693 struct bio *bio;
694 struct bio_list bios;
695 struct blk_plug plug;
696 struct multipath *m =
697 container_of(work, struct multipath, process_queued_bios);
698
699 bio_list_init(&bios);
700
701 spin_lock_irqsave(&m->lock, flags);
702
703 if (bio_list_empty(&m->queued_bios)) {
704 spin_unlock_irqrestore(&m->lock, flags);
705 return;
706 }
707
708 bio_list_merge(&bios, &m->queued_bios);
709 bio_list_init(&m->queued_bios);
710
711 spin_unlock_irqrestore(&m->lock, flags);
712
713 blk_start_plug(&plug);
714 while ((bio = bio_list_pop(&bios))) {
715 r = __multipath_map_bio(m, bio, get_mpio_from_bio(bio));
716 if (r < 0 || r == DM_MAPIO_REQUEUE) {
717 bio->bi_error = r;
718 bio_endio(bio);
719 } else if (r == DM_MAPIO_REMAPPED)
720 generic_make_request(bio);
721 }
722 blk_finish_plug(&plug);
723}
724
725/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 * If we run out of usable paths, should we queue I/O or error it?
727 */
Mike Snitzerbe7d31c2016-02-10 13:02:21 -0500728static int queue_if_no_path(struct multipath *m, bool queue_if_no_path,
729 bool save_old_value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730{
731 unsigned long flags;
732
733 spin_lock_irqsave(&m->lock, flags);
734
Mike Snitzer518257b2016-03-17 16:32:10 -0400735 if (save_old_value) {
736 if (test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))
737 set_bit(MPATHF_SAVED_QUEUE_IF_NO_PATH, &m->flags);
738 else
739 clear_bit(MPATHF_SAVED_QUEUE_IF_NO_PATH, &m->flags);
740 } else {
741 if (queue_if_no_path)
742 set_bit(MPATHF_SAVED_QUEUE_IF_NO_PATH, &m->flags);
743 else
744 clear_bit(MPATHF_SAVED_QUEUE_IF_NO_PATH, &m->flags);
745 }
746 if (queue_if_no_path)
747 set_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags);
Alasdair G Kergon485ef692005-09-27 21:45:45 -0700748 else
Mike Snitzer518257b2016-03-17 16:32:10 -0400749 clear_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags);
750
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 spin_unlock_irqrestore(&m->lock, flags);
752
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400753 if (!queue_if_no_path) {
Hannes Reinecke63d832c2014-05-26 14:45:39 +0200754 dm_table_run_md_queue_async(m->ti->table);
Mike Snitzer7e48c762016-09-14 10:47:03 -0400755 process_queued_io_list(m);
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400756 }
Hannes Reinecke63d832c2014-05-26 14:45:39 +0200757
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 return 0;
759}
760
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761/*
762 * An event is triggered whenever a path is taken out of use.
763 * Includes path failure and PG bypass.
764 */
David Howellsc4028952006-11-22 14:57:56 +0000765static void trigger_event(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766{
David Howellsc4028952006-11-22 14:57:56 +0000767 struct multipath *m =
768 container_of(work, struct multipath, trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
770 dm_table_event(m->ti->table);
771}
772
773/*-----------------------------------------------------------------
774 * Constructor/argument parsing:
775 * <#multipath feature args> [<arg>]*
776 * <#hw_handler args> [hw_handler [<arg>]*]
777 * <#priority groups>
778 * <initial priority group>
779 * [<selector> <#selector args> [<arg>]*
780 * <#paths> <#per-path selector args>
781 * [<path> [<arg>]* ]+ ]+
782 *---------------------------------------------------------------*/
Mike Snitzer498f0102011-08-02 12:32:04 +0100783static int parse_path_selector(struct dm_arg_set *as, struct priority_group *pg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 struct dm_target *ti)
785{
786 int r;
787 struct path_selector_type *pst;
788 unsigned ps_argc;
789
Mike Snitzer498f0102011-08-02 12:32:04 +0100790 static struct dm_arg _args[] = {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700791 {0, 1024, "invalid number of path selector args"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 };
793
Mike Snitzer498f0102011-08-02 12:32:04 +0100794 pst = dm_get_path_selector(dm_shift_arg(as));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 if (!pst) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700796 ti->error = "unknown path selector type";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 return -EINVAL;
798 }
799
Mike Snitzer498f0102011-08-02 12:32:04 +0100800 r = dm_read_arg_group(_args, as, &ps_argc, &ti->error);
Mikulas Patocka371b2e32008-07-21 12:00:24 +0100801 if (r) {
802 dm_put_path_selector(pst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 return -EINVAL;
Mikulas Patocka371b2e32008-07-21 12:00:24 +0100804 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
806 r = pst->create(&pg->ps, ps_argc, as->argv);
807 if (r) {
808 dm_put_path_selector(pst);
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700809 ti->error = "path selector constructor failed";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 return r;
811 }
812
813 pg->ps.type = pst;
Mike Snitzer498f0102011-08-02 12:32:04 +0100814 dm_consume_args(as, ps_argc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
816 return 0;
817}
818
Mike Snitzer498f0102011-08-02 12:32:04 +0100819static struct pgpath *parse_path(struct dm_arg_set *as, struct path_selector *ps,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 struct dm_target *ti)
821{
822 int r;
823 struct pgpath *p;
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700824 struct multipath *m = ti->private;
Mike Snitzera58a9352012-07-27 15:08:04 +0100825 struct request_queue *q = NULL;
826 const char *attached_handler_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
828 /* we need at least a path arg */
829 if (as->argc < 1) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700830 ti->error = "no device given";
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100831 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 }
833
834 p = alloc_pgpath();
835 if (!p)
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100836 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
Mike Snitzer498f0102011-08-02 12:32:04 +0100838 r = dm_get_device(ti, dm_shift_arg(as), dm_table_get_mode(ti->table),
Nikanth Karthikesan8215d6e2010-03-06 02:32:27 +0000839 &p->path.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 if (r) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700841 ti->error = "error getting device";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 goto bad;
843 }
844
Mike Snitzer518257b2016-03-17 16:32:10 -0400845 if (test_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags) || m->hw_handler_name)
Mike Snitzera58a9352012-07-27 15:08:04 +0100846 q = bdev_get_queue(p->path.dev->bdev);
Hannes Reineckea0cf7ea2009-06-22 10:12:11 +0100847
Mike Snitzer518257b2016-03-17 16:32:10 -0400848 if (test_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags)) {
Christoph Hellwig1bab0de2015-08-27 14:16:54 +0200849retain:
Mike Snitzera58a9352012-07-27 15:08:04 +0100850 attached_handler_name = scsi_dh_attached_handler_name(q, GFP_KERNEL);
851 if (attached_handler_name) {
852 /*
tang.junhui54cd6402016-11-24 15:11:48 +0800853 * Clear any hw_handler_params associated with a
854 * handler that isn't already attached.
855 */
856 if (m->hw_handler_name && strcmp(attached_handler_name, m->hw_handler_name)) {
857 kfree(m->hw_handler_params);
858 m->hw_handler_params = NULL;
859 }
860
861 /*
Mike Snitzera58a9352012-07-27 15:08:04 +0100862 * Reset hw_handler_name to match the attached handler
Mike Snitzera58a9352012-07-27 15:08:04 +0100863 *
864 * NB. This modifies the table line to show the actual
865 * handler instead of the original table passed in.
866 */
867 kfree(m->hw_handler_name);
868 m->hw_handler_name = attached_handler_name;
Mike Snitzera58a9352012-07-27 15:08:04 +0100869 }
870 }
871
872 if (m->hw_handler_name) {
Hannes Reineckea0cf7ea2009-06-22 10:12:11 +0100873 r = scsi_dh_attach(q, m->hw_handler_name);
874 if (r == -EBUSY) {
Christoph Hellwig1bab0de2015-08-27 14:16:54 +0200875 char b[BDEVNAME_SIZE];
Hannes Reineckea0cf7ea2009-06-22 10:12:11 +0100876
Christoph Hellwig1bab0de2015-08-27 14:16:54 +0200877 printk(KERN_INFO "dm-mpath: retaining handler on device %s\n",
878 bdevname(p->path.dev->bdev, b));
879 goto retain;
880 }
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700881 if (r < 0) {
Hannes Reineckea0cf7ea2009-06-22 10:12:11 +0100882 ti->error = "error attaching hardware handler";
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700883 dm_put_device(ti, p->path.dev);
884 goto bad;
885 }
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700886
887 if (m->hw_handler_params) {
888 r = scsi_dh_set_params(q, m->hw_handler_params);
889 if (r < 0) {
890 ti->error = "unable to set hardware "
891 "handler parameters";
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700892 dm_put_device(ti, p->path.dev);
893 goto bad;
894 }
895 }
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700896 }
897
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 r = ps->type->add_path(ps, &p->path, as->argc, as->argv, &ti->error);
899 if (r) {
900 dm_put_device(ti, p->path.dev);
901 goto bad;
902 }
903
904 return p;
905
906 bad:
907 free_pgpath(p);
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100908 return ERR_PTR(r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909}
910
Mike Snitzer498f0102011-08-02 12:32:04 +0100911static struct priority_group *parse_priority_group(struct dm_arg_set *as,
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700912 struct multipath *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913{
Mike Snitzer498f0102011-08-02 12:32:04 +0100914 static struct dm_arg _args[] = {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700915 {1, 1024, "invalid number of paths"},
916 {0, 1024, "invalid number of selector args"}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 };
918
919 int r;
Mike Snitzer498f0102011-08-02 12:32:04 +0100920 unsigned i, nr_selector_args, nr_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 struct priority_group *pg;
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700922 struct dm_target *ti = m->ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
924 if (as->argc < 2) {
925 as->argc = 0;
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100926 ti->error = "not enough priority group arguments";
927 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 }
929
930 pg = alloc_priority_group();
931 if (!pg) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700932 ti->error = "couldn't allocate priority group";
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100933 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 }
935 pg->m = m;
936
937 r = parse_path_selector(as, pg, ti);
938 if (r)
939 goto bad;
940
941 /*
942 * read the paths
943 */
Mike Snitzer498f0102011-08-02 12:32:04 +0100944 r = dm_read_arg(_args, as, &pg->nr_pgpaths, &ti->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 if (r)
946 goto bad;
947
Mike Snitzer498f0102011-08-02 12:32:04 +0100948 r = dm_read_arg(_args + 1, as, &nr_selector_args, &ti->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 if (r)
950 goto bad;
951
Mike Snitzer498f0102011-08-02 12:32:04 +0100952 nr_args = 1 + nr_selector_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 for (i = 0; i < pg->nr_pgpaths; i++) {
954 struct pgpath *pgpath;
Mike Snitzer498f0102011-08-02 12:32:04 +0100955 struct dm_arg_set path_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
Mike Snitzer498f0102011-08-02 12:32:04 +0100957 if (as->argc < nr_args) {
Mikulas Patocka148acff2008-07-21 12:00:30 +0100958 ti->error = "not enough path parameters";
Alasdair G Kergon6bbf79a2010-08-12 04:13:49 +0100959 r = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 goto bad;
Mikulas Patocka148acff2008-07-21 12:00:30 +0100961 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
Mike Snitzer498f0102011-08-02 12:32:04 +0100963 path_args.argc = nr_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 path_args.argv = as->argv;
965
966 pgpath = parse_path(&path_args, &pg->ps, ti);
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100967 if (IS_ERR(pgpath)) {
968 r = PTR_ERR(pgpath);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 goto bad;
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100970 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
972 pgpath->pg = pg;
973 list_add_tail(&pgpath->list, &pg->pgpaths);
Mike Snitzer498f0102011-08-02 12:32:04 +0100974 dm_consume_args(as, nr_args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 }
976
977 return pg;
978
979 bad:
980 free_priority_group(pg, ti);
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100981 return ERR_PTR(r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982}
983
Mike Snitzer498f0102011-08-02 12:32:04 +0100984static int parse_hw_handler(struct dm_arg_set *as, struct multipath *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 unsigned hw_argc;
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700987 int ret;
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700988 struct dm_target *ti = m->ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
Mike Snitzer498f0102011-08-02 12:32:04 +0100990 static struct dm_arg _args[] = {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700991 {0, 1024, "invalid number of hardware handler args"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 };
993
Mike Snitzer498f0102011-08-02 12:32:04 +0100994 if (dm_read_arg_group(_args, as, &hw_argc, &ti->error))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 return -EINVAL;
996
997 if (!hw_argc)
998 return 0;
999
Mike Snitzere83068a2016-05-24 21:16:51 -04001000 if (m->queue_mode == DM_TYPE_BIO_BASED) {
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001001 dm_consume_args(as, hw_argc);
1002 DMERR("bio-based multipath doesn't allow hardware handler args");
1003 return 0;
1004 }
1005
Mike Snitzer498f0102011-08-02 12:32:04 +01001006 m->hw_handler_name = kstrdup(dm_shift_arg(as), GFP_KERNEL);
tang.junhuif97dc422016-10-28 17:04:46 +08001007 if (!m->hw_handler_name)
1008 return -EINVAL;
Chandra Seetharaman14e98c52008-11-13 23:39:06 +00001009
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -07001010 if (hw_argc > 1) {
1011 char *p;
1012 int i, j, len = 4;
1013
1014 for (i = 0; i <= hw_argc - 2; i++)
1015 len += strlen(as->argv[i]) + 1;
1016 p = m->hw_handler_params = kzalloc(len, GFP_KERNEL);
1017 if (!p) {
1018 ti->error = "memory allocation failed";
1019 ret = -ENOMEM;
1020 goto fail;
1021 }
1022 j = sprintf(p, "%d", hw_argc - 1);
1023 for (i = 0, p+=j+1; i <= hw_argc - 2; i++, p+=j+1)
1024 j = sprintf(p, "%s", as->argv[i]);
1025 }
Mike Snitzer498f0102011-08-02 12:32:04 +01001026 dm_consume_args(as, hw_argc - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
1028 return 0;
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -07001029fail:
1030 kfree(m->hw_handler_name);
1031 m->hw_handler_name = NULL;
1032 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033}
1034
Mike Snitzer498f0102011-08-02 12:32:04 +01001035static int parse_features(struct dm_arg_set *as, struct multipath *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036{
1037 int r;
1038 unsigned argc;
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -07001039 struct dm_target *ti = m->ti;
Mike Snitzer498f0102011-08-02 12:32:04 +01001040 const char *arg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041
Mike Snitzer498f0102011-08-02 12:32:04 +01001042 static struct dm_arg _args[] = {
Mike Snitzere83068a2016-05-24 21:16:51 -04001043 {0, 8, "invalid number of feature args"},
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001044 {1, 50, "pg_init_retries must be between 1 and 50"},
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +00001045 {0, 60000, "pg_init_delay_msecs must be between 0 and 60000"},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 };
1047
Mike Snitzer498f0102011-08-02 12:32:04 +01001048 r = dm_read_arg_group(_args, as, &argc, &ti->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 if (r)
1050 return -EINVAL;
1051
1052 if (!argc)
1053 return 0;
1054
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001055 do {
Mike Snitzer498f0102011-08-02 12:32:04 +01001056 arg_name = dm_shift_arg(as);
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001057 argc--;
1058
Mike Snitzer498f0102011-08-02 12:32:04 +01001059 if (!strcasecmp(arg_name, "queue_if_no_path")) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001060 r = queue_if_no_path(m, true, false);
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001061 continue;
1062 }
1063
Mike Snitzera58a9352012-07-27 15:08:04 +01001064 if (!strcasecmp(arg_name, "retain_attached_hw_handler")) {
Mike Snitzer518257b2016-03-17 16:32:10 -04001065 set_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags);
Mike Snitzera58a9352012-07-27 15:08:04 +01001066 continue;
1067 }
1068
Mike Snitzer498f0102011-08-02 12:32:04 +01001069 if (!strcasecmp(arg_name, "pg_init_retries") &&
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001070 (argc >= 1)) {
Mike Snitzer498f0102011-08-02 12:32:04 +01001071 r = dm_read_arg(_args + 1, as, &m->pg_init_retries, &ti->error);
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001072 argc--;
1073 continue;
1074 }
1075
Mike Snitzer498f0102011-08-02 12:32:04 +01001076 if (!strcasecmp(arg_name, "pg_init_delay_msecs") &&
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +00001077 (argc >= 1)) {
Mike Snitzer498f0102011-08-02 12:32:04 +01001078 r = dm_read_arg(_args + 2, as, &m->pg_init_delay_msecs, &ti->error);
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +00001079 argc--;
1080 continue;
1081 }
1082
Mike Snitzere83068a2016-05-24 21:16:51 -04001083 if (!strcasecmp(arg_name, "queue_mode") &&
1084 (argc >= 1)) {
1085 const char *queue_mode_name = dm_shift_arg(as);
1086
1087 if (!strcasecmp(queue_mode_name, "bio"))
1088 m->queue_mode = DM_TYPE_BIO_BASED;
1089 else if (!strcasecmp(queue_mode_name, "rq"))
1090 m->queue_mode = DM_TYPE_REQUEST_BASED;
1091 else if (!strcasecmp(queue_mode_name, "mq"))
1092 m->queue_mode = DM_TYPE_MQ_REQUEST_BASED;
1093 else {
1094 ti->error = "Unknown 'queue_mode' requested";
1095 r = -EINVAL;
1096 }
1097 argc--;
1098 continue;
1099 }
1100
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 ti->error = "Unrecognised multipath feature request";
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001102 r = -EINVAL;
1103 } while (argc && !r);
1104
1105 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106}
1107
Mike Snitzere83068a2016-05-24 21:16:51 -04001108static int multipath_ctr(struct dm_target *ti, unsigned argc, char **argv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109{
Mike Snitzer498f0102011-08-02 12:32:04 +01001110 /* target arguments */
1111 static struct dm_arg _args[] = {
Mike Snitzera490a072011-03-24 13:54:33 +00001112 {0, 1024, "invalid number of priority groups"},
1113 {0, 1024, "invalid initial priority group number"},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 };
1115
1116 int r;
1117 struct multipath *m;
Mike Snitzer498f0102011-08-02 12:32:04 +01001118 struct dm_arg_set as;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 unsigned pg_count = 0;
1120 unsigned next_pg_num;
1121
1122 as.argc = argc;
1123 as.argv = argv;
1124
Mike Snitzere83068a2016-05-24 21:16:51 -04001125 m = alloc_multipath(ti);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 if (!m) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001127 ti->error = "can't allocate multipath";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 return -EINVAL;
1129 }
1130
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -07001131 r = parse_features(&as, m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 if (r)
1133 goto bad;
1134
Mike Snitzere83068a2016-05-24 21:16:51 -04001135 r = alloc_multipath_stage2(ti, m);
1136 if (r)
1137 goto bad;
1138
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -07001139 r = parse_hw_handler(&as, m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 if (r)
1141 goto bad;
1142
Mike Snitzer498f0102011-08-02 12:32:04 +01001143 r = dm_read_arg(_args, &as, &m->nr_priority_groups, &ti->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 if (r)
1145 goto bad;
1146
Mike Snitzer498f0102011-08-02 12:32:04 +01001147 r = dm_read_arg(_args + 1, &as, &next_pg_num, &ti->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 if (r)
1149 goto bad;
1150
Mike Snitzera490a072011-03-24 13:54:33 +00001151 if ((!m->nr_priority_groups && next_pg_num) ||
1152 (m->nr_priority_groups && !next_pg_num)) {
1153 ti->error = "invalid initial priority group";
1154 r = -EINVAL;
1155 goto bad;
1156 }
1157
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 /* parse the priority groups */
1159 while (as.argc) {
1160 struct priority_group *pg;
Mike Snitzer91e968a2016-03-17 17:10:15 -04001161 unsigned nr_valid_paths = atomic_read(&m->nr_valid_paths);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -07001163 pg = parse_priority_group(&as, m);
Benjamin Marzinski01460f32008-10-10 13:36:57 +01001164 if (IS_ERR(pg)) {
1165 r = PTR_ERR(pg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 goto bad;
1167 }
1168
Mike Snitzer91e968a2016-03-17 17:10:15 -04001169 nr_valid_paths += pg->nr_pgpaths;
1170 atomic_set(&m->nr_valid_paths, nr_valid_paths);
1171
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 list_add_tail(&pg->list, &m->priority_groups);
1173 pg_count++;
1174 pg->pg_num = pg_count;
1175 if (!--next_pg_num)
1176 m->next_pg = pg;
1177 }
1178
1179 if (pg_count != m->nr_priority_groups) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001180 ti->error = "priority group count mismatch";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 r = -EINVAL;
1182 goto bad;
1183 }
1184
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001185 ti->num_flush_bios = 1;
1186 ti->num_discard_bios = 1;
Mike Snitzer042bcef2013-05-10 14:37:16 +01001187 ti->num_write_same_bios = 1;
Mike Snitzere83068a2016-05-24 21:16:51 -04001188 if (m->queue_mode == DM_TYPE_BIO_BASED)
Mike Snitzerbf661be2016-05-24 15:48:08 -04001189 ti->per_io_data_size = multipath_per_bio_data_size();
Mike Snitzere83068a2016-05-24 21:16:51 -04001190 else if (m->queue_mode == DM_TYPE_MQ_REQUEST_BASED)
Mike Snitzer8637a6b2016-01-31 12:08:36 -05001191 ti->per_io_data_size = sizeof(struct dm_mpath_io);
Mikulas Patocka86279212009-06-22 10:12:24 +01001192
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 return 0;
1194
1195 bad:
1196 free_multipath(m);
1197 return r;
1198}
1199
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001200static void multipath_wait_for_pg_init_completion(struct multipath *m)
1201{
Bart Van Assche9f4c3f82016-08-31 15:16:43 -07001202 DEFINE_WAIT(wait);
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001203
1204 while (1) {
Bart Van Assche9f4c3f82016-08-31 15:16:43 -07001205 prepare_to_wait(&m->pg_init_wait, &wait, TASK_UNINTERRUPTIBLE);
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001206
Mike Snitzer91e968a2016-03-17 17:10:15 -04001207 if (!atomic_read(&m->pg_init_in_progress))
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001208 break;
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001209
1210 io_schedule();
1211 }
Bart Van Assche9f4c3f82016-08-31 15:16:43 -07001212 finish_wait(&m->pg_init_wait, &wait);
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001213}
1214
1215static void flush_multipath_work(struct multipath *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216{
Mike Snitzer518257b2016-03-17 16:32:10 -04001217 set_bit(MPATHF_PG_INIT_DISABLED, &m->flags);
1218 smp_mb__after_atomic();
Shiva Krishna Merla954a73d2013-10-30 03:26:38 +00001219
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001220 flush_workqueue(kmpath_handlerd);
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001221 multipath_wait_for_pg_init_completion(m);
Alasdair G Kergona044d012005-07-12 15:53:02 -07001222 flush_workqueue(kmultipathd);
Tejun Heo43829732012-08-20 14:51:24 -07001223 flush_work(&m->trigger_event);
Shiva Krishna Merla954a73d2013-10-30 03:26:38 +00001224
Mike Snitzer518257b2016-03-17 16:32:10 -04001225 clear_bit(MPATHF_PG_INIT_DISABLED, &m->flags);
1226 smp_mb__after_atomic();
Kiyoshi Ueda6df400a2009-12-10 23:52:19 +00001227}
1228
1229static void multipath_dtr(struct dm_target *ti)
1230{
1231 struct multipath *m = ti->private;
1232
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001233 flush_multipath_work(m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 free_multipath(m);
1235}
1236
1237/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 * Take a path out of use.
1239 */
1240static int fail_path(struct pgpath *pgpath)
1241{
1242 unsigned long flags;
1243 struct multipath *m = pgpath->pg->m;
1244
1245 spin_lock_irqsave(&m->lock, flags);
1246
Kiyoshi Ueda66800732008-10-10 13:36:58 +01001247 if (!pgpath->is_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 goto out;
1249
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001250 DMWARN("Failing path %s.", pgpath->path.dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
1252 pgpath->pg->ps.type->fail_path(&pgpath->pg->ps, &pgpath->path);
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001253 pgpath->is_active = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 pgpath->fail_count++;
1255
Mike Snitzer91e968a2016-03-17 17:10:15 -04001256 atomic_dec(&m->nr_valid_paths);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
1258 if (pgpath == m->current_pgpath)
1259 m->current_pgpath = NULL;
1260
Mike Andersonb15546f2007-10-19 22:48:02 +01001261 dm_path_uevent(DM_UEVENT_PATH_FAILED, m->ti,
Mike Snitzer91e968a2016-03-17 17:10:15 -04001262 pgpath->path.dev->name, atomic_read(&m->nr_valid_paths));
Mike Andersonb15546f2007-10-19 22:48:02 +01001263
Alasdair G Kergonfe9cf302009-01-06 03:05:13 +00001264 schedule_work(&m->trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
1266out:
1267 spin_unlock_irqrestore(&m->lock, flags);
1268
1269 return 0;
1270}
1271
1272/*
1273 * Reinstate a previously-failed path
1274 */
1275static int reinstate_path(struct pgpath *pgpath)
1276{
Hannes Reinecke63d832c2014-05-26 14:45:39 +02001277 int r = 0, run_queue = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 unsigned long flags;
1279 struct multipath *m = pgpath->pg->m;
Mike Snitzer91e968a2016-03-17 17:10:15 -04001280 unsigned nr_valid_paths;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
1282 spin_lock_irqsave(&m->lock, flags);
1283
Kiyoshi Ueda66800732008-10-10 13:36:58 +01001284 if (pgpath->is_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 goto out;
1286
Mike Snitzerec31f3f2016-02-20 12:49:43 -05001287 DMWARN("Reinstating path %s.", pgpath->path.dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
1289 r = pgpath->pg->ps.type->reinstate_path(&pgpath->pg->ps, &pgpath->path);
1290 if (r)
1291 goto out;
1292
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001293 pgpath->is_active = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
Mike Snitzer91e968a2016-03-17 17:10:15 -04001295 nr_valid_paths = atomic_inc_return(&m->nr_valid_paths);
1296 if (nr_valid_paths == 1) {
Chandra Seetharamane54f77d2009-06-22 10:12:12 +01001297 m->current_pgpath = NULL;
Hannes Reinecke63d832c2014-05-26 14:45:39 +02001298 run_queue = 1;
Chandra Seetharamane54f77d2009-06-22 10:12:12 +01001299 } else if (m->hw_handler_name && (m->current_pg == pgpath->pg)) {
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +00001300 if (queue_work(kmpath_handlerd, &pgpath->activate_path.work))
Mike Snitzer91e968a2016-03-17 17:10:15 -04001301 atomic_inc(&m->pg_init_in_progress);
Chandra Seetharamane54f77d2009-06-22 10:12:12 +01001302 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
Mike Andersonb15546f2007-10-19 22:48:02 +01001304 dm_path_uevent(DM_UEVENT_PATH_REINSTATED, m->ti,
Mike Snitzer91e968a2016-03-17 17:10:15 -04001305 pgpath->path.dev->name, nr_valid_paths);
Mike Andersonb15546f2007-10-19 22:48:02 +01001306
Alasdair G Kergonfe9cf302009-01-06 03:05:13 +00001307 schedule_work(&m->trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
1309out:
1310 spin_unlock_irqrestore(&m->lock, flags);
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001311 if (run_queue) {
Hannes Reinecke63d832c2014-05-26 14:45:39 +02001312 dm_table_run_md_queue_async(m->ti->table);
Mike Snitzer7e48c762016-09-14 10:47:03 -04001313 process_queued_io_list(m);
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001314 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
1316 return r;
1317}
1318
1319/*
1320 * Fail or reinstate all paths that match the provided struct dm_dev.
1321 */
1322static int action_dev(struct multipath *m, struct dm_dev *dev,
1323 action_fn action)
1324{
Mike Snitzer19040c02011-03-24 13:54:31 +00001325 int r = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 struct pgpath *pgpath;
1327 struct priority_group *pg;
1328
1329 list_for_each_entry(pg, &m->priority_groups, list) {
1330 list_for_each_entry(pgpath, &pg->pgpaths, list) {
1331 if (pgpath->path.dev == dev)
1332 r = action(pgpath);
1333 }
1334 }
1335
1336 return r;
1337}
1338
1339/*
1340 * Temporarily try to avoid having to use the specified PG
1341 */
1342static void bypass_pg(struct multipath *m, struct priority_group *pg,
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001343 bool bypassed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344{
1345 unsigned long flags;
1346
1347 spin_lock_irqsave(&m->lock, flags);
1348
1349 pg->bypassed = bypassed;
1350 m->current_pgpath = NULL;
1351 m->current_pg = NULL;
1352
1353 spin_unlock_irqrestore(&m->lock, flags);
1354
Alasdair G Kergonfe9cf302009-01-06 03:05:13 +00001355 schedule_work(&m->trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356}
1357
1358/*
1359 * Switch to using the specified PG from the next I/O that gets mapped
1360 */
1361static int switch_pg_num(struct multipath *m, const char *pgstr)
1362{
1363 struct priority_group *pg;
1364 unsigned pgnum;
1365 unsigned long flags;
Mikulas Patocka31998ef2012-03-28 18:41:26 +01001366 char dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
Mikulas Patocka31998ef2012-03-28 18:41:26 +01001368 if (!pgstr || (sscanf(pgstr, "%u%c", &pgnum, &dummy) != 1) || !pgnum ||
tang.junhuicc5bd922016-11-04 12:37:09 +08001369 !m->nr_priority_groups || (pgnum > m->nr_priority_groups)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 DMWARN("invalid PG number supplied to switch_pg_num");
1371 return -EINVAL;
1372 }
1373
1374 spin_lock_irqsave(&m->lock, flags);
1375 list_for_each_entry(pg, &m->priority_groups, list) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001376 pg->bypassed = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 if (--pgnum)
1378 continue;
1379
1380 m->current_pgpath = NULL;
1381 m->current_pg = NULL;
1382 m->next_pg = pg;
1383 }
1384 spin_unlock_irqrestore(&m->lock, flags);
1385
Alasdair G Kergonfe9cf302009-01-06 03:05:13 +00001386 schedule_work(&m->trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 return 0;
1388}
1389
1390/*
1391 * Set/clear bypassed status of a PG.
1392 * PGs are numbered upwards from 1 in the order they were declared.
1393 */
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001394static int bypass_pg_num(struct multipath *m, const char *pgstr, bool bypassed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395{
1396 struct priority_group *pg;
1397 unsigned pgnum;
Mikulas Patocka31998ef2012-03-28 18:41:26 +01001398 char dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
Mikulas Patocka31998ef2012-03-28 18:41:26 +01001400 if (!pgstr || (sscanf(pgstr, "%u%c", &pgnum, &dummy) != 1) || !pgnum ||
tang.junhuicc5bd922016-11-04 12:37:09 +08001401 !m->nr_priority_groups || (pgnum > m->nr_priority_groups)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 DMWARN("invalid PG number supplied to bypass_pg");
1403 return -EINVAL;
1404 }
1405
1406 list_for_each_entry(pg, &m->priority_groups, list) {
1407 if (!--pgnum)
1408 break;
1409 }
1410
1411 bypass_pg(m, pg, bypassed);
1412 return 0;
1413}
1414
1415/*
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001416 * Should we retry pg_init immediately?
1417 */
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001418static bool pg_init_limit_reached(struct multipath *m, struct pgpath *pgpath)
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001419{
1420 unsigned long flags;
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001421 bool limit_reached = false;
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001422
1423 spin_lock_irqsave(&m->lock, flags);
1424
Mike Snitzer91e968a2016-03-17 17:10:15 -04001425 if (atomic_read(&m->pg_init_count) <= m->pg_init_retries &&
1426 !test_bit(MPATHF_PG_INIT_DISABLED, &m->flags))
Mike Snitzer518257b2016-03-17 16:32:10 -04001427 set_bit(MPATHF_PG_INIT_REQUIRED, &m->flags);
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001428 else
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001429 limit_reached = true;
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001430
1431 spin_unlock_irqrestore(&m->lock, flags);
1432
1433 return limit_reached;
1434}
1435
Chandra Seetharaman3ae31f62009-10-21 09:22:46 -07001436static void pg_init_done(void *data, int errors)
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001437{
Moger, Babu83c0d5d2010-03-06 02:29:45 +00001438 struct pgpath *pgpath = data;
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001439 struct priority_group *pg = pgpath->pg;
1440 struct multipath *m = pg->m;
1441 unsigned long flags;
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001442 bool delay_retry = false;
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001443
1444 /* device or driver problems */
1445 switch (errors) {
1446 case SCSI_DH_OK:
1447 break;
1448 case SCSI_DH_NOSYS:
1449 if (!m->hw_handler_name) {
1450 errors = 0;
1451 break;
1452 }
Moger, Babuf7b934c2010-03-06 02:29:49 +00001453 DMERR("Could not failover the device: Handler scsi_dh_%s "
1454 "Error %d.", m->hw_handler_name, errors);
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001455 /*
1456 * Fail path for now, so we do not ping pong
1457 */
1458 fail_path(pgpath);
1459 break;
1460 case SCSI_DH_DEV_TEMP_BUSY:
1461 /*
1462 * Probably doing something like FW upgrade on the
1463 * controller so try the other pg.
1464 */
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001465 bypass_pg(m, pg, true);
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001466 break;
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001467 case SCSI_DH_RETRY:
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +00001468 /* Wait before retrying. */
1469 delay_retry = 1;
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001470 case SCSI_DH_IMM_RETRY:
1471 case SCSI_DH_RES_TEMP_UNAVAIL:
1472 if (pg_init_limit_reached(m, pgpath))
1473 fail_path(pgpath);
1474 errors = 0;
1475 break;
Mike Snitzerec31f3f2016-02-20 12:49:43 -05001476 case SCSI_DH_DEV_OFFLINED:
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001477 default:
1478 /*
1479 * We probably do not want to fail the path for a device
1480 * error, but this is what the old dm did. In future
1481 * patches we can do more advanced handling.
1482 */
1483 fail_path(pgpath);
1484 }
1485
1486 spin_lock_irqsave(&m->lock, flags);
1487 if (errors) {
Chandra Seetharamane54f77d2009-06-22 10:12:12 +01001488 if (pgpath == m->current_pgpath) {
1489 DMERR("Could not failover device. Error %d.", errors);
1490 m->current_pgpath = NULL;
1491 m->current_pg = NULL;
1492 }
Mike Snitzer518257b2016-03-17 16:32:10 -04001493 } else if (!test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags))
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001494 pg->bypassed = false;
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001495
Mike Snitzer91e968a2016-03-17 17:10:15 -04001496 if (atomic_dec_return(&m->pg_init_in_progress) > 0)
Kiyoshi Uedad0259bf2010-03-06 02:30:02 +00001497 /* Activations of other paths are still on going */
1498 goto out;
1499
Mike Snitzer518257b2016-03-17 16:32:10 -04001500 if (test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags)) {
1501 if (delay_retry)
1502 set_bit(MPATHF_PG_INIT_DELAY_RETRY, &m->flags);
1503 else
1504 clear_bit(MPATHF_PG_INIT_DELAY_RETRY, &m->flags);
1505
Hannes Reinecke3e9f1be2014-02-28 15:33:45 +01001506 if (__pg_init_all_paths(m))
1507 goto out;
1508 }
Mike Snitzer518257b2016-03-17 16:32:10 -04001509 clear_bit(MPATHF_QUEUE_IO, &m->flags);
Kiyoshi Uedad0259bf2010-03-06 02:30:02 +00001510
Mike Snitzer7e48c762016-09-14 10:47:03 -04001511 process_queued_io_list(m);
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001512
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001513 /*
1514 * Wake up any thread waiting to suspend.
1515 */
1516 wake_up(&m->pg_init_wait);
1517
Kiyoshi Uedad0259bf2010-03-06 02:30:02 +00001518out:
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001519 spin_unlock_irqrestore(&m->lock, flags);
1520}
1521
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001522static void activate_path(struct work_struct *work)
1523{
Chandra Seetharamane54f77d2009-06-22 10:12:12 +01001524 struct pgpath *pgpath =
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +00001525 container_of(work, struct pgpath, activate_path.work);
Mike Snitzerf10e06b2016-09-01 12:06:37 -04001526 struct request_queue *q = bdev_get_queue(pgpath->path.dev->bdev);
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001527
Mike Snitzerf10e06b2016-09-01 12:06:37 -04001528 if (pgpath->is_active && !blk_queue_dying(q))
1529 scsi_dh_activate(q, pg_init_done, pgpath);
Hannes Reinecke3a017502014-02-28 15:33:49 +01001530 else
1531 pg_init_done(pgpath, SCSI_DH_DEV_OFFLINED);
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001532}
1533
Hannes Reinecke7e782af2013-07-01 15:16:26 +02001534static int noretry_error(int error)
1535{
1536 switch (error) {
Hannes Reinecke8ff232c2015-07-15 13:23:24 +02001537 case -EBADE:
1538 /*
1539 * EBADE signals an reservation conflict.
1540 * We shouldn't fail the path here as we can communicate with
1541 * the target. We should failover to the next path, but in
1542 * doing so we might be causing a ping-pong between paths.
1543 * So just return the reservation conflict error.
1544 */
Hannes Reinecke7e782af2013-07-01 15:16:26 +02001545 case -EOPNOTSUPP:
1546 case -EREMOTEIO:
1547 case -EILSEQ:
1548 case -ENODATA:
Jun'ichi Nomuracc9d3c32013-09-13 14:54:30 +09001549 case -ENOSPC:
Hannes Reinecke7e782af2013-07-01 15:16:26 +02001550 return 1;
1551 }
1552
1553 /* Anything else could be a path failure, so should be retried */
1554 return 0;
1555}
1556
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557/*
1558 * end_io handling
1559 */
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001560static int do_end_io(struct multipath *m, struct request *clone,
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001561 int error, struct dm_mpath_io *mpio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562{
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001563 /*
1564 * We don't queue any clone request inside the multipath target
1565 * during end I/O handling, since those clone requests don't have
1566 * bio clones. If we queue them inside the multipath target,
1567 * we need to make bio clones, that requires memory allocation.
Mike Snitzer4cc96132016-05-12 16:28:10 -04001568 * (See drivers/md/dm-rq.c:end_clone_bio() about why the clone requests
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001569 * don't have bio clones.)
1570 * Instead of queueing the clone request here, we queue the original
1571 * request into dm core, which will remake a clone request and
1572 * clone bios for it and resubmit it later.
1573 */
1574 int r = DM_ENDIO_REQUEUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001576 if (!error && !clone->errors)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 return 0; /* I/O complete */
1578
Mike Snitzer7eee4ae2014-06-02 15:50:06 -04001579 if (noretry_error(error))
Mike Snitzer959eb4e2010-08-12 04:14:32 +01001580 return error;
1581
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001582 if (mpio->pgpath)
1583 fail_path(mpio->pgpath);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584
Mike Snitzer91e968a2016-03-17 17:10:15 -04001585 if (!atomic_read(&m->nr_valid_paths)) {
Mike Snitzer518257b2016-03-17 16:32:10 -04001586 if (!test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags)) {
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001587 if (!must_push_back_rq(m))
Hannes Reinecke751b2a72011-01-18 10:13:12 +01001588 r = -EIO;
Hannes Reinecke751b2a72011-01-18 10:13:12 +01001589 }
1590 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001592 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593}
1594
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001595static int multipath_end_io(struct dm_target *ti, struct request *clone,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 int error, union map_info *map_context)
1597{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001598 struct multipath *m = ti->private;
Mike Snitzer2eff1922016-02-03 09:13:14 -05001599 struct dm_mpath_io *mpio = get_mpio(map_context);
Wei Yongjuna71a2612012-10-12 16:59:42 +01001600 struct pgpath *pgpath;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 struct path_selector *ps;
1602 int r;
1603
Jun'ichi Nomura466891f2012-03-28 18:41:25 +01001604 BUG_ON(!mpio);
1605
Mike Snitzer2eff1922016-02-03 09:13:14 -05001606 r = do_end_io(m, clone, error, mpio);
Wei Yongjuna71a2612012-10-12 16:59:42 +01001607 pgpath = mpio->pgpath;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 if (pgpath) {
1609 ps = &pgpath->pg->ps;
1610 if (ps->type->end_io)
Kiyoshi Ueda02ab8232009-06-22 10:12:27 +01001611 ps->type->end_io(ps, &pgpath->path, mpio->nr_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 }
Mike Snitzer2eff1922016-02-03 09:13:14 -05001613 clear_request_fn_mpio(m, map_context);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614
1615 return r;
1616}
1617
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001618static int do_end_io_bio(struct multipath *m, struct bio *clone,
1619 int error, struct dm_mpath_io *mpio)
1620{
1621 unsigned long flags;
1622
1623 if (!error)
1624 return 0; /* I/O complete */
1625
1626 if (noretry_error(error))
1627 return error;
1628
1629 if (mpio->pgpath)
1630 fail_path(mpio->pgpath);
1631
1632 if (!atomic_read(&m->nr_valid_paths)) {
1633 if (!test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags)) {
1634 if (!must_push_back_bio(m))
1635 return -EIO;
1636 return DM_ENDIO_REQUEUE;
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001637 }
1638 }
1639
1640 /* Queue for the daemon to resubmit */
Mike Snitzerbf661be2016-05-24 15:48:08 -04001641 dm_bio_restore(get_bio_details_from_bio(clone), clone);
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001642
1643 spin_lock_irqsave(&m->lock, flags);
1644 bio_list_add(&m->queued_bios, clone);
1645 spin_unlock_irqrestore(&m->lock, flags);
1646 if (!test_bit(MPATHF_QUEUE_IO, &m->flags))
1647 queue_work(kmultipathd, &m->process_queued_bios);
1648
1649 return DM_ENDIO_INCOMPLETE;
1650}
1651
1652static int multipath_end_io_bio(struct dm_target *ti, struct bio *clone, int error)
1653{
1654 struct multipath *m = ti->private;
1655 struct dm_mpath_io *mpio = get_mpio_from_bio(clone);
1656 struct pgpath *pgpath;
1657 struct path_selector *ps;
1658 int r;
1659
1660 BUG_ON(!mpio);
1661
1662 r = do_end_io_bio(m, clone, error, mpio);
1663 pgpath = mpio->pgpath;
1664 if (pgpath) {
1665 ps = &pgpath->pg->ps;
1666 if (ps->type->end_io)
1667 ps->type->end_io(ps, &pgpath->path, mpio->nr_bytes);
1668 }
1669
1670 return r;
1671}
1672
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673/*
1674 * Suspend can't complete until all the I/O is processed so if
Alasdair G Kergon436d4102005-07-12 15:53:03 -07001675 * the last path fails we must error any remaining I/O.
1676 * Note that if the freeze_bdev fails while suspending, the
1677 * queue_if_no_path state is lost - userspace should reset it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 */
1679static void multipath_presuspend(struct dm_target *ti)
1680{
Mike Snitzer7943bd62016-02-02 21:53:15 -05001681 struct multipath *m = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001683 queue_if_no_path(m, false, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684}
1685
Kiyoshi Ueda6df400a2009-12-10 23:52:19 +00001686static void multipath_postsuspend(struct dm_target *ti)
1687{
Mike Anderson6380f262009-12-10 23:52:21 +00001688 struct multipath *m = ti->private;
1689
1690 mutex_lock(&m->work_mutex);
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001691 flush_multipath_work(m);
Mike Anderson6380f262009-12-10 23:52:21 +00001692 mutex_unlock(&m->work_mutex);
Kiyoshi Ueda6df400a2009-12-10 23:52:19 +00001693}
1694
Alasdair G Kergon436d4102005-07-12 15:53:03 -07001695/*
1696 * Restore the queue_if_no_path setting.
1697 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698static void multipath_resume(struct dm_target *ti)
1699{
Mike Snitzer7943bd62016-02-02 21:53:15 -05001700 struct multipath *m = ti->private;
Mike Snitzer1814f2e2016-07-25 21:08:51 -04001701 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702
Mike Snitzer1814f2e2016-07-25 21:08:51 -04001703 spin_lock_irqsave(&m->lock, flags);
Mike Snitzer518257b2016-03-17 16:32:10 -04001704 if (test_bit(MPATHF_SAVED_QUEUE_IF_NO_PATH, &m->flags))
1705 set_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags);
1706 else
1707 clear_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags);
Mike Snitzer1814f2e2016-07-25 21:08:51 -04001708 spin_unlock_irqrestore(&m->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709}
1710
1711/*
1712 * Info output has the following format:
1713 * num_multipath_feature_args [multipath_feature_args]*
1714 * num_handler_status_args [handler_status_args]*
1715 * num_groups init_group_number
1716 * [A|D|E num_ps_status_args [ps_status_args]*
1717 * num_paths num_selector_args
1718 * [path_dev A|F fail_count [selector_args]* ]+ ]+
1719 *
1720 * Table output has the following format (identical to the constructor string):
1721 * num_feature_args [features_args]*
1722 * num_handler_args hw_handler [hw_handler_args]*
1723 * num_groups init_group_number
1724 * [priority selector-name num_ps_args [ps_args]*
1725 * num_paths num_selector_args [path_dev [selector_args]* ]+ ]+
1726 */
Mikulas Patockafd7c0922013-03-01 22:45:44 +00001727static void multipath_status(struct dm_target *ti, status_type_t type,
1728 unsigned status_flags, char *result, unsigned maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729{
1730 int sz = 0;
1731 unsigned long flags;
Mike Snitzer7943bd62016-02-02 21:53:15 -05001732 struct multipath *m = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 struct priority_group *pg;
1734 struct pgpath *p;
1735 unsigned pg_num;
1736 char state;
1737
1738 spin_lock_irqsave(&m->lock, flags);
1739
1740 /* Features */
1741 if (type == STATUSTYPE_INFO)
Mike Snitzer91e968a2016-03-17 17:10:15 -04001742 DMEMIT("2 %u %u ", test_bit(MPATHF_QUEUE_IO, &m->flags),
1743 atomic_read(&m->pg_init_count));
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001744 else {
Mike Snitzer518257b2016-03-17 16:32:10 -04001745 DMEMIT("%u ", test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags) +
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +00001746 (m->pg_init_retries > 0) * 2 +
Mike Snitzera58a9352012-07-27 15:08:04 +01001747 (m->pg_init_delay_msecs != DM_PG_INIT_DELAY_DEFAULT) * 2 +
Mike Snitzere83068a2016-05-24 21:16:51 -04001748 test_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags) +
1749 (m->queue_mode != DM_TYPE_REQUEST_BASED) * 2);
1750
Mike Snitzer518257b2016-03-17 16:32:10 -04001751 if (test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001752 DMEMIT("queue_if_no_path ");
1753 if (m->pg_init_retries)
1754 DMEMIT("pg_init_retries %u ", m->pg_init_retries);
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +00001755 if (m->pg_init_delay_msecs != DM_PG_INIT_DELAY_DEFAULT)
1756 DMEMIT("pg_init_delay_msecs %u ", m->pg_init_delay_msecs);
Mike Snitzer518257b2016-03-17 16:32:10 -04001757 if (test_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags))
Mike Snitzera58a9352012-07-27 15:08:04 +01001758 DMEMIT("retain_attached_hw_handler ");
Mike Snitzere83068a2016-05-24 21:16:51 -04001759 if (m->queue_mode != DM_TYPE_REQUEST_BASED) {
1760 switch(m->queue_mode) {
1761 case DM_TYPE_BIO_BASED:
1762 DMEMIT("queue_mode bio ");
1763 break;
1764 case DM_TYPE_MQ_REQUEST_BASED:
1765 DMEMIT("queue_mode mq ");
1766 break;
1767 }
1768 }
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001769 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001771 if (!m->hw_handler_name || type == STATUSTYPE_INFO)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 DMEMIT("0 ");
1773 else
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001774 DMEMIT("1 %s ", m->hw_handler_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775
1776 DMEMIT("%u ", m->nr_priority_groups);
1777
1778 if (m->next_pg)
1779 pg_num = m->next_pg->pg_num;
1780 else if (m->current_pg)
1781 pg_num = m->current_pg->pg_num;
1782 else
Mike Snitzera490a072011-03-24 13:54:33 +00001783 pg_num = (m->nr_priority_groups ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784
1785 DMEMIT("%u ", pg_num);
1786
1787 switch (type) {
1788 case STATUSTYPE_INFO:
1789 list_for_each_entry(pg, &m->priority_groups, list) {
1790 if (pg->bypassed)
1791 state = 'D'; /* Disabled */
1792 else if (pg == m->current_pg)
1793 state = 'A'; /* Currently Active */
1794 else
1795 state = 'E'; /* Enabled */
1796
1797 DMEMIT("%c ", state);
1798
1799 if (pg->ps.type->status)
1800 sz += pg->ps.type->status(&pg->ps, NULL, type,
1801 result + sz,
1802 maxlen - sz);
1803 else
1804 DMEMIT("0 ");
1805
1806 DMEMIT("%u %u ", pg->nr_pgpaths,
1807 pg->ps.type->info_args);
1808
1809 list_for_each_entry(p, &pg->pgpaths, list) {
1810 DMEMIT("%s %s %u ", p->path.dev->name,
Kiyoshi Ueda66800732008-10-10 13:36:58 +01001811 p->is_active ? "A" : "F",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 p->fail_count);
1813 if (pg->ps.type->status)
1814 sz += pg->ps.type->status(&pg->ps,
1815 &p->path, type, result + sz,
1816 maxlen - sz);
1817 }
1818 }
1819 break;
1820
1821 case STATUSTYPE_TABLE:
1822 list_for_each_entry(pg, &m->priority_groups, list) {
1823 DMEMIT("%s ", pg->ps.type->name);
1824
1825 if (pg->ps.type->status)
1826 sz += pg->ps.type->status(&pg->ps, NULL, type,
1827 result + sz,
1828 maxlen - sz);
1829 else
1830 DMEMIT("0 ");
1831
1832 DMEMIT("%u %u ", pg->nr_pgpaths,
1833 pg->ps.type->table_args);
1834
1835 list_for_each_entry(p, &pg->pgpaths, list) {
1836 DMEMIT("%s ", p->path.dev->name);
1837 if (pg->ps.type->status)
1838 sz += pg->ps.type->status(&pg->ps,
1839 &p->path, type, result + sz,
1840 maxlen - sz);
1841 }
1842 }
1843 break;
1844 }
1845
1846 spin_unlock_irqrestore(&m->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847}
1848
1849static int multipath_message(struct dm_target *ti, unsigned argc, char **argv)
1850{
Mike Anderson6380f262009-12-10 23:52:21 +00001851 int r = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 struct dm_dev *dev;
Mike Snitzer7943bd62016-02-02 21:53:15 -05001853 struct multipath *m = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 action_fn action;
1855
Mike Anderson6380f262009-12-10 23:52:21 +00001856 mutex_lock(&m->work_mutex);
1857
Kiyoshi Uedac2f3d242009-12-10 23:52:27 +00001858 if (dm_suspended(ti)) {
1859 r = -EBUSY;
1860 goto out;
1861 }
1862
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 if (argc == 1) {
Mike Snitzer498f0102011-08-02 12:32:04 +01001864 if (!strcasecmp(argv[0], "queue_if_no_path")) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001865 r = queue_if_no_path(m, true, false);
Mike Anderson6380f262009-12-10 23:52:21 +00001866 goto out;
Mike Snitzer498f0102011-08-02 12:32:04 +01001867 } else if (!strcasecmp(argv[0], "fail_if_no_path")) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001868 r = queue_if_no_path(m, false, false);
Mike Anderson6380f262009-12-10 23:52:21 +00001869 goto out;
1870 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 }
1872
Mike Anderson6380f262009-12-10 23:52:21 +00001873 if (argc != 2) {
Jose Castilloa356e422014-01-29 17:52:45 +01001874 DMWARN("Invalid multipath message arguments. Expected 2 arguments, got %d.", argc);
Mike Anderson6380f262009-12-10 23:52:21 +00001875 goto out;
1876 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
Mike Snitzer498f0102011-08-02 12:32:04 +01001878 if (!strcasecmp(argv[0], "disable_group")) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001879 r = bypass_pg_num(m, argv[1], true);
Mike Anderson6380f262009-12-10 23:52:21 +00001880 goto out;
Mike Snitzer498f0102011-08-02 12:32:04 +01001881 } else if (!strcasecmp(argv[0], "enable_group")) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001882 r = bypass_pg_num(m, argv[1], false);
Mike Anderson6380f262009-12-10 23:52:21 +00001883 goto out;
Mike Snitzer498f0102011-08-02 12:32:04 +01001884 } else if (!strcasecmp(argv[0], "switch_group")) {
Mike Anderson6380f262009-12-10 23:52:21 +00001885 r = switch_pg_num(m, argv[1]);
1886 goto out;
Mike Snitzer498f0102011-08-02 12:32:04 +01001887 } else if (!strcasecmp(argv[0], "reinstate_path"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 action = reinstate_path;
Mike Snitzer498f0102011-08-02 12:32:04 +01001889 else if (!strcasecmp(argv[0], "fail_path"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 action = fail_path;
Mike Anderson6380f262009-12-10 23:52:21 +00001891 else {
Jose Castilloa356e422014-01-29 17:52:45 +01001892 DMWARN("Unrecognised multipath message received: %s", argv[0]);
Mike Anderson6380f262009-12-10 23:52:21 +00001893 goto out;
1894 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895
Nikanth Karthikesan8215d6e2010-03-06 02:32:27 +00001896 r = dm_get_device(ti, argv[1], dm_table_get_mode(ti->table), &dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 if (r) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001898 DMWARN("message: error getting device %s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 argv[1]);
Mike Anderson6380f262009-12-10 23:52:21 +00001900 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 }
1902
1903 r = action_dev(m, dev, action);
1904
1905 dm_put_device(ti, dev);
1906
Mike Anderson6380f262009-12-10 23:52:21 +00001907out:
1908 mutex_unlock(&m->work_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910}
1911
Christoph Hellwige56f81e2015-10-15 14:10:50 +02001912static int multipath_prepare_ioctl(struct dm_target *ti,
1913 struct block_device **bdev, fmode_t *mode)
Milan Broz9af4aa32006-10-03 01:15:20 -07001914{
Mikulas Patocka35991652012-06-03 00:29:58 +01001915 struct multipath *m = ti->private;
Mike Snitzer2da16102016-03-17 18:38:17 -04001916 struct pgpath *current_pgpath;
Mikulas Patocka35991652012-06-03 00:29:58 +01001917 int r;
1918
Mike Snitzer2da16102016-03-17 18:38:17 -04001919 current_pgpath = lockless_dereference(m->current_pgpath);
1920 if (!current_pgpath)
1921 current_pgpath = choose_pgpath(m, 0);
Milan Broz9af4aa32006-10-03 01:15:20 -07001922
Mike Snitzer2da16102016-03-17 18:38:17 -04001923 if (current_pgpath) {
Mike Snitzer518257b2016-03-17 16:32:10 -04001924 if (!test_bit(MPATHF_QUEUE_IO, &m->flags)) {
Mike Snitzer2da16102016-03-17 18:38:17 -04001925 *bdev = current_pgpath->path.dev->bdev;
1926 *mode = current_pgpath->path.dev->mode;
Junichi Nomura43e43c92015-11-17 09:36:56 +00001927 r = 0;
1928 } else {
1929 /* pg_init has not started or completed */
1930 r = -ENOTCONN;
1931 }
1932 } else {
1933 /* No path is available */
Mike Snitzer518257b2016-03-17 16:32:10 -04001934 if (test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))
Junichi Nomura43e43c92015-11-17 09:36:56 +00001935 r = -ENOTCONN;
1936 else
1937 r = -EIO;
Milan Broze90dae12006-10-03 01:15:22 -07001938 }
Milan Broz9af4aa32006-10-03 01:15:20 -07001939
Junichi Nomura5bbbfdf2015-11-17 09:39:26 +00001940 if (r == -ENOTCONN) {
Mike Snitzer2da16102016-03-17 18:38:17 -04001941 if (!lockless_dereference(m->current_pg)) {
Hannes Reinecke3e9f1be2014-02-28 15:33:45 +01001942 /* Path status changed, redo selection */
Mike Snitzer2da16102016-03-17 18:38:17 -04001943 (void) choose_pgpath(m, 0);
Hannes Reinecke3e9f1be2014-02-28 15:33:45 +01001944 }
Mike Snitzer518257b2016-03-17 16:32:10 -04001945 if (test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags))
Mike Snitzer2da16102016-03-17 18:38:17 -04001946 pg_init_all_paths(m);
Hannes Reinecke63d832c2014-05-26 14:45:39 +02001947 dm_table_run_md_queue_async(m->ti->table);
Mike Snitzer7e48c762016-09-14 10:47:03 -04001948 process_queued_io_list(m);
Hannes Reinecke3e9f1be2014-02-28 15:33:45 +01001949 }
Mikulas Patocka35991652012-06-03 00:29:58 +01001950
Christoph Hellwige56f81e2015-10-15 14:10:50 +02001951 /*
1952 * Only pass ioctls through if the device sizes match exactly.
1953 */
1954 if (!r && ti->len != i_size_read((*bdev)->bd_inode) >> SECTOR_SHIFT)
1955 return 1;
1956 return r;
Milan Broz9af4aa32006-10-03 01:15:20 -07001957}
1958
Mike Snitzeraf4874e2009-06-22 10:12:33 +01001959static int multipath_iterate_devices(struct dm_target *ti,
1960 iterate_devices_callout_fn fn, void *data)
1961{
1962 struct multipath *m = ti->private;
1963 struct priority_group *pg;
1964 struct pgpath *p;
1965 int ret = 0;
1966
1967 list_for_each_entry(pg, &m->priority_groups, list) {
1968 list_for_each_entry(p, &pg->pgpaths, list) {
Mike Snitzer5dea2712009-07-23 20:30:42 +01001969 ret = fn(ti, p->path.dev, ti->begin, ti->len, data);
Mike Snitzeraf4874e2009-06-22 10:12:33 +01001970 if (ret)
1971 goto out;
1972 }
1973 }
1974
1975out:
1976 return ret;
1977}
1978
Mike Snitzer9f54cec2016-02-11 21:42:28 -05001979static int pgpath_busy(struct pgpath *pgpath)
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001980{
1981 struct request_queue *q = bdev_get_queue(pgpath->path.dev->bdev);
1982
Mike Snitzer52b09912015-02-23 16:36:41 -05001983 return blk_lld_busy(q);
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001984}
1985
1986/*
1987 * We return "busy", only when we can map I/Os but underlying devices
1988 * are busy (so even if we map I/Os now, the I/Os will wait on
1989 * the underlying queue).
1990 * In other words, if we want to kill I/Os or queue them inside us
1991 * due to map unavailability, we don't return "busy". Otherwise,
1992 * dm core won't give us the I/Os and we can't do what we want.
1993 */
1994static int multipath_busy(struct dm_target *ti)
1995{
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001996 bool busy = false, has_active = false;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001997 struct multipath *m = ti->private;
Mike Snitzer2da16102016-03-17 18:38:17 -04001998 struct priority_group *pg, *next_pg;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001999 struct pgpath *pgpath;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01002000
Mike Snitzerb88efd42016-09-09 19:26:19 -04002001 /* pg_init in progress */
2002 if (atomic_read(&m->pg_init_in_progress))
Mike Snitzer2da16102016-03-17 18:38:17 -04002003 return true;
2004
Mike Snitzerb88efd42016-09-09 19:26:19 -04002005 /* no paths available, for blk-mq: rely on IO mapping to delay requeue */
2006 if (!atomic_read(&m->nr_valid_paths) && test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))
2007 return (m->queue_mode != DM_TYPE_MQ_REQUEST_BASED);
2008
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01002009 /* Guess which priority_group will be used at next mapping time */
Mike Snitzer2da16102016-03-17 18:38:17 -04002010 pg = lockless_dereference(m->current_pg);
2011 next_pg = lockless_dereference(m->next_pg);
2012 if (unlikely(!lockless_dereference(m->current_pgpath) && next_pg))
2013 pg = next_pg;
2014
2015 if (!pg) {
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01002016 /*
2017 * We don't know which pg will be used at next mapping time.
Mike Snitzer2da16102016-03-17 18:38:17 -04002018 * We don't call choose_pgpath() here to avoid to trigger
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01002019 * pg_init just by busy checking.
2020 * So we don't know whether underlying devices we will be using
2021 * at next mapping time are busy or not. Just try mapping.
2022 */
Mike Snitzer2da16102016-03-17 18:38:17 -04002023 return busy;
2024 }
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01002025
2026 /*
2027 * If there is one non-busy active path at least, the path selector
2028 * will be able to select it. So we consider such a pg as not busy.
2029 */
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05002030 busy = true;
Mike Snitzer2da16102016-03-17 18:38:17 -04002031 list_for_each_entry(pgpath, &pg->pgpaths, list) {
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01002032 if (pgpath->is_active) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05002033 has_active = true;
Mike Snitzer9f54cec2016-02-11 21:42:28 -05002034 if (!pgpath_busy(pgpath)) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05002035 busy = false;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01002036 break;
2037 }
2038 }
Mike Snitzer2da16102016-03-17 18:38:17 -04002039 }
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01002040
Mike Snitzer2da16102016-03-17 18:38:17 -04002041 if (!has_active) {
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01002042 /*
2043 * No active path in this pg, so this pg won't be used and
2044 * the current_pg will be changed at next mapping time.
2045 * We need to try mapping to determine it.
2046 */
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05002047 busy = false;
Mike Snitzer2da16102016-03-17 18:38:17 -04002048 }
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01002049
2050 return busy;
2051}
2052
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053/*-----------------------------------------------------------------
2054 * Module setup
2055 *---------------------------------------------------------------*/
2056static struct target_type multipath_target = {
2057 .name = "multipath",
Mike Snitzere83068a2016-05-24 21:16:51 -04002058 .version = {1, 12, 0},
Mike Snitzer16f12262016-01-31 17:22:27 -05002059 .features = DM_TARGET_SINGLETON | DM_TARGET_IMMUTABLE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 .module = THIS_MODULE,
2061 .ctr = multipath_ctr,
2062 .dtr = multipath_dtr,
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01002063 .map_rq = multipath_map,
Mike Snitzere5863d92014-12-17 21:08:12 -05002064 .clone_and_map_rq = multipath_clone_and_map,
2065 .release_clone_rq = multipath_release_clone,
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01002066 .rq_end_io = multipath_end_io,
Mike Snitzer76e33fe2016-05-19 16:15:14 -04002067 .map = multipath_map_bio,
2068 .end_io = multipath_end_io_bio,
2069 .presuspend = multipath_presuspend,
2070 .postsuspend = multipath_postsuspend,
2071 .resume = multipath_resume,
2072 .status = multipath_status,
2073 .message = multipath_message,
2074 .prepare_ioctl = multipath_prepare_ioctl,
2075 .iterate_devices = multipath_iterate_devices,
2076 .busy = multipath_busy,
2077};
2078
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079static int __init dm_multipath_init(void)
2080{
2081 int r;
2082
Mike Snitzer76e33fe2016-05-19 16:15:14 -04002083 /* allocate a slab for the dm_mpath_ios */
Alasdair G Kergon028867a2007-07-12 17:26:32 +01002084 _mpio_cache = KMEM_CACHE(dm_mpath_io, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 if (!_mpio_cache)
2086 return -ENOMEM;
2087
2088 r = dm_register_target(&multipath_target);
2089 if (r < 0) {
Mike Snitzer76e33fe2016-05-19 16:15:14 -04002090 DMERR("request-based register failed %d", r);
Johannes Thumshirnff658e92015-01-11 12:45:23 +01002091 r = -EINVAL;
2092 goto bad_register_target;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 }
2094
Tejun Heo4d4d66a2011-01-13 19:59:57 +00002095 kmultipathd = alloc_workqueue("kmpathd", WQ_MEM_RECLAIM, 0);
Alasdair G Kergonc5573082005-05-05 16:16:07 -07002096 if (!kmultipathd) {
Alasdair G Kergon0cd33122007-07-12 17:27:01 +01002097 DMERR("failed to create workqueue kmpathd");
Johannes Thumshirnff658e92015-01-11 12:45:23 +01002098 r = -ENOMEM;
2099 goto bad_alloc_kmultipathd;
Alasdair G Kergonc5573082005-05-05 16:16:07 -07002100 }
2101
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07002102 /*
2103 * A separate workqueue is used to handle the device handlers
2104 * to avoid overloading existing workqueue. Overloading the
2105 * old workqueue would also create a bottleneck in the
2106 * path of the storage hardware device activation.
2107 */
Tejun Heo4d4d66a2011-01-13 19:59:57 +00002108 kmpath_handlerd = alloc_ordered_workqueue("kmpath_handlerd",
2109 WQ_MEM_RECLAIM);
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07002110 if (!kmpath_handlerd) {
2111 DMERR("failed to create workqueue kmpath_handlerd");
Johannes Thumshirnff658e92015-01-11 12:45:23 +01002112 r = -ENOMEM;
2113 goto bad_alloc_kmpath_handlerd;
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07002114 }
2115
Johannes Thumshirnff658e92015-01-11 12:45:23 +01002116 return 0;
2117
2118bad_alloc_kmpath_handlerd:
2119 destroy_workqueue(kmultipathd);
2120bad_alloc_kmultipathd:
2121 dm_unregister_target(&multipath_target);
2122bad_register_target:
2123 kmem_cache_destroy(_mpio_cache);
2124
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 return r;
2126}
2127
2128static void __exit dm_multipath_exit(void)
2129{
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07002130 destroy_workqueue(kmpath_handlerd);
Alasdair G Kergonc5573082005-05-05 16:16:07 -07002131 destroy_workqueue(kmultipathd);
2132
Mikulas Patocka10d3bd02009-01-06 03:04:58 +00002133 dm_unregister_target(&multipath_target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 kmem_cache_destroy(_mpio_cache);
2135}
2136
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137module_init(dm_multipath_init);
2138module_exit(dm_multipath_exit);
2139
2140MODULE_DESCRIPTION(DM_NAME " multipath target");
2141MODULE_AUTHOR("Sistina Software <dm-devel@redhat.com>");
2142MODULE_LICENSE("GPL");