blob: ceeeb495d01c73d69de3952c05733f0b12b63159 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2003 Sistina Software Limited.
3 * Copyright (C) 2004-2005 Red Hat, Inc. All rights reserved.
4 *
5 * This file is released under the GPL.
6 */
7
Mikulas Patocka586e80e2008-10-21 17:44:59 +01008#include <linux/device-mapper.h>
9
Mike Snitzer4cc96132016-05-12 16:28:10 -040010#include "dm-rq.h"
Mike Snitzer76e33fe2016-05-19 16:15:14 -040011#include "dm-bio-record.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include "dm-path-selector.h"
Mike Andersonb15546f2007-10-19 22:48:02 +010013#include "dm-uevent.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
Mike Snitzere5863d92014-12-17 21:08:12 -050015#include <linux/blkdev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/ctype.h>
17#include <linux/init.h>
18#include <linux/mempool.h>
19#include <linux/module.h>
20#include <linux/pagemap.h>
21#include <linux/slab.h>
22#include <linux/time.h>
23#include <linux/workqueue.h>
Mikulas Patocka35991652012-06-03 00:29:58 +010024#include <linux/delay.h>
Chandra Seetharamancfae5c92008-05-01 14:50:11 -070025#include <scsi/scsi_dh.h>
Arun Sharma600634972011-07-26 16:09:06 -070026#include <linux/atomic.h>
Mike Snitzer78ce23b2016-01-31 17:38:28 -050027#include <linux/blk-mq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Alasdair G Kergon72d94862006-06-26 00:27:35 -070029#define DM_MSG_PREFIX "multipath"
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +000030#define DM_PG_INIT_DELAY_MSECS 2000
31#define DM_PG_INIT_DELAY_DEFAULT ((unsigned) -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33/* Path properties */
34struct pgpath {
35 struct list_head list;
36
37 struct priority_group *pg; /* Owning PG */
38 unsigned fail_count; /* Cumulative failure count */
39
Josef "Jeff" Sipekc922d5f2006-12-08 02:36:33 -080040 struct dm_path path;
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +000041 struct delayed_work activate_path;
Mike Snitzerbe7d31c2016-02-10 13:02:21 -050042
43 bool is_active:1; /* Path status */
Linus Torvalds1da177e2005-04-16 15:20:36 -070044};
45
46#define path_to_pgpath(__pgp) container_of((__pgp), struct pgpath, path)
47
48/*
49 * Paths are grouped into Priority Groups and numbered from 1 upwards.
50 * Each has a path selector which controls which path gets used.
51 */
52struct priority_group {
53 struct list_head list;
54
55 struct multipath *m; /* Owning multipath instance */
56 struct path_selector ps;
57
58 unsigned pg_num; /* Reference number */
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 unsigned nr_pgpaths; /* Number of paths in PG */
60 struct list_head pgpaths;
Mike Snitzerbe7d31c2016-02-10 13:02:21 -050061
62 bool bypassed:1; /* Temporarily bypass this PG? */
Linus Torvalds1da177e2005-04-16 15:20:36 -070063};
64
65/* Multipath context */
66struct multipath {
67 struct list_head list;
68 struct dm_target *ti;
69
Chandra Seetharamancfae5c92008-05-01 14:50:11 -070070 const char *hw_handler_name;
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -070071 char *hw_handler_params;
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +000072
Mike Snitzer1fbdd2b2012-06-03 00:29:43 +010073 spinlock_t lock;
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 unsigned nr_priority_groups;
76 struct list_head priority_groups;
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +000077
78 wait_queue_head_t pg_init_wait; /* Wait for pg_init completion */
79
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 struct pgpath *current_pgpath;
81 struct priority_group *current_pg;
82 struct priority_group *next_pg; /* Switch to this PG if set */
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Mike Snitzer518257b2016-03-17 16:32:10 -040084 unsigned long flags; /* Multipath state flags */
Mike Snitzer1fbdd2b2012-06-03 00:29:43 +010085
Dave Wysochanskic9e45582007-10-19 22:47:53 +010086 unsigned pg_init_retries; /* Number of times to retry pg_init */
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +000087 unsigned pg_init_delay_msecs; /* Number of msecs before pg_init retry */
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Mike Snitzer91e968a2016-03-17 17:10:15 -040089 atomic_t nr_valid_paths; /* Total number of usable paths */
90 atomic_t pg_init_in_progress; /* Only one pg_init allowed at once */
91 atomic_t pg_init_count; /* Number of times pg_init called */
92
Bart Van Assche7e0d5742017-04-27 10:11:23 -070093 enum dm_queue_mode queue_mode;
Mike Snitzere83068a2016-05-24 21:16:51 -040094
Mike Anderson6380f262009-12-10 23:52:21 +000095 struct mutex work_mutex;
Mike Snitzer20800cb2016-03-17 17:13:10 -040096 struct work_struct trigger_event;
Mike Snitzer76e33fe2016-05-19 16:15:14 -040097
98 struct work_struct process_queued_bios;
99 struct bio_list queued_bios;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100};
101
102/*
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400103 * Context information attached to each io we process.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100105struct dm_mpath_io {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 struct pgpath *pgpath;
Kiyoshi Ueda02ab8232009-06-22 10:12:27 +0100107 size_t nr_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108};
109
110typedef int (*action_fn) (struct pgpath *pgpath);
111
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -0700112static struct workqueue_struct *kmultipathd, *kmpath_handlerd;
David Howellsc4028952006-11-22 14:57:56 +0000113static void trigger_event(struct work_struct *work);
Bart Van Assche89bfce72017-04-27 10:11:14 -0700114static void activate_or_offline_path(struct pgpath *pgpath);
115static void activate_path_work(struct work_struct *work);
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400116static void process_queued_bios(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Mike Snitzer518257b2016-03-17 16:32:10 -0400118/*-----------------------------------------------
119 * Multipath state flags.
120 *-----------------------------------------------*/
121
122#define MPATHF_QUEUE_IO 0 /* Must we queue all I/O? */
123#define MPATHF_QUEUE_IF_NO_PATH 1 /* Queue I/O if last path fails? */
124#define MPATHF_SAVED_QUEUE_IF_NO_PATH 2 /* Saved state during suspension */
125#define MPATHF_RETAIN_ATTACHED_HW_HANDLER 3 /* If there's already a hw_handler present, don't change it. */
126#define MPATHF_PG_INIT_DISABLED 4 /* pg_init is not currently allowed */
127#define MPATHF_PG_INIT_REQUIRED 5 /* pg_init needs calling? */
128#define MPATHF_PG_INIT_DELAY_RETRY 6 /* Delay pg_init retry? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130/*-----------------------------------------------
131 * Allocation routines
132 *-----------------------------------------------*/
133
134static struct pgpath *alloc_pgpath(void)
135{
Micha³ Miros³awe69fae52006-10-03 01:15:34 -0700136 struct pgpath *pgpath = kzalloc(sizeof(*pgpath), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Mike Anderson224cb3e2008-08-29 09:36:09 +0200138 if (pgpath) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -0500139 pgpath->is_active = true;
Bart Van Assche89bfce72017-04-27 10:11:14 -0700140 INIT_DELAYED_WORK(&pgpath->activate_path, activate_path_work);
Mike Anderson224cb3e2008-08-29 09:36:09 +0200141 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
143 return pgpath;
144}
145
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100146static void free_pgpath(struct pgpath *pgpath)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
148 kfree(pgpath);
149}
150
151static struct priority_group *alloc_priority_group(void)
152{
153 struct priority_group *pg;
154
Micha³ Miros³awe69fae52006-10-03 01:15:34 -0700155 pg = kzalloc(sizeof(*pg), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Micha³ Miros³awe69fae52006-10-03 01:15:34 -0700157 if (pg)
158 INIT_LIST_HEAD(&pg->pgpaths);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
160 return pg;
161}
162
163static void free_pgpaths(struct list_head *pgpaths, struct dm_target *ti)
164{
165 struct pgpath *pgpath, *tmp;
166
167 list_for_each_entry_safe(pgpath, tmp, pgpaths, list) {
168 list_del(&pgpath->list);
169 dm_put_device(ti, pgpath->path.dev);
170 free_pgpath(pgpath);
171 }
172}
173
174static void free_priority_group(struct priority_group *pg,
175 struct dm_target *ti)
176{
177 struct path_selector *ps = &pg->ps;
178
179 if (ps->type) {
180 ps->type->destroy(ps);
181 dm_put_path_selector(ps->type);
182 }
183
184 free_pgpaths(&pg->pgpaths, ti);
185 kfree(pg);
186}
187
Mike Snitzere83068a2016-05-24 21:16:51 -0400188static struct multipath *alloc_multipath(struct dm_target *ti)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{
190 struct multipath *m;
191
Micha³ Miros³awe69fae52006-10-03 01:15:34 -0700192 m = kzalloc(sizeof(*m), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 if (m) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 INIT_LIST_HEAD(&m->priority_groups);
195 spin_lock_init(&m->lock);
Mike Snitzer518257b2016-03-17 16:32:10 -0400196 set_bit(MPATHF_QUEUE_IO, &m->flags);
Mike Snitzer91e968a2016-03-17 17:10:15 -0400197 atomic_set(&m->nr_valid_paths, 0);
198 atomic_set(&m->pg_init_in_progress, 0);
199 atomic_set(&m->pg_init_count, 0);
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +0000200 m->pg_init_delay_msecs = DM_PG_INIT_DELAY_DEFAULT;
David Howellsc4028952006-11-22 14:57:56 +0000201 INIT_WORK(&m->trigger_event, trigger_event);
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +0000202 init_waitqueue_head(&m->pg_init_wait);
Mike Anderson6380f262009-12-10 23:52:21 +0000203 mutex_init(&m->work_mutex);
Mike Snitzer8637a6b2016-01-31 12:08:36 -0500204
Mike Snitzere83068a2016-05-24 21:16:51 -0400205 m->queue_mode = DM_TYPE_NONE;
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400206
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700207 m->ti = ti;
208 ti->private = m;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 }
210
211 return m;
212}
213
Mike Snitzere83068a2016-05-24 21:16:51 -0400214static int alloc_multipath_stage2(struct dm_target *ti, struct multipath *m)
215{
216 if (m->queue_mode == DM_TYPE_NONE) {
217 /*
218 * Default to request-based.
219 */
220 if (dm_use_blk_mq(dm_table_get_md(ti->table)))
221 m->queue_mode = DM_TYPE_MQ_REQUEST_BASED;
222 else
223 m->queue_mode = DM_TYPE_REQUEST_BASED;
Christoph Hellwigeb8db832017-01-22 18:32:46 +0100224 } else if (m->queue_mode == DM_TYPE_BIO_BASED) {
Mike Snitzere83068a2016-05-24 21:16:51 -0400225 INIT_WORK(&m->process_queued_bios, process_queued_bios);
226 /*
227 * bio-based doesn't support any direct scsi_dh management;
228 * it just discovers if a scsi_dh is attached.
229 */
230 set_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags);
231 }
232
233 dm_table_set_type(ti->table, m->queue_mode);
234
235 return 0;
236}
237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238static void free_multipath(struct multipath *m)
239{
240 struct priority_group *pg, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
242 list_for_each_entry_safe(pg, tmp, &m->priority_groups, list) {
243 list_del(&pg->list);
244 free_priority_group(pg, m->ti);
245 }
246
Chandra Seetharamancfae5c92008-05-01 14:50:11 -0700247 kfree(m->hw_handler_name);
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700248 kfree(m->hw_handler_params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 kfree(m);
250}
251
Mike Snitzer2eff1922016-02-03 09:13:14 -0500252static struct dm_mpath_io *get_mpio(union map_info *info)
253{
254 return info->ptr;
255}
256
Mike Snitzerbf661be2016-05-24 15:48:08 -0400257static size_t multipath_per_bio_data_size(void)
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400258{
Mike Snitzerbf661be2016-05-24 15:48:08 -0400259 return sizeof(struct dm_mpath_io) + sizeof(struct dm_bio_details);
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400260}
261
Mike Snitzerbf661be2016-05-24 15:48:08 -0400262static struct dm_mpath_io *get_mpio_from_bio(struct bio *bio)
263{
264 return dm_per_bio_data(bio, multipath_per_bio_data_size());
265}
266
267static struct dm_bio_details *get_bio_details_from_bio(struct bio *bio)
268{
269 /* dm_bio_details is immediately after the dm_mpath_io in bio's per-bio-data */
270 struct dm_mpath_io *mpio = get_mpio_from_bio(bio);
271 void *bio_details = mpio + 1;
272
273 return bio_details;
274}
275
276static void multipath_init_per_bio_data(struct bio *bio, struct dm_mpath_io **mpio_p,
277 struct dm_bio_details **bio_details_p)
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400278{
279 struct dm_mpath_io *mpio = get_mpio_from_bio(bio);
Mike Snitzerbf661be2016-05-24 15:48:08 -0400280 struct dm_bio_details *bio_details = get_bio_details_from_bio(bio);
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400281
282 memset(mpio, 0, sizeof(*mpio));
Mike Snitzerbf661be2016-05-24 15:48:08 -0400283 memset(bio_details, 0, sizeof(*bio_details));
284 dm_bio_record(bio_details, bio);
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400285
Mike Snitzerbf661be2016-05-24 15:48:08 -0400286 if (mpio_p)
287 *mpio_p = mpio;
288 if (bio_details_p)
289 *bio_details_p = bio_details;
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400290}
291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292/*-----------------------------------------------
293 * Path selection
294 *-----------------------------------------------*/
295
Hannes Reinecke3e9f1be2014-02-28 15:33:45 +0100296static int __pg_init_all_paths(struct multipath *m)
Kiyoshi Uedafb612642010-03-06 02:32:18 +0000297{
298 struct pgpath *pgpath;
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +0000299 unsigned long pg_init_delay = 0;
Kiyoshi Uedafb612642010-03-06 02:32:18 +0000300
Bart Van Asscheb1946792017-04-27 10:11:22 -0700301 lockdep_assert_held(&m->lock);
302
Mike Snitzer91e968a2016-03-17 17:10:15 -0400303 if (atomic_read(&m->pg_init_in_progress) || test_bit(MPATHF_PG_INIT_DISABLED, &m->flags))
Hannes Reinecke3e9f1be2014-02-28 15:33:45 +0100304 return 0;
Hannes Reinecke17f4ff42014-02-28 15:33:42 +0100305
Mike Snitzer91e968a2016-03-17 17:10:15 -0400306 atomic_inc(&m->pg_init_count);
Mike Snitzer518257b2016-03-17 16:32:10 -0400307 clear_bit(MPATHF_PG_INIT_REQUIRED, &m->flags);
Hannes Reinecke3e9f1be2014-02-28 15:33:45 +0100308
309 /* Check here to reset pg_init_required */
310 if (!m->current_pg)
311 return 0;
312
Mike Snitzer518257b2016-03-17 16:32:10 -0400313 if (test_bit(MPATHF_PG_INIT_DELAY_RETRY, &m->flags))
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +0000314 pg_init_delay = msecs_to_jiffies(m->pg_init_delay_msecs != DM_PG_INIT_DELAY_DEFAULT ?
315 m->pg_init_delay_msecs : DM_PG_INIT_DELAY_MSECS);
Kiyoshi Uedafb612642010-03-06 02:32:18 +0000316 list_for_each_entry(pgpath, &m->current_pg->pgpaths, list) {
317 /* Skip failed paths */
318 if (!pgpath->is_active)
319 continue;
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +0000320 if (queue_delayed_work(kmpath_handlerd, &pgpath->activate_path,
321 pg_init_delay))
Mike Snitzer91e968a2016-03-17 17:10:15 -0400322 atomic_inc(&m->pg_init_in_progress);
Kiyoshi Uedafb612642010-03-06 02:32:18 +0000323 }
Mike Snitzer91e968a2016-03-17 17:10:15 -0400324 return atomic_read(&m->pg_init_in_progress);
Kiyoshi Uedafb612642010-03-06 02:32:18 +0000325}
326
Bart Van Asschec1d7ecf2017-04-27 10:11:16 -0700327static int pg_init_all_paths(struct multipath *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
Bart Van Asschec1d7ecf2017-04-27 10:11:16 -0700329 int ret;
Mike Snitzer2da16102016-03-17 18:38:17 -0400330 unsigned long flags;
331
332 spin_lock_irqsave(&m->lock, flags);
Bart Van Asschec1d7ecf2017-04-27 10:11:16 -0700333 ret = __pg_init_all_paths(m);
Mike Snitzer2da16102016-03-17 18:38:17 -0400334 spin_unlock_irqrestore(&m->lock, flags);
Bart Van Asschec1d7ecf2017-04-27 10:11:16 -0700335
336 return ret;
Mike Snitzer2da16102016-03-17 18:38:17 -0400337}
338
339static void __switch_pg(struct multipath *m, struct priority_group *pg)
340{
341 m->current_pg = pg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
343 /* Must we initialise the PG first, and queue I/O till it's ready? */
Chandra Seetharamancfae5c92008-05-01 14:50:11 -0700344 if (m->hw_handler_name) {
Mike Snitzer518257b2016-03-17 16:32:10 -0400345 set_bit(MPATHF_PG_INIT_REQUIRED, &m->flags);
346 set_bit(MPATHF_QUEUE_IO, &m->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 } else {
Mike Snitzer518257b2016-03-17 16:32:10 -0400348 clear_bit(MPATHF_PG_INIT_REQUIRED, &m->flags);
349 clear_bit(MPATHF_QUEUE_IO, &m->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 }
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100351
Mike Snitzer91e968a2016-03-17 17:10:15 -0400352 atomic_set(&m->pg_init_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353}
354
Mike Snitzer2da16102016-03-17 18:38:17 -0400355static struct pgpath *choose_path_in_pg(struct multipath *m,
356 struct priority_group *pg,
357 size_t nr_bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358{
Mike Snitzer2da16102016-03-17 18:38:17 -0400359 unsigned long flags;
Josef "Jeff" Sipekc922d5f2006-12-08 02:36:33 -0800360 struct dm_path *path;
Mike Snitzer2da16102016-03-17 18:38:17 -0400361 struct pgpath *pgpath;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Mike Snitzer90a43232016-02-17 21:29:17 -0500363 path = pg->ps.type->select_path(&pg->ps, nr_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 if (!path)
Mike Snitzer2da16102016-03-17 18:38:17 -0400365 return ERR_PTR(-ENXIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Mike Snitzer2da16102016-03-17 18:38:17 -0400367 pgpath = path_to_pgpath(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Mike Snitzer2da16102016-03-17 18:38:17 -0400369 if (unlikely(lockless_dereference(m->current_pg) != pg)) {
370 /* Only update current_pgpath if pg changed */
371 spin_lock_irqsave(&m->lock, flags);
372 m->current_pgpath = pgpath;
373 __switch_pg(m, pg);
374 spin_unlock_irqrestore(&m->lock, flags);
375 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Mike Snitzer2da16102016-03-17 18:38:17 -0400377 return pgpath;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378}
379
Mike Snitzer2da16102016-03-17 18:38:17 -0400380static struct pgpath *choose_pgpath(struct multipath *m, size_t nr_bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381{
Mike Snitzer2da16102016-03-17 18:38:17 -0400382 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 struct priority_group *pg;
Mike Snitzer2da16102016-03-17 18:38:17 -0400384 struct pgpath *pgpath;
Mike Snitzerd19a55c2017-01-06 15:33:14 -0500385 unsigned bypassed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Mike Snitzer91e968a2016-03-17 17:10:15 -0400387 if (!atomic_read(&m->nr_valid_paths)) {
Mike Snitzer518257b2016-03-17 16:32:10 -0400388 clear_bit(MPATHF_QUEUE_IO, &m->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 goto failed;
Benjamin Marzinski1f271972014-08-13 13:53:42 -0500390 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
392 /* Were we instructed to switch PG? */
Mike Snitzer2da16102016-03-17 18:38:17 -0400393 if (lockless_dereference(m->next_pg)) {
394 spin_lock_irqsave(&m->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 pg = m->next_pg;
Mike Snitzer2da16102016-03-17 18:38:17 -0400396 if (!pg) {
397 spin_unlock_irqrestore(&m->lock, flags);
398 goto check_current_pg;
399 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 m->next_pg = NULL;
Mike Snitzer2da16102016-03-17 18:38:17 -0400401 spin_unlock_irqrestore(&m->lock, flags);
402 pgpath = choose_path_in_pg(m, pg, nr_bytes);
403 if (!IS_ERR_OR_NULL(pgpath))
404 return pgpath;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 }
406
407 /* Don't change PG until it has no remaining paths */
Mike Snitzer2da16102016-03-17 18:38:17 -0400408check_current_pg:
409 pg = lockless_dereference(m->current_pg);
410 if (pg) {
411 pgpath = choose_path_in_pg(m, pg, nr_bytes);
412 if (!IS_ERR_OR_NULL(pgpath))
413 return pgpath;
414 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
416 /*
417 * Loop through priority groups until we find a valid path.
418 * First time we skip PGs marked 'bypassed'.
Mike Christief220fd42012-06-03 00:29:45 +0100419 * Second time we only try the ones we skipped, but set
420 * pg_init_delay_retry so we do not hammer controllers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 */
422 do {
423 list_for_each_entry(pg, &m->priority_groups, list) {
Mike Snitzerd19a55c2017-01-06 15:33:14 -0500424 if (pg->bypassed == !!bypassed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 continue;
Mike Snitzer2da16102016-03-17 18:38:17 -0400426 pgpath = choose_path_in_pg(m, pg, nr_bytes);
427 if (!IS_ERR_OR_NULL(pgpath)) {
Mike Christief220fd42012-06-03 00:29:45 +0100428 if (!bypassed)
Mike Snitzer518257b2016-03-17 16:32:10 -0400429 set_bit(MPATHF_PG_INIT_DELAY_RETRY, &m->flags);
Mike Snitzer2da16102016-03-17 18:38:17 -0400430 return pgpath;
Mike Christief220fd42012-06-03 00:29:45 +0100431 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 }
433 } while (bypassed--);
434
435failed:
Mike Snitzer2da16102016-03-17 18:38:17 -0400436 spin_lock_irqsave(&m->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 m->current_pgpath = NULL;
438 m->current_pg = NULL;
Mike Snitzer2da16102016-03-17 18:38:17 -0400439 spin_unlock_irqrestore(&m->lock, flags);
440
441 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442}
443
Kiyoshi Ueda45e15722006-12-08 02:41:10 -0800444/*
Bart Van Assche86331f32017-04-27 10:11:26 -0700445 * dm_report_EIO() is a macro instead of a function to make pr_debug()
446 * report the function name and line number of the function from which
447 * it has been invoked.
Kiyoshi Ueda45e15722006-12-08 02:41:10 -0800448 */
Bart Van Assche86331f32017-04-27 10:11:26 -0700449#define dm_report_EIO(m) \
Christoph Hellwig18a482f2017-05-15 17:28:37 +0200450do { \
Bart Van Assche86331f32017-04-27 10:11:26 -0700451 struct mapped_device *md = dm_table_get_md((m)->ti->table); \
452 \
453 pr_debug("%s: returning EIO; QIFNP = %d; SQIFNP = %d; DNFS = %d\n", \
454 dm_device_name(md), \
455 test_bit(MPATHF_QUEUE_IF_NO_PATH, &(m)->flags), \
456 test_bit(MPATHF_SAVED_QUEUE_IF_NO_PATH, &(m)->flags), \
457 dm_noflush_suspending((m)->ti)); \
Christoph Hellwig18a482f2017-05-15 17:28:37 +0200458} while (0)
Kiyoshi Ueda45e15722006-12-08 02:41:10 -0800459
Hannes Reinecke36fcffc2014-02-28 15:33:47 +0100460/*
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400461 * Map cloned requests (request-based multipath)
Hannes Reinecke36fcffc2014-02-28 15:33:47 +0100462 */
Christoph Hellwigeb8db832017-01-22 18:32:46 +0100463static int multipath_clone_and_map(struct dm_target *ti, struct request *rq,
464 union map_info *map_context,
465 struct request **__clone)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466{
Mike Snitzer7943bd62016-02-02 21:53:15 -0500467 struct multipath *m = ti->private;
Christoph Hellwigeb8db832017-01-22 18:32:46 +0100468 size_t nr_bytes = blk_rq_bytes(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 struct pgpath *pgpath;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +0100470 struct block_device *bdev;
Christoph Hellwigeb8db832017-01-22 18:32:46 +0100471 struct dm_mpath_io *mpio = get_mpio(map_context);
Bart Van Assche7083abb2017-04-27 10:11:15 -0700472 struct request_queue *q;
Christoph Hellwigeb8db832017-01-22 18:32:46 +0100473 struct request *clone;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 /* Do we need to select a new pgpath? */
Mike Snitzer2da16102016-03-17 18:38:17 -0400476 pgpath = lockless_dereference(m->current_pgpath);
477 if (!pgpath || !test_bit(MPATHF_QUEUE_IO, &m->flags))
478 pgpath = choose_pgpath(m, nr_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Mike Snitzer9bf59a62014-02-28 15:33:48 +0100480 if (!pgpath) {
Bart Van Asscheca5beb72017-04-27 10:11:24 -0700481 if (test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))
Mike Snitzerb88efd42016-09-09 19:26:19 -0400482 return DM_MAPIO_DELAY_REQUEUE;
Christoph Hellwig18a482f2017-05-15 17:28:37 +0200483 dm_report_EIO(m); /* Failed */
Christoph Hellwigf98e0eb2017-05-15 17:28:38 +0200484 return DM_MAPIO_KILL;
Mike Snitzer518257b2016-03-17 16:32:10 -0400485 } else if (test_bit(MPATHF_QUEUE_IO, &m->flags) ||
486 test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags)) {
Bart Van Asschec1d7ecf2017-04-27 10:11:16 -0700487 if (pg_init_all_paths(m))
488 return DM_MAPIO_DELAY_REQUEUE;
Bart Van Assche06eb0612017-04-07 16:50:44 -0700489 return DM_MAPIO_REQUEUE;
Mike Snitzer9bf59a62014-02-28 15:33:48 +0100490 }
Mike Snitzer6afbc012014-07-08 11:55:09 -0400491
Christoph Hellwigeb8db832017-01-22 18:32:46 +0100492 memset(mpio, 0, sizeof(*mpio));
Mike Snitzer9bf59a62014-02-28 15:33:48 +0100493 mpio->pgpath = pgpath;
494 mpio->nr_bytes = nr_bytes;
Keith Busch2eb6e1e2014-10-17 17:46:36 -0600495
496 bdev = pgpath->path.dev->bdev;
Bart Van Assche7083abb2017-04-27 10:11:15 -0700497 q = bdev_get_queue(bdev);
498 clone = blk_get_request(q, rq->cmd_flags | REQ_NOMERGE, GFP_ATOMIC);
Christoph Hellwigeb8db832017-01-22 18:32:46 +0100499 if (IS_ERR(clone)) {
500 /* EBUSY, ENODEV or EWOULDBLOCK: requeue */
Bart Van Assche7083abb2017-04-27 10:11:15 -0700501 bool queue_dying = blk_queue_dying(q);
502 DMERR_LIMIT("blk_get_request() returned %ld%s - requeuing",
503 PTR_ERR(clone), queue_dying ? " (path offline)" : "");
504 if (queue_dying) {
505 atomic_inc(&m->pg_init_in_progress);
506 activate_or_offline_path(pgpath);
507 return DM_MAPIO_REQUEUE;
508 }
Bart Van Assche06eb0612017-04-07 16:50:44 -0700509 return DM_MAPIO_DELAY_REQUEUE;
Mike Snitzere5863d92014-12-17 21:08:12 -0500510 }
Christoph Hellwigeb8db832017-01-22 18:32:46 +0100511 clone->bio = clone->biotail = NULL;
512 clone->rq_disk = bdev->bd_disk;
513 clone->cmd_flags |= REQ_FAILFAST_TRANSPORT;
514 *__clone = clone;
Mike Snitzere5863d92014-12-17 21:08:12 -0500515
Mike Snitzer9bf59a62014-02-28 15:33:48 +0100516 if (pgpath->pg->ps.type->start_io)
517 pgpath->pg->ps.type->start_io(&pgpath->pg->ps,
518 &pgpath->path,
519 nr_bytes);
Keith Busch2eb6e1e2014-10-17 17:46:36 -0600520 return DM_MAPIO_REMAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521}
522
Mike Snitzere5863d92014-12-17 21:08:12 -0500523static void multipath_release_clone(struct request *clone)
524{
Christoph Hellwigeb8db832017-01-22 18:32:46 +0100525 blk_put_request(clone);
Mike Snitzere5863d92014-12-17 21:08:12 -0500526}
527
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528/*
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400529 * Map cloned bios (bio-based multipath)
530 */
531static int __multipath_map_bio(struct multipath *m, struct bio *bio, struct dm_mpath_io *mpio)
532{
533 size_t nr_bytes = bio->bi_iter.bi_size;
534 struct pgpath *pgpath;
535 unsigned long flags;
536 bool queue_io;
537
538 /* Do we need to select a new pgpath? */
539 pgpath = lockless_dereference(m->current_pgpath);
540 queue_io = test_bit(MPATHF_QUEUE_IO, &m->flags);
541 if (!pgpath || !queue_io)
542 pgpath = choose_pgpath(m, nr_bytes);
543
544 if ((pgpath && queue_io) ||
545 (!pgpath && test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))) {
546 /* Queue for the daemon to resubmit */
547 spin_lock_irqsave(&m->lock, flags);
548 bio_list_add(&m->queued_bios, bio);
549 spin_unlock_irqrestore(&m->lock, flags);
550 /* PG_INIT_REQUIRED cannot be set without QUEUE_IO */
551 if (queue_io || test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags))
552 pg_init_all_paths(m);
553 else if (!queue_io)
554 queue_work(kmultipathd, &m->process_queued_bios);
555 return DM_MAPIO_SUBMITTED;
556 }
557
558 if (!pgpath) {
Bart Van Asscheca5beb72017-04-27 10:11:24 -0700559 if (test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))
560 return DM_MAPIO_REQUEUE;
Christoph Hellwig18a482f2017-05-15 17:28:37 +0200561 dm_report_EIO(m);
Christoph Hellwig846785e2017-06-03 09:38:02 +0200562 return DM_MAPIO_KILL;
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400563 }
564
565 mpio->pgpath = pgpath;
566 mpio->nr_bytes = nr_bytes;
567
568 bio->bi_error = 0;
569 bio->bi_bdev = pgpath->path.dev->bdev;
Jens Axboe1eff9d32016-08-05 15:35:16 -0600570 bio->bi_opf |= REQ_FAILFAST_TRANSPORT;
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400571
572 if (pgpath->pg->ps.type->start_io)
573 pgpath->pg->ps.type->start_io(&pgpath->pg->ps,
574 &pgpath->path,
575 nr_bytes);
576 return DM_MAPIO_REMAPPED;
577}
578
579static int multipath_map_bio(struct dm_target *ti, struct bio *bio)
580{
581 struct multipath *m = ti->private;
Mike Snitzerbf661be2016-05-24 15:48:08 -0400582 struct dm_mpath_io *mpio = NULL;
583
584 multipath_init_per_bio_data(bio, &mpio, NULL);
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400585
586 return __multipath_map_bio(m, bio, mpio);
587}
588
Mike Snitzer7e48c762016-09-14 10:47:03 -0400589static void process_queued_io_list(struct multipath *m)
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400590{
Mike Snitzer7e48c762016-09-14 10:47:03 -0400591 if (m->queue_mode == DM_TYPE_MQ_REQUEST_BASED)
592 dm_mq_kick_requeue_list(dm_table_get_md(m->ti->table));
593 else if (m->queue_mode == DM_TYPE_BIO_BASED)
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400594 queue_work(kmultipathd, &m->process_queued_bios);
595}
596
597static void process_queued_bios(struct work_struct *work)
598{
599 int r;
600 unsigned long flags;
601 struct bio *bio;
602 struct bio_list bios;
603 struct blk_plug plug;
604 struct multipath *m =
605 container_of(work, struct multipath, process_queued_bios);
606
607 bio_list_init(&bios);
608
609 spin_lock_irqsave(&m->lock, flags);
610
611 if (bio_list_empty(&m->queued_bios)) {
612 spin_unlock_irqrestore(&m->lock, flags);
613 return;
614 }
615
616 bio_list_merge(&bios, &m->queued_bios);
617 bio_list_init(&m->queued_bios);
618
619 spin_unlock_irqrestore(&m->lock, flags);
620
621 blk_start_plug(&plug);
622 while ((bio = bio_list_pop(&bios))) {
623 r = __multipath_map_bio(m, bio, get_mpio_from_bio(bio));
Christoph Hellwig846785e2017-06-03 09:38:02 +0200624 switch (r) {
625 case DM_MAPIO_KILL:
626 r = -EIO;
627 /*FALLTHRU*/
628 case DM_MAPIO_REQUEUE:
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400629 bio->bi_error = r;
630 bio_endio(bio);
Christoph Hellwig846785e2017-06-03 09:38:02 +0200631 break;
632 case DM_MAPIO_REMAPPED:
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400633 generic_make_request(bio);
Christoph Hellwig846785e2017-06-03 09:38:02 +0200634 break;
635 }
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400636 }
637 blk_finish_plug(&plug);
638}
639
Bart Van Assche9a8ac3a2017-04-27 10:11:25 -0700640static void assign_bit(bool value, long nr, unsigned long *addr)
641{
642 if (value)
643 set_bit(nr, addr);
644 else
645 clear_bit(nr, addr);
646}
647
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400648/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 * If we run out of usable paths, should we queue I/O or error it?
650 */
Mike Snitzerbe7d31c2016-02-10 13:02:21 -0500651static int queue_if_no_path(struct multipath *m, bool queue_if_no_path,
652 bool save_old_value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653{
654 unsigned long flags;
655
656 spin_lock_irqsave(&m->lock, flags);
Bart Van Assche9a8ac3a2017-04-27 10:11:25 -0700657 assign_bit((save_old_value && test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags)) ||
658 (!save_old_value && queue_if_no_path),
659 MPATHF_SAVED_QUEUE_IF_NO_PATH, &m->flags);
660 assign_bit(queue_if_no_path || dm_noflush_suspending(m->ti),
661 MPATHF_QUEUE_IF_NO_PATH, &m->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 spin_unlock_irqrestore(&m->lock, flags);
663
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400664 if (!queue_if_no_path) {
Hannes Reinecke63d832c2014-05-26 14:45:39 +0200665 dm_table_run_md_queue_async(m->ti->table);
Mike Snitzer7e48c762016-09-14 10:47:03 -0400666 process_queued_io_list(m);
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400667 }
Hannes Reinecke63d832c2014-05-26 14:45:39 +0200668
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 return 0;
670}
671
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672/*
673 * An event is triggered whenever a path is taken out of use.
674 * Includes path failure and PG bypass.
675 */
David Howellsc4028952006-11-22 14:57:56 +0000676static void trigger_event(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677{
David Howellsc4028952006-11-22 14:57:56 +0000678 struct multipath *m =
679 container_of(work, struct multipath, trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
681 dm_table_event(m->ti->table);
682}
683
684/*-----------------------------------------------------------------
685 * Constructor/argument parsing:
686 * <#multipath feature args> [<arg>]*
687 * <#hw_handler args> [hw_handler [<arg>]*]
688 * <#priority groups>
689 * <initial priority group>
690 * [<selector> <#selector args> [<arg>]*
691 * <#paths> <#per-path selector args>
692 * [<path> [<arg>]* ]+ ]+
693 *---------------------------------------------------------------*/
Mike Snitzer498f0102011-08-02 12:32:04 +0100694static int parse_path_selector(struct dm_arg_set *as, struct priority_group *pg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 struct dm_target *ti)
696{
697 int r;
698 struct path_selector_type *pst;
699 unsigned ps_argc;
700
Mike Snitzer498f0102011-08-02 12:32:04 +0100701 static struct dm_arg _args[] = {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700702 {0, 1024, "invalid number of path selector args"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 };
704
Mike Snitzer498f0102011-08-02 12:32:04 +0100705 pst = dm_get_path_selector(dm_shift_arg(as));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 if (!pst) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700707 ti->error = "unknown path selector type";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 return -EINVAL;
709 }
710
Mike Snitzer498f0102011-08-02 12:32:04 +0100711 r = dm_read_arg_group(_args, as, &ps_argc, &ti->error);
Mikulas Patocka371b2e32008-07-21 12:00:24 +0100712 if (r) {
713 dm_put_path_selector(pst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 return -EINVAL;
Mikulas Patocka371b2e32008-07-21 12:00:24 +0100715 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
717 r = pst->create(&pg->ps, ps_argc, as->argv);
718 if (r) {
719 dm_put_path_selector(pst);
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700720 ti->error = "path selector constructor failed";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 return r;
722 }
723
724 pg->ps.type = pst;
Mike Snitzer498f0102011-08-02 12:32:04 +0100725 dm_consume_args(as, ps_argc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
727 return 0;
728}
729
Mike Snitzer498f0102011-08-02 12:32:04 +0100730static struct pgpath *parse_path(struct dm_arg_set *as, struct path_selector *ps,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 struct dm_target *ti)
732{
733 int r;
734 struct pgpath *p;
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700735 struct multipath *m = ti->private;
Mike Snitzera58a9352012-07-27 15:08:04 +0100736 struct request_queue *q = NULL;
737 const char *attached_handler_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
739 /* we need at least a path arg */
740 if (as->argc < 1) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700741 ti->error = "no device given";
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100742 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 }
744
745 p = alloc_pgpath();
746 if (!p)
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100747 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Mike Snitzer498f0102011-08-02 12:32:04 +0100749 r = dm_get_device(ti, dm_shift_arg(as), dm_table_get_mode(ti->table),
Nikanth Karthikesan8215d6e2010-03-06 02:32:27 +0000750 &p->path.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 if (r) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700752 ti->error = "error getting device";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 goto bad;
754 }
755
Mike Snitzer518257b2016-03-17 16:32:10 -0400756 if (test_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags) || m->hw_handler_name)
Mike Snitzera58a9352012-07-27 15:08:04 +0100757 q = bdev_get_queue(p->path.dev->bdev);
Hannes Reineckea0cf7ea2009-06-22 10:12:11 +0100758
Mike Snitzer518257b2016-03-17 16:32:10 -0400759 if (test_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags)) {
Christoph Hellwig1bab0de2015-08-27 14:16:54 +0200760retain:
Mike Snitzera58a9352012-07-27 15:08:04 +0100761 attached_handler_name = scsi_dh_attached_handler_name(q, GFP_KERNEL);
762 if (attached_handler_name) {
763 /*
tang.junhui54cd6402016-11-24 15:11:48 +0800764 * Clear any hw_handler_params associated with a
765 * handler that isn't already attached.
766 */
767 if (m->hw_handler_name && strcmp(attached_handler_name, m->hw_handler_name)) {
768 kfree(m->hw_handler_params);
769 m->hw_handler_params = NULL;
770 }
771
772 /*
Mike Snitzera58a9352012-07-27 15:08:04 +0100773 * Reset hw_handler_name to match the attached handler
Mike Snitzera58a9352012-07-27 15:08:04 +0100774 *
775 * NB. This modifies the table line to show the actual
776 * handler instead of the original table passed in.
777 */
778 kfree(m->hw_handler_name);
779 m->hw_handler_name = attached_handler_name;
Mike Snitzera58a9352012-07-27 15:08:04 +0100780 }
781 }
782
783 if (m->hw_handler_name) {
Hannes Reineckea0cf7ea2009-06-22 10:12:11 +0100784 r = scsi_dh_attach(q, m->hw_handler_name);
785 if (r == -EBUSY) {
Christoph Hellwig1bab0de2015-08-27 14:16:54 +0200786 char b[BDEVNAME_SIZE];
Hannes Reineckea0cf7ea2009-06-22 10:12:11 +0100787
Christoph Hellwig1bab0de2015-08-27 14:16:54 +0200788 printk(KERN_INFO "dm-mpath: retaining handler on device %s\n",
789 bdevname(p->path.dev->bdev, b));
790 goto retain;
791 }
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700792 if (r < 0) {
Hannes Reineckea0cf7ea2009-06-22 10:12:11 +0100793 ti->error = "error attaching hardware handler";
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700794 dm_put_device(ti, p->path.dev);
795 goto bad;
796 }
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700797
798 if (m->hw_handler_params) {
799 r = scsi_dh_set_params(q, m->hw_handler_params);
800 if (r < 0) {
801 ti->error = "unable to set hardware "
802 "handler parameters";
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700803 dm_put_device(ti, p->path.dev);
804 goto bad;
805 }
806 }
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700807 }
808
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 r = ps->type->add_path(ps, &p->path, as->argc, as->argv, &ti->error);
810 if (r) {
811 dm_put_device(ti, p->path.dev);
812 goto bad;
813 }
814
815 return p;
816
817 bad:
818 free_pgpath(p);
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100819 return ERR_PTR(r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820}
821
Mike Snitzer498f0102011-08-02 12:32:04 +0100822static struct priority_group *parse_priority_group(struct dm_arg_set *as,
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700823 struct multipath *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824{
Mike Snitzer498f0102011-08-02 12:32:04 +0100825 static struct dm_arg _args[] = {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700826 {1, 1024, "invalid number of paths"},
827 {0, 1024, "invalid number of selector args"}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 };
829
830 int r;
Mike Snitzer498f0102011-08-02 12:32:04 +0100831 unsigned i, nr_selector_args, nr_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 struct priority_group *pg;
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700833 struct dm_target *ti = m->ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
835 if (as->argc < 2) {
836 as->argc = 0;
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100837 ti->error = "not enough priority group arguments";
838 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 }
840
841 pg = alloc_priority_group();
842 if (!pg) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700843 ti->error = "couldn't allocate priority group";
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100844 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 }
846 pg->m = m;
847
848 r = parse_path_selector(as, pg, ti);
849 if (r)
850 goto bad;
851
852 /*
853 * read the paths
854 */
Mike Snitzer498f0102011-08-02 12:32:04 +0100855 r = dm_read_arg(_args, as, &pg->nr_pgpaths, &ti->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 if (r)
857 goto bad;
858
Mike Snitzer498f0102011-08-02 12:32:04 +0100859 r = dm_read_arg(_args + 1, as, &nr_selector_args, &ti->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 if (r)
861 goto bad;
862
Mike Snitzer498f0102011-08-02 12:32:04 +0100863 nr_args = 1 + nr_selector_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 for (i = 0; i < pg->nr_pgpaths; i++) {
865 struct pgpath *pgpath;
Mike Snitzer498f0102011-08-02 12:32:04 +0100866 struct dm_arg_set path_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
Mike Snitzer498f0102011-08-02 12:32:04 +0100868 if (as->argc < nr_args) {
Mikulas Patocka148acff2008-07-21 12:00:30 +0100869 ti->error = "not enough path parameters";
Alasdair G Kergon6bbf79a12010-08-12 04:13:49 +0100870 r = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 goto bad;
Mikulas Patocka148acff2008-07-21 12:00:30 +0100872 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
Mike Snitzer498f0102011-08-02 12:32:04 +0100874 path_args.argc = nr_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 path_args.argv = as->argv;
876
877 pgpath = parse_path(&path_args, &pg->ps, ti);
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100878 if (IS_ERR(pgpath)) {
879 r = PTR_ERR(pgpath);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 goto bad;
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100881 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
883 pgpath->pg = pg;
884 list_add_tail(&pgpath->list, &pg->pgpaths);
Mike Snitzer498f0102011-08-02 12:32:04 +0100885 dm_consume_args(as, nr_args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 }
887
888 return pg;
889
890 bad:
891 free_priority_group(pg, ti);
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100892 return ERR_PTR(r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893}
894
Mike Snitzer498f0102011-08-02 12:32:04 +0100895static int parse_hw_handler(struct dm_arg_set *as, struct multipath *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 unsigned hw_argc;
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700898 int ret;
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700899 struct dm_target *ti = m->ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
Mike Snitzer498f0102011-08-02 12:32:04 +0100901 static struct dm_arg _args[] = {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700902 {0, 1024, "invalid number of hardware handler args"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 };
904
Mike Snitzer498f0102011-08-02 12:32:04 +0100905 if (dm_read_arg_group(_args, as, &hw_argc, &ti->error))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 return -EINVAL;
907
908 if (!hw_argc)
909 return 0;
910
Mike Snitzere83068a2016-05-24 21:16:51 -0400911 if (m->queue_mode == DM_TYPE_BIO_BASED) {
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400912 dm_consume_args(as, hw_argc);
913 DMERR("bio-based multipath doesn't allow hardware handler args");
914 return 0;
915 }
916
Mike Snitzer498f0102011-08-02 12:32:04 +0100917 m->hw_handler_name = kstrdup(dm_shift_arg(as), GFP_KERNEL);
tang.junhuif97dc422016-10-28 17:04:46 +0800918 if (!m->hw_handler_name)
919 return -EINVAL;
Chandra Seetharaman14e98c52008-11-13 23:39:06 +0000920
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700921 if (hw_argc > 1) {
922 char *p;
923 int i, j, len = 4;
924
925 for (i = 0; i <= hw_argc - 2; i++)
926 len += strlen(as->argv[i]) + 1;
927 p = m->hw_handler_params = kzalloc(len, GFP_KERNEL);
928 if (!p) {
929 ti->error = "memory allocation failed";
930 ret = -ENOMEM;
931 goto fail;
932 }
933 j = sprintf(p, "%d", hw_argc - 1);
934 for (i = 0, p+=j+1; i <= hw_argc - 2; i++, p+=j+1)
935 j = sprintf(p, "%s", as->argv[i]);
936 }
Mike Snitzer498f0102011-08-02 12:32:04 +0100937 dm_consume_args(as, hw_argc - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
939 return 0;
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700940fail:
941 kfree(m->hw_handler_name);
942 m->hw_handler_name = NULL;
943 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944}
945
Mike Snitzer498f0102011-08-02 12:32:04 +0100946static int parse_features(struct dm_arg_set *as, struct multipath *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947{
948 int r;
949 unsigned argc;
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700950 struct dm_target *ti = m->ti;
Mike Snitzer498f0102011-08-02 12:32:04 +0100951 const char *arg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
Mike Snitzer498f0102011-08-02 12:32:04 +0100953 static struct dm_arg _args[] = {
Mike Snitzere83068a2016-05-24 21:16:51 -0400954 {0, 8, "invalid number of feature args"},
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100955 {1, 50, "pg_init_retries must be between 1 and 50"},
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +0000956 {0, 60000, "pg_init_delay_msecs must be between 0 and 60000"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 };
958
Mike Snitzer498f0102011-08-02 12:32:04 +0100959 r = dm_read_arg_group(_args, as, &argc, &ti->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 if (r)
961 return -EINVAL;
962
963 if (!argc)
964 return 0;
965
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100966 do {
Mike Snitzer498f0102011-08-02 12:32:04 +0100967 arg_name = dm_shift_arg(as);
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100968 argc--;
969
Mike Snitzer498f0102011-08-02 12:32:04 +0100970 if (!strcasecmp(arg_name, "queue_if_no_path")) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -0500971 r = queue_if_no_path(m, true, false);
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100972 continue;
973 }
974
Mike Snitzera58a9352012-07-27 15:08:04 +0100975 if (!strcasecmp(arg_name, "retain_attached_hw_handler")) {
Mike Snitzer518257b2016-03-17 16:32:10 -0400976 set_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags);
Mike Snitzera58a9352012-07-27 15:08:04 +0100977 continue;
978 }
979
Mike Snitzer498f0102011-08-02 12:32:04 +0100980 if (!strcasecmp(arg_name, "pg_init_retries") &&
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100981 (argc >= 1)) {
Mike Snitzer498f0102011-08-02 12:32:04 +0100982 r = dm_read_arg(_args + 1, as, &m->pg_init_retries, &ti->error);
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100983 argc--;
984 continue;
985 }
986
Mike Snitzer498f0102011-08-02 12:32:04 +0100987 if (!strcasecmp(arg_name, "pg_init_delay_msecs") &&
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +0000988 (argc >= 1)) {
Mike Snitzer498f0102011-08-02 12:32:04 +0100989 r = dm_read_arg(_args + 2, as, &m->pg_init_delay_msecs, &ti->error);
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +0000990 argc--;
991 continue;
992 }
993
Mike Snitzere83068a2016-05-24 21:16:51 -0400994 if (!strcasecmp(arg_name, "queue_mode") &&
995 (argc >= 1)) {
996 const char *queue_mode_name = dm_shift_arg(as);
997
998 if (!strcasecmp(queue_mode_name, "bio"))
999 m->queue_mode = DM_TYPE_BIO_BASED;
1000 else if (!strcasecmp(queue_mode_name, "rq"))
1001 m->queue_mode = DM_TYPE_REQUEST_BASED;
1002 else if (!strcasecmp(queue_mode_name, "mq"))
1003 m->queue_mode = DM_TYPE_MQ_REQUEST_BASED;
1004 else {
1005 ti->error = "Unknown 'queue_mode' requested";
1006 r = -EINVAL;
1007 }
1008 argc--;
1009 continue;
1010 }
1011
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 ti->error = "Unrecognised multipath feature request";
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001013 r = -EINVAL;
1014 } while (argc && !r);
1015
1016 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017}
1018
Mike Snitzere83068a2016-05-24 21:16:51 -04001019static int multipath_ctr(struct dm_target *ti, unsigned argc, char **argv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020{
Mike Snitzer498f0102011-08-02 12:32:04 +01001021 /* target arguments */
1022 static struct dm_arg _args[] = {
Mike Snitzera490a072011-03-24 13:54:33 +00001023 {0, 1024, "invalid number of priority groups"},
1024 {0, 1024, "invalid initial priority group number"},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 };
1026
1027 int r;
1028 struct multipath *m;
Mike Snitzer498f0102011-08-02 12:32:04 +01001029 struct dm_arg_set as;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 unsigned pg_count = 0;
1031 unsigned next_pg_num;
1032
1033 as.argc = argc;
1034 as.argv = argv;
1035
Mike Snitzere83068a2016-05-24 21:16:51 -04001036 m = alloc_multipath(ti);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 if (!m) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001038 ti->error = "can't allocate multipath";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 return -EINVAL;
1040 }
1041
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -07001042 r = parse_features(&as, m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 if (r)
1044 goto bad;
1045
Mike Snitzere83068a2016-05-24 21:16:51 -04001046 r = alloc_multipath_stage2(ti, m);
1047 if (r)
1048 goto bad;
1049
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -07001050 r = parse_hw_handler(&as, m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 if (r)
1052 goto bad;
1053
Mike Snitzer498f0102011-08-02 12:32:04 +01001054 r = dm_read_arg(_args, &as, &m->nr_priority_groups, &ti->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 if (r)
1056 goto bad;
1057
Mike Snitzer498f0102011-08-02 12:32:04 +01001058 r = dm_read_arg(_args + 1, &as, &next_pg_num, &ti->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 if (r)
1060 goto bad;
1061
Mike Snitzera490a072011-03-24 13:54:33 +00001062 if ((!m->nr_priority_groups && next_pg_num) ||
1063 (m->nr_priority_groups && !next_pg_num)) {
1064 ti->error = "invalid initial priority group";
1065 r = -EINVAL;
1066 goto bad;
1067 }
1068
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 /* parse the priority groups */
1070 while (as.argc) {
1071 struct priority_group *pg;
Mike Snitzer91e968a2016-03-17 17:10:15 -04001072 unsigned nr_valid_paths = atomic_read(&m->nr_valid_paths);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -07001074 pg = parse_priority_group(&as, m);
Benjamin Marzinski01460f32008-10-10 13:36:57 +01001075 if (IS_ERR(pg)) {
1076 r = PTR_ERR(pg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 goto bad;
1078 }
1079
Mike Snitzer91e968a2016-03-17 17:10:15 -04001080 nr_valid_paths += pg->nr_pgpaths;
1081 atomic_set(&m->nr_valid_paths, nr_valid_paths);
1082
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 list_add_tail(&pg->list, &m->priority_groups);
1084 pg_count++;
1085 pg->pg_num = pg_count;
1086 if (!--next_pg_num)
1087 m->next_pg = pg;
1088 }
1089
1090 if (pg_count != m->nr_priority_groups) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001091 ti->error = "priority group count mismatch";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 r = -EINVAL;
1093 goto bad;
1094 }
1095
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001096 ti->num_flush_bios = 1;
1097 ti->num_discard_bios = 1;
Mike Snitzer042bcef2013-05-10 14:37:16 +01001098 ti->num_write_same_bios = 1;
Christoph Hellwigac62d622017-04-05 19:21:05 +02001099 ti->num_write_zeroes_bios = 1;
Mike Snitzere83068a2016-05-24 21:16:51 -04001100 if (m->queue_mode == DM_TYPE_BIO_BASED)
Mike Snitzerbf661be2016-05-24 15:48:08 -04001101 ti->per_io_data_size = multipath_per_bio_data_size();
Christoph Hellwigeb8db832017-01-22 18:32:46 +01001102 else
Mike Snitzer8637a6b2016-01-31 12:08:36 -05001103 ti->per_io_data_size = sizeof(struct dm_mpath_io);
Mikulas Patocka86279212009-06-22 10:12:24 +01001104
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 return 0;
1106
1107 bad:
1108 free_multipath(m);
1109 return r;
1110}
1111
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001112static void multipath_wait_for_pg_init_completion(struct multipath *m)
1113{
Bart Van Assche9f4c3f82016-08-31 15:16:43 -07001114 DEFINE_WAIT(wait);
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001115
1116 while (1) {
Bart Van Assche9f4c3f82016-08-31 15:16:43 -07001117 prepare_to_wait(&m->pg_init_wait, &wait, TASK_UNINTERRUPTIBLE);
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001118
Mike Snitzer91e968a2016-03-17 17:10:15 -04001119 if (!atomic_read(&m->pg_init_in_progress))
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001120 break;
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001121
1122 io_schedule();
1123 }
Bart Van Assche9f4c3f82016-08-31 15:16:43 -07001124 finish_wait(&m->pg_init_wait, &wait);
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001125}
1126
1127static void flush_multipath_work(struct multipath *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128{
Mike Snitzer518257b2016-03-17 16:32:10 -04001129 set_bit(MPATHF_PG_INIT_DISABLED, &m->flags);
1130 smp_mb__after_atomic();
Shiva Krishna Merla954a73d2013-10-30 03:26:38 +00001131
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001132 flush_workqueue(kmpath_handlerd);
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001133 multipath_wait_for_pg_init_completion(m);
Alasdair G Kergona044d012005-07-12 15:53:02 -07001134 flush_workqueue(kmultipathd);
Tejun Heo43829732012-08-20 14:51:24 -07001135 flush_work(&m->trigger_event);
Shiva Krishna Merla954a73d2013-10-30 03:26:38 +00001136
Mike Snitzer518257b2016-03-17 16:32:10 -04001137 clear_bit(MPATHF_PG_INIT_DISABLED, &m->flags);
1138 smp_mb__after_atomic();
Kiyoshi Ueda6df400a2009-12-10 23:52:19 +00001139}
1140
1141static void multipath_dtr(struct dm_target *ti)
1142{
1143 struct multipath *m = ti->private;
1144
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001145 flush_multipath_work(m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 free_multipath(m);
1147}
1148
1149/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 * Take a path out of use.
1151 */
1152static int fail_path(struct pgpath *pgpath)
1153{
1154 unsigned long flags;
1155 struct multipath *m = pgpath->pg->m;
1156
1157 spin_lock_irqsave(&m->lock, flags);
1158
Kiyoshi Ueda66800732008-10-10 13:36:58 +01001159 if (!pgpath->is_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 goto out;
1161
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001162 DMWARN("Failing path %s.", pgpath->path.dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
1164 pgpath->pg->ps.type->fail_path(&pgpath->pg->ps, &pgpath->path);
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001165 pgpath->is_active = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 pgpath->fail_count++;
1167
Mike Snitzer91e968a2016-03-17 17:10:15 -04001168 atomic_dec(&m->nr_valid_paths);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
1170 if (pgpath == m->current_pgpath)
1171 m->current_pgpath = NULL;
1172
Mike Andersonb15546f2007-10-19 22:48:02 +01001173 dm_path_uevent(DM_UEVENT_PATH_FAILED, m->ti,
Mike Snitzer91e968a2016-03-17 17:10:15 -04001174 pgpath->path.dev->name, atomic_read(&m->nr_valid_paths));
Mike Andersonb15546f2007-10-19 22:48:02 +01001175
Alasdair G Kergonfe9cf302009-01-06 03:05:13 +00001176 schedule_work(&m->trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
1178out:
1179 spin_unlock_irqrestore(&m->lock, flags);
1180
1181 return 0;
1182}
1183
1184/*
1185 * Reinstate a previously-failed path
1186 */
1187static int reinstate_path(struct pgpath *pgpath)
1188{
Hannes Reinecke63d832c2014-05-26 14:45:39 +02001189 int r = 0, run_queue = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 unsigned long flags;
1191 struct multipath *m = pgpath->pg->m;
Mike Snitzer91e968a2016-03-17 17:10:15 -04001192 unsigned nr_valid_paths;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
1194 spin_lock_irqsave(&m->lock, flags);
1195
Kiyoshi Ueda66800732008-10-10 13:36:58 +01001196 if (pgpath->is_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 goto out;
1198
Mike Snitzerec31f3f2016-02-20 12:49:43 -05001199 DMWARN("Reinstating path %s.", pgpath->path.dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
1201 r = pgpath->pg->ps.type->reinstate_path(&pgpath->pg->ps, &pgpath->path);
1202 if (r)
1203 goto out;
1204
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001205 pgpath->is_active = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
Mike Snitzer91e968a2016-03-17 17:10:15 -04001207 nr_valid_paths = atomic_inc_return(&m->nr_valid_paths);
1208 if (nr_valid_paths == 1) {
Chandra Seetharamane54f77d2009-06-22 10:12:12 +01001209 m->current_pgpath = NULL;
Hannes Reinecke63d832c2014-05-26 14:45:39 +02001210 run_queue = 1;
Chandra Seetharamane54f77d2009-06-22 10:12:12 +01001211 } else if (m->hw_handler_name && (m->current_pg == pgpath->pg)) {
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +00001212 if (queue_work(kmpath_handlerd, &pgpath->activate_path.work))
Mike Snitzer91e968a2016-03-17 17:10:15 -04001213 atomic_inc(&m->pg_init_in_progress);
Chandra Seetharamane54f77d2009-06-22 10:12:12 +01001214 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
Mike Andersonb15546f2007-10-19 22:48:02 +01001216 dm_path_uevent(DM_UEVENT_PATH_REINSTATED, m->ti,
Mike Snitzer91e968a2016-03-17 17:10:15 -04001217 pgpath->path.dev->name, nr_valid_paths);
Mike Andersonb15546f2007-10-19 22:48:02 +01001218
Alasdair G Kergonfe9cf302009-01-06 03:05:13 +00001219 schedule_work(&m->trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
1221out:
1222 spin_unlock_irqrestore(&m->lock, flags);
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001223 if (run_queue) {
Hannes Reinecke63d832c2014-05-26 14:45:39 +02001224 dm_table_run_md_queue_async(m->ti->table);
Mike Snitzer7e48c762016-09-14 10:47:03 -04001225 process_queued_io_list(m);
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001226 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
1228 return r;
1229}
1230
1231/*
1232 * Fail or reinstate all paths that match the provided struct dm_dev.
1233 */
1234static int action_dev(struct multipath *m, struct dm_dev *dev,
1235 action_fn action)
1236{
Mike Snitzer19040c02011-03-24 13:54:31 +00001237 int r = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 struct pgpath *pgpath;
1239 struct priority_group *pg;
1240
1241 list_for_each_entry(pg, &m->priority_groups, list) {
1242 list_for_each_entry(pgpath, &pg->pgpaths, list) {
1243 if (pgpath->path.dev == dev)
1244 r = action(pgpath);
1245 }
1246 }
1247
1248 return r;
1249}
1250
1251/*
1252 * Temporarily try to avoid having to use the specified PG
1253 */
1254static void bypass_pg(struct multipath *m, struct priority_group *pg,
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001255 bool bypassed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256{
1257 unsigned long flags;
1258
1259 spin_lock_irqsave(&m->lock, flags);
1260
1261 pg->bypassed = bypassed;
1262 m->current_pgpath = NULL;
1263 m->current_pg = NULL;
1264
1265 spin_unlock_irqrestore(&m->lock, flags);
1266
Alasdair G Kergonfe9cf302009-01-06 03:05:13 +00001267 schedule_work(&m->trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268}
1269
1270/*
1271 * Switch to using the specified PG from the next I/O that gets mapped
1272 */
1273static int switch_pg_num(struct multipath *m, const char *pgstr)
1274{
1275 struct priority_group *pg;
1276 unsigned pgnum;
1277 unsigned long flags;
Mikulas Patocka31998ef2012-03-28 18:41:26 +01001278 char dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
Mikulas Patocka31998ef2012-03-28 18:41:26 +01001280 if (!pgstr || (sscanf(pgstr, "%u%c", &pgnum, &dummy) != 1) || !pgnum ||
tang.junhuicc5bd922016-11-04 12:37:09 +08001281 !m->nr_priority_groups || (pgnum > m->nr_priority_groups)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 DMWARN("invalid PG number supplied to switch_pg_num");
1283 return -EINVAL;
1284 }
1285
1286 spin_lock_irqsave(&m->lock, flags);
1287 list_for_each_entry(pg, &m->priority_groups, list) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001288 pg->bypassed = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 if (--pgnum)
1290 continue;
1291
1292 m->current_pgpath = NULL;
1293 m->current_pg = NULL;
1294 m->next_pg = pg;
1295 }
1296 spin_unlock_irqrestore(&m->lock, flags);
1297
Alasdair G Kergonfe9cf302009-01-06 03:05:13 +00001298 schedule_work(&m->trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 return 0;
1300}
1301
1302/*
1303 * Set/clear bypassed status of a PG.
1304 * PGs are numbered upwards from 1 in the order they were declared.
1305 */
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001306static int bypass_pg_num(struct multipath *m, const char *pgstr, bool bypassed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307{
1308 struct priority_group *pg;
1309 unsigned pgnum;
Mikulas Patocka31998ef2012-03-28 18:41:26 +01001310 char dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
Mikulas Patocka31998ef2012-03-28 18:41:26 +01001312 if (!pgstr || (sscanf(pgstr, "%u%c", &pgnum, &dummy) != 1) || !pgnum ||
tang.junhuicc5bd922016-11-04 12:37:09 +08001313 !m->nr_priority_groups || (pgnum > m->nr_priority_groups)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 DMWARN("invalid PG number supplied to bypass_pg");
1315 return -EINVAL;
1316 }
1317
1318 list_for_each_entry(pg, &m->priority_groups, list) {
1319 if (!--pgnum)
1320 break;
1321 }
1322
1323 bypass_pg(m, pg, bypassed);
1324 return 0;
1325}
1326
1327/*
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001328 * Should we retry pg_init immediately?
1329 */
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001330static bool pg_init_limit_reached(struct multipath *m, struct pgpath *pgpath)
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001331{
1332 unsigned long flags;
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001333 bool limit_reached = false;
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001334
1335 spin_lock_irqsave(&m->lock, flags);
1336
Mike Snitzer91e968a2016-03-17 17:10:15 -04001337 if (atomic_read(&m->pg_init_count) <= m->pg_init_retries &&
1338 !test_bit(MPATHF_PG_INIT_DISABLED, &m->flags))
Mike Snitzer518257b2016-03-17 16:32:10 -04001339 set_bit(MPATHF_PG_INIT_REQUIRED, &m->flags);
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001340 else
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001341 limit_reached = true;
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001342
1343 spin_unlock_irqrestore(&m->lock, flags);
1344
1345 return limit_reached;
1346}
1347
Chandra Seetharaman3ae31f62009-10-21 09:22:46 -07001348static void pg_init_done(void *data, int errors)
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001349{
Moger, Babu83c0d5d2010-03-06 02:29:45 +00001350 struct pgpath *pgpath = data;
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001351 struct priority_group *pg = pgpath->pg;
1352 struct multipath *m = pg->m;
1353 unsigned long flags;
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001354 bool delay_retry = false;
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001355
1356 /* device or driver problems */
1357 switch (errors) {
1358 case SCSI_DH_OK:
1359 break;
1360 case SCSI_DH_NOSYS:
1361 if (!m->hw_handler_name) {
1362 errors = 0;
1363 break;
1364 }
Moger, Babuf7b934c2010-03-06 02:29:49 +00001365 DMERR("Could not failover the device: Handler scsi_dh_%s "
1366 "Error %d.", m->hw_handler_name, errors);
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001367 /*
1368 * Fail path for now, so we do not ping pong
1369 */
1370 fail_path(pgpath);
1371 break;
1372 case SCSI_DH_DEV_TEMP_BUSY:
1373 /*
1374 * Probably doing something like FW upgrade on the
1375 * controller so try the other pg.
1376 */
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001377 bypass_pg(m, pg, true);
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001378 break;
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001379 case SCSI_DH_RETRY:
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +00001380 /* Wait before retrying. */
1381 delay_retry = 1;
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001382 case SCSI_DH_IMM_RETRY:
1383 case SCSI_DH_RES_TEMP_UNAVAIL:
1384 if (pg_init_limit_reached(m, pgpath))
1385 fail_path(pgpath);
1386 errors = 0;
1387 break;
Mike Snitzerec31f3f2016-02-20 12:49:43 -05001388 case SCSI_DH_DEV_OFFLINED:
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001389 default:
1390 /*
1391 * We probably do not want to fail the path for a device
1392 * error, but this is what the old dm did. In future
1393 * patches we can do more advanced handling.
1394 */
1395 fail_path(pgpath);
1396 }
1397
1398 spin_lock_irqsave(&m->lock, flags);
1399 if (errors) {
Chandra Seetharamane54f77d2009-06-22 10:12:12 +01001400 if (pgpath == m->current_pgpath) {
1401 DMERR("Could not failover device. Error %d.", errors);
1402 m->current_pgpath = NULL;
1403 m->current_pg = NULL;
1404 }
Mike Snitzer518257b2016-03-17 16:32:10 -04001405 } else if (!test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags))
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001406 pg->bypassed = false;
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001407
Mike Snitzer91e968a2016-03-17 17:10:15 -04001408 if (atomic_dec_return(&m->pg_init_in_progress) > 0)
Kiyoshi Uedad0259bf2010-03-06 02:30:02 +00001409 /* Activations of other paths are still on going */
1410 goto out;
1411
Mike Snitzer518257b2016-03-17 16:32:10 -04001412 if (test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags)) {
1413 if (delay_retry)
1414 set_bit(MPATHF_PG_INIT_DELAY_RETRY, &m->flags);
1415 else
1416 clear_bit(MPATHF_PG_INIT_DELAY_RETRY, &m->flags);
1417
Hannes Reinecke3e9f1be2014-02-28 15:33:45 +01001418 if (__pg_init_all_paths(m))
1419 goto out;
1420 }
Mike Snitzer518257b2016-03-17 16:32:10 -04001421 clear_bit(MPATHF_QUEUE_IO, &m->flags);
Kiyoshi Uedad0259bf2010-03-06 02:30:02 +00001422
Mike Snitzer7e48c762016-09-14 10:47:03 -04001423 process_queued_io_list(m);
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001424
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001425 /*
1426 * Wake up any thread waiting to suspend.
1427 */
1428 wake_up(&m->pg_init_wait);
1429
Kiyoshi Uedad0259bf2010-03-06 02:30:02 +00001430out:
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001431 spin_unlock_irqrestore(&m->lock, flags);
1432}
1433
Bart Van Assche89bfce72017-04-27 10:11:14 -07001434static void activate_or_offline_path(struct pgpath *pgpath)
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001435{
Mike Snitzerf10e06b2016-09-01 12:06:37 -04001436 struct request_queue *q = bdev_get_queue(pgpath->path.dev->bdev);
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001437
Mike Snitzerf10e06b2016-09-01 12:06:37 -04001438 if (pgpath->is_active && !blk_queue_dying(q))
1439 scsi_dh_activate(q, pg_init_done, pgpath);
Hannes Reinecke3a017502014-02-28 15:33:49 +01001440 else
1441 pg_init_done(pgpath, SCSI_DH_DEV_OFFLINED);
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001442}
1443
Bart Van Assche89bfce72017-04-27 10:11:14 -07001444static void activate_path_work(struct work_struct *work)
1445{
1446 struct pgpath *pgpath =
1447 container_of(work, struct pgpath, activate_path.work);
1448
1449 activate_or_offline_path(pgpath);
1450}
1451
Hannes Reinecke7e782af2013-07-01 15:16:26 +02001452static int noretry_error(int error)
1453{
1454 switch (error) {
Hannes Reinecke8ff232c2015-07-15 13:23:24 +02001455 case -EBADE:
1456 /*
1457 * EBADE signals an reservation conflict.
1458 * We shouldn't fail the path here as we can communicate with
1459 * the target. We should failover to the next path, but in
1460 * doing so we might be causing a ping-pong between paths.
1461 * So just return the reservation conflict error.
1462 */
Hannes Reinecke7e782af2013-07-01 15:16:26 +02001463 case -EOPNOTSUPP:
1464 case -EREMOTEIO:
1465 case -EILSEQ:
1466 case -ENODATA:
Jun'ichi Nomuracc9d3c32013-09-13 14:54:30 +09001467 case -ENOSPC:
Hannes Reinecke7e782af2013-07-01 15:16:26 +02001468 return 1;
1469 }
1470
1471 /* Anything else could be a path failure, so should be retried */
1472 return 0;
1473}
1474
Christoph Hellwigb79f10e2017-04-26 09:40:36 +02001475static int multipath_end_io(struct dm_target *ti, struct request *clone,
1476 int error, union map_info *map_context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477{
Christoph Hellwigb79f10e2017-04-26 09:40:36 +02001478 struct dm_mpath_io *mpio = get_mpio(map_context);
1479 struct pgpath *pgpath = mpio->pgpath;
Christoph Hellwig7ed85782017-04-26 09:40:37 +02001480 int r = DM_ENDIO_DONE;
Christoph Hellwigb79f10e2017-04-26 09:40:36 +02001481
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001482 /*
1483 * We don't queue any clone request inside the multipath target
1484 * during end I/O handling, since those clone requests don't have
1485 * bio clones. If we queue them inside the multipath target,
1486 * we need to make bio clones, that requires memory allocation.
Mike Snitzer4cc96132016-05-12 16:28:10 -04001487 * (See drivers/md/dm-rq.c:end_clone_bio() about why the clone requests
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001488 * don't have bio clones.)
1489 * Instead of queueing the clone request here, we queue the original
1490 * request into dm core, which will remake a clone request and
1491 * clone bios for it and resubmit it later.
1492 */
Christoph Hellwigb79f10e2017-04-26 09:40:36 +02001493 if (error && !noretry_error(error)) {
1494 struct multipath *m = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
Christoph Hellwig7ed85782017-04-26 09:40:37 +02001496 r = DM_ENDIO_REQUEUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497
Christoph Hellwigb79f10e2017-04-26 09:40:36 +02001498 if (pgpath)
1499 fail_path(pgpath);
Mike Snitzer959eb4e2010-08-12 04:14:32 +01001500
Christoph Hellwigb79f10e2017-04-26 09:40:36 +02001501 if (atomic_read(&m->nr_valid_paths) == 0 &&
Christoph Hellwig7ed85782017-04-26 09:40:37 +02001502 !test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags)) {
1503 if (error == -EIO)
Christoph Hellwig18a482f2017-05-15 17:28:37 +02001504 dm_report_EIO(m);
Christoph Hellwig7ed85782017-04-26 09:40:37 +02001505 /* complete with the original error */
1506 r = DM_ENDIO_DONE;
1507 }
Christoph Hellwigb79f10e2017-04-26 09:40:36 +02001508 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 if (pgpath) {
Christoph Hellwigb79f10e2017-04-26 09:40:36 +02001511 struct path_selector *ps = &pgpath->pg->ps;
1512
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 if (ps->type->end_io)
Kiyoshi Ueda02ab8232009-06-22 10:12:27 +01001514 ps->type->end_io(ps, &pgpath->path, mpio->nr_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516
Christoph Hellwig7ed85782017-04-26 09:40:37 +02001517 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518}
1519
Christoph Hellwig1be56902017-06-03 09:38:03 +02001520static int multipath_end_io_bio(struct dm_target *ti, struct bio *clone, int *error)
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001521{
Christoph Hellwig14ef1e42017-06-03 09:38:01 +02001522 struct multipath *m = ti->private;
1523 struct dm_mpath_io *mpio = get_mpio_from_bio(clone);
1524 struct pgpath *pgpath = mpio->pgpath;
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001525 unsigned long flags;
Christoph Hellwig1be56902017-06-03 09:38:03 +02001526 int r = DM_ENDIO_DONE;
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001527
Christoph Hellwig1be56902017-06-03 09:38:03 +02001528 if (!*error || noretry_error(*error))
Christoph Hellwig14ef1e42017-06-03 09:38:01 +02001529 goto done;
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001530
Christoph Hellwig14ef1e42017-06-03 09:38:01 +02001531 if (pgpath)
1532 fail_path(pgpath);
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001533
Bart Van Asscheca5beb72017-04-27 10:11:24 -07001534 if (atomic_read(&m->nr_valid_paths) == 0 &&
Christoph Hellwig18a482f2017-05-15 17:28:37 +02001535 !test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags)) {
1536 dm_report_EIO(m);
Christoph Hellwig1be56902017-06-03 09:38:03 +02001537 *error = -EIO;
Christoph Hellwig14ef1e42017-06-03 09:38:01 +02001538 goto done;
Christoph Hellwig18a482f2017-05-15 17:28:37 +02001539 }
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001540
1541 /* Queue for the daemon to resubmit */
Mike Snitzerbf661be2016-05-24 15:48:08 -04001542 dm_bio_restore(get_bio_details_from_bio(clone), clone);
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001543
1544 spin_lock_irqsave(&m->lock, flags);
1545 bio_list_add(&m->queued_bios, clone);
1546 spin_unlock_irqrestore(&m->lock, flags);
1547 if (!test_bit(MPATHF_QUEUE_IO, &m->flags))
1548 queue_work(kmultipathd, &m->process_queued_bios);
1549
Christoph Hellwig1be56902017-06-03 09:38:03 +02001550 r = DM_ENDIO_INCOMPLETE;
Christoph Hellwig14ef1e42017-06-03 09:38:01 +02001551done:
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001552 if (pgpath) {
Christoph Hellwig14ef1e42017-06-03 09:38:01 +02001553 struct path_selector *ps = &pgpath->pg->ps;
1554
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001555 if (ps->type->end_io)
1556 ps->type->end_io(ps, &pgpath->path, mpio->nr_bytes);
1557 }
1558
Christoph Hellwig1be56902017-06-03 09:38:03 +02001559 return r;
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001560}
1561
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562/*
1563 * Suspend can't complete until all the I/O is processed so if
Alasdair G Kergon436d4102005-07-12 15:53:03 -07001564 * the last path fails we must error any remaining I/O.
1565 * Note that if the freeze_bdev fails while suspending, the
1566 * queue_if_no_path state is lost - userspace should reset it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 */
1568static void multipath_presuspend(struct dm_target *ti)
1569{
Mike Snitzer7943bd62016-02-02 21:53:15 -05001570 struct multipath *m = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001572 queue_if_no_path(m, false, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573}
1574
Kiyoshi Ueda6df400a2009-12-10 23:52:19 +00001575static void multipath_postsuspend(struct dm_target *ti)
1576{
Mike Anderson6380f262009-12-10 23:52:21 +00001577 struct multipath *m = ti->private;
1578
1579 mutex_lock(&m->work_mutex);
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001580 flush_multipath_work(m);
Mike Anderson6380f262009-12-10 23:52:21 +00001581 mutex_unlock(&m->work_mutex);
Kiyoshi Ueda6df400a2009-12-10 23:52:19 +00001582}
1583
Alasdair G Kergon436d4102005-07-12 15:53:03 -07001584/*
1585 * Restore the queue_if_no_path setting.
1586 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587static void multipath_resume(struct dm_target *ti)
1588{
Mike Snitzer7943bd62016-02-02 21:53:15 -05001589 struct multipath *m = ti->private;
Mike Snitzer1814f2e2016-07-25 21:08:51 -04001590 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591
Mike Snitzer1814f2e2016-07-25 21:08:51 -04001592 spin_lock_irqsave(&m->lock, flags);
Bart Van Assche9a8ac3a2017-04-27 10:11:25 -07001593 assign_bit(test_bit(MPATHF_SAVED_QUEUE_IF_NO_PATH, &m->flags),
1594 MPATHF_QUEUE_IF_NO_PATH, &m->flags);
Mike Snitzer1814f2e2016-07-25 21:08:51 -04001595 spin_unlock_irqrestore(&m->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596}
1597
1598/*
1599 * Info output has the following format:
1600 * num_multipath_feature_args [multipath_feature_args]*
1601 * num_handler_status_args [handler_status_args]*
1602 * num_groups init_group_number
1603 * [A|D|E num_ps_status_args [ps_status_args]*
1604 * num_paths num_selector_args
1605 * [path_dev A|F fail_count [selector_args]* ]+ ]+
1606 *
1607 * Table output has the following format (identical to the constructor string):
1608 * num_feature_args [features_args]*
1609 * num_handler_args hw_handler [hw_handler_args]*
1610 * num_groups init_group_number
1611 * [priority selector-name num_ps_args [ps_args]*
1612 * num_paths num_selector_args [path_dev [selector_args]* ]+ ]+
1613 */
Mikulas Patockafd7c0922013-03-01 22:45:44 +00001614static void multipath_status(struct dm_target *ti, status_type_t type,
1615 unsigned status_flags, char *result, unsigned maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616{
1617 int sz = 0;
1618 unsigned long flags;
Mike Snitzer7943bd62016-02-02 21:53:15 -05001619 struct multipath *m = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 struct priority_group *pg;
1621 struct pgpath *p;
1622 unsigned pg_num;
1623 char state;
1624
1625 spin_lock_irqsave(&m->lock, flags);
1626
1627 /* Features */
1628 if (type == STATUSTYPE_INFO)
Mike Snitzer91e968a2016-03-17 17:10:15 -04001629 DMEMIT("2 %u %u ", test_bit(MPATHF_QUEUE_IO, &m->flags),
1630 atomic_read(&m->pg_init_count));
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001631 else {
Mike Snitzer518257b2016-03-17 16:32:10 -04001632 DMEMIT("%u ", test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags) +
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +00001633 (m->pg_init_retries > 0) * 2 +
Mike Snitzera58a9352012-07-27 15:08:04 +01001634 (m->pg_init_delay_msecs != DM_PG_INIT_DELAY_DEFAULT) * 2 +
Mike Snitzere83068a2016-05-24 21:16:51 -04001635 test_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags) +
1636 (m->queue_mode != DM_TYPE_REQUEST_BASED) * 2);
1637
Mike Snitzer518257b2016-03-17 16:32:10 -04001638 if (test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001639 DMEMIT("queue_if_no_path ");
1640 if (m->pg_init_retries)
1641 DMEMIT("pg_init_retries %u ", m->pg_init_retries);
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +00001642 if (m->pg_init_delay_msecs != DM_PG_INIT_DELAY_DEFAULT)
1643 DMEMIT("pg_init_delay_msecs %u ", m->pg_init_delay_msecs);
Mike Snitzer518257b2016-03-17 16:32:10 -04001644 if (test_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags))
Mike Snitzera58a9352012-07-27 15:08:04 +01001645 DMEMIT("retain_attached_hw_handler ");
Mike Snitzere83068a2016-05-24 21:16:51 -04001646 if (m->queue_mode != DM_TYPE_REQUEST_BASED) {
1647 switch(m->queue_mode) {
1648 case DM_TYPE_BIO_BASED:
1649 DMEMIT("queue_mode bio ");
1650 break;
1651 case DM_TYPE_MQ_REQUEST_BASED:
1652 DMEMIT("queue_mode mq ");
1653 break;
Bart Van Assche7e0d5742017-04-27 10:11:23 -07001654 default:
1655 WARN_ON_ONCE(true);
1656 break;
Mike Snitzere83068a2016-05-24 21:16:51 -04001657 }
1658 }
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001659 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001661 if (!m->hw_handler_name || type == STATUSTYPE_INFO)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 DMEMIT("0 ");
1663 else
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001664 DMEMIT("1 %s ", m->hw_handler_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665
1666 DMEMIT("%u ", m->nr_priority_groups);
1667
1668 if (m->next_pg)
1669 pg_num = m->next_pg->pg_num;
1670 else if (m->current_pg)
1671 pg_num = m->current_pg->pg_num;
1672 else
Mike Snitzera490a072011-03-24 13:54:33 +00001673 pg_num = (m->nr_priority_groups ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674
1675 DMEMIT("%u ", pg_num);
1676
1677 switch (type) {
1678 case STATUSTYPE_INFO:
1679 list_for_each_entry(pg, &m->priority_groups, list) {
1680 if (pg->bypassed)
1681 state = 'D'; /* Disabled */
1682 else if (pg == m->current_pg)
1683 state = 'A'; /* Currently Active */
1684 else
1685 state = 'E'; /* Enabled */
1686
1687 DMEMIT("%c ", state);
1688
1689 if (pg->ps.type->status)
1690 sz += pg->ps.type->status(&pg->ps, NULL, type,
1691 result + sz,
1692 maxlen - sz);
1693 else
1694 DMEMIT("0 ");
1695
1696 DMEMIT("%u %u ", pg->nr_pgpaths,
1697 pg->ps.type->info_args);
1698
1699 list_for_each_entry(p, &pg->pgpaths, list) {
1700 DMEMIT("%s %s %u ", p->path.dev->name,
Kiyoshi Ueda66800732008-10-10 13:36:58 +01001701 p->is_active ? "A" : "F",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 p->fail_count);
1703 if (pg->ps.type->status)
1704 sz += pg->ps.type->status(&pg->ps,
1705 &p->path, type, result + sz,
1706 maxlen - sz);
1707 }
1708 }
1709 break;
1710
1711 case STATUSTYPE_TABLE:
1712 list_for_each_entry(pg, &m->priority_groups, list) {
1713 DMEMIT("%s ", pg->ps.type->name);
1714
1715 if (pg->ps.type->status)
1716 sz += pg->ps.type->status(&pg->ps, NULL, type,
1717 result + sz,
1718 maxlen - sz);
1719 else
1720 DMEMIT("0 ");
1721
1722 DMEMIT("%u %u ", pg->nr_pgpaths,
1723 pg->ps.type->table_args);
1724
1725 list_for_each_entry(p, &pg->pgpaths, list) {
1726 DMEMIT("%s ", p->path.dev->name);
1727 if (pg->ps.type->status)
1728 sz += pg->ps.type->status(&pg->ps,
1729 &p->path, type, result + sz,
1730 maxlen - sz);
1731 }
1732 }
1733 break;
1734 }
1735
1736 spin_unlock_irqrestore(&m->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737}
1738
1739static int multipath_message(struct dm_target *ti, unsigned argc, char **argv)
1740{
Mike Anderson6380f262009-12-10 23:52:21 +00001741 int r = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 struct dm_dev *dev;
Mike Snitzer7943bd62016-02-02 21:53:15 -05001743 struct multipath *m = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 action_fn action;
1745
Mike Anderson6380f262009-12-10 23:52:21 +00001746 mutex_lock(&m->work_mutex);
1747
Kiyoshi Uedac2f3d242009-12-10 23:52:27 +00001748 if (dm_suspended(ti)) {
1749 r = -EBUSY;
1750 goto out;
1751 }
1752
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 if (argc == 1) {
Mike Snitzer498f0102011-08-02 12:32:04 +01001754 if (!strcasecmp(argv[0], "queue_if_no_path")) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001755 r = queue_if_no_path(m, true, false);
Mike Anderson6380f262009-12-10 23:52:21 +00001756 goto out;
Mike Snitzer498f0102011-08-02 12:32:04 +01001757 } else if (!strcasecmp(argv[0], "fail_if_no_path")) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001758 r = queue_if_no_path(m, false, false);
Mike Anderson6380f262009-12-10 23:52:21 +00001759 goto out;
1760 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 }
1762
Mike Anderson6380f262009-12-10 23:52:21 +00001763 if (argc != 2) {
Jose Castilloa356e422014-01-29 17:52:45 +01001764 DMWARN("Invalid multipath message arguments. Expected 2 arguments, got %d.", argc);
Mike Anderson6380f262009-12-10 23:52:21 +00001765 goto out;
1766 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767
Mike Snitzer498f0102011-08-02 12:32:04 +01001768 if (!strcasecmp(argv[0], "disable_group")) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001769 r = bypass_pg_num(m, argv[1], true);
Mike Anderson6380f262009-12-10 23:52:21 +00001770 goto out;
Mike Snitzer498f0102011-08-02 12:32:04 +01001771 } else if (!strcasecmp(argv[0], "enable_group")) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001772 r = bypass_pg_num(m, argv[1], false);
Mike Anderson6380f262009-12-10 23:52:21 +00001773 goto out;
Mike Snitzer498f0102011-08-02 12:32:04 +01001774 } else if (!strcasecmp(argv[0], "switch_group")) {
Mike Anderson6380f262009-12-10 23:52:21 +00001775 r = switch_pg_num(m, argv[1]);
1776 goto out;
Mike Snitzer498f0102011-08-02 12:32:04 +01001777 } else if (!strcasecmp(argv[0], "reinstate_path"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 action = reinstate_path;
Mike Snitzer498f0102011-08-02 12:32:04 +01001779 else if (!strcasecmp(argv[0], "fail_path"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 action = fail_path;
Mike Anderson6380f262009-12-10 23:52:21 +00001781 else {
Jose Castilloa356e422014-01-29 17:52:45 +01001782 DMWARN("Unrecognised multipath message received: %s", argv[0]);
Mike Anderson6380f262009-12-10 23:52:21 +00001783 goto out;
1784 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785
Nikanth Karthikesan8215d6e2010-03-06 02:32:27 +00001786 r = dm_get_device(ti, argv[1], dm_table_get_mode(ti->table), &dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 if (r) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001788 DMWARN("message: error getting device %s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 argv[1]);
Mike Anderson6380f262009-12-10 23:52:21 +00001790 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 }
1792
1793 r = action_dev(m, dev, action);
1794
1795 dm_put_device(ti, dev);
1796
Mike Anderson6380f262009-12-10 23:52:21 +00001797out:
1798 mutex_unlock(&m->work_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800}
1801
Christoph Hellwige56f81e2015-10-15 14:10:50 +02001802static int multipath_prepare_ioctl(struct dm_target *ti,
1803 struct block_device **bdev, fmode_t *mode)
Milan Broz9af4aa32006-10-03 01:15:20 -07001804{
Mikulas Patocka35991652012-06-03 00:29:58 +01001805 struct multipath *m = ti->private;
Mike Snitzer2da16102016-03-17 18:38:17 -04001806 struct pgpath *current_pgpath;
Mikulas Patocka35991652012-06-03 00:29:58 +01001807 int r;
1808
Mike Snitzer2da16102016-03-17 18:38:17 -04001809 current_pgpath = lockless_dereference(m->current_pgpath);
1810 if (!current_pgpath)
1811 current_pgpath = choose_pgpath(m, 0);
Milan Broz9af4aa32006-10-03 01:15:20 -07001812
Mike Snitzer2da16102016-03-17 18:38:17 -04001813 if (current_pgpath) {
Mike Snitzer518257b2016-03-17 16:32:10 -04001814 if (!test_bit(MPATHF_QUEUE_IO, &m->flags)) {
Mike Snitzer2da16102016-03-17 18:38:17 -04001815 *bdev = current_pgpath->path.dev->bdev;
1816 *mode = current_pgpath->path.dev->mode;
Junichi Nomura43e43c92015-11-17 09:36:56 +00001817 r = 0;
1818 } else {
1819 /* pg_init has not started or completed */
1820 r = -ENOTCONN;
1821 }
1822 } else {
1823 /* No path is available */
Mike Snitzer518257b2016-03-17 16:32:10 -04001824 if (test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))
Junichi Nomura43e43c92015-11-17 09:36:56 +00001825 r = -ENOTCONN;
1826 else
1827 r = -EIO;
Milan Broze90dae12006-10-03 01:15:22 -07001828 }
Milan Broz9af4aa32006-10-03 01:15:20 -07001829
Junichi Nomura5bbbfdf2015-11-17 09:39:26 +00001830 if (r == -ENOTCONN) {
Mike Snitzer2da16102016-03-17 18:38:17 -04001831 if (!lockless_dereference(m->current_pg)) {
Hannes Reinecke3e9f1be2014-02-28 15:33:45 +01001832 /* Path status changed, redo selection */
Mike Snitzer2da16102016-03-17 18:38:17 -04001833 (void) choose_pgpath(m, 0);
Hannes Reinecke3e9f1be2014-02-28 15:33:45 +01001834 }
Mike Snitzer518257b2016-03-17 16:32:10 -04001835 if (test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags))
Mike Snitzer2da16102016-03-17 18:38:17 -04001836 pg_init_all_paths(m);
Hannes Reinecke63d832c2014-05-26 14:45:39 +02001837 dm_table_run_md_queue_async(m->ti->table);
Mike Snitzer7e48c762016-09-14 10:47:03 -04001838 process_queued_io_list(m);
Hannes Reinecke3e9f1be2014-02-28 15:33:45 +01001839 }
Mikulas Patocka35991652012-06-03 00:29:58 +01001840
Christoph Hellwige56f81e2015-10-15 14:10:50 +02001841 /*
1842 * Only pass ioctls through if the device sizes match exactly.
1843 */
1844 if (!r && ti->len != i_size_read((*bdev)->bd_inode) >> SECTOR_SHIFT)
1845 return 1;
1846 return r;
Milan Broz9af4aa32006-10-03 01:15:20 -07001847}
1848
Mike Snitzeraf4874e2009-06-22 10:12:33 +01001849static int multipath_iterate_devices(struct dm_target *ti,
1850 iterate_devices_callout_fn fn, void *data)
1851{
1852 struct multipath *m = ti->private;
1853 struct priority_group *pg;
1854 struct pgpath *p;
1855 int ret = 0;
1856
1857 list_for_each_entry(pg, &m->priority_groups, list) {
1858 list_for_each_entry(p, &pg->pgpaths, list) {
Mike Snitzer5dea2712009-07-23 20:30:42 +01001859 ret = fn(ti, p->path.dev, ti->begin, ti->len, data);
Mike Snitzeraf4874e2009-06-22 10:12:33 +01001860 if (ret)
1861 goto out;
1862 }
1863 }
1864
1865out:
1866 return ret;
1867}
1868
Mike Snitzer9f54cec2016-02-11 21:42:28 -05001869static int pgpath_busy(struct pgpath *pgpath)
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001870{
1871 struct request_queue *q = bdev_get_queue(pgpath->path.dev->bdev);
1872
Mike Snitzer52b09912015-02-23 16:36:41 -05001873 return blk_lld_busy(q);
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001874}
1875
1876/*
1877 * We return "busy", only when we can map I/Os but underlying devices
1878 * are busy (so even if we map I/Os now, the I/Os will wait on
1879 * the underlying queue).
1880 * In other words, if we want to kill I/Os or queue them inside us
1881 * due to map unavailability, we don't return "busy". Otherwise,
1882 * dm core won't give us the I/Os and we can't do what we want.
1883 */
1884static int multipath_busy(struct dm_target *ti)
1885{
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001886 bool busy = false, has_active = false;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001887 struct multipath *m = ti->private;
Mike Snitzer2da16102016-03-17 18:38:17 -04001888 struct priority_group *pg, *next_pg;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001889 struct pgpath *pgpath;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001890
Mike Snitzerb88efd42016-09-09 19:26:19 -04001891 /* pg_init in progress */
1892 if (atomic_read(&m->pg_init_in_progress))
Mike Snitzer2da16102016-03-17 18:38:17 -04001893 return true;
1894
Mike Snitzerb88efd42016-09-09 19:26:19 -04001895 /* no paths available, for blk-mq: rely on IO mapping to delay requeue */
1896 if (!atomic_read(&m->nr_valid_paths) && test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))
1897 return (m->queue_mode != DM_TYPE_MQ_REQUEST_BASED);
1898
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001899 /* Guess which priority_group will be used at next mapping time */
Mike Snitzer2da16102016-03-17 18:38:17 -04001900 pg = lockless_dereference(m->current_pg);
1901 next_pg = lockless_dereference(m->next_pg);
1902 if (unlikely(!lockless_dereference(m->current_pgpath) && next_pg))
1903 pg = next_pg;
1904
1905 if (!pg) {
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001906 /*
1907 * We don't know which pg will be used at next mapping time.
Mike Snitzer2da16102016-03-17 18:38:17 -04001908 * We don't call choose_pgpath() here to avoid to trigger
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001909 * pg_init just by busy checking.
1910 * So we don't know whether underlying devices we will be using
1911 * at next mapping time are busy or not. Just try mapping.
1912 */
Mike Snitzer2da16102016-03-17 18:38:17 -04001913 return busy;
1914 }
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001915
1916 /*
1917 * If there is one non-busy active path at least, the path selector
1918 * will be able to select it. So we consider such a pg as not busy.
1919 */
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001920 busy = true;
Mike Snitzer2da16102016-03-17 18:38:17 -04001921 list_for_each_entry(pgpath, &pg->pgpaths, list) {
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001922 if (pgpath->is_active) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001923 has_active = true;
Mike Snitzer9f54cec2016-02-11 21:42:28 -05001924 if (!pgpath_busy(pgpath)) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001925 busy = false;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001926 break;
1927 }
1928 }
Mike Snitzer2da16102016-03-17 18:38:17 -04001929 }
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001930
Mike Snitzer2da16102016-03-17 18:38:17 -04001931 if (!has_active) {
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001932 /*
1933 * No active path in this pg, so this pg won't be used and
1934 * the current_pg will be changed at next mapping time.
1935 * We need to try mapping to determine it.
1936 */
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001937 busy = false;
Mike Snitzer2da16102016-03-17 18:38:17 -04001938 }
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001939
1940 return busy;
1941}
1942
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943/*-----------------------------------------------------------------
1944 * Module setup
1945 *---------------------------------------------------------------*/
1946static struct target_type multipath_target = {
1947 .name = "multipath",
Mike Snitzere83068a2016-05-24 21:16:51 -04001948 .version = {1, 12, 0},
Mike Snitzer16f12262016-01-31 17:22:27 -05001949 .features = DM_TARGET_SINGLETON | DM_TARGET_IMMUTABLE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 .module = THIS_MODULE,
1951 .ctr = multipath_ctr,
1952 .dtr = multipath_dtr,
Mike Snitzere5863d92014-12-17 21:08:12 -05001953 .clone_and_map_rq = multipath_clone_and_map,
1954 .release_clone_rq = multipath_release_clone,
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001955 .rq_end_io = multipath_end_io,
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001956 .map = multipath_map_bio,
1957 .end_io = multipath_end_io_bio,
1958 .presuspend = multipath_presuspend,
1959 .postsuspend = multipath_postsuspend,
1960 .resume = multipath_resume,
1961 .status = multipath_status,
1962 .message = multipath_message,
1963 .prepare_ioctl = multipath_prepare_ioctl,
1964 .iterate_devices = multipath_iterate_devices,
1965 .busy = multipath_busy,
1966};
1967
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968static int __init dm_multipath_init(void)
1969{
1970 int r;
1971
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 r = dm_register_target(&multipath_target);
1973 if (r < 0) {
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001974 DMERR("request-based register failed %d", r);
Johannes Thumshirnff658e92015-01-11 12:45:23 +01001975 r = -EINVAL;
1976 goto bad_register_target;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 }
1978
Tejun Heo4d4d66a2011-01-13 19:59:57 +00001979 kmultipathd = alloc_workqueue("kmpathd", WQ_MEM_RECLAIM, 0);
Alasdair G Kergonc5573082005-05-05 16:16:07 -07001980 if (!kmultipathd) {
Alasdair G Kergon0cd33122007-07-12 17:27:01 +01001981 DMERR("failed to create workqueue kmpathd");
Johannes Thumshirnff658e92015-01-11 12:45:23 +01001982 r = -ENOMEM;
1983 goto bad_alloc_kmultipathd;
Alasdair G Kergonc5573082005-05-05 16:16:07 -07001984 }
1985
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001986 /*
1987 * A separate workqueue is used to handle the device handlers
1988 * to avoid overloading existing workqueue. Overloading the
1989 * old workqueue would also create a bottleneck in the
1990 * path of the storage hardware device activation.
1991 */
Tejun Heo4d4d66a2011-01-13 19:59:57 +00001992 kmpath_handlerd = alloc_ordered_workqueue("kmpath_handlerd",
1993 WQ_MEM_RECLAIM);
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001994 if (!kmpath_handlerd) {
1995 DMERR("failed to create workqueue kmpath_handlerd");
Johannes Thumshirnff658e92015-01-11 12:45:23 +01001996 r = -ENOMEM;
1997 goto bad_alloc_kmpath_handlerd;
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001998 }
1999
Johannes Thumshirnff658e92015-01-11 12:45:23 +01002000 return 0;
2001
2002bad_alloc_kmpath_handlerd:
2003 destroy_workqueue(kmultipathd);
2004bad_alloc_kmultipathd:
2005 dm_unregister_target(&multipath_target);
2006bad_register_target:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 return r;
2008}
2009
2010static void __exit dm_multipath_exit(void)
2011{
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07002012 destroy_workqueue(kmpath_handlerd);
Alasdair G Kergonc5573082005-05-05 16:16:07 -07002013 destroy_workqueue(kmultipathd);
2014
Mikulas Patocka10d3bd02009-01-06 03:04:58 +00002015 dm_unregister_target(&multipath_target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016}
2017
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018module_init(dm_multipath_init);
2019module_exit(dm_multipath_exit);
2020
2021MODULE_DESCRIPTION(DM_NAME " multipath target");
2022MODULE_AUTHOR("Sistina Software <dm-devel@redhat.com>");
2023MODULE_LICENSE("GPL");