blob: 784f2374c3a456737eac025b0dfc5e50c4253842 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2003 Sistina Software Limited.
3 * Copyright (C) 2004-2005 Red Hat, Inc. All rights reserved.
4 *
5 * This file is released under the GPL.
6 */
7
Mikulas Patocka586e80e2008-10-21 17:44:59 +01008#include <linux/device-mapper.h>
9
Mike Snitzer4cc96132016-05-12 16:28:10 -040010#include "dm-rq.h"
Mike Snitzer76e33fe2016-05-19 16:15:14 -040011#include "dm-bio-record.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include "dm-path-selector.h"
Mike Andersonb15546f2007-10-19 22:48:02 +010013#include "dm-uevent.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
Mike Snitzere5863d92014-12-17 21:08:12 -050015#include <linux/blkdev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/ctype.h>
17#include <linux/init.h>
18#include <linux/mempool.h>
19#include <linux/module.h>
20#include <linux/pagemap.h>
21#include <linux/slab.h>
22#include <linux/time.h>
23#include <linux/workqueue.h>
Mikulas Patocka35991652012-06-03 00:29:58 +010024#include <linux/delay.h>
Chandra Seetharamancfae5c92008-05-01 14:50:11 -070025#include <scsi/scsi_dh.h>
Arun Sharma600634972011-07-26 16:09:06 -070026#include <linux/atomic.h>
Mike Snitzer78ce23b2016-01-31 17:38:28 -050027#include <linux/blk-mq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Alasdair G Kergon72d94862006-06-26 00:27:35 -070029#define DM_MSG_PREFIX "multipath"
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +000030#define DM_PG_INIT_DELAY_MSECS 2000
31#define DM_PG_INIT_DELAY_DEFAULT ((unsigned) -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33/* Path properties */
34struct pgpath {
35 struct list_head list;
36
37 struct priority_group *pg; /* Owning PG */
38 unsigned fail_count; /* Cumulative failure count */
39
Josef "Jeff" Sipekc922d5f2006-12-08 02:36:33 -080040 struct dm_path path;
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +000041 struct delayed_work activate_path;
Mike Snitzerbe7d31c2016-02-10 13:02:21 -050042
43 bool is_active:1; /* Path status */
Linus Torvalds1da177e2005-04-16 15:20:36 -070044};
45
46#define path_to_pgpath(__pgp) container_of((__pgp), struct pgpath, path)
47
48/*
49 * Paths are grouped into Priority Groups and numbered from 1 upwards.
50 * Each has a path selector which controls which path gets used.
51 */
52struct priority_group {
53 struct list_head list;
54
55 struct multipath *m; /* Owning multipath instance */
56 struct path_selector ps;
57
58 unsigned pg_num; /* Reference number */
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 unsigned nr_pgpaths; /* Number of paths in PG */
60 struct list_head pgpaths;
Mike Snitzerbe7d31c2016-02-10 13:02:21 -050061
62 bool bypassed:1; /* Temporarily bypass this PG? */
Linus Torvalds1da177e2005-04-16 15:20:36 -070063};
64
65/* Multipath context */
66struct multipath {
67 struct list_head list;
68 struct dm_target *ti;
69
Chandra Seetharamancfae5c92008-05-01 14:50:11 -070070 const char *hw_handler_name;
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -070071 char *hw_handler_params;
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +000072
Mike Snitzer1fbdd2b2012-06-03 00:29:43 +010073 spinlock_t lock;
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 unsigned nr_priority_groups;
76 struct list_head priority_groups;
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +000077
78 wait_queue_head_t pg_init_wait; /* Wait for pg_init completion */
79
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 struct pgpath *current_pgpath;
81 struct priority_group *current_pg;
82 struct priority_group *next_pg; /* Switch to this PG if set */
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Mike Snitzer518257b2016-03-17 16:32:10 -040084 unsigned long flags; /* Multipath state flags */
Mike Snitzer1fbdd2b2012-06-03 00:29:43 +010085
Dave Wysochanskic9e45582007-10-19 22:47:53 +010086 unsigned pg_init_retries; /* Number of times to retry pg_init */
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +000087 unsigned pg_init_delay_msecs; /* Number of msecs before pg_init retry */
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Mike Snitzer91e968a2016-03-17 17:10:15 -040089 atomic_t nr_valid_paths; /* Total number of usable paths */
90 atomic_t pg_init_in_progress; /* Only one pg_init allowed at once */
91 atomic_t pg_init_count; /* Number of times pg_init called */
92
Mike Snitzere83068a2016-05-24 21:16:51 -040093 unsigned queue_mode;
94
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);
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -0700114static void activate_path(struct work_struct *work);
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400115static void process_queued_bios(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Mike Snitzer518257b2016-03-17 16:32:10 -0400117/*-----------------------------------------------
118 * Multipath state flags.
119 *-----------------------------------------------*/
120
121#define MPATHF_QUEUE_IO 0 /* Must we queue all I/O? */
122#define MPATHF_QUEUE_IF_NO_PATH 1 /* Queue I/O if last path fails? */
123#define MPATHF_SAVED_QUEUE_IF_NO_PATH 2 /* Saved state during suspension */
124#define MPATHF_RETAIN_ATTACHED_HW_HANDLER 3 /* If there's already a hw_handler present, don't change it. */
125#define MPATHF_PG_INIT_DISABLED 4 /* pg_init is not currently allowed */
126#define MPATHF_PG_INIT_REQUIRED 5 /* pg_init needs calling? */
127#define MPATHF_PG_INIT_DELAY_RETRY 6 /* Delay pg_init retry? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129/*-----------------------------------------------
130 * Allocation routines
131 *-----------------------------------------------*/
132
133static struct pgpath *alloc_pgpath(void)
134{
Micha³ Miros³awe69fae52006-10-03 01:15:34 -0700135 struct pgpath *pgpath = kzalloc(sizeof(*pgpath), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Mike Anderson224cb3e2008-08-29 09:36:09 +0200137 if (pgpath) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -0500138 pgpath->is_active = true;
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +0000139 INIT_DELAYED_WORK(&pgpath->activate_path, activate_path);
Mike Anderson224cb3e2008-08-29 09:36:09 +0200140 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
142 return pgpath;
143}
144
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100145static void free_pgpath(struct pgpath *pgpath)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
147 kfree(pgpath);
148}
149
150static struct priority_group *alloc_priority_group(void)
151{
152 struct priority_group *pg;
153
Micha³ Miros³awe69fae52006-10-03 01:15:34 -0700154 pg = kzalloc(sizeof(*pg), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Micha³ Miros³awe69fae52006-10-03 01:15:34 -0700156 if (pg)
157 INIT_LIST_HEAD(&pg->pgpaths);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159 return pg;
160}
161
162static void free_pgpaths(struct list_head *pgpaths, struct dm_target *ti)
163{
164 struct pgpath *pgpath, *tmp;
165
166 list_for_each_entry_safe(pgpath, tmp, pgpaths, list) {
167 list_del(&pgpath->list);
168 dm_put_device(ti, pgpath->path.dev);
169 free_pgpath(pgpath);
170 }
171}
172
173static void free_priority_group(struct priority_group *pg,
174 struct dm_target *ti)
175{
176 struct path_selector *ps = &pg->ps;
177
178 if (ps->type) {
179 ps->type->destroy(ps);
180 dm_put_path_selector(ps->type);
181 }
182
183 free_pgpaths(&pg->pgpaths, ti);
184 kfree(pg);
185}
186
Mike Snitzere83068a2016-05-24 21:16:51 -0400187static struct multipath *alloc_multipath(struct dm_target *ti)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
189 struct multipath *m;
190
Micha³ Miros³awe69fae52006-10-03 01:15:34 -0700191 m = kzalloc(sizeof(*m), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 if (m) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 INIT_LIST_HEAD(&m->priority_groups);
194 spin_lock_init(&m->lock);
Mike Snitzer518257b2016-03-17 16:32:10 -0400195 set_bit(MPATHF_QUEUE_IO, &m->flags);
Mike Snitzer91e968a2016-03-17 17:10:15 -0400196 atomic_set(&m->nr_valid_paths, 0);
197 atomic_set(&m->pg_init_in_progress, 0);
198 atomic_set(&m->pg_init_count, 0);
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +0000199 m->pg_init_delay_msecs = DM_PG_INIT_DELAY_DEFAULT;
David Howellsc4028952006-11-22 14:57:56 +0000200 INIT_WORK(&m->trigger_event, trigger_event);
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +0000201 init_waitqueue_head(&m->pg_init_wait);
Mike Anderson6380f262009-12-10 23:52:21 +0000202 mutex_init(&m->work_mutex);
Mike Snitzer8637a6b2016-01-31 12:08:36 -0500203
Mike Snitzere83068a2016-05-24 21:16:51 -0400204 m->queue_mode = DM_TYPE_NONE;
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400205
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700206 m->ti = ti;
207 ti->private = m;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 }
209
210 return m;
211}
212
Mike Snitzere83068a2016-05-24 21:16:51 -0400213static int alloc_multipath_stage2(struct dm_target *ti, struct multipath *m)
214{
215 if (m->queue_mode == DM_TYPE_NONE) {
216 /*
217 * Default to request-based.
218 */
219 if (dm_use_blk_mq(dm_table_get_md(ti->table)))
220 m->queue_mode = DM_TYPE_MQ_REQUEST_BASED;
221 else
222 m->queue_mode = DM_TYPE_REQUEST_BASED;
Christoph Hellwigeb8db832017-01-22 18:32:46 +0100223 } else if (m->queue_mode == DM_TYPE_BIO_BASED) {
Mike Snitzere83068a2016-05-24 21:16:51 -0400224 INIT_WORK(&m->process_queued_bios, process_queued_bios);
225 /*
226 * bio-based doesn't support any direct scsi_dh management;
227 * it just discovers if a scsi_dh is attached.
228 */
229 set_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags);
230 }
231
232 dm_table_set_type(ti->table, m->queue_mode);
233
234 return 0;
235}
236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237static void free_multipath(struct multipath *m)
238{
239 struct priority_group *pg, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
241 list_for_each_entry_safe(pg, tmp, &m->priority_groups, list) {
242 list_del(&pg->list);
243 free_priority_group(pg, m->ti);
244 }
245
Chandra Seetharamancfae5c92008-05-01 14:50:11 -0700246 kfree(m->hw_handler_name);
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700247 kfree(m->hw_handler_params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 kfree(m);
249}
250
Mike Snitzer2eff1922016-02-03 09:13:14 -0500251static struct dm_mpath_io *get_mpio(union map_info *info)
252{
253 return info->ptr;
254}
255
Mike Snitzerbf661be2016-05-24 15:48:08 -0400256static size_t multipath_per_bio_data_size(void)
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400257{
Mike Snitzerbf661be2016-05-24 15:48:08 -0400258 return sizeof(struct dm_mpath_io) + sizeof(struct dm_bio_details);
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400259}
260
Mike Snitzerbf661be2016-05-24 15:48:08 -0400261static struct dm_mpath_io *get_mpio_from_bio(struct bio *bio)
262{
263 return dm_per_bio_data(bio, multipath_per_bio_data_size());
264}
265
266static struct dm_bio_details *get_bio_details_from_bio(struct bio *bio)
267{
268 /* dm_bio_details is immediately after the dm_mpath_io in bio's per-bio-data */
269 struct dm_mpath_io *mpio = get_mpio_from_bio(bio);
270 void *bio_details = mpio + 1;
271
272 return bio_details;
273}
274
275static void multipath_init_per_bio_data(struct bio *bio, struct dm_mpath_io **mpio_p,
276 struct dm_bio_details **bio_details_p)
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400277{
278 struct dm_mpath_io *mpio = get_mpio_from_bio(bio);
Mike Snitzerbf661be2016-05-24 15:48:08 -0400279 struct dm_bio_details *bio_details = get_bio_details_from_bio(bio);
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400280
281 memset(mpio, 0, sizeof(*mpio));
Mike Snitzerbf661be2016-05-24 15:48:08 -0400282 memset(bio_details, 0, sizeof(*bio_details));
283 dm_bio_record(bio_details, bio);
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400284
Mike Snitzerbf661be2016-05-24 15:48:08 -0400285 if (mpio_p)
286 *mpio_p = mpio;
287 if (bio_details_p)
288 *bio_details_p = bio_details;
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400289}
290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291/*-----------------------------------------------
292 * Path selection
293 *-----------------------------------------------*/
294
Hannes Reinecke3e9f1be2014-02-28 15:33:45 +0100295static int __pg_init_all_paths(struct multipath *m)
Kiyoshi Uedafb612642010-03-06 02:32:18 +0000296{
297 struct pgpath *pgpath;
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +0000298 unsigned long pg_init_delay = 0;
Kiyoshi Uedafb612642010-03-06 02:32:18 +0000299
Mike Snitzer91e968a2016-03-17 17:10:15 -0400300 if (atomic_read(&m->pg_init_in_progress) || test_bit(MPATHF_PG_INIT_DISABLED, &m->flags))
Hannes Reinecke3e9f1be2014-02-28 15:33:45 +0100301 return 0;
Hannes Reinecke17f4ff42014-02-28 15:33:42 +0100302
Mike Snitzer91e968a2016-03-17 17:10:15 -0400303 atomic_inc(&m->pg_init_count);
Mike Snitzer518257b2016-03-17 16:32:10 -0400304 clear_bit(MPATHF_PG_INIT_REQUIRED, &m->flags);
Hannes Reinecke3e9f1be2014-02-28 15:33:45 +0100305
306 /* Check here to reset pg_init_required */
307 if (!m->current_pg)
308 return 0;
309
Mike Snitzer518257b2016-03-17 16:32:10 -0400310 if (test_bit(MPATHF_PG_INIT_DELAY_RETRY, &m->flags))
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +0000311 pg_init_delay = msecs_to_jiffies(m->pg_init_delay_msecs != DM_PG_INIT_DELAY_DEFAULT ?
312 m->pg_init_delay_msecs : DM_PG_INIT_DELAY_MSECS);
Kiyoshi Uedafb612642010-03-06 02:32:18 +0000313 list_for_each_entry(pgpath, &m->current_pg->pgpaths, list) {
314 /* Skip failed paths */
315 if (!pgpath->is_active)
316 continue;
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +0000317 if (queue_delayed_work(kmpath_handlerd, &pgpath->activate_path,
318 pg_init_delay))
Mike Snitzer91e968a2016-03-17 17:10:15 -0400319 atomic_inc(&m->pg_init_in_progress);
Kiyoshi Uedafb612642010-03-06 02:32:18 +0000320 }
Mike Snitzer91e968a2016-03-17 17:10:15 -0400321 return atomic_read(&m->pg_init_in_progress);
Kiyoshi Uedafb612642010-03-06 02:32:18 +0000322}
323
Bart Van Assche48135772016-11-15 15:34:09 -0800324static void pg_init_all_paths(struct multipath *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325{
Mike Snitzer2da16102016-03-17 18:38:17 -0400326 unsigned long flags;
327
328 spin_lock_irqsave(&m->lock, flags);
Bart Van Assche48135772016-11-15 15:34:09 -0800329 __pg_init_all_paths(m);
Mike Snitzer2da16102016-03-17 18:38:17 -0400330 spin_unlock_irqrestore(&m->lock, flags);
Mike Snitzer2da16102016-03-17 18:38:17 -0400331}
332
333static void __switch_pg(struct multipath *m, struct priority_group *pg)
334{
335 m->current_pg = pg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
337 /* Must we initialise the PG first, and queue I/O till it's ready? */
Chandra Seetharamancfae5c92008-05-01 14:50:11 -0700338 if (m->hw_handler_name) {
Mike Snitzer518257b2016-03-17 16:32:10 -0400339 set_bit(MPATHF_PG_INIT_REQUIRED, &m->flags);
340 set_bit(MPATHF_QUEUE_IO, &m->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 } else {
Mike Snitzer518257b2016-03-17 16:32:10 -0400342 clear_bit(MPATHF_PG_INIT_REQUIRED, &m->flags);
343 clear_bit(MPATHF_QUEUE_IO, &m->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 }
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100345
Mike Snitzer91e968a2016-03-17 17:10:15 -0400346 atomic_set(&m->pg_init_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347}
348
Mike Snitzer2da16102016-03-17 18:38:17 -0400349static struct pgpath *choose_path_in_pg(struct multipath *m,
350 struct priority_group *pg,
351 size_t nr_bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
Mike Snitzer2da16102016-03-17 18:38:17 -0400353 unsigned long flags;
Josef "Jeff" Sipekc922d5f2006-12-08 02:36:33 -0800354 struct dm_path *path;
Mike Snitzer2da16102016-03-17 18:38:17 -0400355 struct pgpath *pgpath;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Mike Snitzer90a43232016-02-17 21:29:17 -0500357 path = pg->ps.type->select_path(&pg->ps, nr_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 if (!path)
Mike Snitzer2da16102016-03-17 18:38:17 -0400359 return ERR_PTR(-ENXIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Mike Snitzer2da16102016-03-17 18:38:17 -0400361 pgpath = path_to_pgpath(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Mike Snitzer2da16102016-03-17 18:38:17 -0400363 if (unlikely(lockless_dereference(m->current_pg) != pg)) {
364 /* Only update current_pgpath if pg changed */
365 spin_lock_irqsave(&m->lock, flags);
366 m->current_pgpath = pgpath;
367 __switch_pg(m, pg);
368 spin_unlock_irqrestore(&m->lock, flags);
369 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Mike Snitzer2da16102016-03-17 18:38:17 -0400371 return pgpath;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372}
373
Mike Snitzer2da16102016-03-17 18:38:17 -0400374static struct pgpath *choose_pgpath(struct multipath *m, size_t nr_bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375{
Mike Snitzer2da16102016-03-17 18:38:17 -0400376 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 struct priority_group *pg;
Mike Snitzer2da16102016-03-17 18:38:17 -0400378 struct pgpath *pgpath;
Mike Snitzerbe7d31c2016-02-10 13:02:21 -0500379 bool bypassed = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Mike Snitzer91e968a2016-03-17 17:10:15 -0400381 if (!atomic_read(&m->nr_valid_paths)) {
Mike Snitzer518257b2016-03-17 16:32:10 -0400382 clear_bit(MPATHF_QUEUE_IO, &m->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 goto failed;
Benjamin Marzinski1f271972014-08-13 13:53:42 -0500384 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
386 /* Were we instructed to switch PG? */
Mike Snitzer2da16102016-03-17 18:38:17 -0400387 if (lockless_dereference(m->next_pg)) {
388 spin_lock_irqsave(&m->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 pg = m->next_pg;
Mike Snitzer2da16102016-03-17 18:38:17 -0400390 if (!pg) {
391 spin_unlock_irqrestore(&m->lock, flags);
392 goto check_current_pg;
393 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 m->next_pg = NULL;
Mike Snitzer2da16102016-03-17 18:38:17 -0400395 spin_unlock_irqrestore(&m->lock, flags);
396 pgpath = choose_path_in_pg(m, pg, nr_bytes);
397 if (!IS_ERR_OR_NULL(pgpath))
398 return pgpath;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 }
400
401 /* Don't change PG until it has no remaining paths */
Mike Snitzer2da16102016-03-17 18:38:17 -0400402check_current_pg:
403 pg = lockless_dereference(m->current_pg);
404 if (pg) {
405 pgpath = choose_path_in_pg(m, pg, nr_bytes);
406 if (!IS_ERR_OR_NULL(pgpath))
407 return pgpath;
408 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
410 /*
411 * Loop through priority groups until we find a valid path.
412 * First time we skip PGs marked 'bypassed'.
Mike Christief220fd42012-06-03 00:29:45 +0100413 * Second time we only try the ones we skipped, but set
414 * pg_init_delay_retry so we do not hammer controllers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 */
416 do {
417 list_for_each_entry(pg, &m->priority_groups, list) {
418 if (pg->bypassed == bypassed)
419 continue;
Mike Snitzer2da16102016-03-17 18:38:17 -0400420 pgpath = choose_path_in_pg(m, pg, nr_bytes);
421 if (!IS_ERR_OR_NULL(pgpath)) {
Mike Christief220fd42012-06-03 00:29:45 +0100422 if (!bypassed)
Mike Snitzer518257b2016-03-17 16:32:10 -0400423 set_bit(MPATHF_PG_INIT_DELAY_RETRY, &m->flags);
Mike Snitzer2da16102016-03-17 18:38:17 -0400424 return pgpath;
Mike Christief220fd42012-06-03 00:29:45 +0100425 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 }
427 } while (bypassed--);
428
429failed:
Mike Snitzer2da16102016-03-17 18:38:17 -0400430 spin_lock_irqsave(&m->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 m->current_pgpath = NULL;
432 m->current_pg = NULL;
Mike Snitzer2da16102016-03-17 18:38:17 -0400433 spin_unlock_irqrestore(&m->lock, flags);
434
435 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436}
437
Kiyoshi Ueda45e15722006-12-08 02:41:10 -0800438/*
439 * Check whether bios must be queued in the device-mapper core rather
440 * than here in the target.
441 *
Kiyoshi Ueda45e15722006-12-08 02:41:10 -0800442 * If m->queue_if_no_path and m->saved_queue_if_no_path hold the
443 * same value then we are not between multipath_presuspend()
444 * and multipath_resume() calls and we have no need to check
445 * for the DMF_NOFLUSH_SUSPENDING flag.
446 */
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400447static bool __must_push_back(struct multipath *m)
448{
449 return ((test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags) !=
450 test_bit(MPATHF_SAVED_QUEUE_IF_NO_PATH, &m->flags)) &&
451 dm_noflush_suspending(m->ti));
452}
453
454static bool must_push_back_rq(struct multipath *m)
Kiyoshi Ueda45e15722006-12-08 02:41:10 -0800455{
Mike Snitzer1814f2e2016-07-25 21:08:51 -0400456 bool r;
457 unsigned long flags;
458
459 spin_lock_irqsave(&m->lock, flags);
460 r = (test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags) ||
461 __must_push_back(m));
462 spin_unlock_irqrestore(&m->lock, flags);
463
464 return r;
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400465}
466
467static bool must_push_back_bio(struct multipath *m)
468{
Mike Snitzer1814f2e2016-07-25 21:08:51 -0400469 bool r;
470 unsigned long flags;
471
472 spin_lock_irqsave(&m->lock, flags);
473 r = __must_push_back(m);
474 spin_unlock_irqrestore(&m->lock, flags);
475
476 return r;
Kiyoshi Ueda45e15722006-12-08 02:41:10 -0800477}
478
Hannes Reinecke36fcffc2014-02-28 15:33:47 +0100479/*
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400480 * Map cloned requests (request-based multipath)
Hannes Reinecke36fcffc2014-02-28 15:33:47 +0100481 */
Christoph Hellwigeb8db832017-01-22 18:32:46 +0100482static int multipath_clone_and_map(struct dm_target *ti, struct request *rq,
483 union map_info *map_context,
484 struct request **__clone)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485{
Mike Snitzer7943bd62016-02-02 21:53:15 -0500486 struct multipath *m = ti->private;
Hannes Reineckee3bde042014-02-28 15:33:46 +0100487 int r = DM_MAPIO_REQUEUE;
Christoph Hellwigeb8db832017-01-22 18:32:46 +0100488 size_t nr_bytes = blk_rq_bytes(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 struct pgpath *pgpath;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +0100490 struct block_device *bdev;
Christoph Hellwigeb8db832017-01-22 18:32:46 +0100491 struct dm_mpath_io *mpio = get_mpio(map_context);
492 struct request *clone;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 /* Do we need to select a new pgpath? */
Mike Snitzer2da16102016-03-17 18:38:17 -0400495 pgpath = lockless_dereference(m->current_pgpath);
496 if (!pgpath || !test_bit(MPATHF_QUEUE_IO, &m->flags))
497 pgpath = choose_pgpath(m, nr_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
Mike Snitzer9bf59a62014-02-28 15:33:48 +0100499 if (!pgpath) {
Mike Snitzerb88efd42016-09-09 19:26:19 -0400500 if (must_push_back_rq(m))
501 return DM_MAPIO_DELAY_REQUEUE;
502 return -EIO; /* Failed */
Mike Snitzer518257b2016-03-17 16:32:10 -0400503 } else if (test_bit(MPATHF_QUEUE_IO, &m->flags) ||
504 test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags)) {
Mike Snitzer2da16102016-03-17 18:38:17 -0400505 pg_init_all_paths(m);
506 return r;
Mike Snitzer9bf59a62014-02-28 15:33:48 +0100507 }
Mike Snitzer6afbc012014-07-08 11:55:09 -0400508
Christoph Hellwigeb8db832017-01-22 18:32:46 +0100509 memset(mpio, 0, sizeof(*mpio));
Mike Snitzer9bf59a62014-02-28 15:33:48 +0100510 mpio->pgpath = pgpath;
511 mpio->nr_bytes = nr_bytes;
Keith Busch2eb6e1e2014-10-17 17:46:36 -0600512
513 bdev = pgpath->path.dev->bdev;
514
Christoph Hellwigeb8db832017-01-22 18:32:46 +0100515 clone = blk_get_request(bdev_get_queue(bdev),
516 rq->cmd_flags | REQ_NOMERGE,
517 GFP_ATOMIC);
518 if (IS_ERR(clone)) {
519 /* EBUSY, ENODEV or EWOULDBLOCK: requeue */
520 return r;
Mike Snitzere5863d92014-12-17 21:08:12 -0500521 }
Christoph Hellwigeb8db832017-01-22 18:32:46 +0100522 clone->bio = clone->biotail = NULL;
523 clone->rq_disk = bdev->bd_disk;
524 clone->cmd_flags |= REQ_FAILFAST_TRANSPORT;
525 *__clone = clone;
Mike Snitzere5863d92014-12-17 21:08:12 -0500526
Mike Snitzer9bf59a62014-02-28 15:33:48 +0100527 if (pgpath->pg->ps.type->start_io)
528 pgpath->pg->ps.type->start_io(&pgpath->pg->ps,
529 &pgpath->path,
530 nr_bytes);
Keith Busch2eb6e1e2014-10-17 17:46:36 -0600531 return DM_MAPIO_REMAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532}
533
Mike Snitzere5863d92014-12-17 21:08:12 -0500534static void multipath_release_clone(struct request *clone)
535{
Christoph Hellwigeb8db832017-01-22 18:32:46 +0100536 blk_put_request(clone);
Mike Snitzere5863d92014-12-17 21:08:12 -0500537}
538
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539/*
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400540 * Map cloned bios (bio-based multipath)
541 */
542static int __multipath_map_bio(struct multipath *m, struct bio *bio, struct dm_mpath_io *mpio)
543{
544 size_t nr_bytes = bio->bi_iter.bi_size;
545 struct pgpath *pgpath;
546 unsigned long flags;
547 bool queue_io;
548
549 /* Do we need to select a new pgpath? */
550 pgpath = lockless_dereference(m->current_pgpath);
551 queue_io = test_bit(MPATHF_QUEUE_IO, &m->flags);
552 if (!pgpath || !queue_io)
553 pgpath = choose_pgpath(m, nr_bytes);
554
555 if ((pgpath && queue_io) ||
556 (!pgpath && test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))) {
557 /* Queue for the daemon to resubmit */
558 spin_lock_irqsave(&m->lock, flags);
559 bio_list_add(&m->queued_bios, bio);
560 spin_unlock_irqrestore(&m->lock, flags);
561 /* PG_INIT_REQUIRED cannot be set without QUEUE_IO */
562 if (queue_io || test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags))
563 pg_init_all_paths(m);
564 else if (!queue_io)
565 queue_work(kmultipathd, &m->process_queued_bios);
566 return DM_MAPIO_SUBMITTED;
567 }
568
569 if (!pgpath) {
570 if (!must_push_back_bio(m))
571 return -EIO;
572 return DM_MAPIO_REQUEUE;
573 }
574
575 mpio->pgpath = pgpath;
576 mpio->nr_bytes = nr_bytes;
577
578 bio->bi_error = 0;
579 bio->bi_bdev = pgpath->path.dev->bdev;
Jens Axboe1eff9d32016-08-05 15:35:16 -0600580 bio->bi_opf |= REQ_FAILFAST_TRANSPORT;
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400581
582 if (pgpath->pg->ps.type->start_io)
583 pgpath->pg->ps.type->start_io(&pgpath->pg->ps,
584 &pgpath->path,
585 nr_bytes);
586 return DM_MAPIO_REMAPPED;
587}
588
589static int multipath_map_bio(struct dm_target *ti, struct bio *bio)
590{
591 struct multipath *m = ti->private;
Mike Snitzerbf661be2016-05-24 15:48:08 -0400592 struct dm_mpath_io *mpio = NULL;
593
594 multipath_init_per_bio_data(bio, &mpio, NULL);
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400595
596 return __multipath_map_bio(m, bio, mpio);
597}
598
Mike Snitzer7e48c762016-09-14 10:47:03 -0400599static void process_queued_io_list(struct multipath *m)
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400600{
Mike Snitzer7e48c762016-09-14 10:47:03 -0400601 if (m->queue_mode == DM_TYPE_MQ_REQUEST_BASED)
602 dm_mq_kick_requeue_list(dm_table_get_md(m->ti->table));
603 else if (m->queue_mode == DM_TYPE_BIO_BASED)
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400604 queue_work(kmultipathd, &m->process_queued_bios);
605}
606
607static void process_queued_bios(struct work_struct *work)
608{
609 int r;
610 unsigned long flags;
611 struct bio *bio;
612 struct bio_list bios;
613 struct blk_plug plug;
614 struct multipath *m =
615 container_of(work, struct multipath, process_queued_bios);
616
617 bio_list_init(&bios);
618
619 spin_lock_irqsave(&m->lock, flags);
620
621 if (bio_list_empty(&m->queued_bios)) {
622 spin_unlock_irqrestore(&m->lock, flags);
623 return;
624 }
625
626 bio_list_merge(&bios, &m->queued_bios);
627 bio_list_init(&m->queued_bios);
628
629 spin_unlock_irqrestore(&m->lock, flags);
630
631 blk_start_plug(&plug);
632 while ((bio = bio_list_pop(&bios))) {
633 r = __multipath_map_bio(m, bio, get_mpio_from_bio(bio));
634 if (r < 0 || r == DM_MAPIO_REQUEUE) {
635 bio->bi_error = r;
636 bio_endio(bio);
637 } else if (r == DM_MAPIO_REMAPPED)
638 generic_make_request(bio);
639 }
640 blk_finish_plug(&plug);
641}
642
643/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 * If we run out of usable paths, should we queue I/O or error it?
645 */
Mike Snitzerbe7d31c2016-02-10 13:02:21 -0500646static int queue_if_no_path(struct multipath *m, bool queue_if_no_path,
647 bool save_old_value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648{
649 unsigned long flags;
650
651 spin_lock_irqsave(&m->lock, flags);
652
Mike Snitzer518257b2016-03-17 16:32:10 -0400653 if (save_old_value) {
654 if (test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))
655 set_bit(MPATHF_SAVED_QUEUE_IF_NO_PATH, &m->flags);
656 else
657 clear_bit(MPATHF_SAVED_QUEUE_IF_NO_PATH, &m->flags);
658 } else {
659 if (queue_if_no_path)
660 set_bit(MPATHF_SAVED_QUEUE_IF_NO_PATH, &m->flags);
661 else
662 clear_bit(MPATHF_SAVED_QUEUE_IF_NO_PATH, &m->flags);
663 }
664 if (queue_if_no_path)
665 set_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags);
Alasdair G Kergon485ef692005-09-27 21:45:45 -0700666 else
Mike Snitzer518257b2016-03-17 16:32:10 -0400667 clear_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags);
668
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 spin_unlock_irqrestore(&m->lock, flags);
670
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400671 if (!queue_if_no_path) {
Hannes Reinecke63d832c2014-05-26 14:45:39 +0200672 dm_table_run_md_queue_async(m->ti->table);
Mike Snitzer7e48c762016-09-14 10:47:03 -0400673 process_queued_io_list(m);
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400674 }
Hannes Reinecke63d832c2014-05-26 14:45:39 +0200675
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 return 0;
677}
678
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679/*
680 * An event is triggered whenever a path is taken out of use.
681 * Includes path failure and PG bypass.
682 */
David Howellsc4028952006-11-22 14:57:56 +0000683static void trigger_event(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684{
David Howellsc4028952006-11-22 14:57:56 +0000685 struct multipath *m =
686 container_of(work, struct multipath, trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
688 dm_table_event(m->ti->table);
689}
690
691/*-----------------------------------------------------------------
692 * Constructor/argument parsing:
693 * <#multipath feature args> [<arg>]*
694 * <#hw_handler args> [hw_handler [<arg>]*]
695 * <#priority groups>
696 * <initial priority group>
697 * [<selector> <#selector args> [<arg>]*
698 * <#paths> <#per-path selector args>
699 * [<path> [<arg>]* ]+ ]+
700 *---------------------------------------------------------------*/
Mike Snitzer498f0102011-08-02 12:32:04 +0100701static int parse_path_selector(struct dm_arg_set *as, struct priority_group *pg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 struct dm_target *ti)
703{
704 int r;
705 struct path_selector_type *pst;
706 unsigned ps_argc;
707
Mike Snitzer498f0102011-08-02 12:32:04 +0100708 static struct dm_arg _args[] = {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700709 {0, 1024, "invalid number of path selector args"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 };
711
Mike Snitzer498f0102011-08-02 12:32:04 +0100712 pst = dm_get_path_selector(dm_shift_arg(as));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 if (!pst) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700714 ti->error = "unknown path selector type";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 return -EINVAL;
716 }
717
Mike Snitzer498f0102011-08-02 12:32:04 +0100718 r = dm_read_arg_group(_args, as, &ps_argc, &ti->error);
Mikulas Patocka371b2e32008-07-21 12:00:24 +0100719 if (r) {
720 dm_put_path_selector(pst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 return -EINVAL;
Mikulas Patocka371b2e32008-07-21 12:00:24 +0100722 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
724 r = pst->create(&pg->ps, ps_argc, as->argv);
725 if (r) {
726 dm_put_path_selector(pst);
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700727 ti->error = "path selector constructor failed";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 return r;
729 }
730
731 pg->ps.type = pst;
Mike Snitzer498f0102011-08-02 12:32:04 +0100732 dm_consume_args(as, ps_argc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
734 return 0;
735}
736
Mike Snitzer498f0102011-08-02 12:32:04 +0100737static struct pgpath *parse_path(struct dm_arg_set *as, struct path_selector *ps,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 struct dm_target *ti)
739{
740 int r;
741 struct pgpath *p;
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700742 struct multipath *m = ti->private;
Mike Snitzera58a9352012-07-27 15:08:04 +0100743 struct request_queue *q = NULL;
744 const char *attached_handler_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
746 /* we need at least a path arg */
747 if (as->argc < 1) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700748 ti->error = "no device given";
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100749 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 }
751
752 p = alloc_pgpath();
753 if (!p)
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100754 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Mike Snitzer498f0102011-08-02 12:32:04 +0100756 r = dm_get_device(ti, dm_shift_arg(as), dm_table_get_mode(ti->table),
Nikanth Karthikesan8215d6e2010-03-06 02:32:27 +0000757 &p->path.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 if (r) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700759 ti->error = "error getting device";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 goto bad;
761 }
762
Mike Snitzer518257b2016-03-17 16:32:10 -0400763 if (test_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags) || m->hw_handler_name)
Mike Snitzera58a9352012-07-27 15:08:04 +0100764 q = bdev_get_queue(p->path.dev->bdev);
Hannes Reineckea0cf7ea2009-06-22 10:12:11 +0100765
Mike Snitzer518257b2016-03-17 16:32:10 -0400766 if (test_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags)) {
Christoph Hellwig1bab0de2015-08-27 14:16:54 +0200767retain:
Mike Snitzera58a9352012-07-27 15:08:04 +0100768 attached_handler_name = scsi_dh_attached_handler_name(q, GFP_KERNEL);
769 if (attached_handler_name) {
770 /*
tang.junhui54cd6402016-11-24 15:11:48 +0800771 * Clear any hw_handler_params associated with a
772 * handler that isn't already attached.
773 */
774 if (m->hw_handler_name && strcmp(attached_handler_name, m->hw_handler_name)) {
775 kfree(m->hw_handler_params);
776 m->hw_handler_params = NULL;
777 }
778
779 /*
Mike Snitzera58a9352012-07-27 15:08:04 +0100780 * Reset hw_handler_name to match the attached handler
Mike Snitzera58a9352012-07-27 15:08:04 +0100781 *
782 * NB. This modifies the table line to show the actual
783 * handler instead of the original table passed in.
784 */
785 kfree(m->hw_handler_name);
786 m->hw_handler_name = attached_handler_name;
Mike Snitzera58a9352012-07-27 15:08:04 +0100787 }
788 }
789
790 if (m->hw_handler_name) {
Hannes Reineckea0cf7ea2009-06-22 10:12:11 +0100791 r = scsi_dh_attach(q, m->hw_handler_name);
792 if (r == -EBUSY) {
Christoph Hellwig1bab0de2015-08-27 14:16:54 +0200793 char b[BDEVNAME_SIZE];
Hannes Reineckea0cf7ea2009-06-22 10:12:11 +0100794
Christoph Hellwig1bab0de2015-08-27 14:16:54 +0200795 printk(KERN_INFO "dm-mpath: retaining handler on device %s\n",
796 bdevname(p->path.dev->bdev, b));
797 goto retain;
798 }
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700799 if (r < 0) {
Hannes Reineckea0cf7ea2009-06-22 10:12:11 +0100800 ti->error = "error attaching hardware handler";
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700801 dm_put_device(ti, p->path.dev);
802 goto bad;
803 }
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700804
805 if (m->hw_handler_params) {
806 r = scsi_dh_set_params(q, m->hw_handler_params);
807 if (r < 0) {
808 ti->error = "unable to set hardware "
809 "handler parameters";
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700810 dm_put_device(ti, p->path.dev);
811 goto bad;
812 }
813 }
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700814 }
815
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 r = ps->type->add_path(ps, &p->path, as->argc, as->argv, &ti->error);
817 if (r) {
818 dm_put_device(ti, p->path.dev);
819 goto bad;
820 }
821
822 return p;
823
824 bad:
825 free_pgpath(p);
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100826 return ERR_PTR(r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827}
828
Mike Snitzer498f0102011-08-02 12:32:04 +0100829static struct priority_group *parse_priority_group(struct dm_arg_set *as,
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700830 struct multipath *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831{
Mike Snitzer498f0102011-08-02 12:32:04 +0100832 static struct dm_arg _args[] = {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700833 {1, 1024, "invalid number of paths"},
834 {0, 1024, "invalid number of selector args"}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 };
836
837 int r;
Mike Snitzer498f0102011-08-02 12:32:04 +0100838 unsigned i, nr_selector_args, nr_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 struct priority_group *pg;
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700840 struct dm_target *ti = m->ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
842 if (as->argc < 2) {
843 as->argc = 0;
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100844 ti->error = "not enough priority group arguments";
845 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 }
847
848 pg = alloc_priority_group();
849 if (!pg) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700850 ti->error = "couldn't allocate priority group";
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100851 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 }
853 pg->m = m;
854
855 r = parse_path_selector(as, pg, ti);
856 if (r)
857 goto bad;
858
859 /*
860 * read the paths
861 */
Mike Snitzer498f0102011-08-02 12:32:04 +0100862 r = dm_read_arg(_args, as, &pg->nr_pgpaths, &ti->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 if (r)
864 goto bad;
865
Mike Snitzer498f0102011-08-02 12:32:04 +0100866 r = dm_read_arg(_args + 1, as, &nr_selector_args, &ti->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 if (r)
868 goto bad;
869
Mike Snitzer498f0102011-08-02 12:32:04 +0100870 nr_args = 1 + nr_selector_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 for (i = 0; i < pg->nr_pgpaths; i++) {
872 struct pgpath *pgpath;
Mike Snitzer498f0102011-08-02 12:32:04 +0100873 struct dm_arg_set path_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
Mike Snitzer498f0102011-08-02 12:32:04 +0100875 if (as->argc < nr_args) {
Mikulas Patocka148acff2008-07-21 12:00:30 +0100876 ti->error = "not enough path parameters";
Alasdair G Kergon6bbf79a2010-08-12 04:13:49 +0100877 r = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 goto bad;
Mikulas Patocka148acff2008-07-21 12:00:30 +0100879 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
Mike Snitzer498f0102011-08-02 12:32:04 +0100881 path_args.argc = nr_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 path_args.argv = as->argv;
883
884 pgpath = parse_path(&path_args, &pg->ps, ti);
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100885 if (IS_ERR(pgpath)) {
886 r = PTR_ERR(pgpath);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 goto bad;
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100888 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
890 pgpath->pg = pg;
891 list_add_tail(&pgpath->list, &pg->pgpaths);
Mike Snitzer498f0102011-08-02 12:32:04 +0100892 dm_consume_args(as, nr_args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 }
894
895 return pg;
896
897 bad:
898 free_priority_group(pg, ti);
Benjamin Marzinski01460f32008-10-10 13:36:57 +0100899 return ERR_PTR(r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900}
901
Mike Snitzer498f0102011-08-02 12:32:04 +0100902static int parse_hw_handler(struct dm_arg_set *as, struct multipath *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 unsigned hw_argc;
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700905 int ret;
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700906 struct dm_target *ti = m->ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
Mike Snitzer498f0102011-08-02 12:32:04 +0100908 static struct dm_arg _args[] = {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700909 {0, 1024, "invalid number of hardware handler args"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 };
911
Mike Snitzer498f0102011-08-02 12:32:04 +0100912 if (dm_read_arg_group(_args, as, &hw_argc, &ti->error))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 return -EINVAL;
914
915 if (!hw_argc)
916 return 0;
917
Mike Snitzere83068a2016-05-24 21:16:51 -0400918 if (m->queue_mode == DM_TYPE_BIO_BASED) {
Mike Snitzer76e33fe2016-05-19 16:15:14 -0400919 dm_consume_args(as, hw_argc);
920 DMERR("bio-based multipath doesn't allow hardware handler args");
921 return 0;
922 }
923
Mike Snitzer498f0102011-08-02 12:32:04 +0100924 m->hw_handler_name = kstrdup(dm_shift_arg(as), GFP_KERNEL);
tang.junhuif97dc422016-10-28 17:04:46 +0800925 if (!m->hw_handler_name)
926 return -EINVAL;
Chandra Seetharaman14e98c52008-11-13 23:39:06 +0000927
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700928 if (hw_argc > 1) {
929 char *p;
930 int i, j, len = 4;
931
932 for (i = 0; i <= hw_argc - 2; i++)
933 len += strlen(as->argv[i]) + 1;
934 p = m->hw_handler_params = kzalloc(len, GFP_KERNEL);
935 if (!p) {
936 ti->error = "memory allocation failed";
937 ret = -ENOMEM;
938 goto fail;
939 }
940 j = sprintf(p, "%d", hw_argc - 1);
941 for (i = 0, p+=j+1; i <= hw_argc - 2; i++, p+=j+1)
942 j = sprintf(p, "%s", as->argv[i]);
943 }
Mike Snitzer498f0102011-08-02 12:32:04 +0100944 dm_consume_args(as, hw_argc - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
946 return 0;
Chandra Seetharaman2bfd2e12009-08-03 12:42:45 -0700947fail:
948 kfree(m->hw_handler_name);
949 m->hw_handler_name = NULL;
950 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951}
952
Mike Snitzer498f0102011-08-02 12:32:04 +0100953static int parse_features(struct dm_arg_set *as, struct multipath *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954{
955 int r;
956 unsigned argc;
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -0700957 struct dm_target *ti = m->ti;
Mike Snitzer498f0102011-08-02 12:32:04 +0100958 const char *arg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
Mike Snitzer498f0102011-08-02 12:32:04 +0100960 static struct dm_arg _args[] = {
Mike Snitzere83068a2016-05-24 21:16:51 -0400961 {0, 8, "invalid number of feature args"},
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100962 {1, 50, "pg_init_retries must be between 1 and 50"},
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +0000963 {0, 60000, "pg_init_delay_msecs must be between 0 and 60000"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 };
965
Mike Snitzer498f0102011-08-02 12:32:04 +0100966 r = dm_read_arg_group(_args, as, &argc, &ti->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 if (r)
968 return -EINVAL;
969
970 if (!argc)
971 return 0;
972
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100973 do {
Mike Snitzer498f0102011-08-02 12:32:04 +0100974 arg_name = dm_shift_arg(as);
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100975 argc--;
976
Mike Snitzer498f0102011-08-02 12:32:04 +0100977 if (!strcasecmp(arg_name, "queue_if_no_path")) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -0500978 r = queue_if_no_path(m, true, false);
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100979 continue;
980 }
981
Mike Snitzera58a9352012-07-27 15:08:04 +0100982 if (!strcasecmp(arg_name, "retain_attached_hw_handler")) {
Mike Snitzer518257b2016-03-17 16:32:10 -0400983 set_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags);
Mike Snitzera58a9352012-07-27 15:08:04 +0100984 continue;
985 }
986
Mike Snitzer498f0102011-08-02 12:32:04 +0100987 if (!strcasecmp(arg_name, "pg_init_retries") &&
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100988 (argc >= 1)) {
Mike Snitzer498f0102011-08-02 12:32:04 +0100989 r = dm_read_arg(_args + 1, as, &m->pg_init_retries, &ti->error);
Dave Wysochanskic9e45582007-10-19 22:47:53 +0100990 argc--;
991 continue;
992 }
993
Mike Snitzer498f0102011-08-02 12:32:04 +0100994 if (!strcasecmp(arg_name, "pg_init_delay_msecs") &&
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +0000995 (argc >= 1)) {
Mike Snitzer498f0102011-08-02 12:32:04 +0100996 r = dm_read_arg(_args + 2, as, &m->pg_init_delay_msecs, &ti->error);
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +0000997 argc--;
998 continue;
999 }
1000
Mike Snitzere83068a2016-05-24 21:16:51 -04001001 if (!strcasecmp(arg_name, "queue_mode") &&
1002 (argc >= 1)) {
1003 const char *queue_mode_name = dm_shift_arg(as);
1004
1005 if (!strcasecmp(queue_mode_name, "bio"))
1006 m->queue_mode = DM_TYPE_BIO_BASED;
1007 else if (!strcasecmp(queue_mode_name, "rq"))
1008 m->queue_mode = DM_TYPE_REQUEST_BASED;
1009 else if (!strcasecmp(queue_mode_name, "mq"))
1010 m->queue_mode = DM_TYPE_MQ_REQUEST_BASED;
1011 else {
1012 ti->error = "Unknown 'queue_mode' requested";
1013 r = -EINVAL;
1014 }
1015 argc--;
1016 continue;
1017 }
1018
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 ti->error = "Unrecognised multipath feature request";
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001020 r = -EINVAL;
1021 } while (argc && !r);
1022
1023 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024}
1025
Mike Snitzere83068a2016-05-24 21:16:51 -04001026static int multipath_ctr(struct dm_target *ti, unsigned argc, char **argv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027{
Mike Snitzer498f0102011-08-02 12:32:04 +01001028 /* target arguments */
1029 static struct dm_arg _args[] = {
Mike Snitzera490a072011-03-24 13:54:33 +00001030 {0, 1024, "invalid number of priority groups"},
1031 {0, 1024, "invalid initial priority group number"},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 };
1033
1034 int r;
1035 struct multipath *m;
Mike Snitzer498f0102011-08-02 12:32:04 +01001036 struct dm_arg_set as;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 unsigned pg_count = 0;
1038 unsigned next_pg_num;
1039
1040 as.argc = argc;
1041 as.argv = argv;
1042
Mike Snitzere83068a2016-05-24 21:16:51 -04001043 m = alloc_multipath(ti);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 if (!m) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001045 ti->error = "can't allocate multipath";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 return -EINVAL;
1047 }
1048
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -07001049 r = parse_features(&as, m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 if (r)
1051 goto bad;
1052
Mike Snitzere83068a2016-05-24 21:16:51 -04001053 r = alloc_multipath_stage2(ti, m);
1054 if (r)
1055 goto bad;
1056
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -07001057 r = parse_hw_handler(&as, m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 if (r)
1059 goto bad;
1060
Mike Snitzer498f0102011-08-02 12:32:04 +01001061 r = dm_read_arg(_args, &as, &m->nr_priority_groups, &ti->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 if (r)
1063 goto bad;
1064
Mike Snitzer498f0102011-08-02 12:32:04 +01001065 r = dm_read_arg(_args + 1, &as, &next_pg_num, &ti->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 if (r)
1067 goto bad;
1068
Mike Snitzera490a072011-03-24 13:54:33 +00001069 if ((!m->nr_priority_groups && next_pg_num) ||
1070 (m->nr_priority_groups && !next_pg_num)) {
1071 ti->error = "invalid initial priority group";
1072 r = -EINVAL;
1073 goto bad;
1074 }
1075
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 /* parse the priority groups */
1077 while (as.argc) {
1078 struct priority_group *pg;
Mike Snitzer91e968a2016-03-17 17:10:15 -04001079 unsigned nr_valid_paths = atomic_read(&m->nr_valid_paths);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
Micha³ Miros³aw28f16c22006-10-03 01:15:33 -07001081 pg = parse_priority_group(&as, m);
Benjamin Marzinski01460f32008-10-10 13:36:57 +01001082 if (IS_ERR(pg)) {
1083 r = PTR_ERR(pg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 goto bad;
1085 }
1086
Mike Snitzer91e968a2016-03-17 17:10:15 -04001087 nr_valid_paths += pg->nr_pgpaths;
1088 atomic_set(&m->nr_valid_paths, nr_valid_paths);
1089
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 list_add_tail(&pg->list, &m->priority_groups);
1091 pg_count++;
1092 pg->pg_num = pg_count;
1093 if (!--next_pg_num)
1094 m->next_pg = pg;
1095 }
1096
1097 if (pg_count != m->nr_priority_groups) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001098 ti->error = "priority group count mismatch";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 r = -EINVAL;
1100 goto bad;
1101 }
1102
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001103 ti->num_flush_bios = 1;
1104 ti->num_discard_bios = 1;
Mike Snitzer042bcef2013-05-10 14:37:16 +01001105 ti->num_write_same_bios = 1;
Mike Snitzere83068a2016-05-24 21:16:51 -04001106 if (m->queue_mode == DM_TYPE_BIO_BASED)
Mike Snitzerbf661be2016-05-24 15:48:08 -04001107 ti->per_io_data_size = multipath_per_bio_data_size();
Christoph Hellwigeb8db832017-01-22 18:32:46 +01001108 else
Mike Snitzer8637a6b2016-01-31 12:08:36 -05001109 ti->per_io_data_size = sizeof(struct dm_mpath_io);
Mikulas Patocka86279212009-06-22 10:12:24 +01001110
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 return 0;
1112
1113 bad:
1114 free_multipath(m);
1115 return r;
1116}
1117
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001118static void multipath_wait_for_pg_init_completion(struct multipath *m)
1119{
Bart Van Assche9f4c3f82016-08-31 15:16:43 -07001120 DEFINE_WAIT(wait);
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001121
1122 while (1) {
Bart Van Assche9f4c3f82016-08-31 15:16:43 -07001123 prepare_to_wait(&m->pg_init_wait, &wait, TASK_UNINTERRUPTIBLE);
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001124
Mike Snitzer91e968a2016-03-17 17:10:15 -04001125 if (!atomic_read(&m->pg_init_in_progress))
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001126 break;
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001127
1128 io_schedule();
1129 }
Bart Van Assche9f4c3f82016-08-31 15:16:43 -07001130 finish_wait(&m->pg_init_wait, &wait);
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001131}
1132
1133static void flush_multipath_work(struct multipath *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134{
Mike Snitzer518257b2016-03-17 16:32:10 -04001135 set_bit(MPATHF_PG_INIT_DISABLED, &m->flags);
1136 smp_mb__after_atomic();
Shiva Krishna Merla954a73d2013-10-30 03:26:38 +00001137
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001138 flush_workqueue(kmpath_handlerd);
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001139 multipath_wait_for_pg_init_completion(m);
Alasdair G Kergona044d012005-07-12 15:53:02 -07001140 flush_workqueue(kmultipathd);
Tejun Heo43829732012-08-20 14:51:24 -07001141 flush_work(&m->trigger_event);
Shiva Krishna Merla954a73d2013-10-30 03:26:38 +00001142
Mike Snitzer518257b2016-03-17 16:32:10 -04001143 clear_bit(MPATHF_PG_INIT_DISABLED, &m->flags);
1144 smp_mb__after_atomic();
Kiyoshi Ueda6df400a2009-12-10 23:52:19 +00001145}
1146
1147static void multipath_dtr(struct dm_target *ti)
1148{
1149 struct multipath *m = ti->private;
1150
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001151 flush_multipath_work(m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 free_multipath(m);
1153}
1154
1155/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 * Take a path out of use.
1157 */
1158static int fail_path(struct pgpath *pgpath)
1159{
1160 unsigned long flags;
1161 struct multipath *m = pgpath->pg->m;
1162
1163 spin_lock_irqsave(&m->lock, flags);
1164
Kiyoshi Ueda66800732008-10-10 13:36:58 +01001165 if (!pgpath->is_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 goto out;
1167
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001168 DMWARN("Failing path %s.", pgpath->path.dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
1170 pgpath->pg->ps.type->fail_path(&pgpath->pg->ps, &pgpath->path);
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001171 pgpath->is_active = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 pgpath->fail_count++;
1173
Mike Snitzer91e968a2016-03-17 17:10:15 -04001174 atomic_dec(&m->nr_valid_paths);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
1176 if (pgpath == m->current_pgpath)
1177 m->current_pgpath = NULL;
1178
Mike Andersonb15546f2007-10-19 22:48:02 +01001179 dm_path_uevent(DM_UEVENT_PATH_FAILED, m->ti,
Mike Snitzer91e968a2016-03-17 17:10:15 -04001180 pgpath->path.dev->name, atomic_read(&m->nr_valid_paths));
Mike Andersonb15546f2007-10-19 22:48:02 +01001181
Alasdair G Kergonfe9cf302009-01-06 03:05:13 +00001182 schedule_work(&m->trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183
1184out:
1185 spin_unlock_irqrestore(&m->lock, flags);
1186
1187 return 0;
1188}
1189
1190/*
1191 * Reinstate a previously-failed path
1192 */
1193static int reinstate_path(struct pgpath *pgpath)
1194{
Hannes Reinecke63d832c2014-05-26 14:45:39 +02001195 int r = 0, run_queue = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 unsigned long flags;
1197 struct multipath *m = pgpath->pg->m;
Mike Snitzer91e968a2016-03-17 17:10:15 -04001198 unsigned nr_valid_paths;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
1200 spin_lock_irqsave(&m->lock, flags);
1201
Kiyoshi Ueda66800732008-10-10 13:36:58 +01001202 if (pgpath->is_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 goto out;
1204
Mike Snitzerec31f3f2016-02-20 12:49:43 -05001205 DMWARN("Reinstating path %s.", pgpath->path.dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
1207 r = pgpath->pg->ps.type->reinstate_path(&pgpath->pg->ps, &pgpath->path);
1208 if (r)
1209 goto out;
1210
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001211 pgpath->is_active = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
Mike Snitzer91e968a2016-03-17 17:10:15 -04001213 nr_valid_paths = atomic_inc_return(&m->nr_valid_paths);
1214 if (nr_valid_paths == 1) {
Chandra Seetharamane54f77d2009-06-22 10:12:12 +01001215 m->current_pgpath = NULL;
Hannes Reinecke63d832c2014-05-26 14:45:39 +02001216 run_queue = 1;
Chandra Seetharamane54f77d2009-06-22 10:12:12 +01001217 } else if (m->hw_handler_name && (m->current_pg == pgpath->pg)) {
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +00001218 if (queue_work(kmpath_handlerd, &pgpath->activate_path.work))
Mike Snitzer91e968a2016-03-17 17:10:15 -04001219 atomic_inc(&m->pg_init_in_progress);
Chandra Seetharamane54f77d2009-06-22 10:12:12 +01001220 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
Mike Andersonb15546f2007-10-19 22:48:02 +01001222 dm_path_uevent(DM_UEVENT_PATH_REINSTATED, m->ti,
Mike Snitzer91e968a2016-03-17 17:10:15 -04001223 pgpath->path.dev->name, nr_valid_paths);
Mike Andersonb15546f2007-10-19 22:48:02 +01001224
Alasdair G Kergonfe9cf302009-01-06 03:05:13 +00001225 schedule_work(&m->trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226
1227out:
1228 spin_unlock_irqrestore(&m->lock, flags);
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001229 if (run_queue) {
Hannes Reinecke63d832c2014-05-26 14:45:39 +02001230 dm_table_run_md_queue_async(m->ti->table);
Mike Snitzer7e48c762016-09-14 10:47:03 -04001231 process_queued_io_list(m);
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001232 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
1234 return r;
1235}
1236
1237/*
1238 * Fail or reinstate all paths that match the provided struct dm_dev.
1239 */
1240static int action_dev(struct multipath *m, struct dm_dev *dev,
1241 action_fn action)
1242{
Mike Snitzer19040c02011-03-24 13:54:31 +00001243 int r = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 struct pgpath *pgpath;
1245 struct priority_group *pg;
1246
1247 list_for_each_entry(pg, &m->priority_groups, list) {
1248 list_for_each_entry(pgpath, &pg->pgpaths, list) {
1249 if (pgpath->path.dev == dev)
1250 r = action(pgpath);
1251 }
1252 }
1253
1254 return r;
1255}
1256
1257/*
1258 * Temporarily try to avoid having to use the specified PG
1259 */
1260static void bypass_pg(struct multipath *m, struct priority_group *pg,
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001261 bool bypassed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262{
1263 unsigned long flags;
1264
1265 spin_lock_irqsave(&m->lock, flags);
1266
1267 pg->bypassed = bypassed;
1268 m->current_pgpath = NULL;
1269 m->current_pg = NULL;
1270
1271 spin_unlock_irqrestore(&m->lock, flags);
1272
Alasdair G Kergonfe9cf302009-01-06 03:05:13 +00001273 schedule_work(&m->trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274}
1275
1276/*
1277 * Switch to using the specified PG from the next I/O that gets mapped
1278 */
1279static int switch_pg_num(struct multipath *m, const char *pgstr)
1280{
1281 struct priority_group *pg;
1282 unsigned pgnum;
1283 unsigned long flags;
Mikulas Patocka31998ef2012-03-28 18:41:26 +01001284 char dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
Mikulas Patocka31998ef2012-03-28 18:41:26 +01001286 if (!pgstr || (sscanf(pgstr, "%u%c", &pgnum, &dummy) != 1) || !pgnum ||
tang.junhuicc5bd922016-11-04 12:37:09 +08001287 !m->nr_priority_groups || (pgnum > m->nr_priority_groups)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 DMWARN("invalid PG number supplied to switch_pg_num");
1289 return -EINVAL;
1290 }
1291
1292 spin_lock_irqsave(&m->lock, flags);
1293 list_for_each_entry(pg, &m->priority_groups, list) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001294 pg->bypassed = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 if (--pgnum)
1296 continue;
1297
1298 m->current_pgpath = NULL;
1299 m->current_pg = NULL;
1300 m->next_pg = pg;
1301 }
1302 spin_unlock_irqrestore(&m->lock, flags);
1303
Alasdair G Kergonfe9cf302009-01-06 03:05:13 +00001304 schedule_work(&m->trigger_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 return 0;
1306}
1307
1308/*
1309 * Set/clear bypassed status of a PG.
1310 * PGs are numbered upwards from 1 in the order they were declared.
1311 */
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001312static int bypass_pg_num(struct multipath *m, const char *pgstr, bool bypassed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313{
1314 struct priority_group *pg;
1315 unsigned pgnum;
Mikulas Patocka31998ef2012-03-28 18:41:26 +01001316 char dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317
Mikulas Patocka31998ef2012-03-28 18:41:26 +01001318 if (!pgstr || (sscanf(pgstr, "%u%c", &pgnum, &dummy) != 1) || !pgnum ||
tang.junhuicc5bd922016-11-04 12:37:09 +08001319 !m->nr_priority_groups || (pgnum > m->nr_priority_groups)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 DMWARN("invalid PG number supplied to bypass_pg");
1321 return -EINVAL;
1322 }
1323
1324 list_for_each_entry(pg, &m->priority_groups, list) {
1325 if (!--pgnum)
1326 break;
1327 }
1328
1329 bypass_pg(m, pg, bypassed);
1330 return 0;
1331}
1332
1333/*
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001334 * Should we retry pg_init immediately?
1335 */
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001336static bool pg_init_limit_reached(struct multipath *m, struct pgpath *pgpath)
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001337{
1338 unsigned long flags;
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001339 bool limit_reached = false;
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001340
1341 spin_lock_irqsave(&m->lock, flags);
1342
Mike Snitzer91e968a2016-03-17 17:10:15 -04001343 if (atomic_read(&m->pg_init_count) <= m->pg_init_retries &&
1344 !test_bit(MPATHF_PG_INIT_DISABLED, &m->flags))
Mike Snitzer518257b2016-03-17 16:32:10 -04001345 set_bit(MPATHF_PG_INIT_REQUIRED, &m->flags);
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001346 else
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001347 limit_reached = true;
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001348
1349 spin_unlock_irqrestore(&m->lock, flags);
1350
1351 return limit_reached;
1352}
1353
Chandra Seetharaman3ae31f62009-10-21 09:22:46 -07001354static void pg_init_done(void *data, int errors)
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001355{
Moger, Babu83c0d5d2010-03-06 02:29:45 +00001356 struct pgpath *pgpath = data;
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001357 struct priority_group *pg = pgpath->pg;
1358 struct multipath *m = pg->m;
1359 unsigned long flags;
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001360 bool delay_retry = false;
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001361
1362 /* device or driver problems */
1363 switch (errors) {
1364 case SCSI_DH_OK:
1365 break;
1366 case SCSI_DH_NOSYS:
1367 if (!m->hw_handler_name) {
1368 errors = 0;
1369 break;
1370 }
Moger, Babuf7b934c2010-03-06 02:29:49 +00001371 DMERR("Could not failover the device: Handler scsi_dh_%s "
1372 "Error %d.", m->hw_handler_name, errors);
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001373 /*
1374 * Fail path for now, so we do not ping pong
1375 */
1376 fail_path(pgpath);
1377 break;
1378 case SCSI_DH_DEV_TEMP_BUSY:
1379 /*
1380 * Probably doing something like FW upgrade on the
1381 * controller so try the other pg.
1382 */
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001383 bypass_pg(m, pg, true);
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001384 break;
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001385 case SCSI_DH_RETRY:
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +00001386 /* Wait before retrying. */
1387 delay_retry = 1;
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001388 case SCSI_DH_IMM_RETRY:
1389 case SCSI_DH_RES_TEMP_UNAVAIL:
1390 if (pg_init_limit_reached(m, pgpath))
1391 fail_path(pgpath);
1392 errors = 0;
1393 break;
Mike Snitzerec31f3f2016-02-20 12:49:43 -05001394 case SCSI_DH_DEV_OFFLINED:
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001395 default:
1396 /*
1397 * We probably do not want to fail the path for a device
1398 * error, but this is what the old dm did. In future
1399 * patches we can do more advanced handling.
1400 */
1401 fail_path(pgpath);
1402 }
1403
1404 spin_lock_irqsave(&m->lock, flags);
1405 if (errors) {
Chandra Seetharamane54f77d2009-06-22 10:12:12 +01001406 if (pgpath == m->current_pgpath) {
1407 DMERR("Could not failover device. Error %d.", errors);
1408 m->current_pgpath = NULL;
1409 m->current_pg = NULL;
1410 }
Mike Snitzer518257b2016-03-17 16:32:10 -04001411 } else if (!test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags))
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001412 pg->bypassed = false;
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001413
Mike Snitzer91e968a2016-03-17 17:10:15 -04001414 if (atomic_dec_return(&m->pg_init_in_progress) > 0)
Kiyoshi Uedad0259bf2010-03-06 02:30:02 +00001415 /* Activations of other paths are still on going */
1416 goto out;
1417
Mike Snitzer518257b2016-03-17 16:32:10 -04001418 if (test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags)) {
1419 if (delay_retry)
1420 set_bit(MPATHF_PG_INIT_DELAY_RETRY, &m->flags);
1421 else
1422 clear_bit(MPATHF_PG_INIT_DELAY_RETRY, &m->flags);
1423
Hannes Reinecke3e9f1be2014-02-28 15:33:45 +01001424 if (__pg_init_all_paths(m))
1425 goto out;
1426 }
Mike Snitzer518257b2016-03-17 16:32:10 -04001427 clear_bit(MPATHF_QUEUE_IO, &m->flags);
Kiyoshi Uedad0259bf2010-03-06 02:30:02 +00001428
Mike Snitzer7e48c762016-09-14 10:47:03 -04001429 process_queued_io_list(m);
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001430
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001431 /*
1432 * Wake up any thread waiting to suspend.
1433 */
1434 wake_up(&m->pg_init_wait);
1435
Kiyoshi Uedad0259bf2010-03-06 02:30:02 +00001436out:
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001437 spin_unlock_irqrestore(&m->lock, flags);
1438}
1439
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001440static void activate_path(struct work_struct *work)
1441{
Chandra Seetharamane54f77d2009-06-22 10:12:12 +01001442 struct pgpath *pgpath =
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +00001443 container_of(work, struct pgpath, activate_path.work);
Mike Snitzerf10e06b2016-09-01 12:06:37 -04001444 struct request_queue *q = bdev_get_queue(pgpath->path.dev->bdev);
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001445
Mike Snitzerf10e06b2016-09-01 12:06:37 -04001446 if (pgpath->is_active && !blk_queue_dying(q))
1447 scsi_dh_activate(q, pg_init_done, pgpath);
Hannes Reinecke3a017502014-02-28 15:33:49 +01001448 else
1449 pg_init_done(pgpath, SCSI_DH_DEV_OFFLINED);
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07001450}
1451
Hannes Reinecke7e782af2013-07-01 15:16:26 +02001452static int noretry_error(int error)
1453{
1454 switch (error) {
Hannes Reinecke8ff232c2015-07-15 13:23:24 +02001455 case -EBADE:
1456 /*
1457 * EBADE signals an reservation conflict.
1458 * We shouldn't fail the path here as we can communicate with
1459 * the target. We should failover to the next path, but in
1460 * doing so we might be causing a ping-pong between paths.
1461 * So just return the reservation conflict error.
1462 */
Hannes Reinecke7e782af2013-07-01 15:16:26 +02001463 case -EOPNOTSUPP:
1464 case -EREMOTEIO:
1465 case -EILSEQ:
1466 case -ENODATA:
Jun'ichi Nomuracc9d3c32013-09-13 14:54:30 +09001467 case -ENOSPC:
Hannes Reinecke7e782af2013-07-01 15:16:26 +02001468 return 1;
1469 }
1470
1471 /* Anything else could be a path failure, so should be retried */
1472 return 0;
1473}
1474
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475/*
1476 * end_io handling
1477 */
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001478static int do_end_io(struct multipath *m, struct request *clone,
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001479 int error, struct dm_mpath_io *mpio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480{
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001481 /*
1482 * We don't queue any clone request inside the multipath target
1483 * during end I/O handling, since those clone requests don't have
1484 * bio clones. If we queue them inside the multipath target,
1485 * we need to make bio clones, that requires memory allocation.
Mike Snitzer4cc96132016-05-12 16:28:10 -04001486 * (See drivers/md/dm-rq.c:end_clone_bio() about why the clone requests
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001487 * don't have bio clones.)
1488 * Instead of queueing the clone request here, we queue the original
1489 * request into dm core, which will remake a clone request and
1490 * clone bios for it and resubmit it later.
1491 */
1492 int r = DM_ENDIO_REQUEUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001494 if (!error && !clone->errors)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 return 0; /* I/O complete */
1496
Mike Snitzer7eee4ae2014-06-02 15:50:06 -04001497 if (noretry_error(error))
Mike Snitzer959eb4e2010-08-12 04:14:32 +01001498 return error;
1499
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001500 if (mpio->pgpath)
1501 fail_path(mpio->pgpath);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502
Mike Snitzer91e968a2016-03-17 17:10:15 -04001503 if (!atomic_read(&m->nr_valid_paths)) {
Mike Snitzer518257b2016-03-17 16:32:10 -04001504 if (!test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags)) {
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001505 if (!must_push_back_rq(m))
Hannes Reinecke751b2a72011-01-18 10:13:12 +01001506 r = -EIO;
Hannes Reinecke751b2a72011-01-18 10:13:12 +01001507 }
1508 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001510 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511}
1512
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001513static int multipath_end_io(struct dm_target *ti, struct request *clone,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 int error, union map_info *map_context)
1515{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001516 struct multipath *m = ti->private;
Mike Snitzer2eff1922016-02-03 09:13:14 -05001517 struct dm_mpath_io *mpio = get_mpio(map_context);
Wei Yongjuna71a2612012-10-12 16:59:42 +01001518 struct pgpath *pgpath;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 struct path_selector *ps;
1520 int r;
1521
Jun'ichi Nomura466891f2012-03-28 18:41:25 +01001522 BUG_ON(!mpio);
1523
Mike Snitzer2eff1922016-02-03 09:13:14 -05001524 r = do_end_io(m, clone, error, mpio);
Wei Yongjuna71a2612012-10-12 16:59:42 +01001525 pgpath = mpio->pgpath;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 if (pgpath) {
1527 ps = &pgpath->pg->ps;
1528 if (ps->type->end_io)
Kiyoshi Ueda02ab8232009-06-22 10:12:27 +01001529 ps->type->end_io(ps, &pgpath->path, mpio->nr_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
1532 return r;
1533}
1534
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001535static int do_end_io_bio(struct multipath *m, struct bio *clone,
1536 int error, struct dm_mpath_io *mpio)
1537{
1538 unsigned long flags;
1539
1540 if (!error)
1541 return 0; /* I/O complete */
1542
1543 if (noretry_error(error))
1544 return error;
1545
1546 if (mpio->pgpath)
1547 fail_path(mpio->pgpath);
1548
1549 if (!atomic_read(&m->nr_valid_paths)) {
1550 if (!test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags)) {
1551 if (!must_push_back_bio(m))
1552 return -EIO;
1553 return DM_ENDIO_REQUEUE;
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001554 }
1555 }
1556
1557 /* Queue for the daemon to resubmit */
Mike Snitzerbf661be2016-05-24 15:48:08 -04001558 dm_bio_restore(get_bio_details_from_bio(clone), clone);
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001559
1560 spin_lock_irqsave(&m->lock, flags);
1561 bio_list_add(&m->queued_bios, clone);
1562 spin_unlock_irqrestore(&m->lock, flags);
1563 if (!test_bit(MPATHF_QUEUE_IO, &m->flags))
1564 queue_work(kmultipathd, &m->process_queued_bios);
1565
1566 return DM_ENDIO_INCOMPLETE;
1567}
1568
1569static int multipath_end_io_bio(struct dm_target *ti, struct bio *clone, int error)
1570{
1571 struct multipath *m = ti->private;
1572 struct dm_mpath_io *mpio = get_mpio_from_bio(clone);
1573 struct pgpath *pgpath;
1574 struct path_selector *ps;
1575 int r;
1576
1577 BUG_ON(!mpio);
1578
1579 r = do_end_io_bio(m, clone, error, mpio);
1580 pgpath = mpio->pgpath;
1581 if (pgpath) {
1582 ps = &pgpath->pg->ps;
1583 if (ps->type->end_io)
1584 ps->type->end_io(ps, &pgpath->path, mpio->nr_bytes);
1585 }
1586
1587 return r;
1588}
1589
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590/*
1591 * Suspend can't complete until all the I/O is processed so if
Alasdair G Kergon436d4102005-07-12 15:53:03 -07001592 * the last path fails we must error any remaining I/O.
1593 * Note that if the freeze_bdev fails while suspending, the
1594 * queue_if_no_path state is lost - userspace should reset it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 */
1596static void multipath_presuspend(struct dm_target *ti)
1597{
Mike Snitzer7943bd62016-02-02 21:53:15 -05001598 struct multipath *m = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001600 queue_if_no_path(m, false, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601}
1602
Kiyoshi Ueda6df400a2009-12-10 23:52:19 +00001603static void multipath_postsuspend(struct dm_target *ti)
1604{
Mike Anderson6380f262009-12-10 23:52:21 +00001605 struct multipath *m = ti->private;
1606
1607 mutex_lock(&m->work_mutex);
Kiyoshi Ueda2bded7b2010-03-06 02:32:13 +00001608 flush_multipath_work(m);
Mike Anderson6380f262009-12-10 23:52:21 +00001609 mutex_unlock(&m->work_mutex);
Kiyoshi Ueda6df400a2009-12-10 23:52:19 +00001610}
1611
Alasdair G Kergon436d4102005-07-12 15:53:03 -07001612/*
1613 * Restore the queue_if_no_path setting.
1614 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615static void multipath_resume(struct dm_target *ti)
1616{
Mike Snitzer7943bd62016-02-02 21:53:15 -05001617 struct multipath *m = ti->private;
Mike Snitzer1814f2e2016-07-25 21:08:51 -04001618 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619
Mike Snitzer1814f2e2016-07-25 21:08:51 -04001620 spin_lock_irqsave(&m->lock, flags);
Mike Snitzer518257b2016-03-17 16:32:10 -04001621 if (test_bit(MPATHF_SAVED_QUEUE_IF_NO_PATH, &m->flags))
1622 set_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags);
1623 else
1624 clear_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags);
Mike Snitzer1814f2e2016-07-25 21:08:51 -04001625 spin_unlock_irqrestore(&m->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626}
1627
1628/*
1629 * Info output has the following format:
1630 * num_multipath_feature_args [multipath_feature_args]*
1631 * num_handler_status_args [handler_status_args]*
1632 * num_groups init_group_number
1633 * [A|D|E num_ps_status_args [ps_status_args]*
1634 * num_paths num_selector_args
1635 * [path_dev A|F fail_count [selector_args]* ]+ ]+
1636 *
1637 * Table output has the following format (identical to the constructor string):
1638 * num_feature_args [features_args]*
1639 * num_handler_args hw_handler [hw_handler_args]*
1640 * num_groups init_group_number
1641 * [priority selector-name num_ps_args [ps_args]*
1642 * num_paths num_selector_args [path_dev [selector_args]* ]+ ]+
1643 */
Mikulas Patockafd7c0922013-03-01 22:45:44 +00001644static void multipath_status(struct dm_target *ti, status_type_t type,
1645 unsigned status_flags, char *result, unsigned maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646{
1647 int sz = 0;
1648 unsigned long flags;
Mike Snitzer7943bd62016-02-02 21:53:15 -05001649 struct multipath *m = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 struct priority_group *pg;
1651 struct pgpath *p;
1652 unsigned pg_num;
1653 char state;
1654
1655 spin_lock_irqsave(&m->lock, flags);
1656
1657 /* Features */
1658 if (type == STATUSTYPE_INFO)
Mike Snitzer91e968a2016-03-17 17:10:15 -04001659 DMEMIT("2 %u %u ", test_bit(MPATHF_QUEUE_IO, &m->flags),
1660 atomic_read(&m->pg_init_count));
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001661 else {
Mike Snitzer518257b2016-03-17 16:32:10 -04001662 DMEMIT("%u ", test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags) +
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +00001663 (m->pg_init_retries > 0) * 2 +
Mike Snitzera58a9352012-07-27 15:08:04 +01001664 (m->pg_init_delay_msecs != DM_PG_INIT_DELAY_DEFAULT) * 2 +
Mike Snitzere83068a2016-05-24 21:16:51 -04001665 test_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags) +
1666 (m->queue_mode != DM_TYPE_REQUEST_BASED) * 2);
1667
Mike Snitzer518257b2016-03-17 16:32:10 -04001668 if (test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001669 DMEMIT("queue_if_no_path ");
1670 if (m->pg_init_retries)
1671 DMEMIT("pg_init_retries %u ", m->pg_init_retries);
Chandra Seetharaman4e2d19e2011-01-13 20:00:01 +00001672 if (m->pg_init_delay_msecs != DM_PG_INIT_DELAY_DEFAULT)
1673 DMEMIT("pg_init_delay_msecs %u ", m->pg_init_delay_msecs);
Mike Snitzer518257b2016-03-17 16:32:10 -04001674 if (test_bit(MPATHF_RETAIN_ATTACHED_HW_HANDLER, &m->flags))
Mike Snitzera58a9352012-07-27 15:08:04 +01001675 DMEMIT("retain_attached_hw_handler ");
Mike Snitzere83068a2016-05-24 21:16:51 -04001676 if (m->queue_mode != DM_TYPE_REQUEST_BASED) {
1677 switch(m->queue_mode) {
1678 case DM_TYPE_BIO_BASED:
1679 DMEMIT("queue_mode bio ");
1680 break;
1681 case DM_TYPE_MQ_REQUEST_BASED:
1682 DMEMIT("queue_mode mq ");
1683 break;
1684 }
1685 }
Dave Wysochanskic9e45582007-10-19 22:47:53 +01001686 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001688 if (!m->hw_handler_name || type == STATUSTYPE_INFO)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 DMEMIT("0 ");
1690 else
Chandra Seetharamancfae5c92008-05-01 14:50:11 -07001691 DMEMIT("1 %s ", m->hw_handler_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692
1693 DMEMIT("%u ", m->nr_priority_groups);
1694
1695 if (m->next_pg)
1696 pg_num = m->next_pg->pg_num;
1697 else if (m->current_pg)
1698 pg_num = m->current_pg->pg_num;
1699 else
Mike Snitzera490a072011-03-24 13:54:33 +00001700 pg_num = (m->nr_priority_groups ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701
1702 DMEMIT("%u ", pg_num);
1703
1704 switch (type) {
1705 case STATUSTYPE_INFO:
1706 list_for_each_entry(pg, &m->priority_groups, list) {
1707 if (pg->bypassed)
1708 state = 'D'; /* Disabled */
1709 else if (pg == m->current_pg)
1710 state = 'A'; /* Currently Active */
1711 else
1712 state = 'E'; /* Enabled */
1713
1714 DMEMIT("%c ", state);
1715
1716 if (pg->ps.type->status)
1717 sz += pg->ps.type->status(&pg->ps, NULL, type,
1718 result + sz,
1719 maxlen - sz);
1720 else
1721 DMEMIT("0 ");
1722
1723 DMEMIT("%u %u ", pg->nr_pgpaths,
1724 pg->ps.type->info_args);
1725
1726 list_for_each_entry(p, &pg->pgpaths, list) {
1727 DMEMIT("%s %s %u ", p->path.dev->name,
Kiyoshi Ueda66800732008-10-10 13:36:58 +01001728 p->is_active ? "A" : "F",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 p->fail_count);
1730 if (pg->ps.type->status)
1731 sz += pg->ps.type->status(&pg->ps,
1732 &p->path, type, result + sz,
1733 maxlen - sz);
1734 }
1735 }
1736 break;
1737
1738 case STATUSTYPE_TABLE:
1739 list_for_each_entry(pg, &m->priority_groups, list) {
1740 DMEMIT("%s ", pg->ps.type->name);
1741
1742 if (pg->ps.type->status)
1743 sz += pg->ps.type->status(&pg->ps, NULL, type,
1744 result + sz,
1745 maxlen - sz);
1746 else
1747 DMEMIT("0 ");
1748
1749 DMEMIT("%u %u ", pg->nr_pgpaths,
1750 pg->ps.type->table_args);
1751
1752 list_for_each_entry(p, &pg->pgpaths, list) {
1753 DMEMIT("%s ", p->path.dev->name);
1754 if (pg->ps.type->status)
1755 sz += pg->ps.type->status(&pg->ps,
1756 &p->path, type, result + sz,
1757 maxlen - sz);
1758 }
1759 }
1760 break;
1761 }
1762
1763 spin_unlock_irqrestore(&m->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764}
1765
1766static int multipath_message(struct dm_target *ti, unsigned argc, char **argv)
1767{
Mike Anderson6380f262009-12-10 23:52:21 +00001768 int r = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 struct dm_dev *dev;
Mike Snitzer7943bd62016-02-02 21:53:15 -05001770 struct multipath *m = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 action_fn action;
1772
Mike Anderson6380f262009-12-10 23:52:21 +00001773 mutex_lock(&m->work_mutex);
1774
Kiyoshi Uedac2f3d242009-12-10 23:52:27 +00001775 if (dm_suspended(ti)) {
1776 r = -EBUSY;
1777 goto out;
1778 }
1779
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 if (argc == 1) {
Mike Snitzer498f0102011-08-02 12:32:04 +01001781 if (!strcasecmp(argv[0], "queue_if_no_path")) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001782 r = queue_if_no_path(m, true, false);
Mike Anderson6380f262009-12-10 23:52:21 +00001783 goto out;
Mike Snitzer498f0102011-08-02 12:32:04 +01001784 } else if (!strcasecmp(argv[0], "fail_if_no_path")) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001785 r = queue_if_no_path(m, false, false);
Mike Anderson6380f262009-12-10 23:52:21 +00001786 goto out;
1787 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 }
1789
Mike Anderson6380f262009-12-10 23:52:21 +00001790 if (argc != 2) {
Jose Castilloa356e422014-01-29 17:52:45 +01001791 DMWARN("Invalid multipath message arguments. Expected 2 arguments, got %d.", argc);
Mike Anderson6380f262009-12-10 23:52:21 +00001792 goto out;
1793 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794
Mike Snitzer498f0102011-08-02 12:32:04 +01001795 if (!strcasecmp(argv[0], "disable_group")) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001796 r = bypass_pg_num(m, argv[1], true);
Mike Anderson6380f262009-12-10 23:52:21 +00001797 goto out;
Mike Snitzer498f0102011-08-02 12:32:04 +01001798 } else if (!strcasecmp(argv[0], "enable_group")) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001799 r = bypass_pg_num(m, argv[1], false);
Mike Anderson6380f262009-12-10 23:52:21 +00001800 goto out;
Mike Snitzer498f0102011-08-02 12:32:04 +01001801 } else if (!strcasecmp(argv[0], "switch_group")) {
Mike Anderson6380f262009-12-10 23:52:21 +00001802 r = switch_pg_num(m, argv[1]);
1803 goto out;
Mike Snitzer498f0102011-08-02 12:32:04 +01001804 } else if (!strcasecmp(argv[0], "reinstate_path"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 action = reinstate_path;
Mike Snitzer498f0102011-08-02 12:32:04 +01001806 else if (!strcasecmp(argv[0], "fail_path"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 action = fail_path;
Mike Anderson6380f262009-12-10 23:52:21 +00001808 else {
Jose Castilloa356e422014-01-29 17:52:45 +01001809 DMWARN("Unrecognised multipath message received: %s", argv[0]);
Mike Anderson6380f262009-12-10 23:52:21 +00001810 goto out;
1811 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812
Nikanth Karthikesan8215d6e2010-03-06 02:32:27 +00001813 r = dm_get_device(ti, argv[1], dm_table_get_mode(ti->table), &dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 if (r) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001815 DMWARN("message: error getting device %s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 argv[1]);
Mike Anderson6380f262009-12-10 23:52:21 +00001817 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 }
1819
1820 r = action_dev(m, dev, action);
1821
1822 dm_put_device(ti, dev);
1823
Mike Anderson6380f262009-12-10 23:52:21 +00001824out:
1825 mutex_unlock(&m->work_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827}
1828
Christoph Hellwige56f81e2015-10-15 14:10:50 +02001829static int multipath_prepare_ioctl(struct dm_target *ti,
1830 struct block_device **bdev, fmode_t *mode)
Milan Broz9af4aa32006-10-03 01:15:20 -07001831{
Mikulas Patocka35991652012-06-03 00:29:58 +01001832 struct multipath *m = ti->private;
Mike Snitzer2da16102016-03-17 18:38:17 -04001833 struct pgpath *current_pgpath;
Mikulas Patocka35991652012-06-03 00:29:58 +01001834 int r;
1835
Mike Snitzer2da16102016-03-17 18:38:17 -04001836 current_pgpath = lockless_dereference(m->current_pgpath);
1837 if (!current_pgpath)
1838 current_pgpath = choose_pgpath(m, 0);
Milan Broz9af4aa32006-10-03 01:15:20 -07001839
Mike Snitzer2da16102016-03-17 18:38:17 -04001840 if (current_pgpath) {
Mike Snitzer518257b2016-03-17 16:32:10 -04001841 if (!test_bit(MPATHF_QUEUE_IO, &m->flags)) {
Mike Snitzer2da16102016-03-17 18:38:17 -04001842 *bdev = current_pgpath->path.dev->bdev;
1843 *mode = current_pgpath->path.dev->mode;
Junichi Nomura43e43c92015-11-17 09:36:56 +00001844 r = 0;
1845 } else {
1846 /* pg_init has not started or completed */
1847 r = -ENOTCONN;
1848 }
1849 } else {
1850 /* No path is available */
Mike Snitzer518257b2016-03-17 16:32:10 -04001851 if (test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))
Junichi Nomura43e43c92015-11-17 09:36:56 +00001852 r = -ENOTCONN;
1853 else
1854 r = -EIO;
Milan Broze90dae12006-10-03 01:15:22 -07001855 }
Milan Broz9af4aa32006-10-03 01:15:20 -07001856
Junichi Nomura5bbbfdf2015-11-17 09:39:26 +00001857 if (r == -ENOTCONN) {
Mike Snitzer2da16102016-03-17 18:38:17 -04001858 if (!lockless_dereference(m->current_pg)) {
Hannes Reinecke3e9f1be2014-02-28 15:33:45 +01001859 /* Path status changed, redo selection */
Mike Snitzer2da16102016-03-17 18:38:17 -04001860 (void) choose_pgpath(m, 0);
Hannes Reinecke3e9f1be2014-02-28 15:33:45 +01001861 }
Mike Snitzer518257b2016-03-17 16:32:10 -04001862 if (test_bit(MPATHF_PG_INIT_REQUIRED, &m->flags))
Mike Snitzer2da16102016-03-17 18:38:17 -04001863 pg_init_all_paths(m);
Hannes Reinecke63d832c2014-05-26 14:45:39 +02001864 dm_table_run_md_queue_async(m->ti->table);
Mike Snitzer7e48c762016-09-14 10:47:03 -04001865 process_queued_io_list(m);
Hannes Reinecke3e9f1be2014-02-28 15:33:45 +01001866 }
Mikulas Patocka35991652012-06-03 00:29:58 +01001867
Christoph Hellwige56f81e2015-10-15 14:10:50 +02001868 /*
1869 * Only pass ioctls through if the device sizes match exactly.
1870 */
1871 if (!r && ti->len != i_size_read((*bdev)->bd_inode) >> SECTOR_SHIFT)
1872 return 1;
1873 return r;
Milan Broz9af4aa32006-10-03 01:15:20 -07001874}
1875
Mike Snitzeraf4874e2009-06-22 10:12:33 +01001876static int multipath_iterate_devices(struct dm_target *ti,
1877 iterate_devices_callout_fn fn, void *data)
1878{
1879 struct multipath *m = ti->private;
1880 struct priority_group *pg;
1881 struct pgpath *p;
1882 int ret = 0;
1883
1884 list_for_each_entry(pg, &m->priority_groups, list) {
1885 list_for_each_entry(p, &pg->pgpaths, list) {
Mike Snitzer5dea2712009-07-23 20:30:42 +01001886 ret = fn(ti, p->path.dev, ti->begin, ti->len, data);
Mike Snitzeraf4874e2009-06-22 10:12:33 +01001887 if (ret)
1888 goto out;
1889 }
1890 }
1891
1892out:
1893 return ret;
1894}
1895
Mike Snitzer9f54cec2016-02-11 21:42:28 -05001896static int pgpath_busy(struct pgpath *pgpath)
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001897{
1898 struct request_queue *q = bdev_get_queue(pgpath->path.dev->bdev);
1899
Mike Snitzer52b09912015-02-23 16:36:41 -05001900 return blk_lld_busy(q);
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001901}
1902
1903/*
1904 * We return "busy", only when we can map I/Os but underlying devices
1905 * are busy (so even if we map I/Os now, the I/Os will wait on
1906 * the underlying queue).
1907 * In other words, if we want to kill I/Os or queue them inside us
1908 * due to map unavailability, we don't return "busy". Otherwise,
1909 * dm core won't give us the I/Os and we can't do what we want.
1910 */
1911static int multipath_busy(struct dm_target *ti)
1912{
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001913 bool busy = false, has_active = false;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001914 struct multipath *m = ti->private;
Mike Snitzer2da16102016-03-17 18:38:17 -04001915 struct priority_group *pg, *next_pg;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001916 struct pgpath *pgpath;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001917
Mike Snitzerb88efd42016-09-09 19:26:19 -04001918 /* pg_init in progress */
1919 if (atomic_read(&m->pg_init_in_progress))
Mike Snitzer2da16102016-03-17 18:38:17 -04001920 return true;
1921
Mike Snitzerb88efd42016-09-09 19:26:19 -04001922 /* no paths available, for blk-mq: rely on IO mapping to delay requeue */
1923 if (!atomic_read(&m->nr_valid_paths) && test_bit(MPATHF_QUEUE_IF_NO_PATH, &m->flags))
1924 return (m->queue_mode != DM_TYPE_MQ_REQUEST_BASED);
1925
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001926 /* Guess which priority_group will be used at next mapping time */
Mike Snitzer2da16102016-03-17 18:38:17 -04001927 pg = lockless_dereference(m->current_pg);
1928 next_pg = lockless_dereference(m->next_pg);
1929 if (unlikely(!lockless_dereference(m->current_pgpath) && next_pg))
1930 pg = next_pg;
1931
1932 if (!pg) {
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001933 /*
1934 * We don't know which pg will be used at next mapping time.
Mike Snitzer2da16102016-03-17 18:38:17 -04001935 * We don't call choose_pgpath() here to avoid to trigger
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001936 * pg_init just by busy checking.
1937 * So we don't know whether underlying devices we will be using
1938 * at next mapping time are busy or not. Just try mapping.
1939 */
Mike Snitzer2da16102016-03-17 18:38:17 -04001940 return busy;
1941 }
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001942
1943 /*
1944 * If there is one non-busy active path at least, the path selector
1945 * will be able to select it. So we consider such a pg as not busy.
1946 */
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001947 busy = true;
Mike Snitzer2da16102016-03-17 18:38:17 -04001948 list_for_each_entry(pgpath, &pg->pgpaths, list) {
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001949 if (pgpath->is_active) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001950 has_active = true;
Mike Snitzer9f54cec2016-02-11 21:42:28 -05001951 if (!pgpath_busy(pgpath)) {
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001952 busy = false;
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001953 break;
1954 }
1955 }
Mike Snitzer2da16102016-03-17 18:38:17 -04001956 }
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001957
Mike Snitzer2da16102016-03-17 18:38:17 -04001958 if (!has_active) {
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001959 /*
1960 * No active path in this pg, so this pg won't be used and
1961 * the current_pg will be changed at next mapping time.
1962 * We need to try mapping to determine it.
1963 */
Mike Snitzerbe7d31c2016-02-10 13:02:21 -05001964 busy = false;
Mike Snitzer2da16102016-03-17 18:38:17 -04001965 }
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001966
1967 return busy;
1968}
1969
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970/*-----------------------------------------------------------------
1971 * Module setup
1972 *---------------------------------------------------------------*/
1973static struct target_type multipath_target = {
1974 .name = "multipath",
Mike Snitzere83068a2016-05-24 21:16:51 -04001975 .version = {1, 12, 0},
Mike Snitzer16f12262016-01-31 17:22:27 -05001976 .features = DM_TARGET_SINGLETON | DM_TARGET_IMMUTABLE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 .module = THIS_MODULE,
1978 .ctr = multipath_ctr,
1979 .dtr = multipath_dtr,
Mike Snitzere5863d92014-12-17 21:08:12 -05001980 .clone_and_map_rq = multipath_clone_and_map,
1981 .release_clone_rq = multipath_release_clone,
Kiyoshi Uedaf40c67f2009-06-22 10:12:37 +01001982 .rq_end_io = multipath_end_io,
Mike Snitzer76e33fe2016-05-19 16:15:14 -04001983 .map = multipath_map_bio,
1984 .end_io = multipath_end_io_bio,
1985 .presuspend = multipath_presuspend,
1986 .postsuspend = multipath_postsuspend,
1987 .resume = multipath_resume,
1988 .status = multipath_status,
1989 .message = multipath_message,
1990 .prepare_ioctl = multipath_prepare_ioctl,
1991 .iterate_devices = multipath_iterate_devices,
1992 .busy = multipath_busy,
1993};
1994
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995static int __init dm_multipath_init(void)
1996{
1997 int r;
1998
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 r = dm_register_target(&multipath_target);
2000 if (r < 0) {
Mike Snitzer76e33fe2016-05-19 16:15:14 -04002001 DMERR("request-based register failed %d", r);
Johannes Thumshirnff658e92015-01-11 12:45:23 +01002002 r = -EINVAL;
2003 goto bad_register_target;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 }
2005
Tejun Heo4d4d66a2011-01-13 19:59:57 +00002006 kmultipathd = alloc_workqueue("kmpathd", WQ_MEM_RECLAIM, 0);
Alasdair G Kergonc5573082005-05-05 16:16:07 -07002007 if (!kmultipathd) {
Alasdair G Kergon0cd33122007-07-12 17:27:01 +01002008 DMERR("failed to create workqueue kmpathd");
Johannes Thumshirnff658e92015-01-11 12:45:23 +01002009 r = -ENOMEM;
2010 goto bad_alloc_kmultipathd;
Alasdair G Kergonc5573082005-05-05 16:16:07 -07002011 }
2012
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07002013 /*
2014 * A separate workqueue is used to handle the device handlers
2015 * to avoid overloading existing workqueue. Overloading the
2016 * old workqueue would also create a bottleneck in the
2017 * path of the storage hardware device activation.
2018 */
Tejun Heo4d4d66a2011-01-13 19:59:57 +00002019 kmpath_handlerd = alloc_ordered_workqueue("kmpath_handlerd",
2020 WQ_MEM_RECLAIM);
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07002021 if (!kmpath_handlerd) {
2022 DMERR("failed to create workqueue kmpath_handlerd");
Johannes Thumshirnff658e92015-01-11 12:45:23 +01002023 r = -ENOMEM;
2024 goto bad_alloc_kmpath_handlerd;
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07002025 }
2026
Johannes Thumshirnff658e92015-01-11 12:45:23 +01002027 return 0;
2028
2029bad_alloc_kmpath_handlerd:
2030 destroy_workqueue(kmultipathd);
2031bad_alloc_kmultipathd:
2032 dm_unregister_target(&multipath_target);
2033bad_register_target:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 return r;
2035}
2036
2037static void __exit dm_multipath_exit(void)
2038{
Chandra Seetharamanbab7cfc2008-05-01 14:50:22 -07002039 destroy_workqueue(kmpath_handlerd);
Alasdair G Kergonc5573082005-05-05 16:16:07 -07002040 destroy_workqueue(kmultipathd);
2041
Mikulas Patocka10d3bd02009-01-06 03:04:58 +00002042 dm_unregister_target(&multipath_target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043}
2044
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045module_init(dm_multipath_init);
2046module_exit(dm_multipath_exit);
2047
2048MODULE_DESCRIPTION(DM_NAME " multipath target");
2049MODULE_AUTHOR("Sistina Software <dm-devel@redhat.com>");
2050MODULE_LICENSE("GPL");