blob: d234b6c33646f6d9e9387fb64ca85d803bade53f [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
Mike Snitzer2da16102016-03-17 18:38:17 -0400375static int pg_init_all_paths(struct multipath *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376{
Mike Snitzer2da16102016-03-17 18:38:17 -0400377 int r;
378 unsigned long flags;
379
380 spin_lock_irqsave(&m->lock, flags);
381 r = __pg_init_all_paths(m);
382 spin_unlock_irqrestore(&m->lock, flags);
383
384 return r;
385}
386
387static void __switch_pg(struct multipath *m, struct priority_group *pg)
388{
389 m->current_pg = pg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
391 /* Must we initialise the PG first, and queue I/O till it's ready? */
Chandra Seetharamancfae5c92008-05-01 14:50:11 -0700392 if (m->hw_handler_name) {
Mike Snitzer518257b2016-03-17 16:32:10 -0400393 set_bit(MPATHF_PG_INIT_REQUIRED, &m->flags);
394 set_bit(MPATHF_QUEUE_IO, &m->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 } else {
Mike Snitzer518257b2016-03-17 16:32:10 -0400396 clear_bit(MPATHF_PG_INIT_REQUIRED, &m->flags);
397 clear_bit(MPATHF_QUEUE_IO, &m->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 }
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100399
Mike Snitzer91e968a2016-03-17 17:10:15 -0400400 atomic_set(&m->pg_init_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401}
402
Mike Snitzer2da16102016-03-17 18:38:17 -0400403static struct pgpath *choose_path_in_pg(struct multipath *m,
404 struct priority_group *pg,
405 size_t nr_bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406{
Mike Snitzer2da16102016-03-17 18:38:17 -0400407 unsigned long flags;
Josef "Jeff" Sipekc922d5f2006-12-08 02:36:33 -0800408 struct dm_path *path;
Mike Snitzer2da16102016-03-17 18:38:17 -0400409 struct pgpath *pgpath;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Mike Snitzer90a43232016-02-17 21:29:17 -0500411 path = pg->ps.type->select_path(&pg->ps, nr_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 if (!path)
Mike Snitzer2da16102016-03-17 18:38:17 -0400413 return ERR_PTR(-ENXIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
Mike Snitzer2da16102016-03-17 18:38:17 -0400415 pgpath = path_to_pgpath(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Mike Snitzer2da16102016-03-17 18:38:17 -0400417 if (unlikely(lockless_dereference(m->current_pg) != pg)) {
418 /* Only update current_pgpath if pg changed */
419 spin_lock_irqsave(&m->lock, flags);
420 m->current_pgpath = pgpath;
421 __switch_pg(m, pg);
422 spin_unlock_irqrestore(&m->lock, flags);
423 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Mike Snitzer2da16102016-03-17 18:38:17 -0400425 return pgpath;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426}
427
Mike Snitzer2da16102016-03-17 18:38:17 -0400428static struct pgpath *choose_pgpath(struct multipath *m, size_t nr_bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429{
Mike Snitzer2da16102016-03-17 18:38:17 -0400430 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 struct priority_group *pg;
Mike Snitzer2da16102016-03-17 18:38:17 -0400432 struct pgpath *pgpath;
Mike Snitzerbe7d31c2016-02-10 13:02:21 -0500433 bool bypassed = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Mike Snitzer91e968a2016-03-17 17:10:15 -0400435 if (!atomic_read(&m->nr_valid_paths)) {
Mike Snitzer518257b2016-03-17 16:32:10 -0400436 clear_bit(MPATHF_QUEUE_IO, &m->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 goto failed;
Benjamin Marzinski1f271972014-08-13 13:53:42 -0500438 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
440 /* Were we instructed to switch PG? */
Mike Snitzer2da16102016-03-17 18:38:17 -0400441 if (lockless_dereference(m->next_pg)) {
442 spin_lock_irqsave(&m->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 pg = m->next_pg;
Mike Snitzer2da16102016-03-17 18:38:17 -0400444 if (!pg) {
445 spin_unlock_irqrestore(&m->lock, flags);
446 goto check_current_pg;
447 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 m->next_pg = NULL;
Mike Snitzer2da16102016-03-17 18:38:17 -0400449 spin_unlock_irqrestore(&m->lock, flags);
450 pgpath = choose_path_in_pg(m, pg, nr_bytes);
451 if (!IS_ERR_OR_NULL(pgpath))
452 return pgpath;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 }
454
455 /* Don't change PG until it has no remaining paths */
Mike Snitzer2da16102016-03-17 18:38:17 -0400456check_current_pg:
457 pg = lockless_dereference(m->current_pg);
458 if (pg) {
459 pgpath = choose_path_in_pg(m, pg, nr_bytes);
460 if (!IS_ERR_OR_NULL(pgpath))
461 return pgpath;
462 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
464 /*
465 * Loop through priority groups until we find a valid path.
466 * First time we skip PGs marked 'bypassed'.
Mike Christief220fd42012-06-03 00:29:45 +0100467 * Second time we only try the ones we skipped, but set
468 * pg_init_delay_retry so we do not hammer controllers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 */
470 do {
471 list_for_each_entry(pg, &m->priority_groups, list) {
472 if (pg->bypassed == bypassed)
473 continue;
Mike Snitzer2da16102016-03-17 18:38:17 -0400474 pgpath = choose_path_in_pg(m, pg, nr_bytes);
475 if (!IS_ERR_OR_NULL(pgpath)) {
Mike Christief220fd42012-06-03 00:29:45 +0100476 if (!bypassed)
Mike Snitzer518257b2016-03-17 16:32:10 -0400477 set_bit(MPATHF_PG_INIT_DELAY_RETRY, &m->flags);
Mike Snitzer2da16102016-03-17 18:38:17 -0400478 return pgpath;
Mike Christief220fd42012-06-03 00:29:45 +0100479 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 }
481 } while (bypassed--);
482
483failed:
Mike Snitzer2da16102016-03-17 18:38:17 -0400484 spin_lock_irqsave(&m->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 m->current_pgpath = NULL;
486 m->current_pg = NULL;
Mike Snitzer2da16102016-03-17 18:38:17 -0400487 spin_unlock_irqrestore(&m->lock, flags);
488
489 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490}
491
Kiyoshi Ueda45e15722006-12-08 02:41:10 -0800492/*
493 * Check whether bios must be queued in the device-mapper core rather
494 * than here in the target.
495 *
Kiyoshi Ueda45e15722006-12-08 02:41:10 -0800496 * If m->queue_if_no_path and m->saved_queue_if_no_path hold the
497 * same value then we are not between multipath_presuspend()
498 * and multipath_resume() calls and we have no need to check
499 * for the DMF_NOFLUSH_SUSPENDING flag.
500 */
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400501static bool __must_push_back(struct multipath *m)
502{
503 return ((test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags) !=
504 test_bit(MPATHF_SAVED_QUEUE_IF_NO_PATH, &m->flags)) &&
505 dm_noflush_suspending(m->ti));
506}
507
508static bool must_push_back_rq(struct multipath *m)
Kiyoshi Ueda45e15722006-12-08 02:41:10 -0800509{
Mike Snitzer1814f2e2016-07-25 21:08:51 -0400510 bool r;
511 unsigned long flags;
512
513 spin_lock_irqsave(&m->lock, flags);
514 r = (test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags) ||
515 __must_push_back(m));
516 spin_unlock_irqrestore(&m->lock, flags);
517
518 return r;
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400519}
520
521static bool must_push_back_bio(struct multipath *m)
522{
Mike Snitzer1814f2e2016-07-25 21:08:51 -0400523 bool r;
524 unsigned long flags;
525
526 spin_lock_irqsave(&m->lock, flags);
527 r = __must_push_back(m);
528 spin_unlock_irqrestore(&m->lock, flags);
529
530 return r;
Kiyoshi Ueda45e15722006-12-08 02:41:10 -0800531}
532
Hannes Reinecke36fcffc2014-02-28 15:33:47 +0100533/*
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400534 * Map cloned requests (request-based multipath)
Hannes Reinecke36fcffc2014-02-28 15:33:47 +0100535 */
Mike Snitzere5863d92014-12-17 21:08:12 -0500536static int __multipath_map(struct dm_target *ti, struct request *clone,
537 union map_info *map_context,
538 struct request *rq, struct request **__clone)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539{
Mike Snitzer7943bd62016-02-02 21:53:15 -0500540 struct multipath *m = ti->private;
Hannes Reineckee3bde042014-02-28 15:33:46 +0100541 int r = DM_MAPIO_REQUEUE;
Mike Snitzere5863d92014-12-17 21:08:12 -0500542 size_t nr_bytes = clone ? blk_rq_bytes(clone) : blk_rq_bytes(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 struct pgpath *pgpath;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +0100544 struct block_device *bdev;
Hannes Reineckee3bde042014-02-28 15:33:46 +0100545 struct dm_mpath_io *mpio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 /* Do we need to select a new pgpath? */
Mike Snitzer2da16102016-03-17 18:38:17 -0400548 pgpath = lockless_dereference(m->current_pgpath);
549 if (!pgpath || !test_bit(MPATHF_QUEUE_IO, &m->flags))
550 pgpath = choose_pgpath(m, nr_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
Mike Snitzer9bf59a62014-02-28 15:33:48 +0100552 if (!pgpath) {
Mike Snitzerb88efd42016-09-09 19:26:19 -0400553 if (must_push_back_rq(m))
554 return DM_MAPIO_DELAY_REQUEUE;
555 return -EIO; /* Failed */
Mike Snitzer518257b2016-03-17 16:32:10 -0400556 } else if (test_bit(MPATHF_QUEUE_IO, &m->flags) ||
557 test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags)) {
Mike Snitzer2da16102016-03-17 18:38:17 -0400558 pg_init_all_paths(m);
559 return r;
Mike Snitzer9bf59a62014-02-28 15:33:48 +0100560 }
Mike Snitzer6afbc012014-07-08 11:55:09 -0400561
Mike Snitzer2eff1922016-02-03 09:13:14 -0500562 mpio = set_mpio(m, map_context);
563 if (!mpio)
Mike Snitzer9bf59a62014-02-28 15:33:48 +0100564 /* ENOMEM, requeue */
Mike Snitzer2da16102016-03-17 18:38:17 -0400565 return r;
Mike Snitzer9bf59a62014-02-28 15:33:48 +0100566
Mike Snitzer9bf59a62014-02-28 15:33:48 +0100567 mpio->pgpath = pgpath;
568 mpio->nr_bytes = nr_bytes;
Keith Busch2eb6e1e2014-10-17 17:46:36 -0600569
570 bdev = pgpath->path.dev->bdev;
571
Mike Snitzere5863d92014-12-17 21:08:12 -0500572 if (clone) {
Mike Snitzerc5248f72016-02-20 14:02:49 -0500573 /*
574 * Old request-based interface: allocated clone is passed in.
575 * Used by: .request_fn stacked on .request_fn path(s).
576 */
Mike Snitzere5863d92014-12-17 21:08:12 -0500577 clone->q = bdev_get_queue(bdev);
578 clone->rq_disk = bdev->bd_disk;
579 clone->cmd_flags |= REQ_FAILFAST_TRANSPORT;
580 } else {
Mike Snitzereca7ee62016-02-20 13:45:38 -0500581 /*
582 * blk-mq request-based interface; used by both:
583 * .request_fn stacked on blk-mq path(s) and
584 * blk-mq stacked on blk-mq path(s).
585 */
Mike Snitzer78ce23b2016-01-31 17:38:28 -0500586 *__clone = blk_mq_alloc_request(bdev_get_queue(bdev),
587 rq_data_dir(rq), BLK_MQ_REQ_NOWAIT);
Mike Snitzer4c6dd532015-05-27 15:23:56 -0400588 if (IS_ERR(*__clone)) {
Mike Snitzere5863d92014-12-17 21:08:12 -0500589 /* ENOMEM, requeue */
Mike Snitzer2eff1922016-02-03 09:13:14 -0500590 clear_request_fn_mpio(m, map_context);
Mike Snitzere5863d92014-12-17 21:08:12 -0500591 return r;
Mike Snitzer4c6dd532015-05-27 15:23:56 -0400592 }
Mike Snitzere5863d92014-12-17 21:08:12 -0500593 (*__clone)->bio = (*__clone)->biotail = NULL;
594 (*__clone)->rq_disk = bdev->bd_disk;
595 (*__clone)->cmd_flags |= REQ_FAILFAST_TRANSPORT;
596 }
597
Mike Snitzer9bf59a62014-02-28 15:33:48 +0100598 if (pgpath->pg->ps.type->start_io)
599 pgpath->pg->ps.type->start_io(&pgpath->pg->ps,
600 &pgpath->path,
601 nr_bytes);
Keith Busch2eb6e1e2014-10-17 17:46:36 -0600602 return DM_MAPIO_REMAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603}
604
Mike Snitzere5863d92014-12-17 21:08:12 -0500605static int multipath_map(struct dm_target *ti, struct request *clone,
606 union map_info *map_context)
607{
608 return __multipath_map(ti, clone, map_context, NULL, NULL);
609}
610
611static int multipath_clone_and_map(struct dm_target *ti, struct request *rq,
612 union map_info *map_context,
613 struct request **clone)
614{
615 return __multipath_map(ti, NULL, map_context, rq, clone);
616}
617
618static void multipath_release_clone(struct request *clone)
619{
Mike Snitzer78ce23b2016-01-31 17:38:28 -0500620 blk_mq_free_request(clone);
Mike Snitzere5863d92014-12-17 21:08:12 -0500621}
622
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623/*
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400624 * Map cloned bios (bio-based multipath)
625 */
626static int __multipath_map_bio(struct multipath *m, struct bio *bio, struct dm_mpath_io *mpio)
627{
628 size_t nr_bytes = bio->bi_iter.bi_size;
629 struct pgpath *pgpath;
630 unsigned long flags;
631 bool queue_io;
632
633 /* Do we need to select a new pgpath? */
634 pgpath = lockless_dereference(m->current_pgpath);
635 queue_io = test_bit(MPATHF_QUEUE_IO, &m->flags);
636 if (!pgpath || !queue_io)
637 pgpath = choose_pgpath(m, nr_bytes);
638
639 if ((pgpath && queue_io) ||
640 (!pgpath && test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))) {
641 /* Queue for the daemon to resubmit */
642 spin_lock_irqsave(&m->lock, flags);
643 bio_list_add(&m->queued_bios, bio);
644 spin_unlock_irqrestore(&m->lock, flags);
645 /* PG_INIT_REQUIRED cannot be set without QUEUE_IO */
646 if (queue_io || test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags))
647 pg_init_all_paths(m);
648 else if (!queue_io)
649 queue_work(kmultipathd, &m->process_queued_bios);
650 return DM_MAPIO_SUBMITTED;
651 }
652
653 if (!pgpath) {
654 if (!must_push_back_bio(m))
655 return -EIO;
656 return DM_MAPIO_REQUEUE;
657 }
658
659 mpio->pgpath = pgpath;
660 mpio->nr_bytes = nr_bytes;
661
662 bio->bi_error = 0;
663 bio->bi_bdev = pgpath->path.dev->bdev;
Jens Axboe1eff9d32016-08-05 15:35:16 -0600664 bio->bi_opf |= REQ_FAILFAST_TRANSPORT;
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400665
666 if (pgpath->pg->ps.type->start_io)
667 pgpath->pg->ps.type->start_io(&pgpath->pg->ps,
668 &pgpath->path,
669 nr_bytes);
670 return DM_MAPIO_REMAPPED;
671}
672
673static int multipath_map_bio(struct dm_target *ti, struct bio *bio)
674{
675 struct multipath *m = ti->private;
Mike Snitzerbf661be2016-05-24 15:48:08 -0400676 struct dm_mpath_io *mpio = NULL;
677
678 multipath_init_per_bio_data(bio, &mpio, NULL);
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400679
680 return __multipath_map_bio(m, bio, mpio);
681}
682
Mike Snitzer7e48c762016-09-14 10:47:03 -0400683static void process_queued_io_list(struct multipath *m)
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400684{
Mike Snitzer7e48c762016-09-14 10:47:03 -0400685 if (m->queue_mode == DM_TYPE_MQ_REQUEST_BASED)
686 dm_mq_kick_requeue_list(dm_table_get_md(m->ti->table));
687 else if (m->queue_mode == DM_TYPE_BIO_BASED)
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400688 queue_work(kmultipathd, &m->process_queued_bios);
689}
690
691static void process_queued_bios(struct work_struct *work)
692{
693 int r;
694 unsigned long flags;
695 struct bio *bio;
696 struct bio_list bios;
697 struct blk_plug plug;
698 struct multipath *m =
699 container_of(work, struct multipath, process_queued_bios);
700
701 bio_list_init(&bios);
702
703 spin_lock_irqsave(&m->lock, flags);
704
705 if (bio_list_empty(&m->queued_bios)) {
706 spin_unlock_irqrestore(&m->lock, flags);
707 return;
708 }
709
710 bio_list_merge(&bios, &m->queued_bios);
711 bio_list_init(&m->queued_bios);
712
713 spin_unlock_irqrestore(&m->lock, flags);
714
715 blk_start_plug(&plug);
716 while ((bio = bio_list_pop(&bios))) {
717 r = __multipath_map_bio(m, bio, get_mpio_from_bio(bio));
718 if (r < 0 || r == DM_MAPIO_REQUEUE) {
719 bio->bi_error = r;
720 bio_endio(bio);
721 } else if (r == DM_MAPIO_REMAPPED)
722 generic_make_request(bio);
723 }
724 blk_finish_plug(&plug);
725}
726
727/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 * If we run out of usable paths, should we queue I/O or error it?
729 */
Mike Snitzerbe7d31c2016-02-10 13:02:21 -0500730static int queue_if_no_path(struct multipath *m, bool queue_if_no_path,
731 bool save_old_value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732{
733 unsigned long flags;
734
735 spin_lock_irqsave(&m->lock, flags);
736
Mike Snitzer518257b2016-03-17 16:32:10 -0400737 if (save_old_value) {
738 if (test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))
739 set_bit(MPATHF_SAVED_QUEUE_IF_NO_PATH, &m->flags);
740 else
741 clear_bit(MPATHF_SAVED_QUEUE_IF_NO_PATH, &m->flags);
742 } else {
743 if (queue_if_no_path)
744 set_bit(MPATHF_SAVED_QUEUE_IF_NO_PATH, &m->flags);
745 else
746 clear_bit(MPATHF_SAVED_QUEUE_IF_NO_PATH, &m->flags);
747 }
748 if (queue_if_no_path)
749 set_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags);
Alasdair G Kergon485ef692005-09-27 21:45:45 -0700750 else
Mike Snitzer518257b2016-03-17 16:32:10 -0400751 clear_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags);
752
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 spin_unlock_irqrestore(&m->lock, flags);
754
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400755 if (!queue_if_no_path) {
Hannes Reinecke63d832c2014-05-26 14:45:39 +0200756 dm_table_run_md_queue_async(m->ti->table);
Mike Snitzer7e48c762016-09-14 10:47:03 -0400757 process_queued_io_list(m);
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400758 }
Hannes Reinecke63d832c2014-05-26 14:45:39 +0200759
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 return 0;
761}
762
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763/*
764 * An event is triggered whenever a path is taken out of use.
765 * Includes path failure and PG bypass.
766 */
David Howellsc4028952006-11-22 14:57:56 +0000767static void trigger_event(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768{
David Howellsc4028952006-11-22 14:57:56 +0000769 struct multipath *m =
770 container_of(work, struct multipath, trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
772 dm_table_event(m->ti->table);
773}
774
775/*-----------------------------------------------------------------
776 * Constructor/argument parsing:
777 * <#multipath feature args> [<arg>]*
778 * <#hw_handler args> [hw_handler [<arg>]*]
779 * <#priority groups>
780 * <initial priority group>
781 * [<selector> <#selector args> [<arg>]*
782 * <#paths> <#per-path selector args>
783 * [<path> [<arg>]* ]+ ]+
784 *---------------------------------------------------------------*/
Mike Snitzer498f0102011-08-02 12:32:04 +0100785static int parse_path_selector(struct dm_arg_set *as, struct priority_group *pg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 struct dm_target *ti)
787{
788 int r;
789 struct path_selector_type *pst;
790 unsigned ps_argc;
791
Mike Snitzer498f0102011-08-02 12:32:04 +0100792 static struct dm_arg _args[] = {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700793 {0, 1024, "invalid number of path selector args"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 };
795
Mike Snitzer498f0102011-08-02 12:32:04 +0100796 pst = dm_get_path_selector(dm_shift_arg(as));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 if (!pst) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700798 ti->error = "unknown path selector type";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 return -EINVAL;
800 }
801
Mike Snitzer498f0102011-08-02 12:32:04 +0100802 r = dm_read_arg_group(_args, as, &ps_argc, &ti->error);
Mikulas Patocka371b2e32008-07-21 12:00:24 +0100803 if (r) {
804 dm_put_path_selector(pst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 return -EINVAL;
Mikulas Patocka371b2e32008-07-21 12:00:24 +0100806 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
808 r = pst->create(&pg->ps, ps_argc, as->argv);
809 if (r) {
810 dm_put_path_selector(pst);
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700811 ti->error = "path selector constructor failed";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 return r;
813 }
814
815 pg->ps.type = pst;
Mike Snitzer498f0102011-08-02 12:32:04 +0100816 dm_consume_args(as, ps_argc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
818 return 0;
819}
820
Mike Snitzer498f0102011-08-02 12:32:04 +0100821static struct pgpath *parse_path(struct dm_arg_set *as, struct path_selector *ps,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 struct dm_target *ti)
823{
824 int r;
825 struct pgpath *p;
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700826 struct multipath *m = ti->private;
Mike Snitzera58a9352012-07-27 15:08:04 +0100827 struct request_queue *q = NULL;
828 const char *attached_handler_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
830 /* we need at least a path arg */
831 if (as->argc < 1) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700832 ti->error = "no device given";
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100833 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 }
835
836 p = alloc_pgpath();
837 if (!p)
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100838 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
Mike Snitzer498f0102011-08-02 12:32:04 +0100840 r = dm_get_device(ti, dm_shift_arg(as), dm_table_get_mode(ti->table),
Nikanth Karthikesan8215d6e2010-03-06 02:32:27 +0000841 &p->path.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 if (r) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700843 ti->error = "error getting device";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 goto bad;
845 }
846
Mike Snitzer518257b2016-03-17 16:32:10 -0400847 if (test_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags) || m->hw_handler_name)
Mike Snitzera58a9352012-07-27 15:08:04 +0100848 q = bdev_get_queue(p->path.dev->bdev);
Hannes Reineckea0cf7ea2009-06-22 10:12:11 +0100849
Mike Snitzer518257b2016-03-17 16:32:10 -0400850 if (test_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags)) {
Christoph Hellwig1bab0de2015-08-27 14:16:54 +0200851retain:
Mike Snitzera58a9352012-07-27 15:08:04 +0100852 attached_handler_name = scsi_dh_attached_handler_name(q, GFP_KERNEL);
853 if (attached_handler_name) {
854 /*
855 * Reset hw_handler_name to match the attached handler
856 * and clear any hw_handler_params associated with the
857 * ignored handler.
858 *
859 * NB. This modifies the table line to show the actual
860 * handler instead of the original table passed in.
861 */
862 kfree(m->hw_handler_name);
863 m->hw_handler_name = attached_handler_name;
864
865 kfree(m->hw_handler_params);
866 m->hw_handler_params = NULL;
867 }
868 }
869
870 if (m->hw_handler_name) {
Hannes Reineckea0cf7ea2009-06-22 10:12:11 +0100871 r = scsi_dh_attach(q, m->hw_handler_name);
872 if (r == -EBUSY) {
Christoph Hellwig1bab0de2015-08-27 14:16:54 +0200873 char b[BDEVNAME_SIZE];
Hannes Reineckea0cf7ea2009-06-22 10:12:11 +0100874
Christoph Hellwig1bab0de2015-08-27 14:16:54 +0200875 printk(KERN_INFO "dm-mpath: retaining handler on device %s\n",
876 bdevname(p->path.dev->bdev, b));
877 goto retain;
878 }
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700879 if (r < 0) {
Hannes Reineckea0cf7ea2009-06-22 10:12:11 +0100880 ti->error = "error attaching hardware handler";
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700881 dm_put_device(ti, p->path.dev);
882 goto bad;
883 }
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700884
885 if (m->hw_handler_params) {
886 r = scsi_dh_set_params(q, m->hw_handler_params);
887 if (r < 0) {
888 ti->error = "unable to set hardware "
889 "handler parameters";
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700890 dm_put_device(ti, p->path.dev);
891 goto bad;
892 }
893 }
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700894 }
895
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 r = ps->type->add_path(ps, &p->path, as->argc, as->argv, &ti->error);
897 if (r) {
898 dm_put_device(ti, p->path.dev);
899 goto bad;
900 }
901
902 return p;
903
904 bad:
905 free_pgpath(p);
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100906 return ERR_PTR(r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907}
908
Mike Snitzer498f0102011-08-02 12:32:04 +0100909static struct priority_group *parse_priority_group(struct dm_arg_set *as,
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700910 struct multipath *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911{
Mike Snitzer498f0102011-08-02 12:32:04 +0100912 static struct dm_arg _args[] = {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700913 {1, 1024, "invalid number of paths"},
914 {0, 1024, "invalid number of selector args"}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 };
916
917 int r;
Mike Snitzer498f0102011-08-02 12:32:04 +0100918 unsigned i, nr_selector_args, nr_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 struct priority_group *pg;
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700920 struct dm_target *ti = m->ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
922 if (as->argc < 2) {
923 as->argc = 0;
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100924 ti->error = "not enough priority group arguments";
925 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 }
927
928 pg = alloc_priority_group();
929 if (!pg) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700930 ti->error = "couldn't allocate priority group";
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100931 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 }
933 pg->m = m;
934
935 r = parse_path_selector(as, pg, ti);
936 if (r)
937 goto bad;
938
939 /*
940 * read the paths
941 */
Mike Snitzer498f0102011-08-02 12:32:04 +0100942 r = dm_read_arg(_args, as, &pg->nr_pgpaths, &ti->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 if (r)
944 goto bad;
945
Mike Snitzer498f0102011-08-02 12:32:04 +0100946 r = dm_read_arg(_args + 1, as, &nr_selector_args, &ti->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 if (r)
948 goto bad;
949
Mike Snitzer498f0102011-08-02 12:32:04 +0100950 nr_args = 1 + nr_selector_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 for (i = 0; i < pg->nr_pgpaths; i++) {
952 struct pgpath *pgpath;
Mike Snitzer498f0102011-08-02 12:32:04 +0100953 struct dm_arg_set path_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
Mike Snitzer498f0102011-08-02 12:32:04 +0100955 if (as->argc < nr_args) {
Mikulas Patocka148acff2008-07-21 12:00:30 +0100956 ti->error = "not enough path parameters";
Alasdair G Kergon6bbf79a12010-08-12 04:13:49 +0100957 r = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 goto bad;
Mikulas Patocka148acff2008-07-21 12:00:30 +0100959 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
Mike Snitzer498f0102011-08-02 12:32:04 +0100961 path_args.argc = nr_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 path_args.argv = as->argv;
963
964 pgpath = parse_path(&path_args, &pg->ps, ti);
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100965 if (IS_ERR(pgpath)) {
966 r = PTR_ERR(pgpath);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 goto bad;
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100968 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
970 pgpath->pg = pg;
971 list_add_tail(&pgpath->list, &pg->pgpaths);
Mike Snitzer498f0102011-08-02 12:32:04 +0100972 dm_consume_args(as, nr_args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 }
974
975 return pg;
976
977 bad:
978 free_priority_group(pg, ti);
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100979 return ERR_PTR(r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980}
981
Mike Snitzer498f0102011-08-02 12:32:04 +0100982static int parse_hw_handler(struct dm_arg_set *as, struct multipath *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 unsigned hw_argc;
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700985 int ret;
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700986 struct dm_target *ti = m->ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
Mike Snitzer498f0102011-08-02 12:32:04 +0100988 static struct dm_arg _args[] = {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700989 {0, 1024, "invalid number of hardware handler args"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 };
991
Mike Snitzer498f0102011-08-02 12:32:04 +0100992 if (dm_read_arg_group(_args, as, &hw_argc, &ti->error))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 return -EINVAL;
994
995 if (!hw_argc)
996 return 0;
997
Mike Snitzere83068a2016-05-24 21:16:51 -0400998 if (m->queue_mode == DM_TYPE_BIO_BASED) {
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400999 dm_consume_args(as, hw_argc);
1000 DMERR("bio-based multipath doesn't allow hardware handler args");
1001 return 0;
1002 }
1003
Mike Snitzer498f0102011-08-02 12:32:04 +01001004 m->hw_handler_name = kstrdup(dm_shift_arg(as), GFP_KERNEL);
tang.junhuif97dc422016-10-28 17:04:46 +08001005 if (!m->hw_handler_name)
1006 return -EINVAL;
Chandra Seetharaman14e98c52008-11-13 23:39:06 +00001007
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -07001008 if (hw_argc > 1) {
1009 char *p;
1010 int i, j, len = 4;
1011
1012 for (i = 0; i <= hw_argc - 2; i++)
1013 len += strlen(as->argv[i]) + 1;
1014 p = m->hw_handler_params = kzalloc(len, GFP_KERNEL);
1015 if (!p) {
1016 ti->error = "memory allocation failed";
1017 ret = -ENOMEM;
1018 goto fail;
1019 }
1020 j = sprintf(p, "%d", hw_argc - 1);
1021 for (i = 0, p+=j+1; i <= hw_argc - 2; i++, p+=j+1)
1022 j = sprintf(p, "%s", as->argv[i]);
1023 }
Mike Snitzer498f0102011-08-02 12:32:04 +01001024 dm_consume_args(as, hw_argc - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
1026 return 0;
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -07001027fail:
1028 kfree(m->hw_handler_name);
1029 m->hw_handler_name = NULL;
1030 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031}
1032
Mike Snitzer498f0102011-08-02 12:32:04 +01001033static int parse_features(struct dm_arg_set *as, struct multipath *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034{
1035 int r;
1036 unsigned argc;
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -07001037 struct dm_target *ti = m->ti;
Mike Snitzer498f0102011-08-02 12:32:04 +01001038 const char *arg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
Mike Snitzer498f0102011-08-02 12:32:04 +01001040 static struct dm_arg _args[] = {
Mike Snitzere83068a2016-05-24 21:16:51 -04001041 {0, 8, "invalid number of feature args"},
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001042 {1, 50, "pg_init_retries must be between 1 and 50"},
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +00001043 {0, 60000, "pg_init_delay_msecs must be between 0 and 60000"},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 };
1045
Mike Snitzer498f0102011-08-02 12:32:04 +01001046 r = dm_read_arg_group(_args, as, &argc, &ti->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 if (r)
1048 return -EINVAL;
1049
1050 if (!argc)
1051 return 0;
1052
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001053 do {
Mike Snitzer498f0102011-08-02 12:32:04 +01001054 arg_name = dm_shift_arg(as);
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001055 argc--;
1056
Mike Snitzer498f0102011-08-02 12:32:04 +01001057 if (!strcasecmp(arg_name, "queue_if_no_path")) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001058 r = queue_if_no_path(m, true, false);
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001059 continue;
1060 }
1061
Mike Snitzera58a9352012-07-27 15:08:04 +01001062 if (!strcasecmp(arg_name, "retain_attached_hw_handler")) {
Mike Snitzer518257b2016-03-17 16:32:10 -04001063 set_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags);
Mike Snitzera58a9352012-07-27 15:08:04 +01001064 continue;
1065 }
1066
Mike Snitzer498f0102011-08-02 12:32:04 +01001067 if (!strcasecmp(arg_name, "pg_init_retries") &&
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001068 (argc >= 1)) {
Mike Snitzer498f0102011-08-02 12:32:04 +01001069 r = dm_read_arg(_args + 1, as, &m->pg_init_retries, &ti->error);
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001070 argc--;
1071 continue;
1072 }
1073
Mike Snitzer498f0102011-08-02 12:32:04 +01001074 if (!strcasecmp(arg_name, "pg_init_delay_msecs") &&
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +00001075 (argc >= 1)) {
Mike Snitzer498f0102011-08-02 12:32:04 +01001076 r = dm_read_arg(_args + 2, as, &m->pg_init_delay_msecs, &ti->error);
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +00001077 argc--;
1078 continue;
1079 }
1080
Mike Snitzere83068a2016-05-24 21:16:51 -04001081 if (!strcasecmp(arg_name, "queue_mode") &&
1082 (argc >= 1)) {
1083 const char *queue_mode_name = dm_shift_arg(as);
1084
1085 if (!strcasecmp(queue_mode_name, "bio"))
1086 m->queue_mode = DM_TYPE_BIO_BASED;
1087 else if (!strcasecmp(queue_mode_name, "rq"))
1088 m->queue_mode = DM_TYPE_REQUEST_BASED;
1089 else if (!strcasecmp(queue_mode_name, "mq"))
1090 m->queue_mode = DM_TYPE_MQ_REQUEST_BASED;
1091 else {
1092 ti->error = "Unknown 'queue_mode' requested";
1093 r = -EINVAL;
1094 }
1095 argc--;
1096 continue;
1097 }
1098
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 ti->error = "Unrecognised multipath feature request";
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001100 r = -EINVAL;
1101 } while (argc && !r);
1102
1103 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104}
1105
Mike Snitzere83068a2016-05-24 21:16:51 -04001106static int multipath_ctr(struct dm_target *ti, unsigned argc, char **argv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107{
Mike Snitzer498f0102011-08-02 12:32:04 +01001108 /* target arguments */
1109 static struct dm_arg _args[] = {
Mike Snitzera490a072011-03-24 13:54:33 +00001110 {0, 1024, "invalid number of priority groups"},
1111 {0, 1024, "invalid initial priority group number"},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 };
1113
1114 int r;
1115 struct multipath *m;
Mike Snitzer498f0102011-08-02 12:32:04 +01001116 struct dm_arg_set as;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 unsigned pg_count = 0;
1118 unsigned next_pg_num;
1119
1120 as.argc = argc;
1121 as.argv = argv;
1122
Mike Snitzere83068a2016-05-24 21:16:51 -04001123 m = alloc_multipath(ti);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 if (!m) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001125 ti->error = "can't allocate multipath";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 return -EINVAL;
1127 }
1128
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -07001129 r = parse_features(&as, m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 if (r)
1131 goto bad;
1132
Mike Snitzere83068a2016-05-24 21:16:51 -04001133 r = alloc_multipath_stage2(ti, m);
1134 if (r)
1135 goto bad;
1136
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -07001137 r = parse_hw_handler(&as, m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 if (r)
1139 goto bad;
1140
Mike Snitzer498f0102011-08-02 12:32:04 +01001141 r = dm_read_arg(_args, &as, &m->nr_priority_groups, &ti->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 if (r)
1143 goto bad;
1144
Mike Snitzer498f0102011-08-02 12:32:04 +01001145 r = dm_read_arg(_args + 1, &as, &next_pg_num, &ti->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 if (r)
1147 goto bad;
1148
Mike Snitzera490a072011-03-24 13:54:33 +00001149 if ((!m->nr_priority_groups && next_pg_num) ||
1150 (m->nr_priority_groups && !next_pg_num)) {
1151 ti->error = "invalid initial priority group";
1152 r = -EINVAL;
1153 goto bad;
1154 }
1155
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 /* parse the priority groups */
1157 while (as.argc) {
1158 struct priority_group *pg;
Mike Snitzer91e968a2016-03-17 17:10:15 -04001159 unsigned nr_valid_paths = atomic_read(&m->nr_valid_paths);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -07001161 pg = parse_priority_group(&as, m);
Benjamin Marzinski01460f32008-10-10 13:36:57 +01001162 if (IS_ERR(pg)) {
1163 r = PTR_ERR(pg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 goto bad;
1165 }
1166
Mike Snitzer91e968a2016-03-17 17:10:15 -04001167 nr_valid_paths += pg->nr_pgpaths;
1168 atomic_set(&m->nr_valid_paths, nr_valid_paths);
1169
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 list_add_tail(&pg->list, &m->priority_groups);
1171 pg_count++;
1172 pg->pg_num = pg_count;
1173 if (!--next_pg_num)
1174 m->next_pg = pg;
1175 }
1176
1177 if (pg_count != m->nr_priority_groups) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001178 ti->error = "priority group count mismatch";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 r = -EINVAL;
1180 goto bad;
1181 }
1182
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001183 ti->num_flush_bios = 1;
1184 ti->num_discard_bios = 1;
Mike Snitzer042bcef82013-05-10 14:37:16 +01001185 ti->num_write_same_bios = 1;
Mike Snitzere83068a2016-05-24 21:16:51 -04001186 if (m->queue_mode == DM_TYPE_BIO_BASED)
Mike Snitzerbf661be2016-05-24 15:48:08 -04001187 ti->per_io_data_size = multipath_per_bio_data_size();
Mike Snitzere83068a2016-05-24 21:16:51 -04001188 else if (m->queue_mode == DM_TYPE_MQ_REQUEST_BASED)
Mike Snitzer8637a6b2016-01-31 12:08:36 -05001189 ti->per_io_data_size = sizeof(struct dm_mpath_io);
Mikulas Patocka86279212009-06-22 10:12:24 +01001190
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 return 0;
1192
1193 bad:
1194 free_multipath(m);
1195 return r;
1196}
1197
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001198static void multipath_wait_for_pg_init_completion(struct multipath *m)
1199{
Bart Van Assche9f4c3f82016-08-31 15:16:43 -07001200 DEFINE_WAIT(wait);
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001201
1202 while (1) {
Bart Van Assche9f4c3f82016-08-31 15:16:43 -07001203 prepare_to_wait(&m->pg_init_wait, &wait, TASK_UNINTERRUPTIBLE);
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001204
Mike Snitzer91e968a2016-03-17 17:10:15 -04001205 if (!atomic_read(&m->pg_init_in_progress))
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001206 break;
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001207
1208 io_schedule();
1209 }
Bart Van Assche9f4c3f82016-08-31 15:16:43 -07001210 finish_wait(&m->pg_init_wait, &wait);
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001211}
1212
1213static void flush_multipath_work(struct multipath *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214{
Mike Snitzer518257b2016-03-17 16:32:10 -04001215 set_bit(MPATHF_PG_INIT_DISABLED, &m->flags);
1216 smp_mb__after_atomic();
Shiva Krishna Merla954a73d2013-10-30 03:26:38 +00001217
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001218 flush_workqueue(kmpath_handlerd);
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001219 multipath_wait_for_pg_init_completion(m);
Alasdair G Kergona044d012005-07-12 15:53:02 -07001220 flush_workqueue(kmultipathd);
Tejun Heo43829732012-08-20 14:51:24 -07001221 flush_work(&m->trigger_event);
Shiva Krishna Merla954a73d2013-10-30 03:26:38 +00001222
Mike Snitzer518257b2016-03-17 16:32:10 -04001223 clear_bit(MPATHF_PG_INIT_DISABLED, &m->flags);
1224 smp_mb__after_atomic();
Kiyoshi Ueda6df400a2009-12-10 23:52:19 +00001225}
1226
1227static void multipath_dtr(struct dm_target *ti)
1228{
1229 struct multipath *m = ti->private;
1230
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001231 flush_multipath_work(m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 free_multipath(m);
1233}
1234
1235/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 * Take a path out of use.
1237 */
1238static int fail_path(struct pgpath *pgpath)
1239{
1240 unsigned long flags;
1241 struct multipath *m = pgpath->pg->m;
1242
1243 spin_lock_irqsave(&m->lock, flags);
1244
Kiyoshi Ueda66800732008-10-10 13:36:58 +01001245 if (!pgpath->is_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 goto out;
1247
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001248 DMWARN("Failing path %s.", pgpath->path.dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
1250 pgpath->pg->ps.type->fail_path(&pgpath->pg->ps, &pgpath->path);
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001251 pgpath->is_active = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 pgpath->fail_count++;
1253
Mike Snitzer91e968a2016-03-17 17:10:15 -04001254 atomic_dec(&m->nr_valid_paths);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
1256 if (pgpath == m->current_pgpath)
1257 m->current_pgpath = NULL;
1258
Mike Andersonb15546f2007-10-19 22:48:02 +01001259 dm_path_uevent(DM_UEVENT_PATH_FAILED, m->ti,
Mike Snitzer91e968a2016-03-17 17:10:15 -04001260 pgpath->path.dev->name, atomic_read(&m->nr_valid_paths));
Mike Andersonb15546f2007-10-19 22:48:02 +01001261
Alasdair G Kergonfe9cf302009-01-06 03:05:13 +00001262 schedule_work(&m->trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263
1264out:
1265 spin_unlock_irqrestore(&m->lock, flags);
1266
1267 return 0;
1268}
1269
1270/*
1271 * Reinstate a previously-failed path
1272 */
1273static int reinstate_path(struct pgpath *pgpath)
1274{
Hannes Reinecke63d832c2014-05-26 14:45:39 +02001275 int r = 0, run_queue = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 unsigned long flags;
1277 struct multipath *m = pgpath->pg->m;
Mike Snitzer91e968a2016-03-17 17:10:15 -04001278 unsigned nr_valid_paths;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
1280 spin_lock_irqsave(&m->lock, flags);
1281
Kiyoshi Ueda66800732008-10-10 13:36:58 +01001282 if (pgpath->is_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 goto out;
1284
Mike Snitzerec31f3f2016-02-20 12:49:43 -05001285 DMWARN("Reinstating path %s.", pgpath->path.dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
1287 r = pgpath->pg->ps.type->reinstate_path(&pgpath->pg->ps, &pgpath->path);
1288 if (r)
1289 goto out;
1290
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001291 pgpath->is_active = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292
Mike Snitzer91e968a2016-03-17 17:10:15 -04001293 nr_valid_paths = atomic_inc_return(&m->nr_valid_paths);
1294 if (nr_valid_paths == 1) {
Chandra Seetharamane54f77d2009-06-22 10:12:12 +01001295 m->current_pgpath = NULL;
Hannes Reinecke63d832c2014-05-26 14:45:39 +02001296 run_queue = 1;
Chandra Seetharamane54f77d2009-06-22 10:12:12 +01001297 } else if (m->hw_handler_name && (m->current_pg == pgpath->pg)) {
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +00001298 if (queue_work(kmpath_handlerd, &pgpath->activate_path.work))
Mike Snitzer91e968a2016-03-17 17:10:15 -04001299 atomic_inc(&m->pg_init_in_progress);
Chandra Seetharamane54f77d2009-06-22 10:12:12 +01001300 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
Mike Andersonb15546f2007-10-19 22:48:02 +01001302 dm_path_uevent(DM_UEVENT_PATH_REINSTATED, m->ti,
Mike Snitzer91e968a2016-03-17 17:10:15 -04001303 pgpath->path.dev->name, nr_valid_paths);
Mike Andersonb15546f2007-10-19 22:48:02 +01001304
Alasdair G Kergonfe9cf302009-01-06 03:05:13 +00001305 schedule_work(&m->trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
1307out:
1308 spin_unlock_irqrestore(&m->lock, flags);
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001309 if (run_queue) {
Hannes Reinecke63d832c2014-05-26 14:45:39 +02001310 dm_table_run_md_queue_async(m->ti->table);
Mike Snitzer7e48c762016-09-14 10:47:03 -04001311 process_queued_io_list(m);
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001312 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
1314 return r;
1315}
1316
1317/*
1318 * Fail or reinstate all paths that match the provided struct dm_dev.
1319 */
1320static int action_dev(struct multipath *m, struct dm_dev *dev,
1321 action_fn action)
1322{
Mike Snitzer19040c02011-03-24 13:54:31 +00001323 int r = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 struct pgpath *pgpath;
1325 struct priority_group *pg;
1326
1327 list_for_each_entry(pg, &m->priority_groups, list) {
1328 list_for_each_entry(pgpath, &pg->pgpaths, list) {
1329 if (pgpath->path.dev == dev)
1330 r = action(pgpath);
1331 }
1332 }
1333
1334 return r;
1335}
1336
1337/*
1338 * Temporarily try to avoid having to use the specified PG
1339 */
1340static void bypass_pg(struct multipath *m, struct priority_group *pg,
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001341 bool bypassed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342{
1343 unsigned long flags;
1344
1345 spin_lock_irqsave(&m->lock, flags);
1346
1347 pg->bypassed = bypassed;
1348 m->current_pgpath = NULL;
1349 m->current_pg = NULL;
1350
1351 spin_unlock_irqrestore(&m->lock, flags);
1352
Alasdair G Kergonfe9cf302009-01-06 03:05:13 +00001353 schedule_work(&m->trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354}
1355
1356/*
1357 * Switch to using the specified PG from the next I/O that gets mapped
1358 */
1359static int switch_pg_num(struct multipath *m, const char *pgstr)
1360{
1361 struct priority_group *pg;
1362 unsigned pgnum;
1363 unsigned long flags;
Mikulas Patocka31998ef2012-03-28 18:41:26 +01001364 char dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365
Mikulas Patocka31998ef2012-03-28 18:41:26 +01001366 if (!pgstr || (sscanf(pgstr, "%u%c", &pgnum, &dummy) != 1) || !pgnum ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 (pgnum > m->nr_priority_groups)) {
1368 DMWARN("invalid PG number supplied to switch_pg_num");
1369 return -EINVAL;
1370 }
1371
1372 spin_lock_irqsave(&m->lock, flags);
1373 list_for_each_entry(pg, &m->priority_groups, list) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001374 pg->bypassed = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 if (--pgnum)
1376 continue;
1377
1378 m->current_pgpath = NULL;
1379 m->current_pg = NULL;
1380 m->next_pg = pg;
1381 }
1382 spin_unlock_irqrestore(&m->lock, flags);
1383
Alasdair G Kergonfe9cf302009-01-06 03:05:13 +00001384 schedule_work(&m->trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 return 0;
1386}
1387
1388/*
1389 * Set/clear bypassed status of a PG.
1390 * PGs are numbered upwards from 1 in the order they were declared.
1391 */
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001392static int bypass_pg_num(struct multipath *m, const char *pgstr, bool bypassed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393{
1394 struct priority_group *pg;
1395 unsigned pgnum;
Mikulas Patocka31998ef2012-03-28 18:41:26 +01001396 char dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
Mikulas Patocka31998ef2012-03-28 18:41:26 +01001398 if (!pgstr || (sscanf(pgstr, "%u%c", &pgnum, &dummy) != 1) || !pgnum ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 (pgnum > m->nr_priority_groups)) {
1400 DMWARN("invalid PG number supplied to bypass_pg");
1401 return -EINVAL;
1402 }
1403
1404 list_for_each_entry(pg, &m->priority_groups, list) {
1405 if (!--pgnum)
1406 break;
1407 }
1408
1409 bypass_pg(m, pg, bypassed);
1410 return 0;
1411}
1412
1413/*
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001414 * Should we retry pg_init immediately?
1415 */
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001416static bool pg_init_limit_reached(struct multipath *m, struct pgpath *pgpath)
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001417{
1418 unsigned long flags;
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001419 bool limit_reached = false;
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001420
1421 spin_lock_irqsave(&m->lock, flags);
1422
Mike Snitzer91e968a2016-03-17 17:10:15 -04001423 if (atomic_read(&m->pg_init_count) <= m->pg_init_retries &&
1424 !test_bit(MPATHF_PG_INIT_DISABLED, &m->flags))
Mike Snitzer518257b2016-03-17 16:32:10 -04001425 set_bit(MPATHF_PG_INIT_REQUIRED, &m->flags);
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001426 else
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001427 limit_reached = true;
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001428
1429 spin_unlock_irqrestore(&m->lock, flags);
1430
1431 return limit_reached;
1432}
1433
Chandra Seetharaman3ae31f62009-10-21 09:22:46 -07001434static void pg_init_done(void *data, int errors)
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001435{
Moger, Babu83c0d5d2010-03-06 02:29:45 +00001436 struct pgpath *pgpath = data;
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001437 struct priority_group *pg = pgpath->pg;
1438 struct multipath *m = pg->m;
1439 unsigned long flags;
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001440 bool delay_retry = false;
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001441
1442 /* device or driver problems */
1443 switch (errors) {
1444 case SCSI_DH_OK:
1445 break;
1446 case SCSI_DH_NOSYS:
1447 if (!m->hw_handler_name) {
1448 errors = 0;
1449 break;
1450 }
Moger, Babuf7b934c82010-03-06 02:29:49 +00001451 DMERR("Could not failover the device: Handler scsi_dh_%s "
1452 "Error %d.", m->hw_handler_name, errors);
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001453 /*
1454 * Fail path for now, so we do not ping pong
1455 */
1456 fail_path(pgpath);
1457 break;
1458 case SCSI_DH_DEV_TEMP_BUSY:
1459 /*
1460 * Probably doing something like FW upgrade on the
1461 * controller so try the other pg.
1462 */
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001463 bypass_pg(m, pg, true);
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001464 break;
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001465 case SCSI_DH_RETRY:
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +00001466 /* Wait before retrying. */
1467 delay_retry = 1;
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001468 case SCSI_DH_IMM_RETRY:
1469 case SCSI_DH_RES_TEMP_UNAVAIL:
1470 if (pg_init_limit_reached(m, pgpath))
1471 fail_path(pgpath);
1472 errors = 0;
1473 break;
Mike Snitzerec31f3f2016-02-20 12:49:43 -05001474 case SCSI_DH_DEV_OFFLINED:
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001475 default:
1476 /*
1477 * We probably do not want to fail the path for a device
1478 * error, but this is what the old dm did. In future
1479 * patches we can do more advanced handling.
1480 */
1481 fail_path(pgpath);
1482 }
1483
1484 spin_lock_irqsave(&m->lock, flags);
1485 if (errors) {
Chandra Seetharamane54f77d2009-06-22 10:12:12 +01001486 if (pgpath == m->current_pgpath) {
1487 DMERR("Could not failover device. Error %d.", errors);
1488 m->current_pgpath = NULL;
1489 m->current_pg = NULL;
1490 }
Mike Snitzer518257b2016-03-17 16:32:10 -04001491 } else if (!test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags))
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001492 pg->bypassed = false;
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001493
Mike Snitzer91e968a2016-03-17 17:10:15 -04001494 if (atomic_dec_return(&m->pg_init_in_progress) > 0)
Kiyoshi Uedad0259bf2010-03-06 02:30:02 +00001495 /* Activations of other paths are still on going */
1496 goto out;
1497
Mike Snitzer518257b2016-03-17 16:32:10 -04001498 if (test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags)) {
1499 if (delay_retry)
1500 set_bit(MPATHF_PG_INIT_DELAY_RETRY, &m->flags);
1501 else
1502 clear_bit(MPATHF_PG_INIT_DELAY_RETRY, &m->flags);
1503
Hannes Reinecke3e9f1be2014-02-28 15:33:45 +01001504 if (__pg_init_all_paths(m))
1505 goto out;
1506 }
Mike Snitzer518257b2016-03-17 16:32:10 -04001507 clear_bit(MPATHF_QUEUE_IO, &m->flags);
Kiyoshi Uedad0259bf2010-03-06 02:30:02 +00001508
Mike Snitzer7e48c762016-09-14 10:47:03 -04001509 process_queued_io_list(m);
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001510
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001511 /*
1512 * Wake up any thread waiting to suspend.
1513 */
1514 wake_up(&m->pg_init_wait);
1515
Kiyoshi Uedad0259bf2010-03-06 02:30:02 +00001516out:
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001517 spin_unlock_irqrestore(&m->lock, flags);
1518}
1519
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001520static void activate_path(struct work_struct *work)
1521{
Chandra Seetharamane54f77d2009-06-22 10:12:12 +01001522 struct pgpath *pgpath =
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +00001523 container_of(work, struct pgpath, activate_path.work);
Mike Snitzerf10e06b2016-09-01 12:06:37 -04001524 struct request_queue *q = bdev_get_queue(pgpath->path.dev->bdev);
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001525
Mike Snitzerf10e06b2016-09-01 12:06:37 -04001526 if (pgpath->is_active && !blk_queue_dying(q))
1527 scsi_dh_activate(q, pg_init_done, pgpath);
Hannes Reinecke3a017502014-02-28 15:33:49 +01001528 else
1529 pg_init_done(pgpath, SCSI_DH_DEV_OFFLINED);
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001530}
1531
Hannes Reinecke7e782af2013-07-01 15:16:26 +02001532static int noretry_error(int error)
1533{
1534 switch (error) {
Hannes Reinecke8ff232c2015-07-15 13:23:24 +02001535 case -EBADE:
1536 /*
1537 * EBADE signals an reservation conflict.
1538 * We shouldn't fail the path here as we can communicate with
1539 * the target. We should failover to the next path, but in
1540 * doing so we might be causing a ping-pong between paths.
1541 * So just return the reservation conflict error.
1542 */
Hannes Reinecke7e782af2013-07-01 15:16:26 +02001543 case -EOPNOTSUPP:
1544 case -EREMOTEIO:
1545 case -EILSEQ:
1546 case -ENODATA:
Jun'ichi Nomuracc9d3c32013-09-13 14:54:30 +09001547 case -ENOSPC:
Hannes Reinecke7e782af2013-07-01 15:16:26 +02001548 return 1;
1549 }
1550
1551 /* Anything else could be a path failure, so should be retried */
1552 return 0;
1553}
1554
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555/*
1556 * end_io handling
1557 */
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001558static int do_end_io(struct multipath *m, struct request *clone,
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001559 int error, struct dm_mpath_io *mpio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560{
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001561 /*
1562 * We don't queue any clone request inside the multipath target
1563 * during end I/O handling, since those clone requests don't have
1564 * bio clones. If we queue them inside the multipath target,
1565 * we need to make bio clones, that requires memory allocation.
Mike Snitzer4cc96132016-05-12 16:28:10 -04001566 * (See drivers/md/dm-rq.c:end_clone_bio() about why the clone requests
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001567 * don't have bio clones.)
1568 * Instead of queueing the clone request here, we queue the original
1569 * request into dm core, which will remake a clone request and
1570 * clone bios for it and resubmit it later.
1571 */
1572 int r = DM_ENDIO_REQUEUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001574 if (!error && !clone->errors)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 return 0; /* I/O complete */
1576
Mike Snitzer7eee4ae2014-06-02 15:50:06 -04001577 if (noretry_error(error))
Mike Snitzer959eb4e2010-08-12 04:14:32 +01001578 return error;
1579
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001580 if (mpio->pgpath)
1581 fail_path(mpio->pgpath);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582
Mike Snitzer91e968a2016-03-17 17:10:15 -04001583 if (!atomic_read(&m->nr_valid_paths)) {
Mike Snitzer518257b2016-03-17 16:32:10 -04001584 if (!test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags)) {
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001585 if (!must_push_back_rq(m))
Hannes Reinecke751b2a72011-01-18 10:13:12 +01001586 r = -EIO;
Hannes Reinecke751b2a72011-01-18 10:13:12 +01001587 }
1588 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001590 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591}
1592
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001593static int multipath_end_io(struct dm_target *ti, struct request *clone,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 int error, union map_info *map_context)
1595{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001596 struct multipath *m = ti->private;
Mike Snitzer2eff1922016-02-03 09:13:14 -05001597 struct dm_mpath_io *mpio = get_mpio(map_context);
Wei Yongjuna71a2612012-10-12 16:59:42 +01001598 struct pgpath *pgpath;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 struct path_selector *ps;
1600 int r;
1601
Jun'ichi Nomura466891f2012-03-28 18:41:25 +01001602 BUG_ON(!mpio);
1603
Mike Snitzer2eff1922016-02-03 09:13:14 -05001604 r = do_end_io(m, clone, error, mpio);
Wei Yongjuna71a2612012-10-12 16:59:42 +01001605 pgpath = mpio->pgpath;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 if (pgpath) {
1607 ps = &pgpath->pg->ps;
1608 if (ps->type->end_io)
Kiyoshi Ueda02ab8232009-06-22 10:12:27 +01001609 ps->type->end_io(ps, &pgpath->path, mpio->nr_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 }
Mike Snitzer2eff1922016-02-03 09:13:14 -05001611 clear_request_fn_mpio(m, map_context);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612
1613 return r;
1614}
1615
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001616static int do_end_io_bio(struct multipath *m, struct bio *clone,
1617 int error, struct dm_mpath_io *mpio)
1618{
1619 unsigned long flags;
1620
1621 if (!error)
1622 return 0; /* I/O complete */
1623
1624 if (noretry_error(error))
1625 return error;
1626
1627 if (mpio->pgpath)
1628 fail_path(mpio->pgpath);
1629
1630 if (!atomic_read(&m->nr_valid_paths)) {
1631 if (!test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags)) {
1632 if (!must_push_back_bio(m))
1633 return -EIO;
1634 return DM_ENDIO_REQUEUE;
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001635 }
1636 }
1637
1638 /* Queue for the daemon to resubmit */
Mike Snitzerbf661be2016-05-24 15:48:08 -04001639 dm_bio_restore(get_bio_details_from_bio(clone), clone);
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001640
1641 spin_lock_irqsave(&m->lock, flags);
1642 bio_list_add(&m->queued_bios, clone);
1643 spin_unlock_irqrestore(&m->lock, flags);
1644 if (!test_bit(MPATHF_QUEUE_IO, &m->flags))
1645 queue_work(kmultipathd, &m->process_queued_bios);
1646
1647 return DM_ENDIO_INCOMPLETE;
1648}
1649
1650static int multipath_end_io_bio(struct dm_target *ti, struct bio *clone, int error)
1651{
1652 struct multipath *m = ti->private;
1653 struct dm_mpath_io *mpio = get_mpio_from_bio(clone);
1654 struct pgpath *pgpath;
1655 struct path_selector *ps;
1656 int r;
1657
1658 BUG_ON(!mpio);
1659
1660 r = do_end_io_bio(m, clone, error, mpio);
1661 pgpath = mpio->pgpath;
1662 if (pgpath) {
1663 ps = &pgpath->pg->ps;
1664 if (ps->type->end_io)
1665 ps->type->end_io(ps, &pgpath->path, mpio->nr_bytes);
1666 }
1667
1668 return r;
1669}
1670
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671/*
1672 * Suspend can't complete until all the I/O is processed so if
Alasdair G Kergon436d4102005-07-12 15:53:03 -07001673 * the last path fails we must error any remaining I/O.
1674 * Note that if the freeze_bdev fails while suspending, the
1675 * queue_if_no_path state is lost - userspace should reset it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 */
1677static void multipath_presuspend(struct dm_target *ti)
1678{
Mike Snitzer7943bd62016-02-02 21:53:15 -05001679 struct multipath *m = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001681 queue_if_no_path(m, false, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682}
1683
Kiyoshi Ueda6df400a2009-12-10 23:52:19 +00001684static void multipath_postsuspend(struct dm_target *ti)
1685{
Mike Anderson6380f262009-12-10 23:52:21 +00001686 struct multipath *m = ti->private;
1687
1688 mutex_lock(&m->work_mutex);
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001689 flush_multipath_work(m);
Mike Anderson6380f262009-12-10 23:52:21 +00001690 mutex_unlock(&m->work_mutex);
Kiyoshi Ueda6df400a2009-12-10 23:52:19 +00001691}
1692
Alasdair G Kergon436d4102005-07-12 15:53:03 -07001693/*
1694 * Restore the queue_if_no_path setting.
1695 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696static void multipath_resume(struct dm_target *ti)
1697{
Mike Snitzer7943bd62016-02-02 21:53:15 -05001698 struct multipath *m = ti->private;
Mike Snitzer1814f2e2016-07-25 21:08:51 -04001699 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
Mike Snitzer1814f2e2016-07-25 21:08:51 -04001701 spin_lock_irqsave(&m->lock, flags);
Mike Snitzer518257b2016-03-17 16:32:10 -04001702 if (test_bit(MPATHF_SAVED_QUEUE_IF_NO_PATH, &m->flags))
1703 set_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags);
1704 else
1705 clear_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags);
Mike Snitzer1814f2e2016-07-25 21:08:51 -04001706 spin_unlock_irqrestore(&m->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707}
1708
1709/*
1710 * Info output has the following format:
1711 * num_multipath_feature_args [multipath_feature_args]*
1712 * num_handler_status_args [handler_status_args]*
1713 * num_groups init_group_number
1714 * [A|D|E num_ps_status_args [ps_status_args]*
1715 * num_paths num_selector_args
1716 * [path_dev A|F fail_count [selector_args]* ]+ ]+
1717 *
1718 * Table output has the following format (identical to the constructor string):
1719 * num_feature_args [features_args]*
1720 * num_handler_args hw_handler [hw_handler_args]*
1721 * num_groups init_group_number
1722 * [priority selector-name num_ps_args [ps_args]*
1723 * num_paths num_selector_args [path_dev [selector_args]* ]+ ]+
1724 */
Mikulas Patockafd7c092e2013-03-01 22:45:44 +00001725static void multipath_status(struct dm_target *ti, status_type_t type,
1726 unsigned status_flags, char *result, unsigned maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727{
1728 int sz = 0;
1729 unsigned long flags;
Mike Snitzer7943bd62016-02-02 21:53:15 -05001730 struct multipath *m = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 struct priority_group *pg;
1732 struct pgpath *p;
1733 unsigned pg_num;
1734 char state;
1735
1736 spin_lock_irqsave(&m->lock, flags);
1737
1738 /* Features */
1739 if (type == STATUSTYPE_INFO)
Mike Snitzer91e968a2016-03-17 17:10:15 -04001740 DMEMIT("2 %u %u ", test_bit(MPATHF_QUEUE_IO, &m->flags),
1741 atomic_read(&m->pg_init_count));
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001742 else {
Mike Snitzer518257b2016-03-17 16:32:10 -04001743 DMEMIT("%u ", test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags) +
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +00001744 (m->pg_init_retries > 0) * 2 +
Mike Snitzera58a9352012-07-27 15:08:04 +01001745 (m->pg_init_delay_msecs != DM_PG_INIT_DELAY_DEFAULT) * 2 +
Mike Snitzere83068a2016-05-24 21:16:51 -04001746 test_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags) +
1747 (m->queue_mode != DM_TYPE_REQUEST_BASED) * 2);
1748
Mike Snitzer518257b2016-03-17 16:32:10 -04001749 if (test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001750 DMEMIT("queue_if_no_path ");
1751 if (m->pg_init_retries)
1752 DMEMIT("pg_init_retries %u ", m->pg_init_retries);
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +00001753 if (m->pg_init_delay_msecs != DM_PG_INIT_DELAY_DEFAULT)
1754 DMEMIT("pg_init_delay_msecs %u ", m->pg_init_delay_msecs);
Mike Snitzer518257b2016-03-17 16:32:10 -04001755 if (test_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags))
Mike Snitzera58a9352012-07-27 15:08:04 +01001756 DMEMIT("retain_attached_hw_handler ");
Mike Snitzere83068a2016-05-24 21:16:51 -04001757 if (m->queue_mode != DM_TYPE_REQUEST_BASED) {
1758 switch(m->queue_mode) {
1759 case DM_TYPE_BIO_BASED:
1760 DMEMIT("queue_mode bio ");
1761 break;
1762 case DM_TYPE_MQ_REQUEST_BASED:
1763 DMEMIT("queue_mode mq ");
1764 break;
1765 }
1766 }
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001767 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001769 if (!m->hw_handler_name || type == STATUSTYPE_INFO)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 DMEMIT("0 ");
1771 else
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001772 DMEMIT("1 %s ", m->hw_handler_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773
1774 DMEMIT("%u ", m->nr_priority_groups);
1775
1776 if (m->next_pg)
1777 pg_num = m->next_pg->pg_num;
1778 else if (m->current_pg)
1779 pg_num = m->current_pg->pg_num;
1780 else
Mike Snitzera490a072011-03-24 13:54:33 +00001781 pg_num = (m->nr_priority_groups ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782
1783 DMEMIT("%u ", pg_num);
1784
1785 switch (type) {
1786 case STATUSTYPE_INFO:
1787 list_for_each_entry(pg, &m->priority_groups, list) {
1788 if (pg->bypassed)
1789 state = 'D'; /* Disabled */
1790 else if (pg == m->current_pg)
1791 state = 'A'; /* Currently Active */
1792 else
1793 state = 'E'; /* Enabled */
1794
1795 DMEMIT("%c ", state);
1796
1797 if (pg->ps.type->status)
1798 sz += pg->ps.type->status(&pg->ps, NULL, type,
1799 result + sz,
1800 maxlen - sz);
1801 else
1802 DMEMIT("0 ");
1803
1804 DMEMIT("%u %u ", pg->nr_pgpaths,
1805 pg->ps.type->info_args);
1806
1807 list_for_each_entry(p, &pg->pgpaths, list) {
1808 DMEMIT("%s %s %u ", p->path.dev->name,
Kiyoshi Ueda66800732008-10-10 13:36:58 +01001809 p->is_active ? "A" : "F",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 p->fail_count);
1811 if (pg->ps.type->status)
1812 sz += pg->ps.type->status(&pg->ps,
1813 &p->path, type, result + sz,
1814 maxlen - sz);
1815 }
1816 }
1817 break;
1818
1819 case STATUSTYPE_TABLE:
1820 list_for_each_entry(pg, &m->priority_groups, list) {
1821 DMEMIT("%s ", pg->ps.type->name);
1822
1823 if (pg->ps.type->status)
1824 sz += pg->ps.type->status(&pg->ps, NULL, type,
1825 result + sz,
1826 maxlen - sz);
1827 else
1828 DMEMIT("0 ");
1829
1830 DMEMIT("%u %u ", pg->nr_pgpaths,
1831 pg->ps.type->table_args);
1832
1833 list_for_each_entry(p, &pg->pgpaths, list) {
1834 DMEMIT("%s ", p->path.dev->name);
1835 if (pg->ps.type->status)
1836 sz += pg->ps.type->status(&pg->ps,
1837 &p->path, type, result + sz,
1838 maxlen - sz);
1839 }
1840 }
1841 break;
1842 }
1843
1844 spin_unlock_irqrestore(&m->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845}
1846
1847static int multipath_message(struct dm_target *ti, unsigned argc, char **argv)
1848{
Mike Anderson6380f262009-12-10 23:52:21 +00001849 int r = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 struct dm_dev *dev;
Mike Snitzer7943bd62016-02-02 21:53:15 -05001851 struct multipath *m = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 action_fn action;
1853
Mike Anderson6380f262009-12-10 23:52:21 +00001854 mutex_lock(&m->work_mutex);
1855
Kiyoshi Uedac2f3d242009-12-10 23:52:27 +00001856 if (dm_suspended(ti)) {
1857 r = -EBUSY;
1858 goto out;
1859 }
1860
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 if (argc == 1) {
Mike Snitzer498f0102011-08-02 12:32:04 +01001862 if (!strcasecmp(argv[0], "queue_if_no_path")) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001863 r = queue_if_no_path(m, true, false);
Mike Anderson6380f262009-12-10 23:52:21 +00001864 goto out;
Mike Snitzer498f0102011-08-02 12:32:04 +01001865 } else if (!strcasecmp(argv[0], "fail_if_no_path")) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001866 r = queue_if_no_path(m, false, false);
Mike Anderson6380f262009-12-10 23:52:21 +00001867 goto out;
1868 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 }
1870
Mike Anderson6380f262009-12-10 23:52:21 +00001871 if (argc != 2) {
Jose Castilloa356e422014-01-29 17:52:45 +01001872 DMWARN("Invalid multipath message arguments. Expected 2 arguments, got %d.", argc);
Mike Anderson6380f262009-12-10 23:52:21 +00001873 goto out;
1874 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875
Mike Snitzer498f0102011-08-02 12:32:04 +01001876 if (!strcasecmp(argv[0], "disable_group")) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001877 r = bypass_pg_num(m, argv[1], true);
Mike Anderson6380f262009-12-10 23:52:21 +00001878 goto out;
Mike Snitzer498f0102011-08-02 12:32:04 +01001879 } else if (!strcasecmp(argv[0], "enable_group")) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001880 r = bypass_pg_num(m, argv[1], false);
Mike Anderson6380f262009-12-10 23:52:21 +00001881 goto out;
Mike Snitzer498f0102011-08-02 12:32:04 +01001882 } else if (!strcasecmp(argv[0], "switch_group")) {
Mike Anderson6380f262009-12-10 23:52:21 +00001883 r = switch_pg_num(m, argv[1]);
1884 goto out;
Mike Snitzer498f0102011-08-02 12:32:04 +01001885 } else if (!strcasecmp(argv[0], "reinstate_path"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 action = reinstate_path;
Mike Snitzer498f0102011-08-02 12:32:04 +01001887 else if (!strcasecmp(argv[0], "fail_path"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 action = fail_path;
Mike Anderson6380f262009-12-10 23:52:21 +00001889 else {
Jose Castilloa356e422014-01-29 17:52:45 +01001890 DMWARN("Unrecognised multipath message received: %s", argv[0]);
Mike Anderson6380f262009-12-10 23:52:21 +00001891 goto out;
1892 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893
Nikanth Karthikesan8215d6e2010-03-06 02:32:27 +00001894 r = dm_get_device(ti, argv[1], dm_table_get_mode(ti->table), &dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 if (r) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001896 DMWARN("message: error getting device %s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 argv[1]);
Mike Anderson6380f262009-12-10 23:52:21 +00001898 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 }
1900
1901 r = action_dev(m, dev, action);
1902
1903 dm_put_device(ti, dev);
1904
Mike Anderson6380f262009-12-10 23:52:21 +00001905out:
1906 mutex_unlock(&m->work_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908}
1909
Christoph Hellwige56f81e2015-10-15 14:10:50 +02001910static int multipath_prepare_ioctl(struct dm_target *ti,
1911 struct block_device **bdev, fmode_t *mode)
Milan Broz9af4aa32006-10-03 01:15:20 -07001912{
Mikulas Patocka35991652012-06-03 00:29:58 +01001913 struct multipath *m = ti->private;
Mike Snitzer2da16102016-03-17 18:38:17 -04001914 struct pgpath *current_pgpath;
Mikulas Patocka35991652012-06-03 00:29:58 +01001915 int r;
1916
Mike Snitzer2da16102016-03-17 18:38:17 -04001917 current_pgpath = lockless_dereference(m->current_pgpath);
1918 if (!current_pgpath)
1919 current_pgpath = choose_pgpath(m, 0);
Milan Broz9af4aa32006-10-03 01:15:20 -07001920
Mike Snitzer2da16102016-03-17 18:38:17 -04001921 if (current_pgpath) {
Mike Snitzer518257b2016-03-17 16:32:10 -04001922 if (!test_bit(MPATHF_QUEUE_IO, &m->flags)) {
Mike Snitzer2da16102016-03-17 18:38:17 -04001923 *bdev = current_pgpath->path.dev->bdev;
1924 *mode = current_pgpath->path.dev->mode;
Junichi Nomura43e43c92015-11-17 09:36:56 +00001925 r = 0;
1926 } else {
1927 /* pg_init has not started or completed */
1928 r = -ENOTCONN;
1929 }
1930 } else {
1931 /* No path is available */
Mike Snitzer518257b2016-03-17 16:32:10 -04001932 if (test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))
Junichi Nomura43e43c92015-11-17 09:36:56 +00001933 r = -ENOTCONN;
1934 else
1935 r = -EIO;
Milan Broze90dae12006-10-03 01:15:22 -07001936 }
Milan Broz9af4aa32006-10-03 01:15:20 -07001937
Junichi Nomura5bbbfdf2015-11-17 09:39:26 +00001938 if (r == -ENOTCONN) {
Mike Snitzer2da16102016-03-17 18:38:17 -04001939 if (!lockless_dereference(m->current_pg)) {
Hannes Reinecke3e9f1be2014-02-28 15:33:45 +01001940 /* Path status changed, redo selection */
Mike Snitzer2da16102016-03-17 18:38:17 -04001941 (void) choose_pgpath(m, 0);
Hannes Reinecke3e9f1be2014-02-28 15:33:45 +01001942 }
Mike Snitzer518257b2016-03-17 16:32:10 -04001943 if (test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags))
Mike Snitzer2da16102016-03-17 18:38:17 -04001944 pg_init_all_paths(m);
Hannes Reinecke63d832c2014-05-26 14:45:39 +02001945 dm_table_run_md_queue_async(m->ti->table);
Mike Snitzer7e48c762016-09-14 10:47:03 -04001946 process_queued_io_list(m);
Hannes Reinecke3e9f1be2014-02-28 15:33:45 +01001947 }
Mikulas Patocka35991652012-06-03 00:29:58 +01001948
Christoph Hellwige56f81e2015-10-15 14:10:50 +02001949 /*
1950 * Only pass ioctls through if the device sizes match exactly.
1951 */
1952 if (!r && ti->len != i_size_read((*bdev)->bd_inode) >> SECTOR_SHIFT)
1953 return 1;
1954 return r;
Milan Broz9af4aa32006-10-03 01:15:20 -07001955}
1956
Mike Snitzeraf4874e2009-06-22 10:12:33 +01001957static int multipath_iterate_devices(struct dm_target *ti,
1958 iterate_devices_callout_fn fn, void *data)
1959{
1960 struct multipath *m = ti->private;
1961 struct priority_group *pg;
1962 struct pgpath *p;
1963 int ret = 0;
1964
1965 list_for_each_entry(pg, &m->priority_groups, list) {
1966 list_for_each_entry(p, &pg->pgpaths, list) {
Mike Snitzer5dea2712009-07-23 20:30:42 +01001967 ret = fn(ti, p->path.dev, ti->begin, ti->len, data);
Mike Snitzeraf4874e2009-06-22 10:12:33 +01001968 if (ret)
1969 goto out;
1970 }
1971 }
1972
1973out:
1974 return ret;
1975}
1976
Mike Snitzer9f54cec2016-02-11 21:42:28 -05001977static int pgpath_busy(struct pgpath *pgpath)
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001978{
1979 struct request_queue *q = bdev_get_queue(pgpath->path.dev->bdev);
1980
Mike Snitzer52b09912015-02-23 16:36:41 -05001981 return blk_lld_busy(q);
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001982}
1983
1984/*
1985 * We return "busy", only when we can map I/Os but underlying devices
1986 * are busy (so even if we map I/Os now, the I/Os will wait on
1987 * the underlying queue).
1988 * In other words, if we want to kill I/Os or queue them inside us
1989 * due to map unavailability, we don't return "busy". Otherwise,
1990 * dm core won't give us the I/Os and we can't do what we want.
1991 */
1992static int multipath_busy(struct dm_target *ti)
1993{
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001994 bool busy = false, has_active = false;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001995 struct multipath *m = ti->private;
Mike Snitzer2da16102016-03-17 18:38:17 -04001996 struct priority_group *pg, *next_pg;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001997 struct pgpath *pgpath;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001998
Mike Snitzerb88efd42016-09-09 19:26:19 -04001999 /* pg_init in progress */
2000 if (atomic_read(&m->pg_init_in_progress))
Mike Snitzer2da16102016-03-17 18:38:17 -04002001 return true;
2002
Mike Snitzerb88efd42016-09-09 19:26:19 -04002003 /* no paths available, for blk-mq: rely on IO mapping to delay requeue */
2004 if (!atomic_read(&m->nr_valid_paths) && test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))
2005 return (m->queue_mode != DM_TYPE_MQ_REQUEST_BASED);
2006
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01002007 /* Guess which priority_group will be used at next mapping time */
Mike Snitzer2da16102016-03-17 18:38:17 -04002008 pg = lockless_dereference(m->current_pg);
2009 next_pg = lockless_dereference(m->next_pg);
2010 if (unlikely(!lockless_dereference(m->current_pgpath) && next_pg))
2011 pg = next_pg;
2012
2013 if (!pg) {
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01002014 /*
2015 * We don't know which pg will be used at next mapping time.
Mike Snitzer2da16102016-03-17 18:38:17 -04002016 * We don't call choose_pgpath() here to avoid to trigger
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01002017 * pg_init just by busy checking.
2018 * So we don't know whether underlying devices we will be using
2019 * at next mapping time are busy or not. Just try mapping.
2020 */
Mike Snitzer2da16102016-03-17 18:38:17 -04002021 return busy;
2022 }
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01002023
2024 /*
2025 * If there is one non-busy active path at least, the path selector
2026 * will be able to select it. So we consider such a pg as not busy.
2027 */
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05002028 busy = true;
Mike Snitzer2da16102016-03-17 18:38:17 -04002029 list_for_each_entry(pgpath, &pg->pgpaths, list) {
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01002030 if (pgpath->is_active) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05002031 has_active = true;
Mike Snitzer9f54cec2016-02-11 21:42:28 -05002032 if (!pgpath_busy(pgpath)) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05002033 busy = false;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01002034 break;
2035 }
2036 }
Mike Snitzer2da16102016-03-17 18:38:17 -04002037 }
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01002038
Mike Snitzer2da16102016-03-17 18:38:17 -04002039 if (!has_active) {
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01002040 /*
2041 * No active path in this pg, so this pg won't be used and
2042 * the current_pg will be changed at next mapping time.
2043 * We need to try mapping to determine it.
2044 */
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05002045 busy = false;
Mike Snitzer2da16102016-03-17 18:38:17 -04002046 }
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01002047
2048 return busy;
2049}
2050
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051/*-----------------------------------------------------------------
2052 * Module setup
2053 *---------------------------------------------------------------*/
2054static struct target_type multipath_target = {
2055 .name = "multipath",
Mike Snitzere83068a2016-05-24 21:16:51 -04002056 .version = {1, 12, 0},
Mike Snitzer16f12262016-01-31 17:22:27 -05002057 .features = DM_TARGET_SINGLETON | DM_TARGET_IMMUTABLE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 .module = THIS_MODULE,
2059 .ctr = multipath_ctr,
2060 .dtr = multipath_dtr,
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01002061 .map_rq = multipath_map,
Mike Snitzere5863d92014-12-17 21:08:12 -05002062 .clone_and_map_rq = multipath_clone_and_map,
2063 .release_clone_rq = multipath_release_clone,
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01002064 .rq_end_io = multipath_end_io,
Mike Snitzer76e33fe2016-05-19 16:15:14 -04002065 .map = multipath_map_bio,
2066 .end_io = multipath_end_io_bio,
2067 .presuspend = multipath_presuspend,
2068 .postsuspend = multipath_postsuspend,
2069 .resume = multipath_resume,
2070 .status = multipath_status,
2071 .message = multipath_message,
2072 .prepare_ioctl = multipath_prepare_ioctl,
2073 .iterate_devices = multipath_iterate_devices,
2074 .busy = multipath_busy,
2075};
2076
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077static int __init dm_multipath_init(void)
2078{
2079 int r;
2080
Mike Snitzer76e33fe2016-05-19 16:15:14 -04002081 /* allocate a slab for the dm_mpath_ios */
Alasdair G Kergon028867a2007-07-12 17:26:32 +01002082 _mpio_cache = KMEM_CACHE(dm_mpath_io, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 if (!_mpio_cache)
2084 return -ENOMEM;
2085
2086 r = dm_register_target(&multipath_target);
2087 if (r < 0) {
Mike Snitzer76e33fe2016-05-19 16:15:14 -04002088 DMERR("request-based register failed %d", r);
Johannes Thumshirnff658e92015-01-11 12:45:23 +01002089 r = -EINVAL;
2090 goto bad_register_target;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 }
2092
Tejun Heo4d4d66a2011-01-13 19:59:57 +00002093 kmultipathd = alloc_workqueue("kmpathd", WQ_MEM_RECLAIM, 0);
Alasdair G Kergonc5573082005-05-05 16:16:07 -07002094 if (!kmultipathd) {
Alasdair G Kergon0cd33122007-07-12 17:27:01 +01002095 DMERR("failed to create workqueue kmpathd");
Johannes Thumshirnff658e92015-01-11 12:45:23 +01002096 r = -ENOMEM;
2097 goto bad_alloc_kmultipathd;
Alasdair G Kergonc5573082005-05-05 16:16:07 -07002098 }
2099
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07002100 /*
2101 * A separate workqueue is used to handle the device handlers
2102 * to avoid overloading existing workqueue. Overloading the
2103 * old workqueue would also create a bottleneck in the
2104 * path of the storage hardware device activation.
2105 */
Tejun Heo4d4d66a2011-01-13 19:59:57 +00002106 kmpath_handlerd = alloc_ordered_workqueue("kmpath_handlerd",
2107 WQ_MEM_RECLAIM);
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07002108 if (!kmpath_handlerd) {
2109 DMERR("failed to create workqueue kmpath_handlerd");
Johannes Thumshirnff658e92015-01-11 12:45:23 +01002110 r = -ENOMEM;
2111 goto bad_alloc_kmpath_handlerd;
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07002112 }
2113
Johannes Thumshirnff658e92015-01-11 12:45:23 +01002114 return 0;
2115
2116bad_alloc_kmpath_handlerd:
2117 destroy_workqueue(kmultipathd);
2118bad_alloc_kmultipathd:
2119 dm_unregister_target(&multipath_target);
2120bad_register_target:
2121 kmem_cache_destroy(_mpio_cache);
2122
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 return r;
2124}
2125
2126static void __exit dm_multipath_exit(void)
2127{
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07002128 destroy_workqueue(kmpath_handlerd);
Alasdair G Kergonc5573082005-05-05 16:16:07 -07002129 destroy_workqueue(kmultipathd);
2130
Mikulas Patocka10d3bd02009-01-06 03:04:58 +00002131 dm_unregister_target(&multipath_target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 kmem_cache_destroy(_mpio_cache);
2133}
2134
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135module_init(dm_multipath_init);
2136module_exit(dm_multipath_exit);
2137
2138MODULE_DESCRIPTION(DM_NAME " multipath target");
2139MODULE_AUTHOR("Sistina Software <dm-devel@redhat.com>");
2140MODULE_LICENSE("GPL");