blob: 0caab4bf35155a0e28997dfcf43141cabb4f40e7 [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 /*
853 * Reset hw_handler_name to match the attached handler
854 * and clear any hw_handler_params associated with the
855 * ignored handler.
856 *
857 * NB. This modifies the table line to show the actual
858 * handler instead of the original table passed in.
859 */
860 kfree(m->hw_handler_name);
861 m->hw_handler_name = attached_handler_name;
862
863 kfree(m->hw_handler_params);
864 m->hw_handler_params = NULL;
865 }
866 }
867
868 if (m->hw_handler_name) {
Hannes Reineckea0cf7ea2009-06-22 10:12:11 +0100869 r = scsi_dh_attach(q, m->hw_handler_name);
870 if (r == -EBUSY) {
Christoph Hellwig1bab0de2015-08-27 14:16:54 +0200871 char b[BDEVNAME_SIZE];
Hannes Reineckea0cf7ea2009-06-22 10:12:11 +0100872
Christoph Hellwig1bab0de2015-08-27 14:16:54 +0200873 printk(KERN_INFO "dm-mpath: retaining handler on device %s\n",
874 bdevname(p->path.dev->bdev, b));
875 goto retain;
876 }
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700877 if (r < 0) {
Hannes Reineckea0cf7ea2009-06-22 10:12:11 +0100878 ti->error = "error attaching hardware handler";
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700879 dm_put_device(ti, p->path.dev);
880 goto bad;
881 }
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700882
883 if (m->hw_handler_params) {
884 r = scsi_dh_set_params(q, m->hw_handler_params);
885 if (r < 0) {
886 ti->error = "unable to set hardware "
887 "handler parameters";
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700888 dm_put_device(ti, p->path.dev);
889 goto bad;
890 }
891 }
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700892 }
893
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 r = ps->type->add_path(ps, &p->path, as->argc, as->argv, &ti->error);
895 if (r) {
896 dm_put_device(ti, p->path.dev);
897 goto bad;
898 }
899
900 return p;
901
902 bad:
903 free_pgpath(p);
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100904 return ERR_PTR(r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905}
906
Mike Snitzer498f0102011-08-02 12:32:04 +0100907static struct priority_group *parse_priority_group(struct dm_arg_set *as,
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700908 struct multipath *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909{
Mike Snitzer498f0102011-08-02 12:32:04 +0100910 static struct dm_arg _args[] = {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700911 {1, 1024, "invalid number of paths"},
912 {0, 1024, "invalid number of selector args"}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 };
914
915 int r;
Mike Snitzer498f0102011-08-02 12:32:04 +0100916 unsigned i, nr_selector_args, nr_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 struct priority_group *pg;
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700918 struct dm_target *ti = m->ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
920 if (as->argc < 2) {
921 as->argc = 0;
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100922 ti->error = "not enough priority group arguments";
923 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 }
925
926 pg = alloc_priority_group();
927 if (!pg) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700928 ti->error = "couldn't allocate priority group";
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100929 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 }
931 pg->m = m;
932
933 r = parse_path_selector(as, pg, ti);
934 if (r)
935 goto bad;
936
937 /*
938 * read the paths
939 */
Mike Snitzer498f0102011-08-02 12:32:04 +0100940 r = dm_read_arg(_args, as, &pg->nr_pgpaths, &ti->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 if (r)
942 goto bad;
943
Mike Snitzer498f0102011-08-02 12:32:04 +0100944 r = dm_read_arg(_args + 1, as, &nr_selector_args, &ti->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 if (r)
946 goto bad;
947
Mike Snitzer498f0102011-08-02 12:32:04 +0100948 nr_args = 1 + nr_selector_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 for (i = 0; i < pg->nr_pgpaths; i++) {
950 struct pgpath *pgpath;
Mike Snitzer498f0102011-08-02 12:32:04 +0100951 struct dm_arg_set path_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
Mike Snitzer498f0102011-08-02 12:32:04 +0100953 if (as->argc < nr_args) {
Mikulas Patocka148acff2008-07-21 12:00:30 +0100954 ti->error = "not enough path parameters";
Alasdair G Kergon6bbf79a2010-08-12 04:13:49 +0100955 r = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 goto bad;
Mikulas Patocka148acff2008-07-21 12:00:30 +0100957 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
Mike Snitzer498f0102011-08-02 12:32:04 +0100959 path_args.argc = nr_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 path_args.argv = as->argv;
961
962 pgpath = parse_path(&path_args, &pg->ps, ti);
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100963 if (IS_ERR(pgpath)) {
964 r = PTR_ERR(pgpath);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 goto bad;
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100966 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
968 pgpath->pg = pg;
969 list_add_tail(&pgpath->list, &pg->pgpaths);
Mike Snitzer498f0102011-08-02 12:32:04 +0100970 dm_consume_args(as, nr_args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 }
972
973 return pg;
974
975 bad:
976 free_priority_group(pg, ti);
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100977 return ERR_PTR(r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978}
979
Mike Snitzer498f0102011-08-02 12:32:04 +0100980static int parse_hw_handler(struct dm_arg_set *as, struct multipath *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 unsigned hw_argc;
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700983 int ret;
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700984 struct dm_target *ti = m->ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
Mike Snitzer498f0102011-08-02 12:32:04 +0100986 static struct dm_arg _args[] = {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700987 {0, 1024, "invalid number of hardware handler args"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 };
989
Mike Snitzer498f0102011-08-02 12:32:04 +0100990 if (dm_read_arg_group(_args, as, &hw_argc, &ti->error))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 return -EINVAL;
992
993 if (!hw_argc)
994 return 0;
995
Mike Snitzere83068a2016-05-24 21:16:51 -0400996 if (m->queue_mode == DM_TYPE_BIO_BASED) {
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400997 dm_consume_args(as, hw_argc);
998 DMERR("bio-based multipath doesn't allow hardware handler args");
999 return 0;
1000 }
1001
Mike Snitzer498f0102011-08-02 12:32:04 +01001002 m->hw_handler_name = kstrdup(dm_shift_arg(as), GFP_KERNEL);
tang.junhuif97dc422016-10-28 17:04:46 +08001003 if (!m->hw_handler_name)
1004 return -EINVAL;
Chandra Seetharaman14e98c52008-11-13 23:39:06 +00001005
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -07001006 if (hw_argc > 1) {
1007 char *p;
1008 int i, j, len = 4;
1009
1010 for (i = 0; i <= hw_argc - 2; i++)
1011 len += strlen(as->argv[i]) + 1;
1012 p = m->hw_handler_params = kzalloc(len, GFP_KERNEL);
1013 if (!p) {
1014 ti->error = "memory allocation failed";
1015 ret = -ENOMEM;
1016 goto fail;
1017 }
1018 j = sprintf(p, "%d", hw_argc - 1);
1019 for (i = 0, p+=j+1; i <= hw_argc - 2; i++, p+=j+1)
1020 j = sprintf(p, "%s", as->argv[i]);
1021 }
Mike Snitzer498f0102011-08-02 12:32:04 +01001022 dm_consume_args(as, hw_argc - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
1024 return 0;
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -07001025fail:
1026 kfree(m->hw_handler_name);
1027 m->hw_handler_name = NULL;
1028 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029}
1030
Mike Snitzer498f0102011-08-02 12:32:04 +01001031static int parse_features(struct dm_arg_set *as, struct multipath *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032{
1033 int r;
1034 unsigned argc;
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -07001035 struct dm_target *ti = m->ti;
Mike Snitzer498f0102011-08-02 12:32:04 +01001036 const char *arg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
Mike Snitzer498f0102011-08-02 12:32:04 +01001038 static struct dm_arg _args[] = {
Mike Snitzere83068a2016-05-24 21:16:51 -04001039 {0, 8, "invalid number of feature args"},
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001040 {1, 50, "pg_init_retries must be between 1 and 50"},
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +00001041 {0, 60000, "pg_init_delay_msecs must be between 0 and 60000"},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 };
1043
Mike Snitzer498f0102011-08-02 12:32:04 +01001044 r = dm_read_arg_group(_args, as, &argc, &ti->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 if (r)
1046 return -EINVAL;
1047
1048 if (!argc)
1049 return 0;
1050
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001051 do {
Mike Snitzer498f0102011-08-02 12:32:04 +01001052 arg_name = dm_shift_arg(as);
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001053 argc--;
1054
Mike Snitzer498f0102011-08-02 12:32:04 +01001055 if (!strcasecmp(arg_name, "queue_if_no_path")) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001056 r = queue_if_no_path(m, true, false);
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001057 continue;
1058 }
1059
Mike Snitzera58a9352012-07-27 15:08:04 +01001060 if (!strcasecmp(arg_name, "retain_attached_hw_handler")) {
Mike Snitzer518257b2016-03-17 16:32:10 -04001061 set_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags);
Mike Snitzera58a9352012-07-27 15:08:04 +01001062 continue;
1063 }
1064
Mike Snitzer498f0102011-08-02 12:32:04 +01001065 if (!strcasecmp(arg_name, "pg_init_retries") &&
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001066 (argc >= 1)) {
Mike Snitzer498f0102011-08-02 12:32:04 +01001067 r = dm_read_arg(_args + 1, as, &m->pg_init_retries, &ti->error);
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001068 argc--;
1069 continue;
1070 }
1071
Mike Snitzer498f0102011-08-02 12:32:04 +01001072 if (!strcasecmp(arg_name, "pg_init_delay_msecs") &&
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +00001073 (argc >= 1)) {
Mike Snitzer498f0102011-08-02 12:32:04 +01001074 r = dm_read_arg(_args + 2, as, &m->pg_init_delay_msecs, &ti->error);
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +00001075 argc--;
1076 continue;
1077 }
1078
Mike Snitzere83068a2016-05-24 21:16:51 -04001079 if (!strcasecmp(arg_name, "queue_mode") &&
1080 (argc >= 1)) {
1081 const char *queue_mode_name = dm_shift_arg(as);
1082
1083 if (!strcasecmp(queue_mode_name, "bio"))
1084 m->queue_mode = DM_TYPE_BIO_BASED;
1085 else if (!strcasecmp(queue_mode_name, "rq"))
1086 m->queue_mode = DM_TYPE_REQUEST_BASED;
1087 else if (!strcasecmp(queue_mode_name, "mq"))
1088 m->queue_mode = DM_TYPE_MQ_REQUEST_BASED;
1089 else {
1090 ti->error = "Unknown 'queue_mode' requested";
1091 r = -EINVAL;
1092 }
1093 argc--;
1094 continue;
1095 }
1096
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 ti->error = "Unrecognised multipath feature request";
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001098 r = -EINVAL;
1099 } while (argc && !r);
1100
1101 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102}
1103
Mike Snitzere83068a2016-05-24 21:16:51 -04001104static int multipath_ctr(struct dm_target *ti, unsigned argc, char **argv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105{
Mike Snitzer498f0102011-08-02 12:32:04 +01001106 /* target arguments */
1107 static struct dm_arg _args[] = {
Mike Snitzera490a072011-03-24 13:54:33 +00001108 {0, 1024, "invalid number of priority groups"},
1109 {0, 1024, "invalid initial priority group number"},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 };
1111
1112 int r;
1113 struct multipath *m;
Mike Snitzer498f0102011-08-02 12:32:04 +01001114 struct dm_arg_set as;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 unsigned pg_count = 0;
1116 unsigned next_pg_num;
1117
1118 as.argc = argc;
1119 as.argv = argv;
1120
Mike Snitzere83068a2016-05-24 21:16:51 -04001121 m = alloc_multipath(ti);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 if (!m) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001123 ti->error = "can't allocate multipath";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 return -EINVAL;
1125 }
1126
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -07001127 r = parse_features(&as, m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 if (r)
1129 goto bad;
1130
Mike Snitzere83068a2016-05-24 21:16:51 -04001131 r = alloc_multipath_stage2(ti, m);
1132 if (r)
1133 goto bad;
1134
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -07001135 r = parse_hw_handler(&as, m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 if (r)
1137 goto bad;
1138
Mike Snitzer498f0102011-08-02 12:32:04 +01001139 r = dm_read_arg(_args, &as, &m->nr_priority_groups, &ti->error);
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 + 1, &as, &next_pg_num, &ti->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 if (r)
1145 goto bad;
1146
Mike Snitzera490a072011-03-24 13:54:33 +00001147 if ((!m->nr_priority_groups && next_pg_num) ||
1148 (m->nr_priority_groups && !next_pg_num)) {
1149 ti->error = "invalid initial priority group";
1150 r = -EINVAL;
1151 goto bad;
1152 }
1153
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 /* parse the priority groups */
1155 while (as.argc) {
1156 struct priority_group *pg;
Mike Snitzer91e968a2016-03-17 17:10:15 -04001157 unsigned nr_valid_paths = atomic_read(&m->nr_valid_paths);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -07001159 pg = parse_priority_group(&as, m);
Benjamin Marzinski01460f32008-10-10 13:36:57 +01001160 if (IS_ERR(pg)) {
1161 r = PTR_ERR(pg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 goto bad;
1163 }
1164
Mike Snitzer91e968a2016-03-17 17:10:15 -04001165 nr_valid_paths += pg->nr_pgpaths;
1166 atomic_set(&m->nr_valid_paths, nr_valid_paths);
1167
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 list_add_tail(&pg->list, &m->priority_groups);
1169 pg_count++;
1170 pg->pg_num = pg_count;
1171 if (!--next_pg_num)
1172 m->next_pg = pg;
1173 }
1174
1175 if (pg_count != m->nr_priority_groups) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001176 ti->error = "priority group count mismatch";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 r = -EINVAL;
1178 goto bad;
1179 }
1180
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001181 ti->num_flush_bios = 1;
1182 ti->num_discard_bios = 1;
Mike Snitzer042bcef2013-05-10 14:37:16 +01001183 ti->num_write_same_bios = 1;
Mike Snitzere83068a2016-05-24 21:16:51 -04001184 if (m->queue_mode == DM_TYPE_BIO_BASED)
Mike Snitzerbf661be2016-05-24 15:48:08 -04001185 ti->per_io_data_size = multipath_per_bio_data_size();
Mike Snitzere83068a2016-05-24 21:16:51 -04001186 else if (m->queue_mode == DM_TYPE_MQ_REQUEST_BASED)
Mike Snitzer8637a6b2016-01-31 12:08:36 -05001187 ti->per_io_data_size = sizeof(struct dm_mpath_io);
Mikulas Patocka86279212009-06-22 10:12:24 +01001188
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 return 0;
1190
1191 bad:
1192 free_multipath(m);
1193 return r;
1194}
1195
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001196static void multipath_wait_for_pg_init_completion(struct multipath *m)
1197{
Bart Van Assche9f4c3f82016-08-31 15:16:43 -07001198 DEFINE_WAIT(wait);
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001199
1200 while (1) {
Bart Van Assche9f4c3f82016-08-31 15:16:43 -07001201 prepare_to_wait(&m->pg_init_wait, &wait, TASK_UNINTERRUPTIBLE);
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001202
Mike Snitzer91e968a2016-03-17 17:10:15 -04001203 if (!atomic_read(&m->pg_init_in_progress))
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001204 break;
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001205
1206 io_schedule();
1207 }
Bart Van Assche9f4c3f82016-08-31 15:16:43 -07001208 finish_wait(&m->pg_init_wait, &wait);
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001209}
1210
1211static void flush_multipath_work(struct multipath *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212{
Mike Snitzer518257b2016-03-17 16:32:10 -04001213 set_bit(MPATHF_PG_INIT_DISABLED, &m->flags);
1214 smp_mb__after_atomic();
Shiva Krishna Merla954a73d2013-10-30 03:26:38 +00001215
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001216 flush_workqueue(kmpath_handlerd);
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001217 multipath_wait_for_pg_init_completion(m);
Alasdair G Kergona044d012005-07-12 15:53:02 -07001218 flush_workqueue(kmultipathd);
Tejun Heo43829732012-08-20 14:51:24 -07001219 flush_work(&m->trigger_event);
Shiva Krishna Merla954a73d2013-10-30 03:26:38 +00001220
Mike Snitzer518257b2016-03-17 16:32:10 -04001221 clear_bit(MPATHF_PG_INIT_DISABLED, &m->flags);
1222 smp_mb__after_atomic();
Kiyoshi Ueda6df400a2009-12-10 23:52:19 +00001223}
1224
1225static void multipath_dtr(struct dm_target *ti)
1226{
1227 struct multipath *m = ti->private;
1228
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001229 flush_multipath_work(m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 free_multipath(m);
1231}
1232
1233/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 * Take a path out of use.
1235 */
1236static int fail_path(struct pgpath *pgpath)
1237{
1238 unsigned long flags;
1239 struct multipath *m = pgpath->pg->m;
1240
1241 spin_lock_irqsave(&m->lock, flags);
1242
Kiyoshi Ueda66800732008-10-10 13:36:58 +01001243 if (!pgpath->is_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 goto out;
1245
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001246 DMWARN("Failing path %s.", pgpath->path.dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247
1248 pgpath->pg->ps.type->fail_path(&pgpath->pg->ps, &pgpath->path);
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001249 pgpath->is_active = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 pgpath->fail_count++;
1251
Mike Snitzer91e968a2016-03-17 17:10:15 -04001252 atomic_dec(&m->nr_valid_paths);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
1254 if (pgpath == m->current_pgpath)
1255 m->current_pgpath = NULL;
1256
Mike Andersonb15546f2007-10-19 22:48:02 +01001257 dm_path_uevent(DM_UEVENT_PATH_FAILED, m->ti,
Mike Snitzer91e968a2016-03-17 17:10:15 -04001258 pgpath->path.dev->name, atomic_read(&m->nr_valid_paths));
Mike Andersonb15546f2007-10-19 22:48:02 +01001259
Alasdair G Kergonfe9cf302009-01-06 03:05:13 +00001260 schedule_work(&m->trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
1262out:
1263 spin_unlock_irqrestore(&m->lock, flags);
1264
1265 return 0;
1266}
1267
1268/*
1269 * Reinstate a previously-failed path
1270 */
1271static int reinstate_path(struct pgpath *pgpath)
1272{
Hannes Reinecke63d832c2014-05-26 14:45:39 +02001273 int r = 0, run_queue = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 unsigned long flags;
1275 struct multipath *m = pgpath->pg->m;
Mike Snitzer91e968a2016-03-17 17:10:15 -04001276 unsigned nr_valid_paths;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
1278 spin_lock_irqsave(&m->lock, flags);
1279
Kiyoshi Ueda66800732008-10-10 13:36:58 +01001280 if (pgpath->is_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 goto out;
1282
Mike Snitzerec31f3f2016-02-20 12:49:43 -05001283 DMWARN("Reinstating path %s.", pgpath->path.dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
1285 r = pgpath->pg->ps.type->reinstate_path(&pgpath->pg->ps, &pgpath->path);
1286 if (r)
1287 goto out;
1288
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001289 pgpath->is_active = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
Mike Snitzer91e968a2016-03-17 17:10:15 -04001291 nr_valid_paths = atomic_inc_return(&m->nr_valid_paths);
1292 if (nr_valid_paths == 1) {
Chandra Seetharamane54f77d2009-06-22 10:12:12 +01001293 m->current_pgpath = NULL;
Hannes Reinecke63d832c2014-05-26 14:45:39 +02001294 run_queue = 1;
Chandra Seetharamane54f77d2009-06-22 10:12:12 +01001295 } else if (m->hw_handler_name && (m->current_pg == pgpath->pg)) {
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +00001296 if (queue_work(kmpath_handlerd, &pgpath->activate_path.work))
Mike Snitzer91e968a2016-03-17 17:10:15 -04001297 atomic_inc(&m->pg_init_in_progress);
Chandra Seetharamane54f77d2009-06-22 10:12:12 +01001298 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
Mike Andersonb15546f2007-10-19 22:48:02 +01001300 dm_path_uevent(DM_UEVENT_PATH_REINSTATED, m->ti,
Mike Snitzer91e968a2016-03-17 17:10:15 -04001301 pgpath->path.dev->name, nr_valid_paths);
Mike Andersonb15546f2007-10-19 22:48:02 +01001302
Alasdair G Kergonfe9cf302009-01-06 03:05:13 +00001303 schedule_work(&m->trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
1305out:
1306 spin_unlock_irqrestore(&m->lock, flags);
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001307 if (run_queue) {
Hannes Reinecke63d832c2014-05-26 14:45:39 +02001308 dm_table_run_md_queue_async(m->ti->table);
Mike Snitzer7e48c762016-09-14 10:47:03 -04001309 process_queued_io_list(m);
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001310 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
1312 return r;
1313}
1314
1315/*
1316 * Fail or reinstate all paths that match the provided struct dm_dev.
1317 */
1318static int action_dev(struct multipath *m, struct dm_dev *dev,
1319 action_fn action)
1320{
Mike Snitzer19040c02011-03-24 13:54:31 +00001321 int r = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 struct pgpath *pgpath;
1323 struct priority_group *pg;
1324
1325 list_for_each_entry(pg, &m->priority_groups, list) {
1326 list_for_each_entry(pgpath, &pg->pgpaths, list) {
1327 if (pgpath->path.dev == dev)
1328 r = action(pgpath);
1329 }
1330 }
1331
1332 return r;
1333}
1334
1335/*
1336 * Temporarily try to avoid having to use the specified PG
1337 */
1338static void bypass_pg(struct multipath *m, struct priority_group *pg,
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001339 bool bypassed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340{
1341 unsigned long flags;
1342
1343 spin_lock_irqsave(&m->lock, flags);
1344
1345 pg->bypassed = bypassed;
1346 m->current_pgpath = NULL;
1347 m->current_pg = NULL;
1348
1349 spin_unlock_irqrestore(&m->lock, flags);
1350
Alasdair G Kergonfe9cf302009-01-06 03:05:13 +00001351 schedule_work(&m->trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352}
1353
1354/*
1355 * Switch to using the specified PG from the next I/O that gets mapped
1356 */
1357static int switch_pg_num(struct multipath *m, const char *pgstr)
1358{
1359 struct priority_group *pg;
1360 unsigned pgnum;
1361 unsigned long flags;
Mikulas Patocka31998ef2012-03-28 18:41:26 +01001362 char dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363
Mikulas Patocka31998ef2012-03-28 18:41:26 +01001364 if (!pgstr || (sscanf(pgstr, "%u%c", &pgnum, &dummy) != 1) || !pgnum ||
tang.junhuicc5bd922016-11-04 12:37:09 +08001365 !m->nr_priority_groups || (pgnum > m->nr_priority_groups)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 DMWARN("invalid PG number supplied to switch_pg_num");
1367 return -EINVAL;
1368 }
1369
1370 spin_lock_irqsave(&m->lock, flags);
1371 list_for_each_entry(pg, &m->priority_groups, list) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001372 pg->bypassed = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 if (--pgnum)
1374 continue;
1375
1376 m->current_pgpath = NULL;
1377 m->current_pg = NULL;
1378 m->next_pg = pg;
1379 }
1380 spin_unlock_irqrestore(&m->lock, flags);
1381
Alasdair G Kergonfe9cf302009-01-06 03:05:13 +00001382 schedule_work(&m->trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 return 0;
1384}
1385
1386/*
1387 * Set/clear bypassed status of a PG.
1388 * PGs are numbered upwards from 1 in the order they were declared.
1389 */
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001390static int bypass_pg_num(struct multipath *m, const char *pgstr, bool bypassed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391{
1392 struct priority_group *pg;
1393 unsigned pgnum;
Mikulas Patocka31998ef2012-03-28 18:41:26 +01001394 char dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
Mikulas Patocka31998ef2012-03-28 18:41:26 +01001396 if (!pgstr || (sscanf(pgstr, "%u%c", &pgnum, &dummy) != 1) || !pgnum ||
tang.junhuicc5bd922016-11-04 12:37:09 +08001397 !m->nr_priority_groups || (pgnum > m->nr_priority_groups)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 DMWARN("invalid PG number supplied to bypass_pg");
1399 return -EINVAL;
1400 }
1401
1402 list_for_each_entry(pg, &m->priority_groups, list) {
1403 if (!--pgnum)
1404 break;
1405 }
1406
1407 bypass_pg(m, pg, bypassed);
1408 return 0;
1409}
1410
1411/*
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001412 * Should we retry pg_init immediately?
1413 */
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001414static bool pg_init_limit_reached(struct multipath *m, struct pgpath *pgpath)
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001415{
1416 unsigned long flags;
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001417 bool limit_reached = false;
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001418
1419 spin_lock_irqsave(&m->lock, flags);
1420
Mike Snitzer91e968a2016-03-17 17:10:15 -04001421 if (atomic_read(&m->pg_init_count) <= m->pg_init_retries &&
1422 !test_bit(MPATHF_PG_INIT_DISABLED, &m->flags))
Mike Snitzer518257b2016-03-17 16:32:10 -04001423 set_bit(MPATHF_PG_INIT_REQUIRED, &m->flags);
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001424 else
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001425 limit_reached = true;
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001426
1427 spin_unlock_irqrestore(&m->lock, flags);
1428
1429 return limit_reached;
1430}
1431
Chandra Seetharaman3ae31f62009-10-21 09:22:46 -07001432static void pg_init_done(void *data, int errors)
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001433{
Moger, Babu83c0d5d2010-03-06 02:29:45 +00001434 struct pgpath *pgpath = data;
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001435 struct priority_group *pg = pgpath->pg;
1436 struct multipath *m = pg->m;
1437 unsigned long flags;
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001438 bool delay_retry = false;
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001439
1440 /* device or driver problems */
1441 switch (errors) {
1442 case SCSI_DH_OK:
1443 break;
1444 case SCSI_DH_NOSYS:
1445 if (!m->hw_handler_name) {
1446 errors = 0;
1447 break;
1448 }
Moger, Babuf7b934c2010-03-06 02:29:49 +00001449 DMERR("Could not failover the device: Handler scsi_dh_%s "
1450 "Error %d.", m->hw_handler_name, errors);
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001451 /*
1452 * Fail path for now, so we do not ping pong
1453 */
1454 fail_path(pgpath);
1455 break;
1456 case SCSI_DH_DEV_TEMP_BUSY:
1457 /*
1458 * Probably doing something like FW upgrade on the
1459 * controller so try the other pg.
1460 */
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001461 bypass_pg(m, pg, true);
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001462 break;
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001463 case SCSI_DH_RETRY:
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +00001464 /* Wait before retrying. */
1465 delay_retry = 1;
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001466 case SCSI_DH_IMM_RETRY:
1467 case SCSI_DH_RES_TEMP_UNAVAIL:
1468 if (pg_init_limit_reached(m, pgpath))
1469 fail_path(pgpath);
1470 errors = 0;
1471 break;
Mike Snitzerec31f3f2016-02-20 12:49:43 -05001472 case SCSI_DH_DEV_OFFLINED:
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001473 default:
1474 /*
1475 * We probably do not want to fail the path for a device
1476 * error, but this is what the old dm did. In future
1477 * patches we can do more advanced handling.
1478 */
1479 fail_path(pgpath);
1480 }
1481
1482 spin_lock_irqsave(&m->lock, flags);
1483 if (errors) {
Chandra Seetharamane54f77d2009-06-22 10:12:12 +01001484 if (pgpath == m->current_pgpath) {
1485 DMERR("Could not failover device. Error %d.", errors);
1486 m->current_pgpath = NULL;
1487 m->current_pg = NULL;
1488 }
Mike Snitzer518257b2016-03-17 16:32:10 -04001489 } else if (!test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags))
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001490 pg->bypassed = false;
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001491
Mike Snitzer91e968a2016-03-17 17:10:15 -04001492 if (atomic_dec_return(&m->pg_init_in_progress) > 0)
Kiyoshi Uedad0259bf2010-03-06 02:30:02 +00001493 /* Activations of other paths are still on going */
1494 goto out;
1495
Mike Snitzer518257b2016-03-17 16:32:10 -04001496 if (test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags)) {
1497 if (delay_retry)
1498 set_bit(MPATHF_PG_INIT_DELAY_RETRY, &m->flags);
1499 else
1500 clear_bit(MPATHF_PG_INIT_DELAY_RETRY, &m->flags);
1501
Hannes Reinecke3e9f1be2014-02-28 15:33:45 +01001502 if (__pg_init_all_paths(m))
1503 goto out;
1504 }
Mike Snitzer518257b2016-03-17 16:32:10 -04001505 clear_bit(MPATHF_QUEUE_IO, &m->flags);
Kiyoshi Uedad0259bf2010-03-06 02:30:02 +00001506
Mike Snitzer7e48c762016-09-14 10:47:03 -04001507 process_queued_io_list(m);
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001508
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001509 /*
1510 * Wake up any thread waiting to suspend.
1511 */
1512 wake_up(&m->pg_init_wait);
1513
Kiyoshi Uedad0259bf2010-03-06 02:30:02 +00001514out:
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001515 spin_unlock_irqrestore(&m->lock, flags);
1516}
1517
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001518static void activate_path(struct work_struct *work)
1519{
Chandra Seetharamane54f77d2009-06-22 10:12:12 +01001520 struct pgpath *pgpath =
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +00001521 container_of(work, struct pgpath, activate_path.work);
Mike Snitzerf10e06b2016-09-01 12:06:37 -04001522 struct request_queue *q = bdev_get_queue(pgpath->path.dev->bdev);
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001523
Mike Snitzerf10e06b2016-09-01 12:06:37 -04001524 if (pgpath->is_active && !blk_queue_dying(q))
1525 scsi_dh_activate(q, pg_init_done, pgpath);
Hannes Reinecke3a017502014-02-28 15:33:49 +01001526 else
1527 pg_init_done(pgpath, SCSI_DH_DEV_OFFLINED);
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001528}
1529
Hannes Reinecke7e782af2013-07-01 15:16:26 +02001530static int noretry_error(int error)
1531{
1532 switch (error) {
Hannes Reinecke8ff232c2015-07-15 13:23:24 +02001533 case -EBADE:
1534 /*
1535 * EBADE signals an reservation conflict.
1536 * We shouldn't fail the path here as we can communicate with
1537 * the target. We should failover to the next path, but in
1538 * doing so we might be causing a ping-pong between paths.
1539 * So just return the reservation conflict error.
1540 */
Hannes Reinecke7e782af2013-07-01 15:16:26 +02001541 case -EOPNOTSUPP:
1542 case -EREMOTEIO:
1543 case -EILSEQ:
1544 case -ENODATA:
Jun'ichi Nomuracc9d3c32013-09-13 14:54:30 +09001545 case -ENOSPC:
Hannes Reinecke7e782af2013-07-01 15:16:26 +02001546 return 1;
1547 }
1548
1549 /* Anything else could be a path failure, so should be retried */
1550 return 0;
1551}
1552
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553/*
1554 * end_io handling
1555 */
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001556static int do_end_io(struct multipath *m, struct request *clone,
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001557 int error, struct dm_mpath_io *mpio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558{
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001559 /*
1560 * We don't queue any clone request inside the multipath target
1561 * during end I/O handling, since those clone requests don't have
1562 * bio clones. If we queue them inside the multipath target,
1563 * we need to make bio clones, that requires memory allocation.
Mike Snitzer4cc96132016-05-12 16:28:10 -04001564 * (See drivers/md/dm-rq.c:end_clone_bio() about why the clone requests
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001565 * don't have bio clones.)
1566 * Instead of queueing the clone request here, we queue the original
1567 * request into dm core, which will remake a clone request and
1568 * clone bios for it and resubmit it later.
1569 */
1570 int r = DM_ENDIO_REQUEUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001572 if (!error && !clone->errors)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 return 0; /* I/O complete */
1574
Mike Snitzer7eee4ae2014-06-02 15:50:06 -04001575 if (noretry_error(error))
Mike Snitzer959eb4e2010-08-12 04:14:32 +01001576 return error;
1577
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001578 if (mpio->pgpath)
1579 fail_path(mpio->pgpath);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580
Mike Snitzer91e968a2016-03-17 17:10:15 -04001581 if (!atomic_read(&m->nr_valid_paths)) {
Mike Snitzer518257b2016-03-17 16:32:10 -04001582 if (!test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags)) {
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001583 if (!must_push_back_rq(m))
Hannes Reinecke751b2a72011-01-18 10:13:12 +01001584 r = -EIO;
Hannes Reinecke751b2a72011-01-18 10:13:12 +01001585 }
1586 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001588 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589}
1590
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001591static int multipath_end_io(struct dm_target *ti, struct request *clone,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 int error, union map_info *map_context)
1593{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001594 struct multipath *m = ti->private;
Mike Snitzer2eff1922016-02-03 09:13:14 -05001595 struct dm_mpath_io *mpio = get_mpio(map_context);
Wei Yongjuna71a2612012-10-12 16:59:42 +01001596 struct pgpath *pgpath;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 struct path_selector *ps;
1598 int r;
1599
Jun'ichi Nomura466891f2012-03-28 18:41:25 +01001600 BUG_ON(!mpio);
1601
Mike Snitzer2eff1922016-02-03 09:13:14 -05001602 r = do_end_io(m, clone, error, mpio);
Wei Yongjuna71a2612012-10-12 16:59:42 +01001603 pgpath = mpio->pgpath;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 if (pgpath) {
1605 ps = &pgpath->pg->ps;
1606 if (ps->type->end_io)
Kiyoshi Ueda02ab8232009-06-22 10:12:27 +01001607 ps->type->end_io(ps, &pgpath->path, mpio->nr_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 }
Mike Snitzer2eff1922016-02-03 09:13:14 -05001609 clear_request_fn_mpio(m, map_context);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610
1611 return r;
1612}
1613
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001614static int do_end_io_bio(struct multipath *m, struct bio *clone,
1615 int error, struct dm_mpath_io *mpio)
1616{
1617 unsigned long flags;
1618
1619 if (!error)
1620 return 0; /* I/O complete */
1621
1622 if (noretry_error(error))
1623 return error;
1624
1625 if (mpio->pgpath)
1626 fail_path(mpio->pgpath);
1627
1628 if (!atomic_read(&m->nr_valid_paths)) {
1629 if (!test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags)) {
1630 if (!must_push_back_bio(m))
1631 return -EIO;
1632 return DM_ENDIO_REQUEUE;
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001633 }
1634 }
1635
1636 /* Queue for the daemon to resubmit */
Mike Snitzerbf661be2016-05-24 15:48:08 -04001637 dm_bio_restore(get_bio_details_from_bio(clone), clone);
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001638
1639 spin_lock_irqsave(&m->lock, flags);
1640 bio_list_add(&m->queued_bios, clone);
1641 spin_unlock_irqrestore(&m->lock, flags);
1642 if (!test_bit(MPATHF_QUEUE_IO, &m->flags))
1643 queue_work(kmultipathd, &m->process_queued_bios);
1644
1645 return DM_ENDIO_INCOMPLETE;
1646}
1647
1648static int multipath_end_io_bio(struct dm_target *ti, struct bio *clone, int error)
1649{
1650 struct multipath *m = ti->private;
1651 struct dm_mpath_io *mpio = get_mpio_from_bio(clone);
1652 struct pgpath *pgpath;
1653 struct path_selector *ps;
1654 int r;
1655
1656 BUG_ON(!mpio);
1657
1658 r = do_end_io_bio(m, clone, error, mpio);
1659 pgpath = mpio->pgpath;
1660 if (pgpath) {
1661 ps = &pgpath->pg->ps;
1662 if (ps->type->end_io)
1663 ps->type->end_io(ps, &pgpath->path, mpio->nr_bytes);
1664 }
1665
1666 return r;
1667}
1668
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669/*
1670 * Suspend can't complete until all the I/O is processed so if
Alasdair G Kergon436d4102005-07-12 15:53:03 -07001671 * the last path fails we must error any remaining I/O.
1672 * Note that if the freeze_bdev fails while suspending, the
1673 * queue_if_no_path state is lost - userspace should reset it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 */
1675static void multipath_presuspend(struct dm_target *ti)
1676{
Mike Snitzer7943bd62016-02-02 21:53:15 -05001677 struct multipath *m = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001679 queue_if_no_path(m, false, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680}
1681
Kiyoshi Ueda6df400a2009-12-10 23:52:19 +00001682static void multipath_postsuspend(struct dm_target *ti)
1683{
Mike Anderson6380f262009-12-10 23:52:21 +00001684 struct multipath *m = ti->private;
1685
1686 mutex_lock(&m->work_mutex);
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001687 flush_multipath_work(m);
Mike Anderson6380f262009-12-10 23:52:21 +00001688 mutex_unlock(&m->work_mutex);
Kiyoshi Ueda6df400a2009-12-10 23:52:19 +00001689}
1690
Alasdair G Kergon436d4102005-07-12 15:53:03 -07001691/*
1692 * Restore the queue_if_no_path setting.
1693 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694static void multipath_resume(struct dm_target *ti)
1695{
Mike Snitzer7943bd62016-02-02 21:53:15 -05001696 struct multipath *m = ti->private;
Mike Snitzer1814f2e2016-07-25 21:08:51 -04001697 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698
Mike Snitzer1814f2e2016-07-25 21:08:51 -04001699 spin_lock_irqsave(&m->lock, flags);
Mike Snitzer518257b2016-03-17 16:32:10 -04001700 if (test_bit(MPATHF_SAVED_QUEUE_IF_NO_PATH, &m->flags))
1701 set_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags);
1702 else
1703 clear_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags);
Mike Snitzer1814f2e2016-07-25 21:08:51 -04001704 spin_unlock_irqrestore(&m->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705}
1706
1707/*
1708 * Info output has the following format:
1709 * num_multipath_feature_args [multipath_feature_args]*
1710 * num_handler_status_args [handler_status_args]*
1711 * num_groups init_group_number
1712 * [A|D|E num_ps_status_args [ps_status_args]*
1713 * num_paths num_selector_args
1714 * [path_dev A|F fail_count [selector_args]* ]+ ]+
1715 *
1716 * Table output has the following format (identical to the constructor string):
1717 * num_feature_args [features_args]*
1718 * num_handler_args hw_handler [hw_handler_args]*
1719 * num_groups init_group_number
1720 * [priority selector-name num_ps_args [ps_args]*
1721 * num_paths num_selector_args [path_dev [selector_args]* ]+ ]+
1722 */
Mikulas Patockafd7c0922013-03-01 22:45:44 +00001723static void multipath_status(struct dm_target *ti, status_type_t type,
1724 unsigned status_flags, char *result, unsigned maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725{
1726 int sz = 0;
1727 unsigned long flags;
Mike Snitzer7943bd62016-02-02 21:53:15 -05001728 struct multipath *m = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 struct priority_group *pg;
1730 struct pgpath *p;
1731 unsigned pg_num;
1732 char state;
1733
1734 spin_lock_irqsave(&m->lock, flags);
1735
1736 /* Features */
1737 if (type == STATUSTYPE_INFO)
Mike Snitzer91e968a2016-03-17 17:10:15 -04001738 DMEMIT("2 %u %u ", test_bit(MPATHF_QUEUE_IO, &m->flags),
1739 atomic_read(&m->pg_init_count));
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001740 else {
Mike Snitzer518257b2016-03-17 16:32:10 -04001741 DMEMIT("%u ", test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags) +
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +00001742 (m->pg_init_retries > 0) * 2 +
Mike Snitzera58a9352012-07-27 15:08:04 +01001743 (m->pg_init_delay_msecs != DM_PG_INIT_DELAY_DEFAULT) * 2 +
Mike Snitzere83068a2016-05-24 21:16:51 -04001744 test_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags) +
1745 (m->queue_mode != DM_TYPE_REQUEST_BASED) * 2);
1746
Mike Snitzer518257b2016-03-17 16:32:10 -04001747 if (test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001748 DMEMIT("queue_if_no_path ");
1749 if (m->pg_init_retries)
1750 DMEMIT("pg_init_retries %u ", m->pg_init_retries);
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +00001751 if (m->pg_init_delay_msecs != DM_PG_INIT_DELAY_DEFAULT)
1752 DMEMIT("pg_init_delay_msecs %u ", m->pg_init_delay_msecs);
Mike Snitzer518257b2016-03-17 16:32:10 -04001753 if (test_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags))
Mike Snitzera58a9352012-07-27 15:08:04 +01001754 DMEMIT("retain_attached_hw_handler ");
Mike Snitzere83068a2016-05-24 21:16:51 -04001755 if (m->queue_mode != DM_TYPE_REQUEST_BASED) {
1756 switch(m->queue_mode) {
1757 case DM_TYPE_BIO_BASED:
1758 DMEMIT("queue_mode bio ");
1759 break;
1760 case DM_TYPE_MQ_REQUEST_BASED:
1761 DMEMIT("queue_mode mq ");
1762 break;
1763 }
1764 }
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001765 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001767 if (!m->hw_handler_name || type == STATUSTYPE_INFO)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 DMEMIT("0 ");
1769 else
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001770 DMEMIT("1 %s ", m->hw_handler_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771
1772 DMEMIT("%u ", m->nr_priority_groups);
1773
1774 if (m->next_pg)
1775 pg_num = m->next_pg->pg_num;
1776 else if (m->current_pg)
1777 pg_num = m->current_pg->pg_num;
1778 else
Mike Snitzera490a072011-03-24 13:54:33 +00001779 pg_num = (m->nr_priority_groups ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780
1781 DMEMIT("%u ", pg_num);
1782
1783 switch (type) {
1784 case STATUSTYPE_INFO:
1785 list_for_each_entry(pg, &m->priority_groups, list) {
1786 if (pg->bypassed)
1787 state = 'D'; /* Disabled */
1788 else if (pg == m->current_pg)
1789 state = 'A'; /* Currently Active */
1790 else
1791 state = 'E'; /* Enabled */
1792
1793 DMEMIT("%c ", state);
1794
1795 if (pg->ps.type->status)
1796 sz += pg->ps.type->status(&pg->ps, NULL, type,
1797 result + sz,
1798 maxlen - sz);
1799 else
1800 DMEMIT("0 ");
1801
1802 DMEMIT("%u %u ", pg->nr_pgpaths,
1803 pg->ps.type->info_args);
1804
1805 list_for_each_entry(p, &pg->pgpaths, list) {
1806 DMEMIT("%s %s %u ", p->path.dev->name,
Kiyoshi Ueda66800732008-10-10 13:36:58 +01001807 p->is_active ? "A" : "F",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 p->fail_count);
1809 if (pg->ps.type->status)
1810 sz += pg->ps.type->status(&pg->ps,
1811 &p->path, type, result + sz,
1812 maxlen - sz);
1813 }
1814 }
1815 break;
1816
1817 case STATUSTYPE_TABLE:
1818 list_for_each_entry(pg, &m->priority_groups, list) {
1819 DMEMIT("%s ", pg->ps.type->name);
1820
1821 if (pg->ps.type->status)
1822 sz += pg->ps.type->status(&pg->ps, NULL, type,
1823 result + sz,
1824 maxlen - sz);
1825 else
1826 DMEMIT("0 ");
1827
1828 DMEMIT("%u %u ", pg->nr_pgpaths,
1829 pg->ps.type->table_args);
1830
1831 list_for_each_entry(p, &pg->pgpaths, list) {
1832 DMEMIT("%s ", p->path.dev->name);
1833 if (pg->ps.type->status)
1834 sz += pg->ps.type->status(&pg->ps,
1835 &p->path, type, result + sz,
1836 maxlen - sz);
1837 }
1838 }
1839 break;
1840 }
1841
1842 spin_unlock_irqrestore(&m->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843}
1844
1845static int multipath_message(struct dm_target *ti, unsigned argc, char **argv)
1846{
Mike Anderson6380f262009-12-10 23:52:21 +00001847 int r = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 struct dm_dev *dev;
Mike Snitzer7943bd62016-02-02 21:53:15 -05001849 struct multipath *m = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 action_fn action;
1851
Mike Anderson6380f262009-12-10 23:52:21 +00001852 mutex_lock(&m->work_mutex);
1853
Kiyoshi Uedac2f3d242009-12-10 23:52:27 +00001854 if (dm_suspended(ti)) {
1855 r = -EBUSY;
1856 goto out;
1857 }
1858
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 if (argc == 1) {
Mike Snitzer498f0102011-08-02 12:32:04 +01001860 if (!strcasecmp(argv[0], "queue_if_no_path")) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001861 r = queue_if_no_path(m, true, false);
Mike Anderson6380f262009-12-10 23:52:21 +00001862 goto out;
Mike Snitzer498f0102011-08-02 12:32:04 +01001863 } else if (!strcasecmp(argv[0], "fail_if_no_path")) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001864 r = queue_if_no_path(m, false, false);
Mike Anderson6380f262009-12-10 23:52:21 +00001865 goto out;
1866 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 }
1868
Mike Anderson6380f262009-12-10 23:52:21 +00001869 if (argc != 2) {
Jose Castilloa356e422014-01-29 17:52:45 +01001870 DMWARN("Invalid multipath message arguments. Expected 2 arguments, got %d.", argc);
Mike Anderson6380f262009-12-10 23:52:21 +00001871 goto out;
1872 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873
Mike Snitzer498f0102011-08-02 12:32:04 +01001874 if (!strcasecmp(argv[0], "disable_group")) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001875 r = bypass_pg_num(m, argv[1], true);
Mike Anderson6380f262009-12-10 23:52:21 +00001876 goto out;
Mike Snitzer498f0102011-08-02 12:32:04 +01001877 } else if (!strcasecmp(argv[0], "enable_group")) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001878 r = bypass_pg_num(m, argv[1], false);
Mike Anderson6380f262009-12-10 23:52:21 +00001879 goto out;
Mike Snitzer498f0102011-08-02 12:32:04 +01001880 } else if (!strcasecmp(argv[0], "switch_group")) {
Mike Anderson6380f262009-12-10 23:52:21 +00001881 r = switch_pg_num(m, argv[1]);
1882 goto out;
Mike Snitzer498f0102011-08-02 12:32:04 +01001883 } else if (!strcasecmp(argv[0], "reinstate_path"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 action = reinstate_path;
Mike Snitzer498f0102011-08-02 12:32:04 +01001885 else if (!strcasecmp(argv[0], "fail_path"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 action = fail_path;
Mike Anderson6380f262009-12-10 23:52:21 +00001887 else {
Jose Castilloa356e422014-01-29 17:52:45 +01001888 DMWARN("Unrecognised multipath message received: %s", argv[0]);
Mike Anderson6380f262009-12-10 23:52:21 +00001889 goto out;
1890 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891
Nikanth Karthikesan8215d6e2010-03-06 02:32:27 +00001892 r = dm_get_device(ti, argv[1], dm_table_get_mode(ti->table), &dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 if (r) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001894 DMWARN("message: error getting device %s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 argv[1]);
Mike Anderson6380f262009-12-10 23:52:21 +00001896 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 }
1898
1899 r = action_dev(m, dev, action);
1900
1901 dm_put_device(ti, dev);
1902
Mike Anderson6380f262009-12-10 23:52:21 +00001903out:
1904 mutex_unlock(&m->work_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906}
1907
Christoph Hellwige56f81e2015-10-15 14:10:50 +02001908static int multipath_prepare_ioctl(struct dm_target *ti,
1909 struct block_device **bdev, fmode_t *mode)
Milan Broz9af4aa32006-10-03 01:15:20 -07001910{
Mikulas Patocka35991652012-06-03 00:29:58 +01001911 struct multipath *m = ti->private;
Mike Snitzer2da16102016-03-17 18:38:17 -04001912 struct pgpath *current_pgpath;
Mikulas Patocka35991652012-06-03 00:29:58 +01001913 int r;
1914
Mike Snitzer2da16102016-03-17 18:38:17 -04001915 current_pgpath = lockless_dereference(m->current_pgpath);
1916 if (!current_pgpath)
1917 current_pgpath = choose_pgpath(m, 0);
Milan Broz9af4aa32006-10-03 01:15:20 -07001918
Mike Snitzer2da16102016-03-17 18:38:17 -04001919 if (current_pgpath) {
Mike Snitzer518257b2016-03-17 16:32:10 -04001920 if (!test_bit(MPATHF_QUEUE_IO, &m->flags)) {
Mike Snitzer2da16102016-03-17 18:38:17 -04001921 *bdev = current_pgpath->path.dev->bdev;
1922 *mode = current_pgpath->path.dev->mode;
Junichi Nomura43e43c92015-11-17 09:36:56 +00001923 r = 0;
1924 } else {
1925 /* pg_init has not started or completed */
1926 r = -ENOTCONN;
1927 }
1928 } else {
1929 /* No path is available */
Mike Snitzer518257b2016-03-17 16:32:10 -04001930 if (test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))
Junichi Nomura43e43c92015-11-17 09:36:56 +00001931 r = -ENOTCONN;
1932 else
1933 r = -EIO;
Milan Broze90dae12006-10-03 01:15:22 -07001934 }
Milan Broz9af4aa32006-10-03 01:15:20 -07001935
Junichi Nomura5bbbfdf2015-11-17 09:39:26 +00001936 if (r == -ENOTCONN) {
Mike Snitzer2da16102016-03-17 18:38:17 -04001937 if (!lockless_dereference(m->current_pg)) {
Hannes Reinecke3e9f1be2014-02-28 15:33:45 +01001938 /* Path status changed, redo selection */
Mike Snitzer2da16102016-03-17 18:38:17 -04001939 (void) choose_pgpath(m, 0);
Hannes Reinecke3e9f1be2014-02-28 15:33:45 +01001940 }
Mike Snitzer518257b2016-03-17 16:32:10 -04001941 if (test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags))
Mike Snitzer2da16102016-03-17 18:38:17 -04001942 pg_init_all_paths(m);
Hannes Reinecke63d832c2014-05-26 14:45:39 +02001943 dm_table_run_md_queue_async(m->ti->table);
Mike Snitzer7e48c762016-09-14 10:47:03 -04001944 process_queued_io_list(m);
Hannes Reinecke3e9f1be2014-02-28 15:33:45 +01001945 }
Mikulas Patocka35991652012-06-03 00:29:58 +01001946
Christoph Hellwige56f81e2015-10-15 14:10:50 +02001947 /*
1948 * Only pass ioctls through if the device sizes match exactly.
1949 */
1950 if (!r && ti->len != i_size_read((*bdev)->bd_inode) >> SECTOR_SHIFT)
1951 return 1;
1952 return r;
Milan Broz9af4aa32006-10-03 01:15:20 -07001953}
1954
Mike Snitzeraf4874e2009-06-22 10:12:33 +01001955static int multipath_iterate_devices(struct dm_target *ti,
1956 iterate_devices_callout_fn fn, void *data)
1957{
1958 struct multipath *m = ti->private;
1959 struct priority_group *pg;
1960 struct pgpath *p;
1961 int ret = 0;
1962
1963 list_for_each_entry(pg, &m->priority_groups, list) {
1964 list_for_each_entry(p, &pg->pgpaths, list) {
Mike Snitzer5dea2712009-07-23 20:30:42 +01001965 ret = fn(ti, p->path.dev, ti->begin, ti->len, data);
Mike Snitzeraf4874e2009-06-22 10:12:33 +01001966 if (ret)
1967 goto out;
1968 }
1969 }
1970
1971out:
1972 return ret;
1973}
1974
Mike Snitzer9f54cec2016-02-11 21:42:28 -05001975static int pgpath_busy(struct pgpath *pgpath)
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001976{
1977 struct request_queue *q = bdev_get_queue(pgpath->path.dev->bdev);
1978
Mike Snitzer52b09912015-02-23 16:36:41 -05001979 return blk_lld_busy(q);
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001980}
1981
1982/*
1983 * We return "busy", only when we can map I/Os but underlying devices
1984 * are busy (so even if we map I/Os now, the I/Os will wait on
1985 * the underlying queue).
1986 * In other words, if we want to kill I/Os or queue them inside us
1987 * due to map unavailability, we don't return "busy". Otherwise,
1988 * dm core won't give us the I/Os and we can't do what we want.
1989 */
1990static int multipath_busy(struct dm_target *ti)
1991{
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001992 bool busy = false, has_active = false;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001993 struct multipath *m = ti->private;
Mike Snitzer2da16102016-03-17 18:38:17 -04001994 struct priority_group *pg, *next_pg;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001995 struct pgpath *pgpath;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001996
Mike Snitzerb88efd42016-09-09 19:26:19 -04001997 /* pg_init in progress */
1998 if (atomic_read(&m->pg_init_in_progress))
Mike Snitzer2da16102016-03-17 18:38:17 -04001999 return true;
2000
Mike Snitzerb88efd42016-09-09 19:26:19 -04002001 /* no paths available, for blk-mq: rely on IO mapping to delay requeue */
2002 if (!atomic_read(&m->nr_valid_paths) && test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))
2003 return (m->queue_mode != DM_TYPE_MQ_REQUEST_BASED);
2004
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01002005 /* Guess which priority_group will be used at next mapping time */
Mike Snitzer2da16102016-03-17 18:38:17 -04002006 pg = lockless_dereference(m->current_pg);
2007 next_pg = lockless_dereference(m->next_pg);
2008 if (unlikely(!lockless_dereference(m->current_pgpath) && next_pg))
2009 pg = next_pg;
2010
2011 if (!pg) {
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01002012 /*
2013 * We don't know which pg will be used at next mapping time.
Mike Snitzer2da16102016-03-17 18:38:17 -04002014 * We don't call choose_pgpath() here to avoid to trigger
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01002015 * pg_init just by busy checking.
2016 * So we don't know whether underlying devices we will be using
2017 * at next mapping time are busy or not. Just try mapping.
2018 */
Mike Snitzer2da16102016-03-17 18:38:17 -04002019 return busy;
2020 }
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01002021
2022 /*
2023 * If there is one non-busy active path at least, the path selector
2024 * will be able to select it. So we consider such a pg as not busy.
2025 */
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05002026 busy = true;
Mike Snitzer2da16102016-03-17 18:38:17 -04002027 list_for_each_entry(pgpath, &pg->pgpaths, list) {
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01002028 if (pgpath->is_active) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05002029 has_active = true;
Mike Snitzer9f54cec2016-02-11 21:42:28 -05002030 if (!pgpath_busy(pgpath)) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05002031 busy = false;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01002032 break;
2033 }
2034 }
Mike Snitzer2da16102016-03-17 18:38:17 -04002035 }
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01002036
Mike Snitzer2da16102016-03-17 18:38:17 -04002037 if (!has_active) {
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01002038 /*
2039 * No active path in this pg, so this pg won't be used and
2040 * the current_pg will be changed at next mapping time.
2041 * We need to try mapping to determine it.
2042 */
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05002043 busy = false;
Mike Snitzer2da16102016-03-17 18:38:17 -04002044 }
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01002045
2046 return busy;
2047}
2048
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049/*-----------------------------------------------------------------
2050 * Module setup
2051 *---------------------------------------------------------------*/
2052static struct target_type multipath_target = {
2053 .name = "multipath",
Mike Snitzere83068a2016-05-24 21:16:51 -04002054 .version = {1, 12, 0},
Mike Snitzer16f12262016-01-31 17:22:27 -05002055 .features = DM_TARGET_SINGLETON | DM_TARGET_IMMUTABLE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 .module = THIS_MODULE,
2057 .ctr = multipath_ctr,
2058 .dtr = multipath_dtr,
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01002059 .map_rq = multipath_map,
Mike Snitzere5863d92014-12-17 21:08:12 -05002060 .clone_and_map_rq = multipath_clone_and_map,
2061 .release_clone_rq = multipath_release_clone,
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01002062 .rq_end_io = multipath_end_io,
Mike Snitzer76e33fe2016-05-19 16:15:14 -04002063 .map = multipath_map_bio,
2064 .end_io = multipath_end_io_bio,
2065 .presuspend = multipath_presuspend,
2066 .postsuspend = multipath_postsuspend,
2067 .resume = multipath_resume,
2068 .status = multipath_status,
2069 .message = multipath_message,
2070 .prepare_ioctl = multipath_prepare_ioctl,
2071 .iterate_devices = multipath_iterate_devices,
2072 .busy = multipath_busy,
2073};
2074
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075static int __init dm_multipath_init(void)
2076{
2077 int r;
2078
Mike Snitzer76e33fe2016-05-19 16:15:14 -04002079 /* allocate a slab for the dm_mpath_ios */
Alasdair G Kergon028867a2007-07-12 17:26:32 +01002080 _mpio_cache = KMEM_CACHE(dm_mpath_io, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 if (!_mpio_cache)
2082 return -ENOMEM;
2083
2084 r = dm_register_target(&multipath_target);
2085 if (r < 0) {
Mike Snitzer76e33fe2016-05-19 16:15:14 -04002086 DMERR("request-based register failed %d", r);
Johannes Thumshirnff658e92015-01-11 12:45:23 +01002087 r = -EINVAL;
2088 goto bad_register_target;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 }
2090
Tejun Heo4d4d66a2011-01-13 19:59:57 +00002091 kmultipathd = alloc_workqueue("kmpathd", WQ_MEM_RECLAIM, 0);
Alasdair G Kergonc5573082005-05-05 16:16:07 -07002092 if (!kmultipathd) {
Alasdair G Kergon0cd33122007-07-12 17:27:01 +01002093 DMERR("failed to create workqueue kmpathd");
Johannes Thumshirnff658e92015-01-11 12:45:23 +01002094 r = -ENOMEM;
2095 goto bad_alloc_kmultipathd;
Alasdair G Kergonc5573082005-05-05 16:16:07 -07002096 }
2097
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07002098 /*
2099 * A separate workqueue is used to handle the device handlers
2100 * to avoid overloading existing workqueue. Overloading the
2101 * old workqueue would also create a bottleneck in the
2102 * path of the storage hardware device activation.
2103 */
Tejun Heo4d4d66a2011-01-13 19:59:57 +00002104 kmpath_handlerd = alloc_ordered_workqueue("kmpath_handlerd",
2105 WQ_MEM_RECLAIM);
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07002106 if (!kmpath_handlerd) {
2107 DMERR("failed to create workqueue kmpath_handlerd");
Johannes Thumshirnff658e92015-01-11 12:45:23 +01002108 r = -ENOMEM;
2109 goto bad_alloc_kmpath_handlerd;
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07002110 }
2111
Johannes Thumshirnff658e92015-01-11 12:45:23 +01002112 return 0;
2113
2114bad_alloc_kmpath_handlerd:
2115 destroy_workqueue(kmultipathd);
2116bad_alloc_kmultipathd:
2117 dm_unregister_target(&multipath_target);
2118bad_register_target:
2119 kmem_cache_destroy(_mpio_cache);
2120
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 return r;
2122}
2123
2124static void __exit dm_multipath_exit(void)
2125{
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07002126 destroy_workqueue(kmpath_handlerd);
Alasdair G Kergonc5573082005-05-05 16:16:07 -07002127 destroy_workqueue(kmultipathd);
2128
Mikulas Patocka10d3bd02009-01-06 03:04:58 +00002129 dm_unregister_target(&multipath_target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 kmem_cache_destroy(_mpio_cache);
2131}
2132
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133module_init(dm_multipath_init);
2134module_exit(dm_multipath_exit);
2135
2136MODULE_DESCRIPTION(DM_NAME " multipath target");
2137MODULE_AUTHOR("Sistina Software <dm-devel@redhat.com>");
2138MODULE_LICENSE("GPL");