blob: 0e8ab5bb3575fccf24a5734d1f5fe8149210b6aa [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
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200568 bio->bi_status = 0;
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400569 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:
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200626 bio->bi_status = BLK_STS_IOERR;
627 bio_endio(bio);
Dan Carpenter047385b2017-06-14 08:22:55 -0600628 break;
Christoph Hellwig846785e2017-06-03 09:38:02 +0200629 case DM_MAPIO_REQUEUE:
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200630 bio->bi_status = BLK_STS_DM_REQUEUE;
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400631 bio_endio(bio);
Christoph Hellwig846785e2017-06-03 09:38:02 +0200632 break;
633 case DM_MAPIO_REMAPPED:
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400634 generic_make_request(bio);
Christoph Hellwig846785e2017-06-03 09:38:02 +0200635 break;
636 }
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400637 }
638 blk_finish_plug(&plug);
639}
640
Bart Van Assche9a8ac3a2017-04-27 10:11:25 -0700641static void assign_bit(bool value, long nr, unsigned long *addr)
642{
643 if (value)
644 set_bit(nr, addr);
645 else
646 clear_bit(nr, addr);
647}
648
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400649/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 * If we run out of usable paths, should we queue I/O or error it?
651 */
Mike Snitzerbe7d31c2016-02-10 13:02:21 -0500652static int queue_if_no_path(struct multipath *m, bool queue_if_no_path,
653 bool save_old_value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654{
655 unsigned long flags;
656
657 spin_lock_irqsave(&m->lock, flags);
Bart Van Assche9a8ac3a2017-04-27 10:11:25 -0700658 assign_bit((save_old_value && test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags)) ||
659 (!save_old_value && queue_if_no_path),
660 MPATHF_SAVED_QUEUE_IF_NO_PATH, &m->flags);
661 assign_bit(queue_if_no_path || dm_noflush_suspending(m->ti),
662 MPATHF_QUEUE_IF_NO_PATH, &m->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 spin_unlock_irqrestore(&m->lock, flags);
664
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400665 if (!queue_if_no_path) {
Hannes Reinecke63d832c2014-05-26 14:45:39 +0200666 dm_table_run_md_queue_async(m->ti->table);
Mike Snitzer7e48c762016-09-14 10:47:03 -0400667 process_queued_io_list(m);
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400668 }
Hannes Reinecke63d832c2014-05-26 14:45:39 +0200669
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 return 0;
671}
672
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673/*
674 * An event is triggered whenever a path is taken out of use.
675 * Includes path failure and PG bypass.
676 */
David Howellsc4028952006-11-22 14:57:56 +0000677static void trigger_event(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678{
David Howellsc4028952006-11-22 14:57:56 +0000679 struct multipath *m =
680 container_of(work, struct multipath, trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
682 dm_table_event(m->ti->table);
683}
684
685/*-----------------------------------------------------------------
686 * Constructor/argument parsing:
687 * <#multipath feature args> [<arg>]*
688 * <#hw_handler args> [hw_handler [<arg>]*]
689 * <#priority groups>
690 * <initial priority group>
691 * [<selector> <#selector args> [<arg>]*
692 * <#paths> <#per-path selector args>
693 * [<path> [<arg>]* ]+ ]+
694 *---------------------------------------------------------------*/
Mike Snitzer498f0102011-08-02 12:32:04 +0100695static int parse_path_selector(struct dm_arg_set *as, struct priority_group *pg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 struct dm_target *ti)
697{
698 int r;
699 struct path_selector_type *pst;
700 unsigned ps_argc;
701
Mike Snitzer498f0102011-08-02 12:32:04 +0100702 static struct dm_arg _args[] = {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700703 {0, 1024, "invalid number of path selector args"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 };
705
Mike Snitzer498f0102011-08-02 12:32:04 +0100706 pst = dm_get_path_selector(dm_shift_arg(as));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 if (!pst) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700708 ti->error = "unknown path selector type";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 return -EINVAL;
710 }
711
Mike Snitzer498f0102011-08-02 12:32:04 +0100712 r = dm_read_arg_group(_args, as, &ps_argc, &ti->error);
Mikulas Patocka371b2e32008-07-21 12:00:24 +0100713 if (r) {
714 dm_put_path_selector(pst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 return -EINVAL;
Mikulas Patocka371b2e32008-07-21 12:00:24 +0100716 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
718 r = pst->create(&pg->ps, ps_argc, as->argv);
719 if (r) {
720 dm_put_path_selector(pst);
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700721 ti->error = "path selector constructor failed";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 return r;
723 }
724
725 pg->ps.type = pst;
Mike Snitzer498f0102011-08-02 12:32:04 +0100726 dm_consume_args(as, ps_argc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
728 return 0;
729}
730
Mike Snitzer498f0102011-08-02 12:32:04 +0100731static struct pgpath *parse_path(struct dm_arg_set *as, struct path_selector *ps,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 struct dm_target *ti)
733{
734 int r;
735 struct pgpath *p;
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700736 struct multipath *m = ti->private;
Mike Snitzera58a9352012-07-27 15:08:04 +0100737 struct request_queue *q = NULL;
738 const char *attached_handler_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
740 /* we need at least a path arg */
741 if (as->argc < 1) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700742 ti->error = "no device given";
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100743 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 }
745
746 p = alloc_pgpath();
747 if (!p)
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100748 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Mike Snitzer498f0102011-08-02 12:32:04 +0100750 r = dm_get_device(ti, dm_shift_arg(as), dm_table_get_mode(ti->table),
Nikanth Karthikesan8215d6e2010-03-06 02:32:27 +0000751 &p->path.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 if (r) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700753 ti->error = "error getting device";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 goto bad;
755 }
756
Mike Snitzer518257b2016-03-17 16:32:10 -0400757 if (test_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags) || m->hw_handler_name)
Mike Snitzera58a9352012-07-27 15:08:04 +0100758 q = bdev_get_queue(p->path.dev->bdev);
Hannes Reineckea0cf7ea2009-06-22 10:12:11 +0100759
Mike Snitzer518257b2016-03-17 16:32:10 -0400760 if (test_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags)) {
Christoph Hellwig1bab0de2015-08-27 14:16:54 +0200761retain:
Mike Snitzera58a9352012-07-27 15:08:04 +0100762 attached_handler_name = scsi_dh_attached_handler_name(q, GFP_KERNEL);
763 if (attached_handler_name) {
764 /*
tang.junhui54cd6402016-11-24 15:11:48 +0800765 * Clear any hw_handler_params associated with a
766 * handler that isn't already attached.
767 */
768 if (m->hw_handler_name && strcmp(attached_handler_name, m->hw_handler_name)) {
769 kfree(m->hw_handler_params);
770 m->hw_handler_params = NULL;
771 }
772
773 /*
Mike Snitzera58a9352012-07-27 15:08:04 +0100774 * Reset hw_handler_name to match the attached handler
Mike Snitzera58a9352012-07-27 15:08:04 +0100775 *
776 * NB. This modifies the table line to show the actual
777 * handler instead of the original table passed in.
778 */
779 kfree(m->hw_handler_name);
780 m->hw_handler_name = attached_handler_name;
Mike Snitzera58a9352012-07-27 15:08:04 +0100781 }
782 }
783
784 if (m->hw_handler_name) {
Hannes Reineckea0cf7ea2009-06-22 10:12:11 +0100785 r = scsi_dh_attach(q, m->hw_handler_name);
786 if (r == -EBUSY) {
Christoph Hellwig1bab0de2015-08-27 14:16:54 +0200787 char b[BDEVNAME_SIZE];
Hannes Reineckea0cf7ea2009-06-22 10:12:11 +0100788
Christoph Hellwig1bab0de2015-08-27 14:16:54 +0200789 printk(KERN_INFO "dm-mpath: retaining handler on device %s\n",
790 bdevname(p->path.dev->bdev, b));
791 goto retain;
792 }
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700793 if (r < 0) {
Hannes Reineckea0cf7ea2009-06-22 10:12:11 +0100794 ti->error = "error attaching hardware handler";
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700795 dm_put_device(ti, p->path.dev);
796 goto bad;
797 }
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700798
799 if (m->hw_handler_params) {
800 r = scsi_dh_set_params(q, m->hw_handler_params);
801 if (r < 0) {
802 ti->error = "unable to set hardware "
803 "handler parameters";
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700804 dm_put_device(ti, p->path.dev);
805 goto bad;
806 }
807 }
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700808 }
809
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 r = ps->type->add_path(ps, &p->path, as->argc, as->argv, &ti->error);
811 if (r) {
812 dm_put_device(ti, p->path.dev);
813 goto bad;
814 }
815
816 return p;
817
818 bad:
819 free_pgpath(p);
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100820 return ERR_PTR(r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821}
822
Mike Snitzer498f0102011-08-02 12:32:04 +0100823static struct priority_group *parse_priority_group(struct dm_arg_set *as,
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700824 struct multipath *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825{
Mike Snitzer498f0102011-08-02 12:32:04 +0100826 static struct dm_arg _args[] = {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700827 {1, 1024, "invalid number of paths"},
828 {0, 1024, "invalid number of selector args"}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 };
830
831 int r;
Mike Snitzer498f0102011-08-02 12:32:04 +0100832 unsigned i, nr_selector_args, nr_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 struct priority_group *pg;
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700834 struct dm_target *ti = m->ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
836 if (as->argc < 2) {
837 as->argc = 0;
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100838 ti->error = "not enough priority group arguments";
839 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 }
841
842 pg = alloc_priority_group();
843 if (!pg) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700844 ti->error = "couldn't allocate priority group";
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100845 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 }
847 pg->m = m;
848
849 r = parse_path_selector(as, pg, ti);
850 if (r)
851 goto bad;
852
853 /*
854 * read the paths
855 */
Mike Snitzer498f0102011-08-02 12:32:04 +0100856 r = dm_read_arg(_args, as, &pg->nr_pgpaths, &ti->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 if (r)
858 goto bad;
859
Mike Snitzer498f0102011-08-02 12:32:04 +0100860 r = dm_read_arg(_args + 1, as, &nr_selector_args, &ti->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 if (r)
862 goto bad;
863
Mike Snitzer498f0102011-08-02 12:32:04 +0100864 nr_args = 1 + nr_selector_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 for (i = 0; i < pg->nr_pgpaths; i++) {
866 struct pgpath *pgpath;
Mike Snitzer498f0102011-08-02 12:32:04 +0100867 struct dm_arg_set path_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
Mike Snitzer498f0102011-08-02 12:32:04 +0100869 if (as->argc < nr_args) {
Mikulas Patocka148acff2008-07-21 12:00:30 +0100870 ti->error = "not enough path parameters";
Alasdair G Kergon6bbf79a2010-08-12 04:13:49 +0100871 r = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 goto bad;
Mikulas Patocka148acff2008-07-21 12:00:30 +0100873 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
Mike Snitzer498f0102011-08-02 12:32:04 +0100875 path_args.argc = nr_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 path_args.argv = as->argv;
877
878 pgpath = parse_path(&path_args, &pg->ps, ti);
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100879 if (IS_ERR(pgpath)) {
880 r = PTR_ERR(pgpath);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 goto bad;
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100882 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
884 pgpath->pg = pg;
885 list_add_tail(&pgpath->list, &pg->pgpaths);
Mike Snitzer498f0102011-08-02 12:32:04 +0100886 dm_consume_args(as, nr_args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 }
888
889 return pg;
890
891 bad:
892 free_priority_group(pg, ti);
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100893 return ERR_PTR(r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894}
895
Mike Snitzer498f0102011-08-02 12:32:04 +0100896static int parse_hw_handler(struct dm_arg_set *as, struct multipath *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 unsigned hw_argc;
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700899 int ret;
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700900 struct dm_target *ti = m->ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
Mike Snitzer498f0102011-08-02 12:32:04 +0100902 static struct dm_arg _args[] = {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700903 {0, 1024, "invalid number of hardware handler args"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 };
905
Mike Snitzer498f0102011-08-02 12:32:04 +0100906 if (dm_read_arg_group(_args, as, &hw_argc, &ti->error))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 return -EINVAL;
908
909 if (!hw_argc)
910 return 0;
911
Mike Snitzere83068a2016-05-24 21:16:51 -0400912 if (m->queue_mode == DM_TYPE_BIO_BASED) {
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400913 dm_consume_args(as, hw_argc);
914 DMERR("bio-based multipath doesn't allow hardware handler args");
915 return 0;
916 }
917
Mike Snitzer498f0102011-08-02 12:32:04 +0100918 m->hw_handler_name = kstrdup(dm_shift_arg(as), GFP_KERNEL);
tang.junhuif97dc422016-10-28 17:04:46 +0800919 if (!m->hw_handler_name)
920 return -EINVAL;
Chandra Seetharaman14e98c52008-11-13 23:39:06 +0000921
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700922 if (hw_argc > 1) {
923 char *p;
924 int i, j, len = 4;
925
926 for (i = 0; i <= hw_argc - 2; i++)
927 len += strlen(as->argv[i]) + 1;
928 p = m->hw_handler_params = kzalloc(len, GFP_KERNEL);
929 if (!p) {
930 ti->error = "memory allocation failed";
931 ret = -ENOMEM;
932 goto fail;
933 }
934 j = sprintf(p, "%d", hw_argc - 1);
935 for (i = 0, p+=j+1; i <= hw_argc - 2; i++, p+=j+1)
936 j = sprintf(p, "%s", as->argv[i]);
937 }
Mike Snitzer498f0102011-08-02 12:32:04 +0100938 dm_consume_args(as, hw_argc - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
940 return 0;
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700941fail:
942 kfree(m->hw_handler_name);
943 m->hw_handler_name = NULL;
944 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945}
946
Mike Snitzer498f0102011-08-02 12:32:04 +0100947static int parse_features(struct dm_arg_set *as, struct multipath *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948{
949 int r;
950 unsigned argc;
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700951 struct dm_target *ti = m->ti;
Mike Snitzer498f0102011-08-02 12:32:04 +0100952 const char *arg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
Mike Snitzer498f0102011-08-02 12:32:04 +0100954 static struct dm_arg _args[] = {
Mike Snitzere83068a2016-05-24 21:16:51 -0400955 {0, 8, "invalid number of feature args"},
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100956 {1, 50, "pg_init_retries must be between 1 and 50"},
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +0000957 {0, 60000, "pg_init_delay_msecs must be between 0 and 60000"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 };
959
Mike Snitzer498f0102011-08-02 12:32:04 +0100960 r = dm_read_arg_group(_args, as, &argc, &ti->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 if (r)
962 return -EINVAL;
963
964 if (!argc)
965 return 0;
966
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100967 do {
Mike Snitzer498f0102011-08-02 12:32:04 +0100968 arg_name = dm_shift_arg(as);
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100969 argc--;
970
Mike Snitzer498f0102011-08-02 12:32:04 +0100971 if (!strcasecmp(arg_name, "queue_if_no_path")) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -0500972 r = queue_if_no_path(m, true, false);
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100973 continue;
974 }
975
Mike Snitzera58a9352012-07-27 15:08:04 +0100976 if (!strcasecmp(arg_name, "retain_attached_hw_handler")) {
Mike Snitzer518257b2016-03-17 16:32:10 -0400977 set_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags);
Mike Snitzera58a9352012-07-27 15:08:04 +0100978 continue;
979 }
980
Mike Snitzer498f0102011-08-02 12:32:04 +0100981 if (!strcasecmp(arg_name, "pg_init_retries") &&
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100982 (argc >= 1)) {
Mike Snitzer498f0102011-08-02 12:32:04 +0100983 r = dm_read_arg(_args + 1, as, &m->pg_init_retries, &ti->error);
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100984 argc--;
985 continue;
986 }
987
Mike Snitzer498f0102011-08-02 12:32:04 +0100988 if (!strcasecmp(arg_name, "pg_init_delay_msecs") &&
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +0000989 (argc >= 1)) {
Mike Snitzer498f0102011-08-02 12:32:04 +0100990 r = dm_read_arg(_args + 2, as, &m->pg_init_delay_msecs, &ti->error);
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +0000991 argc--;
992 continue;
993 }
994
Mike Snitzere83068a2016-05-24 21:16:51 -0400995 if (!strcasecmp(arg_name, "queue_mode") &&
996 (argc >= 1)) {
997 const char *queue_mode_name = dm_shift_arg(as);
998
999 if (!strcasecmp(queue_mode_name, "bio"))
1000 m->queue_mode = DM_TYPE_BIO_BASED;
1001 else if (!strcasecmp(queue_mode_name, "rq"))
1002 m->queue_mode = DM_TYPE_REQUEST_BASED;
1003 else if (!strcasecmp(queue_mode_name, "mq"))
1004 m->queue_mode = DM_TYPE_MQ_REQUEST_BASED;
1005 else {
1006 ti->error = "Unknown 'queue_mode' requested";
1007 r = -EINVAL;
1008 }
1009 argc--;
1010 continue;
1011 }
1012
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 ti->error = "Unrecognised multipath feature request";
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001014 r = -EINVAL;
1015 } while (argc && !r);
1016
1017 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018}
1019
Mike Snitzere83068a2016-05-24 21:16:51 -04001020static int multipath_ctr(struct dm_target *ti, unsigned argc, char **argv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021{
Mike Snitzer498f0102011-08-02 12:32:04 +01001022 /* target arguments */
1023 static struct dm_arg _args[] = {
Mike Snitzera490a072011-03-24 13:54:33 +00001024 {0, 1024, "invalid number of priority groups"},
1025 {0, 1024, "invalid initial priority group number"},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 };
1027
1028 int r;
1029 struct multipath *m;
Mike Snitzer498f0102011-08-02 12:32:04 +01001030 struct dm_arg_set as;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 unsigned pg_count = 0;
1032 unsigned next_pg_num;
1033
1034 as.argc = argc;
1035 as.argv = argv;
1036
Mike Snitzere83068a2016-05-24 21:16:51 -04001037 m = alloc_multipath(ti);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 if (!m) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001039 ti->error = "can't allocate multipath";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 return -EINVAL;
1041 }
1042
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -07001043 r = parse_features(&as, m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 if (r)
1045 goto bad;
1046
Mike Snitzere83068a2016-05-24 21:16:51 -04001047 r = alloc_multipath_stage2(ti, m);
1048 if (r)
1049 goto bad;
1050
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -07001051 r = parse_hw_handler(&as, m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 if (r)
1053 goto bad;
1054
Mike Snitzer498f0102011-08-02 12:32:04 +01001055 r = dm_read_arg(_args, &as, &m->nr_priority_groups, &ti->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 if (r)
1057 goto bad;
1058
Mike Snitzer498f0102011-08-02 12:32:04 +01001059 r = dm_read_arg(_args + 1, &as, &next_pg_num, &ti->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 if (r)
1061 goto bad;
1062
Mike Snitzera490a072011-03-24 13:54:33 +00001063 if ((!m->nr_priority_groups && next_pg_num) ||
1064 (m->nr_priority_groups && !next_pg_num)) {
1065 ti->error = "invalid initial priority group";
1066 r = -EINVAL;
1067 goto bad;
1068 }
1069
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 /* parse the priority groups */
1071 while (as.argc) {
1072 struct priority_group *pg;
Mike Snitzer91e968a2016-03-17 17:10:15 -04001073 unsigned nr_valid_paths = atomic_read(&m->nr_valid_paths);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -07001075 pg = parse_priority_group(&as, m);
Benjamin Marzinski01460f32008-10-10 13:36:57 +01001076 if (IS_ERR(pg)) {
1077 r = PTR_ERR(pg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 goto bad;
1079 }
1080
Mike Snitzer91e968a2016-03-17 17:10:15 -04001081 nr_valid_paths += pg->nr_pgpaths;
1082 atomic_set(&m->nr_valid_paths, nr_valid_paths);
1083
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 list_add_tail(&pg->list, &m->priority_groups);
1085 pg_count++;
1086 pg->pg_num = pg_count;
1087 if (!--next_pg_num)
1088 m->next_pg = pg;
1089 }
1090
1091 if (pg_count != m->nr_priority_groups) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001092 ti->error = "priority group count mismatch";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 r = -EINVAL;
1094 goto bad;
1095 }
1096
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001097 ti->num_flush_bios = 1;
1098 ti->num_discard_bios = 1;
Mike Snitzer042bcef2013-05-10 14:37:16 +01001099 ti->num_write_same_bios = 1;
Christoph Hellwigac62d622017-04-05 19:21:05 +02001100 ti->num_write_zeroes_bios = 1;
Mike Snitzere83068a2016-05-24 21:16:51 -04001101 if (m->queue_mode == DM_TYPE_BIO_BASED)
Mike Snitzerbf661be2016-05-24 15:48:08 -04001102 ti->per_io_data_size = multipath_per_bio_data_size();
Christoph Hellwigeb8db832017-01-22 18:32:46 +01001103 else
Mike Snitzer8637a6b2016-01-31 12:08:36 -05001104 ti->per_io_data_size = sizeof(struct dm_mpath_io);
Mikulas Patocka86279212009-06-22 10:12:24 +01001105
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 return 0;
1107
1108 bad:
1109 free_multipath(m);
1110 return r;
1111}
1112
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001113static void multipath_wait_for_pg_init_completion(struct multipath *m)
1114{
Bart Van Assche9f4c3f82016-08-31 15:16:43 -07001115 DEFINE_WAIT(wait);
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001116
1117 while (1) {
Bart Van Assche9f4c3f82016-08-31 15:16:43 -07001118 prepare_to_wait(&m->pg_init_wait, &wait, TASK_UNINTERRUPTIBLE);
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001119
Mike Snitzer91e968a2016-03-17 17:10:15 -04001120 if (!atomic_read(&m->pg_init_in_progress))
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001121 break;
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001122
1123 io_schedule();
1124 }
Bart Van Assche9f4c3f82016-08-31 15:16:43 -07001125 finish_wait(&m->pg_init_wait, &wait);
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001126}
1127
1128static void flush_multipath_work(struct multipath *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129{
Mike Snitzer518257b2016-03-17 16:32:10 -04001130 set_bit(MPATHF_PG_INIT_DISABLED, &m->flags);
1131 smp_mb__after_atomic();
Shiva Krishna Merla954a73d2013-10-30 03:26:38 +00001132
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001133 flush_workqueue(kmpath_handlerd);
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001134 multipath_wait_for_pg_init_completion(m);
Alasdair G Kergona044d012005-07-12 15:53:02 -07001135 flush_workqueue(kmultipathd);
Tejun Heo43829732012-08-20 14:51:24 -07001136 flush_work(&m->trigger_event);
Shiva Krishna Merla954a73d2013-10-30 03:26:38 +00001137
Mike Snitzer518257b2016-03-17 16:32:10 -04001138 clear_bit(MPATHF_PG_INIT_DISABLED, &m->flags);
1139 smp_mb__after_atomic();
Kiyoshi Ueda6df400a2009-12-10 23:52:19 +00001140}
1141
1142static void multipath_dtr(struct dm_target *ti)
1143{
1144 struct multipath *m = ti->private;
1145
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001146 flush_multipath_work(m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 free_multipath(m);
1148}
1149
1150/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 * Take a path out of use.
1152 */
1153static int fail_path(struct pgpath *pgpath)
1154{
1155 unsigned long flags;
1156 struct multipath *m = pgpath->pg->m;
1157
1158 spin_lock_irqsave(&m->lock, flags);
1159
Kiyoshi Ueda66800732008-10-10 13:36:58 +01001160 if (!pgpath->is_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 goto out;
1162
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001163 DMWARN("Failing path %s.", pgpath->path.dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
1165 pgpath->pg->ps.type->fail_path(&pgpath->pg->ps, &pgpath->path);
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001166 pgpath->is_active = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 pgpath->fail_count++;
1168
Mike Snitzer91e968a2016-03-17 17:10:15 -04001169 atomic_dec(&m->nr_valid_paths);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170
1171 if (pgpath == m->current_pgpath)
1172 m->current_pgpath = NULL;
1173
Mike Andersonb15546f2007-10-19 22:48:02 +01001174 dm_path_uevent(DM_UEVENT_PATH_FAILED, m->ti,
Mike Snitzer91e968a2016-03-17 17:10:15 -04001175 pgpath->path.dev->name, atomic_read(&m->nr_valid_paths));
Mike Andersonb15546f2007-10-19 22:48:02 +01001176
Alasdair G Kergonfe9cf302009-01-06 03:05:13 +00001177 schedule_work(&m->trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
1179out:
1180 spin_unlock_irqrestore(&m->lock, flags);
1181
1182 return 0;
1183}
1184
1185/*
1186 * Reinstate a previously-failed path
1187 */
1188static int reinstate_path(struct pgpath *pgpath)
1189{
Hannes Reinecke63d832c2014-05-26 14:45:39 +02001190 int r = 0, run_queue = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 unsigned long flags;
1192 struct multipath *m = pgpath->pg->m;
Mike Snitzer91e968a2016-03-17 17:10:15 -04001193 unsigned nr_valid_paths;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
1195 spin_lock_irqsave(&m->lock, flags);
1196
Kiyoshi Ueda66800732008-10-10 13:36:58 +01001197 if (pgpath->is_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 goto out;
1199
Mike Snitzerec31f3f2016-02-20 12:49:43 -05001200 DMWARN("Reinstating path %s.", pgpath->path.dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
1202 r = pgpath->pg->ps.type->reinstate_path(&pgpath->pg->ps, &pgpath->path);
1203 if (r)
1204 goto out;
1205
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001206 pgpath->is_active = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
Mike Snitzer91e968a2016-03-17 17:10:15 -04001208 nr_valid_paths = atomic_inc_return(&m->nr_valid_paths);
1209 if (nr_valid_paths == 1) {
Chandra Seetharamane54f77d2009-06-22 10:12:12 +01001210 m->current_pgpath = NULL;
Hannes Reinecke63d832c2014-05-26 14:45:39 +02001211 run_queue = 1;
Chandra Seetharamane54f77d2009-06-22 10:12:12 +01001212 } else if (m->hw_handler_name && (m->current_pg == pgpath->pg)) {
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +00001213 if (queue_work(kmpath_handlerd, &pgpath->activate_path.work))
Mike Snitzer91e968a2016-03-17 17:10:15 -04001214 atomic_inc(&m->pg_init_in_progress);
Chandra Seetharamane54f77d2009-06-22 10:12:12 +01001215 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
Mike Andersonb15546f2007-10-19 22:48:02 +01001217 dm_path_uevent(DM_UEVENT_PATH_REINSTATED, m->ti,
Mike Snitzer91e968a2016-03-17 17:10:15 -04001218 pgpath->path.dev->name, nr_valid_paths);
Mike Andersonb15546f2007-10-19 22:48:02 +01001219
Alasdair G Kergonfe9cf302009-01-06 03:05:13 +00001220 schedule_work(&m->trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
1222out:
1223 spin_unlock_irqrestore(&m->lock, flags);
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001224 if (run_queue) {
Hannes Reinecke63d832c2014-05-26 14:45:39 +02001225 dm_table_run_md_queue_async(m->ti->table);
Mike Snitzer7e48c762016-09-14 10:47:03 -04001226 process_queued_io_list(m);
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001227 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
1229 return r;
1230}
1231
1232/*
1233 * Fail or reinstate all paths that match the provided struct dm_dev.
1234 */
1235static int action_dev(struct multipath *m, struct dm_dev *dev,
1236 action_fn action)
1237{
Mike Snitzer19040c02011-03-24 13:54:31 +00001238 int r = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 struct pgpath *pgpath;
1240 struct priority_group *pg;
1241
1242 list_for_each_entry(pg, &m->priority_groups, list) {
1243 list_for_each_entry(pgpath, &pg->pgpaths, list) {
1244 if (pgpath->path.dev == dev)
1245 r = action(pgpath);
1246 }
1247 }
1248
1249 return r;
1250}
1251
1252/*
1253 * Temporarily try to avoid having to use the specified PG
1254 */
1255static void bypass_pg(struct multipath *m, struct priority_group *pg,
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001256 bool bypassed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257{
1258 unsigned long flags;
1259
1260 spin_lock_irqsave(&m->lock, flags);
1261
1262 pg->bypassed = bypassed;
1263 m->current_pgpath = NULL;
1264 m->current_pg = NULL;
1265
1266 spin_unlock_irqrestore(&m->lock, flags);
1267
Alasdair G Kergonfe9cf302009-01-06 03:05:13 +00001268 schedule_work(&m->trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269}
1270
1271/*
1272 * Switch to using the specified PG from the next I/O that gets mapped
1273 */
1274static int switch_pg_num(struct multipath *m, const char *pgstr)
1275{
1276 struct priority_group *pg;
1277 unsigned pgnum;
1278 unsigned long flags;
Mikulas Patocka31998ef2012-03-28 18:41:26 +01001279 char dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
Mikulas Patocka31998ef2012-03-28 18:41:26 +01001281 if (!pgstr || (sscanf(pgstr, "%u%c", &pgnum, &dummy) != 1) || !pgnum ||
tang.junhuicc5bd922016-11-04 12:37:09 +08001282 !m->nr_priority_groups || (pgnum > m->nr_priority_groups)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 DMWARN("invalid PG number supplied to switch_pg_num");
1284 return -EINVAL;
1285 }
1286
1287 spin_lock_irqsave(&m->lock, flags);
1288 list_for_each_entry(pg, &m->priority_groups, list) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001289 pg->bypassed = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 if (--pgnum)
1291 continue;
1292
1293 m->current_pgpath = NULL;
1294 m->current_pg = NULL;
1295 m->next_pg = pg;
1296 }
1297 spin_unlock_irqrestore(&m->lock, flags);
1298
Alasdair G Kergonfe9cf302009-01-06 03:05:13 +00001299 schedule_work(&m->trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 return 0;
1301}
1302
1303/*
1304 * Set/clear bypassed status of a PG.
1305 * PGs are numbered upwards from 1 in the order they were declared.
1306 */
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001307static int bypass_pg_num(struct multipath *m, const char *pgstr, bool bypassed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308{
1309 struct priority_group *pg;
1310 unsigned pgnum;
Mikulas Patocka31998ef2012-03-28 18:41:26 +01001311 char dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
Mikulas Patocka31998ef2012-03-28 18:41:26 +01001313 if (!pgstr || (sscanf(pgstr, "%u%c", &pgnum, &dummy) != 1) || !pgnum ||
tang.junhuicc5bd922016-11-04 12:37:09 +08001314 !m->nr_priority_groups || (pgnum > m->nr_priority_groups)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 DMWARN("invalid PG number supplied to bypass_pg");
1316 return -EINVAL;
1317 }
1318
1319 list_for_each_entry(pg, &m->priority_groups, list) {
1320 if (!--pgnum)
1321 break;
1322 }
1323
1324 bypass_pg(m, pg, bypassed);
1325 return 0;
1326}
1327
1328/*
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001329 * Should we retry pg_init immediately?
1330 */
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001331static bool pg_init_limit_reached(struct multipath *m, struct pgpath *pgpath)
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001332{
1333 unsigned long flags;
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001334 bool limit_reached = false;
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001335
1336 spin_lock_irqsave(&m->lock, flags);
1337
Mike Snitzer91e968a2016-03-17 17:10:15 -04001338 if (atomic_read(&m->pg_init_count) <= m->pg_init_retries &&
1339 !test_bit(MPATHF_PG_INIT_DISABLED, &m->flags))
Mike Snitzer518257b2016-03-17 16:32:10 -04001340 set_bit(MPATHF_PG_INIT_REQUIRED, &m->flags);
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001341 else
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001342 limit_reached = true;
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001343
1344 spin_unlock_irqrestore(&m->lock, flags);
1345
1346 return limit_reached;
1347}
1348
Chandra Seetharaman3ae31f62009-10-21 09:22:46 -07001349static void pg_init_done(void *data, int errors)
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001350{
Moger, Babu83c0d5d2010-03-06 02:29:45 +00001351 struct pgpath *pgpath = data;
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001352 struct priority_group *pg = pgpath->pg;
1353 struct multipath *m = pg->m;
1354 unsigned long flags;
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001355 bool delay_retry = false;
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001356
1357 /* device or driver problems */
1358 switch (errors) {
1359 case SCSI_DH_OK:
1360 break;
1361 case SCSI_DH_NOSYS:
1362 if (!m->hw_handler_name) {
1363 errors = 0;
1364 break;
1365 }
Moger, Babuf7b934c2010-03-06 02:29:49 +00001366 DMERR("Could not failover the device: Handler scsi_dh_%s "
1367 "Error %d.", m->hw_handler_name, errors);
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001368 /*
1369 * Fail path for now, so we do not ping pong
1370 */
1371 fail_path(pgpath);
1372 break;
1373 case SCSI_DH_DEV_TEMP_BUSY:
1374 /*
1375 * Probably doing something like FW upgrade on the
1376 * controller so try the other pg.
1377 */
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001378 bypass_pg(m, pg, true);
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001379 break;
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001380 case SCSI_DH_RETRY:
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +00001381 /* Wait before retrying. */
1382 delay_retry = 1;
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001383 case SCSI_DH_IMM_RETRY:
1384 case SCSI_DH_RES_TEMP_UNAVAIL:
1385 if (pg_init_limit_reached(m, pgpath))
1386 fail_path(pgpath);
1387 errors = 0;
1388 break;
Mike Snitzerec31f3f2016-02-20 12:49:43 -05001389 case SCSI_DH_DEV_OFFLINED:
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001390 default:
1391 /*
1392 * We probably do not want to fail the path for a device
1393 * error, but this is what the old dm did. In future
1394 * patches we can do more advanced handling.
1395 */
1396 fail_path(pgpath);
1397 }
1398
1399 spin_lock_irqsave(&m->lock, flags);
1400 if (errors) {
Chandra Seetharamane54f77d2009-06-22 10:12:12 +01001401 if (pgpath == m->current_pgpath) {
1402 DMERR("Could not failover device. Error %d.", errors);
1403 m->current_pgpath = NULL;
1404 m->current_pg = NULL;
1405 }
Mike Snitzer518257b2016-03-17 16:32:10 -04001406 } else if (!test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags))
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001407 pg->bypassed = false;
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001408
Mike Snitzer91e968a2016-03-17 17:10:15 -04001409 if (atomic_dec_return(&m->pg_init_in_progress) > 0)
Kiyoshi Uedad0259bf2010-03-06 02:30:02 +00001410 /* Activations of other paths are still on going */
1411 goto out;
1412
Mike Snitzer518257b2016-03-17 16:32:10 -04001413 if (test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags)) {
1414 if (delay_retry)
1415 set_bit(MPATHF_PG_INIT_DELAY_RETRY, &m->flags);
1416 else
1417 clear_bit(MPATHF_PG_INIT_DELAY_RETRY, &m->flags);
1418
Hannes Reinecke3e9f1be2014-02-28 15:33:45 +01001419 if (__pg_init_all_paths(m))
1420 goto out;
1421 }
Mike Snitzer518257b2016-03-17 16:32:10 -04001422 clear_bit(MPATHF_QUEUE_IO, &m->flags);
Kiyoshi Uedad0259bf2010-03-06 02:30:02 +00001423
Mike Snitzer7e48c762016-09-14 10:47:03 -04001424 process_queued_io_list(m);
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001425
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001426 /*
1427 * Wake up any thread waiting to suspend.
1428 */
1429 wake_up(&m->pg_init_wait);
1430
Kiyoshi Uedad0259bf2010-03-06 02:30:02 +00001431out:
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001432 spin_unlock_irqrestore(&m->lock, flags);
1433}
1434
Bart Van Assche89bfce72017-04-27 10:11:14 -07001435static void activate_or_offline_path(struct pgpath *pgpath)
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001436{
Mike Snitzerf10e06b2016-09-01 12:06:37 -04001437 struct request_queue *q = bdev_get_queue(pgpath->path.dev->bdev);
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001438
Mike Snitzerf10e06b2016-09-01 12:06:37 -04001439 if (pgpath->is_active && !blk_queue_dying(q))
1440 scsi_dh_activate(q, pg_init_done, pgpath);
Hannes Reinecke3a017502014-02-28 15:33:49 +01001441 else
1442 pg_init_done(pgpath, SCSI_DH_DEV_OFFLINED);
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001443}
1444
Bart Van Assche89bfce72017-04-27 10:11:14 -07001445static void activate_path_work(struct work_struct *work)
1446{
1447 struct pgpath *pgpath =
1448 container_of(work, struct pgpath, activate_path.work);
1449
1450 activate_or_offline_path(pgpath);
1451}
1452
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001453static int noretry_error(blk_status_t error)
Hannes Reinecke7e782af2013-07-01 15:16:26 +02001454{
1455 switch (error) {
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001456 case BLK_STS_NOTSUPP:
1457 case BLK_STS_NOSPC:
1458 case BLK_STS_TARGET:
1459 case BLK_STS_NEXUS:
1460 case BLK_STS_MEDIUM:
1461 case BLK_STS_RESOURCE:
Hannes Reinecke7e782af2013-07-01 15:16:26 +02001462 return 1;
1463 }
1464
1465 /* Anything else could be a path failure, so should be retried */
1466 return 0;
1467}
1468
Christoph Hellwigb79f10e2017-04-26 09:40:36 +02001469static int multipath_end_io(struct dm_target *ti, struct request *clone,
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001470 blk_status_t error, union map_info *map_context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471{
Christoph Hellwigb79f10e2017-04-26 09:40:36 +02001472 struct dm_mpath_io *mpio = get_mpio(map_context);
1473 struct pgpath *pgpath = mpio->pgpath;
Christoph Hellwig7ed85782017-04-26 09:40:37 +02001474 int r = DM_ENDIO_DONE;
Christoph Hellwigb79f10e2017-04-26 09:40:36 +02001475
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001476 /*
1477 * We don't queue any clone request inside the multipath target
1478 * during end I/O handling, since those clone requests don't have
1479 * bio clones. If we queue them inside the multipath target,
1480 * we need to make bio clones, that requires memory allocation.
Mike Snitzer4cc96132016-05-12 16:28:10 -04001481 * (See drivers/md/dm-rq.c:end_clone_bio() about why the clone requests
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001482 * don't have bio clones.)
1483 * Instead of queueing the clone request here, we queue the original
1484 * request into dm core, which will remake a clone request and
1485 * clone bios for it and resubmit it later.
1486 */
Christoph Hellwigb79f10e2017-04-26 09:40:36 +02001487 if (error && !noretry_error(error)) {
1488 struct multipath *m = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489
Christoph Hellwig7ed85782017-04-26 09:40:37 +02001490 r = DM_ENDIO_REQUEUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491
Christoph Hellwigb79f10e2017-04-26 09:40:36 +02001492 if (pgpath)
1493 fail_path(pgpath);
Mike Snitzer959eb4e2010-08-12 04:14:32 +01001494
Christoph Hellwigb79f10e2017-04-26 09:40:36 +02001495 if (atomic_read(&m->nr_valid_paths) == 0 &&
Christoph Hellwig7ed85782017-04-26 09:40:37 +02001496 !test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags)) {
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001497 if (error == BLK_STS_IOERR)
Christoph Hellwig18a482f2017-05-15 17:28:37 +02001498 dm_report_EIO(m);
Christoph Hellwig7ed85782017-04-26 09:40:37 +02001499 /* complete with the original error */
1500 r = DM_ENDIO_DONE;
1501 }
Christoph Hellwigb79f10e2017-04-26 09:40:36 +02001502 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 if (pgpath) {
Christoph Hellwigb79f10e2017-04-26 09:40:36 +02001505 struct path_selector *ps = &pgpath->pg->ps;
1506
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 if (ps->type->end_io)
Kiyoshi Ueda02ab8232009-06-22 10:12:27 +01001508 ps->type->end_io(ps, &pgpath->path, mpio->nr_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
Christoph Hellwig7ed85782017-04-26 09:40:37 +02001511 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512}
1513
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001514static int multipath_end_io_bio(struct dm_target *ti, struct bio *clone,
1515 blk_status_t *error)
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001516{
Christoph Hellwig14ef1e42017-06-03 09:38:01 +02001517 struct multipath *m = ti->private;
1518 struct dm_mpath_io *mpio = get_mpio_from_bio(clone);
1519 struct pgpath *pgpath = mpio->pgpath;
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001520 unsigned long flags;
Christoph Hellwig1be56902017-06-03 09:38:03 +02001521 int r = DM_ENDIO_DONE;
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001522
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001523 if (!*error || noretry_error(*error))
Christoph Hellwig14ef1e42017-06-03 09:38:01 +02001524 goto done;
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001525
Christoph Hellwig14ef1e42017-06-03 09:38:01 +02001526 if (pgpath)
1527 fail_path(pgpath);
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001528
Bart Van Asscheca5beb72017-04-27 10:11:24 -07001529 if (atomic_read(&m->nr_valid_paths) == 0 &&
Christoph Hellwig18a482f2017-05-15 17:28:37 +02001530 !test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags)) {
1531 dm_report_EIO(m);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001532 *error = BLK_STS_IOERR;
Christoph Hellwig14ef1e42017-06-03 09:38:01 +02001533 goto done;
Christoph Hellwig18a482f2017-05-15 17:28:37 +02001534 }
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001535
1536 /* Queue for the daemon to resubmit */
Mike Snitzerbf661be2016-05-24 15:48:08 -04001537 dm_bio_restore(get_bio_details_from_bio(clone), clone);
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001538
1539 spin_lock_irqsave(&m->lock, flags);
1540 bio_list_add(&m->queued_bios, clone);
1541 spin_unlock_irqrestore(&m->lock, flags);
1542 if (!test_bit(MPATHF_QUEUE_IO, &m->flags))
1543 queue_work(kmultipathd, &m->process_queued_bios);
1544
Christoph Hellwig1be56902017-06-03 09:38:03 +02001545 r = DM_ENDIO_INCOMPLETE;
Christoph Hellwig14ef1e42017-06-03 09:38:01 +02001546done:
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001547 if (pgpath) {
Christoph Hellwig14ef1e42017-06-03 09:38:01 +02001548 struct path_selector *ps = &pgpath->pg->ps;
1549
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001550 if (ps->type->end_io)
1551 ps->type->end_io(ps, &pgpath->path, mpio->nr_bytes);
1552 }
1553
Christoph Hellwig1be56902017-06-03 09:38:03 +02001554 return r;
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001555}
1556
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557/*
1558 * Suspend can't complete until all the I/O is processed so if
Alasdair G Kergon436d4102005-07-12 15:53:03 -07001559 * the last path fails we must error any remaining I/O.
1560 * Note that if the freeze_bdev fails while suspending, the
1561 * queue_if_no_path state is lost - userspace should reset it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 */
1563static void multipath_presuspend(struct dm_target *ti)
1564{
Mike Snitzer7943bd62016-02-02 21:53:15 -05001565 struct multipath *m = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001567 queue_if_no_path(m, false, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568}
1569
Kiyoshi Ueda6df400a2009-12-10 23:52:19 +00001570static void multipath_postsuspend(struct dm_target *ti)
1571{
Mike Anderson6380f262009-12-10 23:52:21 +00001572 struct multipath *m = ti->private;
1573
1574 mutex_lock(&m->work_mutex);
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001575 flush_multipath_work(m);
Mike Anderson6380f262009-12-10 23:52:21 +00001576 mutex_unlock(&m->work_mutex);
Kiyoshi Ueda6df400a2009-12-10 23:52:19 +00001577}
1578
Alasdair G Kergon436d4102005-07-12 15:53:03 -07001579/*
1580 * Restore the queue_if_no_path setting.
1581 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582static void multipath_resume(struct dm_target *ti)
1583{
Mike Snitzer7943bd62016-02-02 21:53:15 -05001584 struct multipath *m = ti->private;
Mike Snitzer1814f2e2016-07-25 21:08:51 -04001585 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586
Mike Snitzer1814f2e2016-07-25 21:08:51 -04001587 spin_lock_irqsave(&m->lock, flags);
Bart Van Assche9a8ac3a2017-04-27 10:11:25 -07001588 assign_bit(test_bit(MPATHF_SAVED_QUEUE_IF_NO_PATH, &m->flags),
1589 MPATHF_QUEUE_IF_NO_PATH, &m->flags);
Mike Snitzer1814f2e2016-07-25 21:08:51 -04001590 spin_unlock_irqrestore(&m->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591}
1592
1593/*
1594 * Info output has the following format:
1595 * num_multipath_feature_args [multipath_feature_args]*
1596 * num_handler_status_args [handler_status_args]*
1597 * num_groups init_group_number
1598 * [A|D|E num_ps_status_args [ps_status_args]*
1599 * num_paths num_selector_args
1600 * [path_dev A|F fail_count [selector_args]* ]+ ]+
1601 *
1602 * Table output has the following format (identical to the constructor string):
1603 * num_feature_args [features_args]*
1604 * num_handler_args hw_handler [hw_handler_args]*
1605 * num_groups init_group_number
1606 * [priority selector-name num_ps_args [ps_args]*
1607 * num_paths num_selector_args [path_dev [selector_args]* ]+ ]+
1608 */
Mikulas Patockafd7c0922013-03-01 22:45:44 +00001609static void multipath_status(struct dm_target *ti, status_type_t type,
1610 unsigned status_flags, char *result, unsigned maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611{
1612 int sz = 0;
1613 unsigned long flags;
Mike Snitzer7943bd62016-02-02 21:53:15 -05001614 struct multipath *m = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 struct priority_group *pg;
1616 struct pgpath *p;
1617 unsigned pg_num;
1618 char state;
1619
1620 spin_lock_irqsave(&m->lock, flags);
1621
1622 /* Features */
1623 if (type == STATUSTYPE_INFO)
Mike Snitzer91e968a2016-03-17 17:10:15 -04001624 DMEMIT("2 %u %u ", test_bit(MPATHF_QUEUE_IO, &m->flags),
1625 atomic_read(&m->pg_init_count));
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001626 else {
Mike Snitzer518257b2016-03-17 16:32:10 -04001627 DMEMIT("%u ", test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags) +
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +00001628 (m->pg_init_retries > 0) * 2 +
Mike Snitzera58a9352012-07-27 15:08:04 +01001629 (m->pg_init_delay_msecs != DM_PG_INIT_DELAY_DEFAULT) * 2 +
Mike Snitzere83068a2016-05-24 21:16:51 -04001630 test_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags) +
1631 (m->queue_mode != DM_TYPE_REQUEST_BASED) * 2);
1632
Mike Snitzer518257b2016-03-17 16:32:10 -04001633 if (test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001634 DMEMIT("queue_if_no_path ");
1635 if (m->pg_init_retries)
1636 DMEMIT("pg_init_retries %u ", m->pg_init_retries);
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +00001637 if (m->pg_init_delay_msecs != DM_PG_INIT_DELAY_DEFAULT)
1638 DMEMIT("pg_init_delay_msecs %u ", m->pg_init_delay_msecs);
Mike Snitzer518257b2016-03-17 16:32:10 -04001639 if (test_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags))
Mike Snitzera58a9352012-07-27 15:08:04 +01001640 DMEMIT("retain_attached_hw_handler ");
Mike Snitzere83068a2016-05-24 21:16:51 -04001641 if (m->queue_mode != DM_TYPE_REQUEST_BASED) {
1642 switch(m->queue_mode) {
1643 case DM_TYPE_BIO_BASED:
1644 DMEMIT("queue_mode bio ");
1645 break;
1646 case DM_TYPE_MQ_REQUEST_BASED:
1647 DMEMIT("queue_mode mq ");
1648 break;
Bart Van Assche7e0d5742017-04-27 10:11:23 -07001649 default:
1650 WARN_ON_ONCE(true);
1651 break;
Mike Snitzere83068a2016-05-24 21:16:51 -04001652 }
1653 }
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001654 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001656 if (!m->hw_handler_name || type == STATUSTYPE_INFO)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 DMEMIT("0 ");
1658 else
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001659 DMEMIT("1 %s ", m->hw_handler_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660
1661 DMEMIT("%u ", m->nr_priority_groups);
1662
1663 if (m->next_pg)
1664 pg_num = m->next_pg->pg_num;
1665 else if (m->current_pg)
1666 pg_num = m->current_pg->pg_num;
1667 else
Mike Snitzera490a072011-03-24 13:54:33 +00001668 pg_num = (m->nr_priority_groups ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669
1670 DMEMIT("%u ", pg_num);
1671
1672 switch (type) {
1673 case STATUSTYPE_INFO:
1674 list_for_each_entry(pg, &m->priority_groups, list) {
1675 if (pg->bypassed)
1676 state = 'D'; /* Disabled */
1677 else if (pg == m->current_pg)
1678 state = 'A'; /* Currently Active */
1679 else
1680 state = 'E'; /* Enabled */
1681
1682 DMEMIT("%c ", state);
1683
1684 if (pg->ps.type->status)
1685 sz += pg->ps.type->status(&pg->ps, NULL, type,
1686 result + sz,
1687 maxlen - sz);
1688 else
1689 DMEMIT("0 ");
1690
1691 DMEMIT("%u %u ", pg->nr_pgpaths,
1692 pg->ps.type->info_args);
1693
1694 list_for_each_entry(p, &pg->pgpaths, list) {
1695 DMEMIT("%s %s %u ", p->path.dev->name,
Kiyoshi Ueda66800732008-10-10 13:36:58 +01001696 p->is_active ? "A" : "F",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 p->fail_count);
1698 if (pg->ps.type->status)
1699 sz += pg->ps.type->status(&pg->ps,
1700 &p->path, type, result + sz,
1701 maxlen - sz);
1702 }
1703 }
1704 break;
1705
1706 case STATUSTYPE_TABLE:
1707 list_for_each_entry(pg, &m->priority_groups, list) {
1708 DMEMIT("%s ", pg->ps.type->name);
1709
1710 if (pg->ps.type->status)
1711 sz += pg->ps.type->status(&pg->ps, NULL, type,
1712 result + sz,
1713 maxlen - sz);
1714 else
1715 DMEMIT("0 ");
1716
1717 DMEMIT("%u %u ", pg->nr_pgpaths,
1718 pg->ps.type->table_args);
1719
1720 list_for_each_entry(p, &pg->pgpaths, list) {
1721 DMEMIT("%s ", p->path.dev->name);
1722 if (pg->ps.type->status)
1723 sz += pg->ps.type->status(&pg->ps,
1724 &p->path, type, result + sz,
1725 maxlen - sz);
1726 }
1727 }
1728 break;
1729 }
1730
1731 spin_unlock_irqrestore(&m->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732}
1733
1734static int multipath_message(struct dm_target *ti, unsigned argc, char **argv)
1735{
Mike Anderson6380f262009-12-10 23:52:21 +00001736 int r = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 struct dm_dev *dev;
Mike Snitzer7943bd62016-02-02 21:53:15 -05001738 struct multipath *m = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 action_fn action;
1740
Mike Anderson6380f262009-12-10 23:52:21 +00001741 mutex_lock(&m->work_mutex);
1742
Kiyoshi Uedac2f3d242009-12-10 23:52:27 +00001743 if (dm_suspended(ti)) {
1744 r = -EBUSY;
1745 goto out;
1746 }
1747
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 if (argc == 1) {
Mike Snitzer498f0102011-08-02 12:32:04 +01001749 if (!strcasecmp(argv[0], "queue_if_no_path")) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001750 r = queue_if_no_path(m, true, false);
Mike Anderson6380f262009-12-10 23:52:21 +00001751 goto out;
Mike Snitzer498f0102011-08-02 12:32:04 +01001752 } else if (!strcasecmp(argv[0], "fail_if_no_path")) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001753 r = queue_if_no_path(m, false, false);
Mike Anderson6380f262009-12-10 23:52:21 +00001754 goto out;
1755 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 }
1757
Mike Anderson6380f262009-12-10 23:52:21 +00001758 if (argc != 2) {
Jose Castilloa356e422014-01-29 17:52:45 +01001759 DMWARN("Invalid multipath message arguments. Expected 2 arguments, got %d.", argc);
Mike Anderson6380f262009-12-10 23:52:21 +00001760 goto out;
1761 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762
Mike Snitzer498f0102011-08-02 12:32:04 +01001763 if (!strcasecmp(argv[0], "disable_group")) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001764 r = bypass_pg_num(m, argv[1], true);
Mike Anderson6380f262009-12-10 23:52:21 +00001765 goto out;
Mike Snitzer498f0102011-08-02 12:32:04 +01001766 } else if (!strcasecmp(argv[0], "enable_group")) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001767 r = bypass_pg_num(m, argv[1], false);
Mike Anderson6380f262009-12-10 23:52:21 +00001768 goto out;
Mike Snitzer498f0102011-08-02 12:32:04 +01001769 } else if (!strcasecmp(argv[0], "switch_group")) {
Mike Anderson6380f262009-12-10 23:52:21 +00001770 r = switch_pg_num(m, argv[1]);
1771 goto out;
Mike Snitzer498f0102011-08-02 12:32:04 +01001772 } else if (!strcasecmp(argv[0], "reinstate_path"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 action = reinstate_path;
Mike Snitzer498f0102011-08-02 12:32:04 +01001774 else if (!strcasecmp(argv[0], "fail_path"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 action = fail_path;
Mike Anderson6380f262009-12-10 23:52:21 +00001776 else {
Jose Castilloa356e422014-01-29 17:52:45 +01001777 DMWARN("Unrecognised multipath message received: %s", argv[0]);
Mike Anderson6380f262009-12-10 23:52:21 +00001778 goto out;
1779 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780
Nikanth Karthikesan8215d6e2010-03-06 02:32:27 +00001781 r = dm_get_device(ti, argv[1], dm_table_get_mode(ti->table), &dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 if (r) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001783 DMWARN("message: error getting device %s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 argv[1]);
Mike Anderson6380f262009-12-10 23:52:21 +00001785 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 }
1787
1788 r = action_dev(m, dev, action);
1789
1790 dm_put_device(ti, dev);
1791
Mike Anderson6380f262009-12-10 23:52:21 +00001792out:
1793 mutex_unlock(&m->work_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795}
1796
Christoph Hellwige56f81e2015-10-15 14:10:50 +02001797static int multipath_prepare_ioctl(struct dm_target *ti,
1798 struct block_device **bdev, fmode_t *mode)
Milan Broz9af4aa32006-10-03 01:15:20 -07001799{
Mikulas Patocka35991652012-06-03 00:29:58 +01001800 struct multipath *m = ti->private;
Mike Snitzer2da16102016-03-17 18:38:17 -04001801 struct pgpath *current_pgpath;
Mikulas Patocka35991652012-06-03 00:29:58 +01001802 int r;
1803
Mike Snitzer2da16102016-03-17 18:38:17 -04001804 current_pgpath = lockless_dereference(m->current_pgpath);
1805 if (!current_pgpath)
1806 current_pgpath = choose_pgpath(m, 0);
Milan Broz9af4aa32006-10-03 01:15:20 -07001807
Mike Snitzer2da16102016-03-17 18:38:17 -04001808 if (current_pgpath) {
Mike Snitzer518257b2016-03-17 16:32:10 -04001809 if (!test_bit(MPATHF_QUEUE_IO, &m->flags)) {
Mike Snitzer2da16102016-03-17 18:38:17 -04001810 *bdev = current_pgpath->path.dev->bdev;
1811 *mode = current_pgpath->path.dev->mode;
Junichi Nomura43e43c92015-11-17 09:36:56 +00001812 r = 0;
1813 } else {
1814 /* pg_init has not started or completed */
1815 r = -ENOTCONN;
1816 }
1817 } else {
1818 /* No path is available */
Mike Snitzer518257b2016-03-17 16:32:10 -04001819 if (test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))
Junichi Nomura43e43c92015-11-17 09:36:56 +00001820 r = -ENOTCONN;
1821 else
1822 r = -EIO;
Milan Broze90dae12006-10-03 01:15:22 -07001823 }
Milan Broz9af4aa32006-10-03 01:15:20 -07001824
Junichi Nomura5bbbfdf2015-11-17 09:39:26 +00001825 if (r == -ENOTCONN) {
Mike Snitzer2da16102016-03-17 18:38:17 -04001826 if (!lockless_dereference(m->current_pg)) {
Hannes Reinecke3e9f1be2014-02-28 15:33:45 +01001827 /* Path status changed, redo selection */
Mike Snitzer2da16102016-03-17 18:38:17 -04001828 (void) choose_pgpath(m, 0);
Hannes Reinecke3e9f1be2014-02-28 15:33:45 +01001829 }
Mike Snitzer518257b2016-03-17 16:32:10 -04001830 if (test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags))
Mike Snitzer2da16102016-03-17 18:38:17 -04001831 pg_init_all_paths(m);
Hannes Reinecke63d832c2014-05-26 14:45:39 +02001832 dm_table_run_md_queue_async(m->ti->table);
Mike Snitzer7e48c762016-09-14 10:47:03 -04001833 process_queued_io_list(m);
Hannes Reinecke3e9f1be2014-02-28 15:33:45 +01001834 }
Mikulas Patocka35991652012-06-03 00:29:58 +01001835
Christoph Hellwige56f81e2015-10-15 14:10:50 +02001836 /*
1837 * Only pass ioctls through if the device sizes match exactly.
1838 */
1839 if (!r && ti->len != i_size_read((*bdev)->bd_inode) >> SECTOR_SHIFT)
1840 return 1;
1841 return r;
Milan Broz9af4aa32006-10-03 01:15:20 -07001842}
1843
Mike Snitzeraf4874e2009-06-22 10:12:33 +01001844static int multipath_iterate_devices(struct dm_target *ti,
1845 iterate_devices_callout_fn fn, void *data)
1846{
1847 struct multipath *m = ti->private;
1848 struct priority_group *pg;
1849 struct pgpath *p;
1850 int ret = 0;
1851
1852 list_for_each_entry(pg, &m->priority_groups, list) {
1853 list_for_each_entry(p, &pg->pgpaths, list) {
Mike Snitzer5dea2712009-07-23 20:30:42 +01001854 ret = fn(ti, p->path.dev, ti->begin, ti->len, data);
Mike Snitzeraf4874e2009-06-22 10:12:33 +01001855 if (ret)
1856 goto out;
1857 }
1858 }
1859
1860out:
1861 return ret;
1862}
1863
Mike Snitzer9f54cec2016-02-11 21:42:28 -05001864static int pgpath_busy(struct pgpath *pgpath)
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001865{
1866 struct request_queue *q = bdev_get_queue(pgpath->path.dev->bdev);
1867
Mike Snitzer52b09912015-02-23 16:36:41 -05001868 return blk_lld_busy(q);
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001869}
1870
1871/*
1872 * We return "busy", only when we can map I/Os but underlying devices
1873 * are busy (so even if we map I/Os now, the I/Os will wait on
1874 * the underlying queue).
1875 * In other words, if we want to kill I/Os or queue them inside us
1876 * due to map unavailability, we don't return "busy". Otherwise,
1877 * dm core won't give us the I/Os and we can't do what we want.
1878 */
1879static int multipath_busy(struct dm_target *ti)
1880{
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001881 bool busy = false, has_active = false;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001882 struct multipath *m = ti->private;
Mike Snitzer2da16102016-03-17 18:38:17 -04001883 struct priority_group *pg, *next_pg;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001884 struct pgpath *pgpath;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001885
Mike Snitzerb88efd42016-09-09 19:26:19 -04001886 /* pg_init in progress */
1887 if (atomic_read(&m->pg_init_in_progress))
Mike Snitzer2da16102016-03-17 18:38:17 -04001888 return true;
1889
Mike Snitzerb88efd42016-09-09 19:26:19 -04001890 /* no paths available, for blk-mq: rely on IO mapping to delay requeue */
1891 if (!atomic_read(&m->nr_valid_paths) && test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))
1892 return (m->queue_mode != DM_TYPE_MQ_REQUEST_BASED);
1893
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001894 /* Guess which priority_group will be used at next mapping time */
Mike Snitzer2da16102016-03-17 18:38:17 -04001895 pg = lockless_dereference(m->current_pg);
1896 next_pg = lockless_dereference(m->next_pg);
1897 if (unlikely(!lockless_dereference(m->current_pgpath) && next_pg))
1898 pg = next_pg;
1899
1900 if (!pg) {
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001901 /*
1902 * We don't know which pg will be used at next mapping time.
Mike Snitzer2da16102016-03-17 18:38:17 -04001903 * We don't call choose_pgpath() here to avoid to trigger
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001904 * pg_init just by busy checking.
1905 * So we don't know whether underlying devices we will be using
1906 * at next mapping time are busy or not. Just try mapping.
1907 */
Mike Snitzer2da16102016-03-17 18:38:17 -04001908 return busy;
1909 }
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001910
1911 /*
1912 * If there is one non-busy active path at least, the path selector
1913 * will be able to select it. So we consider such a pg as not busy.
1914 */
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001915 busy = true;
Mike Snitzer2da16102016-03-17 18:38:17 -04001916 list_for_each_entry(pgpath, &pg->pgpaths, list) {
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001917 if (pgpath->is_active) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001918 has_active = true;
Mike Snitzer9f54cec2016-02-11 21:42:28 -05001919 if (!pgpath_busy(pgpath)) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001920 busy = false;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001921 break;
1922 }
1923 }
Mike Snitzer2da16102016-03-17 18:38:17 -04001924 }
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001925
Mike Snitzer2da16102016-03-17 18:38:17 -04001926 if (!has_active) {
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001927 /*
1928 * No active path in this pg, so this pg won't be used and
1929 * the current_pg will be changed at next mapping time.
1930 * We need to try mapping to determine it.
1931 */
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001932 busy = false;
Mike Snitzer2da16102016-03-17 18:38:17 -04001933 }
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001934
1935 return busy;
1936}
1937
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938/*-----------------------------------------------------------------
1939 * Module setup
1940 *---------------------------------------------------------------*/
1941static struct target_type multipath_target = {
1942 .name = "multipath",
Mike Snitzere83068a2016-05-24 21:16:51 -04001943 .version = {1, 12, 0},
Mike Snitzer16f12262016-01-31 17:22:27 -05001944 .features = DM_TARGET_SINGLETON | DM_TARGET_IMMUTABLE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 .module = THIS_MODULE,
1946 .ctr = multipath_ctr,
1947 .dtr = multipath_dtr,
Mike Snitzere5863d92014-12-17 21:08:12 -05001948 .clone_and_map_rq = multipath_clone_and_map,
1949 .release_clone_rq = multipath_release_clone,
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001950 .rq_end_io = multipath_end_io,
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001951 .map = multipath_map_bio,
1952 .end_io = multipath_end_io_bio,
1953 .presuspend = multipath_presuspend,
1954 .postsuspend = multipath_postsuspend,
1955 .resume = multipath_resume,
1956 .status = multipath_status,
1957 .message = multipath_message,
1958 .prepare_ioctl = multipath_prepare_ioctl,
1959 .iterate_devices = multipath_iterate_devices,
1960 .busy = multipath_busy,
1961};
1962
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963static int __init dm_multipath_init(void)
1964{
1965 int r;
1966
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 r = dm_register_target(&multipath_target);
1968 if (r < 0) {
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001969 DMERR("request-based register failed %d", r);
Johannes Thumshirnff658e92015-01-11 12:45:23 +01001970 r = -EINVAL;
1971 goto bad_register_target;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 }
1973
Tejun Heo4d4d66a2011-01-13 19:59:57 +00001974 kmultipathd = alloc_workqueue("kmpathd", WQ_MEM_RECLAIM, 0);
Alasdair G Kergonc5573082005-05-05 16:16:07 -07001975 if (!kmultipathd) {
Alasdair G Kergon0cd33122007-07-12 17:27:01 +01001976 DMERR("failed to create workqueue kmpathd");
Johannes Thumshirnff658e92015-01-11 12:45:23 +01001977 r = -ENOMEM;
1978 goto bad_alloc_kmultipathd;
Alasdair G Kergonc5573082005-05-05 16:16:07 -07001979 }
1980
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001981 /*
1982 * A separate workqueue is used to handle the device handlers
1983 * to avoid overloading existing workqueue. Overloading the
1984 * old workqueue would also create a bottleneck in the
1985 * path of the storage hardware device activation.
1986 */
Tejun Heo4d4d66a2011-01-13 19:59:57 +00001987 kmpath_handlerd = alloc_ordered_workqueue("kmpath_handlerd",
1988 WQ_MEM_RECLAIM);
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001989 if (!kmpath_handlerd) {
1990 DMERR("failed to create workqueue kmpath_handlerd");
Johannes Thumshirnff658e92015-01-11 12:45:23 +01001991 r = -ENOMEM;
1992 goto bad_alloc_kmpath_handlerd;
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001993 }
1994
Johannes Thumshirnff658e92015-01-11 12:45:23 +01001995 return 0;
1996
1997bad_alloc_kmpath_handlerd:
1998 destroy_workqueue(kmultipathd);
1999bad_alloc_kmultipathd:
2000 dm_unregister_target(&multipath_target);
2001bad_register_target:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 return r;
2003}
2004
2005static void __exit dm_multipath_exit(void)
2006{
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07002007 destroy_workqueue(kmpath_handlerd);
Alasdair G Kergonc5573082005-05-05 16:16:07 -07002008 destroy_workqueue(kmultipathd);
2009
Mikulas Patocka10d3bd02009-01-06 03:04:58 +00002010 dm_unregister_target(&multipath_target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011}
2012
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013module_init(dm_multipath_init);
2014module_exit(dm_multipath_exit);
2015
2016MODULE_DESCRIPTION(DM_NAME " multipath target");
2017MODULE_AUTHOR("Sistina Software <dm-devel@redhat.com>");
2018MODULE_LICENSE("GPL");