blob: 1b5c6047e4f19882fbbe9facbc29aeee54dc8723 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2001, 2002 Sistina Software (UK) Limited.
Milan Broz784aae72009-01-06 03:05:12 +00003 * Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * This file is released under the GPL.
6 */
7
8#include "dm.h"
Mike Anderson51e5b2b2007-10-19 22:48:00 +01009#include "dm-uevent.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
11#include <linux/init.h>
12#include <linux/module.h>
Arjan van de Ven48c9c272006-03-27 01:18:20 -080013#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/moduleparam.h>
15#include <linux/blkpg.h>
16#include <linux/bio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/mempool.h>
18#include <linux/slab.h>
19#include <linux/idr.h>
Darrick J. Wong3ac51e72006-03-27 01:17:54 -080020#include <linux/hdreg.h>
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +010021#include <linux/delay.h>
Mike Snitzerffcc3932014-10-28 18:34:52 -040022#include <linux/wait.h>
Keith Busch2eb6e1e2014-10-17 17:46:36 -060023#include <linux/kthread.h>
Mike Snitzer0ce65792015-02-26 00:50:28 -050024#include <linux/ktime.h>
Mike Snitzerde3ec862015-02-24 21:58:21 -050025#include <linux/elevator.h> /* for rq_end_sector() */
Mike Snitzerbfebd1c2015-03-08 00:51:47 -050026#include <linux/blk-mq.h>
Li Zefan55782132009-06-09 13:43:05 +080027
28#include <trace/events/block.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Alasdair G Kergon72d94862006-06-26 00:27:35 -070030#define DM_MSG_PREFIX "core"
31
Namhyung Kim71a16732011-10-31 20:18:54 +000032#ifdef CONFIG_PRINTK
33/*
34 * ratelimit state to be used in DMXXX_LIMIT().
35 */
36DEFINE_RATELIMIT_STATE(dm_ratelimit_state,
37 DEFAULT_RATELIMIT_INTERVAL,
38 DEFAULT_RATELIMIT_BURST);
39EXPORT_SYMBOL(dm_ratelimit_state);
40#endif
41
Milan Broz60935eb2009-06-22 10:12:30 +010042/*
43 * Cookies are numeric values sent with CHANGE and REMOVE
44 * uevents while resuming, removing or renaming the device.
45 */
46#define DM_COOKIE_ENV_VAR_NAME "DM_COOKIE"
47#define DM_COOKIE_LENGTH 24
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049static const char *_name = DM_NAME;
50
51static unsigned int major = 0;
52static unsigned int _major = 0;
53
Alasdair G Kergond15b7742011-08-02 12:32:01 +010054static DEFINE_IDR(_minor_idr);
55
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -070056static DEFINE_SPINLOCK(_minor_lock);
Mikulas Patocka2c140a22013-11-01 18:27:41 -040057
58static void do_deferred_remove(struct work_struct *w);
59
60static DECLARE_WORK(deferred_remove_work, do_deferred_remove);
61
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -040062static struct workqueue_struct *deferred_remove_workqueue;
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064/*
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000065 * For bio-based dm.
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 * One of these is allocated per bio.
67 */
68struct dm_io {
69 struct mapped_device *md;
70 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 atomic_t io_count;
Richard Kennedy6ae2fa62008-07-21 12:00:28 +010072 struct bio *bio;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -080073 unsigned long start_time;
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +010074 spinlock_t endio_lock;
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -040075 struct dm_stats_aux stats_aux;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076};
77
78/*
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000079 * For request-based dm.
80 * One of these is allocated per request.
81 */
82struct dm_rq_target_io {
83 struct mapped_device *md;
84 struct dm_target *ti;
Mike Snitzer1ae49ea2014-12-05 17:11:05 -050085 struct request *orig, *clone;
Keith Busch2eb6e1e2014-10-17 17:46:36 -060086 struct kthread_work work;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000087 int error;
88 union map_info info;
Mikulas Patockae262f342015-06-09 17:22:49 -040089 struct dm_stats_aux stats_aux;
90 unsigned long duration_jiffies;
91 unsigned n_sectors;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000092};
93
94/*
Kent Overstreet94818742012-09-07 13:44:01 -070095 * For request-based dm - the bio clones we allocate are embedded in these
96 * structs.
97 *
98 * We allocate these with bio_alloc_bioset, using the front_pad parameter when
99 * the bioset is created - this means the bio has to come at the end of the
100 * struct.
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000101 */
102struct dm_rq_clone_bio_info {
103 struct bio *orig;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100104 struct dm_rq_target_io *tio;
Kent Overstreet94818742012-09-07 13:44:01 -0700105 struct bio clone;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000106};
107
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100108union map_info *dm_get_rq_mapinfo(struct request *rq)
109{
110 if (rq && rq->end_io_data)
111 return &((struct dm_rq_target_io *)rq->end_io_data)->info;
112 return NULL;
113}
114EXPORT_SYMBOL_GPL(dm_get_rq_mapinfo);
115
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -0700116#define MINOR_ALLOCED ((void *)-1)
117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118/*
119 * Bits for the md->flags field.
120 */
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +0100121#define DMF_BLOCK_IO_FOR_SUSPEND 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122#define DMF_SUSPENDED 1
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -0800123#define DMF_FROZEN 2
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700124#define DMF_FREEING 3
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700125#define DMF_DELETING 4
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800126#define DMF_NOFLUSH_SUSPENDING 5
Kent Overstreet8ae12662015-04-27 23:48:34 -0700127#define DMF_DEFERRED_REMOVE 6
128#define DMF_SUSPENDED_INTERNALLY 7
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Milan Broz304f3f62008-02-08 02:11:17 +0000130/*
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100131 * A dummy definition to make RCU happy.
132 * struct dm_table should never be dereferenced in this file.
133 */
134struct dm_table {
135 int undefined__;
136};
137
138/*
Milan Broz304f3f62008-02-08 02:11:17 +0000139 * Work processed by per-device workqueue.
140 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141struct mapped_device {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100142 struct srcu_struct io_barrier;
Daniel Walkere61290a2008-02-08 02:10:08 +0000143 struct mutex suspend_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 atomic_t holders;
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700145 atomic_t open_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Mikulas Patocka2a7faeb2013-07-10 23:41:18 +0100147 /*
148 * The current mapping.
149 * Use dm_get_live_table{_fast} or take suspend_lock for
150 * dereference.
151 */
Pranith Kumar6fa99522014-10-28 15:09:57 -0700152 struct dm_table __rcu *map;
Mikulas Patocka2a7faeb2013-07-10 23:41:18 +0100153
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500154 struct list_head table_devices;
155 struct mutex table_devices_lock;
156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 unsigned long flags;
158
Jens Axboe165125e2007-07-24 09:28:11 +0200159 struct request_queue *queue;
Mike Snitzera5664da2010-08-12 04:14:01 +0100160 unsigned type;
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +0100161 /* Protect queue and type against concurrent access. */
Mike Snitzera5664da2010-08-12 04:14:01 +0100162 struct mutex type_lock;
163
Alasdair G Kergon36a04562011-10-31 20:19:04 +0000164 struct target_type *immutable_target_type;
165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 struct gendisk *disk;
Mike Anderson7e51f252006-03-27 01:17:52 -0800167 char name[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169 void *interface_ptr;
170
171 /*
172 * A list of ios that arrived while we were suspended.
173 */
Nikanth Karthikesan316d3152009-10-06 20:16:55 +0200174 atomic_t pending[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 wait_queue_head_t wait;
Mikulas Patocka53d59142009-04-02 19:55:37 +0100176 struct work_struct work;
Kiyoshi Ueda74859362006-12-08 02:41:02 -0800177 struct bio_list deferred;
Mikulas Patocka022c2612009-04-02 19:55:39 +0100178 spinlock_t deferred_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
180 /*
Tejun Heo29e40132010-09-08 18:07:00 +0200181 * Processing queue (flush)
Milan Broz304f3f62008-02-08 02:11:17 +0000182 */
183 struct workqueue_struct *wq;
184
185 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 * io objects are allocated from here.
187 */
188 mempool_t *io_pool;
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500189 mempool_t *rq_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Stefan Bader9faf4002006-10-03 01:15:41 -0700191 struct bio_set *bs;
192
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 /*
194 * Event handling.
195 */
196 atomic_t event_nr;
197 wait_queue_head_t eventq;
Mike Anderson7a8c3d32007-10-19 22:48:01 +0100198 atomic_t uevent_seq;
199 struct list_head uevent_list;
200 spinlock_t uevent_lock; /* Protect access to uevent_list */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
202 /*
203 * freeze/thaw support require holding onto a super block
204 */
205 struct super_block *frozen_sb;
Mikulas Patockadb8fef42009-06-22 10:12:15 +0100206 struct block_device *bdev;
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800207
208 /* forced geometry settings */
209 struct hd_geometry geometry;
Milan Broz784aae72009-01-06 03:05:12 +0000210
Mikulas Patocka2995fa72014-01-13 19:37:54 -0500211 /* kobject and completion */
212 struct dm_kobject_holder kobj_holder;
Mikulas Patockabe35f482014-01-06 23:01:22 -0500213
Tejun Heod87f4c12010-09-03 11:56:19 +0200214 /* zero-length flush that will be cloned and submitted to targets */
215 struct bio flush_bio;
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400216
Mikulas Patocka96b26c82015-01-08 18:52:26 -0500217 /* the number of internal suspends */
218 unsigned internal_suspend_count;
219
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400220 struct dm_stats stats;
Keith Busch2eb6e1e2014-10-17 17:46:36 -0600221
222 struct kthread_worker kworker;
223 struct task_struct *kworker_task;
Mike Snitzerde3ec862015-02-24 21:58:21 -0500224
225 /* for request-based merge heuristic in dm_request_fn() */
Mike Snitzer0ce65792015-02-26 00:50:28 -0500226 unsigned seq_rq_merge_deadline_usecs;
Mike Snitzerde3ec862015-02-24 21:58:21 -0500227 int last_rq_rw;
Mike Snitzer0ce65792015-02-26 00:50:28 -0500228 sector_t last_rq_pos;
229 ktime_t last_rq_start_time;
Mike Snitzerbfebd1c2015-03-08 00:51:47 -0500230
231 /* for blk-mq request-based DM support */
232 struct blk_mq_tag_set tag_set;
Mike Snitzer17e149b2015-03-11 15:01:09 -0400233 bool use_blk_mq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234};
235
Mike Snitzer17e149b2015-03-11 15:01:09 -0400236#ifdef CONFIG_DM_MQ_DEFAULT
237static bool use_blk_mq = true;
238#else
239static bool use_blk_mq = false;
240#endif
241
242bool dm_use_blk_mq(struct mapped_device *md)
243{
244 return md->use_blk_mq;
245}
246
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +0100247/*
248 * For mempools pre-allocation at the table loading time.
249 */
250struct dm_md_mempools {
251 mempool_t *io_pool;
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500252 mempool_t *rq_pool;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +0100253 struct bio_set *bs;
254};
255
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500256struct table_device {
257 struct list_head list;
258 atomic_t count;
259 struct dm_dev dm_dev;
260};
261
Mike Snitzer6cfa5852013-09-12 18:06:11 -0400262#define RESERVED_BIO_BASED_IOS 16
263#define RESERVED_REQUEST_BASED_IOS 256
Mike Snitzerf4790822013-09-12 18:06:12 -0400264#define RESERVED_MAX_IOS 1024
Christoph Lametere18b8902006-12-06 20:33:20 -0800265static struct kmem_cache *_io_cache;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000266static struct kmem_cache *_rq_tio_cache;
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500267static struct kmem_cache *_rq_cache;
Kent Overstreet94818742012-09-07 13:44:01 -0700268
Mike Snitzerf4790822013-09-12 18:06:12 -0400269/*
Mike Snitzere8603132013-09-12 18:06:12 -0400270 * Bio-based DM's mempools' reserved IOs set by the user.
271 */
272static unsigned reserved_bio_based_ios = RESERVED_BIO_BASED_IOS;
273
274/*
Mike Snitzerf4790822013-09-12 18:06:12 -0400275 * Request-based DM's mempools' reserved IOs set by the user.
276 */
277static unsigned reserved_rq_based_ios = RESERVED_REQUEST_BASED_IOS;
278
Mike Snitzer09c2d532015-02-27 22:25:26 -0500279static unsigned __dm_get_module_param(unsigned *module_param,
Mike Snitzerf4790822013-09-12 18:06:12 -0400280 unsigned def, unsigned max)
281{
Mike Snitzer09c2d532015-02-27 22:25:26 -0500282 unsigned param = ACCESS_ONCE(*module_param);
283 unsigned modified_param = 0;
Mike Snitzerf4790822013-09-12 18:06:12 -0400284
Mike Snitzer09c2d532015-02-27 22:25:26 -0500285 if (!param)
286 modified_param = def;
287 else if (param > max)
288 modified_param = max;
Mike Snitzerf4790822013-09-12 18:06:12 -0400289
Mike Snitzer09c2d532015-02-27 22:25:26 -0500290 if (modified_param) {
291 (void)cmpxchg(module_param, param, modified_param);
292 param = modified_param;
Mike Snitzerf4790822013-09-12 18:06:12 -0400293 }
294
Mike Snitzer09c2d532015-02-27 22:25:26 -0500295 return param;
Mike Snitzerf4790822013-09-12 18:06:12 -0400296}
297
Mike Snitzere8603132013-09-12 18:06:12 -0400298unsigned dm_get_reserved_bio_based_ios(void)
299{
Mike Snitzer09c2d532015-02-27 22:25:26 -0500300 return __dm_get_module_param(&reserved_bio_based_ios,
Mike Snitzere8603132013-09-12 18:06:12 -0400301 RESERVED_BIO_BASED_IOS, RESERVED_MAX_IOS);
302}
303EXPORT_SYMBOL_GPL(dm_get_reserved_bio_based_ios);
304
Mike Snitzerf4790822013-09-12 18:06:12 -0400305unsigned dm_get_reserved_rq_based_ios(void)
306{
Mike Snitzer09c2d532015-02-27 22:25:26 -0500307 return __dm_get_module_param(&reserved_rq_based_ios,
Mike Snitzerf4790822013-09-12 18:06:12 -0400308 RESERVED_REQUEST_BASED_IOS, RESERVED_MAX_IOS);
309}
310EXPORT_SYMBOL_GPL(dm_get_reserved_rq_based_ios);
311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312static int __init local_init(void)
313{
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100314 int r = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 /* allocate a slab for the dm_ios */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100317 _io_cache = KMEM_CACHE(dm_io, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 if (!_io_cache)
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100319 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000321 _rq_tio_cache = KMEM_CACHE(dm_rq_target_io, 0);
322 if (!_rq_tio_cache)
Mikulas Patockadba14162012-10-12 21:02:15 +0100323 goto out_free_io_cache;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000324
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500325 _rq_cache = kmem_cache_create("dm_clone_request", sizeof(struct request),
326 __alignof__(struct request), 0, NULL);
327 if (!_rq_cache)
328 goto out_free_rq_tio_cache;
329
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100330 r = dm_uevent_init();
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100331 if (r)
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500332 goto out_free_rq_cache;
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100333
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400334 deferred_remove_workqueue = alloc_workqueue("kdmremove", WQ_UNBOUND, 1);
335 if (!deferred_remove_workqueue) {
336 r = -ENOMEM;
337 goto out_uevent_exit;
338 }
339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 _major = major;
341 r = register_blkdev(_major, _name);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100342 if (r < 0)
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400343 goto out_free_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
345 if (!_major)
346 _major = r;
347
348 return 0;
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100349
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400350out_free_workqueue:
351 destroy_workqueue(deferred_remove_workqueue);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100352out_uevent_exit:
353 dm_uevent_exit();
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500354out_free_rq_cache:
355 kmem_cache_destroy(_rq_cache);
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000356out_free_rq_tio_cache:
357 kmem_cache_destroy(_rq_tio_cache);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100358out_free_io_cache:
359 kmem_cache_destroy(_io_cache);
360
361 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362}
363
364static void local_exit(void)
365{
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400366 flush_scheduled_work();
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400367 destroy_workqueue(deferred_remove_workqueue);
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400368
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500369 kmem_cache_destroy(_rq_cache);
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000370 kmem_cache_destroy(_rq_tio_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 kmem_cache_destroy(_io_cache);
Akinobu Mita00d59402007-07-17 04:03:46 -0700372 unregister_blkdev(_major, _name);
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100373 dm_uevent_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
375 _major = 0;
376
377 DMINFO("cleaned up");
378}
379
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000380static int (*_inits[])(void) __initdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 local_init,
382 dm_target_init,
383 dm_linear_init,
384 dm_stripe_init,
Mikulas Patocka952b3552009-12-10 23:51:57 +0000385 dm_io_init,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100386 dm_kcopyd_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 dm_interface_init,
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400388 dm_statistics_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389};
390
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000391static void (*_exits[])(void) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 local_exit,
393 dm_target_exit,
394 dm_linear_exit,
395 dm_stripe_exit,
Mikulas Patocka952b3552009-12-10 23:51:57 +0000396 dm_io_exit,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100397 dm_kcopyd_exit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 dm_interface_exit,
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400399 dm_statistics_exit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400};
401
402static int __init dm_init(void)
403{
404 const int count = ARRAY_SIZE(_inits);
405
406 int r, i;
407
408 for (i = 0; i < count; i++) {
409 r = _inits[i]();
410 if (r)
411 goto bad;
412 }
413
414 return 0;
415
416 bad:
417 while (i--)
418 _exits[i]();
419
420 return r;
421}
422
423static void __exit dm_exit(void)
424{
425 int i = ARRAY_SIZE(_exits);
426
427 while (i--)
428 _exits[i]();
Alasdair G Kergond15b7742011-08-02 12:32:01 +0100429
430 /*
431 * Should be empty by this point.
432 */
Alasdair G Kergond15b7742011-08-02 12:32:01 +0100433 idr_destroy(&_minor_idr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434}
435
436/*
437 * Block device functions
438 */
Mike Anderson432a2122009-12-10 23:52:20 +0000439int dm_deleting_md(struct mapped_device *md)
440{
441 return test_bit(DMF_DELETING, &md->flags);
442}
443
Al Virofe5f9f22008-03-02 10:29:31 -0500444static int dm_blk_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
446 struct mapped_device *md;
447
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700448 spin_lock(&_minor_lock);
449
Al Virofe5f9f22008-03-02 10:29:31 -0500450 md = bdev->bd_disk->private_data;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700451 if (!md)
452 goto out;
453
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700454 if (test_bit(DMF_FREEING, &md->flags) ||
Mike Anderson432a2122009-12-10 23:52:20 +0000455 dm_deleting_md(md)) {
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700456 md = NULL;
457 goto out;
458 }
459
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 dm_get(md);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700461 atomic_inc(&md->open_count);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700462out:
463 spin_unlock(&_minor_lock);
464
465 return md ? 0 : -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466}
467
Al Virodb2a1442013-05-05 21:52:57 -0400468static void dm_blk_close(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469{
Mike Snitzer63a4f062015-03-23 17:01:43 -0400470 struct mapped_device *md;
Arnd Bergmann6e9624b2010-08-07 18:25:34 +0200471
Milan Broz4a1aeb92011-01-13 19:59:48 +0000472 spin_lock(&_minor_lock);
473
Mike Snitzer63a4f062015-03-23 17:01:43 -0400474 md = disk->private_data;
475 if (WARN_ON(!md))
476 goto out;
477
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400478 if (atomic_dec_and_test(&md->open_count) &&
479 (test_bit(DMF_DEFERRED_REMOVE, &md->flags)))
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400480 queue_work(deferred_remove_workqueue, &deferred_remove_work);
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 dm_put(md);
Mike Snitzer63a4f062015-03-23 17:01:43 -0400483out:
Milan Broz4a1aeb92011-01-13 19:59:48 +0000484 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485}
486
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700487int dm_open_count(struct mapped_device *md)
488{
489 return atomic_read(&md->open_count);
490}
491
492/*
493 * Guarantees nothing is using the device before it's deleted.
494 */
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400495int dm_lock_for_deletion(struct mapped_device *md, bool mark_deferred, bool only_deferred)
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700496{
497 int r = 0;
498
499 spin_lock(&_minor_lock);
500
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400501 if (dm_open_count(md)) {
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700502 r = -EBUSY;
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400503 if (mark_deferred)
504 set_bit(DMF_DEFERRED_REMOVE, &md->flags);
505 } else if (only_deferred && !test_bit(DMF_DEFERRED_REMOVE, &md->flags))
506 r = -EEXIST;
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700507 else
508 set_bit(DMF_DELETING, &md->flags);
509
510 spin_unlock(&_minor_lock);
511
512 return r;
513}
514
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400515int dm_cancel_deferred_remove(struct mapped_device *md)
516{
517 int r = 0;
518
519 spin_lock(&_minor_lock);
520
521 if (test_bit(DMF_DELETING, &md->flags))
522 r = -EBUSY;
523 else
524 clear_bit(DMF_DEFERRED_REMOVE, &md->flags);
525
526 spin_unlock(&_minor_lock);
527
528 return r;
529}
530
531static void do_deferred_remove(struct work_struct *w)
532{
533 dm_deferred_remove();
534}
535
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400536sector_t dm_get_size(struct mapped_device *md)
537{
538 return get_capacity(md->disk);
539}
540
Mike Snitzer9974fa22014-02-28 15:33:43 +0100541struct request_queue *dm_get_md_queue(struct mapped_device *md)
542{
543 return md->queue;
544}
545
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400546struct dm_stats *dm_get_stats(struct mapped_device *md)
547{
548 return &md->stats;
549}
550
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800551static int dm_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
552{
553 struct mapped_device *md = bdev->bd_disk->private_data;
554
555 return dm_get_geometry(md, geo);
556}
557
Al Virofe5f9f22008-03-02 10:29:31 -0500558static int dm_blk_ioctl(struct block_device *bdev, fmode_t mode,
Milan Brozaa129a22006-10-03 01:15:15 -0700559 unsigned int cmd, unsigned long arg)
560{
Al Virofe5f9f22008-03-02 10:29:31 -0500561 struct mapped_device *md = bdev->bd_disk->private_data;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100562 int srcu_idx;
Hannes Reinecke6c182cd2013-07-10 23:41:15 +0100563 struct dm_table *map;
Milan Brozaa129a22006-10-03 01:15:15 -0700564 struct dm_target *tgt;
565 int r = -ENOTTY;
566
Hannes Reinecke6c182cd2013-07-10 23:41:15 +0100567retry:
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100568 map = dm_get_live_table(md, &srcu_idx);
569
Milan Brozaa129a22006-10-03 01:15:15 -0700570 if (!map || !dm_table_get_size(map))
571 goto out;
572
573 /* We only support devices that have a single target */
574 if (dm_table_get_num_targets(map) != 1)
575 goto out;
576
577 tgt = dm_table_get_target(map, 0);
Mike Snitzer4d341d82014-11-16 14:21:47 -0500578 if (!tgt->type->ioctl)
579 goto out;
Milan Brozaa129a22006-10-03 01:15:15 -0700580
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +0000581 if (dm_suspended_md(md)) {
Milan Brozaa129a22006-10-03 01:15:15 -0700582 r = -EAGAIN;
583 goto out;
584 }
585
Mike Snitzer4d341d82014-11-16 14:21:47 -0500586 r = tgt->type->ioctl(tgt, cmd, arg);
Milan Brozaa129a22006-10-03 01:15:15 -0700587
588out:
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100589 dm_put_live_table(md, srcu_idx);
Milan Brozaa129a22006-10-03 01:15:15 -0700590
Hannes Reinecke6c182cd2013-07-10 23:41:15 +0100591 if (r == -ENOTCONN) {
592 msleep(10);
593 goto retry;
594 }
595
Milan Brozaa129a22006-10-03 01:15:15 -0700596 return r;
597}
598
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100599static struct dm_io *alloc_io(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600{
601 return mempool_alloc(md->io_pool, GFP_NOIO);
602}
603
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100604static void free_io(struct mapped_device *md, struct dm_io *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605{
606 mempool_free(io, md->io_pool);
607}
608
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100609static void free_tio(struct mapped_device *md, struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610{
Mikulas Patockadba14162012-10-12 21:02:15 +0100611 bio_put(&tio->clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612}
613
Kiyoshi Ueda08885642009-12-10 23:52:15 +0000614static struct dm_rq_target_io *alloc_rq_tio(struct mapped_device *md,
615 gfp_t gfp_mask)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100616{
Jun'ichi Nomura5f015202013-03-01 22:45:48 +0000617 return mempool_alloc(md->io_pool, gfp_mask);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100618}
619
620static void free_rq_tio(struct dm_rq_target_io *tio)
621{
Jun'ichi Nomura5f015202013-03-01 22:45:48 +0000622 mempool_free(tio, tio->md->io_pool);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100623}
624
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500625static struct request *alloc_clone_request(struct mapped_device *md,
626 gfp_t gfp_mask)
627{
628 return mempool_alloc(md->rq_pool, gfp_mask);
629}
630
631static void free_clone_request(struct mapped_device *md, struct request *rq)
632{
633 mempool_free(rq, md->rq_pool);
634}
635
Kiyoshi Ueda90abb8c2009-12-10 23:52:13 +0000636static int md_in_flight(struct mapped_device *md)
637{
638 return atomic_read(&md->pending[READ]) +
639 atomic_read(&md->pending[WRITE]);
640}
641
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800642static void start_io_acct(struct dm_io *io)
643{
644 struct mapped_device *md = io->md;
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400645 struct bio *bio = io->bio;
Tejun Heoc9959052008-08-25 19:47:21 +0900646 int cpu;
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400647 int rw = bio_data_dir(bio);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800648
649 io->start_time = jiffies;
650
Tejun Heo074a7ac2008-08-25 19:56:14 +0900651 cpu = part_stat_lock();
652 part_round_stats(cpu, &dm_disk(md)->part0);
653 part_stat_unlock();
Shaohua Li1e9bb882011-03-22 08:35:35 +0100654 atomic_set(&dm_disk(md)->part0.in_flight[rw],
655 atomic_inc_return(&md->pending[rw]));
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400656
657 if (unlikely(dm_stats_used(&md->stats)))
Kent Overstreet4f024f32013-10-11 15:44:27 -0700658 dm_stats_account_io(&md->stats, bio->bi_rw, bio->bi_iter.bi_sector,
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400659 bio_sectors(bio), false, 0, &io->stats_aux);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800660}
661
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000662static void end_io_acct(struct dm_io *io)
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800663{
664 struct mapped_device *md = io->md;
665 struct bio *bio = io->bio;
666 unsigned long duration = jiffies - io->start_time;
Gu Zheng18c0b222014-11-24 11:05:26 +0800667 int pending;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800668 int rw = bio_data_dir(bio);
669
Gu Zheng18c0b222014-11-24 11:05:26 +0800670 generic_end_io_acct(rw, &dm_disk(md)->part0, io->start_time);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800671
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400672 if (unlikely(dm_stats_used(&md->stats)))
Kent Overstreet4f024f32013-10-11 15:44:27 -0700673 dm_stats_account_io(&md->stats, bio->bi_rw, bio->bi_iter.bi_sector,
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400674 bio_sectors(bio), true, duration, &io->stats_aux);
675
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100676 /*
677 * After this is decremented the bio must not be touched if it is
Tejun Heod87f4c12010-09-03 11:56:19 +0200678 * a flush.
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100679 */
Shaohua Li1e9bb882011-03-22 08:35:35 +0100680 pending = atomic_dec_return(&md->pending[rw]);
681 atomic_set(&dm_disk(md)->part0.in_flight[rw], pending);
Nikanth Karthikesan316d3152009-10-06 20:16:55 +0200682 pending += atomic_read(&md->pending[rw^0x1]);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800683
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000684 /* nudge anyone waiting on suspend queue */
685 if (!pending)
686 wake_up(&md->wait);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800687}
688
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689/*
690 * Add the bio to the list of deferred io.
691 */
Mikulas Patocka92c63902009-04-09 00:27:15 +0100692static void queue_io(struct mapped_device *md, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693{
Kiyoshi Ueda054474202010-09-08 18:07:01 +0200694 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Kiyoshi Ueda054474202010-09-08 18:07:01 +0200696 spin_lock_irqsave(&md->deferred_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 bio_list_add(&md->deferred, bio);
Kiyoshi Ueda054474202010-09-08 18:07:01 +0200698 spin_unlock_irqrestore(&md->deferred_lock, flags);
Tejun Heo6a8736d2010-09-08 18:07:00 +0200699 queue_work(md->wq, &md->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700}
701
702/*
703 * Everyone (including functions in this file), should use this
704 * function to access the md->map field, and make sure they call
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100705 * dm_put_live_table() when finished.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 */
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100707struct dm_table *dm_get_live_table(struct mapped_device *md, int *srcu_idx) __acquires(md->io_barrier)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708{
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100709 *srcu_idx = srcu_read_lock(&md->io_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100711 return srcu_dereference(md->map, &md->io_barrier);
712}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100714void dm_put_live_table(struct mapped_device *md, int srcu_idx) __releases(md->io_barrier)
715{
716 srcu_read_unlock(&md->io_barrier, srcu_idx);
717}
718
719void dm_sync_table(struct mapped_device *md)
720{
721 synchronize_srcu(&md->io_barrier);
722 synchronize_rcu_expedited();
723}
724
725/*
726 * A fast alternative to dm_get_live_table/dm_put_live_table.
727 * The caller must not block between these two functions.
728 */
729static struct dm_table *dm_get_live_table_fast(struct mapped_device *md) __acquires(RCU)
730{
731 rcu_read_lock();
732 return rcu_dereference(md->map);
733}
734
735static void dm_put_live_table_fast(struct mapped_device *md) __releases(RCU)
736{
737 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738}
739
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800740/*
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500741 * Open a table device so we can use it as a map destination.
742 */
743static int open_table_device(struct table_device *td, dev_t dev,
744 struct mapped_device *md)
745{
746 static char *_claim_ptr = "I belong to device-mapper";
747 struct block_device *bdev;
748
749 int r;
750
751 BUG_ON(td->dm_dev.bdev);
752
753 bdev = blkdev_get_by_dev(dev, td->dm_dev.mode | FMODE_EXCL, _claim_ptr);
754 if (IS_ERR(bdev))
755 return PTR_ERR(bdev);
756
757 r = bd_link_disk_holder(bdev, dm_disk(md));
758 if (r) {
759 blkdev_put(bdev, td->dm_dev.mode | FMODE_EXCL);
760 return r;
761 }
762
763 td->dm_dev.bdev = bdev;
764 return 0;
765}
766
767/*
768 * Close a table device that we've been using.
769 */
770static void close_table_device(struct table_device *td, struct mapped_device *md)
771{
772 if (!td->dm_dev.bdev)
773 return;
774
775 bd_unlink_disk_holder(td->dm_dev.bdev, dm_disk(md));
776 blkdev_put(td->dm_dev.bdev, td->dm_dev.mode | FMODE_EXCL);
777 td->dm_dev.bdev = NULL;
778}
779
780static struct table_device *find_table_device(struct list_head *l, dev_t dev,
781 fmode_t mode) {
782 struct table_device *td;
783
784 list_for_each_entry(td, l, list)
785 if (td->dm_dev.bdev->bd_dev == dev && td->dm_dev.mode == mode)
786 return td;
787
788 return NULL;
789}
790
791int dm_get_table_device(struct mapped_device *md, dev_t dev, fmode_t mode,
792 struct dm_dev **result) {
793 int r;
794 struct table_device *td;
795
796 mutex_lock(&md->table_devices_lock);
797 td = find_table_device(&md->table_devices, dev, mode);
798 if (!td) {
799 td = kmalloc(sizeof(*td), GFP_KERNEL);
800 if (!td) {
801 mutex_unlock(&md->table_devices_lock);
802 return -ENOMEM;
803 }
804
805 td->dm_dev.mode = mode;
806 td->dm_dev.bdev = NULL;
807
808 if ((r = open_table_device(td, dev, md))) {
809 mutex_unlock(&md->table_devices_lock);
810 kfree(td);
811 return r;
812 }
813
814 format_dev_t(td->dm_dev.name, dev);
815
816 atomic_set(&td->count, 0);
817 list_add(&td->list, &md->table_devices);
818 }
819 atomic_inc(&td->count);
820 mutex_unlock(&md->table_devices_lock);
821
822 *result = &td->dm_dev;
823 return 0;
824}
825EXPORT_SYMBOL_GPL(dm_get_table_device);
826
827void dm_put_table_device(struct mapped_device *md, struct dm_dev *d)
828{
829 struct table_device *td = container_of(d, struct table_device, dm_dev);
830
831 mutex_lock(&md->table_devices_lock);
832 if (atomic_dec_and_test(&td->count)) {
833 close_table_device(td, md);
834 list_del(&td->list);
835 kfree(td);
836 }
837 mutex_unlock(&md->table_devices_lock);
838}
839EXPORT_SYMBOL(dm_put_table_device);
840
841static void free_table_devices(struct list_head *devices)
842{
843 struct list_head *tmp, *next;
844
845 list_for_each_safe(tmp, next, devices) {
846 struct table_device *td = list_entry(tmp, struct table_device, list);
847
848 DMWARN("dm_destroy: %s still exists with %d references",
849 td->dm_dev.name, atomic_read(&td->count));
850 kfree(td);
851 }
852}
853
854/*
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800855 * Get the geometry associated with a dm device
856 */
857int dm_get_geometry(struct mapped_device *md, struct hd_geometry *geo)
858{
859 *geo = md->geometry;
860
861 return 0;
862}
863
864/*
865 * Set the geometry of a device.
866 */
867int dm_set_geometry(struct mapped_device *md, struct hd_geometry *geo)
868{
869 sector_t sz = (sector_t)geo->cylinders * geo->heads * geo->sectors;
870
871 if (geo->start > sz) {
872 DMWARN("Start sector is beyond the geometry limits.");
873 return -EINVAL;
874 }
875
876 md->geometry = *geo;
877
878 return 0;
879}
880
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881/*-----------------------------------------------------------------
882 * CRUD START:
883 * A more elegant soln is in the works that uses the queue
884 * merge fn, unfortunately there are a couple of changes to
885 * the block layer that I want to make for this. So in the
886 * interests of getting something for people to use I give
887 * you this clearly demarcated crap.
888 *---------------------------------------------------------------*/
889
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800890static int __noflush_suspending(struct mapped_device *md)
891{
892 return test_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
893}
894
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895/*
896 * Decrements the number of outstanding ios that a bio has been
897 * cloned into, completing the original io if necc.
898 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800899static void dec_pending(struct dm_io *io, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900{
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800901 unsigned long flags;
Milan Brozb35f8ca2009-03-16 17:44:36 +0000902 int io_error;
903 struct bio *bio;
904 struct mapped_device *md = io->md;
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800905
906 /* Push-back supersedes any I/O errors */
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +0100907 if (unlikely(error)) {
908 spin_lock_irqsave(&io->endio_lock, flags);
909 if (!(io->error > 0 && __noflush_suspending(md)))
910 io->error = error;
911 spin_unlock_irqrestore(&io->endio_lock, flags);
912 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
914 if (atomic_dec_and_test(&io->io_count)) {
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800915 if (io->error == DM_ENDIO_REQUEUE) {
916 /*
917 * Target requested pushing back the I/O.
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800918 */
Mikulas Patocka022c2612009-04-02 19:55:39 +0100919 spin_lock_irqsave(&md->deferred_lock, flags);
Tejun Heo6a8736d2010-09-08 18:07:00 +0200920 if (__noflush_suspending(md))
921 bio_list_add_head(&md->deferred, io->bio);
922 else
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800923 /* noflush suspend was interrupted. */
924 io->error = -EIO;
Mikulas Patocka022c2612009-04-02 19:55:39 +0100925 spin_unlock_irqrestore(&md->deferred_lock, flags);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800926 }
927
Milan Brozb35f8ca2009-03-16 17:44:36 +0000928 io_error = io->error;
929 bio = io->bio;
Tejun Heo6a8736d2010-09-08 18:07:00 +0200930 end_io_acct(io);
931 free_io(md, io);
Jens Axboe2056a782006-03-23 20:00:26 +0100932
Tejun Heo6a8736d2010-09-08 18:07:00 +0200933 if (io_error == DM_ENDIO_REQUEUE)
934 return;
935
Kent Overstreet4f024f32013-10-11 15:44:27 -0700936 if ((bio->bi_rw & REQ_FLUSH) && bio->bi_iter.bi_size) {
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100937 /*
Tejun Heo6a8736d2010-09-08 18:07:00 +0200938 * Preflush done for flush with data, reissue
939 * without REQ_FLUSH.
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100940 */
Tejun Heo6a8736d2010-09-08 18:07:00 +0200941 bio->bi_rw &= ~REQ_FLUSH;
942 queue_io(md, bio);
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100943 } else {
Mike Snitzerb372d362010-09-08 18:07:01 +0200944 /* done with normal IO or empty flush */
Linus Torvalds0a82a8d2013-04-18 09:00:26 -0700945 trace_block_bio_complete(md->queue, bio, io_error);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200946 bio->bi_error = io_error;
947 bio_endio(bio);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800948 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 }
950}
951
Mike Snitzer7eee4ae2014-06-02 15:50:06 -0400952static void disable_write_same(struct mapped_device *md)
953{
954 struct queue_limits *limits = dm_get_queue_limits(md);
955
956 /* device doesn't really support WRITE SAME, disable it */
957 limits->max_write_same_sectors = 0;
958}
959
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200960static void clone_endio(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961{
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200962 int error = bio->bi_error;
zhendong chen5164bec2014-12-17 14:37:04 +0800963 int r = error;
Mikulas Patockabfc6d412014-03-04 18:24:49 -0500964 struct dm_target_io *tio = container_of(bio, struct dm_target_io, clone);
Milan Brozb35f8ca2009-03-16 17:44:36 +0000965 struct dm_io *io = tio->io;
Stefan Bader9faf4002006-10-03 01:15:41 -0700966 struct mapped_device *md = tio->io->md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 dm_endio_fn endio = tio->ti->type->end_io;
968
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 if (endio) {
Mikulas Patocka7de3ee52012-12-21 20:23:41 +0000970 r = endio(tio->ti, bio, error);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800971 if (r < 0 || r == DM_ENDIO_REQUEUE)
972 /*
973 * error and requeue request are handled
974 * in dec_pending().
975 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 error = r;
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800977 else if (r == DM_ENDIO_INCOMPLETE)
978 /* The target will handle the io */
NeilBrown6712ecf2007-09-27 12:47:43 +0200979 return;
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800980 else if (r) {
981 DMWARN("unimplemented target endio return value: %d", r);
982 BUG();
983 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 }
985
Mike Snitzer7eee4ae2014-06-02 15:50:06 -0400986 if (unlikely(r == -EREMOTEIO && (bio->bi_rw & REQ_WRITE_SAME) &&
987 !bdev_get_queue(bio->bi_bdev)->limits.max_write_same_sectors))
988 disable_write_same(md);
989
Stefan Bader9faf4002006-10-03 01:15:41 -0700990 free_tio(md, tio);
Milan Brozb35f8ca2009-03-16 17:44:36 +0000991 dec_pending(io, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992}
993
Mike Snitzer78d8e582015-06-26 10:01:13 -0400994/*
995 * Partial completion handling for request-based dm
996 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200997static void end_clone_bio(struct bio *clone)
Mike Snitzer78d8e582015-06-26 10:01:13 -0400998{
999 struct dm_rq_clone_bio_info *info =
1000 container_of(clone, struct dm_rq_clone_bio_info, clone);
1001 struct dm_rq_target_io *tio = info->tio;
1002 struct bio *bio = info->orig;
1003 unsigned int nr_bytes = info->orig->bi_iter.bi_size;
Junichi Nomura50887bd2015-10-06 04:19:54 +00001004 int error = clone->bi_error;
Mike Snitzer78d8e582015-06-26 10:01:13 -04001005
1006 bio_put(clone);
1007
1008 if (tio->error)
1009 /*
1010 * An error has already been detected on the request.
1011 * Once error occurred, just let clone->end_io() handle
1012 * the remainder.
1013 */
1014 return;
Junichi Nomura50887bd2015-10-06 04:19:54 +00001015 else if (error) {
Mike Snitzer78d8e582015-06-26 10:01:13 -04001016 /*
1017 * Don't notice the error to the upper layer yet.
1018 * The error handling decision is made by the target driver,
1019 * when the request is completed.
1020 */
Junichi Nomura50887bd2015-10-06 04:19:54 +00001021 tio->error = error;
Mike Snitzer78d8e582015-06-26 10:01:13 -04001022 return;
1023 }
1024
1025 /*
1026 * I/O for the bio successfully completed.
1027 * Notice the data completion to the upper layer.
1028 */
1029
1030 /*
1031 * bios are processed from the head of the list.
1032 * So the completing bio should always be rq->bio.
1033 * If it's not, something wrong is happening.
1034 */
1035 if (tio->orig->bio != bio)
1036 DMERR("bio completion is going in the middle of the request");
1037
1038 /*
1039 * Update the original request.
1040 * Do not use blk_end_request() here, because it may complete
1041 * the original request before the clone, and break the ordering.
1042 */
1043 blk_update_request(tio->orig, 0, nr_bytes);
1044}
1045
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001046static struct dm_rq_target_io *tio_from_request(struct request *rq)
1047{
1048 return (rq->q->mq_ops ? blk_mq_rq_to_pdu(rq) : rq->special);
1049}
1050
Mikulas Patockae262f342015-06-09 17:22:49 -04001051static void rq_end_stats(struct mapped_device *md, struct request *orig)
1052{
1053 if (unlikely(dm_stats_used(&md->stats))) {
1054 struct dm_rq_target_io *tio = tio_from_request(orig);
1055 tio->duration_jiffies = jiffies - tio->duration_jiffies;
1056 dm_stats_account_io(&md->stats, orig->cmd_flags, blk_rq_pos(orig),
1057 tio->n_sectors, true, tio->duration_jiffies,
1058 &tio->stats_aux);
1059 }
1060}
1061
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001062/*
1063 * Don't touch any member of the md after calling this function because
1064 * the md may be freed in dm_put() at the end of this function.
1065 * Or do dm_get() before calling this function and dm_put() later.
1066 */
Keith Busch466d89a2014-10-17 17:46:37 -06001067static void rq_completed(struct mapped_device *md, int rw, bool run_queue)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001068{
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00001069 atomic_dec(&md->pending[rw]);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001070
1071 /* nudge anyone waiting on suspend queue */
Mike Snitzer621739b2015-07-08 16:08:24 -04001072 if (!md_in_flight(md))
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001073 wake_up(&md->wait);
1074
Jens Axboea8c32a52012-11-06 12:24:26 +01001075 /*
1076 * Run this off this callpath, as drivers could invoke end_io while
1077 * inside their request_fn (and holding the queue lock). Calling
1078 * back into ->request_fn() could deadlock attempting to grab the
1079 * queue lock again.
1080 */
Mike Snitzer9a0e6092015-02-24 11:03:22 -05001081 if (run_queue) {
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001082 if (md->queue->mq_ops)
1083 blk_mq_run_hw_queues(md->queue, true);
Mike Snitzer621739b2015-07-08 16:08:24 -04001084 else
Mike Snitzer9a0e6092015-02-24 11:03:22 -05001085 blk_run_queue_async(md->queue);
1086 }
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001087
1088 /*
1089 * dm_put() must be at the end of this function. See the comment above
1090 */
1091 dm_put(md);
1092}
1093
Mike Snitzere5d8de32015-05-28 15:12:52 -04001094static void free_rq_clone(struct request *clone)
Kiyoshi Uedaa77e28c2009-09-04 20:40:16 +01001095{
1096 struct dm_rq_target_io *tio = clone->end_io_data;
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001097 struct mapped_device *md = tio->md;
Kiyoshi Uedaa77e28c2009-09-04 20:40:16 +01001098
Mike Snitzer78d8e582015-06-26 10:01:13 -04001099 blk_rq_unprep_clone(clone);
1100
Mike Snitzeraa6df8d2015-04-29 10:48:09 -04001101 if (md->type == DM_TYPE_MQ_REQUEST_BASED)
1102 /* stacked on blk-mq queue(s) */
Mike Snitzere5863d92014-12-17 21:08:12 -05001103 tio->ti->type->release_clone_rq(clone);
Mike Snitzer02233342015-03-10 23:49:26 -04001104 else if (!md->queue->mq_ops)
1105 /* request_fn queue stacked on request_fn queue(s) */
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001106 free_clone_request(md, clone);
Mike Snitzeraa6df8d2015-04-29 10:48:09 -04001107 /*
1108 * NOTE: for the blk-mq queue stacked on request_fn queue(s) case:
1109 * no need to call free_clone_request() because we leverage blk-mq by
1110 * allocating the clone at the end of the blk-mq pdu (see: clone_rq)
1111 */
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001112
1113 if (!md->queue->mq_ops)
1114 free_rq_tio(tio);
Kiyoshi Uedaa77e28c2009-09-04 20:40:16 +01001115}
1116
Kiyoshi Ueda980691e2009-12-10 23:52:17 +00001117/*
1118 * Complete the clone and the original request.
Keith Busch466d89a2014-10-17 17:46:37 -06001119 * Must be called without clone's queue lock held,
1120 * see end_clone_request() for more details.
Kiyoshi Ueda980691e2009-12-10 23:52:17 +00001121 */
1122static void dm_end_request(struct request *clone, int error)
1123{
1124 int rw = rq_data_dir(clone);
1125 struct dm_rq_target_io *tio = clone->end_io_data;
1126 struct mapped_device *md = tio->md;
1127 struct request *rq = tio->orig;
1128
Tejun Heo29e40132010-09-08 18:07:00 +02001129 if (rq->cmd_type == REQ_TYPE_BLOCK_PC) {
Kiyoshi Ueda980691e2009-12-10 23:52:17 +00001130 rq->errors = clone->errors;
1131 rq->resid_len = clone->resid_len;
1132
1133 if (rq->sense)
1134 /*
1135 * We are using the sense buffer of the original
1136 * request.
1137 * So setting the length of the sense data is enough.
1138 */
1139 rq->sense_len = clone->sense_len;
1140 }
1141
Mike Snitzere5d8de32015-05-28 15:12:52 -04001142 free_rq_clone(clone);
Mikulas Patockae262f342015-06-09 17:22:49 -04001143 rq_end_stats(md, rq);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001144 if (!rq->q->mq_ops)
1145 blk_end_request_all(rq, error);
1146 else
1147 blk_mq_end_request(rq, error);
Tejun Heo29e40132010-09-08 18:07:00 +02001148 rq_completed(md, rw, true);
Kiyoshi Ueda980691e2009-12-10 23:52:17 +00001149}
1150
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001151static void dm_unprep_request(struct request *rq)
1152{
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001153 struct dm_rq_target_io *tio = tio_from_request(rq);
Keith Busch466d89a2014-10-17 17:46:37 -06001154 struct request *clone = tio->clone;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001155
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001156 if (!rq->q->mq_ops) {
1157 rq->special = NULL;
1158 rq->cmd_flags &= ~REQ_DONTPREP;
1159 }
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001160
Mike Snitzere5863d92014-12-17 21:08:12 -05001161 if (clone)
Mike Snitzere5d8de32015-05-28 15:12:52 -04001162 free_rq_clone(clone);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001163}
1164
1165/*
1166 * Requeue the original request of a clone.
1167 */
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001168static void old_requeue_request(struct request *rq)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001169{
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001170 struct request_queue *q = rq->q;
1171 unsigned long flags;
1172
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001173 spin_lock_irqsave(q->queue_lock, flags);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001174 blk_requeue_request(q, rq);
Junichi Nomura4ae99442015-05-26 08:25:54 +00001175 blk_run_queue_async(q);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001176 spin_unlock_irqrestore(q->queue_lock, flags);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001177}
1178
Mike Snitzer2d76fff2015-04-29 12:07:12 -04001179static void dm_requeue_original_request(struct mapped_device *md,
1180 struct request *rq)
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001181{
1182 int rw = rq_data_dir(rq);
1183
1184 dm_unprep_request(rq);
1185
Mikulas Patockae262f342015-06-09 17:22:49 -04001186 rq_end_stats(md, rq);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001187 if (!rq->q->mq_ops)
1188 old_requeue_request(rq);
1189 else {
1190 blk_mq_requeue_request(rq);
1191 blk_mq_kick_requeue_list(rq->q);
1192 }
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001193
Keith Busch466d89a2014-10-17 17:46:37 -06001194 rq_completed(md, rw, false);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001195}
Keith Busch466d89a2014-10-17 17:46:37 -06001196
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001197static void old_stop_queue(struct request_queue *q)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001198{
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001199 unsigned long flags;
1200
1201 if (blk_queue_stopped(q))
1202 return;
1203
1204 spin_lock_irqsave(q->queue_lock, flags);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001205 blk_stop_queue(q);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001206 spin_unlock_irqrestore(q->queue_lock, flags);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001207}
1208
1209static void stop_queue(struct request_queue *q)
1210{
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001211 if (!q->mq_ops)
1212 old_stop_queue(q);
1213 else
1214 blk_mq_stop_hw_queues(q);
1215}
1216
1217static void old_start_queue(struct request_queue *q)
1218{
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001219 unsigned long flags;
1220
1221 spin_lock_irqsave(q->queue_lock, flags);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001222 if (blk_queue_stopped(q))
1223 blk_start_queue(q);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001224 spin_unlock_irqrestore(q->queue_lock, flags);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001225}
1226
1227static void start_queue(struct request_queue *q)
1228{
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001229 if (!q->mq_ops)
1230 old_start_queue(q);
1231 else
1232 blk_mq_start_stopped_hw_queues(q, true);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001233}
1234
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001235static void dm_done(struct request *clone, int error, bool mapped)
1236{
1237 int r = error;
1238 struct dm_rq_target_io *tio = clone->end_io_data;
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001239 dm_request_endio_fn rq_end_io = NULL;
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001240
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001241 if (tio->ti) {
1242 rq_end_io = tio->ti->type->rq_end_io;
1243
1244 if (mapped && rq_end_io)
1245 r = rq_end_io(tio->ti, clone, error, &tio->info);
1246 }
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001247
Mike Snitzer7eee4ae2014-06-02 15:50:06 -04001248 if (unlikely(r == -EREMOTEIO && (clone->cmd_flags & REQ_WRITE_SAME) &&
1249 !clone->q->limits.max_write_same_sectors))
1250 disable_write_same(tio->md);
1251
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001252 if (r <= 0)
1253 /* The target wants to complete the I/O */
1254 dm_end_request(clone, r);
1255 else if (r == DM_ENDIO_INCOMPLETE)
1256 /* The target will handle the I/O */
1257 return;
1258 else if (r == DM_ENDIO_REQUEUE)
1259 /* The target wants to requeue the I/O */
Mike Snitzer2d76fff2015-04-29 12:07:12 -04001260 dm_requeue_original_request(tio->md, tio->orig);
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001261 else {
1262 DMWARN("unimplemented target endio return value: %d", r);
1263 BUG();
1264 }
1265}
1266
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001267/*
1268 * Request completion handler for request-based dm
1269 */
1270static void dm_softirq_done(struct request *rq)
1271{
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001272 bool mapped = true;
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001273 struct dm_rq_target_io *tio = tio_from_request(rq);
Keith Busch466d89a2014-10-17 17:46:37 -06001274 struct request *clone = tio->clone;
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001275 int rw;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001276
Mike Snitzere5863d92014-12-17 21:08:12 -05001277 if (!clone) {
Mikulas Patockae262f342015-06-09 17:22:49 -04001278 rq_end_stats(tio->md, rq);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001279 rw = rq_data_dir(rq);
1280 if (!rq->q->mq_ops) {
1281 blk_end_request_all(rq, tio->error);
1282 rq_completed(tio->md, rw, false);
1283 free_rq_tio(tio);
1284 } else {
1285 blk_mq_end_request(rq, tio->error);
1286 rq_completed(tio->md, rw, false);
1287 }
Mike Snitzere5863d92014-12-17 21:08:12 -05001288 return;
1289 }
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001290
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001291 if (rq->cmd_flags & REQ_FAILED)
1292 mapped = false;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001293
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001294 dm_done(clone, tio->error, mapped);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001295}
1296
1297/*
1298 * Complete the clone and the original request with the error status
1299 * through softirq context.
1300 */
Keith Busch466d89a2014-10-17 17:46:37 -06001301static void dm_complete_request(struct request *rq, int error)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001302{
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001303 struct dm_rq_target_io *tio = tio_from_request(rq);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001304
1305 tio->error = error;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001306 blk_complete_request(rq);
1307}
1308
1309/*
1310 * Complete the not-mapped clone and the original request with the error status
1311 * through softirq context.
1312 * Target's rq_end_io() function isn't called.
Mike Snitzere5863d92014-12-17 21:08:12 -05001313 * This may be used when the target's map_rq() or clone_and_map_rq() functions fail.
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001314 */
Keith Busch466d89a2014-10-17 17:46:37 -06001315static void dm_kill_unmapped_request(struct request *rq, int error)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001316{
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001317 rq->cmd_flags |= REQ_FAILED;
Keith Busch466d89a2014-10-17 17:46:37 -06001318 dm_complete_request(rq, error);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001319}
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001320
1321/*
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001322 * Called with the clone's queue lock held (for non-blk-mq)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001323 */
1324static void end_clone_request(struct request *clone, int error)
1325{
Keith Busch466d89a2014-10-17 17:46:37 -06001326 struct dm_rq_target_io *tio = clone->end_io_data;
1327
Mike Snitzere5863d92014-12-17 21:08:12 -05001328 if (!clone->q->mq_ops) {
1329 /*
1330 * For just cleaning up the information of the queue in which
1331 * the clone was dispatched.
1332 * The clone is *NOT* freed actually here because it is alloced
1333 * from dm own mempool (REQ_ALLOCED isn't set).
1334 */
1335 __blk_put_request(clone->q, clone);
1336 }
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001337
1338 /*
1339 * Actual request completion is done in a softirq context which doesn't
Keith Busch466d89a2014-10-17 17:46:37 -06001340 * hold the clone's queue lock. Otherwise, deadlock could occur because:
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001341 * - another request may be submitted by the upper level driver
1342 * of the stacking during the completion
1343 * - the submission which requires queue lock may be done
Keith Busch466d89a2014-10-17 17:46:37 -06001344 * against this clone's queue
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001345 */
Keith Busch466d89a2014-10-17 17:46:37 -06001346 dm_complete_request(tio->orig, error);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001347}
1348
Mike Snitzer56a67df2010-08-12 04:14:10 +01001349/*
1350 * Return maximum size of I/O possible at the supplied sector up to the current
1351 * target boundary.
1352 */
1353static sector_t max_io_len_target_boundary(sector_t sector, struct dm_target *ti)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354{
Mike Snitzer56a67df2010-08-12 04:14:10 +01001355 sector_t target_offset = dm_target_offset(ti, sector);
1356
1357 return ti->len - target_offset;
1358}
1359
1360static sector_t max_io_len(sector_t sector, struct dm_target *ti)
1361{
1362 sector_t len = max_io_len_target_boundary(sector, ti);
Mike Snitzer542f9032012-07-27 15:08:00 +01001363 sector_t offset, max_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
1365 /*
Mike Snitzer542f9032012-07-27 15:08:00 +01001366 * Does the target need to split even further?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 */
Mike Snitzer542f9032012-07-27 15:08:00 +01001368 if (ti->max_io_len) {
1369 offset = dm_target_offset(ti, sector);
1370 if (unlikely(ti->max_io_len & (ti->max_io_len - 1)))
1371 max_len = sector_div(offset, ti->max_io_len);
1372 else
1373 max_len = offset & (ti->max_io_len - 1);
1374 max_len = ti->max_io_len - max_len;
1375
1376 if (len > max_len)
1377 len = max_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 }
1379
1380 return len;
1381}
1382
Mike Snitzer542f9032012-07-27 15:08:00 +01001383int dm_set_target_max_io_len(struct dm_target *ti, sector_t len)
1384{
1385 if (len > UINT_MAX) {
1386 DMERR("Specified maximum size of target IO (%llu) exceeds limit (%u)",
1387 (unsigned long long)len, UINT_MAX);
1388 ti->error = "Maximum size of target IO is too large";
1389 return -EINVAL;
1390 }
1391
1392 ti->max_io_len = (uint32_t) len;
1393
1394 return 0;
1395}
1396EXPORT_SYMBOL_GPL(dm_set_target_max_io_len);
1397
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001398/*
1399 * A target may call dm_accept_partial_bio only from the map routine. It is
1400 * allowed for all bio types except REQ_FLUSH.
1401 *
1402 * dm_accept_partial_bio informs the dm that the target only wants to process
1403 * additional n_sectors sectors of the bio and the rest of the data should be
1404 * sent in a next bio.
1405 *
1406 * A diagram that explains the arithmetics:
1407 * +--------------------+---------------+-------+
1408 * | 1 | 2 | 3 |
1409 * +--------------------+---------------+-------+
1410 *
1411 * <-------------- *tio->len_ptr --------------->
1412 * <------- bi_size ------->
1413 * <-- n_sectors -->
1414 *
1415 * Region 1 was already iterated over with bio_advance or similar function.
1416 * (it may be empty if the target doesn't use bio_advance)
1417 * Region 2 is the remaining bio size that the target wants to process.
1418 * (it may be empty if region 1 is non-empty, although there is no reason
1419 * to make it empty)
1420 * The target requires that region 3 is to be sent in the next bio.
1421 *
1422 * If the target wants to receive multiple copies of the bio (via num_*bios, etc),
1423 * the partially processed part (the sum of regions 1+2) must be the same for all
1424 * copies of the bio.
1425 */
1426void dm_accept_partial_bio(struct bio *bio, unsigned n_sectors)
1427{
1428 struct dm_target_io *tio = container_of(bio, struct dm_target_io, clone);
1429 unsigned bi_size = bio->bi_iter.bi_size >> SECTOR_SHIFT;
1430 BUG_ON(bio->bi_rw & REQ_FLUSH);
1431 BUG_ON(bi_size > *tio->len_ptr);
1432 BUG_ON(n_sectors > bi_size);
1433 *tio->len_ptr -= bi_size - n_sectors;
1434 bio->bi_iter.bi_size = n_sectors << SECTOR_SHIFT;
1435}
1436EXPORT_SYMBOL_GPL(dm_accept_partial_bio);
1437
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001438static void __map_bio(struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439{
1440 int r;
Jens Axboe2056a782006-03-23 20:00:26 +01001441 sector_t sector;
Stefan Bader9faf4002006-10-03 01:15:41 -07001442 struct mapped_device *md;
Mikulas Patockadba14162012-10-12 21:02:15 +01001443 struct bio *clone = &tio->clone;
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001444 struct dm_target *ti = tio->ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 clone->bi_end_io = clone_endio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447
1448 /*
1449 * Map the clone. If r == 0 we don't need to do
1450 * anything, the target has assumed ownership of
1451 * this io.
1452 */
1453 atomic_inc(&tio->io->io_count);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001454 sector = clone->bi_iter.bi_sector;
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00001455 r = ti->type->map(ti, clone);
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -08001456 if (r == DM_MAPIO_REMAPPED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 /* the bio has been remapped so dispatch it */
Jens Axboe2056a782006-03-23 20:00:26 +01001458
Mike Snitzerd07335e2010-11-16 12:52:38 +01001459 trace_block_bio_remap(bdev_get_queue(clone->bi_bdev), clone,
1460 tio->io->bio->bi_bdev->bd_dev, sector);
Jens Axboe2056a782006-03-23 20:00:26 +01001461
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 generic_make_request(clone);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001463 } else if (r < 0 || r == DM_MAPIO_REQUEUE) {
1464 /* error the io and bail out, or requeue it if needed */
Stefan Bader9faf4002006-10-03 01:15:41 -07001465 md = tio->io->md;
1466 dec_pending(tio->io, r);
Stefan Bader9faf4002006-10-03 01:15:41 -07001467 free_tio(md, tio);
Mikulas Patockaab378442015-07-01 17:30:36 -04001468 } else if (r != DM_MAPIO_SUBMITTED) {
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -08001469 DMWARN("unimplemented target map return value: %d", r);
1470 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 }
1472}
1473
1474struct clone_info {
1475 struct mapped_device *md;
1476 struct dm_table *map;
1477 struct bio *bio;
1478 struct dm_io *io;
1479 sector_t sector;
Mikulas Patockae0d66092014-03-14 18:40:39 -04001480 unsigned sector_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481};
1482
Mikulas Patockae0d66092014-03-14 18:40:39 -04001483static void bio_setup_sector(struct bio *bio, sector_t sector, unsigned len)
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001484{
Kent Overstreet4f024f32013-10-11 15:44:27 -07001485 bio->bi_iter.bi_sector = sector;
1486 bio->bi_iter.bi_size = to_bytes(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487}
1488
1489/*
1490 * Creates a bio that consists of range of complete bvecs.
1491 */
Mikulas Patockadba14162012-10-12 21:02:15 +01001492static void clone_bio(struct dm_target_io *tio, struct bio *bio,
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001493 sector_t sector, unsigned len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494{
Mikulas Patockadba14162012-10-12 21:02:15 +01001495 struct bio *clone = &tio->clone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001497 __bio_clone_fast(clone, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001499 if (bio_integrity(bio))
1500 bio_integrity_clone(clone, bio, GFP_NOIO);
1501
1502 bio_advance(clone, to_bytes(sector - clone->bi_iter.bi_sector));
1503 clone->bi_iter.bi_size = to_bytes(len);
1504
1505 if (bio_integrity(bio))
1506 bio_integrity_trim(clone, 0, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507}
1508
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001509static struct dm_target_io *alloc_tio(struct clone_info *ci,
Junichi Nomura99778272014-10-03 11:55:16 +00001510 struct dm_target *ti,
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001511 unsigned target_bio_nr)
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001512{
Mikulas Patockadba14162012-10-12 21:02:15 +01001513 struct dm_target_io *tio;
1514 struct bio *clone;
1515
Junichi Nomura99778272014-10-03 11:55:16 +00001516 clone = bio_alloc_bioset(GFP_NOIO, 0, ci->md->bs);
Mikulas Patockadba14162012-10-12 21:02:15 +01001517 tio = container_of(clone, struct dm_target_io, clone);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001518
1519 tio->io = ci->io;
1520 tio->ti = ti;
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001521 tio->target_bio_nr = target_bio_nr;
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001522
1523 return tio;
1524}
1525
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001526static void __clone_and_map_simple_bio(struct clone_info *ci,
1527 struct dm_target *ti,
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001528 unsigned target_bio_nr, unsigned *len)
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001529{
Junichi Nomura99778272014-10-03 11:55:16 +00001530 struct dm_target_io *tio = alloc_tio(ci, ti, target_bio_nr);
Mikulas Patockadba14162012-10-12 21:02:15 +01001531 struct bio *clone = &tio->clone;
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001532
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001533 tio->len_ptr = len;
1534
Junichi Nomura99778272014-10-03 11:55:16 +00001535 __bio_clone_fast(clone, ci->bio);
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001536 if (len)
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001537 bio_setup_sector(clone, ci->sector, *len);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001538
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001539 __map_bio(tio);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001540}
1541
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001542static void __send_duplicate_bios(struct clone_info *ci, struct dm_target *ti,
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001543 unsigned num_bios, unsigned *len)
Mike Snitzer06a426c2010-08-12 04:14:09 +01001544{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001545 unsigned target_bio_nr;
Mike Snitzer06a426c2010-08-12 04:14:09 +01001546
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001547 for (target_bio_nr = 0; target_bio_nr < num_bios; target_bio_nr++)
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001548 __clone_and_map_simple_bio(ci, ti, target_bio_nr, len);
Mike Snitzer06a426c2010-08-12 04:14:09 +01001549}
1550
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001551static int __send_empty_flush(struct clone_info *ci)
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001552{
Mike Snitzer06a426c2010-08-12 04:14:09 +01001553 unsigned target_nr = 0;
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001554 struct dm_target *ti;
1555
Mike Snitzerb372d362010-09-08 18:07:01 +02001556 BUG_ON(bio_has_data(ci->bio));
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001557 while ((ti = dm_table_get_target(ci->map, target_nr++)))
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001558 __send_duplicate_bios(ci, ti, ti->num_flush_bios, NULL);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001559
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001560 return 0;
1561}
1562
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001563static void __clone_and_map_data_bio(struct clone_info *ci, struct dm_target *ti,
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001564 sector_t sector, unsigned *len)
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001565{
Mikulas Patockadba14162012-10-12 21:02:15 +01001566 struct bio *bio = ci->bio;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001567 struct dm_target_io *tio;
Alasdair G Kergonb0d8ed42013-03-01 22:45:49 +00001568 unsigned target_bio_nr;
1569 unsigned num_target_bios = 1;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001570
Alasdair G Kergonb0d8ed42013-03-01 22:45:49 +00001571 /*
1572 * Does the target want to receive duplicate copies of the bio?
1573 */
1574 if (bio_data_dir(bio) == WRITE && ti->num_write_bios)
1575 num_target_bios = ti->num_write_bios(ti, bio);
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001576
Alasdair G Kergonb0d8ed42013-03-01 22:45:49 +00001577 for (target_bio_nr = 0; target_bio_nr < num_target_bios; target_bio_nr++) {
Junichi Nomura99778272014-10-03 11:55:16 +00001578 tio = alloc_tio(ci, ti, target_bio_nr);
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001579 tio->len_ptr = len;
1580 clone_bio(tio, bio, sector, *len);
Alasdair G Kergonb0d8ed42013-03-01 22:45:49 +00001581 __map_bio(tio);
1582 }
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001583}
1584
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001585typedef unsigned (*get_num_bios_fn)(struct dm_target *ti);
Mike Snitzer23508a92012-12-21 20:23:37 +00001586
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001587static unsigned get_num_discard_bios(struct dm_target *ti)
Mike Snitzer23508a92012-12-21 20:23:37 +00001588{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001589 return ti->num_discard_bios;
Mike Snitzer23508a92012-12-21 20:23:37 +00001590}
1591
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001592static unsigned get_num_write_same_bios(struct dm_target *ti)
Mike Snitzer23508a92012-12-21 20:23:37 +00001593{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001594 return ti->num_write_same_bios;
Mike Snitzer23508a92012-12-21 20:23:37 +00001595}
1596
1597typedef bool (*is_split_required_fn)(struct dm_target *ti);
1598
1599static bool is_split_required_for_discard(struct dm_target *ti)
1600{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001601 return ti->split_discard_bios;
Mike Snitzer23508a92012-12-21 20:23:37 +00001602}
1603
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001604static int __send_changing_extent_only(struct clone_info *ci,
1605 get_num_bios_fn get_num_bios,
1606 is_split_required_fn is_split_required)
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001607{
1608 struct dm_target *ti;
Mikulas Patockae0d66092014-03-14 18:40:39 -04001609 unsigned len;
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001610 unsigned num_bios;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001611
Mike Snitzera79245b2010-08-12 04:14:24 +01001612 do {
1613 ti = dm_table_find_target(ci->map, ci->sector);
1614 if (!dm_target_is_valid(ti))
1615 return -EIO;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001616
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001617 /*
Mike Snitzer23508a92012-12-21 20:23:37 +00001618 * Even though the device advertised support for this type of
1619 * request, that does not mean every target supports it, and
Mike Snitzer936688d2011-08-02 12:32:01 +01001620 * reconfiguration might also have changed that since the
Mike Snitzera79245b2010-08-12 04:14:24 +01001621 * check was performed.
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001622 */
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001623 num_bios = get_num_bios ? get_num_bios(ti) : 0;
1624 if (!num_bios)
Mike Snitzera79245b2010-08-12 04:14:24 +01001625 return -EOPNOTSUPP;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001626
Mike Snitzer23508a92012-12-21 20:23:37 +00001627 if (is_split_required && !is_split_required(ti))
Mikulas Patockae0d66092014-03-14 18:40:39 -04001628 len = min((sector_t)ci->sector_count, max_io_len_target_boundary(ci->sector, ti));
Mikulas Patocka7acf0272012-07-27 15:08:03 +01001629 else
Mikulas Patockae0d66092014-03-14 18:40:39 -04001630 len = min((sector_t)ci->sector_count, max_io_len(ci->sector, ti));
Mike Snitzer06a426c2010-08-12 04:14:09 +01001631
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001632 __send_duplicate_bios(ci, ti, num_bios, &len);
Mike Snitzera79245b2010-08-12 04:14:24 +01001633
1634 ci->sector += len;
1635 } while (ci->sector_count -= len);
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001636
1637 return 0;
1638}
1639
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001640static int __send_discard(struct clone_info *ci)
Mike Snitzer23508a92012-12-21 20:23:37 +00001641{
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001642 return __send_changing_extent_only(ci, get_num_discard_bios,
1643 is_split_required_for_discard);
Mike Snitzer23508a92012-12-21 20:23:37 +00001644}
1645
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001646static int __send_write_same(struct clone_info *ci)
Mike Snitzer23508a92012-12-21 20:23:37 +00001647{
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001648 return __send_changing_extent_only(ci, get_num_write_same_bios, NULL);
Mike Snitzer23508a92012-12-21 20:23:37 +00001649}
1650
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001651/*
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001652 * Select the correct strategy for processing a non-flush bio.
1653 */
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001654static int __split_and_process_non_flush(struct clone_info *ci)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655{
Mikulas Patockadba14162012-10-12 21:02:15 +01001656 struct bio *bio = ci->bio;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001657 struct dm_target *ti;
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001658 unsigned len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001660 if (unlikely(bio->bi_rw & REQ_DISCARD))
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001661 return __send_discard(ci);
Mike Snitzer23508a92012-12-21 20:23:37 +00001662 else if (unlikely(bio->bi_rw & REQ_WRITE_SAME))
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001663 return __send_write_same(ci);
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001664
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001665 ti = dm_table_find_target(ci->map, ci->sector);
1666 if (!dm_target_is_valid(ti))
1667 return -EIO;
1668
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001669 len = min_t(sector_t, max_io_len(ci->sector, ti), ci->sector_count);
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001670
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001671 __clone_and_map_data_bio(ci, ti, ci->sector, &len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001673 ci->sector += len;
1674 ci->sector_count -= len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001676 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677}
1678
1679/*
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001680 * Entry point to split a bio into clones and submit them to the targets.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 */
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001682static void __split_and_process_bio(struct mapped_device *md,
1683 struct dm_table *map, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684{
1685 struct clone_info ci;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001686 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001688 if (unlikely(!map)) {
Tejun Heo6a8736d2010-09-08 18:07:00 +02001689 bio_io_error(bio);
Mikulas Patockaf0b9a452009-04-02 19:55:38 +01001690 return;
1691 }
Mikulas Patocka692d0eb2009-04-09 00:27:13 +01001692
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001693 ci.map = map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 ci.md = md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 ci.io = alloc_io(md);
1696 ci.io->error = 0;
1697 atomic_set(&ci.io->io_count, 1);
1698 ci.io->bio = bio;
1699 ci.io->md = md;
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +01001700 spin_lock_init(&ci.io->endio_lock);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001701 ci.sector = bio->bi_iter.bi_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -08001703 start_io_acct(ci.io);
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001704
Mike Snitzerb372d362010-09-08 18:07:01 +02001705 if (bio->bi_rw & REQ_FLUSH) {
1706 ci.bio = &ci.md->flush_bio;
1707 ci.sector_count = 0;
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001708 error = __send_empty_flush(&ci);
Mike Snitzerb372d362010-09-08 18:07:01 +02001709 /* dec_pending submits any data associated with flush */
1710 } else {
Tejun Heo6a8736d2010-09-08 18:07:00 +02001711 ci.bio = bio;
Tejun Heod87f4c12010-09-03 11:56:19 +02001712 ci.sector_count = bio_sectors(bio);
Mike Snitzerb372d362010-09-08 18:07:01 +02001713 while (ci.sector_count && !error)
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001714 error = __split_and_process_non_flush(&ci);
Tejun Heod87f4c12010-09-03 11:56:19 +02001715 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716
1717 /* drop the extra reference count */
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001718 dec_pending(ci.io, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719}
1720/*-----------------------------------------------------------------
1721 * CRUD END
1722 *---------------------------------------------------------------*/
1723
1724/*
1725 * The request function that just remaps the bio built up by
1726 * dm_merge_bvec.
1727 */
Mike Snitzerff36ab32015-02-23 17:56:37 -05001728static void dm_make_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729{
Kevin Corry12f03a42006-02-01 03:04:52 -08001730 int rw = bio_data_dir(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 struct mapped_device *md = q->queuedata;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001732 int srcu_idx;
1733 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001735 map = dm_get_live_table(md, &srcu_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736
Kent Overstreet54efd502015-04-23 22:37:18 -07001737 blk_queue_split(q, &bio, q->bio_split);
1738
Gu Zheng18c0b222014-11-24 11:05:26 +08001739 generic_start_io_acct(rw, bio_sectors(bio), &dm_disk(md)->part0);
Kevin Corry12f03a42006-02-01 03:04:52 -08001740
Tejun Heo6a8736d2010-09-08 18:07:00 +02001741 /* if we're suspended, we have to queue this io for later */
1742 if (unlikely(test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags))) {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001743 dm_put_live_table(md, srcu_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744
Tejun Heo6a8736d2010-09-08 18:07:00 +02001745 if (bio_rw(bio) != READA)
1746 queue_io(md, bio);
1747 else
Alasdair G Kergon54d9a1b2009-04-09 00:27:14 +01001748 bio_io_error(bio);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001749 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 }
1751
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001752 __split_and_process_bio(md, map, bio);
1753 dm_put_live_table(md, srcu_idx);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001754 return;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001755}
1756
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04001757int dm_request_based(struct mapped_device *md)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001758{
1759 return blk_queue_stackable(md->queue);
1760}
1761
Keith Busch466d89a2014-10-17 17:46:37 -06001762static void dm_dispatch_clone_request(struct request *clone, struct request *rq)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001763{
1764 int r;
1765
Keith Busch466d89a2014-10-17 17:46:37 -06001766 if (blk_queue_io_stat(clone->q))
1767 clone->cmd_flags |= REQ_IO_STAT;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001768
Keith Busch466d89a2014-10-17 17:46:37 -06001769 clone->start_time = jiffies;
1770 r = blk_insert_cloned_request(clone->q, clone);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001771 if (r)
Keith Busch466d89a2014-10-17 17:46:37 -06001772 /* must complete clone in terms of original request */
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001773 dm_complete_request(rq, r);
1774}
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001775
Mike Snitzer78d8e582015-06-26 10:01:13 -04001776static int dm_rq_bio_constructor(struct bio *bio, struct bio *bio_orig,
1777 void *data)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001778{
Mike Snitzer78d8e582015-06-26 10:01:13 -04001779 struct dm_rq_target_io *tio = data;
1780 struct dm_rq_clone_bio_info *info =
1781 container_of(bio, struct dm_rq_clone_bio_info, clone);
1782
1783 info->orig = bio_orig;
1784 info->tio = tio;
1785 bio->bi_end_io = end_clone_bio;
1786
1787 return 0;
1788}
1789
1790static int setup_clone(struct request *clone, struct request *rq,
1791 struct dm_rq_target_io *tio, gfp_t gfp_mask)
1792{
1793 int r;
1794
1795 r = blk_rq_prep_clone(clone, rq, tio->md->bs, gfp_mask,
1796 dm_rq_bio_constructor, tio);
1797 if (r)
1798 return r;
1799
1800 clone->cmd = rq->cmd;
1801 clone->cmd_len = rq->cmd_len;
1802 clone->sense = rq->sense;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001803 clone->end_io = end_clone_request;
1804 clone->end_io_data = tio;
Mike Snitzer78d8e582015-06-26 10:01:13 -04001805
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05001806 tio->clone = clone;
Mike Snitzer78d8e582015-06-26 10:01:13 -04001807
1808 return 0;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001809}
1810
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001811static struct request *clone_rq(struct request *rq, struct mapped_device *md,
Keith Busch466d89a2014-10-17 17:46:37 -06001812 struct dm_rq_target_io *tio, gfp_t gfp_mask)
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001813{
Mike Snitzer02233342015-03-10 23:49:26 -04001814 /*
1815 * Do not allocate a clone if tio->clone was already set
1816 * (see: dm_mq_queue_rq).
1817 */
1818 bool alloc_clone = !tio->clone;
1819 struct request *clone;
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05001820
Mike Snitzer02233342015-03-10 23:49:26 -04001821 if (alloc_clone) {
1822 clone = alloc_clone_request(md, gfp_mask);
1823 if (!clone)
1824 return NULL;
1825 } else
1826 clone = tio->clone;
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05001827
1828 blk_rq_init(NULL, clone);
Mike Snitzer78d8e582015-06-26 10:01:13 -04001829 if (setup_clone(clone, rq, tio, gfp_mask)) {
1830 /* -ENOMEM */
1831 if (alloc_clone)
1832 free_clone_request(md, clone);
1833 return NULL;
1834 }
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05001835
1836 return clone;
1837}
1838
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001839static void map_tio_request(struct kthread_work *work);
1840
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001841static void init_tio(struct dm_rq_target_io *tio, struct request *rq,
1842 struct mapped_device *md)
1843{
1844 tio->md = md;
1845 tio->ti = NULL;
1846 tio->clone = NULL;
1847 tio->orig = rq;
1848 tio->error = 0;
1849 memset(&tio->info, 0, sizeof(tio->info));
Mike Snitzer02233342015-03-10 23:49:26 -04001850 if (md->kworker_task)
1851 init_kthread_work(&tio->work, map_tio_request);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001852}
1853
Keith Busch466d89a2014-10-17 17:46:37 -06001854static struct dm_rq_target_io *prep_tio(struct request *rq,
1855 struct mapped_device *md, gfp_t gfp_mask)
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001856{
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001857 struct dm_rq_target_io *tio;
Mike Snitzere5863d92014-12-17 21:08:12 -05001858 int srcu_idx;
1859 struct dm_table *table;
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001860
1861 tio = alloc_rq_tio(md, gfp_mask);
1862 if (!tio)
1863 return NULL;
1864
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001865 init_tio(tio, rq, md);
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001866
Mike Snitzere5863d92014-12-17 21:08:12 -05001867 table = dm_get_live_table(md, &srcu_idx);
1868 if (!dm_table_mq_request_based(table)) {
1869 if (!clone_rq(rq, md, tio, gfp_mask)) {
1870 dm_put_live_table(md, srcu_idx);
1871 free_rq_tio(tio);
1872 return NULL;
1873 }
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001874 }
Mike Snitzere5863d92014-12-17 21:08:12 -05001875 dm_put_live_table(md, srcu_idx);
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001876
Keith Busch466d89a2014-10-17 17:46:37 -06001877 return tio;
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001878}
1879
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001880/*
1881 * Called with the queue lock held.
1882 */
1883static int dm_prep_fn(struct request_queue *q, struct request *rq)
1884{
1885 struct mapped_device *md = q->queuedata;
Keith Busch466d89a2014-10-17 17:46:37 -06001886 struct dm_rq_target_io *tio;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001887
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001888 if (unlikely(rq->special)) {
1889 DMWARN("Already has something in rq->special.");
1890 return BLKPREP_KILL;
1891 }
1892
Keith Busch466d89a2014-10-17 17:46:37 -06001893 tio = prep_tio(rq, md, GFP_ATOMIC);
1894 if (!tio)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001895 return BLKPREP_DEFER;
1896
Keith Busch466d89a2014-10-17 17:46:37 -06001897 rq->special = tio;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001898 rq->cmd_flags |= REQ_DONTPREP;
1899
1900 return BLKPREP_OK;
1901}
1902
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001903/*
1904 * Returns:
Mike Snitzere5863d92014-12-17 21:08:12 -05001905 * 0 : the request has been processed
1906 * DM_MAPIO_REQUEUE : the original request needs to be requeued
1907 * < 0 : the request was completed due to failure
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001908 */
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001909static int map_request(struct dm_rq_target_io *tio, struct request *rq,
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001910 struct mapped_device *md)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001911{
Mike Snitzere5863d92014-12-17 21:08:12 -05001912 int r;
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001913 struct dm_target *ti = tio->ti;
Mike Snitzere5863d92014-12-17 21:08:12 -05001914 struct request *clone = NULL;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001915
Mike Snitzere5863d92014-12-17 21:08:12 -05001916 if (tio->clone) {
1917 clone = tio->clone;
1918 r = ti->type->map_rq(ti, clone, &tio->info);
1919 } else {
1920 r = ti->type->clone_and_map_rq(ti, rq, &tio->info, &clone);
1921 if (r < 0) {
1922 /* The target wants to complete the I/O */
1923 dm_kill_unmapped_request(rq, r);
1924 return r;
1925 }
Junichi Nomura3a140752015-05-27 04:22:07 +00001926 if (r != DM_MAPIO_REMAPPED)
1927 return r;
Mike Snitzer78d8e582015-06-26 10:01:13 -04001928 if (setup_clone(clone, rq, tio, GFP_ATOMIC)) {
1929 /* -ENOMEM */
1930 ti->type->release_clone_rq(clone);
1931 return DM_MAPIO_REQUEUE;
1932 }
Mike Snitzere5863d92014-12-17 21:08:12 -05001933 }
1934
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001935 switch (r) {
1936 case DM_MAPIO_SUBMITTED:
1937 /* The target has taken the I/O to submit by itself later */
1938 break;
1939 case DM_MAPIO_REMAPPED:
1940 /* The target has remapped the I/O so dispatch it */
Jun'ichi Nomura6db4ccd2009-12-10 23:52:25 +00001941 trace_block_rq_remap(clone->q, clone, disk_devt(dm_disk(md)),
Keith Busch466d89a2014-10-17 17:46:37 -06001942 blk_rq_pos(rq));
1943 dm_dispatch_clone_request(clone, rq);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001944 break;
1945 case DM_MAPIO_REQUEUE:
1946 /* The target wants to requeue the I/O */
Mike Snitzer2d76fff2015-04-29 12:07:12 -04001947 dm_requeue_original_request(md, tio->orig);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001948 break;
1949 default:
1950 if (r > 0) {
1951 DMWARN("unimplemented target map return value: %d", r);
1952 BUG();
1953 }
1954
1955 /* The target wants to complete the I/O */
Keith Busch466d89a2014-10-17 17:46:37 -06001956 dm_kill_unmapped_request(rq, r);
Mike Snitzere5863d92014-12-17 21:08:12 -05001957 return r;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001958 }
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001959
Mike Snitzere5863d92014-12-17 21:08:12 -05001960 return 0;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001961}
1962
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001963static void map_tio_request(struct kthread_work *work)
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001964{
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001965 struct dm_rq_target_io *tio = container_of(work, struct dm_rq_target_io, work);
Mike Snitzere5863d92014-12-17 21:08:12 -05001966 struct request *rq = tio->orig;
1967 struct mapped_device *md = tio->md;
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001968
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001969 if (map_request(tio, rq, md) == DM_MAPIO_REQUEUE)
Mike Snitzer2d76fff2015-04-29 12:07:12 -04001970 dm_requeue_original_request(md, rq);
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001971}
1972
Keith Busch466d89a2014-10-17 17:46:37 -06001973static void dm_start_request(struct mapped_device *md, struct request *orig)
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001974{
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001975 if (!orig->q->mq_ops)
1976 blk_start_request(orig);
1977 else
1978 blk_mq_start_request(orig);
Keith Busch466d89a2014-10-17 17:46:37 -06001979 atomic_inc(&md->pending[rq_data_dir(orig)]);
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001980
Mike Snitzer0ce65792015-02-26 00:50:28 -05001981 if (md->seq_rq_merge_deadline_usecs) {
1982 md->last_rq_pos = rq_end_sector(orig);
1983 md->last_rq_rw = rq_data_dir(orig);
1984 md->last_rq_start_time = ktime_get();
1985 }
Mike Snitzerde3ec862015-02-24 21:58:21 -05001986
Mikulas Patockae262f342015-06-09 17:22:49 -04001987 if (unlikely(dm_stats_used(&md->stats))) {
1988 struct dm_rq_target_io *tio = tio_from_request(orig);
1989 tio->duration_jiffies = jiffies;
1990 tio->n_sectors = blk_rq_sectors(orig);
1991 dm_stats_account_io(&md->stats, orig->cmd_flags, blk_rq_pos(orig),
1992 tio->n_sectors, false, 0, &tio->stats_aux);
1993 }
1994
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001995 /*
1996 * Hold the md reference here for the in-flight I/O.
1997 * We can't rely on the reference count by device opener,
1998 * because the device may be closed during the request completion
1999 * when all bios are completed.
2000 * See the comment in rq_completed() too.
2001 */
2002 dm_get(md);
Mike Snitzerba1cbad2012-09-26 23:45:42 +01002003}
2004
Mike Snitzer0ce65792015-02-26 00:50:28 -05002005#define MAX_SEQ_RQ_MERGE_DEADLINE_USECS 100000
2006
2007ssize_t dm_attr_rq_based_seq_io_merge_deadline_show(struct mapped_device *md, char *buf)
2008{
2009 return sprintf(buf, "%u\n", md->seq_rq_merge_deadline_usecs);
2010}
2011
2012ssize_t dm_attr_rq_based_seq_io_merge_deadline_store(struct mapped_device *md,
2013 const char *buf, size_t count)
2014{
2015 unsigned deadline;
2016
Mike Snitzer17e149b2015-03-11 15:01:09 -04002017 if (!dm_request_based(md) || md->use_blk_mq)
Mike Snitzer0ce65792015-02-26 00:50:28 -05002018 return count;
2019
2020 if (kstrtouint(buf, 10, &deadline))
2021 return -EINVAL;
2022
2023 if (deadline > MAX_SEQ_RQ_MERGE_DEADLINE_USECS)
2024 deadline = MAX_SEQ_RQ_MERGE_DEADLINE_USECS;
2025
2026 md->seq_rq_merge_deadline_usecs = deadline;
2027
2028 return count;
2029}
2030
2031static bool dm_request_peeked_before_merge_deadline(struct mapped_device *md)
2032{
2033 ktime_t kt_deadline;
2034
2035 if (!md->seq_rq_merge_deadline_usecs)
2036 return false;
2037
2038 kt_deadline = ns_to_ktime((u64)md->seq_rq_merge_deadline_usecs * NSEC_PER_USEC);
2039 kt_deadline = ktime_add_safe(md->last_rq_start_time, kt_deadline);
2040
2041 return !ktime_after(ktime_get(), kt_deadline);
2042}
2043
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002044/*
2045 * q->request_fn for request-based dm.
2046 * Called with the queue lock held.
2047 */
2048static void dm_request_fn(struct request_queue *q)
2049{
2050 struct mapped_device *md = q->queuedata;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002051 int srcu_idx;
2052 struct dm_table *map = dm_get_live_table(md, &srcu_idx);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002053 struct dm_target *ti;
Keith Busch466d89a2014-10-17 17:46:37 -06002054 struct request *rq;
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002055 struct dm_rq_target_io *tio;
Tejun Heo29e40132010-09-08 18:07:00 +02002056 sector_t pos;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002057
2058 /*
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00002059 * For suspend, check blk_queue_stopped() and increment
2060 * ->pending within a single queue_lock not to increment the
2061 * number of in-flight I/Os after the queue is stopped in
2062 * dm_suspend().
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002063 */
Jens Axboe7eaceac2011-03-10 08:52:07 +01002064 while (!blk_queue_stopped(q)) {
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002065 rq = blk_peek_request(q);
2066 if (!rq)
Mike Snitzer9d1deb82015-02-24 20:49:18 -05002067 goto out;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002068
Tejun Heo29e40132010-09-08 18:07:00 +02002069 /* always use block 0 to find the target for flushes for now */
2070 pos = 0;
2071 if (!(rq->cmd_flags & REQ_FLUSH))
2072 pos = blk_rq_pos(rq);
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002073
Tejun Heo29e40132010-09-08 18:07:00 +02002074 ti = dm_table_find_target(map, pos);
Mike Snitzerba1cbad2012-09-26 23:45:42 +01002075 if (!dm_target_is_valid(ti)) {
2076 /*
Keith Busch466d89a2014-10-17 17:46:37 -06002077 * Must perform setup, that rq_completed() requires,
Mike Snitzerba1cbad2012-09-26 23:45:42 +01002078 * before calling dm_kill_unmapped_request
2079 */
2080 DMERR_LIMIT("request attempted access beyond the end of device");
Keith Busch466d89a2014-10-17 17:46:37 -06002081 dm_start_request(md, rq);
2082 dm_kill_unmapped_request(rq, -EIO);
Mike Snitzerba1cbad2012-09-26 23:45:42 +01002083 continue;
2084 }
Tejun Heo29e40132010-09-08 18:07:00 +02002085
Mike Snitzer0ce65792015-02-26 00:50:28 -05002086 if (dm_request_peeked_before_merge_deadline(md) &&
2087 md_in_flight(md) && rq->bio && rq->bio->bi_vcnt == 1 &&
Mike Snitzerde3ec862015-02-24 21:58:21 -05002088 md->last_rq_pos == pos && md->last_rq_rw == rq_data_dir(rq))
2089 goto delay_and_out;
2090
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002091 if (ti->type->busy && ti->type->busy(ti))
Jens Axboe7eaceac2011-03-10 08:52:07 +01002092 goto delay_and_out;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002093
Keith Busch466d89a2014-10-17 17:46:37 -06002094 dm_start_request(md, rq);
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00002095
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002096 tio = tio_from_request(rq);
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002097 /* Establish tio->ti before queuing work (map_tio_request) */
2098 tio->ti = ti;
2099 queue_kthread_work(&md->kworker, &tio->work);
Kiyoshi Ueda052189a2011-01-13 20:00:00 +00002100 BUG_ON(!irqs_disabled());
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002101 }
2102
2103 goto out;
2104
Jens Axboe7eaceac2011-03-10 08:52:07 +01002105delay_and_out:
Mike Snitzerd548b342015-03-05 22:21:10 -05002106 blk_delay_queue(q, HZ / 100);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002107out:
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002108 dm_put_live_table(md, srcu_idx);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002109}
2110
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111static int dm_any_congested(void *congested_data, int bdi_bits)
2112{
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00002113 int r = bdi_bits;
2114 struct mapped_device *md = congested_data;
2115 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01002117 if (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002118 map = dm_get_live_table_fast(md);
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00002119 if (map) {
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002120 /*
2121 * Request-based dm cares about only own queue for
2122 * the query about congestion status of request_queue
2123 */
2124 if (dm_request_based(md))
Tejun Heo44522262015-05-22 17:13:26 -04002125 r = md->queue->backing_dev_info.wb.state &
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002126 bdi_bits;
2127 else
2128 r = dm_table_any_congested(map, bdi_bits);
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00002129 }
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002130 dm_put_live_table_fast(md);
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00002131 }
2132
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 return r;
2134}
2135
2136/*-----------------------------------------------------------------
2137 * An IDR is used to keep track of allocated minor numbers.
2138 *---------------------------------------------------------------*/
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002139static void free_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140{
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002141 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 idr_remove(&_minor_idr, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002143 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144}
2145
2146/*
2147 * See if the device with a specific minor # is free.
2148 */
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01002149static int specific_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150{
Tejun Heoc9d76be2013-02-27 17:04:26 -08002151 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152
2153 if (minor >= (1 << MINORBITS))
2154 return -EINVAL;
2155
Tejun Heoc9d76be2013-02-27 17:04:26 -08002156 idr_preload(GFP_KERNEL);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002157 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158
Tejun Heoc9d76be2013-02-27 17:04:26 -08002159 r = idr_alloc(&_minor_idr, MINOR_ALLOCED, minor, minor + 1, GFP_NOWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002161 spin_unlock(&_minor_lock);
Tejun Heoc9d76be2013-02-27 17:04:26 -08002162 idr_preload_end();
2163 if (r < 0)
2164 return r == -ENOSPC ? -EBUSY : r;
2165 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166}
2167
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01002168static int next_free_minor(int *minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169{
Tejun Heoc9d76be2013-02-27 17:04:26 -08002170 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171
Tejun Heoc9d76be2013-02-27 17:04:26 -08002172 idr_preload(GFP_KERNEL);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002173 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174
Tejun Heoc9d76be2013-02-27 17:04:26 -08002175 r = idr_alloc(&_minor_idr, MINOR_ALLOCED, 0, 1 << MINORBITS, GFP_NOWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002177 spin_unlock(&_minor_lock);
Tejun Heoc9d76be2013-02-27 17:04:26 -08002178 idr_preload_end();
2179 if (r < 0)
2180 return r;
2181 *minor = r;
2182 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183}
2184
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07002185static const struct block_device_operations dm_blk_dops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186
Mikulas Patocka53d59142009-04-02 19:55:37 +01002187static void dm_wq_work(struct work_struct *work);
2188
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002189static void dm_init_md_queue(struct mapped_device *md)
2190{
2191 /*
2192 * Request-based dm devices cannot be stacked on top of bio-based dm
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002193 * devices. The type of this dm device may not have been decided yet.
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002194 * The type is decided at the first table loading time.
2195 * To prevent problematic device stacking, clear the queue flag
2196 * for request stacking support until then.
2197 *
2198 * This queue is new, so no concurrency on the queue_flags.
2199 */
2200 queue_flag_clear_unlocked(QUEUE_FLAG_STACKABLE, md->queue);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002201}
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002202
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002203static void dm_init_old_md_queue(struct mapped_device *md)
2204{
Mike Snitzer17e149b2015-03-11 15:01:09 -04002205 md->use_blk_mq = false;
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002206 dm_init_md_queue(md);
2207
2208 /*
2209 * Initialize aspects of queue that aren't relevant for blk-mq
2210 */
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002211 md->queue->queuedata = md;
2212 md->queue->backing_dev_info.congested_fn = dm_any_congested;
2213 md->queue->backing_dev_info.congested_data = md;
Mike Snitzerff36ab32015-02-23 17:56:37 -05002214
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002215 blk_queue_bounce_limit(md->queue, BLK_BOUNCE_ANY);
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002216}
2217
Mike Snitzer0f209722015-04-28 11:50:29 -04002218static void cleanup_mapped_device(struct mapped_device *md)
2219{
Mike Snitzer0f209722015-04-28 11:50:29 -04002220 if (md->wq)
2221 destroy_workqueue(md->wq);
2222 if (md->kworker_task)
2223 kthread_stop(md->kworker_task);
2224 if (md->io_pool)
2225 mempool_destroy(md->io_pool);
2226 if (md->rq_pool)
2227 mempool_destroy(md->rq_pool);
2228 if (md->bs)
2229 bioset_free(md->bs);
2230
Mikulas Patockab06075a2015-07-10 17:21:43 -04002231 cleanup_srcu_struct(&md->io_barrier);
2232
Mike Snitzer0f209722015-04-28 11:50:29 -04002233 if (md->disk) {
2234 spin_lock(&_minor_lock);
2235 md->disk->private_data = NULL;
2236 spin_unlock(&_minor_lock);
2237 if (blk_get_integrity(md->disk))
2238 blk_integrity_unregister(md->disk);
2239 del_gendisk(md->disk);
2240 put_disk(md->disk);
2241 }
2242
2243 if (md->queue)
2244 blk_cleanup_queue(md->queue);
2245
2246 if (md->bdev) {
2247 bdput(md->bdev);
2248 md->bdev = NULL;
2249 }
2250}
2251
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252/*
2253 * Allocate and initialise a blank device with a given minor.
2254 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002255static struct mapped_device *alloc_dev(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256{
2257 int r;
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01002258 struct mapped_device *md = kzalloc(sizeof(*md), GFP_KERNEL);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07002259 void *old_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260
2261 if (!md) {
2262 DMWARN("unable to allocate device, out of memory.");
2263 return NULL;
2264 }
2265
Jeff Mahoney10da4f72006-06-26 00:27:25 -07002266 if (!try_module_get(THIS_MODULE))
Milan Broz6ed7ade2008-02-08 02:10:19 +00002267 goto bad_module_get;
Jeff Mahoney10da4f72006-06-26 00:27:25 -07002268
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 /* get a minor number for the dev */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002270 if (minor == DM_ANY_MINOR)
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01002271 r = next_free_minor(&minor);
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002272 else
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01002273 r = specific_minor(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 if (r < 0)
Milan Broz6ed7ade2008-02-08 02:10:19 +00002275 goto bad_minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002277 r = init_srcu_struct(&md->io_barrier);
2278 if (r < 0)
2279 goto bad_io_barrier;
2280
Mike Snitzer17e149b2015-03-11 15:01:09 -04002281 md->use_blk_mq = use_blk_mq;
Mike Snitzera5664da2010-08-12 04:14:01 +01002282 md->type = DM_TYPE_NONE;
Daniel Walkere61290a2008-02-08 02:10:08 +00002283 mutex_init(&md->suspend_lock);
Mike Snitzera5664da2010-08-12 04:14:01 +01002284 mutex_init(&md->type_lock);
Benjamin Marzinski86f11522014-08-13 13:53:43 -05002285 mutex_init(&md->table_devices_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01002286 spin_lock_init(&md->deferred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 atomic_set(&md->holders, 1);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -07002288 atomic_set(&md->open_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 atomic_set(&md->event_nr, 0);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002290 atomic_set(&md->uevent_seq, 0);
2291 INIT_LIST_HEAD(&md->uevent_list);
Benjamin Marzinski86f11522014-08-13 13:53:43 -05002292 INIT_LIST_HEAD(&md->table_devices);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002293 spin_lock_init(&md->uevent_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002295 md->queue = blk_alloc_queue(GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 if (!md->queue)
Mike Snitzer0f209722015-04-28 11:50:29 -04002297 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002299 dm_init_md_queue(md);
Stefan Bader9faf4002006-10-03 01:15:41 -07002300
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 md->disk = alloc_disk(1);
2302 if (!md->disk)
Mike Snitzer0f209722015-04-28 11:50:29 -04002303 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02002305 atomic_set(&md->pending[0], 0);
2306 atomic_set(&md->pending[1], 0);
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07002307 init_waitqueue_head(&md->wait);
Mikulas Patocka53d59142009-04-02 19:55:37 +01002308 INIT_WORK(&md->work, dm_wq_work);
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07002309 init_waitqueue_head(&md->eventq);
Mikulas Patocka2995fa72014-01-13 19:37:54 -05002310 init_completion(&md->kobj_holder.completion);
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002311 md->kworker_task = NULL;
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07002312
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 md->disk->major = _major;
2314 md->disk->first_minor = minor;
2315 md->disk->fops = &dm_blk_dops;
2316 md->disk->queue = md->queue;
2317 md->disk->private_data = md;
2318 sprintf(md->disk->disk_name, "dm-%d", minor);
2319 add_disk(md->disk);
Mike Anderson7e51f252006-03-27 01:17:52 -08002320 format_dev_t(md->name, MKDEV(_major, minor));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321
Tejun Heo670368a2013-07-30 08:40:21 -04002322 md->wq = alloc_workqueue("kdmflush", WQ_MEM_RECLAIM, 0);
Milan Broz304f3f62008-02-08 02:11:17 +00002323 if (!md->wq)
Mike Snitzer0f209722015-04-28 11:50:29 -04002324 goto bad;
Milan Broz304f3f62008-02-08 02:11:17 +00002325
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002326 md->bdev = bdget_disk(md->disk, 0);
2327 if (!md->bdev)
Mike Snitzer0f209722015-04-28 11:50:29 -04002328 goto bad;
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002329
Tejun Heo6a8736d2010-09-08 18:07:00 +02002330 bio_init(&md->flush_bio);
2331 md->flush_bio.bi_bdev = md->bdev;
2332 md->flush_bio.bi_rw = WRITE_FLUSH;
2333
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002334 dm_stats_init(&md->stats);
2335
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07002336 /* Populate the mapping, nobody knows we exist yet */
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002337 spin_lock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07002338 old_md = idr_replace(&_minor_idr, md, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002339 spin_unlock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07002340
2341 BUG_ON(old_md != MINOR_ALLOCED);
2342
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 return md;
2344
Mike Snitzer0f209722015-04-28 11:50:29 -04002345bad:
2346 cleanup_mapped_device(md);
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002347bad_io_barrier:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 free_minor(minor);
Milan Broz6ed7ade2008-02-08 02:10:19 +00002349bad_minor:
Jeff Mahoney10da4f72006-06-26 00:27:25 -07002350 module_put(THIS_MODULE);
Milan Broz6ed7ade2008-02-08 02:10:19 +00002351bad_module_get:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 kfree(md);
2353 return NULL;
2354}
2355
Jun'ichi Nomuraae9da832007-10-19 22:38:43 +01002356static void unlock_fs(struct mapped_device *md);
2357
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358static void free_dev(struct mapped_device *md)
2359{
Tejun Heof331c022008-09-03 09:01:48 +02002360 int minor = MINOR(disk_devt(md->disk));
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08002361
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002362 unlock_fs(md);
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002363
Mike Snitzer0f209722015-04-28 11:50:29 -04002364 cleanup_mapped_device(md);
Mike Snitzer17e149b2015-03-11 15:01:09 -04002365 if (md->use_blk_mq)
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002366 blk_mq_free_tag_set(&md->tag_set);
Mike Snitzer0f209722015-04-28 11:50:29 -04002367
2368 free_table_devices(&md->table_devices);
2369 dm_stats_cleanup(&md->stats);
Mike Snitzer63a4f062015-03-23 17:01:43 -04002370 free_minor(minor);
2371
Jeff Mahoney10da4f72006-06-26 00:27:25 -07002372 module_put(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 kfree(md);
2374}
2375
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002376static void __bind_mempools(struct mapped_device *md, struct dm_table *t)
2377{
Mikulas Patockac0820cf2012-12-21 20:23:38 +00002378 struct dm_md_mempools *p = dm_table_get_md_mempools(t);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002379
Mike Snitzer4e6e36c2015-06-26 09:42:57 -04002380 if (md->bs) {
2381 /* The md already has necessary mempools. */
2382 if (dm_table_get_type(t) == DM_TYPE_BIO_BASED) {
Jun'ichi Nomura16245bd2013-03-01 22:45:44 +00002383 /*
2384 * Reload bioset because front_pad may have changed
2385 * because a different table was loaded.
2386 */
2387 bioset_free(md->bs);
2388 md->bs = p->bs;
2389 p->bs = NULL;
Jun'ichi Nomura16245bd2013-03-01 22:45:44 +00002390 }
Mike Snitzer4e6e36c2015-06-26 09:42:57 -04002391 /*
2392 * There's no need to reload with request-based dm
2393 * because the size of front_pad doesn't change.
2394 * Note for future: If you are to reload bioset,
2395 * prep-ed requests in the queue may refer
2396 * to bio from the old bioset, so you must walk
2397 * through the queue to unprep.
2398 */
2399 goto out;
Mikulas Patockac0820cf2012-12-21 20:23:38 +00002400 }
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002401
Mike Snitzercbc4e3c2015-04-27 16:37:50 -04002402 BUG_ON(!p || md->io_pool || md->rq_pool || md->bs);
2403
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002404 md->io_pool = p->io_pool;
2405 p->io_pool = NULL;
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05002406 md->rq_pool = p->rq_pool;
2407 p->rq_pool = NULL;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002408 md->bs = p->bs;
2409 p->bs = NULL;
Mike Snitzer4e6e36c2015-06-26 09:42:57 -04002410
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002411out:
Mike Snitzer02233342015-03-10 23:49:26 -04002412 /* mempool bind completed, no longer need any mempools in the table */
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002413 dm_table_free_md_mempools(t);
2414}
2415
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416/*
2417 * Bind a table to the device.
2418 */
2419static void event_callback(void *context)
2420{
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002421 unsigned long flags;
2422 LIST_HEAD(uevents);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 struct mapped_device *md = (struct mapped_device *) context;
2424
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002425 spin_lock_irqsave(&md->uevent_lock, flags);
2426 list_splice_init(&md->uevent_list, &uevents);
2427 spin_unlock_irqrestore(&md->uevent_lock, flags);
2428
Tejun Heoed9e1982008-08-25 19:56:05 +09002429 dm_send_uevents(&uevents, &disk_to_dev(md->disk)->kobj);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002430
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 atomic_inc(&md->event_nr);
2432 wake_up(&md->eventq);
2433}
2434
Mike Snitzerc2176492011-01-13 19:53:46 +00002435/*
2436 * Protected by md->suspend_lock obtained by dm_swap_table().
2437 */
Alasdair G Kergon4e90188be2005-07-28 21:15:59 -07002438static void __set_size(struct mapped_device *md, sector_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439{
Alasdair G Kergon4e90188be2005-07-28 21:15:59 -07002440 set_capacity(md->disk, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002442 i_size_write(md->bdev->bd_inode, (loff_t)size << SECTOR_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443}
2444
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002445/*
2446 * Returns old map, which caller must destroy.
2447 */
2448static struct dm_table *__bind(struct mapped_device *md, struct dm_table *t,
2449 struct queue_limits *limits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450{
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002451 struct dm_table *old_map;
Jens Axboe165125e2007-07-24 09:28:11 +02002452 struct request_queue *q = md->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 sector_t size;
2454
2455 size = dm_table_get_size(t);
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08002456
2457 /*
2458 * Wipe any geometry if the size of the table changed.
2459 */
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002460 if (size != dm_get_size(md))
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08002461 memset(&md->geometry, 0, sizeof(md->geometry));
2462
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002463 __set_size(md, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002465 dm_table_event_callback(t, event_callback, md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002466
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002467 /*
2468 * The queue hasn't been stopped yet, if the old table type wasn't
2469 * for request-based during suspension. So stop it to prevent
2470 * I/O mapping before resume.
2471 * This must be done before setting the queue restrictions,
2472 * because request-based dm may be run just after the setting.
2473 */
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002474 if (dm_table_request_based(t))
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002475 stop_queue(q);
2476
2477 __bind_mempools(md, t);
2478
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002479 old_map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002480 rcu_assign_pointer(md->map, t);
Alasdair G Kergon36a04562011-10-31 20:19:04 +00002481 md->immutable_target_type = dm_table_get_immutable_target_type(t);
2482
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002483 dm_table_set_restrictions(t, q, limits);
Hannes Reinecke41abc4e2014-11-05 14:35:50 +01002484 if (old_map)
2485 dm_sync_table(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002486
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002487 return old_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488}
2489
Alasdair G Kergona7940152009-12-10 23:52:23 +00002490/*
2491 * Returns unbound table for the caller to free.
2492 */
2493static struct dm_table *__unbind(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494{
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002495 struct dm_table *map = rcu_dereference_protected(md->map, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496
2497 if (!map)
Alasdair G Kergona7940152009-12-10 23:52:23 +00002498 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499
2500 dm_table_event_callback(map, NULL, NULL);
Monam Agarwal9cdb8522014-03-23 23:58:27 +05302501 RCU_INIT_POINTER(md->map, NULL);
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002502 dm_sync_table(md);
Alasdair G Kergona7940152009-12-10 23:52:23 +00002503
2504 return map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505}
2506
2507/*
2508 * Constructor for a new device.
2509 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002510int dm_create(int minor, struct mapped_device **result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511{
2512 struct mapped_device *md;
2513
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002514 md = alloc_dev(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 if (!md)
2516 return -ENXIO;
2517
Milan Broz784aae72009-01-06 03:05:12 +00002518 dm_sysfs_init(md);
2519
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520 *result = md;
2521 return 0;
2522}
2523
Mike Snitzera5664da2010-08-12 04:14:01 +01002524/*
2525 * Functions to manage md->type.
2526 * All are required to hold md->type_lock.
2527 */
2528void dm_lock_md_type(struct mapped_device *md)
2529{
2530 mutex_lock(&md->type_lock);
2531}
2532
2533void dm_unlock_md_type(struct mapped_device *md)
2534{
2535 mutex_unlock(&md->type_lock);
2536}
2537
2538void dm_set_md_type(struct mapped_device *md, unsigned type)
2539{
Mike Snitzer00c4fc32013-08-27 18:57:03 -04002540 BUG_ON(!mutex_is_locked(&md->type_lock));
Mike Snitzera5664da2010-08-12 04:14:01 +01002541 md->type = type;
2542}
2543
2544unsigned dm_get_md_type(struct mapped_device *md)
2545{
Mike Snitzer00c4fc32013-08-27 18:57:03 -04002546 BUG_ON(!mutex_is_locked(&md->type_lock));
Mike Snitzera5664da2010-08-12 04:14:01 +01002547 return md->type;
2548}
2549
Alasdair G Kergon36a04562011-10-31 20:19:04 +00002550struct target_type *dm_get_immutable_target_type(struct mapped_device *md)
2551{
2552 return md->immutable_target_type;
2553}
2554
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002555/*
Mike Snitzerf84cb8a2013-09-19 12:13:58 -04002556 * The queue_limits are only valid as long as you have a reference
2557 * count on 'md'.
2558 */
2559struct queue_limits *dm_get_queue_limits(struct mapped_device *md)
2560{
2561 BUG_ON(!atomic_read(&md->holders));
2562 return &md->queue->limits;
2563}
2564EXPORT_SYMBOL_GPL(dm_get_queue_limits);
2565
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002566static void init_rq_based_worker_thread(struct mapped_device *md)
2567{
2568 /* Initialize the request-based DM worker thread */
2569 init_kthread_worker(&md->kworker);
2570 md->kworker_task = kthread_run(kthread_worker_fn, &md->kworker,
2571 "kdmwork-%s", dm_device_name(md));
2572}
2573
Mike Snitzerf84cb8a2013-09-19 12:13:58 -04002574/*
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002575 * Fully initialize a request-based queue (->elevator, ->request_fn, etc).
2576 */
2577static int dm_init_request_based_queue(struct mapped_device *md)
2578{
2579 struct request_queue *q = NULL;
2580
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002581 /* Fully initialize the queue */
2582 q = blk_init_allocated_queue(md->queue, dm_request_fn, NULL);
2583 if (!q)
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002584 return -EINVAL;
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002585
Mike Snitzer0ce65792015-02-26 00:50:28 -05002586 /* disable dm_request_fn's merge heuristic by default */
2587 md->seq_rq_merge_deadline_usecs = 0;
2588
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002589 md->queue = q;
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002590 dm_init_old_md_queue(md);
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002591 blk_queue_softirq_done(md->queue, dm_softirq_done);
2592 blk_queue_prep_rq(md->queue, dm_prep_fn);
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002593
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002594 init_rq_based_worker_thread(md);
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002595
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002596 elv_register_queue(md->queue);
2597
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002598 return 0;
2599}
2600
2601static int dm_mq_init_request(void *data, struct request *rq,
2602 unsigned int hctx_idx, unsigned int request_idx,
2603 unsigned int numa_node)
2604{
2605 struct mapped_device *md = data;
2606 struct dm_rq_target_io *tio = blk_mq_rq_to_pdu(rq);
2607
2608 /*
2609 * Must initialize md member of tio, otherwise it won't
2610 * be available in dm_mq_queue_rq.
2611 */
2612 tio->md = md;
2613
2614 return 0;
2615}
2616
2617static int dm_mq_queue_rq(struct blk_mq_hw_ctx *hctx,
2618 const struct blk_mq_queue_data *bd)
2619{
2620 struct request *rq = bd->rq;
2621 struct dm_rq_target_io *tio = blk_mq_rq_to_pdu(rq);
2622 struct mapped_device *md = tio->md;
2623 int srcu_idx;
2624 struct dm_table *map = dm_get_live_table(md, &srcu_idx);
2625 struct dm_target *ti;
2626 sector_t pos;
2627
2628 /* always use block 0 to find the target for flushes for now */
2629 pos = 0;
2630 if (!(rq->cmd_flags & REQ_FLUSH))
2631 pos = blk_rq_pos(rq);
2632
2633 ti = dm_table_find_target(map, pos);
2634 if (!dm_target_is_valid(ti)) {
2635 dm_put_live_table(md, srcu_idx);
2636 DMERR_LIMIT("request attempted access beyond the end of device");
2637 /*
2638 * Must perform setup, that rq_completed() requires,
2639 * before returning BLK_MQ_RQ_QUEUE_ERROR
2640 */
2641 dm_start_request(md, rq);
2642 return BLK_MQ_RQ_QUEUE_ERROR;
2643 }
2644 dm_put_live_table(md, srcu_idx);
2645
2646 if (ti->type->busy && ti->type->busy(ti))
2647 return BLK_MQ_RQ_QUEUE_BUSY;
2648
2649 dm_start_request(md, rq);
2650
2651 /* Init tio using md established in .init_request */
2652 init_tio(tio, rq, md);
2653
Mike Snitzer02233342015-03-10 23:49:26 -04002654 /*
2655 * Establish tio->ti before queuing work (map_tio_request)
2656 * or making direct call to map_request().
2657 */
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002658 tio->ti = ti;
Mike Snitzer02233342015-03-10 23:49:26 -04002659
2660 /* Clone the request if underlying devices aren't blk-mq */
2661 if (dm_table_get_type(map) == DM_TYPE_REQUEST_BASED) {
2662 /* clone request is allocated at the end of the pdu */
2663 tio->clone = (void *)blk_mq_rq_to_pdu(rq) + sizeof(struct dm_rq_target_io);
Mike Snitzer45714fb2015-05-27 15:25:27 -04002664 (void) clone_rq(rq, md, tio, GFP_ATOMIC);
Mike Snitzer02233342015-03-10 23:49:26 -04002665 queue_kthread_work(&md->kworker, &tio->work);
2666 } else {
2667 /* Direct call is fine since .queue_rq allows allocations */
Mike Snitzer45714fb2015-05-27 15:25:27 -04002668 if (map_request(tio, rq, md) == DM_MAPIO_REQUEUE) {
2669 /* Undo dm_start_request() before requeuing */
Mikulas Patockae262f342015-06-09 17:22:49 -04002670 rq_end_stats(md, rq);
Mike Snitzer45714fb2015-05-27 15:25:27 -04002671 rq_completed(md, rq_data_dir(rq), false);
2672 return BLK_MQ_RQ_QUEUE_BUSY;
2673 }
Mike Snitzer02233342015-03-10 23:49:26 -04002674 }
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002675
2676 return BLK_MQ_RQ_QUEUE_OK;
2677}
2678
2679static struct blk_mq_ops dm_mq_ops = {
2680 .queue_rq = dm_mq_queue_rq,
2681 .map_queue = blk_mq_map_queue,
2682 .complete = dm_softirq_done,
2683 .init_request = dm_mq_init_request,
2684};
2685
2686static int dm_init_request_based_blk_mq_queue(struct mapped_device *md)
2687{
Mike Snitzer02233342015-03-10 23:49:26 -04002688 unsigned md_type = dm_get_md_type(md);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002689 struct request_queue *q;
2690 int err;
2691
2692 memset(&md->tag_set, 0, sizeof(md->tag_set));
2693 md->tag_set.ops = &dm_mq_ops;
2694 md->tag_set.queue_depth = BLKDEV_MAX_RQ;
2695 md->tag_set.numa_node = NUMA_NO_NODE;
2696 md->tag_set.flags = BLK_MQ_F_SHOULD_MERGE | BLK_MQ_F_SG_MERGE;
2697 md->tag_set.nr_hw_queues = 1;
Mike Snitzer02233342015-03-10 23:49:26 -04002698 if (md_type == DM_TYPE_REQUEST_BASED) {
2699 /* make the memory for non-blk-mq clone part of the pdu */
2700 md->tag_set.cmd_size = sizeof(struct dm_rq_target_io) + sizeof(struct request);
2701 } else
2702 md->tag_set.cmd_size = sizeof(struct dm_rq_target_io);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002703 md->tag_set.driver_data = md;
2704
2705 err = blk_mq_alloc_tag_set(&md->tag_set);
2706 if (err)
2707 return err;
2708
2709 q = blk_mq_init_allocated_queue(&md->tag_set, md->queue);
2710 if (IS_ERR(q)) {
2711 err = PTR_ERR(q);
2712 goto out_tag_set;
2713 }
2714 md->queue = q;
2715 dm_init_md_queue(md);
2716
2717 /* backfill 'mq' sysfs registration normally done in blk_register_queue */
2718 blk_mq_register_disk(md->disk);
2719
Mike Snitzer02233342015-03-10 23:49:26 -04002720 if (md_type == DM_TYPE_REQUEST_BASED)
2721 init_rq_based_worker_thread(md);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002722
2723 return 0;
2724
2725out_tag_set:
2726 blk_mq_free_tag_set(&md->tag_set);
2727 return err;
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002728}
2729
Mike Snitzer4e6e36c2015-06-26 09:42:57 -04002730static unsigned filter_md_type(unsigned type, struct mapped_device *md)
2731{
2732 if (type == DM_TYPE_BIO_BASED)
2733 return type;
2734
2735 return !md->use_blk_mq ? DM_TYPE_REQUEST_BASED : DM_TYPE_MQ_REQUEST_BASED;
2736}
2737
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002738/*
2739 * Setup the DM device's queue based on md's type
2740 */
2741int dm_setup_md_queue(struct mapped_device *md)
2742{
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002743 int r;
Mike Snitzer17e149b2015-03-11 15:01:09 -04002744 unsigned md_type = filter_md_type(dm_get_md_type(md), md);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002745
2746 switch (md_type) {
2747 case DM_TYPE_REQUEST_BASED:
2748 r = dm_init_request_based_queue(md);
2749 if (r) {
Mike Snitzerff36ab32015-02-23 17:56:37 -05002750 DMWARN("Cannot initialize queue for request-based mapped device");
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002751 return r;
Mike Snitzerff36ab32015-02-23 17:56:37 -05002752 }
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002753 break;
2754 case DM_TYPE_MQ_REQUEST_BASED:
2755 r = dm_init_request_based_blk_mq_queue(md);
2756 if (r) {
2757 DMWARN("Cannot initialize queue for request-based blk-mq mapped device");
2758 return r;
2759 }
2760 break;
2761 case DM_TYPE_BIO_BASED:
2762 dm_init_old_md_queue(md);
Mike Snitzerff36ab32015-02-23 17:56:37 -05002763 blk_queue_make_request(md->queue, dm_make_request);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002764 break;
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002765 }
2766
2767 return 0;
2768}
2769
Mikulas Patocka2bec1f42015-02-17 14:30:53 -05002770struct mapped_device *dm_get_md(dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771{
2772 struct mapped_device *md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773 unsigned minor = MINOR(dev);
2774
2775 if (MAJOR(dev) != _major || minor >= (1 << MINORBITS))
2776 return NULL;
2777
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002778 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779
2780 md = idr_find(&_minor_idr, minor);
Mikulas Patocka2bec1f42015-02-17 14:30:53 -05002781 if (md) {
2782 if ((md == MINOR_ALLOCED ||
2783 (MINOR(disk_devt(dm_disk(md))) != minor) ||
2784 dm_deleting_md(md) ||
2785 test_bit(DMF_FREEING, &md->flags))) {
2786 md = NULL;
2787 goto out;
2788 }
2789 dm_get(md);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002790 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002792out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002793 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794
David Teigland637842c2006-01-06 00:20:00 -08002795 return md;
2796}
Alasdair G Kergon3cf2e4b2011-10-31 20:19:06 +00002797EXPORT_SYMBOL_GPL(dm_get_md);
David Teiglandd229a952006-01-06 00:20:01 -08002798
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08002799void *dm_get_mdptr(struct mapped_device *md)
David Teigland637842c2006-01-06 00:20:00 -08002800{
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08002801 return md->interface_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802}
2803
2804void dm_set_mdptr(struct mapped_device *md, void *ptr)
2805{
2806 md->interface_ptr = ptr;
2807}
2808
2809void dm_get(struct mapped_device *md)
2810{
2811 atomic_inc(&md->holders);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002812 BUG_ON(test_bit(DMF_FREEING, &md->flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813}
2814
Mikulas Patocka09ee96b2015-02-26 11:41:28 -05002815int dm_hold(struct mapped_device *md)
2816{
2817 spin_lock(&_minor_lock);
2818 if (test_bit(DMF_FREEING, &md->flags)) {
2819 spin_unlock(&_minor_lock);
2820 return -EBUSY;
2821 }
2822 dm_get(md);
2823 spin_unlock(&_minor_lock);
2824 return 0;
2825}
2826EXPORT_SYMBOL_GPL(dm_hold);
2827
Alasdair G Kergon72d94862006-06-26 00:27:35 -07002828const char *dm_device_name(struct mapped_device *md)
2829{
2830 return md->name;
2831}
2832EXPORT_SYMBOL_GPL(dm_device_name);
2833
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002834static void __dm_destroy(struct mapped_device *md, bool wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835{
Mike Anderson1134e5a2006-03-27 01:17:54 -08002836 struct dm_table *map;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002837 int srcu_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002839 might_sleep();
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002840
Mike Snitzer63a4f062015-03-23 17:01:43 -04002841 spin_lock(&_minor_lock);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002842 idr_replace(&_minor_idr, MINOR_ALLOCED, MINOR(disk_devt(dm_disk(md))));
2843 set_bit(DMF_FREEING, &md->flags);
2844 spin_unlock(&_minor_lock);
2845
Mike Snitzer02233342015-03-10 23:49:26 -04002846 if (dm_request_based(md) && md->kworker_task)
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002847 flush_kthread_worker(&md->kworker);
2848
Mikulas Patockaab7c7bb2015-02-27 14:04:27 -05002849 /*
2850 * Take suspend_lock so that presuspend and postsuspend methods
2851 * do not race with internal suspend.
2852 */
2853 mutex_lock(&md->suspend_lock);
Junichi Nomura2a708cf2015-10-01 08:31:51 +00002854 map = dm_get_live_table(md, &srcu_idx);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002855 if (!dm_suspended_md(md)) {
2856 dm_table_presuspend_targets(map);
2857 dm_table_postsuspend_targets(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858 }
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002859 /* dm_put_live_table must be before msleep, otherwise deadlock is possible */
2860 dm_put_live_table(md, srcu_idx);
Junichi Nomura2a708cf2015-10-01 08:31:51 +00002861 mutex_unlock(&md->suspend_lock);
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002862
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002863 /*
2864 * Rare, but there may be I/O requests still going to complete,
2865 * for example. Wait for all references to disappear.
2866 * No one should increment the reference count of the mapped_device,
2867 * after the mapped_device state becomes DMF_FREEING.
2868 */
2869 if (wait)
2870 while (atomic_read(&md->holders))
2871 msleep(1);
2872 else if (atomic_read(&md->holders))
2873 DMWARN("%s: Forcibly removing mapped_device still in use! (%d users)",
2874 dm_device_name(md), atomic_read(&md->holders));
2875
2876 dm_sysfs_exit(md);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002877 dm_table_destroy(__unbind(md));
2878 free_dev(md);
2879}
2880
2881void dm_destroy(struct mapped_device *md)
2882{
2883 __dm_destroy(md, true);
2884}
2885
2886void dm_destroy_immediate(struct mapped_device *md)
2887{
2888 __dm_destroy(md, false);
2889}
2890
2891void dm_put(struct mapped_device *md)
2892{
2893 atomic_dec(&md->holders);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894}
Edward Goggin79eb8852007-05-09 02:32:56 -07002895EXPORT_SYMBOL_GPL(dm_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896
Mikulas Patocka401600d2009-04-02 19:55:38 +01002897static int dm_wait_for_completion(struct mapped_device *md, int interruptible)
Milan Broz46125c12008-02-08 02:10:30 +00002898{
2899 int r = 0;
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002900 DECLARE_WAITQUEUE(wait, current);
2901
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002902 add_wait_queue(&md->wait, &wait);
Milan Broz46125c12008-02-08 02:10:30 +00002903
2904 while (1) {
Mikulas Patocka401600d2009-04-02 19:55:38 +01002905 set_current_state(interruptible);
Milan Broz46125c12008-02-08 02:10:30 +00002906
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00002907 if (!md_in_flight(md))
Milan Broz46125c12008-02-08 02:10:30 +00002908 break;
2909
Mikulas Patocka401600d2009-04-02 19:55:38 +01002910 if (interruptible == TASK_INTERRUPTIBLE &&
2911 signal_pending(current)) {
Milan Broz46125c12008-02-08 02:10:30 +00002912 r = -EINTR;
2913 break;
2914 }
2915
2916 io_schedule();
2917 }
2918 set_current_state(TASK_RUNNING);
2919
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002920 remove_wait_queue(&md->wait, &wait);
2921
Milan Broz46125c12008-02-08 02:10:30 +00002922 return r;
2923}
2924
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925/*
2926 * Process the deferred bios
2927 */
Mikulas Patockaef208582009-04-02 19:55:38 +01002928static void dm_wq_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929{
Mikulas Patockaef208582009-04-02 19:55:38 +01002930 struct mapped_device *md = container_of(work, struct mapped_device,
2931 work);
Milan Broz6d6f10d2008-02-08 02:10:22 +00002932 struct bio *c;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002933 int srcu_idx;
2934 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002936 map = dm_get_live_table(md, &srcu_idx);
Mikulas Patockaef208582009-04-02 19:55:38 +01002937
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002938 while (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002939 spin_lock_irq(&md->deferred_lock);
2940 c = bio_list_pop(&md->deferred);
2941 spin_unlock_irq(&md->deferred_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01002942
Tejun Heo6a8736d2010-09-08 18:07:00 +02002943 if (!c)
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002944 break;
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002945
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002946 if (dm_request_based(md))
2947 generic_make_request(c);
Tejun Heo6a8736d2010-09-08 18:07:00 +02002948 else
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002949 __split_and_process_bio(md, map, c);
Mikulas Patocka022c2612009-04-02 19:55:39 +01002950 }
Milan Broz73d410c2008-02-08 02:10:25 +00002951
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002952 dm_put_live_table(md, srcu_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953}
2954
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002955static void dm_queue_flush(struct mapped_device *md)
Milan Broz304f3f62008-02-08 02:11:17 +00002956{
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002957 clear_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01002958 smp_mb__after_atomic();
Mikulas Patocka53d59142009-04-02 19:55:37 +01002959 queue_work(md->wq, &md->work);
Milan Broz304f3f62008-02-08 02:11:17 +00002960}
2961
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962/*
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002963 * Swap in a new table, returning the old one for the caller to destroy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964 */
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002965struct dm_table *dm_swap_table(struct mapped_device *md, struct dm_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966{
Mike Christie87eb5b22013-03-01 22:45:48 +00002967 struct dm_table *live_map = NULL, *map = ERR_PTR(-EINVAL);
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002968 struct queue_limits limits;
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002969 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970
Daniel Walkere61290a2008-02-08 02:10:08 +00002971 mutex_lock(&md->suspend_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972
2973 /* device must be suspended */
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +00002974 if (!dm_suspended_md(md))
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07002975 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976
Mike Snitzer3ae70652012-09-26 23:45:45 +01002977 /*
2978 * If the new table has no data devices, retain the existing limits.
2979 * This helps multipath with queue_if_no_path if all paths disappear,
2980 * then new I/O is queued based on these limits, and then some paths
2981 * reappear.
2982 */
2983 if (dm_table_has_no_data_devices(table)) {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002984 live_map = dm_get_live_table_fast(md);
Mike Snitzer3ae70652012-09-26 23:45:45 +01002985 if (live_map)
2986 limits = md->queue->limits;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002987 dm_put_live_table_fast(md);
Mike Snitzer3ae70652012-09-26 23:45:45 +01002988 }
2989
Mike Christie87eb5b22013-03-01 22:45:48 +00002990 if (!live_map) {
2991 r = dm_calculate_queue_limits(table, &limits);
2992 if (r) {
2993 map = ERR_PTR(r);
2994 goto out;
2995 }
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002996 }
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002997
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002998 map = __bind(md, table, &limits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07003000out:
Daniel Walkere61290a2008-02-08 02:10:08 +00003001 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00003002 return map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003}
3004
3005/*
3006 * Functions to lock and unlock any filesystem running on the
3007 * device.
3008 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07003009static int lock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010{
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08003011 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012
3013 WARN_ON(md->frozen_sb);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07003014
Mikulas Patockadb8fef42009-06-22 10:12:15 +01003015 md->frozen_sb = freeze_bdev(md->bdev);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07003016 if (IS_ERR(md->frozen_sb)) {
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07003017 r = PTR_ERR(md->frozen_sb);
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08003018 md->frozen_sb = NULL;
3019 return r;
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07003020 }
3021
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08003022 set_bit(DMF_FROZEN, &md->flags);
3023
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024 return 0;
3025}
3026
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07003027static void unlock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028{
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08003029 if (!test_bit(DMF_FROZEN, &md->flags))
3030 return;
3031
Mikulas Patockadb8fef42009-06-22 10:12:15 +01003032 thaw_bdev(md->bdev, md->frozen_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033 md->frozen_sb = NULL;
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08003034 clear_bit(DMF_FROZEN, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035}
3036
3037/*
Mike Snitzerffcc3932014-10-28 18:34:52 -04003038 * If __dm_suspend returns 0, the device is completely quiescent
3039 * now. There is no request-processing activity. All new requests
3040 * are being added to md->deferred list.
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01003041 *
Mike Snitzerffcc3932014-10-28 18:34:52 -04003042 * Caller must hold md->suspend_lock
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01003043 */
Mike Snitzerffcc3932014-10-28 18:34:52 -04003044static int __dm_suspend(struct mapped_device *md, struct dm_table *map,
3045 unsigned suspend_flags, int interruptible)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046{
Mike Snitzerffcc3932014-10-28 18:34:52 -04003047 bool do_lockfs = suspend_flags & DM_SUSPEND_LOCKFS_FLAG;
3048 bool noflush = suspend_flags & DM_SUSPEND_NOFLUSH_FLAG;
3049 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08003051 /*
3052 * DMF_NOFLUSH_SUSPENDING must be set before presuspend.
3053 * This flag is cleared before dm_suspend returns.
3054 */
3055 if (noflush)
3056 set_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
3057
Mike Snitzerd67ee212014-10-28 20:13:31 -04003058 /*
3059 * This gets reverted if there's an error later and the targets
3060 * provide the .presuspend_undo hook.
3061 */
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07003062 dm_table_presuspend_targets(map);
3063
Mikulas Patocka32a926d2009-06-22 10:12:17 +01003064 /*
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00003065 * Flush I/O to the device.
3066 * Any I/O submitted after lock_fs() may not be flushed.
3067 * noflush takes precedence over do_lockfs.
3068 * (lock_fs() flushes I/Os and waits for them to complete.)
Mikulas Patocka32a926d2009-06-22 10:12:17 +01003069 */
3070 if (!noflush && do_lockfs) {
3071 r = lock_fs(md);
Mike Snitzerd67ee212014-10-28 20:13:31 -04003072 if (r) {
3073 dm_table_presuspend_undo_targets(map);
Mike Snitzerffcc3932014-10-28 18:34:52 -04003074 return r;
Mike Snitzerd67ee212014-10-28 20:13:31 -04003075 }
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08003076 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077
3078 /*
Mikulas Patocka3b00b202009-04-09 00:27:15 +01003079 * Here we must make sure that no processes are submitting requests
3080 * to target drivers i.e. no one may be executing
3081 * __split_and_process_bio. This is called from dm_request and
3082 * dm_wq_work.
3083 *
3084 * To get all processes out of __split_and_process_bio in dm_request,
3085 * we take the write lock. To prevent any process from reentering
Tejun Heo6a8736d2010-09-08 18:07:00 +02003086 * __split_and_process_bio from dm_request and quiesce the thread
3087 * (dm_wq_work), we set BMF_BLOCK_IO_FOR_SUSPEND and call
3088 * flush_workqueue(md->wq).
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089 */
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01003090 set_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
Hannes Reinecke41abc4e2014-11-05 14:35:50 +01003091 if (map)
3092 synchronize_srcu(&md->io_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00003094 /*
Tejun Heo29e40132010-09-08 18:07:00 +02003095 * Stop md->queue before flushing md->wq in case request-based
3096 * dm defers requests to md->wq from md->queue.
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00003097 */
Keith Busch2eb6e1e2014-10-17 17:46:36 -06003098 if (dm_request_based(md)) {
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00003099 stop_queue(md->queue);
Mike Snitzer02233342015-03-10 23:49:26 -04003100 if (md->kworker_task)
3101 flush_kthread_worker(&md->kworker);
Keith Busch2eb6e1e2014-10-17 17:46:36 -06003102 }
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01003103
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00003104 flush_workqueue(md->wq);
3105
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106 /*
Mikulas Patocka3b00b202009-04-09 00:27:15 +01003107 * At this point no more requests are entering target request routines.
3108 * We call dm_wait_for_completion to wait for all existing requests
3109 * to finish.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110 */
Mike Snitzerffcc3932014-10-28 18:34:52 -04003111 r = dm_wait_for_completion(md, interruptible);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112
Milan Broz6d6f10d2008-02-08 02:10:22 +00003113 if (noflush)
Mikulas Patocka022c2612009-04-02 19:55:39 +01003114 clear_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
Hannes Reinecke41abc4e2014-11-05 14:35:50 +01003115 if (map)
3116 synchronize_srcu(&md->io_barrier);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08003117
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118 /* were we interrupted ? */
Milan Broz46125c12008-02-08 02:10:30 +00003119 if (r < 0) {
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01003120 dm_queue_flush(md);
Milan Broz73d410c2008-02-08 02:10:25 +00003121
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01003122 if (dm_request_based(md))
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00003123 start_queue(md->queue);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01003124
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07003125 unlock_fs(md);
Mike Snitzerd67ee212014-10-28 20:13:31 -04003126 dm_table_presuspend_undo_targets(map);
Mike Snitzerffcc3932014-10-28 18:34:52 -04003127 /* pushback list is already flushed, so skip flush */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07003128 }
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07003129
Mike Snitzerffcc3932014-10-28 18:34:52 -04003130 return r;
3131}
3132
3133/*
3134 * We need to be able to change a mapping table under a mounted
3135 * filesystem. For example we might want to move some data in
3136 * the background. Before the table can be swapped with
3137 * dm_bind_table, dm_suspend must be called to flush any in
3138 * flight bios and ensure that any further io gets deferred.
3139 */
3140/*
3141 * Suspend mechanism in request-based dm.
3142 *
3143 * 1. Flush all I/Os by lock_fs() if needed.
3144 * 2. Stop dispatching any I/O by stopping the request_queue.
3145 * 3. Wait for all in-flight I/Os to be completed or requeued.
3146 *
3147 * To abort suspend, start the request_queue.
3148 */
3149int dm_suspend(struct mapped_device *md, unsigned suspend_flags)
3150{
3151 struct dm_table *map = NULL;
3152 int r = 0;
3153
3154retry:
3155 mutex_lock_nested(&md->suspend_lock, SINGLE_DEPTH_NESTING);
3156
3157 if (dm_suspended_md(md)) {
3158 r = -EINVAL;
3159 goto out_unlock;
3160 }
3161
3162 if (dm_suspended_internally_md(md)) {
3163 /* already internally suspended, wait for internal resume */
3164 mutex_unlock(&md->suspend_lock);
3165 r = wait_on_bit(&md->flags, DMF_SUSPENDED_INTERNALLY, TASK_INTERRUPTIBLE);
3166 if (r)
3167 return r;
3168 goto retry;
3169 }
3170
Eric Dumazeta12f5d42014-11-23 09:34:29 -08003171 map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mike Snitzerffcc3932014-10-28 18:34:52 -04003172
3173 r = __dm_suspend(md, map, suspend_flags, TASK_INTERRUPTIBLE);
3174 if (r)
3175 goto out_unlock;
Mikulas Patocka3b00b202009-04-09 00:27:15 +01003176
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177 set_bit(DMF_SUSPENDED, &md->flags);
3178
Kiyoshi Ueda4d4471c2009-12-10 23:52:26 +00003179 dm_table_postsuspend_targets(map);
3180
Alasdair G Kergond2874832006-11-08 17:44:43 -08003181out_unlock:
Daniel Walkere61290a2008-02-08 02:10:08 +00003182 mutex_unlock(&md->suspend_lock);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07003183 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184}
3185
Mike Snitzerffcc3932014-10-28 18:34:52 -04003186static int __dm_resume(struct mapped_device *md, struct dm_table *map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187{
Mike Snitzerffcc3932014-10-28 18:34:52 -04003188 if (map) {
3189 int r = dm_table_resume_targets(map);
3190 if (r)
3191 return r;
3192 }
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07003193
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01003194 dm_queue_flush(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07003195
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01003196 /*
3197 * Flushing deferred I/Os must be done after targets are resumed
3198 * so that mapping of targets can work correctly.
3199 * Request-based dm is queueing the deferred I/Os in its request_queue.
3200 */
3201 if (dm_request_based(md))
3202 start_queue(md->queue);
3203
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07003204 unlock_fs(md);
3205
Mike Snitzerffcc3932014-10-28 18:34:52 -04003206 return 0;
3207}
3208
3209int dm_resume(struct mapped_device *md)
3210{
3211 int r = -EINVAL;
3212 struct dm_table *map = NULL;
3213
3214retry:
3215 mutex_lock_nested(&md->suspend_lock, SINGLE_DEPTH_NESTING);
3216
3217 if (!dm_suspended_md(md))
3218 goto out;
3219
3220 if (dm_suspended_internally_md(md)) {
3221 /* already internally suspended, wait for internal resume */
3222 mutex_unlock(&md->suspend_lock);
3223 r = wait_on_bit(&md->flags, DMF_SUSPENDED_INTERNALLY, TASK_INTERRUPTIBLE);
3224 if (r)
3225 return r;
3226 goto retry;
3227 }
3228
Eric Dumazeta12f5d42014-11-23 09:34:29 -08003229 map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mike Snitzerffcc3932014-10-28 18:34:52 -04003230 if (!map || !dm_table_get_size(map))
3231 goto out;
3232
3233 r = __dm_resume(md, map);
3234 if (r)
3235 goto out;
3236
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07003237 clear_bit(DMF_SUSPENDED, &md->flags);
3238
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07003239 r = 0;
3240out:
Daniel Walkere61290a2008-02-08 02:10:08 +00003241 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07003242
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07003243 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244}
3245
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003246/*
3247 * Internal suspend/resume works like userspace-driven suspend. It waits
3248 * until all bios finish and prevents issuing new bios to the target drivers.
3249 * It may be used only from the kernel.
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003250 */
3251
Mike Snitzerffcc3932014-10-28 18:34:52 -04003252static void __dm_internal_suspend(struct mapped_device *md, unsigned suspend_flags)
3253{
3254 struct dm_table *map = NULL;
3255
Mikulas Patocka96b26c82015-01-08 18:52:26 -05003256 if (md->internal_suspend_count++)
Mike Snitzerffcc3932014-10-28 18:34:52 -04003257 return; /* nested internal suspend */
3258
3259 if (dm_suspended_md(md)) {
3260 set_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
3261 return; /* nest suspend */
3262 }
3263
Eric Dumazeta12f5d42014-11-23 09:34:29 -08003264 map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mike Snitzerffcc3932014-10-28 18:34:52 -04003265
3266 /*
3267 * Using TASK_UNINTERRUPTIBLE because only NOFLUSH internal suspend is
3268 * supported. Properly supporting a TASK_INTERRUPTIBLE internal suspend
3269 * would require changing .presuspend to return an error -- avoid this
3270 * until there is a need for more elaborate variants of internal suspend.
3271 */
3272 (void) __dm_suspend(md, map, suspend_flags, TASK_UNINTERRUPTIBLE);
3273
3274 set_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
3275
3276 dm_table_postsuspend_targets(map);
3277}
3278
3279static void __dm_internal_resume(struct mapped_device *md)
3280{
Mikulas Patocka96b26c82015-01-08 18:52:26 -05003281 BUG_ON(!md->internal_suspend_count);
3282
3283 if (--md->internal_suspend_count)
Mike Snitzerffcc3932014-10-28 18:34:52 -04003284 return; /* resume from nested internal suspend */
3285
3286 if (dm_suspended_md(md))
3287 goto done; /* resume from nested suspend */
3288
3289 /*
3290 * NOTE: existing callers don't need to call dm_table_resume_targets
3291 * (which may fail -- so best to avoid it for now by passing NULL map)
3292 */
3293 (void) __dm_resume(md, NULL);
3294
3295done:
3296 clear_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
3297 smp_mb__after_atomic();
3298 wake_up_bit(&md->flags, DMF_SUSPENDED_INTERNALLY);
3299}
3300
3301void dm_internal_suspend_noflush(struct mapped_device *md)
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003302{
3303 mutex_lock(&md->suspend_lock);
Mike Snitzerffcc3932014-10-28 18:34:52 -04003304 __dm_internal_suspend(md, DM_SUSPEND_NOFLUSH_FLAG);
3305 mutex_unlock(&md->suspend_lock);
3306}
3307EXPORT_SYMBOL_GPL(dm_internal_suspend_noflush);
3308
3309void dm_internal_resume(struct mapped_device *md)
3310{
3311 mutex_lock(&md->suspend_lock);
3312 __dm_internal_resume(md);
3313 mutex_unlock(&md->suspend_lock);
3314}
3315EXPORT_SYMBOL_GPL(dm_internal_resume);
3316
3317/*
3318 * Fast variants of internal suspend/resume hold md->suspend_lock,
3319 * which prevents interaction with userspace-driven suspend.
3320 */
3321
3322void dm_internal_suspend_fast(struct mapped_device *md)
3323{
3324 mutex_lock(&md->suspend_lock);
3325 if (dm_suspended_md(md) || dm_suspended_internally_md(md))
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003326 return;
3327
3328 set_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
3329 synchronize_srcu(&md->io_barrier);
3330 flush_workqueue(md->wq);
3331 dm_wait_for_completion(md, TASK_UNINTERRUPTIBLE);
3332}
Mikulas Patockab735fed2015-02-26 11:40:35 -05003333EXPORT_SYMBOL_GPL(dm_internal_suspend_fast);
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003334
Mike Snitzerffcc3932014-10-28 18:34:52 -04003335void dm_internal_resume_fast(struct mapped_device *md)
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003336{
Mike Snitzerffcc3932014-10-28 18:34:52 -04003337 if (dm_suspended_md(md) || dm_suspended_internally_md(md))
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003338 goto done;
3339
3340 dm_queue_flush(md);
3341
3342done:
3343 mutex_unlock(&md->suspend_lock);
3344}
Mikulas Patockab735fed2015-02-26 11:40:35 -05003345EXPORT_SYMBOL_GPL(dm_internal_resume_fast);
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003346
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347/*-----------------------------------------------------------------
3348 * Event notification.
3349 *---------------------------------------------------------------*/
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00003350int dm_kobject_uevent(struct mapped_device *md, enum kobject_action action,
Milan Broz60935eb2009-06-22 10:12:30 +01003351 unsigned cookie)
Alasdair G Kergon69267a32007-12-13 14:15:57 +00003352{
Milan Broz60935eb2009-06-22 10:12:30 +01003353 char udev_cookie[DM_COOKIE_LENGTH];
3354 char *envp[] = { udev_cookie, NULL };
3355
3356 if (!cookie)
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00003357 return kobject_uevent(&disk_to_dev(md->disk)->kobj, action);
Milan Broz60935eb2009-06-22 10:12:30 +01003358 else {
3359 snprintf(udev_cookie, DM_COOKIE_LENGTH, "%s=%u",
3360 DM_COOKIE_ENV_VAR_NAME, cookie);
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00003361 return kobject_uevent_env(&disk_to_dev(md->disk)->kobj,
3362 action, envp);
Milan Broz60935eb2009-06-22 10:12:30 +01003363 }
Alasdair G Kergon69267a32007-12-13 14:15:57 +00003364}
3365
Mike Anderson7a8c3d32007-10-19 22:48:01 +01003366uint32_t dm_next_uevent_seq(struct mapped_device *md)
3367{
3368 return atomic_add_return(1, &md->uevent_seq);
3369}
3370
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371uint32_t dm_get_event_nr(struct mapped_device *md)
3372{
3373 return atomic_read(&md->event_nr);
3374}
3375
3376int dm_wait_event(struct mapped_device *md, int event_nr)
3377{
3378 return wait_event_interruptible(md->eventq,
3379 (event_nr != atomic_read(&md->event_nr)));
3380}
3381
Mike Anderson7a8c3d32007-10-19 22:48:01 +01003382void dm_uevent_add(struct mapped_device *md, struct list_head *elist)
3383{
3384 unsigned long flags;
3385
3386 spin_lock_irqsave(&md->uevent_lock, flags);
3387 list_add(elist, &md->uevent_list);
3388 spin_unlock_irqrestore(&md->uevent_lock, flags);
3389}
3390
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391/*
3392 * The gendisk is only valid as long as you have a reference
3393 * count on 'md'.
3394 */
3395struct gendisk *dm_disk(struct mapped_device *md)
3396{
3397 return md->disk;
3398}
Sami Tolvanen65ff5b72015-03-18 15:52:14 +00003399EXPORT_SYMBOL_GPL(dm_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400
Milan Broz784aae72009-01-06 03:05:12 +00003401struct kobject *dm_kobject(struct mapped_device *md)
3402{
Mikulas Patocka2995fa72014-01-13 19:37:54 -05003403 return &md->kobj_holder.kobj;
Milan Broz784aae72009-01-06 03:05:12 +00003404}
3405
Milan Broz784aae72009-01-06 03:05:12 +00003406struct mapped_device *dm_get_from_kobject(struct kobject *kobj)
3407{
3408 struct mapped_device *md;
3409
Mikulas Patocka2995fa72014-01-13 19:37:54 -05003410 md = container_of(kobj, struct mapped_device, kobj_holder.kobj);
Milan Broz784aae72009-01-06 03:05:12 +00003411
Milan Broz4d89b7b2009-06-22 10:12:11 +01003412 if (test_bit(DMF_FREEING, &md->flags) ||
Mike Anderson432a2122009-12-10 23:52:20 +00003413 dm_deleting_md(md))
Milan Broz4d89b7b2009-06-22 10:12:11 +01003414 return NULL;
3415
Milan Broz784aae72009-01-06 03:05:12 +00003416 dm_get(md);
3417 return md;
3418}
3419
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +00003420int dm_suspended_md(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421{
3422 return test_bit(DMF_SUSPENDED, &md->flags);
3423}
3424
Mike Snitzerffcc3932014-10-28 18:34:52 -04003425int dm_suspended_internally_md(struct mapped_device *md)
3426{
3427 return test_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
3428}
3429
Mikulas Patocka2c140a22013-11-01 18:27:41 -04003430int dm_test_deferred_remove_flag(struct mapped_device *md)
3431{
3432 return test_bit(DMF_DEFERRED_REMOVE, &md->flags);
3433}
3434
Kiyoshi Ueda64dbce52009-12-10 23:52:27 +00003435int dm_suspended(struct dm_target *ti)
3436{
Kiyoshi Uedaecdb2e22010-03-06 02:29:52 +00003437 return dm_suspended_md(dm_table_get_md(ti->table));
Kiyoshi Ueda64dbce52009-12-10 23:52:27 +00003438}
3439EXPORT_SYMBOL_GPL(dm_suspended);
3440
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08003441int dm_noflush_suspending(struct dm_target *ti)
3442{
Kiyoshi Uedaecdb2e22010-03-06 02:29:52 +00003443 return __noflush_suspending(dm_table_get_md(ti->table));
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08003444}
3445EXPORT_SYMBOL_GPL(dm_noflush_suspending);
3446
Mike Snitzer78d8e582015-06-26 10:01:13 -04003447struct dm_md_mempools *dm_alloc_md_mempools(struct mapped_device *md, unsigned type,
3448 unsigned integrity, unsigned per_bio_data_size)
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003449{
Mike Snitzer78d8e582015-06-26 10:01:13 -04003450 struct dm_md_mempools *pools = kzalloc(sizeof(*pools), GFP_KERNEL);
3451 struct kmem_cache *cachep = NULL;
3452 unsigned int pool_size = 0;
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003453 unsigned int front_pad;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003454
3455 if (!pools)
Mike Snitzer4e6e36c2015-06-26 09:42:57 -04003456 return NULL;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003457
Mike Snitzer78d8e582015-06-26 10:01:13 -04003458 type = filter_md_type(type, md);
Mike Snitzer17e149b2015-03-11 15:01:09 -04003459
Mike Snitzer78d8e582015-06-26 10:01:13 -04003460 switch (type) {
3461 case DM_TYPE_BIO_BASED:
3462 cachep = _io_cache;
3463 pool_size = dm_get_reserved_bio_based_ios();
3464 front_pad = roundup(per_bio_data_size, __alignof__(struct dm_target_io)) + offsetof(struct dm_target_io, clone);
3465 break;
3466 case DM_TYPE_REQUEST_BASED:
3467 cachep = _rq_tio_cache;
3468 pool_size = dm_get_reserved_rq_based_ios();
3469 pools->rq_pool = mempool_create_slab_pool(pool_size, _rq_cache);
3470 if (!pools->rq_pool)
3471 goto out;
3472 /* fall through to setup remaining rq-based pools */
3473 case DM_TYPE_MQ_REQUEST_BASED:
3474 if (!pool_size)
3475 pool_size = dm_get_reserved_rq_based_ios();
3476 front_pad = offsetof(struct dm_rq_clone_bio_info, clone);
3477 /* per_bio_data_size is not used. See __bind_mempools(). */
3478 WARN_ON(per_bio_data_size != 0);
3479 break;
3480 default:
3481 BUG();
3482 }
3483
3484 if (cachep) {
3485 pools->io_pool = mempool_create_slab_pool(pool_size, cachep);
3486 if (!pools->io_pool)
3487 goto out;
3488 }
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003489
Junichi Nomura3d8aab22014-10-03 11:55:26 +00003490 pools->bs = bioset_create_nobvec(pool_size, front_pad);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003491 if (!pools->bs)
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003492 goto out;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003493
Martin K. Petersena91a2782011-03-17 11:11:05 +01003494 if (integrity && bioset_integrity_create(pools->bs, pool_size))
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003495 goto out;
Martin K. Petersena91a2782011-03-17 11:11:05 +01003496
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003497 return pools;
Mike Snitzer78d8e582015-06-26 10:01:13 -04003498
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003499out:
3500 dm_free_md_mempools(pools);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003501
Mike Snitzer4e6e36c2015-06-26 09:42:57 -04003502 return NULL;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003503}
3504
3505void dm_free_md_mempools(struct dm_md_mempools *pools)
3506{
3507 if (!pools)
3508 return;
3509
3510 if (pools->io_pool)
3511 mempool_destroy(pools->io_pool);
3512
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05003513 if (pools->rq_pool)
3514 mempool_destroy(pools->rq_pool);
3515
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003516 if (pools->bs)
3517 bioset_free(pools->bs);
3518
3519 kfree(pools);
3520}
3521
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07003522static const struct block_device_operations dm_blk_dops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523 .open = dm_blk_open,
3524 .release = dm_blk_close,
Milan Brozaa129a22006-10-03 01:15:15 -07003525 .ioctl = dm_blk_ioctl,
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08003526 .getgeo = dm_blk_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527 .owner = THIS_MODULE
3528};
3529
Linus Torvalds1da177e2005-04-16 15:20:36 -07003530/*
3531 * module hooks
3532 */
3533module_init(dm_init);
3534module_exit(dm_exit);
3535
3536module_param(major, uint, 0);
3537MODULE_PARM_DESC(major, "The major number of the device mapper");
Mike Snitzerf4790822013-09-12 18:06:12 -04003538
Mike Snitzere8603132013-09-12 18:06:12 -04003539module_param(reserved_bio_based_ios, uint, S_IRUGO | S_IWUSR);
3540MODULE_PARM_DESC(reserved_bio_based_ios, "Reserved IOs in bio-based mempools");
3541
Mike Snitzerf4790822013-09-12 18:06:12 -04003542module_param(reserved_rq_based_ios, uint, S_IRUGO | S_IWUSR);
3543MODULE_PARM_DESC(reserved_rq_based_ios, "Reserved IOs in request-based mempools");
3544
Mike Snitzer17e149b2015-03-11 15:01:09 -04003545module_param(use_blk_mq, bool, S_IRUGO | S_IWUSR);
3546MODULE_PARM_DESC(use_blk_mq, "Use block multiqueue for request-based DM devices");
3547
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548MODULE_DESCRIPTION(DM_NAME " driver");
3549MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
3550MODULE_LICENSE("GPL");