blob: 11f273d2f018e722b1e9480c5a5eb0e59b0f0048 [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);
Bart Van Assche7083abb2017-04-27 10:11:15 -0700507 }
Bart Van Assche06eb0612017-04-07 16:50:44 -0700508 return DM_MAPIO_DELAY_REQUEUE;
Mike Snitzere5863d92014-12-17 21:08:12 -0500509 }
Christoph Hellwigeb8db832017-01-22 18:32:46 +0100510 clone->bio = clone->biotail = NULL;
511 clone->rq_disk = bdev->bd_disk;
512 clone->cmd_flags |= REQ_FAILFAST_TRANSPORT;
513 *__clone = clone;
Mike Snitzere5863d92014-12-17 21:08:12 -0500514
Mike Snitzer9bf59a62014-02-28 15:33:48 +0100515 if (pgpath->pg->ps.type->start_io)
516 pgpath->pg->ps.type->start_io(&pgpath->pg->ps,
517 &pgpath->path,
518 nr_bytes);
Keith Busch2eb6e1e2014-10-17 17:46:36 -0600519 return DM_MAPIO_REMAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520}
521
Mike Snitzere5863d92014-12-17 21:08:12 -0500522static void multipath_release_clone(struct request *clone)
523{
Christoph Hellwigeb8db832017-01-22 18:32:46 +0100524 blk_put_request(clone);
Mike Snitzere5863d92014-12-17 21:08:12 -0500525}
526
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527/*
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400528 * Map cloned bios (bio-based multipath)
529 */
530static int __multipath_map_bio(struct multipath *m, struct bio *bio, struct dm_mpath_io *mpio)
531{
532 size_t nr_bytes = bio->bi_iter.bi_size;
533 struct pgpath *pgpath;
534 unsigned long flags;
535 bool queue_io;
536
537 /* Do we need to select a new pgpath? */
538 pgpath = lockless_dereference(m->current_pgpath);
539 queue_io = test_bit(MPATHF_QUEUE_IO, &m->flags);
540 if (!pgpath || !queue_io)
541 pgpath = choose_pgpath(m, nr_bytes);
542
543 if ((pgpath && queue_io) ||
544 (!pgpath && test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))) {
545 /* Queue for the daemon to resubmit */
546 spin_lock_irqsave(&m->lock, flags);
547 bio_list_add(&m->queued_bios, bio);
548 spin_unlock_irqrestore(&m->lock, flags);
549 /* PG_INIT_REQUIRED cannot be set without QUEUE_IO */
550 if (queue_io || test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags))
551 pg_init_all_paths(m);
552 else if (!queue_io)
553 queue_work(kmultipathd, &m->process_queued_bios);
554 return DM_MAPIO_SUBMITTED;
555 }
556
557 if (!pgpath) {
Bart Van Asscheca5beb72017-04-27 10:11:24 -0700558 if (test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))
559 return DM_MAPIO_REQUEUE;
Christoph Hellwig18a482f2017-05-15 17:28:37 +0200560 dm_report_EIO(m);
Christoph Hellwig846785e2017-06-03 09:38:02 +0200561 return DM_MAPIO_KILL;
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400562 }
563
564 mpio->pgpath = pgpath;
565 mpio->nr_bytes = nr_bytes;
566
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200567 bio->bi_status = 0;
Christoph Hellwig74d46992017-08-23 19:10:32 +0200568 bio_set_dev(bio, pgpath->path.dev->bdev);
Jens Axboe1eff9d32016-08-05 15:35:16 -0600569 bio->bi_opf |= REQ_FAILFAST_TRANSPORT;
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400570
571 if (pgpath->pg->ps.type->start_io)
572 pgpath->pg->ps.type->start_io(&pgpath->pg->ps,
573 &pgpath->path,
574 nr_bytes);
575 return DM_MAPIO_REMAPPED;
576}
577
578static int multipath_map_bio(struct dm_target *ti, struct bio *bio)
579{
580 struct multipath *m = ti->private;
Mike Snitzerbf661be2016-05-24 15:48:08 -0400581 struct dm_mpath_io *mpio = NULL;
582
583 multipath_init_per_bio_data(bio, &mpio, NULL);
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400584
585 return __multipath_map_bio(m, bio, mpio);
586}
587
Mike Snitzer7e48c762016-09-14 10:47:03 -0400588static void process_queued_io_list(struct multipath *m)
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400589{
Mike Snitzer7e48c762016-09-14 10:47:03 -0400590 if (m->queue_mode == DM_TYPE_MQ_REQUEST_BASED)
591 dm_mq_kick_requeue_list(dm_table_get_md(m->ti->table));
592 else if (m->queue_mode == DM_TYPE_BIO_BASED)
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400593 queue_work(kmultipathd, &m->process_queued_bios);
594}
595
596static void process_queued_bios(struct work_struct *work)
597{
598 int r;
599 unsigned long flags;
600 struct bio *bio;
601 struct bio_list bios;
602 struct blk_plug plug;
603 struct multipath *m =
604 container_of(work, struct multipath, process_queued_bios);
605
606 bio_list_init(&bios);
607
608 spin_lock_irqsave(&m->lock, flags);
609
610 if (bio_list_empty(&m->queued_bios)) {
611 spin_unlock_irqrestore(&m->lock, flags);
612 return;
613 }
614
615 bio_list_merge(&bios, &m->queued_bios);
616 bio_list_init(&m->queued_bios);
617
618 spin_unlock_irqrestore(&m->lock, flags);
619
620 blk_start_plug(&plug);
621 while ((bio = bio_list_pop(&bios))) {
622 r = __multipath_map_bio(m, bio, get_mpio_from_bio(bio));
Christoph Hellwig846785e2017-06-03 09:38:02 +0200623 switch (r) {
624 case DM_MAPIO_KILL:
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200625 bio->bi_status = BLK_STS_IOERR;
626 bio_endio(bio);
Dan Carpenter047385b2017-06-14 08:22:55 -0600627 break;
Christoph Hellwig846785e2017-06-03 09:38:02 +0200628 case DM_MAPIO_REQUEUE:
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200629 bio->bi_status = BLK_STS_DM_REQUEUE;
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400630 bio_endio(bio);
Christoph Hellwig846785e2017-06-03 09:38:02 +0200631 break;
632 case DM_MAPIO_REMAPPED:
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400633 generic_make_request(bio);
Christoph Hellwig846785e2017-06-03 09:38:02 +0200634 break;
Bart Van Assche9157c8d2017-08-09 11:32:14 -0700635 case 0:
636 break;
637 default:
638 WARN_ONCE(true, "__multipath_map_bio() returned %d\n", r);
Christoph Hellwig846785e2017-06-03 09:38:02 +0200639 }
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400640 }
641 blk_finish_plug(&plug);
642}
643
Bart Van Assche9a8ac3a2017-04-27 10:11:25 -0700644static void assign_bit(bool value, long nr, unsigned long *addr)
645{
646 if (value)
647 set_bit(nr, addr);
648 else
649 clear_bit(nr, addr);
650}
651
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400652/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 * If we run out of usable paths, should we queue I/O or error it?
654 */
Mike Snitzerbe7d31c2016-02-10 13:02:21 -0500655static int queue_if_no_path(struct multipath *m, bool queue_if_no_path,
656 bool save_old_value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657{
658 unsigned long flags;
659
660 spin_lock_irqsave(&m->lock, flags);
Bart Van Assche9a8ac3a2017-04-27 10:11:25 -0700661 assign_bit((save_old_value && test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags)) ||
662 (!save_old_value && queue_if_no_path),
663 MPATHF_SAVED_QUEUE_IF_NO_PATH, &m->flags);
664 assign_bit(queue_if_no_path || dm_noflush_suspending(m->ti),
665 MPATHF_QUEUE_IF_NO_PATH, &m->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 spin_unlock_irqrestore(&m->lock, flags);
667
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400668 if (!queue_if_no_path) {
Hannes Reinecke63d832c2014-05-26 14:45:39 +0200669 dm_table_run_md_queue_async(m->ti->table);
Mike Snitzer7e48c762016-09-14 10:47:03 -0400670 process_queued_io_list(m);
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400671 }
Hannes Reinecke63d832c2014-05-26 14:45:39 +0200672
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 return 0;
674}
675
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676/*
677 * An event is triggered whenever a path is taken out of use.
678 * Includes path failure and PG bypass.
679 */
David Howellsc4028952006-11-22 14:57:56 +0000680static void trigger_event(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681{
David Howellsc4028952006-11-22 14:57:56 +0000682 struct multipath *m =
683 container_of(work, struct multipath, trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
685 dm_table_event(m->ti->table);
686}
687
688/*-----------------------------------------------------------------
689 * Constructor/argument parsing:
690 * <#multipath feature args> [<arg>]*
691 * <#hw_handler args> [hw_handler [<arg>]*]
692 * <#priority groups>
693 * <initial priority group>
694 * [<selector> <#selector args> [<arg>]*
695 * <#paths> <#per-path selector args>
696 * [<path> [<arg>]* ]+ ]+
697 *---------------------------------------------------------------*/
Mike Snitzer498f0102011-08-02 12:32:04 +0100698static int parse_path_selector(struct dm_arg_set *as, struct priority_group *pg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 struct dm_target *ti)
700{
701 int r;
702 struct path_selector_type *pst;
703 unsigned ps_argc;
704
Eric Biggers5916a222017-06-22 11:32:45 -0700705 static const struct dm_arg _args[] = {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700706 {0, 1024, "invalid number of path selector args"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 };
708
Mike Snitzer498f0102011-08-02 12:32:04 +0100709 pst = dm_get_path_selector(dm_shift_arg(as));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 if (!pst) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700711 ti->error = "unknown path selector type";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 return -EINVAL;
713 }
714
Mike Snitzer498f0102011-08-02 12:32:04 +0100715 r = dm_read_arg_group(_args, as, &ps_argc, &ti->error);
Mikulas Patocka371b2e32008-07-21 12:00:24 +0100716 if (r) {
717 dm_put_path_selector(pst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 return -EINVAL;
Mikulas Patocka371b2e32008-07-21 12:00:24 +0100719 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
721 r = pst->create(&pg->ps, ps_argc, as->argv);
722 if (r) {
723 dm_put_path_selector(pst);
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700724 ti->error = "path selector constructor failed";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 return r;
726 }
727
728 pg->ps.type = pst;
Mike Snitzer498f0102011-08-02 12:32:04 +0100729 dm_consume_args(as, ps_argc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
731 return 0;
732}
733
Mike Snitzer498f0102011-08-02 12:32:04 +0100734static struct pgpath *parse_path(struct dm_arg_set *as, struct path_selector *ps,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 struct dm_target *ti)
736{
737 int r;
738 struct pgpath *p;
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700739 struct multipath *m = ti->private;
Mike Snitzera58a9352012-07-27 15:08:04 +0100740 struct request_queue *q = NULL;
741 const char *attached_handler_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
743 /* we need at least a path arg */
744 if (as->argc < 1) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700745 ti->error = "no device given";
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100746 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 }
748
749 p = alloc_pgpath();
750 if (!p)
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100751 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
Mike Snitzer498f0102011-08-02 12:32:04 +0100753 r = dm_get_device(ti, dm_shift_arg(as), dm_table_get_mode(ti->table),
Nikanth Karthikesan8215d6e2010-03-06 02:32:27 +0000754 &p->path.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 if (r) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700756 ti->error = "error getting device";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 goto bad;
758 }
759
Mike Snitzer518257b2016-03-17 16:32:10 -0400760 if (test_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags) || m->hw_handler_name)
Mike Snitzera58a9352012-07-27 15:08:04 +0100761 q = bdev_get_queue(p->path.dev->bdev);
Hannes Reineckea0cf7ea2009-06-22 10:12:11 +0100762
Mike Snitzer518257b2016-03-17 16:32:10 -0400763 if (test_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags)) {
Christoph Hellwig1bab0de2015-08-27 14:16:54 +0200764retain:
Mike Snitzera58a9352012-07-27 15:08:04 +0100765 attached_handler_name = scsi_dh_attached_handler_name(q, GFP_KERNEL);
766 if (attached_handler_name) {
767 /*
tang.junhui54cd6402016-11-24 15:11:48 +0800768 * Clear any hw_handler_params associated with a
769 * handler that isn't already attached.
770 */
771 if (m->hw_handler_name && strcmp(attached_handler_name, m->hw_handler_name)) {
772 kfree(m->hw_handler_params);
773 m->hw_handler_params = NULL;
774 }
775
776 /*
Mike Snitzera58a9352012-07-27 15:08:04 +0100777 * Reset hw_handler_name to match the attached handler
Mike Snitzera58a9352012-07-27 15:08:04 +0100778 *
779 * NB. This modifies the table line to show the actual
780 * handler instead of the original table passed in.
781 */
782 kfree(m->hw_handler_name);
783 m->hw_handler_name = attached_handler_name;
Mike Snitzera58a9352012-07-27 15:08:04 +0100784 }
785 }
786
787 if (m->hw_handler_name) {
Hannes Reineckea0cf7ea2009-06-22 10:12:11 +0100788 r = scsi_dh_attach(q, m->hw_handler_name);
789 if (r == -EBUSY) {
Christoph Hellwig1bab0de2015-08-27 14:16:54 +0200790 char b[BDEVNAME_SIZE];
Hannes Reineckea0cf7ea2009-06-22 10:12:11 +0100791
Christoph Hellwig1bab0de2015-08-27 14:16:54 +0200792 printk(KERN_INFO "dm-mpath: retaining handler on device %s\n",
793 bdevname(p->path.dev->bdev, b));
794 goto retain;
795 }
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700796 if (r < 0) {
Hannes Reineckea0cf7ea2009-06-22 10:12:11 +0100797 ti->error = "error attaching hardware handler";
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700798 dm_put_device(ti, p->path.dev);
799 goto bad;
800 }
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700801
802 if (m->hw_handler_params) {
803 r = scsi_dh_set_params(q, m->hw_handler_params);
804 if (r < 0) {
805 ti->error = "unable to set hardware "
806 "handler parameters";
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700807 dm_put_device(ti, p->path.dev);
808 goto bad;
809 }
810 }
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700811 }
812
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 r = ps->type->add_path(ps, &p->path, as->argc, as->argv, &ti->error);
814 if (r) {
815 dm_put_device(ti, p->path.dev);
816 goto bad;
817 }
818
819 return p;
820
821 bad:
822 free_pgpath(p);
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100823 return ERR_PTR(r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824}
825
Mike Snitzer498f0102011-08-02 12:32:04 +0100826static struct priority_group *parse_priority_group(struct dm_arg_set *as,
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700827 struct multipath *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828{
Eric Biggers5916a222017-06-22 11:32:45 -0700829 static const struct dm_arg _args[] = {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700830 {1, 1024, "invalid number of paths"},
831 {0, 1024, "invalid number of selector args"}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 };
833
834 int r;
Mike Snitzer498f0102011-08-02 12:32:04 +0100835 unsigned i, nr_selector_args, nr_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 struct priority_group *pg;
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700837 struct dm_target *ti = m->ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
839 if (as->argc < 2) {
840 as->argc = 0;
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100841 ti->error = "not enough priority group arguments";
842 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 }
844
845 pg = alloc_priority_group();
846 if (!pg) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700847 ti->error = "couldn't allocate priority group";
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100848 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 }
850 pg->m = m;
851
852 r = parse_path_selector(as, pg, ti);
853 if (r)
854 goto bad;
855
856 /*
857 * read the paths
858 */
Mike Snitzer498f0102011-08-02 12:32:04 +0100859 r = dm_read_arg(_args, as, &pg->nr_pgpaths, &ti->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 if (r)
861 goto bad;
862
Mike Snitzer498f0102011-08-02 12:32:04 +0100863 r = dm_read_arg(_args + 1, as, &nr_selector_args, &ti->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 if (r)
865 goto bad;
866
Mike Snitzer498f0102011-08-02 12:32:04 +0100867 nr_args = 1 + nr_selector_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 for (i = 0; i < pg->nr_pgpaths; i++) {
869 struct pgpath *pgpath;
Mike Snitzer498f0102011-08-02 12:32:04 +0100870 struct dm_arg_set path_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
Mike Snitzer498f0102011-08-02 12:32:04 +0100872 if (as->argc < nr_args) {
Mikulas Patocka148acff2008-07-21 12:00:30 +0100873 ti->error = "not enough path parameters";
Alasdair G Kergon6bbf79a2010-08-12 04:13:49 +0100874 r = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 goto bad;
Mikulas Patocka148acff2008-07-21 12:00:30 +0100876 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
Mike Snitzer498f0102011-08-02 12:32:04 +0100878 path_args.argc = nr_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 path_args.argv = as->argv;
880
881 pgpath = parse_path(&path_args, &pg->ps, ti);
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100882 if (IS_ERR(pgpath)) {
883 r = PTR_ERR(pgpath);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 goto bad;
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100885 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
887 pgpath->pg = pg;
888 list_add_tail(&pgpath->list, &pg->pgpaths);
Mike Snitzer498f0102011-08-02 12:32:04 +0100889 dm_consume_args(as, nr_args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 }
891
892 return pg;
893
894 bad:
895 free_priority_group(pg, ti);
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100896 return ERR_PTR(r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897}
898
Mike Snitzer498f0102011-08-02 12:32:04 +0100899static int parse_hw_handler(struct dm_arg_set *as, struct multipath *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 unsigned hw_argc;
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700902 int ret;
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700903 struct dm_target *ti = m->ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
Eric Biggers5916a222017-06-22 11:32:45 -0700905 static const struct dm_arg _args[] = {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700906 {0, 1024, "invalid number of hardware handler args"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 };
908
Mike Snitzer498f0102011-08-02 12:32:04 +0100909 if (dm_read_arg_group(_args, as, &hw_argc, &ti->error))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 return -EINVAL;
911
912 if (!hw_argc)
913 return 0;
914
Mike Snitzere83068a2016-05-24 21:16:51 -0400915 if (m->queue_mode == DM_TYPE_BIO_BASED) {
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400916 dm_consume_args(as, hw_argc);
917 DMERR("bio-based multipath doesn't allow hardware handler args");
918 return 0;
919 }
920
Mike Snitzer498f0102011-08-02 12:32:04 +0100921 m->hw_handler_name = kstrdup(dm_shift_arg(as), GFP_KERNEL);
tang.junhuif97dc422016-10-28 17:04:46 +0800922 if (!m->hw_handler_name)
923 return -EINVAL;
Chandra Seetharaman14e98c52008-11-13 23:39:06 +0000924
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700925 if (hw_argc > 1) {
926 char *p;
927 int i, j, len = 4;
928
929 for (i = 0; i <= hw_argc - 2; i++)
930 len += strlen(as->argv[i]) + 1;
931 p = m->hw_handler_params = kzalloc(len, GFP_KERNEL);
932 if (!p) {
933 ti->error = "memory allocation failed";
934 ret = -ENOMEM;
935 goto fail;
936 }
937 j = sprintf(p, "%d", hw_argc - 1);
938 for (i = 0, p+=j+1; i <= hw_argc - 2; i++, p+=j+1)
939 j = sprintf(p, "%s", as->argv[i]);
940 }
Mike Snitzer498f0102011-08-02 12:32:04 +0100941 dm_consume_args(as, hw_argc - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
943 return 0;
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700944fail:
945 kfree(m->hw_handler_name);
946 m->hw_handler_name = NULL;
947 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948}
949
Mike Snitzer498f0102011-08-02 12:32:04 +0100950static int parse_features(struct dm_arg_set *as, struct multipath *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951{
952 int r;
953 unsigned argc;
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700954 struct dm_target *ti = m->ti;
Mike Snitzer498f0102011-08-02 12:32:04 +0100955 const char *arg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
Eric Biggers5916a222017-06-22 11:32:45 -0700957 static const struct dm_arg _args[] = {
Mike Snitzere83068a2016-05-24 21:16:51 -0400958 {0, 8, "invalid number of feature args"},
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100959 {1, 50, "pg_init_retries must be between 1 and 50"},
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +0000960 {0, 60000, "pg_init_delay_msecs must be between 0 and 60000"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 };
962
Mike Snitzer498f0102011-08-02 12:32:04 +0100963 r = dm_read_arg_group(_args, as, &argc, &ti->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 if (r)
965 return -EINVAL;
966
967 if (!argc)
968 return 0;
969
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100970 do {
Mike Snitzer498f0102011-08-02 12:32:04 +0100971 arg_name = dm_shift_arg(as);
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100972 argc--;
973
Mike Snitzer498f0102011-08-02 12:32:04 +0100974 if (!strcasecmp(arg_name, "queue_if_no_path")) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -0500975 r = queue_if_no_path(m, true, false);
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100976 continue;
977 }
978
Mike Snitzera58a9352012-07-27 15:08:04 +0100979 if (!strcasecmp(arg_name, "retain_attached_hw_handler")) {
Mike Snitzer518257b2016-03-17 16:32:10 -0400980 set_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags);
Mike Snitzera58a9352012-07-27 15:08:04 +0100981 continue;
982 }
983
Mike Snitzer498f0102011-08-02 12:32:04 +0100984 if (!strcasecmp(arg_name, "pg_init_retries") &&
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100985 (argc >= 1)) {
Mike Snitzer498f0102011-08-02 12:32:04 +0100986 r = dm_read_arg(_args + 1, as, &m->pg_init_retries, &ti->error);
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100987 argc--;
988 continue;
989 }
990
Mike Snitzer498f0102011-08-02 12:32:04 +0100991 if (!strcasecmp(arg_name, "pg_init_delay_msecs") &&
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +0000992 (argc >= 1)) {
Mike Snitzer498f0102011-08-02 12:32:04 +0100993 r = dm_read_arg(_args + 2, as, &m->pg_init_delay_msecs, &ti->error);
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +0000994 argc--;
995 continue;
996 }
997
Mike Snitzere83068a2016-05-24 21:16:51 -0400998 if (!strcasecmp(arg_name, "queue_mode") &&
999 (argc >= 1)) {
1000 const char *queue_mode_name = dm_shift_arg(as);
1001
1002 if (!strcasecmp(queue_mode_name, "bio"))
1003 m->queue_mode = DM_TYPE_BIO_BASED;
1004 else if (!strcasecmp(queue_mode_name, "rq"))
1005 m->queue_mode = DM_TYPE_REQUEST_BASED;
1006 else if (!strcasecmp(queue_mode_name, "mq"))
1007 m->queue_mode = DM_TYPE_MQ_REQUEST_BASED;
1008 else {
1009 ti->error = "Unknown 'queue_mode' requested";
1010 r = -EINVAL;
1011 }
1012 argc--;
1013 continue;
1014 }
1015
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 ti->error = "Unrecognised multipath feature request";
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001017 r = -EINVAL;
1018 } while (argc && !r);
1019
1020 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021}
1022
Mike Snitzere83068a2016-05-24 21:16:51 -04001023static int multipath_ctr(struct dm_target *ti, unsigned argc, char **argv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024{
Mike Snitzer498f0102011-08-02 12:32:04 +01001025 /* target arguments */
Eric Biggers5916a222017-06-22 11:32:45 -07001026 static const struct dm_arg _args[] = {
Mike Snitzera490a072011-03-24 13:54:33 +00001027 {0, 1024, "invalid number of priority groups"},
1028 {0, 1024, "invalid initial priority group number"},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 };
1030
1031 int r;
1032 struct multipath *m;
Mike Snitzer498f0102011-08-02 12:32:04 +01001033 struct dm_arg_set as;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 unsigned pg_count = 0;
1035 unsigned next_pg_num;
1036
1037 as.argc = argc;
1038 as.argv = argv;
1039
Mike Snitzere83068a2016-05-24 21:16:51 -04001040 m = alloc_multipath(ti);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 if (!m) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001042 ti->error = "can't allocate multipath";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 return -EINVAL;
1044 }
1045
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -07001046 r = parse_features(&as, m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 if (r)
1048 goto bad;
1049
Mike Snitzere83068a2016-05-24 21:16:51 -04001050 r = alloc_multipath_stage2(ti, m);
1051 if (r)
1052 goto bad;
1053
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -07001054 r = parse_hw_handler(&as, m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 if (r)
1056 goto bad;
1057
Mike Snitzer498f0102011-08-02 12:32:04 +01001058 r = dm_read_arg(_args, &as, &m->nr_priority_groups, &ti->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 if (r)
1060 goto bad;
1061
Mike Snitzer498f0102011-08-02 12:32:04 +01001062 r = dm_read_arg(_args + 1, &as, &next_pg_num, &ti->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 if (r)
1064 goto bad;
1065
Mike Snitzera490a072011-03-24 13:54:33 +00001066 if ((!m->nr_priority_groups && next_pg_num) ||
1067 (m->nr_priority_groups && !next_pg_num)) {
1068 ti->error = "invalid initial priority group";
1069 r = -EINVAL;
1070 goto bad;
1071 }
1072
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 /* parse the priority groups */
1074 while (as.argc) {
1075 struct priority_group *pg;
Mike Snitzer91e968a2016-03-17 17:10:15 -04001076 unsigned nr_valid_paths = atomic_read(&m->nr_valid_paths);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -07001078 pg = parse_priority_group(&as, m);
Benjamin Marzinski01460f32008-10-10 13:36:57 +01001079 if (IS_ERR(pg)) {
1080 r = PTR_ERR(pg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 goto bad;
1082 }
1083
Mike Snitzer91e968a2016-03-17 17:10:15 -04001084 nr_valid_paths += pg->nr_pgpaths;
1085 atomic_set(&m->nr_valid_paths, nr_valid_paths);
1086
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 list_add_tail(&pg->list, &m->priority_groups);
1088 pg_count++;
1089 pg->pg_num = pg_count;
1090 if (!--next_pg_num)
1091 m->next_pg = pg;
1092 }
1093
1094 if (pg_count != m->nr_priority_groups) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001095 ti->error = "priority group count mismatch";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 r = -EINVAL;
1097 goto bad;
1098 }
1099
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001100 ti->num_flush_bios = 1;
1101 ti->num_discard_bios = 1;
Mike Snitzer042bcef2013-05-10 14:37:16 +01001102 ti->num_write_same_bios = 1;
Christoph Hellwigac62d622017-04-05 19:21:05 +02001103 ti->num_write_zeroes_bios = 1;
Mike Snitzere83068a2016-05-24 21:16:51 -04001104 if (m->queue_mode == DM_TYPE_BIO_BASED)
Mike Snitzerbf661be2016-05-24 15:48:08 -04001105 ti->per_io_data_size = multipath_per_bio_data_size();
Christoph Hellwigeb8db832017-01-22 18:32:46 +01001106 else
Mike Snitzer8637a6b2016-01-31 12:08:36 -05001107 ti->per_io_data_size = sizeof(struct dm_mpath_io);
Mikulas Patocka86279212009-06-22 10:12:24 +01001108
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 return 0;
1110
1111 bad:
1112 free_multipath(m);
1113 return r;
1114}
1115
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001116static void multipath_wait_for_pg_init_completion(struct multipath *m)
1117{
Bart Van Assche9f4c3f82016-08-31 15:16:43 -07001118 DEFINE_WAIT(wait);
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001119
1120 while (1) {
Bart Van Assche9f4c3f82016-08-31 15:16:43 -07001121 prepare_to_wait(&m->pg_init_wait, &wait, TASK_UNINTERRUPTIBLE);
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001122
Mike Snitzer91e968a2016-03-17 17:10:15 -04001123 if (!atomic_read(&m->pg_init_in_progress))
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001124 break;
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001125
1126 io_schedule();
1127 }
Bart Van Assche9f4c3f82016-08-31 15:16:43 -07001128 finish_wait(&m->pg_init_wait, &wait);
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001129}
1130
1131static void flush_multipath_work(struct multipath *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132{
Mike Snitzer518257b2016-03-17 16:32:10 -04001133 set_bit(MPATHF_PG_INIT_DISABLED, &m->flags);
1134 smp_mb__after_atomic();
Shiva Krishna Merla954a73d2013-10-30 03:26:38 +00001135
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001136 flush_workqueue(kmpath_handlerd);
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001137 multipath_wait_for_pg_init_completion(m);
Alasdair G Kergona044d012005-07-12 15:53:02 -07001138 flush_workqueue(kmultipathd);
Tejun Heo43829732012-08-20 14:51:24 -07001139 flush_work(&m->trigger_event);
Shiva Krishna Merla954a73d2013-10-30 03:26:38 +00001140
Mike Snitzer518257b2016-03-17 16:32:10 -04001141 clear_bit(MPATHF_PG_INIT_DISABLED, &m->flags);
1142 smp_mb__after_atomic();
Kiyoshi Ueda6df400a2009-12-10 23:52:19 +00001143}
1144
1145static void multipath_dtr(struct dm_target *ti)
1146{
1147 struct multipath *m = ti->private;
1148
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001149 flush_multipath_work(m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 free_multipath(m);
1151}
1152
1153/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 * Take a path out of use.
1155 */
1156static int fail_path(struct pgpath *pgpath)
1157{
1158 unsigned long flags;
1159 struct multipath *m = pgpath->pg->m;
1160
1161 spin_lock_irqsave(&m->lock, flags);
1162
Kiyoshi Ueda66800732008-10-10 13:36:58 +01001163 if (!pgpath->is_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 goto out;
1165
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001166 DMWARN("Failing path %s.", pgpath->path.dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
1168 pgpath->pg->ps.type->fail_path(&pgpath->pg->ps, &pgpath->path);
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001169 pgpath->is_active = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 pgpath->fail_count++;
1171
Mike Snitzer91e968a2016-03-17 17:10:15 -04001172 atomic_dec(&m->nr_valid_paths);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173
1174 if (pgpath == m->current_pgpath)
1175 m->current_pgpath = NULL;
1176
Mike Andersonb15546f2007-10-19 22:48:02 +01001177 dm_path_uevent(DM_UEVENT_PATH_FAILED, m->ti,
Mike Snitzer91e968a2016-03-17 17:10:15 -04001178 pgpath->path.dev->name, atomic_read(&m->nr_valid_paths));
Mike Andersonb15546f2007-10-19 22:48:02 +01001179
Alasdair G Kergonfe9cf302009-01-06 03:05:13 +00001180 schedule_work(&m->trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181
1182out:
1183 spin_unlock_irqrestore(&m->lock, flags);
1184
1185 return 0;
1186}
1187
1188/*
1189 * Reinstate a previously-failed path
1190 */
1191static int reinstate_path(struct pgpath *pgpath)
1192{
Hannes Reinecke63d832c2014-05-26 14:45:39 +02001193 int r = 0, run_queue = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 unsigned long flags;
1195 struct multipath *m = pgpath->pg->m;
Mike Snitzer91e968a2016-03-17 17:10:15 -04001196 unsigned nr_valid_paths;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197
1198 spin_lock_irqsave(&m->lock, flags);
1199
Kiyoshi Ueda66800732008-10-10 13:36:58 +01001200 if (pgpath->is_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 goto out;
1202
Mike Snitzerec31f3f2016-02-20 12:49:43 -05001203 DMWARN("Reinstating path %s.", pgpath->path.dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
1205 r = pgpath->pg->ps.type->reinstate_path(&pgpath->pg->ps, &pgpath->path);
1206 if (r)
1207 goto out;
1208
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001209 pgpath->is_active = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
Mike Snitzer91e968a2016-03-17 17:10:15 -04001211 nr_valid_paths = atomic_inc_return(&m->nr_valid_paths);
1212 if (nr_valid_paths == 1) {
Chandra Seetharamane54f77d2009-06-22 10:12:12 +01001213 m->current_pgpath = NULL;
Hannes Reinecke63d832c2014-05-26 14:45:39 +02001214 run_queue = 1;
Chandra Seetharamane54f77d2009-06-22 10:12:12 +01001215 } else if (m->hw_handler_name && (m->current_pg == pgpath->pg)) {
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +00001216 if (queue_work(kmpath_handlerd, &pgpath->activate_path.work))
Mike Snitzer91e968a2016-03-17 17:10:15 -04001217 atomic_inc(&m->pg_init_in_progress);
Chandra Seetharamane54f77d2009-06-22 10:12:12 +01001218 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
Mike Andersonb15546f2007-10-19 22:48:02 +01001220 dm_path_uevent(DM_UEVENT_PATH_REINSTATED, m->ti,
Mike Snitzer91e968a2016-03-17 17:10:15 -04001221 pgpath->path.dev->name, nr_valid_paths);
Mike Andersonb15546f2007-10-19 22:48:02 +01001222
Alasdair G Kergonfe9cf302009-01-06 03:05:13 +00001223 schedule_work(&m->trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
1225out:
1226 spin_unlock_irqrestore(&m->lock, flags);
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001227 if (run_queue) {
Hannes Reinecke63d832c2014-05-26 14:45:39 +02001228 dm_table_run_md_queue_async(m->ti->table);
Mike Snitzer7e48c762016-09-14 10:47:03 -04001229 process_queued_io_list(m);
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001230 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231
1232 return r;
1233}
1234
1235/*
1236 * Fail or reinstate all paths that match the provided struct dm_dev.
1237 */
1238static int action_dev(struct multipath *m, struct dm_dev *dev,
1239 action_fn action)
1240{
Mike Snitzer19040c02011-03-24 13:54:31 +00001241 int r = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 struct pgpath *pgpath;
1243 struct priority_group *pg;
1244
1245 list_for_each_entry(pg, &m->priority_groups, list) {
1246 list_for_each_entry(pgpath, &pg->pgpaths, list) {
1247 if (pgpath->path.dev == dev)
1248 r = action(pgpath);
1249 }
1250 }
1251
1252 return r;
1253}
1254
1255/*
1256 * Temporarily try to avoid having to use the specified PG
1257 */
1258static void bypass_pg(struct multipath *m, struct priority_group *pg,
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001259 bool bypassed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260{
1261 unsigned long flags;
1262
1263 spin_lock_irqsave(&m->lock, flags);
1264
1265 pg->bypassed = bypassed;
1266 m->current_pgpath = NULL;
1267 m->current_pg = NULL;
1268
1269 spin_unlock_irqrestore(&m->lock, flags);
1270
Alasdair G Kergonfe9cf302009-01-06 03:05:13 +00001271 schedule_work(&m->trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272}
1273
1274/*
1275 * Switch to using the specified PG from the next I/O that gets mapped
1276 */
1277static int switch_pg_num(struct multipath *m, const char *pgstr)
1278{
1279 struct priority_group *pg;
1280 unsigned pgnum;
1281 unsigned long flags;
Mikulas Patocka31998ef2012-03-28 18:41:26 +01001282 char dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
Mikulas Patocka31998ef2012-03-28 18:41:26 +01001284 if (!pgstr || (sscanf(pgstr, "%u%c", &pgnum, &dummy) != 1) || !pgnum ||
tang.junhuicc5bd922016-11-04 12:37:09 +08001285 !m->nr_priority_groups || (pgnum > m->nr_priority_groups)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 DMWARN("invalid PG number supplied to switch_pg_num");
1287 return -EINVAL;
1288 }
1289
1290 spin_lock_irqsave(&m->lock, flags);
1291 list_for_each_entry(pg, &m->priority_groups, list) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001292 pg->bypassed = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 if (--pgnum)
1294 continue;
1295
1296 m->current_pgpath = NULL;
1297 m->current_pg = NULL;
1298 m->next_pg = pg;
1299 }
1300 spin_unlock_irqrestore(&m->lock, flags);
1301
Alasdair G Kergonfe9cf302009-01-06 03:05:13 +00001302 schedule_work(&m->trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 return 0;
1304}
1305
1306/*
1307 * Set/clear bypassed status of a PG.
1308 * PGs are numbered upwards from 1 in the order they were declared.
1309 */
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001310static int bypass_pg_num(struct multipath *m, const char *pgstr, bool bypassed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311{
1312 struct priority_group *pg;
1313 unsigned pgnum;
Mikulas Patocka31998ef2012-03-28 18:41:26 +01001314 char dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
Mikulas Patocka31998ef2012-03-28 18:41:26 +01001316 if (!pgstr || (sscanf(pgstr, "%u%c", &pgnum, &dummy) != 1) || !pgnum ||
tang.junhuicc5bd922016-11-04 12:37:09 +08001317 !m->nr_priority_groups || (pgnum > m->nr_priority_groups)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 DMWARN("invalid PG number supplied to bypass_pg");
1319 return -EINVAL;
1320 }
1321
1322 list_for_each_entry(pg, &m->priority_groups, list) {
1323 if (!--pgnum)
1324 break;
1325 }
1326
1327 bypass_pg(m, pg, bypassed);
1328 return 0;
1329}
1330
1331/*
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001332 * Should we retry pg_init immediately?
1333 */
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001334static bool pg_init_limit_reached(struct multipath *m, struct pgpath *pgpath)
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001335{
1336 unsigned long flags;
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001337 bool limit_reached = false;
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001338
1339 spin_lock_irqsave(&m->lock, flags);
1340
Mike Snitzer91e968a2016-03-17 17:10:15 -04001341 if (atomic_read(&m->pg_init_count) <= m->pg_init_retries &&
1342 !test_bit(MPATHF_PG_INIT_DISABLED, &m->flags))
Mike Snitzer518257b2016-03-17 16:32:10 -04001343 set_bit(MPATHF_PG_INIT_REQUIRED, &m->flags);
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001344 else
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001345 limit_reached = true;
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001346
1347 spin_unlock_irqrestore(&m->lock, flags);
1348
1349 return limit_reached;
1350}
1351
Chandra Seetharaman3ae31f62009-10-21 09:22:46 -07001352static void pg_init_done(void *data, int errors)
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001353{
Moger, Babu83c0d5d2010-03-06 02:29:45 +00001354 struct pgpath *pgpath = data;
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001355 struct priority_group *pg = pgpath->pg;
1356 struct multipath *m = pg->m;
1357 unsigned long flags;
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001358 bool delay_retry = false;
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001359
1360 /* device or driver problems */
1361 switch (errors) {
1362 case SCSI_DH_OK:
1363 break;
1364 case SCSI_DH_NOSYS:
1365 if (!m->hw_handler_name) {
1366 errors = 0;
1367 break;
1368 }
Moger, Babuf7b934c2010-03-06 02:29:49 +00001369 DMERR("Could not failover the device: Handler scsi_dh_%s "
1370 "Error %d.", m->hw_handler_name, errors);
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001371 /*
1372 * Fail path for now, so we do not ping pong
1373 */
1374 fail_path(pgpath);
1375 break;
1376 case SCSI_DH_DEV_TEMP_BUSY:
1377 /*
1378 * Probably doing something like FW upgrade on the
1379 * controller so try the other pg.
1380 */
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001381 bypass_pg(m, pg, true);
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001382 break;
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001383 case SCSI_DH_RETRY:
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +00001384 /* Wait before retrying. */
1385 delay_retry = 1;
Bart Van Assche7b06e092017-08-09 11:32:13 -07001386 /* fall through */
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001387 case SCSI_DH_IMM_RETRY:
1388 case SCSI_DH_RES_TEMP_UNAVAIL:
1389 if (pg_init_limit_reached(m, pgpath))
1390 fail_path(pgpath);
1391 errors = 0;
1392 break;
Mike Snitzerec31f3f2016-02-20 12:49:43 -05001393 case SCSI_DH_DEV_OFFLINED:
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001394 default:
1395 /*
1396 * We probably do not want to fail the path for a device
1397 * error, but this is what the old dm did. In future
1398 * patches we can do more advanced handling.
1399 */
1400 fail_path(pgpath);
1401 }
1402
1403 spin_lock_irqsave(&m->lock, flags);
1404 if (errors) {
Chandra Seetharamane54f77d2009-06-22 10:12:12 +01001405 if (pgpath == m->current_pgpath) {
1406 DMERR("Could not failover device. Error %d.", errors);
1407 m->current_pgpath = NULL;
1408 m->current_pg = NULL;
1409 }
Mike Snitzer518257b2016-03-17 16:32:10 -04001410 } else if (!test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags))
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001411 pg->bypassed = false;
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001412
Mike Snitzer91e968a2016-03-17 17:10:15 -04001413 if (atomic_dec_return(&m->pg_init_in_progress) > 0)
Kiyoshi Uedad0259bf2010-03-06 02:30:02 +00001414 /* Activations of other paths are still on going */
1415 goto out;
1416
Mike Snitzer518257b2016-03-17 16:32:10 -04001417 if (test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags)) {
1418 if (delay_retry)
1419 set_bit(MPATHF_PG_INIT_DELAY_RETRY, &m->flags);
1420 else
1421 clear_bit(MPATHF_PG_INIT_DELAY_RETRY, &m->flags);
1422
Hannes Reinecke3e9f1be2014-02-28 15:33:45 +01001423 if (__pg_init_all_paths(m))
1424 goto out;
1425 }
Mike Snitzer518257b2016-03-17 16:32:10 -04001426 clear_bit(MPATHF_QUEUE_IO, &m->flags);
Kiyoshi Uedad0259bf2010-03-06 02:30:02 +00001427
Mike Snitzer7e48c762016-09-14 10:47:03 -04001428 process_queued_io_list(m);
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001429
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001430 /*
1431 * Wake up any thread waiting to suspend.
1432 */
1433 wake_up(&m->pg_init_wait);
1434
Kiyoshi Uedad0259bf2010-03-06 02:30:02 +00001435out:
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001436 spin_unlock_irqrestore(&m->lock, flags);
1437}
1438
Bart Van Assche89bfce72017-04-27 10:11:14 -07001439static void activate_or_offline_path(struct pgpath *pgpath)
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001440{
Mike Snitzerf10e06b2016-09-01 12:06:37 -04001441 struct request_queue *q = bdev_get_queue(pgpath->path.dev->bdev);
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001442
Mike Snitzerf10e06b2016-09-01 12:06:37 -04001443 if (pgpath->is_active && !blk_queue_dying(q))
1444 scsi_dh_activate(q, pg_init_done, pgpath);
Hannes Reinecke3a017502014-02-28 15:33:49 +01001445 else
1446 pg_init_done(pgpath, SCSI_DH_DEV_OFFLINED);
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001447}
1448
Bart Van Assche89bfce72017-04-27 10:11:14 -07001449static void activate_path_work(struct work_struct *work)
1450{
1451 struct pgpath *pgpath =
1452 container_of(work, struct pgpath, activate_path.work);
1453
1454 activate_or_offline_path(pgpath);
1455}
1456
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001457static int noretry_error(blk_status_t error)
Hannes Reinecke7e782af2013-07-01 15:16:26 +02001458{
1459 switch (error) {
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001460 case BLK_STS_NOTSUPP:
1461 case BLK_STS_NOSPC:
1462 case BLK_STS_TARGET:
1463 case BLK_STS_NEXUS:
1464 case BLK_STS_MEDIUM:
Hannes Reinecke7e782af2013-07-01 15:16:26 +02001465 return 1;
1466 }
1467
1468 /* Anything else could be a path failure, so should be retried */
1469 return 0;
1470}
1471
Christoph Hellwigb79f10e2017-04-26 09:40:36 +02001472static int multipath_end_io(struct dm_target *ti, struct request *clone,
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001473 blk_status_t error, union map_info *map_context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474{
Christoph Hellwigb79f10e2017-04-26 09:40:36 +02001475 struct dm_mpath_io *mpio = get_mpio(map_context);
1476 struct pgpath *pgpath = mpio->pgpath;
Christoph Hellwig7ed85782017-04-26 09:40:37 +02001477 int r = DM_ENDIO_DONE;
Christoph Hellwigb79f10e2017-04-26 09:40:36 +02001478
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001479 /*
1480 * We don't queue any clone request inside the multipath target
1481 * during end I/O handling, since those clone requests don't have
1482 * bio clones. If we queue them inside the multipath target,
1483 * we need to make bio clones, that requires memory allocation.
Mike Snitzer4cc96132016-05-12 16:28:10 -04001484 * (See drivers/md/dm-rq.c:end_clone_bio() about why the clone requests
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001485 * don't have bio clones.)
1486 * Instead of queueing the clone request here, we queue the original
1487 * request into dm core, which will remake a clone request and
1488 * clone bios for it and resubmit it later.
1489 */
Christoph Hellwigb79f10e2017-04-26 09:40:36 +02001490 if (error && !noretry_error(error)) {
1491 struct multipath *m = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
Christoph Hellwig7ed85782017-04-26 09:40:37 +02001493 r = DM_ENDIO_REQUEUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
Christoph Hellwigb79f10e2017-04-26 09:40:36 +02001495 if (pgpath)
1496 fail_path(pgpath);
Mike Snitzer959eb4e2010-08-12 04:14:32 +01001497
Christoph Hellwigb79f10e2017-04-26 09:40:36 +02001498 if (atomic_read(&m->nr_valid_paths) == 0 &&
Christoph Hellwig7ed85782017-04-26 09:40:37 +02001499 !test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags)) {
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001500 if (error == BLK_STS_IOERR)
Christoph Hellwig18a482f2017-05-15 17:28:37 +02001501 dm_report_EIO(m);
Christoph Hellwig7ed85782017-04-26 09:40:37 +02001502 /* complete with the original error */
1503 r = DM_ENDIO_DONE;
1504 }
Christoph Hellwigb79f10e2017-04-26 09:40:36 +02001505 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 if (pgpath) {
Christoph Hellwigb79f10e2017-04-26 09:40:36 +02001508 struct path_selector *ps = &pgpath->pg->ps;
1509
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 if (ps->type->end_io)
Kiyoshi Ueda02ab8232009-06-22 10:12:27 +01001511 ps->type->end_io(ps, &pgpath->path, mpio->nr_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513
Christoph Hellwig7ed85782017-04-26 09:40:37 +02001514 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515}
1516
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001517static int multipath_end_io_bio(struct dm_target *ti, struct bio *clone,
1518 blk_status_t *error)
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001519{
Christoph Hellwig14ef1e42017-06-03 09:38:01 +02001520 struct multipath *m = ti->private;
1521 struct dm_mpath_io *mpio = get_mpio_from_bio(clone);
1522 struct pgpath *pgpath = mpio->pgpath;
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001523 unsigned long flags;
Christoph Hellwig1be56902017-06-03 09:38:03 +02001524 int r = DM_ENDIO_DONE;
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001525
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001526 if (!*error || noretry_error(*error))
Christoph Hellwig14ef1e42017-06-03 09:38:01 +02001527 goto done;
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001528
Christoph Hellwig14ef1e42017-06-03 09:38:01 +02001529 if (pgpath)
1530 fail_path(pgpath);
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001531
Bart Van Asscheca5beb72017-04-27 10:11:24 -07001532 if (atomic_read(&m->nr_valid_paths) == 0 &&
Christoph Hellwig18a482f2017-05-15 17:28:37 +02001533 !test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags)) {
1534 dm_report_EIO(m);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001535 *error = BLK_STS_IOERR;
Christoph Hellwig14ef1e42017-06-03 09:38:01 +02001536 goto done;
Christoph Hellwig18a482f2017-05-15 17:28:37 +02001537 }
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001538
1539 /* Queue for the daemon to resubmit */
Mike Snitzerbf661be2016-05-24 15:48:08 -04001540 dm_bio_restore(get_bio_details_from_bio(clone), clone);
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001541
1542 spin_lock_irqsave(&m->lock, flags);
1543 bio_list_add(&m->queued_bios, clone);
1544 spin_unlock_irqrestore(&m->lock, flags);
1545 if (!test_bit(MPATHF_QUEUE_IO, &m->flags))
1546 queue_work(kmultipathd, &m->process_queued_bios);
1547
Christoph Hellwig1be56902017-06-03 09:38:03 +02001548 r = DM_ENDIO_INCOMPLETE;
Christoph Hellwig14ef1e42017-06-03 09:38:01 +02001549done:
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001550 if (pgpath) {
Christoph Hellwig14ef1e42017-06-03 09:38:01 +02001551 struct path_selector *ps = &pgpath->pg->ps;
1552
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001553 if (ps->type->end_io)
1554 ps->type->end_io(ps, &pgpath->path, mpio->nr_bytes);
1555 }
1556
Christoph Hellwig1be56902017-06-03 09:38:03 +02001557 return r;
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001558}
1559
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560/*
1561 * Suspend can't complete until all the I/O is processed so if
Alasdair G Kergon436d4102005-07-12 15:53:03 -07001562 * the last path fails we must error any remaining I/O.
1563 * Note that if the freeze_bdev fails while suspending, the
1564 * queue_if_no_path state is lost - userspace should reset it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 */
1566static void multipath_presuspend(struct dm_target *ti)
1567{
Mike Snitzer7943bd62016-02-02 21:53:15 -05001568 struct multipath *m = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001570 queue_if_no_path(m, false, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571}
1572
Kiyoshi Ueda6df400a2009-12-10 23:52:19 +00001573static void multipath_postsuspend(struct dm_target *ti)
1574{
Mike Anderson6380f262009-12-10 23:52:21 +00001575 struct multipath *m = ti->private;
1576
1577 mutex_lock(&m->work_mutex);
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001578 flush_multipath_work(m);
Mike Anderson6380f262009-12-10 23:52:21 +00001579 mutex_unlock(&m->work_mutex);
Kiyoshi Ueda6df400a2009-12-10 23:52:19 +00001580}
1581
Alasdair G Kergon436d4102005-07-12 15:53:03 -07001582/*
1583 * Restore the queue_if_no_path setting.
1584 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585static void multipath_resume(struct dm_target *ti)
1586{
Mike Snitzer7943bd62016-02-02 21:53:15 -05001587 struct multipath *m = ti->private;
Mike Snitzer1814f2e2016-07-25 21:08:51 -04001588 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589
Mike Snitzer1814f2e2016-07-25 21:08:51 -04001590 spin_lock_irqsave(&m->lock, flags);
Bart Van Assche9a8ac3a2017-04-27 10:11:25 -07001591 assign_bit(test_bit(MPATHF_SAVED_QUEUE_IF_NO_PATH, &m->flags),
1592 MPATHF_QUEUE_IF_NO_PATH, &m->flags);
Mike Snitzer1814f2e2016-07-25 21:08:51 -04001593 spin_unlock_irqrestore(&m->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594}
1595
1596/*
1597 * Info output has the following format:
1598 * num_multipath_feature_args [multipath_feature_args]*
1599 * num_handler_status_args [handler_status_args]*
1600 * num_groups init_group_number
1601 * [A|D|E num_ps_status_args [ps_status_args]*
1602 * num_paths num_selector_args
1603 * [path_dev A|F fail_count [selector_args]* ]+ ]+
1604 *
1605 * Table output has the following format (identical to the constructor string):
1606 * num_feature_args [features_args]*
1607 * num_handler_args hw_handler [hw_handler_args]*
1608 * num_groups init_group_number
1609 * [priority selector-name num_ps_args [ps_args]*
1610 * num_paths num_selector_args [path_dev [selector_args]* ]+ ]+
1611 */
Mikulas Patockafd7c0922013-03-01 22:45:44 +00001612static void multipath_status(struct dm_target *ti, status_type_t type,
1613 unsigned status_flags, char *result, unsigned maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614{
1615 int sz = 0;
1616 unsigned long flags;
Mike Snitzer7943bd62016-02-02 21:53:15 -05001617 struct multipath *m = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 struct priority_group *pg;
1619 struct pgpath *p;
1620 unsigned pg_num;
1621 char state;
1622
1623 spin_lock_irqsave(&m->lock, flags);
1624
1625 /* Features */
1626 if (type == STATUSTYPE_INFO)
Mike Snitzer91e968a2016-03-17 17:10:15 -04001627 DMEMIT("2 %u %u ", test_bit(MPATHF_QUEUE_IO, &m->flags),
1628 atomic_read(&m->pg_init_count));
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001629 else {
Mike Snitzer518257b2016-03-17 16:32:10 -04001630 DMEMIT("%u ", test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags) +
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +00001631 (m->pg_init_retries > 0) * 2 +
Mike Snitzera58a9352012-07-27 15:08:04 +01001632 (m->pg_init_delay_msecs != DM_PG_INIT_DELAY_DEFAULT) * 2 +
Mike Snitzere83068a2016-05-24 21:16:51 -04001633 test_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags) +
1634 (m->queue_mode != DM_TYPE_REQUEST_BASED) * 2);
1635
Mike Snitzer518257b2016-03-17 16:32:10 -04001636 if (test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001637 DMEMIT("queue_if_no_path ");
1638 if (m->pg_init_retries)
1639 DMEMIT("pg_init_retries %u ", m->pg_init_retries);
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +00001640 if (m->pg_init_delay_msecs != DM_PG_INIT_DELAY_DEFAULT)
1641 DMEMIT("pg_init_delay_msecs %u ", m->pg_init_delay_msecs);
Mike Snitzer518257b2016-03-17 16:32:10 -04001642 if (test_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags))
Mike Snitzera58a9352012-07-27 15:08:04 +01001643 DMEMIT("retain_attached_hw_handler ");
Mike Snitzere83068a2016-05-24 21:16:51 -04001644 if (m->queue_mode != DM_TYPE_REQUEST_BASED) {
1645 switch(m->queue_mode) {
1646 case DM_TYPE_BIO_BASED:
1647 DMEMIT("queue_mode bio ");
1648 break;
1649 case DM_TYPE_MQ_REQUEST_BASED:
1650 DMEMIT("queue_mode mq ");
1651 break;
Bart Van Assche7e0d5742017-04-27 10:11:23 -07001652 default:
1653 WARN_ON_ONCE(true);
1654 break;
Mike Snitzere83068a2016-05-24 21:16:51 -04001655 }
1656 }
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001657 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001659 if (!m->hw_handler_name || type == STATUSTYPE_INFO)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 DMEMIT("0 ");
1661 else
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001662 DMEMIT("1 %s ", m->hw_handler_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663
1664 DMEMIT("%u ", m->nr_priority_groups);
1665
1666 if (m->next_pg)
1667 pg_num = m->next_pg->pg_num;
1668 else if (m->current_pg)
1669 pg_num = m->current_pg->pg_num;
1670 else
Mike Snitzera490a072011-03-24 13:54:33 +00001671 pg_num = (m->nr_priority_groups ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672
1673 DMEMIT("%u ", pg_num);
1674
1675 switch (type) {
1676 case STATUSTYPE_INFO:
1677 list_for_each_entry(pg, &m->priority_groups, list) {
1678 if (pg->bypassed)
1679 state = 'D'; /* Disabled */
1680 else if (pg == m->current_pg)
1681 state = 'A'; /* Currently Active */
1682 else
1683 state = 'E'; /* Enabled */
1684
1685 DMEMIT("%c ", state);
1686
1687 if (pg->ps.type->status)
1688 sz += pg->ps.type->status(&pg->ps, NULL, type,
1689 result + sz,
1690 maxlen - sz);
1691 else
1692 DMEMIT("0 ");
1693
1694 DMEMIT("%u %u ", pg->nr_pgpaths,
1695 pg->ps.type->info_args);
1696
1697 list_for_each_entry(p, &pg->pgpaths, list) {
1698 DMEMIT("%s %s %u ", p->path.dev->name,
Kiyoshi Ueda66800732008-10-10 13:36:58 +01001699 p->is_active ? "A" : "F",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 p->fail_count);
1701 if (pg->ps.type->status)
1702 sz += pg->ps.type->status(&pg->ps,
1703 &p->path, type, result + sz,
1704 maxlen - sz);
1705 }
1706 }
1707 break;
1708
1709 case STATUSTYPE_TABLE:
1710 list_for_each_entry(pg, &m->priority_groups, list) {
1711 DMEMIT("%s ", pg->ps.type->name);
1712
1713 if (pg->ps.type->status)
1714 sz += pg->ps.type->status(&pg->ps, NULL, type,
1715 result + sz,
1716 maxlen - sz);
1717 else
1718 DMEMIT("0 ");
1719
1720 DMEMIT("%u %u ", pg->nr_pgpaths,
1721 pg->ps.type->table_args);
1722
1723 list_for_each_entry(p, &pg->pgpaths, list) {
1724 DMEMIT("%s ", p->path.dev->name);
1725 if (pg->ps.type->status)
1726 sz += pg->ps.type->status(&pg->ps,
1727 &p->path, type, result + sz,
1728 maxlen - sz);
1729 }
1730 }
1731 break;
1732 }
1733
1734 spin_unlock_irqrestore(&m->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735}
1736
1737static int multipath_message(struct dm_target *ti, unsigned argc, char **argv)
1738{
Mike Anderson6380f262009-12-10 23:52:21 +00001739 int r = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 struct dm_dev *dev;
Mike Snitzer7943bd62016-02-02 21:53:15 -05001741 struct multipath *m = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 action_fn action;
1743
Mike Anderson6380f262009-12-10 23:52:21 +00001744 mutex_lock(&m->work_mutex);
1745
Kiyoshi Uedac2f3d242009-12-10 23:52:27 +00001746 if (dm_suspended(ti)) {
1747 r = -EBUSY;
1748 goto out;
1749 }
1750
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 if (argc == 1) {
Mike Snitzer498f0102011-08-02 12:32:04 +01001752 if (!strcasecmp(argv[0], "queue_if_no_path")) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001753 r = queue_if_no_path(m, true, false);
Mike Anderson6380f262009-12-10 23:52:21 +00001754 goto out;
Mike Snitzer498f0102011-08-02 12:32:04 +01001755 } else if (!strcasecmp(argv[0], "fail_if_no_path")) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001756 r = queue_if_no_path(m, false, false);
Mike Anderson6380f262009-12-10 23:52:21 +00001757 goto out;
1758 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 }
1760
Mike Anderson6380f262009-12-10 23:52:21 +00001761 if (argc != 2) {
Jose Castilloa356e422014-01-29 17:52:45 +01001762 DMWARN("Invalid multipath message arguments. Expected 2 arguments, got %d.", argc);
Mike Anderson6380f262009-12-10 23:52:21 +00001763 goto out;
1764 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765
Mike Snitzer498f0102011-08-02 12:32:04 +01001766 if (!strcasecmp(argv[0], "disable_group")) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001767 r = bypass_pg_num(m, argv[1], true);
Mike Anderson6380f262009-12-10 23:52:21 +00001768 goto out;
Mike Snitzer498f0102011-08-02 12:32:04 +01001769 } else if (!strcasecmp(argv[0], "enable_group")) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001770 r = bypass_pg_num(m, argv[1], false);
Mike Anderson6380f262009-12-10 23:52:21 +00001771 goto out;
Mike Snitzer498f0102011-08-02 12:32:04 +01001772 } else if (!strcasecmp(argv[0], "switch_group")) {
Mike Anderson6380f262009-12-10 23:52:21 +00001773 r = switch_pg_num(m, argv[1]);
1774 goto out;
Mike Snitzer498f0102011-08-02 12:32:04 +01001775 } else if (!strcasecmp(argv[0], "reinstate_path"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 action = reinstate_path;
Mike Snitzer498f0102011-08-02 12:32:04 +01001777 else if (!strcasecmp(argv[0], "fail_path"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 action = fail_path;
Mike Anderson6380f262009-12-10 23:52:21 +00001779 else {
Jose Castilloa356e422014-01-29 17:52:45 +01001780 DMWARN("Unrecognised multipath message received: %s", argv[0]);
Mike Anderson6380f262009-12-10 23:52:21 +00001781 goto out;
1782 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783
Nikanth Karthikesan8215d6e2010-03-06 02:32:27 +00001784 r = dm_get_device(ti, argv[1], dm_table_get_mode(ti->table), &dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 if (r) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001786 DMWARN("message: error getting device %s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 argv[1]);
Mike Anderson6380f262009-12-10 23:52:21 +00001788 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 }
1790
1791 r = action_dev(m, dev, action);
1792
1793 dm_put_device(ti, dev);
1794
Mike Anderson6380f262009-12-10 23:52:21 +00001795out:
1796 mutex_unlock(&m->work_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798}
1799
Christoph Hellwige56f81e2015-10-15 14:10:50 +02001800static int multipath_prepare_ioctl(struct dm_target *ti,
1801 struct block_device **bdev, fmode_t *mode)
Milan Broz9af4aa32006-10-03 01:15:20 -07001802{
Mikulas Patocka35991652012-06-03 00:29:58 +01001803 struct multipath *m = ti->private;
Mike Snitzer2da16102016-03-17 18:38:17 -04001804 struct pgpath *current_pgpath;
Mikulas Patocka35991652012-06-03 00:29:58 +01001805 int r;
1806
Mike Snitzer2da16102016-03-17 18:38:17 -04001807 current_pgpath = lockless_dereference(m->current_pgpath);
1808 if (!current_pgpath)
1809 current_pgpath = choose_pgpath(m, 0);
Milan Broz9af4aa32006-10-03 01:15:20 -07001810
Mike Snitzer2da16102016-03-17 18:38:17 -04001811 if (current_pgpath) {
Mike Snitzer518257b2016-03-17 16:32:10 -04001812 if (!test_bit(MPATHF_QUEUE_IO, &m->flags)) {
Mike Snitzer2da16102016-03-17 18:38:17 -04001813 *bdev = current_pgpath->path.dev->bdev;
1814 *mode = current_pgpath->path.dev->mode;
Junichi Nomura43e43c92015-11-17 09:36:56 +00001815 r = 0;
1816 } else {
1817 /* pg_init has not started or completed */
1818 r = -ENOTCONN;
1819 }
1820 } else {
1821 /* No path is available */
Mike Snitzer518257b2016-03-17 16:32:10 -04001822 if (test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))
Junichi Nomura43e43c92015-11-17 09:36:56 +00001823 r = -ENOTCONN;
1824 else
1825 r = -EIO;
Milan Broze90dae12006-10-03 01:15:22 -07001826 }
Milan Broz9af4aa32006-10-03 01:15:20 -07001827
Junichi Nomura5bbbfdf2015-11-17 09:39:26 +00001828 if (r == -ENOTCONN) {
Mike Snitzer2da16102016-03-17 18:38:17 -04001829 if (!lockless_dereference(m->current_pg)) {
Hannes Reinecke3e9f1be2014-02-28 15:33:45 +01001830 /* Path status changed, redo selection */
Mike Snitzer2da16102016-03-17 18:38:17 -04001831 (void) choose_pgpath(m, 0);
Hannes Reinecke3e9f1be2014-02-28 15:33:45 +01001832 }
Mike Snitzer518257b2016-03-17 16:32:10 -04001833 if (test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags))
Mike Snitzer2da16102016-03-17 18:38:17 -04001834 pg_init_all_paths(m);
Hannes Reinecke63d832c2014-05-26 14:45:39 +02001835 dm_table_run_md_queue_async(m->ti->table);
Mike Snitzer7e48c762016-09-14 10:47:03 -04001836 process_queued_io_list(m);
Hannes Reinecke3e9f1be2014-02-28 15:33:45 +01001837 }
Mikulas Patocka35991652012-06-03 00:29:58 +01001838
Christoph Hellwige56f81e2015-10-15 14:10:50 +02001839 /*
1840 * Only pass ioctls through if the device sizes match exactly.
1841 */
1842 if (!r && ti->len != i_size_read((*bdev)->bd_inode) >> SECTOR_SHIFT)
1843 return 1;
1844 return r;
Milan Broz9af4aa32006-10-03 01:15:20 -07001845}
1846
Mike Snitzeraf4874e2009-06-22 10:12:33 +01001847static int multipath_iterate_devices(struct dm_target *ti,
1848 iterate_devices_callout_fn fn, void *data)
1849{
1850 struct multipath *m = ti->private;
1851 struct priority_group *pg;
1852 struct pgpath *p;
1853 int ret = 0;
1854
1855 list_for_each_entry(pg, &m->priority_groups, list) {
1856 list_for_each_entry(p, &pg->pgpaths, list) {
Mike Snitzer5dea2712009-07-23 20:30:42 +01001857 ret = fn(ti, p->path.dev, ti->begin, ti->len, data);
Mike Snitzeraf4874e2009-06-22 10:12:33 +01001858 if (ret)
1859 goto out;
1860 }
1861 }
1862
1863out:
1864 return ret;
1865}
1866
Mike Snitzer9f54cec2016-02-11 21:42:28 -05001867static int pgpath_busy(struct pgpath *pgpath)
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001868{
1869 struct request_queue *q = bdev_get_queue(pgpath->path.dev->bdev);
1870
Mike Snitzer52b09912015-02-23 16:36:41 -05001871 return blk_lld_busy(q);
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001872}
1873
1874/*
1875 * We return "busy", only when we can map I/Os but underlying devices
1876 * are busy (so even if we map I/Os now, the I/Os will wait on
1877 * the underlying queue).
1878 * In other words, if we want to kill I/Os or queue them inside us
1879 * due to map unavailability, we don't return "busy". Otherwise,
1880 * dm core won't give us the I/Os and we can't do what we want.
1881 */
1882static int multipath_busy(struct dm_target *ti)
1883{
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001884 bool busy = false, has_active = false;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001885 struct multipath *m = ti->private;
Mike Snitzer2da16102016-03-17 18:38:17 -04001886 struct priority_group *pg, *next_pg;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001887 struct pgpath *pgpath;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001888
Mike Snitzerb88efd42016-09-09 19:26:19 -04001889 /* pg_init in progress */
1890 if (atomic_read(&m->pg_init_in_progress))
Mike Snitzer2da16102016-03-17 18:38:17 -04001891 return true;
1892
Mike Snitzerb88efd42016-09-09 19:26:19 -04001893 /* no paths available, for blk-mq: rely on IO mapping to delay requeue */
1894 if (!atomic_read(&m->nr_valid_paths) && test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))
1895 return (m->queue_mode != DM_TYPE_MQ_REQUEST_BASED);
1896
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001897 /* Guess which priority_group will be used at next mapping time */
Mike Snitzer2da16102016-03-17 18:38:17 -04001898 pg = lockless_dereference(m->current_pg);
1899 next_pg = lockless_dereference(m->next_pg);
1900 if (unlikely(!lockless_dereference(m->current_pgpath) && next_pg))
1901 pg = next_pg;
1902
1903 if (!pg) {
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001904 /*
1905 * We don't know which pg will be used at next mapping time.
Mike Snitzer2da16102016-03-17 18:38:17 -04001906 * We don't call choose_pgpath() here to avoid to trigger
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001907 * pg_init just by busy checking.
1908 * So we don't know whether underlying devices we will be using
1909 * at next mapping time are busy or not. Just try mapping.
1910 */
Mike Snitzer2da16102016-03-17 18:38:17 -04001911 return busy;
1912 }
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001913
1914 /*
1915 * If there is one non-busy active path at least, the path selector
1916 * will be able to select it. So we consider such a pg as not busy.
1917 */
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001918 busy = true;
Mike Snitzer2da16102016-03-17 18:38:17 -04001919 list_for_each_entry(pgpath, &pg->pgpaths, list) {
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001920 if (pgpath->is_active) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001921 has_active = true;
Mike Snitzer9f54cec2016-02-11 21:42:28 -05001922 if (!pgpath_busy(pgpath)) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001923 busy = false;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001924 break;
1925 }
1926 }
Mike Snitzer2da16102016-03-17 18:38:17 -04001927 }
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001928
Mike Snitzer2da16102016-03-17 18:38:17 -04001929 if (!has_active) {
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001930 /*
1931 * No active path in this pg, so this pg won't be used and
1932 * the current_pg will be changed at next mapping time.
1933 * We need to try mapping to determine it.
1934 */
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001935 busy = false;
Mike Snitzer2da16102016-03-17 18:38:17 -04001936 }
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001937
1938 return busy;
1939}
1940
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941/*-----------------------------------------------------------------
1942 * Module setup
1943 *---------------------------------------------------------------*/
1944static struct target_type multipath_target = {
1945 .name = "multipath",
Mike Snitzere83068a2016-05-24 21:16:51 -04001946 .version = {1, 12, 0},
Mike Snitzer16f12262016-01-31 17:22:27 -05001947 .features = DM_TARGET_SINGLETON | DM_TARGET_IMMUTABLE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 .module = THIS_MODULE,
1949 .ctr = multipath_ctr,
1950 .dtr = multipath_dtr,
Mike Snitzere5863d92014-12-17 21:08:12 -05001951 .clone_and_map_rq = multipath_clone_and_map,
1952 .release_clone_rq = multipath_release_clone,
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001953 .rq_end_io = multipath_end_io,
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001954 .map = multipath_map_bio,
1955 .end_io = multipath_end_io_bio,
1956 .presuspend = multipath_presuspend,
1957 .postsuspend = multipath_postsuspend,
1958 .resume = multipath_resume,
1959 .status = multipath_status,
1960 .message = multipath_message,
1961 .prepare_ioctl = multipath_prepare_ioctl,
1962 .iterate_devices = multipath_iterate_devices,
1963 .busy = multipath_busy,
1964};
1965
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966static int __init dm_multipath_init(void)
1967{
1968 int r;
1969
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 r = dm_register_target(&multipath_target);
1971 if (r < 0) {
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001972 DMERR("request-based register failed %d", r);
Johannes Thumshirnff658e92015-01-11 12:45:23 +01001973 r = -EINVAL;
1974 goto bad_register_target;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 }
1976
Tejun Heo4d4d66a2011-01-13 19:59:57 +00001977 kmultipathd = alloc_workqueue("kmpathd", WQ_MEM_RECLAIM, 0);
Alasdair G Kergonc5573082005-05-05 16:16:07 -07001978 if (!kmultipathd) {
Alasdair G Kergon0cd33122007-07-12 17:27:01 +01001979 DMERR("failed to create workqueue kmpathd");
Johannes Thumshirnff658e92015-01-11 12:45:23 +01001980 r = -ENOMEM;
1981 goto bad_alloc_kmultipathd;
Alasdair G Kergonc5573082005-05-05 16:16:07 -07001982 }
1983
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001984 /*
1985 * A separate workqueue is used to handle the device handlers
1986 * to avoid overloading existing workqueue. Overloading the
1987 * old workqueue would also create a bottleneck in the
1988 * path of the storage hardware device activation.
1989 */
Tejun Heo4d4d66a2011-01-13 19:59:57 +00001990 kmpath_handlerd = alloc_ordered_workqueue("kmpath_handlerd",
1991 WQ_MEM_RECLAIM);
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001992 if (!kmpath_handlerd) {
1993 DMERR("failed to create workqueue kmpath_handlerd");
Johannes Thumshirnff658e92015-01-11 12:45:23 +01001994 r = -ENOMEM;
1995 goto bad_alloc_kmpath_handlerd;
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001996 }
1997
Johannes Thumshirnff658e92015-01-11 12:45:23 +01001998 return 0;
1999
2000bad_alloc_kmpath_handlerd:
2001 destroy_workqueue(kmultipathd);
2002bad_alloc_kmultipathd:
2003 dm_unregister_target(&multipath_target);
2004bad_register_target:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 return r;
2006}
2007
2008static void __exit dm_multipath_exit(void)
2009{
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07002010 destroy_workqueue(kmpath_handlerd);
Alasdair G Kergonc5573082005-05-05 16:16:07 -07002011 destroy_workqueue(kmultipathd);
2012
Mikulas Patocka10d3bd02009-01-06 03:04:58 +00002013 dm_unregister_target(&multipath_target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014}
2015
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016module_init(dm_multipath_init);
2017module_exit(dm_multipath_exit);
2018
2019MODULE_DESCRIPTION(DM_NAME " multipath target");
2020MODULE_AUTHOR("Sistina Software <dm-devel@redhat.com>");
2021MODULE_LICENSE("GPL");