blob: 621450282d08933bdeba55087cda89939bc053fc [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>
Christoph Hellwig71cdb692015-10-15 14:10:51 +020027#include <linux/pr.h>
Li Zefan55782132009-06-09 13:43:05 +080028
29#include <trace/events/block.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Alasdair G Kergon72d94862006-06-26 00:27:35 -070031#define DM_MSG_PREFIX "core"
32
Namhyung Kim71a16732011-10-31 20:18:54 +000033#ifdef CONFIG_PRINTK
34/*
35 * ratelimit state to be used in DMXXX_LIMIT().
36 */
37DEFINE_RATELIMIT_STATE(dm_ratelimit_state,
38 DEFAULT_RATELIMIT_INTERVAL,
39 DEFAULT_RATELIMIT_BURST);
40EXPORT_SYMBOL(dm_ratelimit_state);
41#endif
42
Milan Broz60935eb2009-06-22 10:12:30 +010043/*
44 * Cookies are numeric values sent with CHANGE and REMOVE
45 * uevents while resuming, removing or renaming the device.
46 */
47#define DM_COOKIE_ENV_VAR_NAME "DM_COOKIE"
48#define DM_COOKIE_LENGTH 24
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050static const char *_name = DM_NAME;
51
52static unsigned int major = 0;
53static unsigned int _major = 0;
54
Alasdair G Kergond15b7742011-08-02 12:32:01 +010055static DEFINE_IDR(_minor_idr);
56
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -070057static DEFINE_SPINLOCK(_minor_lock);
Mikulas Patocka2c140a22013-11-01 18:27:41 -040058
59static void do_deferred_remove(struct work_struct *w);
60
61static DECLARE_WORK(deferred_remove_work, do_deferred_remove);
62
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -040063static struct workqueue_struct *deferred_remove_workqueue;
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065/*
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000066 * For bio-based dm.
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 * One of these is allocated per bio.
68 */
69struct dm_io {
70 struct mapped_device *md;
71 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 atomic_t io_count;
Richard Kennedy6ae2fa62008-07-21 12:00:28 +010073 struct bio *bio;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -080074 unsigned long start_time;
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +010075 spinlock_t endio_lock;
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -040076 struct dm_stats_aux stats_aux;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077};
78
79/*
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000080 * For request-based dm.
81 * One of these is allocated per request.
82 */
83struct dm_rq_target_io {
84 struct mapped_device *md;
85 struct dm_target *ti;
Mike Snitzer1ae49ea2014-12-05 17:11:05 -050086 struct request *orig, *clone;
Keith Busch2eb6e1e2014-10-17 17:46:36 -060087 struct kthread_work work;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000088 int error;
89 union map_info info;
Mikulas Patockae262f342015-06-09 17:22:49 -040090 struct dm_stats_aux stats_aux;
91 unsigned long duration_jiffies;
92 unsigned n_sectors;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000093};
94
95/*
Kent Overstreet94818742012-09-07 13:44:01 -070096 * For request-based dm - the bio clones we allocate are embedded in these
97 * structs.
98 *
99 * We allocate these with bio_alloc_bioset, using the front_pad parameter when
100 * the bioset is created - this means the bio has to come at the end of the
101 * struct.
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000102 */
103struct dm_rq_clone_bio_info {
104 struct bio *orig;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100105 struct dm_rq_target_io *tio;
Kent Overstreet94818742012-09-07 13:44:01 -0700106 struct bio clone;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000107};
108
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -0700109#define MINOR_ALLOCED ((void *)-1)
110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111/*
112 * Bits for the md->flags field.
113 */
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +0100114#define DMF_BLOCK_IO_FOR_SUSPEND 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115#define DMF_SUSPENDED 1
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -0800116#define DMF_FROZEN 2
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700117#define DMF_FREEING 3
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700118#define DMF_DELETING 4
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800119#define DMF_NOFLUSH_SUSPENDING 5
Kent Overstreet8ae12662015-04-27 23:48:34 -0700120#define DMF_DEFERRED_REMOVE 6
121#define DMF_SUSPENDED_INTERNALLY 7
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Milan Broz304f3f62008-02-08 02:11:17 +0000123/*
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100124 * A dummy definition to make RCU happy.
125 * struct dm_table should never be dereferenced in this file.
126 */
127struct dm_table {
128 int undefined__;
129};
130
131/*
Milan Broz304f3f62008-02-08 02:11:17 +0000132 * Work processed by per-device workqueue.
133 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134struct mapped_device {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100135 struct srcu_struct io_barrier;
Daniel Walkere61290a2008-02-08 02:10:08 +0000136 struct mutex suspend_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 atomic_t holders;
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700138 atomic_t open_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Mikulas Patocka2a7faeb2013-07-10 23:41:18 +0100140 /*
141 * The current mapping.
142 * Use dm_get_live_table{_fast} or take suspend_lock for
143 * dereference.
144 */
Pranith Kumar6fa99522014-10-28 15:09:57 -0700145 struct dm_table __rcu *map;
Mikulas Patocka2a7faeb2013-07-10 23:41:18 +0100146
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500147 struct list_head table_devices;
148 struct mutex table_devices_lock;
149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 unsigned long flags;
151
Jens Axboe165125e2007-07-24 09:28:11 +0200152 struct request_queue *queue;
Mike Snitzera5664da2010-08-12 04:14:01 +0100153 unsigned type;
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +0100154 /* Protect queue and type against concurrent access. */
Mike Snitzera5664da2010-08-12 04:14:01 +0100155 struct mutex type_lock;
156
Mike Snitzer16f12262016-01-31 17:22:27 -0500157 struct dm_target *immutable_target;
Alasdair G Kergon36a04562011-10-31 20:19:04 +0000158 struct target_type *immutable_target_type;
159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 struct gendisk *disk;
Mike Anderson7e51f252006-03-27 01:17:52 -0800161 char name[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
163 void *interface_ptr;
164
165 /*
166 * A list of ios that arrived while we were suspended.
167 */
Nikanth Karthikesan316d3152009-10-06 20:16:55 +0200168 atomic_t pending[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 wait_queue_head_t wait;
Mikulas Patocka53d59142009-04-02 19:55:37 +0100170 struct work_struct work;
Kiyoshi Ueda74859362006-12-08 02:41:02 -0800171 struct bio_list deferred;
Mikulas Patocka022c2612009-04-02 19:55:39 +0100172 spinlock_t deferred_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
174 /*
Tejun Heo29e40132010-09-08 18:07:00 +0200175 * Processing queue (flush)
Milan Broz304f3f62008-02-08 02:11:17 +0000176 */
177 struct workqueue_struct *wq;
178
179 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 * io objects are allocated from here.
181 */
182 mempool_t *io_pool;
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500183 mempool_t *rq_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Stefan Bader9faf4002006-10-03 01:15:41 -0700185 struct bio_set *bs;
186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 /*
188 * Event handling.
189 */
190 atomic_t event_nr;
191 wait_queue_head_t eventq;
Mike Anderson7a8c3d32007-10-19 22:48:01 +0100192 atomic_t uevent_seq;
193 struct list_head uevent_list;
194 spinlock_t uevent_lock; /* Protect access to uevent_list */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
196 /*
197 * freeze/thaw support require holding onto a super block
198 */
199 struct super_block *frozen_sb;
Mikulas Patockadb8fef42009-06-22 10:12:15 +0100200 struct block_device *bdev;
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800201
202 /* forced geometry settings */
203 struct hd_geometry geometry;
Milan Broz784aae72009-01-06 03:05:12 +0000204
Mikulas Patocka2995fa72014-01-13 19:37:54 -0500205 /* kobject and completion */
206 struct dm_kobject_holder kobj_holder;
Mikulas Patockabe35f482014-01-06 23:01:22 -0500207
Tejun Heod87f4c12010-09-03 11:56:19 +0200208 /* zero-length flush that will be cloned and submitted to targets */
209 struct bio flush_bio;
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400210
Mikulas Patocka96b26c82015-01-08 18:52:26 -0500211 /* the number of internal suspends */
212 unsigned internal_suspend_count;
213
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400214 struct dm_stats stats;
Keith Busch2eb6e1e2014-10-17 17:46:36 -0600215
216 struct kthread_worker kworker;
217 struct task_struct *kworker_task;
Mike Snitzerde3ec862015-02-24 21:58:21 -0500218
219 /* for request-based merge heuristic in dm_request_fn() */
Mike Snitzer0ce65792015-02-26 00:50:28 -0500220 unsigned seq_rq_merge_deadline_usecs;
Mike Snitzerde3ec862015-02-24 21:58:21 -0500221 int last_rq_rw;
Mike Snitzer0ce65792015-02-26 00:50:28 -0500222 sector_t last_rq_pos;
223 ktime_t last_rq_start_time;
Mike Snitzerbfebd1c2015-03-08 00:51:47 -0500224
225 /* for blk-mq request-based DM support */
226 struct blk_mq_tag_set tag_set;
Mike Snitzer17e149b2015-03-11 15:01:09 -0400227 bool use_blk_mq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228};
229
Mike Snitzer17e149b2015-03-11 15:01:09 -0400230#ifdef CONFIG_DM_MQ_DEFAULT
231static bool use_blk_mq = true;
232#else
233static bool use_blk_mq = false;
234#endif
235
236bool dm_use_blk_mq(struct mapped_device *md)
237{
238 return md->use_blk_mq;
239}
240
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +0100241/*
242 * For mempools pre-allocation at the table loading time.
243 */
244struct dm_md_mempools {
245 mempool_t *io_pool;
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500246 mempool_t *rq_pool;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +0100247 struct bio_set *bs;
248};
249
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500250struct table_device {
251 struct list_head list;
252 atomic_t count;
253 struct dm_dev dm_dev;
254};
255
Mike Snitzer6cfa5852013-09-12 18:06:11 -0400256#define RESERVED_BIO_BASED_IOS 16
257#define RESERVED_REQUEST_BASED_IOS 256
Mike Snitzerf4790822013-09-12 18:06:12 -0400258#define RESERVED_MAX_IOS 1024
Christoph Lametere18b8902006-12-06 20:33:20 -0800259static struct kmem_cache *_io_cache;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000260static struct kmem_cache *_rq_tio_cache;
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500261static struct kmem_cache *_rq_cache;
Kent Overstreet94818742012-09-07 13:44:01 -0700262
Mike Snitzerf4790822013-09-12 18:06:12 -0400263/*
Mike Snitzere8603132013-09-12 18:06:12 -0400264 * Bio-based DM's mempools' reserved IOs set by the user.
265 */
266static unsigned reserved_bio_based_ios = RESERVED_BIO_BASED_IOS;
267
268/*
Mike Snitzerf4790822013-09-12 18:06:12 -0400269 * Request-based DM's mempools' reserved IOs set by the user.
270 */
271static unsigned reserved_rq_based_ios = RESERVED_REQUEST_BASED_IOS;
272
Mike Snitzer09c2d532015-02-27 22:25:26 -0500273static unsigned __dm_get_module_param(unsigned *module_param,
Mike Snitzerf4790822013-09-12 18:06:12 -0400274 unsigned def, unsigned max)
275{
Mike Snitzer09c2d532015-02-27 22:25:26 -0500276 unsigned param = ACCESS_ONCE(*module_param);
277 unsigned modified_param = 0;
Mike Snitzerf4790822013-09-12 18:06:12 -0400278
Mike Snitzer09c2d532015-02-27 22:25:26 -0500279 if (!param)
280 modified_param = def;
281 else if (param > max)
282 modified_param = max;
Mike Snitzerf4790822013-09-12 18:06:12 -0400283
Mike Snitzer09c2d532015-02-27 22:25:26 -0500284 if (modified_param) {
285 (void)cmpxchg(module_param, param, modified_param);
286 param = modified_param;
Mike Snitzerf4790822013-09-12 18:06:12 -0400287 }
288
Mike Snitzer09c2d532015-02-27 22:25:26 -0500289 return param;
Mike Snitzerf4790822013-09-12 18:06:12 -0400290}
291
Mike Snitzere8603132013-09-12 18:06:12 -0400292unsigned dm_get_reserved_bio_based_ios(void)
293{
Mike Snitzer09c2d532015-02-27 22:25:26 -0500294 return __dm_get_module_param(&reserved_bio_based_ios,
Mike Snitzere8603132013-09-12 18:06:12 -0400295 RESERVED_BIO_BASED_IOS, RESERVED_MAX_IOS);
296}
297EXPORT_SYMBOL_GPL(dm_get_reserved_bio_based_ios);
298
Mike Snitzerf4790822013-09-12 18:06:12 -0400299unsigned dm_get_reserved_rq_based_ios(void)
300{
Mike Snitzer09c2d532015-02-27 22:25:26 -0500301 return __dm_get_module_param(&reserved_rq_based_ios,
Mike Snitzerf4790822013-09-12 18:06:12 -0400302 RESERVED_REQUEST_BASED_IOS, RESERVED_MAX_IOS);
303}
304EXPORT_SYMBOL_GPL(dm_get_reserved_rq_based_ios);
305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306static int __init local_init(void)
307{
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100308 int r = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 /* allocate a slab for the dm_ios */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100311 _io_cache = KMEM_CACHE(dm_io, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 if (!_io_cache)
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100313 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000315 _rq_tio_cache = KMEM_CACHE(dm_rq_target_io, 0);
316 if (!_rq_tio_cache)
Mikulas Patockadba14162012-10-12 21:02:15 +0100317 goto out_free_io_cache;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000318
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500319 _rq_cache = kmem_cache_create("dm_clone_request", sizeof(struct request),
320 __alignof__(struct request), 0, NULL);
321 if (!_rq_cache)
322 goto out_free_rq_tio_cache;
323
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100324 r = dm_uevent_init();
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100325 if (r)
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500326 goto out_free_rq_cache;
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100327
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400328 deferred_remove_workqueue = alloc_workqueue("kdmremove", WQ_UNBOUND, 1);
329 if (!deferred_remove_workqueue) {
330 r = -ENOMEM;
331 goto out_uevent_exit;
332 }
333
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 _major = major;
335 r = register_blkdev(_major, _name);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100336 if (r < 0)
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400337 goto out_free_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339 if (!_major)
340 _major = r;
341
342 return 0;
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100343
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400344out_free_workqueue:
345 destroy_workqueue(deferred_remove_workqueue);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100346out_uevent_exit:
347 dm_uevent_exit();
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500348out_free_rq_cache:
349 kmem_cache_destroy(_rq_cache);
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000350out_free_rq_tio_cache:
351 kmem_cache_destroy(_rq_tio_cache);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100352out_free_io_cache:
353 kmem_cache_destroy(_io_cache);
354
355 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356}
357
358static void local_exit(void)
359{
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400360 flush_scheduled_work();
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400361 destroy_workqueue(deferred_remove_workqueue);
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400362
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500363 kmem_cache_destroy(_rq_cache);
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000364 kmem_cache_destroy(_rq_tio_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 kmem_cache_destroy(_io_cache);
Akinobu Mita00d59402007-07-17 04:03:46 -0700366 unregister_blkdev(_major, _name);
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100367 dm_uevent_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
369 _major = 0;
370
371 DMINFO("cleaned up");
372}
373
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000374static int (*_inits[])(void) __initdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 local_init,
376 dm_target_init,
377 dm_linear_init,
378 dm_stripe_init,
Mikulas Patocka952b3552009-12-10 23:51:57 +0000379 dm_io_init,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100380 dm_kcopyd_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 dm_interface_init,
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400382 dm_statistics_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383};
384
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000385static void (*_exits[])(void) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 local_exit,
387 dm_target_exit,
388 dm_linear_exit,
389 dm_stripe_exit,
Mikulas Patocka952b3552009-12-10 23:51:57 +0000390 dm_io_exit,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100391 dm_kcopyd_exit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 dm_interface_exit,
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400393 dm_statistics_exit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394};
395
396static int __init dm_init(void)
397{
398 const int count = ARRAY_SIZE(_inits);
399
400 int r, i;
401
402 for (i = 0; i < count; i++) {
403 r = _inits[i]();
404 if (r)
405 goto bad;
406 }
407
408 return 0;
409
410 bad:
411 while (i--)
412 _exits[i]();
413
414 return r;
415}
416
417static void __exit dm_exit(void)
418{
419 int i = ARRAY_SIZE(_exits);
420
421 while (i--)
422 _exits[i]();
Alasdair G Kergond15b7742011-08-02 12:32:01 +0100423
424 /*
425 * Should be empty by this point.
426 */
Alasdair G Kergond15b7742011-08-02 12:32:01 +0100427 idr_destroy(&_minor_idr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428}
429
430/*
431 * Block device functions
432 */
Mike Anderson432a2122009-12-10 23:52:20 +0000433int dm_deleting_md(struct mapped_device *md)
434{
435 return test_bit(DMF_DELETING, &md->flags);
436}
437
Al Virofe5f9f22008-03-02 10:29:31 -0500438static int dm_blk_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439{
440 struct mapped_device *md;
441
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700442 spin_lock(&_minor_lock);
443
Al Virofe5f9f22008-03-02 10:29:31 -0500444 md = bdev->bd_disk->private_data;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700445 if (!md)
446 goto out;
447
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700448 if (test_bit(DMF_FREEING, &md->flags) ||
Mike Anderson432a2122009-12-10 23:52:20 +0000449 dm_deleting_md(md)) {
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700450 md = NULL;
451 goto out;
452 }
453
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 dm_get(md);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700455 atomic_inc(&md->open_count);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700456out:
457 spin_unlock(&_minor_lock);
458
459 return md ? 0 : -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460}
461
Al Virodb2a1442013-05-05 21:52:57 -0400462static void dm_blk_close(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463{
Mike Snitzer63a4f062015-03-23 17:01:43 -0400464 struct mapped_device *md;
Arnd Bergmann6e9624b2010-08-07 18:25:34 +0200465
Milan Broz4a1aeb92011-01-13 19:59:48 +0000466 spin_lock(&_minor_lock);
467
Mike Snitzer63a4f062015-03-23 17:01:43 -0400468 md = disk->private_data;
469 if (WARN_ON(!md))
470 goto out;
471
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400472 if (atomic_dec_and_test(&md->open_count) &&
473 (test_bit(DMF_DEFERRED_REMOVE, &md->flags)))
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400474 queue_work(deferred_remove_workqueue, &deferred_remove_work);
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400475
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 dm_put(md);
Mike Snitzer63a4f062015-03-23 17:01:43 -0400477out:
Milan Broz4a1aeb92011-01-13 19:59:48 +0000478 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479}
480
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700481int dm_open_count(struct mapped_device *md)
482{
483 return atomic_read(&md->open_count);
484}
485
486/*
487 * Guarantees nothing is using the device before it's deleted.
488 */
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400489int dm_lock_for_deletion(struct mapped_device *md, bool mark_deferred, bool only_deferred)
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700490{
491 int r = 0;
492
493 spin_lock(&_minor_lock);
494
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400495 if (dm_open_count(md)) {
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700496 r = -EBUSY;
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400497 if (mark_deferred)
498 set_bit(DMF_DEFERRED_REMOVE, &md->flags);
499 } else if (only_deferred && !test_bit(DMF_DEFERRED_REMOVE, &md->flags))
500 r = -EEXIST;
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700501 else
502 set_bit(DMF_DELETING, &md->flags);
503
504 spin_unlock(&_minor_lock);
505
506 return r;
507}
508
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400509int dm_cancel_deferred_remove(struct mapped_device *md)
510{
511 int r = 0;
512
513 spin_lock(&_minor_lock);
514
515 if (test_bit(DMF_DELETING, &md->flags))
516 r = -EBUSY;
517 else
518 clear_bit(DMF_DEFERRED_REMOVE, &md->flags);
519
520 spin_unlock(&_minor_lock);
521
522 return r;
523}
524
525static void do_deferred_remove(struct work_struct *w)
526{
527 dm_deferred_remove();
528}
529
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400530sector_t dm_get_size(struct mapped_device *md)
531{
532 return get_capacity(md->disk);
533}
534
Mike Snitzer9974fa22014-02-28 15:33:43 +0100535struct request_queue *dm_get_md_queue(struct mapped_device *md)
536{
537 return md->queue;
538}
539
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400540struct dm_stats *dm_get_stats(struct mapped_device *md)
541{
542 return &md->stats;
543}
544
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800545static int dm_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
546{
547 struct mapped_device *md = bdev->bd_disk->private_data;
548
549 return dm_get_geometry(md, geo);
550}
551
Mike Snitzer956a4022016-02-18 16:13:51 -0500552static int dm_grab_bdev_for_ioctl(struct mapped_device *md,
553 struct block_device **bdev,
554 fmode_t *mode)
Milan Brozaa129a22006-10-03 01:15:15 -0700555{
Mike Snitzer66482022016-02-18 15:44:39 -0500556 struct dm_target *tgt;
Hannes Reinecke6c182cd2013-07-10 23:41:15 +0100557 struct dm_table *map;
Mike Snitzer956a4022016-02-18 16:13:51 -0500558 int srcu_idx, r;
Milan Brozaa129a22006-10-03 01:15:15 -0700559
Hannes Reinecke6c182cd2013-07-10 23:41:15 +0100560retry:
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200561 r = -ENOTTY;
Mike Snitzer956a4022016-02-18 16:13:51 -0500562 map = dm_get_live_table(md, &srcu_idx);
Milan Brozaa129a22006-10-03 01:15:15 -0700563 if (!map || !dm_table_get_size(map))
564 goto out;
565
566 /* We only support devices that have a single target */
567 if (dm_table_get_num_targets(map) != 1)
568 goto out;
569
Mike Snitzer66482022016-02-18 15:44:39 -0500570 tgt = dm_table_get_target(map, 0);
571 if (!tgt->type->prepare_ioctl)
Mike Snitzer4d341d82014-11-16 14:21:47 -0500572 goto out;
Milan Brozaa129a22006-10-03 01:15:15 -0700573
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +0000574 if (dm_suspended_md(md)) {
Milan Brozaa129a22006-10-03 01:15:15 -0700575 r = -EAGAIN;
576 goto out;
577 }
578
Mike Snitzer66482022016-02-18 15:44:39 -0500579 r = tgt->type->prepare_ioctl(tgt, bdev, mode);
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200580 if (r < 0)
581 goto out;
582
Mike Snitzer956a4022016-02-18 16:13:51 -0500583 bdgrab(*bdev);
584 dm_put_live_table(md, srcu_idx);
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200585 return r;
Milan Brozaa129a22006-10-03 01:15:15 -0700586
587out:
Mike Snitzer956a4022016-02-18 16:13:51 -0500588 dm_put_live_table(md, srcu_idx);
Junichi Nomura5bbbfdf2015-11-17 09:39:26 +0000589 if (r == -ENOTCONN && !fatal_signal_pending(current)) {
Hannes Reinecke6c182cd2013-07-10 23:41:15 +0100590 msleep(10);
591 goto retry;
592 }
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200593 return r;
594}
Hannes Reinecke6c182cd2013-07-10 23:41:15 +0100595
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200596static int dm_blk_ioctl(struct block_device *bdev, fmode_t mode,
597 unsigned int cmd, unsigned long arg)
598{
599 struct mapped_device *md = bdev->bd_disk->private_data;
Mike Snitzer956a4022016-02-18 16:13:51 -0500600 int r;
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200601
Mike Snitzer956a4022016-02-18 16:13:51 -0500602 r = dm_grab_bdev_for_ioctl(md, &bdev, &mode);
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200603 if (r < 0)
604 return r;
605
606 if (r > 0) {
607 /*
608 * Target determined this ioctl is being issued against
609 * a logical partition of the parent bdev; so extra
610 * validation is needed.
611 */
612 r = scsi_verify_blk_ioctl(NULL, cmd);
613 if (r)
614 goto out;
615 }
616
Mike Snitzer66482022016-02-18 15:44:39 -0500617 r = __blkdev_driver_ioctl(bdev, mode, cmd, arg);
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200618out:
Mike Snitzer956a4022016-02-18 16:13:51 -0500619 bdput(bdev);
Milan Brozaa129a22006-10-03 01:15:15 -0700620 return r;
621}
622
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100623static struct dm_io *alloc_io(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624{
625 return mempool_alloc(md->io_pool, GFP_NOIO);
626}
627
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100628static void free_io(struct mapped_device *md, struct dm_io *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629{
630 mempool_free(io, md->io_pool);
631}
632
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100633static void free_tio(struct mapped_device *md, struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634{
Mikulas Patockadba14162012-10-12 21:02:15 +0100635 bio_put(&tio->clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636}
637
Kiyoshi Ueda08885642009-12-10 23:52:15 +0000638static struct dm_rq_target_io *alloc_rq_tio(struct mapped_device *md,
639 gfp_t gfp_mask)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100640{
Jun'ichi Nomura5f015202013-03-01 22:45:48 +0000641 return mempool_alloc(md->io_pool, gfp_mask);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100642}
643
644static void free_rq_tio(struct dm_rq_target_io *tio)
645{
Jun'ichi Nomura5f015202013-03-01 22:45:48 +0000646 mempool_free(tio, tio->md->io_pool);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100647}
648
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500649static struct request *alloc_clone_request(struct mapped_device *md,
650 gfp_t gfp_mask)
651{
652 return mempool_alloc(md->rq_pool, gfp_mask);
653}
654
655static void free_clone_request(struct mapped_device *md, struct request *rq)
656{
657 mempool_free(rq, md->rq_pool);
658}
659
Kiyoshi Ueda90abb8c2009-12-10 23:52:13 +0000660static int md_in_flight(struct mapped_device *md)
661{
662 return atomic_read(&md->pending[READ]) +
663 atomic_read(&md->pending[WRITE]);
664}
665
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800666static void start_io_acct(struct dm_io *io)
667{
668 struct mapped_device *md = io->md;
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400669 struct bio *bio = io->bio;
Tejun Heoc9959052008-08-25 19:47:21 +0900670 int cpu;
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400671 int rw = bio_data_dir(bio);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800672
673 io->start_time = jiffies;
674
Tejun Heo074a7ac2008-08-25 19:56:14 +0900675 cpu = part_stat_lock();
676 part_round_stats(cpu, &dm_disk(md)->part0);
677 part_stat_unlock();
Shaohua Li1e9bb882011-03-22 08:35:35 +0100678 atomic_set(&dm_disk(md)->part0.in_flight[rw],
679 atomic_inc_return(&md->pending[rw]));
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400680
681 if (unlikely(dm_stats_used(&md->stats)))
Kent Overstreet4f024f32013-10-11 15:44:27 -0700682 dm_stats_account_io(&md->stats, bio->bi_rw, bio->bi_iter.bi_sector,
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400683 bio_sectors(bio), false, 0, &io->stats_aux);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800684}
685
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000686static void end_io_acct(struct dm_io *io)
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800687{
688 struct mapped_device *md = io->md;
689 struct bio *bio = io->bio;
690 unsigned long duration = jiffies - io->start_time;
Gu Zheng18c0b222014-11-24 11:05:26 +0800691 int pending;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800692 int rw = bio_data_dir(bio);
693
Gu Zheng18c0b222014-11-24 11:05:26 +0800694 generic_end_io_acct(rw, &dm_disk(md)->part0, io->start_time);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800695
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400696 if (unlikely(dm_stats_used(&md->stats)))
Kent Overstreet4f024f32013-10-11 15:44:27 -0700697 dm_stats_account_io(&md->stats, bio->bi_rw, bio->bi_iter.bi_sector,
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400698 bio_sectors(bio), true, duration, &io->stats_aux);
699
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100700 /*
701 * After this is decremented the bio must not be touched if it is
Tejun Heod87f4c12010-09-03 11:56:19 +0200702 * a flush.
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100703 */
Shaohua Li1e9bb882011-03-22 08:35:35 +0100704 pending = atomic_dec_return(&md->pending[rw]);
705 atomic_set(&dm_disk(md)->part0.in_flight[rw], pending);
Nikanth Karthikesan316d3152009-10-06 20:16:55 +0200706 pending += atomic_read(&md->pending[rw^0x1]);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800707
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000708 /* nudge anyone waiting on suspend queue */
709 if (!pending)
710 wake_up(&md->wait);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800711}
712
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713/*
714 * Add the bio to the list of deferred io.
715 */
Mikulas Patocka92c63902009-04-09 00:27:15 +0100716static void queue_io(struct mapped_device *md, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717{
Kiyoshi Ueda054474202010-09-08 18:07:01 +0200718 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
Kiyoshi Ueda054474202010-09-08 18:07:01 +0200720 spin_lock_irqsave(&md->deferred_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 bio_list_add(&md->deferred, bio);
Kiyoshi Ueda054474202010-09-08 18:07:01 +0200722 spin_unlock_irqrestore(&md->deferred_lock, flags);
Tejun Heo6a8736d2010-09-08 18:07:00 +0200723 queue_work(md->wq, &md->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724}
725
726/*
727 * Everyone (including functions in this file), should use this
728 * function to access the md->map field, and make sure they call
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100729 * dm_put_live_table() when finished.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 */
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100731struct dm_table *dm_get_live_table(struct mapped_device *md, int *srcu_idx) __acquires(md->io_barrier)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732{
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100733 *srcu_idx = srcu_read_lock(&md->io_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100735 return srcu_dereference(md->map, &md->io_barrier);
736}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100738void dm_put_live_table(struct mapped_device *md, int srcu_idx) __releases(md->io_barrier)
739{
740 srcu_read_unlock(&md->io_barrier, srcu_idx);
741}
742
743void dm_sync_table(struct mapped_device *md)
744{
745 synchronize_srcu(&md->io_barrier);
746 synchronize_rcu_expedited();
747}
748
749/*
750 * A fast alternative to dm_get_live_table/dm_put_live_table.
751 * The caller must not block between these two functions.
752 */
753static struct dm_table *dm_get_live_table_fast(struct mapped_device *md) __acquires(RCU)
754{
755 rcu_read_lock();
756 return rcu_dereference(md->map);
757}
758
759static void dm_put_live_table_fast(struct mapped_device *md) __releases(RCU)
760{
761 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762}
763
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800764/*
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500765 * Open a table device so we can use it as a map destination.
766 */
767static int open_table_device(struct table_device *td, dev_t dev,
768 struct mapped_device *md)
769{
770 static char *_claim_ptr = "I belong to device-mapper";
771 struct block_device *bdev;
772
773 int r;
774
775 BUG_ON(td->dm_dev.bdev);
776
777 bdev = blkdev_get_by_dev(dev, td->dm_dev.mode | FMODE_EXCL, _claim_ptr);
778 if (IS_ERR(bdev))
779 return PTR_ERR(bdev);
780
781 r = bd_link_disk_holder(bdev, dm_disk(md));
782 if (r) {
783 blkdev_put(bdev, td->dm_dev.mode | FMODE_EXCL);
784 return r;
785 }
786
787 td->dm_dev.bdev = bdev;
788 return 0;
789}
790
791/*
792 * Close a table device that we've been using.
793 */
794static void close_table_device(struct table_device *td, struct mapped_device *md)
795{
796 if (!td->dm_dev.bdev)
797 return;
798
799 bd_unlink_disk_holder(td->dm_dev.bdev, dm_disk(md));
800 blkdev_put(td->dm_dev.bdev, td->dm_dev.mode | FMODE_EXCL);
801 td->dm_dev.bdev = NULL;
802}
803
804static struct table_device *find_table_device(struct list_head *l, dev_t dev,
805 fmode_t mode) {
806 struct table_device *td;
807
808 list_for_each_entry(td, l, list)
809 if (td->dm_dev.bdev->bd_dev == dev && td->dm_dev.mode == mode)
810 return td;
811
812 return NULL;
813}
814
815int dm_get_table_device(struct mapped_device *md, dev_t dev, fmode_t mode,
816 struct dm_dev **result) {
817 int r;
818 struct table_device *td;
819
820 mutex_lock(&md->table_devices_lock);
821 td = find_table_device(&md->table_devices, dev, mode);
822 if (!td) {
823 td = kmalloc(sizeof(*td), GFP_KERNEL);
824 if (!td) {
825 mutex_unlock(&md->table_devices_lock);
826 return -ENOMEM;
827 }
828
829 td->dm_dev.mode = mode;
830 td->dm_dev.bdev = NULL;
831
832 if ((r = open_table_device(td, dev, md))) {
833 mutex_unlock(&md->table_devices_lock);
834 kfree(td);
835 return r;
836 }
837
838 format_dev_t(td->dm_dev.name, dev);
839
840 atomic_set(&td->count, 0);
841 list_add(&td->list, &md->table_devices);
842 }
843 atomic_inc(&td->count);
844 mutex_unlock(&md->table_devices_lock);
845
846 *result = &td->dm_dev;
847 return 0;
848}
849EXPORT_SYMBOL_GPL(dm_get_table_device);
850
851void dm_put_table_device(struct mapped_device *md, struct dm_dev *d)
852{
853 struct table_device *td = container_of(d, struct table_device, dm_dev);
854
855 mutex_lock(&md->table_devices_lock);
856 if (atomic_dec_and_test(&td->count)) {
857 close_table_device(td, md);
858 list_del(&td->list);
859 kfree(td);
860 }
861 mutex_unlock(&md->table_devices_lock);
862}
863EXPORT_SYMBOL(dm_put_table_device);
864
865static void free_table_devices(struct list_head *devices)
866{
867 struct list_head *tmp, *next;
868
869 list_for_each_safe(tmp, next, devices) {
870 struct table_device *td = list_entry(tmp, struct table_device, list);
871
872 DMWARN("dm_destroy: %s still exists with %d references",
873 td->dm_dev.name, atomic_read(&td->count));
874 kfree(td);
875 }
876}
877
878/*
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800879 * Get the geometry associated with a dm device
880 */
881int dm_get_geometry(struct mapped_device *md, struct hd_geometry *geo)
882{
883 *geo = md->geometry;
884
885 return 0;
886}
887
888/*
889 * Set the geometry of a device.
890 */
891int dm_set_geometry(struct mapped_device *md, struct hd_geometry *geo)
892{
893 sector_t sz = (sector_t)geo->cylinders * geo->heads * geo->sectors;
894
895 if (geo->start > sz) {
896 DMWARN("Start sector is beyond the geometry limits.");
897 return -EINVAL;
898 }
899
900 md->geometry = *geo;
901
902 return 0;
903}
904
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905/*-----------------------------------------------------------------
906 * CRUD START:
907 * A more elegant soln is in the works that uses the queue
908 * merge fn, unfortunately there are a couple of changes to
909 * the block layer that I want to make for this. So in the
910 * interests of getting something for people to use I give
911 * you this clearly demarcated crap.
912 *---------------------------------------------------------------*/
913
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800914static int __noflush_suspending(struct mapped_device *md)
915{
916 return test_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
917}
918
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919/*
920 * Decrements the number of outstanding ios that a bio has been
921 * cloned into, completing the original io if necc.
922 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800923static void dec_pending(struct dm_io *io, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924{
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800925 unsigned long flags;
Milan Brozb35f8ca2009-03-16 17:44:36 +0000926 int io_error;
927 struct bio *bio;
928 struct mapped_device *md = io->md;
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800929
930 /* Push-back supersedes any I/O errors */
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +0100931 if (unlikely(error)) {
932 spin_lock_irqsave(&io->endio_lock, flags);
933 if (!(io->error > 0 && __noflush_suspending(md)))
934 io->error = error;
935 spin_unlock_irqrestore(&io->endio_lock, flags);
936 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
938 if (atomic_dec_and_test(&io->io_count)) {
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800939 if (io->error == DM_ENDIO_REQUEUE) {
940 /*
941 * Target requested pushing back the I/O.
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800942 */
Mikulas Patocka022c2612009-04-02 19:55:39 +0100943 spin_lock_irqsave(&md->deferred_lock, flags);
Tejun Heo6a8736d2010-09-08 18:07:00 +0200944 if (__noflush_suspending(md))
945 bio_list_add_head(&md->deferred, io->bio);
946 else
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800947 /* noflush suspend was interrupted. */
948 io->error = -EIO;
Mikulas Patocka022c2612009-04-02 19:55:39 +0100949 spin_unlock_irqrestore(&md->deferred_lock, flags);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800950 }
951
Milan Brozb35f8ca2009-03-16 17:44:36 +0000952 io_error = io->error;
953 bio = io->bio;
Tejun Heo6a8736d2010-09-08 18:07:00 +0200954 end_io_acct(io);
955 free_io(md, io);
Jens Axboe2056a782006-03-23 20:00:26 +0100956
Tejun Heo6a8736d2010-09-08 18:07:00 +0200957 if (io_error == DM_ENDIO_REQUEUE)
958 return;
959
Kent Overstreet4f024f32013-10-11 15:44:27 -0700960 if ((bio->bi_rw & REQ_FLUSH) && bio->bi_iter.bi_size) {
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100961 /*
Tejun Heo6a8736d2010-09-08 18:07:00 +0200962 * Preflush done for flush with data, reissue
963 * without REQ_FLUSH.
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100964 */
Tejun Heo6a8736d2010-09-08 18:07:00 +0200965 bio->bi_rw &= ~REQ_FLUSH;
966 queue_io(md, bio);
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100967 } else {
Mike Snitzerb372d362010-09-08 18:07:01 +0200968 /* done with normal IO or empty flush */
Linus Torvalds0a82a8d2013-04-18 09:00:26 -0700969 trace_block_bio_complete(md->queue, bio, io_error);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200970 bio->bi_error = io_error;
971 bio_endio(bio);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800972 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 }
974}
975
Mike Snitzer7eee4ae2014-06-02 15:50:06 -0400976static void disable_write_same(struct mapped_device *md)
977{
978 struct queue_limits *limits = dm_get_queue_limits(md);
979
980 /* device doesn't really support WRITE SAME, disable it */
981 limits->max_write_same_sectors = 0;
982}
983
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200984static void clone_endio(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985{
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200986 int error = bio->bi_error;
zhendong chen5164bec2014-12-17 14:37:04 +0800987 int r = error;
Mikulas Patockabfc6d412014-03-04 18:24:49 -0500988 struct dm_target_io *tio = container_of(bio, struct dm_target_io, clone);
Milan Brozb35f8ca2009-03-16 17:44:36 +0000989 struct dm_io *io = tio->io;
Stefan Bader9faf4002006-10-03 01:15:41 -0700990 struct mapped_device *md = tio->io->md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 dm_endio_fn endio = tio->ti->type->end_io;
992
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 if (endio) {
Mikulas Patocka7de3ee52012-12-21 20:23:41 +0000994 r = endio(tio->ti, bio, error);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800995 if (r < 0 || r == DM_ENDIO_REQUEUE)
996 /*
997 * error and requeue request are handled
998 * in dec_pending().
999 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 error = r;
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -08001001 else if (r == DM_ENDIO_INCOMPLETE)
1002 /* The target will handle the io */
NeilBrown6712ecf2007-09-27 12:47:43 +02001003 return;
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -08001004 else if (r) {
1005 DMWARN("unimplemented target endio return value: %d", r);
1006 BUG();
1007 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 }
1009
Mike Snitzer7eee4ae2014-06-02 15:50:06 -04001010 if (unlikely(r == -EREMOTEIO && (bio->bi_rw & REQ_WRITE_SAME) &&
1011 !bdev_get_queue(bio->bi_bdev)->limits.max_write_same_sectors))
1012 disable_write_same(md);
1013
Stefan Bader9faf4002006-10-03 01:15:41 -07001014 free_tio(md, tio);
Milan Brozb35f8ca2009-03-16 17:44:36 +00001015 dec_pending(io, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016}
1017
Mike Snitzer78d8e582015-06-26 10:01:13 -04001018/*
1019 * Partial completion handling for request-based dm
1020 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001021static void end_clone_bio(struct bio *clone)
Mike Snitzer78d8e582015-06-26 10:01:13 -04001022{
1023 struct dm_rq_clone_bio_info *info =
1024 container_of(clone, struct dm_rq_clone_bio_info, clone);
1025 struct dm_rq_target_io *tio = info->tio;
1026 struct bio *bio = info->orig;
1027 unsigned int nr_bytes = info->orig->bi_iter.bi_size;
Junichi Nomura50887bd2015-10-06 04:19:54 +00001028 int error = clone->bi_error;
Mike Snitzer78d8e582015-06-26 10:01:13 -04001029
1030 bio_put(clone);
1031
1032 if (tio->error)
1033 /*
1034 * An error has already been detected on the request.
1035 * Once error occurred, just let clone->end_io() handle
1036 * the remainder.
1037 */
1038 return;
Junichi Nomura50887bd2015-10-06 04:19:54 +00001039 else if (error) {
Mike Snitzer78d8e582015-06-26 10:01:13 -04001040 /*
1041 * Don't notice the error to the upper layer yet.
1042 * The error handling decision is made by the target driver,
1043 * when the request is completed.
1044 */
Junichi Nomura50887bd2015-10-06 04:19:54 +00001045 tio->error = error;
Mike Snitzer78d8e582015-06-26 10:01:13 -04001046 return;
1047 }
1048
1049 /*
1050 * I/O for the bio successfully completed.
1051 * Notice the data completion to the upper layer.
1052 */
1053
1054 /*
1055 * bios are processed from the head of the list.
1056 * So the completing bio should always be rq->bio.
1057 * If it's not, something wrong is happening.
1058 */
1059 if (tio->orig->bio != bio)
1060 DMERR("bio completion is going in the middle of the request");
1061
1062 /*
1063 * Update the original request.
1064 * Do not use blk_end_request() here, because it may complete
1065 * the original request before the clone, and break the ordering.
1066 */
1067 blk_update_request(tio->orig, 0, nr_bytes);
1068}
1069
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001070static struct dm_rq_target_io *tio_from_request(struct request *rq)
1071{
1072 return (rq->q->mq_ops ? blk_mq_rq_to_pdu(rq) : rq->special);
1073}
1074
Mikulas Patockae262f342015-06-09 17:22:49 -04001075static void rq_end_stats(struct mapped_device *md, struct request *orig)
1076{
1077 if (unlikely(dm_stats_used(&md->stats))) {
1078 struct dm_rq_target_io *tio = tio_from_request(orig);
1079 tio->duration_jiffies = jiffies - tio->duration_jiffies;
1080 dm_stats_account_io(&md->stats, orig->cmd_flags, blk_rq_pos(orig),
1081 tio->n_sectors, true, tio->duration_jiffies,
1082 &tio->stats_aux);
1083 }
1084}
1085
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001086/*
1087 * Don't touch any member of the md after calling this function because
1088 * the md may be freed in dm_put() at the end of this function.
1089 * Or do dm_get() before calling this function and dm_put() later.
1090 */
Keith Busch466d89a2014-10-17 17:46:37 -06001091static void rq_completed(struct mapped_device *md, int rw, bool run_queue)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001092{
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00001093 atomic_dec(&md->pending[rw]);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001094
1095 /* nudge anyone waiting on suspend queue */
Mike Snitzer621739b2015-07-08 16:08:24 -04001096 if (!md_in_flight(md))
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001097 wake_up(&md->wait);
1098
Jens Axboea8c32a52012-11-06 12:24:26 +01001099 /*
1100 * Run this off this callpath, as drivers could invoke end_io while
1101 * inside their request_fn (and holding the queue lock). Calling
1102 * back into ->request_fn() could deadlock attempting to grab the
1103 * queue lock again.
1104 */
Mike Snitzer6acfe682016-02-05 08:49:01 -05001105 if (!md->queue->mq_ops && run_queue)
1106 blk_run_queue_async(md->queue);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001107
1108 /*
1109 * dm_put() must be at the end of this function. See the comment above
1110 */
1111 dm_put(md);
1112}
1113
Mike Snitzere5d8de32015-05-28 15:12:52 -04001114static void free_rq_clone(struct request *clone)
Kiyoshi Uedaa77e28c2009-09-04 20:40:16 +01001115{
1116 struct dm_rq_target_io *tio = clone->end_io_data;
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001117 struct mapped_device *md = tio->md;
Kiyoshi Uedaa77e28c2009-09-04 20:40:16 +01001118
Mike Snitzer78d8e582015-06-26 10:01:13 -04001119 blk_rq_unprep_clone(clone);
1120
Mike Snitzeraa6df8d2015-04-29 10:48:09 -04001121 if (md->type == DM_TYPE_MQ_REQUEST_BASED)
1122 /* stacked on blk-mq queue(s) */
Mike Snitzere5863d92014-12-17 21:08:12 -05001123 tio->ti->type->release_clone_rq(clone);
Mike Snitzer02233342015-03-10 23:49:26 -04001124 else if (!md->queue->mq_ops)
1125 /* request_fn queue stacked on request_fn queue(s) */
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001126 free_clone_request(md, clone);
Mike Snitzeraa6df8d2015-04-29 10:48:09 -04001127 /*
1128 * NOTE: for the blk-mq queue stacked on request_fn queue(s) case:
1129 * no need to call free_clone_request() because we leverage blk-mq by
1130 * allocating the clone at the end of the blk-mq pdu (see: clone_rq)
1131 */
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001132
1133 if (!md->queue->mq_ops)
1134 free_rq_tio(tio);
Kiyoshi Uedaa77e28c2009-09-04 20:40:16 +01001135}
1136
Kiyoshi Ueda980691e2009-12-10 23:52:17 +00001137/*
1138 * Complete the clone and the original request.
Keith Busch466d89a2014-10-17 17:46:37 -06001139 * Must be called without clone's queue lock held,
1140 * see end_clone_request() for more details.
Kiyoshi Ueda980691e2009-12-10 23:52:17 +00001141 */
1142static void dm_end_request(struct request *clone, int error)
1143{
1144 int rw = rq_data_dir(clone);
1145 struct dm_rq_target_io *tio = clone->end_io_data;
1146 struct mapped_device *md = tio->md;
1147 struct request *rq = tio->orig;
1148
Tejun Heo29e40132010-09-08 18:07:00 +02001149 if (rq->cmd_type == REQ_TYPE_BLOCK_PC) {
Kiyoshi Ueda980691e2009-12-10 23:52:17 +00001150 rq->errors = clone->errors;
1151 rq->resid_len = clone->resid_len;
1152
1153 if (rq->sense)
1154 /*
1155 * We are using the sense buffer of the original
1156 * request.
1157 * So setting the length of the sense data is enough.
1158 */
1159 rq->sense_len = clone->sense_len;
1160 }
1161
Mike Snitzere5d8de32015-05-28 15:12:52 -04001162 free_rq_clone(clone);
Mikulas Patockae262f342015-06-09 17:22:49 -04001163 rq_end_stats(md, rq);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001164 if (!rq->q->mq_ops)
1165 blk_end_request_all(rq, error);
1166 else
1167 blk_mq_end_request(rq, error);
Tejun Heo29e40132010-09-08 18:07:00 +02001168 rq_completed(md, rw, true);
Kiyoshi Ueda980691e2009-12-10 23:52:17 +00001169}
1170
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001171static void dm_unprep_request(struct request *rq)
1172{
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001173 struct dm_rq_target_io *tio = tio_from_request(rq);
Keith Busch466d89a2014-10-17 17:46:37 -06001174 struct request *clone = tio->clone;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001175
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001176 if (!rq->q->mq_ops) {
1177 rq->special = NULL;
1178 rq->cmd_flags &= ~REQ_DONTPREP;
1179 }
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001180
Mike Snitzere5863d92014-12-17 21:08:12 -05001181 if (clone)
Mike Snitzere5d8de32015-05-28 15:12:52 -04001182 free_rq_clone(clone);
Mike Snitzer4328daa2016-02-21 19:09:22 -05001183 else if (!tio->md->queue->mq_ops)
1184 free_rq_tio(tio);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001185}
1186
1187/*
1188 * Requeue the original request of a clone.
1189 */
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001190static void old_requeue_request(struct request *rq)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001191{
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001192 struct request_queue *q = rq->q;
1193 unsigned long flags;
1194
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001195 spin_lock_irqsave(q->queue_lock, flags);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001196 blk_requeue_request(q, rq);
Junichi Nomura4ae99442015-05-26 08:25:54 +00001197 blk_run_queue_async(q);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001198 spin_unlock_irqrestore(q->queue_lock, flags);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001199}
1200
Mike Snitzer2d76fff2015-04-29 12:07:12 -04001201static void dm_requeue_original_request(struct mapped_device *md,
1202 struct request *rq)
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001203{
1204 int rw = rq_data_dir(rq);
1205
1206 dm_unprep_request(rq);
1207
Mikulas Patockae262f342015-06-09 17:22:49 -04001208 rq_end_stats(md, rq);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001209 if (!rq->q->mq_ops)
1210 old_requeue_request(rq);
1211 else {
1212 blk_mq_requeue_request(rq);
1213 blk_mq_kick_requeue_list(rq->q);
1214 }
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001215
Keith Busch466d89a2014-10-17 17:46:37 -06001216 rq_completed(md, rw, false);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001217}
Keith Busch466d89a2014-10-17 17:46:37 -06001218
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001219static void old_stop_queue(struct request_queue *q)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001220{
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001221 unsigned long flags;
1222
1223 if (blk_queue_stopped(q))
1224 return;
1225
1226 spin_lock_irqsave(q->queue_lock, flags);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001227 blk_stop_queue(q);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001228 spin_unlock_irqrestore(q->queue_lock, flags);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001229}
1230
1231static void stop_queue(struct request_queue *q)
1232{
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001233 if (!q->mq_ops)
1234 old_stop_queue(q);
1235 else
1236 blk_mq_stop_hw_queues(q);
1237}
1238
1239static void old_start_queue(struct request_queue *q)
1240{
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001241 unsigned long flags;
1242
1243 spin_lock_irqsave(q->queue_lock, flags);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001244 if (blk_queue_stopped(q))
1245 blk_start_queue(q);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001246 spin_unlock_irqrestore(q->queue_lock, flags);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001247}
1248
1249static void start_queue(struct request_queue *q)
1250{
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001251 if (!q->mq_ops)
1252 old_start_queue(q);
1253 else
1254 blk_mq_start_stopped_hw_queues(q, true);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001255}
1256
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001257static void dm_done(struct request *clone, int error, bool mapped)
1258{
1259 int r = error;
1260 struct dm_rq_target_io *tio = clone->end_io_data;
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001261 dm_request_endio_fn rq_end_io = NULL;
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001262
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001263 if (tio->ti) {
1264 rq_end_io = tio->ti->type->rq_end_io;
1265
1266 if (mapped && rq_end_io)
1267 r = rq_end_io(tio->ti, clone, error, &tio->info);
1268 }
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001269
Mike Snitzer7eee4ae2014-06-02 15:50:06 -04001270 if (unlikely(r == -EREMOTEIO && (clone->cmd_flags & REQ_WRITE_SAME) &&
1271 !clone->q->limits.max_write_same_sectors))
1272 disable_write_same(tio->md);
1273
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001274 if (r <= 0)
1275 /* The target wants to complete the I/O */
1276 dm_end_request(clone, r);
1277 else if (r == DM_ENDIO_INCOMPLETE)
1278 /* The target will handle the I/O */
1279 return;
1280 else if (r == DM_ENDIO_REQUEUE)
1281 /* The target wants to requeue the I/O */
Mike Snitzer2d76fff2015-04-29 12:07:12 -04001282 dm_requeue_original_request(tio->md, tio->orig);
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001283 else {
1284 DMWARN("unimplemented target endio return value: %d", r);
1285 BUG();
1286 }
1287}
1288
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001289/*
1290 * Request completion handler for request-based dm
1291 */
1292static void dm_softirq_done(struct request *rq)
1293{
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001294 bool mapped = true;
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001295 struct dm_rq_target_io *tio = tio_from_request(rq);
Keith Busch466d89a2014-10-17 17:46:37 -06001296 struct request *clone = tio->clone;
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001297 int rw;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001298
Mike Snitzere5863d92014-12-17 21:08:12 -05001299 if (!clone) {
Mikulas Patockae262f342015-06-09 17:22:49 -04001300 rq_end_stats(tio->md, rq);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001301 rw = rq_data_dir(rq);
1302 if (!rq->q->mq_ops) {
1303 blk_end_request_all(rq, tio->error);
1304 rq_completed(tio->md, rw, false);
1305 free_rq_tio(tio);
1306 } else {
1307 blk_mq_end_request(rq, tio->error);
1308 rq_completed(tio->md, rw, false);
1309 }
Mike Snitzere5863d92014-12-17 21:08:12 -05001310 return;
1311 }
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001312
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001313 if (rq->cmd_flags & REQ_FAILED)
1314 mapped = false;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001315
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001316 dm_done(clone, tio->error, mapped);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001317}
1318
1319/*
1320 * Complete the clone and the original request with the error status
1321 * through softirq context.
1322 */
Keith Busch466d89a2014-10-17 17:46:37 -06001323static void dm_complete_request(struct request *rq, int error)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001324{
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001325 struct dm_rq_target_io *tio = tio_from_request(rq);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001326
1327 tio->error = error;
Mike Snitzer6acfe682016-02-05 08:49:01 -05001328 if (!rq->q->mq_ops)
1329 blk_complete_request(rq);
1330 else
1331 blk_mq_complete_request(rq, error);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001332}
1333
1334/*
1335 * Complete the not-mapped clone and the original request with the error status
1336 * through softirq context.
1337 * Target's rq_end_io() function isn't called.
Mike Snitzere5863d92014-12-17 21:08:12 -05001338 * This may be used when the target's map_rq() or clone_and_map_rq() functions fail.
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001339 */
Keith Busch466d89a2014-10-17 17:46:37 -06001340static void dm_kill_unmapped_request(struct request *rq, int error)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001341{
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001342 rq->cmd_flags |= REQ_FAILED;
Keith Busch466d89a2014-10-17 17:46:37 -06001343 dm_complete_request(rq, error);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001344}
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001345
1346/*
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001347 * Called with the clone's queue lock held (for non-blk-mq)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001348 */
1349static void end_clone_request(struct request *clone, int error)
1350{
Keith Busch466d89a2014-10-17 17:46:37 -06001351 struct dm_rq_target_io *tio = clone->end_io_data;
1352
Mike Snitzere5863d92014-12-17 21:08:12 -05001353 if (!clone->q->mq_ops) {
1354 /*
1355 * For just cleaning up the information of the queue in which
1356 * the clone was dispatched.
1357 * The clone is *NOT* freed actually here because it is alloced
1358 * from dm own mempool (REQ_ALLOCED isn't set).
1359 */
1360 __blk_put_request(clone->q, clone);
1361 }
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001362
1363 /*
1364 * Actual request completion is done in a softirq context which doesn't
Keith Busch466d89a2014-10-17 17:46:37 -06001365 * hold the clone's queue lock. Otherwise, deadlock could occur because:
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001366 * - another request may be submitted by the upper level driver
1367 * of the stacking during the completion
1368 * - the submission which requires queue lock may be done
Keith Busch466d89a2014-10-17 17:46:37 -06001369 * against this clone's queue
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001370 */
Keith Busch466d89a2014-10-17 17:46:37 -06001371 dm_complete_request(tio->orig, error);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001372}
1373
Mike Snitzer56a67df2010-08-12 04:14:10 +01001374/*
1375 * Return maximum size of I/O possible at the supplied sector up to the current
1376 * target boundary.
1377 */
1378static sector_t max_io_len_target_boundary(sector_t sector, struct dm_target *ti)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379{
Mike Snitzer56a67df2010-08-12 04:14:10 +01001380 sector_t target_offset = dm_target_offset(ti, sector);
1381
1382 return ti->len - target_offset;
1383}
1384
1385static sector_t max_io_len(sector_t sector, struct dm_target *ti)
1386{
1387 sector_t len = max_io_len_target_boundary(sector, ti);
Mike Snitzer542f9032012-07-27 15:08:00 +01001388 sector_t offset, max_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
1390 /*
Mike Snitzer542f9032012-07-27 15:08:00 +01001391 * Does the target need to split even further?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 */
Mike Snitzer542f9032012-07-27 15:08:00 +01001393 if (ti->max_io_len) {
1394 offset = dm_target_offset(ti, sector);
1395 if (unlikely(ti->max_io_len & (ti->max_io_len - 1)))
1396 max_len = sector_div(offset, ti->max_io_len);
1397 else
1398 max_len = offset & (ti->max_io_len - 1);
1399 max_len = ti->max_io_len - max_len;
1400
1401 if (len > max_len)
1402 len = max_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 }
1404
1405 return len;
1406}
1407
Mike Snitzer542f9032012-07-27 15:08:00 +01001408int dm_set_target_max_io_len(struct dm_target *ti, sector_t len)
1409{
1410 if (len > UINT_MAX) {
1411 DMERR("Specified maximum size of target IO (%llu) exceeds limit (%u)",
1412 (unsigned long long)len, UINT_MAX);
1413 ti->error = "Maximum size of target IO is too large";
1414 return -EINVAL;
1415 }
1416
1417 ti->max_io_len = (uint32_t) len;
1418
1419 return 0;
1420}
1421EXPORT_SYMBOL_GPL(dm_set_target_max_io_len);
1422
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001423/*
1424 * A target may call dm_accept_partial_bio only from the map routine. It is
1425 * allowed for all bio types except REQ_FLUSH.
1426 *
1427 * dm_accept_partial_bio informs the dm that the target only wants to process
1428 * additional n_sectors sectors of the bio and the rest of the data should be
1429 * sent in a next bio.
1430 *
1431 * A diagram that explains the arithmetics:
1432 * +--------------------+---------------+-------+
1433 * | 1 | 2 | 3 |
1434 * +--------------------+---------------+-------+
1435 *
1436 * <-------------- *tio->len_ptr --------------->
1437 * <------- bi_size ------->
1438 * <-- n_sectors -->
1439 *
1440 * Region 1 was already iterated over with bio_advance or similar function.
1441 * (it may be empty if the target doesn't use bio_advance)
1442 * Region 2 is the remaining bio size that the target wants to process.
1443 * (it may be empty if region 1 is non-empty, although there is no reason
1444 * to make it empty)
1445 * The target requires that region 3 is to be sent in the next bio.
1446 *
1447 * If the target wants to receive multiple copies of the bio (via num_*bios, etc),
1448 * the partially processed part (the sum of regions 1+2) must be the same for all
1449 * copies of the bio.
1450 */
1451void dm_accept_partial_bio(struct bio *bio, unsigned n_sectors)
1452{
1453 struct dm_target_io *tio = container_of(bio, struct dm_target_io, clone);
1454 unsigned bi_size = bio->bi_iter.bi_size >> SECTOR_SHIFT;
1455 BUG_ON(bio->bi_rw & REQ_FLUSH);
1456 BUG_ON(bi_size > *tio->len_ptr);
1457 BUG_ON(n_sectors > bi_size);
1458 *tio->len_ptr -= bi_size - n_sectors;
1459 bio->bi_iter.bi_size = n_sectors << SECTOR_SHIFT;
1460}
1461EXPORT_SYMBOL_GPL(dm_accept_partial_bio);
1462
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001463static void __map_bio(struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464{
1465 int r;
Jens Axboe2056a782006-03-23 20:00:26 +01001466 sector_t sector;
Stefan Bader9faf4002006-10-03 01:15:41 -07001467 struct mapped_device *md;
Mikulas Patockadba14162012-10-12 21:02:15 +01001468 struct bio *clone = &tio->clone;
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001469 struct dm_target *ti = tio->ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 clone->bi_end_io = clone_endio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
1473 /*
1474 * Map the clone. If r == 0 we don't need to do
1475 * anything, the target has assumed ownership of
1476 * this io.
1477 */
1478 atomic_inc(&tio->io->io_count);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001479 sector = clone->bi_iter.bi_sector;
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00001480 r = ti->type->map(ti, clone);
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -08001481 if (r == DM_MAPIO_REMAPPED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 /* the bio has been remapped so dispatch it */
Jens Axboe2056a782006-03-23 20:00:26 +01001483
Mike Snitzerd07335e2010-11-16 12:52:38 +01001484 trace_block_bio_remap(bdev_get_queue(clone->bi_bdev), clone,
1485 tio->io->bio->bi_bdev->bd_dev, sector);
Jens Axboe2056a782006-03-23 20:00:26 +01001486
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 generic_make_request(clone);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001488 } else if (r < 0 || r == DM_MAPIO_REQUEUE) {
1489 /* error the io and bail out, or requeue it if needed */
Stefan Bader9faf4002006-10-03 01:15:41 -07001490 md = tio->io->md;
1491 dec_pending(tio->io, r);
Stefan Bader9faf4002006-10-03 01:15:41 -07001492 free_tio(md, tio);
Mikulas Patockaab378442015-07-01 17:30:36 -04001493 } else if (r != DM_MAPIO_SUBMITTED) {
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -08001494 DMWARN("unimplemented target map return value: %d", r);
1495 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 }
1497}
1498
1499struct clone_info {
1500 struct mapped_device *md;
1501 struct dm_table *map;
1502 struct bio *bio;
1503 struct dm_io *io;
1504 sector_t sector;
Mikulas Patockae0d66092014-03-14 18:40:39 -04001505 unsigned sector_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506};
1507
Mikulas Patockae0d66092014-03-14 18:40:39 -04001508static void bio_setup_sector(struct bio *bio, sector_t sector, unsigned len)
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001509{
Kent Overstreet4f024f32013-10-11 15:44:27 -07001510 bio->bi_iter.bi_sector = sector;
1511 bio->bi_iter.bi_size = to_bytes(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512}
1513
1514/*
1515 * Creates a bio that consists of range of complete bvecs.
1516 */
Mikulas Patockadba14162012-10-12 21:02:15 +01001517static void clone_bio(struct dm_target_io *tio, struct bio *bio,
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001518 sector_t sector, unsigned len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519{
Mikulas Patockadba14162012-10-12 21:02:15 +01001520 struct bio *clone = &tio->clone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001522 __bio_clone_fast(clone, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001524 if (bio_integrity(bio))
1525 bio_integrity_clone(clone, bio, GFP_NOIO);
1526
1527 bio_advance(clone, to_bytes(sector - clone->bi_iter.bi_sector));
1528 clone->bi_iter.bi_size = to_bytes(len);
1529
1530 if (bio_integrity(bio))
1531 bio_integrity_trim(clone, 0, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532}
1533
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001534static struct dm_target_io *alloc_tio(struct clone_info *ci,
Junichi Nomura99778272014-10-03 11:55:16 +00001535 struct dm_target *ti,
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001536 unsigned target_bio_nr)
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001537{
Mikulas Patockadba14162012-10-12 21:02:15 +01001538 struct dm_target_io *tio;
1539 struct bio *clone;
1540
Junichi Nomura99778272014-10-03 11:55:16 +00001541 clone = bio_alloc_bioset(GFP_NOIO, 0, ci->md->bs);
Mikulas Patockadba14162012-10-12 21:02:15 +01001542 tio = container_of(clone, struct dm_target_io, clone);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001543
1544 tio->io = ci->io;
1545 tio->ti = ti;
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001546 tio->target_bio_nr = target_bio_nr;
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001547
1548 return tio;
1549}
1550
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001551static void __clone_and_map_simple_bio(struct clone_info *ci,
1552 struct dm_target *ti,
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001553 unsigned target_bio_nr, unsigned *len)
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001554{
Junichi Nomura99778272014-10-03 11:55:16 +00001555 struct dm_target_io *tio = alloc_tio(ci, ti, target_bio_nr);
Mikulas Patockadba14162012-10-12 21:02:15 +01001556 struct bio *clone = &tio->clone;
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001557
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001558 tio->len_ptr = len;
1559
Junichi Nomura99778272014-10-03 11:55:16 +00001560 __bio_clone_fast(clone, ci->bio);
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001561 if (len)
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001562 bio_setup_sector(clone, ci->sector, *len);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001563
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001564 __map_bio(tio);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001565}
1566
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001567static void __send_duplicate_bios(struct clone_info *ci, struct dm_target *ti,
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001568 unsigned num_bios, unsigned *len)
Mike Snitzer06a426c2010-08-12 04:14:09 +01001569{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001570 unsigned target_bio_nr;
Mike Snitzer06a426c2010-08-12 04:14:09 +01001571
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001572 for (target_bio_nr = 0; target_bio_nr < num_bios; target_bio_nr++)
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001573 __clone_and_map_simple_bio(ci, ti, target_bio_nr, len);
Mike Snitzer06a426c2010-08-12 04:14:09 +01001574}
1575
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001576static int __send_empty_flush(struct clone_info *ci)
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001577{
Mike Snitzer06a426c2010-08-12 04:14:09 +01001578 unsigned target_nr = 0;
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001579 struct dm_target *ti;
1580
Mike Snitzerb372d362010-09-08 18:07:01 +02001581 BUG_ON(bio_has_data(ci->bio));
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001582 while ((ti = dm_table_get_target(ci->map, target_nr++)))
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001583 __send_duplicate_bios(ci, ti, ti->num_flush_bios, NULL);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001584
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001585 return 0;
1586}
1587
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001588static void __clone_and_map_data_bio(struct clone_info *ci, struct dm_target *ti,
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001589 sector_t sector, unsigned *len)
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001590{
Mikulas Patockadba14162012-10-12 21:02:15 +01001591 struct bio *bio = ci->bio;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001592 struct dm_target_io *tio;
Alasdair G Kergonb0d8ed42013-03-01 22:45:49 +00001593 unsigned target_bio_nr;
1594 unsigned num_target_bios = 1;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001595
Alasdair G Kergonb0d8ed42013-03-01 22:45:49 +00001596 /*
1597 * Does the target want to receive duplicate copies of the bio?
1598 */
1599 if (bio_data_dir(bio) == WRITE && ti->num_write_bios)
1600 num_target_bios = ti->num_write_bios(ti, bio);
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001601
Alasdair G Kergonb0d8ed42013-03-01 22:45:49 +00001602 for (target_bio_nr = 0; target_bio_nr < num_target_bios; target_bio_nr++) {
Junichi Nomura99778272014-10-03 11:55:16 +00001603 tio = alloc_tio(ci, ti, target_bio_nr);
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001604 tio->len_ptr = len;
1605 clone_bio(tio, bio, sector, *len);
Alasdair G Kergonb0d8ed42013-03-01 22:45:49 +00001606 __map_bio(tio);
1607 }
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001608}
1609
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001610typedef unsigned (*get_num_bios_fn)(struct dm_target *ti);
Mike Snitzer23508a92012-12-21 20:23:37 +00001611
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001612static unsigned get_num_discard_bios(struct dm_target *ti)
Mike Snitzer23508a92012-12-21 20:23:37 +00001613{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001614 return ti->num_discard_bios;
Mike Snitzer23508a92012-12-21 20:23:37 +00001615}
1616
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001617static unsigned get_num_write_same_bios(struct dm_target *ti)
Mike Snitzer23508a92012-12-21 20:23:37 +00001618{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001619 return ti->num_write_same_bios;
Mike Snitzer23508a92012-12-21 20:23:37 +00001620}
1621
1622typedef bool (*is_split_required_fn)(struct dm_target *ti);
1623
1624static bool is_split_required_for_discard(struct dm_target *ti)
1625{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001626 return ti->split_discard_bios;
Mike Snitzer23508a92012-12-21 20:23:37 +00001627}
1628
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001629static int __send_changing_extent_only(struct clone_info *ci,
1630 get_num_bios_fn get_num_bios,
1631 is_split_required_fn is_split_required)
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001632{
1633 struct dm_target *ti;
Mikulas Patockae0d66092014-03-14 18:40:39 -04001634 unsigned len;
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001635 unsigned num_bios;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001636
Mike Snitzera79245b2010-08-12 04:14:24 +01001637 do {
1638 ti = dm_table_find_target(ci->map, ci->sector);
1639 if (!dm_target_is_valid(ti))
1640 return -EIO;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001641
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001642 /*
Mike Snitzer23508a92012-12-21 20:23:37 +00001643 * Even though the device advertised support for this type of
1644 * request, that does not mean every target supports it, and
Mike Snitzer936688d2011-08-02 12:32:01 +01001645 * reconfiguration might also have changed that since the
Mike Snitzera79245b2010-08-12 04:14:24 +01001646 * check was performed.
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001647 */
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001648 num_bios = get_num_bios ? get_num_bios(ti) : 0;
1649 if (!num_bios)
Mike Snitzera79245b2010-08-12 04:14:24 +01001650 return -EOPNOTSUPP;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001651
Mike Snitzer23508a92012-12-21 20:23:37 +00001652 if (is_split_required && !is_split_required(ti))
Mikulas Patockae0d66092014-03-14 18:40:39 -04001653 len = min((sector_t)ci->sector_count, max_io_len_target_boundary(ci->sector, ti));
Mikulas Patocka7acf0272012-07-27 15:08:03 +01001654 else
Mikulas Patockae0d66092014-03-14 18:40:39 -04001655 len = min((sector_t)ci->sector_count, max_io_len(ci->sector, ti));
Mike Snitzer06a426c2010-08-12 04:14:09 +01001656
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001657 __send_duplicate_bios(ci, ti, num_bios, &len);
Mike Snitzera79245b2010-08-12 04:14:24 +01001658
1659 ci->sector += len;
1660 } while (ci->sector_count -= len);
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001661
1662 return 0;
1663}
1664
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001665static int __send_discard(struct clone_info *ci)
Mike Snitzer23508a92012-12-21 20:23:37 +00001666{
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001667 return __send_changing_extent_only(ci, get_num_discard_bios,
1668 is_split_required_for_discard);
Mike Snitzer23508a92012-12-21 20:23:37 +00001669}
1670
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001671static int __send_write_same(struct clone_info *ci)
Mike Snitzer23508a92012-12-21 20:23:37 +00001672{
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001673 return __send_changing_extent_only(ci, get_num_write_same_bios, NULL);
Mike Snitzer23508a92012-12-21 20:23:37 +00001674}
1675
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001676/*
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001677 * Select the correct strategy for processing a non-flush bio.
1678 */
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001679static int __split_and_process_non_flush(struct clone_info *ci)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680{
Mikulas Patockadba14162012-10-12 21:02:15 +01001681 struct bio *bio = ci->bio;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001682 struct dm_target *ti;
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001683 unsigned len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001685 if (unlikely(bio->bi_rw & REQ_DISCARD))
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001686 return __send_discard(ci);
Mike Snitzer23508a92012-12-21 20:23:37 +00001687 else if (unlikely(bio->bi_rw & REQ_WRITE_SAME))
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001688 return __send_write_same(ci);
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001689
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001690 ti = dm_table_find_target(ci->map, ci->sector);
1691 if (!dm_target_is_valid(ti))
1692 return -EIO;
1693
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001694 len = min_t(sector_t, max_io_len(ci->sector, ti), ci->sector_count);
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001695
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001696 __clone_and_map_data_bio(ci, ti, ci->sector, &len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001698 ci->sector += len;
1699 ci->sector_count -= len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001701 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702}
1703
1704/*
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001705 * Entry point to split a bio into clones and submit them to the targets.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 */
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001707static void __split_and_process_bio(struct mapped_device *md,
1708 struct dm_table *map, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709{
1710 struct clone_info ci;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001711 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001713 if (unlikely(!map)) {
Tejun Heo6a8736d2010-09-08 18:07:00 +02001714 bio_io_error(bio);
Mikulas Patockaf0b9a452009-04-02 19:55:38 +01001715 return;
1716 }
Mikulas Patocka692d0eb2009-04-09 00:27:13 +01001717
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001718 ci.map = map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 ci.md = md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 ci.io = alloc_io(md);
1721 ci.io->error = 0;
1722 atomic_set(&ci.io->io_count, 1);
1723 ci.io->bio = bio;
1724 ci.io->md = md;
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +01001725 spin_lock_init(&ci.io->endio_lock);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001726 ci.sector = bio->bi_iter.bi_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -08001728 start_io_acct(ci.io);
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001729
Mike Snitzerb372d362010-09-08 18:07:01 +02001730 if (bio->bi_rw & REQ_FLUSH) {
1731 ci.bio = &ci.md->flush_bio;
1732 ci.sector_count = 0;
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001733 error = __send_empty_flush(&ci);
Mike Snitzerb372d362010-09-08 18:07:01 +02001734 /* dec_pending submits any data associated with flush */
1735 } else {
Tejun Heo6a8736d2010-09-08 18:07:00 +02001736 ci.bio = bio;
Tejun Heod87f4c12010-09-03 11:56:19 +02001737 ci.sector_count = bio_sectors(bio);
Mike Snitzerb372d362010-09-08 18:07:01 +02001738 while (ci.sector_count && !error)
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001739 error = __split_and_process_non_flush(&ci);
Tejun Heod87f4c12010-09-03 11:56:19 +02001740 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741
1742 /* drop the extra reference count */
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001743 dec_pending(ci.io, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744}
1745/*-----------------------------------------------------------------
1746 * CRUD END
1747 *---------------------------------------------------------------*/
1748
1749/*
1750 * The request function that just remaps the bio built up by
1751 * dm_merge_bvec.
1752 */
Jens Axboedece1632015-11-05 10:41:16 -07001753static blk_qc_t dm_make_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754{
Kevin Corry12f03a42006-02-01 03:04:52 -08001755 int rw = bio_data_dir(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 struct mapped_device *md = q->queuedata;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001757 int srcu_idx;
1758 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001760 map = dm_get_live_table(md, &srcu_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761
Gu Zheng18c0b222014-11-24 11:05:26 +08001762 generic_start_io_acct(rw, bio_sectors(bio), &dm_disk(md)->part0);
Kevin Corry12f03a42006-02-01 03:04:52 -08001763
Tejun Heo6a8736d2010-09-08 18:07:00 +02001764 /* if we're suspended, we have to queue this io for later */
1765 if (unlikely(test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags))) {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001766 dm_put_live_table(md, srcu_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767
Tejun Heo6a8736d2010-09-08 18:07:00 +02001768 if (bio_rw(bio) != READA)
1769 queue_io(md, bio);
1770 else
Alasdair G Kergon54d9a1b2009-04-09 00:27:14 +01001771 bio_io_error(bio);
Jens Axboedece1632015-11-05 10:41:16 -07001772 return BLK_QC_T_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 }
1774
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001775 __split_and_process_bio(md, map, bio);
1776 dm_put_live_table(md, srcu_idx);
Jens Axboedece1632015-11-05 10:41:16 -07001777 return BLK_QC_T_NONE;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001778}
1779
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04001780int dm_request_based(struct mapped_device *md)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001781{
1782 return blk_queue_stackable(md->queue);
1783}
1784
Keith Busch466d89a2014-10-17 17:46:37 -06001785static void dm_dispatch_clone_request(struct request *clone, struct request *rq)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001786{
1787 int r;
1788
Keith Busch466d89a2014-10-17 17:46:37 -06001789 if (blk_queue_io_stat(clone->q))
1790 clone->cmd_flags |= REQ_IO_STAT;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001791
Keith Busch466d89a2014-10-17 17:46:37 -06001792 clone->start_time = jiffies;
1793 r = blk_insert_cloned_request(clone->q, clone);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001794 if (r)
Keith Busch466d89a2014-10-17 17:46:37 -06001795 /* must complete clone in terms of original request */
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001796 dm_complete_request(rq, r);
1797}
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001798
Mike Snitzer78d8e582015-06-26 10:01:13 -04001799static int dm_rq_bio_constructor(struct bio *bio, struct bio *bio_orig,
1800 void *data)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001801{
Mike Snitzer78d8e582015-06-26 10:01:13 -04001802 struct dm_rq_target_io *tio = data;
1803 struct dm_rq_clone_bio_info *info =
1804 container_of(bio, struct dm_rq_clone_bio_info, clone);
1805
1806 info->orig = bio_orig;
1807 info->tio = tio;
1808 bio->bi_end_io = end_clone_bio;
1809
1810 return 0;
1811}
1812
1813static int setup_clone(struct request *clone, struct request *rq,
1814 struct dm_rq_target_io *tio, gfp_t gfp_mask)
1815{
1816 int r;
1817
1818 r = blk_rq_prep_clone(clone, rq, tio->md->bs, gfp_mask,
1819 dm_rq_bio_constructor, tio);
1820 if (r)
1821 return r;
1822
1823 clone->cmd = rq->cmd;
1824 clone->cmd_len = rq->cmd_len;
1825 clone->sense = rq->sense;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001826 clone->end_io = end_clone_request;
1827 clone->end_io_data = tio;
Mike Snitzer78d8e582015-06-26 10:01:13 -04001828
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05001829 tio->clone = clone;
Mike Snitzer78d8e582015-06-26 10:01:13 -04001830
1831 return 0;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001832}
1833
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001834static struct request *clone_rq(struct request *rq, struct mapped_device *md,
Keith Busch466d89a2014-10-17 17:46:37 -06001835 struct dm_rq_target_io *tio, gfp_t gfp_mask)
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001836{
Mike Snitzer02233342015-03-10 23:49:26 -04001837 /*
1838 * Do not allocate a clone if tio->clone was already set
1839 * (see: dm_mq_queue_rq).
1840 */
1841 bool alloc_clone = !tio->clone;
1842 struct request *clone;
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05001843
Mike Snitzer02233342015-03-10 23:49:26 -04001844 if (alloc_clone) {
1845 clone = alloc_clone_request(md, gfp_mask);
1846 if (!clone)
1847 return NULL;
1848 } else
1849 clone = tio->clone;
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05001850
1851 blk_rq_init(NULL, clone);
Mike Snitzer78d8e582015-06-26 10:01:13 -04001852 if (setup_clone(clone, rq, tio, gfp_mask)) {
1853 /* -ENOMEM */
1854 if (alloc_clone)
1855 free_clone_request(md, clone);
1856 return NULL;
1857 }
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05001858
1859 return clone;
1860}
1861
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001862static void map_tio_request(struct kthread_work *work);
1863
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001864static void init_tio(struct dm_rq_target_io *tio, struct request *rq,
1865 struct mapped_device *md)
1866{
1867 tio->md = md;
1868 tio->ti = NULL;
1869 tio->clone = NULL;
1870 tio->orig = rq;
1871 tio->error = 0;
1872 memset(&tio->info, 0, sizeof(tio->info));
Mike Snitzer02233342015-03-10 23:49:26 -04001873 if (md->kworker_task)
1874 init_kthread_work(&tio->work, map_tio_request);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001875}
1876
Keith Busch466d89a2014-10-17 17:46:37 -06001877static struct dm_rq_target_io *prep_tio(struct request *rq,
1878 struct mapped_device *md, gfp_t gfp_mask)
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001879{
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001880 struct dm_rq_target_io *tio;
Mike Snitzere5863d92014-12-17 21:08:12 -05001881 int srcu_idx;
1882 struct dm_table *table;
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001883
1884 tio = alloc_rq_tio(md, gfp_mask);
1885 if (!tio)
1886 return NULL;
1887
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001888 init_tio(tio, rq, md);
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001889
Mike Snitzere5863d92014-12-17 21:08:12 -05001890 table = dm_get_live_table(md, &srcu_idx);
1891 if (!dm_table_mq_request_based(table)) {
1892 if (!clone_rq(rq, md, tio, gfp_mask)) {
1893 dm_put_live_table(md, srcu_idx);
1894 free_rq_tio(tio);
1895 return NULL;
1896 }
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001897 }
Mike Snitzere5863d92014-12-17 21:08:12 -05001898 dm_put_live_table(md, srcu_idx);
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001899
Keith Busch466d89a2014-10-17 17:46:37 -06001900 return tio;
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001901}
1902
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001903/*
1904 * Called with the queue lock held.
1905 */
1906static int dm_prep_fn(struct request_queue *q, struct request *rq)
1907{
1908 struct mapped_device *md = q->queuedata;
Keith Busch466d89a2014-10-17 17:46:37 -06001909 struct dm_rq_target_io *tio;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001910
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001911 if (unlikely(rq->special)) {
1912 DMWARN("Already has something in rq->special.");
1913 return BLKPREP_KILL;
1914 }
1915
Keith Busch466d89a2014-10-17 17:46:37 -06001916 tio = prep_tio(rq, md, GFP_ATOMIC);
1917 if (!tio)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001918 return BLKPREP_DEFER;
1919
Keith Busch466d89a2014-10-17 17:46:37 -06001920 rq->special = tio;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001921 rq->cmd_flags |= REQ_DONTPREP;
1922
1923 return BLKPREP_OK;
1924}
1925
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001926/*
1927 * Returns:
Mike Snitzere5863d92014-12-17 21:08:12 -05001928 * 0 : the request has been processed
1929 * DM_MAPIO_REQUEUE : the original request needs to be requeued
1930 * < 0 : the request was completed due to failure
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001931 */
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001932static int map_request(struct dm_rq_target_io *tio, struct request *rq,
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001933 struct mapped_device *md)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001934{
Mike Snitzere5863d92014-12-17 21:08:12 -05001935 int r;
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001936 struct dm_target *ti = tio->ti;
Mike Snitzere5863d92014-12-17 21:08:12 -05001937 struct request *clone = NULL;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001938
Mike Snitzere5863d92014-12-17 21:08:12 -05001939 if (tio->clone) {
1940 clone = tio->clone;
1941 r = ti->type->map_rq(ti, clone, &tio->info);
1942 } else {
1943 r = ti->type->clone_and_map_rq(ti, rq, &tio->info, &clone);
1944 if (r < 0) {
1945 /* The target wants to complete the I/O */
1946 dm_kill_unmapped_request(rq, r);
1947 return r;
1948 }
Junichi Nomura3a140752015-05-27 04:22:07 +00001949 if (r != DM_MAPIO_REMAPPED)
1950 return r;
Mike Snitzer78d8e582015-06-26 10:01:13 -04001951 if (setup_clone(clone, rq, tio, GFP_ATOMIC)) {
1952 /* -ENOMEM */
1953 ti->type->release_clone_rq(clone);
1954 return DM_MAPIO_REQUEUE;
1955 }
Mike Snitzere5863d92014-12-17 21:08:12 -05001956 }
1957
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001958 switch (r) {
1959 case DM_MAPIO_SUBMITTED:
1960 /* The target has taken the I/O to submit by itself later */
1961 break;
1962 case DM_MAPIO_REMAPPED:
1963 /* The target has remapped the I/O so dispatch it */
Jun'ichi Nomura6db4ccd2009-12-10 23:52:25 +00001964 trace_block_rq_remap(clone->q, clone, disk_devt(dm_disk(md)),
Keith Busch466d89a2014-10-17 17:46:37 -06001965 blk_rq_pos(rq));
1966 dm_dispatch_clone_request(clone, rq);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001967 break;
1968 case DM_MAPIO_REQUEUE:
1969 /* The target wants to requeue the I/O */
Mike Snitzer2d76fff2015-04-29 12:07:12 -04001970 dm_requeue_original_request(md, tio->orig);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001971 break;
1972 default:
1973 if (r > 0) {
1974 DMWARN("unimplemented target map return value: %d", r);
1975 BUG();
1976 }
1977
1978 /* The target wants to complete the I/O */
Keith Busch466d89a2014-10-17 17:46:37 -06001979 dm_kill_unmapped_request(rq, r);
Mike Snitzere5863d92014-12-17 21:08:12 -05001980 return r;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001981 }
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001982
Mike Snitzere5863d92014-12-17 21:08:12 -05001983 return 0;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001984}
1985
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001986static void map_tio_request(struct kthread_work *work)
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001987{
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001988 struct dm_rq_target_io *tio = container_of(work, struct dm_rq_target_io, work);
Mike Snitzere5863d92014-12-17 21:08:12 -05001989 struct request *rq = tio->orig;
1990 struct mapped_device *md = tio->md;
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001991
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001992 if (map_request(tio, rq, md) == DM_MAPIO_REQUEUE)
Mike Snitzer2d76fff2015-04-29 12:07:12 -04001993 dm_requeue_original_request(md, rq);
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001994}
1995
Keith Busch466d89a2014-10-17 17:46:37 -06001996static void dm_start_request(struct mapped_device *md, struct request *orig)
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001997{
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001998 if (!orig->q->mq_ops)
1999 blk_start_request(orig);
2000 else
2001 blk_mq_start_request(orig);
Keith Busch466d89a2014-10-17 17:46:37 -06002002 atomic_inc(&md->pending[rq_data_dir(orig)]);
Mike Snitzerba1cbad2012-09-26 23:45:42 +01002003
Mike Snitzer0ce65792015-02-26 00:50:28 -05002004 if (md->seq_rq_merge_deadline_usecs) {
2005 md->last_rq_pos = rq_end_sector(orig);
2006 md->last_rq_rw = rq_data_dir(orig);
2007 md->last_rq_start_time = ktime_get();
2008 }
Mike Snitzerde3ec862015-02-24 21:58:21 -05002009
Mikulas Patockae262f342015-06-09 17:22:49 -04002010 if (unlikely(dm_stats_used(&md->stats))) {
2011 struct dm_rq_target_io *tio = tio_from_request(orig);
2012 tio->duration_jiffies = jiffies;
2013 tio->n_sectors = blk_rq_sectors(orig);
2014 dm_stats_account_io(&md->stats, orig->cmd_flags, blk_rq_pos(orig),
2015 tio->n_sectors, false, 0, &tio->stats_aux);
2016 }
2017
Mike Snitzerba1cbad2012-09-26 23:45:42 +01002018 /*
2019 * Hold the md reference here for the in-flight I/O.
2020 * We can't rely on the reference count by device opener,
2021 * because the device may be closed during the request completion
2022 * when all bios are completed.
2023 * See the comment in rq_completed() too.
2024 */
2025 dm_get(md);
Mike Snitzerba1cbad2012-09-26 23:45:42 +01002026}
2027
Mike Snitzer0ce65792015-02-26 00:50:28 -05002028#define MAX_SEQ_RQ_MERGE_DEADLINE_USECS 100000
2029
2030ssize_t dm_attr_rq_based_seq_io_merge_deadline_show(struct mapped_device *md, char *buf)
2031{
2032 return sprintf(buf, "%u\n", md->seq_rq_merge_deadline_usecs);
2033}
2034
2035ssize_t dm_attr_rq_based_seq_io_merge_deadline_store(struct mapped_device *md,
2036 const char *buf, size_t count)
2037{
2038 unsigned deadline;
2039
Mike Snitzer17e149b2015-03-11 15:01:09 -04002040 if (!dm_request_based(md) || md->use_blk_mq)
Mike Snitzer0ce65792015-02-26 00:50:28 -05002041 return count;
2042
2043 if (kstrtouint(buf, 10, &deadline))
2044 return -EINVAL;
2045
2046 if (deadline > MAX_SEQ_RQ_MERGE_DEADLINE_USECS)
2047 deadline = MAX_SEQ_RQ_MERGE_DEADLINE_USECS;
2048
2049 md->seq_rq_merge_deadline_usecs = deadline;
2050
2051 return count;
2052}
2053
2054static bool dm_request_peeked_before_merge_deadline(struct mapped_device *md)
2055{
2056 ktime_t kt_deadline;
2057
2058 if (!md->seq_rq_merge_deadline_usecs)
2059 return false;
2060
2061 kt_deadline = ns_to_ktime((u64)md->seq_rq_merge_deadline_usecs * NSEC_PER_USEC);
2062 kt_deadline = ktime_add_safe(md->last_rq_start_time, kt_deadline);
2063
2064 return !ktime_after(ktime_get(), kt_deadline);
2065}
2066
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002067/*
2068 * q->request_fn for request-based dm.
2069 * Called with the queue lock held.
2070 */
2071static void dm_request_fn(struct request_queue *q)
2072{
2073 struct mapped_device *md = q->queuedata;
Mike Snitzerc91852ff2016-01-31 17:33:32 -05002074 struct dm_target *ti = md->immutable_target;
Keith Busch466d89a2014-10-17 17:46:37 -06002075 struct request *rq;
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002076 struct dm_rq_target_io *tio;
Mike Snitzerc91852ff2016-01-31 17:33:32 -05002077 sector_t pos = 0;
2078
2079 if (unlikely(!ti)) {
2080 int srcu_idx;
2081 struct dm_table *map = dm_get_live_table(md, &srcu_idx);
2082
2083 ti = dm_table_find_target(map, pos);
2084 dm_put_live_table(md, srcu_idx);
2085 }
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002086
2087 /*
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00002088 * For suspend, check blk_queue_stopped() and increment
2089 * ->pending within a single queue_lock not to increment the
2090 * number of in-flight I/Os after the queue is stopped in
2091 * dm_suspend().
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002092 */
Jens Axboe7eaceac2011-03-10 08:52:07 +01002093 while (!blk_queue_stopped(q)) {
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002094 rq = blk_peek_request(q);
2095 if (!rq)
Mike Snitzerc91852ff2016-01-31 17:33:32 -05002096 return;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002097
Tejun Heo29e40132010-09-08 18:07:00 +02002098 /* always use block 0 to find the target for flushes for now */
2099 pos = 0;
2100 if (!(rq->cmd_flags & REQ_FLUSH))
2101 pos = blk_rq_pos(rq);
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002102
Mike Snitzerc91852ff2016-01-31 17:33:32 -05002103 if ((dm_request_peeked_before_merge_deadline(md) &&
2104 md_in_flight(md) && rq->bio && rq->bio->bi_vcnt == 1 &&
2105 md->last_rq_pos == pos && md->last_rq_rw == rq_data_dir(rq)) ||
2106 (ti->type->busy && ti->type->busy(ti))) {
2107 blk_delay_queue(q, HZ / 100);
2108 return;
Mike Snitzerba1cbad2012-09-26 23:45:42 +01002109 }
Tejun Heo29e40132010-09-08 18:07:00 +02002110
Keith Busch466d89a2014-10-17 17:46:37 -06002111 dm_start_request(md, rq);
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00002112
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002113 tio = tio_from_request(rq);
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002114 /* Establish tio->ti before queuing work (map_tio_request) */
2115 tio->ti = ti;
2116 queue_kthread_work(&md->kworker, &tio->work);
Kiyoshi Ueda052189a2011-01-13 20:00:00 +00002117 BUG_ON(!irqs_disabled());
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002118 }
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002119}
2120
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121static int dm_any_congested(void *congested_data, int bdi_bits)
2122{
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00002123 int r = bdi_bits;
2124 struct mapped_device *md = congested_data;
2125 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01002127 if (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
Mike Snitzere522c032016-02-02 22:35:06 -05002128 if (dm_request_based(md)) {
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002129 /*
Mike Snitzere522c032016-02-02 22:35:06 -05002130 * With request-based DM we only need to check the
2131 * top-level queue for congestion.
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002132 */
Mike Snitzere522c032016-02-02 22:35:06 -05002133 r = md->queue->backing_dev_info.wb.state & bdi_bits;
2134 } else {
2135 map = dm_get_live_table_fast(md);
2136 if (map)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002137 r = dm_table_any_congested(map, bdi_bits);
Mike Snitzere522c032016-02-02 22:35:06 -05002138 dm_put_live_table_fast(md);
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00002139 }
2140 }
2141
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 return r;
2143}
2144
2145/*-----------------------------------------------------------------
2146 * An IDR is used to keep track of allocated minor numbers.
2147 *---------------------------------------------------------------*/
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002148static void free_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149{
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002150 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 idr_remove(&_minor_idr, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002152 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153}
2154
2155/*
2156 * See if the device with a specific minor # is free.
2157 */
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01002158static int specific_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159{
Tejun Heoc9d76be2013-02-27 17:04:26 -08002160 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161
2162 if (minor >= (1 << MINORBITS))
2163 return -EINVAL;
2164
Tejun Heoc9d76be2013-02-27 17:04:26 -08002165 idr_preload(GFP_KERNEL);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002166 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167
Tejun Heoc9d76be2013-02-27 17:04:26 -08002168 r = idr_alloc(&_minor_idr, MINOR_ALLOCED, minor, minor + 1, GFP_NOWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002170 spin_unlock(&_minor_lock);
Tejun Heoc9d76be2013-02-27 17:04:26 -08002171 idr_preload_end();
2172 if (r < 0)
2173 return r == -ENOSPC ? -EBUSY : r;
2174 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175}
2176
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01002177static int next_free_minor(int *minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178{
Tejun Heoc9d76be2013-02-27 17:04:26 -08002179 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180
Tejun Heoc9d76be2013-02-27 17:04:26 -08002181 idr_preload(GFP_KERNEL);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002182 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183
Tejun Heoc9d76be2013-02-27 17:04:26 -08002184 r = idr_alloc(&_minor_idr, MINOR_ALLOCED, 0, 1 << MINORBITS, GFP_NOWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002186 spin_unlock(&_minor_lock);
Tejun Heoc9d76be2013-02-27 17:04:26 -08002187 idr_preload_end();
2188 if (r < 0)
2189 return r;
2190 *minor = r;
2191 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192}
2193
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07002194static const struct block_device_operations dm_blk_dops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195
Mikulas Patocka53d59142009-04-02 19:55:37 +01002196static void dm_wq_work(struct work_struct *work);
2197
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002198static void dm_init_md_queue(struct mapped_device *md)
2199{
2200 /*
2201 * Request-based dm devices cannot be stacked on top of bio-based dm
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002202 * devices. The type of this dm device may not have been decided yet.
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002203 * The type is decided at the first table loading time.
2204 * To prevent problematic device stacking, clear the queue flag
2205 * for request stacking support until then.
2206 *
2207 * This queue is new, so no concurrency on the queue_flags.
2208 */
2209 queue_flag_clear_unlocked(QUEUE_FLAG_STACKABLE, md->queue);
Mikulas Patockaad5f4982015-10-27 19:06:55 -04002210
2211 /*
2212 * Initialize data that will only be used by a non-blk-mq DM queue
2213 * - must do so here (in alloc_dev callchain) before queue is used
2214 */
2215 md->queue->queuedata = md;
2216 md->queue->backing_dev_info.congested_data = md;
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002217}
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002218
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002219static void dm_init_old_md_queue(struct mapped_device *md)
2220{
Mike Snitzer17e149b2015-03-11 15:01:09 -04002221 md->use_blk_mq = false;
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002222 dm_init_md_queue(md);
2223
2224 /*
2225 * Initialize aspects of queue that aren't relevant for blk-mq
2226 */
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002227 md->queue->backing_dev_info.congested_fn = dm_any_congested;
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002228 blk_queue_bounce_limit(md->queue, BLK_BOUNCE_ANY);
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002229}
2230
Mike Snitzer0f209722015-04-28 11:50:29 -04002231static void cleanup_mapped_device(struct mapped_device *md)
2232{
Mike Snitzer0f209722015-04-28 11:50:29 -04002233 if (md->wq)
2234 destroy_workqueue(md->wq);
2235 if (md->kworker_task)
2236 kthread_stop(md->kworker_task);
Julia Lawall6f659852015-09-13 14:15:05 +02002237 mempool_destroy(md->io_pool);
2238 mempool_destroy(md->rq_pool);
Mike Snitzer0f209722015-04-28 11:50:29 -04002239 if (md->bs)
2240 bioset_free(md->bs);
2241
Mikulas Patockab06075a2015-07-10 17:21:43 -04002242 cleanup_srcu_struct(&md->io_barrier);
2243
Mike Snitzer0f209722015-04-28 11:50:29 -04002244 if (md->disk) {
2245 spin_lock(&_minor_lock);
2246 md->disk->private_data = NULL;
2247 spin_unlock(&_minor_lock);
Mike Snitzer0f209722015-04-28 11:50:29 -04002248 del_gendisk(md->disk);
2249 put_disk(md->disk);
2250 }
2251
2252 if (md->queue)
2253 blk_cleanup_queue(md->queue);
2254
2255 if (md->bdev) {
2256 bdput(md->bdev);
2257 md->bdev = NULL;
2258 }
2259}
2260
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261/*
2262 * Allocate and initialise a blank device with a given minor.
2263 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002264static struct mapped_device *alloc_dev(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265{
2266 int r;
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01002267 struct mapped_device *md = kzalloc(sizeof(*md), GFP_KERNEL);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07002268 void *old_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269
2270 if (!md) {
2271 DMWARN("unable to allocate device, out of memory.");
2272 return NULL;
2273 }
2274
Jeff Mahoney10da4f72006-06-26 00:27:25 -07002275 if (!try_module_get(THIS_MODULE))
Milan Broz6ed7ade2008-02-08 02:10:19 +00002276 goto bad_module_get;
Jeff Mahoney10da4f72006-06-26 00:27:25 -07002277
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 /* get a minor number for the dev */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002279 if (minor == DM_ANY_MINOR)
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01002280 r = next_free_minor(&minor);
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002281 else
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01002282 r = specific_minor(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 if (r < 0)
Milan Broz6ed7ade2008-02-08 02:10:19 +00002284 goto bad_minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002286 r = init_srcu_struct(&md->io_barrier);
2287 if (r < 0)
2288 goto bad_io_barrier;
2289
Mike Snitzer17e149b2015-03-11 15:01:09 -04002290 md->use_blk_mq = use_blk_mq;
Mike Snitzera5664da2010-08-12 04:14:01 +01002291 md->type = DM_TYPE_NONE;
Daniel Walkere61290a2008-02-08 02:10:08 +00002292 mutex_init(&md->suspend_lock);
Mike Snitzera5664da2010-08-12 04:14:01 +01002293 mutex_init(&md->type_lock);
Benjamin Marzinski86f11522014-08-13 13:53:43 -05002294 mutex_init(&md->table_devices_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01002295 spin_lock_init(&md->deferred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 atomic_set(&md->holders, 1);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -07002297 atomic_set(&md->open_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 atomic_set(&md->event_nr, 0);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002299 atomic_set(&md->uevent_seq, 0);
2300 INIT_LIST_HEAD(&md->uevent_list);
Benjamin Marzinski86f11522014-08-13 13:53:43 -05002301 INIT_LIST_HEAD(&md->table_devices);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002302 spin_lock_init(&md->uevent_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002304 md->queue = blk_alloc_queue(GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 if (!md->queue)
Mike Snitzer0f209722015-04-28 11:50:29 -04002306 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002308 dm_init_md_queue(md);
Stefan Bader9faf4002006-10-03 01:15:41 -07002309
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 md->disk = alloc_disk(1);
2311 if (!md->disk)
Mike Snitzer0f209722015-04-28 11:50:29 -04002312 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02002314 atomic_set(&md->pending[0], 0);
2315 atomic_set(&md->pending[1], 0);
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07002316 init_waitqueue_head(&md->wait);
Mikulas Patocka53d59142009-04-02 19:55:37 +01002317 INIT_WORK(&md->work, dm_wq_work);
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07002318 init_waitqueue_head(&md->eventq);
Mikulas Patocka2995fa72014-01-13 19:37:54 -05002319 init_completion(&md->kobj_holder.completion);
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002320 md->kworker_task = NULL;
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07002321
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 md->disk->major = _major;
2323 md->disk->first_minor = minor;
2324 md->disk->fops = &dm_blk_dops;
2325 md->disk->queue = md->queue;
2326 md->disk->private_data = md;
2327 sprintf(md->disk->disk_name, "dm-%d", minor);
2328 add_disk(md->disk);
Mike Anderson7e51f252006-03-27 01:17:52 -08002329 format_dev_t(md->name, MKDEV(_major, minor));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330
Tejun Heo670368a2013-07-30 08:40:21 -04002331 md->wq = alloc_workqueue("kdmflush", WQ_MEM_RECLAIM, 0);
Milan Broz304f3f62008-02-08 02:11:17 +00002332 if (!md->wq)
Mike Snitzer0f209722015-04-28 11:50:29 -04002333 goto bad;
Milan Broz304f3f62008-02-08 02:11:17 +00002334
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002335 md->bdev = bdget_disk(md->disk, 0);
2336 if (!md->bdev)
Mike Snitzer0f209722015-04-28 11:50:29 -04002337 goto bad;
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002338
Tejun Heo6a8736d2010-09-08 18:07:00 +02002339 bio_init(&md->flush_bio);
2340 md->flush_bio.bi_bdev = md->bdev;
2341 md->flush_bio.bi_rw = WRITE_FLUSH;
2342
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002343 dm_stats_init(&md->stats);
2344
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07002345 /* Populate the mapping, nobody knows we exist yet */
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002346 spin_lock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07002347 old_md = idr_replace(&_minor_idr, md, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002348 spin_unlock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07002349
2350 BUG_ON(old_md != MINOR_ALLOCED);
2351
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 return md;
2353
Mike Snitzer0f209722015-04-28 11:50:29 -04002354bad:
2355 cleanup_mapped_device(md);
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002356bad_io_barrier:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 free_minor(minor);
Milan Broz6ed7ade2008-02-08 02:10:19 +00002358bad_minor:
Jeff Mahoney10da4f72006-06-26 00:27:25 -07002359 module_put(THIS_MODULE);
Milan Broz6ed7ade2008-02-08 02:10:19 +00002360bad_module_get:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 kfree(md);
2362 return NULL;
2363}
2364
Jun'ichi Nomuraae9da832007-10-19 22:38:43 +01002365static void unlock_fs(struct mapped_device *md);
2366
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367static void free_dev(struct mapped_device *md)
2368{
Tejun Heof331c022008-09-03 09:01:48 +02002369 int minor = MINOR(disk_devt(md->disk));
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08002370
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002371 unlock_fs(md);
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002372
Mike Snitzer0f209722015-04-28 11:50:29 -04002373 cleanup_mapped_device(md);
Mike Snitzer17e149b2015-03-11 15:01:09 -04002374 if (md->use_blk_mq)
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002375 blk_mq_free_tag_set(&md->tag_set);
Mike Snitzer0f209722015-04-28 11:50:29 -04002376
2377 free_table_devices(&md->table_devices);
2378 dm_stats_cleanup(&md->stats);
Mike Snitzer63a4f062015-03-23 17:01:43 -04002379 free_minor(minor);
2380
Jeff Mahoney10da4f72006-06-26 00:27:25 -07002381 module_put(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 kfree(md);
2383}
2384
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002385static void __bind_mempools(struct mapped_device *md, struct dm_table *t)
2386{
Mikulas Patockac0820cf2012-12-21 20:23:38 +00002387 struct dm_md_mempools *p = dm_table_get_md_mempools(t);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002388
Mike Snitzer4e6e36c2015-06-26 09:42:57 -04002389 if (md->bs) {
2390 /* The md already has necessary mempools. */
2391 if (dm_table_get_type(t) == DM_TYPE_BIO_BASED) {
Jun'ichi Nomura16245bd2013-03-01 22:45:44 +00002392 /*
2393 * Reload bioset because front_pad may have changed
2394 * because a different table was loaded.
2395 */
2396 bioset_free(md->bs);
2397 md->bs = p->bs;
2398 p->bs = NULL;
Jun'ichi Nomura16245bd2013-03-01 22:45:44 +00002399 }
Mike Snitzer4e6e36c2015-06-26 09:42:57 -04002400 /*
2401 * There's no need to reload with request-based dm
2402 * because the size of front_pad doesn't change.
2403 * Note for future: If you are to reload bioset,
2404 * prep-ed requests in the queue may refer
2405 * to bio from the old bioset, so you must walk
2406 * through the queue to unprep.
2407 */
2408 goto out;
Mikulas Patockac0820cf2012-12-21 20:23:38 +00002409 }
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002410
Mike Snitzercbc4e3c2015-04-27 16:37:50 -04002411 BUG_ON(!p || md->io_pool || md->rq_pool || md->bs);
2412
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002413 md->io_pool = p->io_pool;
2414 p->io_pool = NULL;
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05002415 md->rq_pool = p->rq_pool;
2416 p->rq_pool = NULL;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002417 md->bs = p->bs;
2418 p->bs = NULL;
Mike Snitzer4e6e36c2015-06-26 09:42:57 -04002419
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002420out:
Mike Snitzer02233342015-03-10 23:49:26 -04002421 /* mempool bind completed, no longer need any mempools in the table */
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002422 dm_table_free_md_mempools(t);
2423}
2424
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425/*
2426 * Bind a table to the device.
2427 */
2428static void event_callback(void *context)
2429{
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002430 unsigned long flags;
2431 LIST_HEAD(uevents);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 struct mapped_device *md = (struct mapped_device *) context;
2433
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002434 spin_lock_irqsave(&md->uevent_lock, flags);
2435 list_splice_init(&md->uevent_list, &uevents);
2436 spin_unlock_irqrestore(&md->uevent_lock, flags);
2437
Tejun Heoed9e1982008-08-25 19:56:05 +09002438 dm_send_uevents(&uevents, &disk_to_dev(md->disk)->kobj);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002439
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440 atomic_inc(&md->event_nr);
2441 wake_up(&md->eventq);
2442}
2443
Mike Snitzerc2176492011-01-13 19:53:46 +00002444/*
2445 * Protected by md->suspend_lock obtained by dm_swap_table().
2446 */
Alasdair G Kergon4e90188be2005-07-28 21:15:59 -07002447static void __set_size(struct mapped_device *md, sector_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448{
Alasdair G Kergon4e90188be2005-07-28 21:15:59 -07002449 set_capacity(md->disk, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002451 i_size_write(md->bdev->bd_inode, (loff_t)size << SECTOR_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452}
2453
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002454/*
2455 * Returns old map, which caller must destroy.
2456 */
2457static struct dm_table *__bind(struct mapped_device *md, struct dm_table *t,
2458 struct queue_limits *limits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459{
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002460 struct dm_table *old_map;
Jens Axboe165125e2007-07-24 09:28:11 +02002461 struct request_queue *q = md->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 sector_t size;
2463
2464 size = dm_table_get_size(t);
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08002465
2466 /*
2467 * Wipe any geometry if the size of the table changed.
2468 */
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002469 if (size != dm_get_size(md))
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08002470 memset(&md->geometry, 0, sizeof(md->geometry));
2471
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002472 __set_size(md, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002474 dm_table_event_callback(t, event_callback, md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002475
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002476 /*
2477 * The queue hasn't been stopped yet, if the old table type wasn't
2478 * for request-based during suspension. So stop it to prevent
2479 * I/O mapping before resume.
2480 * This must be done before setting the queue restrictions,
2481 * because request-based dm may be run just after the setting.
2482 */
Mike Snitzer16f12262016-01-31 17:22:27 -05002483 if (dm_table_request_based(t)) {
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002484 stop_queue(q);
Mike Snitzer16f12262016-01-31 17:22:27 -05002485 /*
2486 * Leverage the fact that request-based DM targets are
2487 * immutable singletons and establish md->immutable_target
2488 * - used to optimize both dm_request_fn and dm_mq_queue_rq
2489 */
2490 md->immutable_target = dm_table_get_immutable_target(t);
2491 }
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002492
2493 __bind_mempools(md, t);
2494
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002495 old_map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002496 rcu_assign_pointer(md->map, t);
Alasdair G Kergon36a04562011-10-31 20:19:04 +00002497 md->immutable_target_type = dm_table_get_immutable_target_type(t);
2498
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002499 dm_table_set_restrictions(t, q, limits);
Hannes Reinecke41abc4e2014-11-05 14:35:50 +01002500 if (old_map)
2501 dm_sync_table(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002502
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002503 return old_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504}
2505
Alasdair G Kergona7940152009-12-10 23:52:23 +00002506/*
2507 * Returns unbound table for the caller to free.
2508 */
2509static struct dm_table *__unbind(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510{
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002511 struct dm_table *map = rcu_dereference_protected(md->map, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512
2513 if (!map)
Alasdair G Kergona7940152009-12-10 23:52:23 +00002514 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515
2516 dm_table_event_callback(map, NULL, NULL);
Monam Agarwal9cdb8522014-03-23 23:58:27 +05302517 RCU_INIT_POINTER(md->map, NULL);
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002518 dm_sync_table(md);
Alasdair G Kergona7940152009-12-10 23:52:23 +00002519
2520 return map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521}
2522
2523/*
2524 * Constructor for a new device.
2525 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002526int dm_create(int minor, struct mapped_device **result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527{
2528 struct mapped_device *md;
2529
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002530 md = alloc_dev(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 if (!md)
2532 return -ENXIO;
2533
Milan Broz784aae72009-01-06 03:05:12 +00002534 dm_sysfs_init(md);
2535
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 *result = md;
2537 return 0;
2538}
2539
Mike Snitzera5664da2010-08-12 04:14:01 +01002540/*
2541 * Functions to manage md->type.
2542 * All are required to hold md->type_lock.
2543 */
2544void dm_lock_md_type(struct mapped_device *md)
2545{
2546 mutex_lock(&md->type_lock);
2547}
2548
2549void dm_unlock_md_type(struct mapped_device *md)
2550{
2551 mutex_unlock(&md->type_lock);
2552}
2553
2554void dm_set_md_type(struct mapped_device *md, unsigned type)
2555{
Mike Snitzer00c4fc32013-08-27 18:57:03 -04002556 BUG_ON(!mutex_is_locked(&md->type_lock));
Mike Snitzera5664da2010-08-12 04:14:01 +01002557 md->type = type;
2558}
2559
2560unsigned dm_get_md_type(struct mapped_device *md)
2561{
2562 return md->type;
2563}
2564
Alasdair G Kergon36a04562011-10-31 20:19:04 +00002565struct target_type *dm_get_immutable_target_type(struct mapped_device *md)
2566{
2567 return md->immutable_target_type;
2568}
2569
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002570/*
Mike Snitzerf84cb8a2013-09-19 12:13:58 -04002571 * The queue_limits are only valid as long as you have a reference
2572 * count on 'md'.
2573 */
2574struct queue_limits *dm_get_queue_limits(struct mapped_device *md)
2575{
2576 BUG_ON(!atomic_read(&md->holders));
2577 return &md->queue->limits;
2578}
2579EXPORT_SYMBOL_GPL(dm_get_queue_limits);
2580
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002581static void init_rq_based_worker_thread(struct mapped_device *md)
2582{
2583 /* Initialize the request-based DM worker thread */
2584 init_kthread_worker(&md->kworker);
2585 md->kworker_task = kthread_run(kthread_worker_fn, &md->kworker,
2586 "kdmwork-%s", dm_device_name(md));
2587}
2588
Mike Snitzerf84cb8a2013-09-19 12:13:58 -04002589/*
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002590 * Fully initialize a request-based queue (->elevator, ->request_fn, etc).
2591 */
2592static int dm_init_request_based_queue(struct mapped_device *md)
2593{
2594 struct request_queue *q = NULL;
2595
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002596 /* Fully initialize the queue */
2597 q = blk_init_allocated_queue(md->queue, dm_request_fn, NULL);
2598 if (!q)
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002599 return -EINVAL;
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002600
Mike Snitzer0ce65792015-02-26 00:50:28 -05002601 /* disable dm_request_fn's merge heuristic by default */
2602 md->seq_rq_merge_deadline_usecs = 0;
2603
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002604 md->queue = q;
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002605 dm_init_old_md_queue(md);
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002606 blk_queue_softirq_done(md->queue, dm_softirq_done);
2607 blk_queue_prep_rq(md->queue, dm_prep_fn);
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002608
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002609 init_rq_based_worker_thread(md);
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002610
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002611 elv_register_queue(md->queue);
2612
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002613 return 0;
2614}
2615
2616static int dm_mq_init_request(void *data, struct request *rq,
2617 unsigned int hctx_idx, unsigned int request_idx,
2618 unsigned int numa_node)
2619{
2620 struct mapped_device *md = data;
2621 struct dm_rq_target_io *tio = blk_mq_rq_to_pdu(rq);
2622
2623 /*
2624 * Must initialize md member of tio, otherwise it won't
2625 * be available in dm_mq_queue_rq.
2626 */
2627 tio->md = md;
2628
2629 return 0;
2630}
2631
2632static int dm_mq_queue_rq(struct blk_mq_hw_ctx *hctx,
2633 const struct blk_mq_queue_data *bd)
2634{
2635 struct request *rq = bd->rq;
2636 struct dm_rq_target_io *tio = blk_mq_rq_to_pdu(rq);
2637 struct mapped_device *md = tio->md;
Mike Snitzer16f12262016-01-31 17:22:27 -05002638 struct dm_target *ti = md->immutable_target;
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002639
Mike Snitzer16f12262016-01-31 17:22:27 -05002640 if (unlikely(!ti)) {
2641 int srcu_idx;
2642 struct dm_table *map = dm_get_live_table(md, &srcu_idx);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002643
Mike Snitzer16f12262016-01-31 17:22:27 -05002644 ti = dm_table_find_target(map, 0);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002645 dm_put_live_table(md, srcu_idx);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002646 }
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002647
2648 if (ti->type->busy && ti->type->busy(ti))
2649 return BLK_MQ_RQ_QUEUE_BUSY;
2650
2651 dm_start_request(md, rq);
2652
2653 /* Init tio using md established in .init_request */
2654 init_tio(tio, rq, md);
2655
Mike Snitzer02233342015-03-10 23:49:26 -04002656 /*
2657 * Establish tio->ti before queuing work (map_tio_request)
2658 * or making direct call to map_request().
2659 */
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002660 tio->ti = ti;
Mike Snitzer02233342015-03-10 23:49:26 -04002661
Mike Snitzer16f12262016-01-31 17:22:27 -05002662 /*
2663 * Both the table and md type cannot change after initial table load
2664 */
2665 if (dm_get_md_type(md) == DM_TYPE_REQUEST_BASED) {
Mike Snitzer02233342015-03-10 23:49:26 -04002666 /* clone request is allocated at the end of the pdu */
2667 tio->clone = (void *)blk_mq_rq_to_pdu(rq) + sizeof(struct dm_rq_target_io);
Mike Snitzer45714fb2015-05-27 15:25:27 -04002668 (void) clone_rq(rq, md, tio, GFP_ATOMIC);
Mike Snitzer02233342015-03-10 23:49:26 -04002669 queue_kthread_work(&md->kworker, &tio->work);
2670 } else {
2671 /* Direct call is fine since .queue_rq allows allocations */
Mike Snitzer45714fb2015-05-27 15:25:27 -04002672 if (map_request(tio, rq, md) == DM_MAPIO_REQUEUE) {
2673 /* Undo dm_start_request() before requeuing */
Mikulas Patockae262f342015-06-09 17:22:49 -04002674 rq_end_stats(md, rq);
Mike Snitzer45714fb2015-05-27 15:25:27 -04002675 rq_completed(md, rq_data_dir(rq), false);
2676 return BLK_MQ_RQ_QUEUE_BUSY;
2677 }
Mike Snitzer02233342015-03-10 23:49:26 -04002678 }
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002679
2680 return BLK_MQ_RQ_QUEUE_OK;
2681}
2682
2683static struct blk_mq_ops dm_mq_ops = {
2684 .queue_rq = dm_mq_queue_rq,
2685 .map_queue = blk_mq_map_queue,
2686 .complete = dm_softirq_done,
2687 .init_request = dm_mq_init_request,
2688};
2689
2690static int dm_init_request_based_blk_mq_queue(struct mapped_device *md)
2691{
Mike Snitzer02233342015-03-10 23:49:26 -04002692 unsigned md_type = dm_get_md_type(md);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002693 struct request_queue *q;
2694 int err;
2695
2696 memset(&md->tag_set, 0, sizeof(md->tag_set));
2697 md->tag_set.ops = &dm_mq_ops;
2698 md->tag_set.queue_depth = BLKDEV_MAX_RQ;
2699 md->tag_set.numa_node = NUMA_NO_NODE;
2700 md->tag_set.flags = BLK_MQ_F_SHOULD_MERGE | BLK_MQ_F_SG_MERGE;
2701 md->tag_set.nr_hw_queues = 1;
Mike Snitzer02233342015-03-10 23:49:26 -04002702 if (md_type == DM_TYPE_REQUEST_BASED) {
2703 /* make the memory for non-blk-mq clone part of the pdu */
2704 md->tag_set.cmd_size = sizeof(struct dm_rq_target_io) + sizeof(struct request);
2705 } else
2706 md->tag_set.cmd_size = sizeof(struct dm_rq_target_io);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002707 md->tag_set.driver_data = md;
2708
2709 err = blk_mq_alloc_tag_set(&md->tag_set);
2710 if (err)
2711 return err;
2712
2713 q = blk_mq_init_allocated_queue(&md->tag_set, md->queue);
2714 if (IS_ERR(q)) {
2715 err = PTR_ERR(q);
2716 goto out_tag_set;
2717 }
2718 md->queue = q;
2719 dm_init_md_queue(md);
2720
2721 /* backfill 'mq' sysfs registration normally done in blk_register_queue */
2722 blk_mq_register_disk(md->disk);
2723
Mike Snitzer02233342015-03-10 23:49:26 -04002724 if (md_type == DM_TYPE_REQUEST_BASED)
2725 init_rq_based_worker_thread(md);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002726
2727 return 0;
2728
2729out_tag_set:
2730 blk_mq_free_tag_set(&md->tag_set);
2731 return err;
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002732}
2733
Mike Snitzer4e6e36c2015-06-26 09:42:57 -04002734static unsigned filter_md_type(unsigned type, struct mapped_device *md)
2735{
2736 if (type == DM_TYPE_BIO_BASED)
2737 return type;
2738
2739 return !md->use_blk_mq ? DM_TYPE_REQUEST_BASED : DM_TYPE_MQ_REQUEST_BASED;
2740}
2741
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002742/*
2743 * Setup the DM device's queue based on md's type
2744 */
2745int dm_setup_md_queue(struct mapped_device *md)
2746{
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002747 int r;
Mike Snitzer17e149b2015-03-11 15:01:09 -04002748 unsigned md_type = filter_md_type(dm_get_md_type(md), md);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002749
2750 switch (md_type) {
2751 case DM_TYPE_REQUEST_BASED:
2752 r = dm_init_request_based_queue(md);
2753 if (r) {
Mike Snitzerff36ab32015-02-23 17:56:37 -05002754 DMWARN("Cannot initialize queue for request-based mapped device");
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002755 return r;
Mike Snitzerff36ab32015-02-23 17:56:37 -05002756 }
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002757 break;
2758 case DM_TYPE_MQ_REQUEST_BASED:
2759 r = dm_init_request_based_blk_mq_queue(md);
2760 if (r) {
2761 DMWARN("Cannot initialize queue for request-based blk-mq mapped device");
2762 return r;
2763 }
2764 break;
2765 case DM_TYPE_BIO_BASED:
2766 dm_init_old_md_queue(md);
Mike Snitzerff36ab32015-02-23 17:56:37 -05002767 blk_queue_make_request(md->queue, dm_make_request);
Mikulas Patockadbba42d2015-10-21 16:34:20 -04002768 /*
2769 * DM handles splitting bios as needed. Free the bio_split bioset
2770 * since it won't be used (saves 1 process per bio-based DM device).
2771 */
2772 bioset_free(md->queue->bio_split);
2773 md->queue->bio_split = NULL;
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002774 break;
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002775 }
2776
2777 return 0;
2778}
2779
Mikulas Patocka2bec1f42015-02-17 14:30:53 -05002780struct mapped_device *dm_get_md(dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781{
2782 struct mapped_device *md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 unsigned minor = MINOR(dev);
2784
2785 if (MAJOR(dev) != _major || minor >= (1 << MINORBITS))
2786 return NULL;
2787
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002788 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789
2790 md = idr_find(&_minor_idr, minor);
Mikulas Patocka2bec1f42015-02-17 14:30:53 -05002791 if (md) {
2792 if ((md == MINOR_ALLOCED ||
2793 (MINOR(disk_devt(dm_disk(md))) != minor) ||
2794 dm_deleting_md(md) ||
2795 test_bit(DMF_FREEING, &md->flags))) {
2796 md = NULL;
2797 goto out;
2798 }
2799 dm_get(md);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002800 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002802out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002803 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804
David Teigland637842c2006-01-06 00:20:00 -08002805 return md;
2806}
Alasdair G Kergon3cf2e4b2011-10-31 20:19:06 +00002807EXPORT_SYMBOL_GPL(dm_get_md);
David Teiglandd229a952006-01-06 00:20:01 -08002808
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08002809void *dm_get_mdptr(struct mapped_device *md)
David Teigland637842c2006-01-06 00:20:00 -08002810{
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08002811 return md->interface_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812}
2813
2814void dm_set_mdptr(struct mapped_device *md, void *ptr)
2815{
2816 md->interface_ptr = ptr;
2817}
2818
2819void dm_get(struct mapped_device *md)
2820{
2821 atomic_inc(&md->holders);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002822 BUG_ON(test_bit(DMF_FREEING, &md->flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823}
2824
Mikulas Patocka09ee96b2015-02-26 11:41:28 -05002825int dm_hold(struct mapped_device *md)
2826{
2827 spin_lock(&_minor_lock);
2828 if (test_bit(DMF_FREEING, &md->flags)) {
2829 spin_unlock(&_minor_lock);
2830 return -EBUSY;
2831 }
2832 dm_get(md);
2833 spin_unlock(&_minor_lock);
2834 return 0;
2835}
2836EXPORT_SYMBOL_GPL(dm_hold);
2837
Alasdair G Kergon72d94862006-06-26 00:27:35 -07002838const char *dm_device_name(struct mapped_device *md)
2839{
2840 return md->name;
2841}
2842EXPORT_SYMBOL_GPL(dm_device_name);
2843
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002844static void __dm_destroy(struct mapped_device *md, bool wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845{
Mike Anderson1134e5a2006-03-27 01:17:54 -08002846 struct dm_table *map;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002847 int srcu_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002849 might_sleep();
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002850
Mike Snitzer63a4f062015-03-23 17:01:43 -04002851 spin_lock(&_minor_lock);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002852 idr_replace(&_minor_idr, MINOR_ALLOCED, MINOR(disk_devt(dm_disk(md))));
2853 set_bit(DMF_FREEING, &md->flags);
2854 spin_unlock(&_minor_lock);
2855
Mike Snitzer02233342015-03-10 23:49:26 -04002856 if (dm_request_based(md) && md->kworker_task)
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002857 flush_kthread_worker(&md->kworker);
2858
Mikulas Patockaab7c7bb2015-02-27 14:04:27 -05002859 /*
2860 * Take suspend_lock so that presuspend and postsuspend methods
2861 * do not race with internal suspend.
2862 */
2863 mutex_lock(&md->suspend_lock);
Junichi Nomura2a708cf2015-10-01 08:31:51 +00002864 map = dm_get_live_table(md, &srcu_idx);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002865 if (!dm_suspended_md(md)) {
2866 dm_table_presuspend_targets(map);
2867 dm_table_postsuspend_targets(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868 }
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002869 /* dm_put_live_table must be before msleep, otherwise deadlock is possible */
2870 dm_put_live_table(md, srcu_idx);
Junichi Nomura2a708cf2015-10-01 08:31:51 +00002871 mutex_unlock(&md->suspend_lock);
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002872
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002873 /*
2874 * Rare, but there may be I/O requests still going to complete,
2875 * for example. Wait for all references to disappear.
2876 * No one should increment the reference count of the mapped_device,
2877 * after the mapped_device state becomes DMF_FREEING.
2878 */
2879 if (wait)
2880 while (atomic_read(&md->holders))
2881 msleep(1);
2882 else if (atomic_read(&md->holders))
2883 DMWARN("%s: Forcibly removing mapped_device still in use! (%d users)",
2884 dm_device_name(md), atomic_read(&md->holders));
2885
2886 dm_sysfs_exit(md);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002887 dm_table_destroy(__unbind(md));
2888 free_dev(md);
2889}
2890
2891void dm_destroy(struct mapped_device *md)
2892{
2893 __dm_destroy(md, true);
2894}
2895
2896void dm_destroy_immediate(struct mapped_device *md)
2897{
2898 __dm_destroy(md, false);
2899}
2900
2901void dm_put(struct mapped_device *md)
2902{
2903 atomic_dec(&md->holders);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904}
Edward Goggin79eb8852007-05-09 02:32:56 -07002905EXPORT_SYMBOL_GPL(dm_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906
Mikulas Patocka401600d2009-04-02 19:55:38 +01002907static int dm_wait_for_completion(struct mapped_device *md, int interruptible)
Milan Broz46125c12008-02-08 02:10:30 +00002908{
2909 int r = 0;
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002910 DECLARE_WAITQUEUE(wait, current);
2911
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002912 add_wait_queue(&md->wait, &wait);
Milan Broz46125c12008-02-08 02:10:30 +00002913
2914 while (1) {
Mikulas Patocka401600d2009-04-02 19:55:38 +01002915 set_current_state(interruptible);
Milan Broz46125c12008-02-08 02:10:30 +00002916
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00002917 if (!md_in_flight(md))
Milan Broz46125c12008-02-08 02:10:30 +00002918 break;
2919
Mikulas Patocka401600d2009-04-02 19:55:38 +01002920 if (interruptible == TASK_INTERRUPTIBLE &&
2921 signal_pending(current)) {
Milan Broz46125c12008-02-08 02:10:30 +00002922 r = -EINTR;
2923 break;
2924 }
2925
2926 io_schedule();
2927 }
2928 set_current_state(TASK_RUNNING);
2929
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002930 remove_wait_queue(&md->wait, &wait);
2931
Milan Broz46125c12008-02-08 02:10:30 +00002932 return r;
2933}
2934
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935/*
2936 * Process the deferred bios
2937 */
Mikulas Patockaef208582009-04-02 19:55:38 +01002938static void dm_wq_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939{
Mikulas Patockaef208582009-04-02 19:55:38 +01002940 struct mapped_device *md = container_of(work, struct mapped_device,
2941 work);
Milan Broz6d6f10d2008-02-08 02:10:22 +00002942 struct bio *c;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002943 int srcu_idx;
2944 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002946 map = dm_get_live_table(md, &srcu_idx);
Mikulas Patockaef208582009-04-02 19:55:38 +01002947
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002948 while (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002949 spin_lock_irq(&md->deferred_lock);
2950 c = bio_list_pop(&md->deferred);
2951 spin_unlock_irq(&md->deferred_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01002952
Tejun Heo6a8736d2010-09-08 18:07:00 +02002953 if (!c)
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002954 break;
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002955
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002956 if (dm_request_based(md))
2957 generic_make_request(c);
Tejun Heo6a8736d2010-09-08 18:07:00 +02002958 else
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002959 __split_and_process_bio(md, map, c);
Mikulas Patocka022c2612009-04-02 19:55:39 +01002960 }
Milan Broz73d410c2008-02-08 02:10:25 +00002961
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002962 dm_put_live_table(md, srcu_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963}
2964
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002965static void dm_queue_flush(struct mapped_device *md)
Milan Broz304f3f62008-02-08 02:11:17 +00002966{
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002967 clear_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01002968 smp_mb__after_atomic();
Mikulas Patocka53d59142009-04-02 19:55:37 +01002969 queue_work(md->wq, &md->work);
Milan Broz304f3f62008-02-08 02:11:17 +00002970}
2971
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972/*
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002973 * Swap in a new table, returning the old one for the caller to destroy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974 */
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002975struct dm_table *dm_swap_table(struct mapped_device *md, struct dm_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976{
Mike Christie87eb5b22013-03-01 22:45:48 +00002977 struct dm_table *live_map = NULL, *map = ERR_PTR(-EINVAL);
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002978 struct queue_limits limits;
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002979 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980
Daniel Walkere61290a2008-02-08 02:10:08 +00002981 mutex_lock(&md->suspend_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982
2983 /* device must be suspended */
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +00002984 if (!dm_suspended_md(md))
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07002985 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986
Mike Snitzer3ae70652012-09-26 23:45:45 +01002987 /*
2988 * If the new table has no data devices, retain the existing limits.
2989 * This helps multipath with queue_if_no_path if all paths disappear,
2990 * then new I/O is queued based on these limits, and then some paths
2991 * reappear.
2992 */
2993 if (dm_table_has_no_data_devices(table)) {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002994 live_map = dm_get_live_table_fast(md);
Mike Snitzer3ae70652012-09-26 23:45:45 +01002995 if (live_map)
2996 limits = md->queue->limits;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002997 dm_put_live_table_fast(md);
Mike Snitzer3ae70652012-09-26 23:45:45 +01002998 }
2999
Mike Christie87eb5b22013-03-01 22:45:48 +00003000 if (!live_map) {
3001 r = dm_calculate_queue_limits(table, &limits);
3002 if (r) {
3003 map = ERR_PTR(r);
3004 goto out;
3005 }
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00003006 }
Mike Snitzer754c5fc2009-06-22 10:12:34 +01003007
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00003008 map = __bind(md, table, &limits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07003010out:
Daniel Walkere61290a2008-02-08 02:10:08 +00003011 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00003012 return map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013}
3014
3015/*
3016 * Functions to lock and unlock any filesystem running on the
3017 * device.
3018 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07003019static int lock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020{
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08003021 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022
3023 WARN_ON(md->frozen_sb);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07003024
Mikulas Patockadb8fef42009-06-22 10:12:15 +01003025 md->frozen_sb = freeze_bdev(md->bdev);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07003026 if (IS_ERR(md->frozen_sb)) {
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07003027 r = PTR_ERR(md->frozen_sb);
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08003028 md->frozen_sb = NULL;
3029 return r;
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07003030 }
3031
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08003032 set_bit(DMF_FROZEN, &md->flags);
3033
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 return 0;
3035}
3036
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07003037static void unlock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038{
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08003039 if (!test_bit(DMF_FROZEN, &md->flags))
3040 return;
3041
Mikulas Patockadb8fef42009-06-22 10:12:15 +01003042 thaw_bdev(md->bdev, md->frozen_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043 md->frozen_sb = NULL;
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08003044 clear_bit(DMF_FROZEN, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045}
3046
3047/*
Mike Snitzerffcc3932014-10-28 18:34:52 -04003048 * If __dm_suspend returns 0, the device is completely quiescent
3049 * now. There is no request-processing activity. All new requests
3050 * are being added to md->deferred list.
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01003051 *
Mike Snitzerffcc3932014-10-28 18:34:52 -04003052 * Caller must hold md->suspend_lock
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01003053 */
Mike Snitzerffcc3932014-10-28 18:34:52 -04003054static int __dm_suspend(struct mapped_device *md, struct dm_table *map,
3055 unsigned suspend_flags, int interruptible)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056{
Mike Snitzerffcc3932014-10-28 18:34:52 -04003057 bool do_lockfs = suspend_flags & DM_SUSPEND_LOCKFS_FLAG;
3058 bool noflush = suspend_flags & DM_SUSPEND_NOFLUSH_FLAG;
3059 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08003061 /*
3062 * DMF_NOFLUSH_SUSPENDING must be set before presuspend.
3063 * This flag is cleared before dm_suspend returns.
3064 */
3065 if (noflush)
3066 set_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
3067
Mike Snitzerd67ee212014-10-28 20:13:31 -04003068 /*
3069 * This gets reverted if there's an error later and the targets
3070 * provide the .presuspend_undo hook.
3071 */
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07003072 dm_table_presuspend_targets(map);
3073
Mikulas Patocka32a926d2009-06-22 10:12:17 +01003074 /*
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00003075 * Flush I/O to the device.
3076 * Any I/O submitted after lock_fs() may not be flushed.
3077 * noflush takes precedence over do_lockfs.
3078 * (lock_fs() flushes I/Os and waits for them to complete.)
Mikulas Patocka32a926d2009-06-22 10:12:17 +01003079 */
3080 if (!noflush && do_lockfs) {
3081 r = lock_fs(md);
Mike Snitzerd67ee212014-10-28 20:13:31 -04003082 if (r) {
3083 dm_table_presuspend_undo_targets(map);
Mike Snitzerffcc3932014-10-28 18:34:52 -04003084 return r;
Mike Snitzerd67ee212014-10-28 20:13:31 -04003085 }
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08003086 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087
3088 /*
Mikulas Patocka3b00b202009-04-09 00:27:15 +01003089 * Here we must make sure that no processes are submitting requests
3090 * to target drivers i.e. no one may be executing
3091 * __split_and_process_bio. This is called from dm_request and
3092 * dm_wq_work.
3093 *
3094 * To get all processes out of __split_and_process_bio in dm_request,
3095 * we take the write lock. To prevent any process from reentering
Tejun Heo6a8736d2010-09-08 18:07:00 +02003096 * __split_and_process_bio from dm_request and quiesce the thread
3097 * (dm_wq_work), we set BMF_BLOCK_IO_FOR_SUSPEND and call
3098 * flush_workqueue(md->wq).
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099 */
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01003100 set_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
Hannes Reinecke41abc4e2014-11-05 14:35:50 +01003101 if (map)
3102 synchronize_srcu(&md->io_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00003104 /*
Tejun Heo29e40132010-09-08 18:07:00 +02003105 * Stop md->queue before flushing md->wq in case request-based
3106 * dm defers requests to md->wq from md->queue.
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00003107 */
Keith Busch2eb6e1e2014-10-17 17:46:36 -06003108 if (dm_request_based(md)) {
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00003109 stop_queue(md->queue);
Mike Snitzer02233342015-03-10 23:49:26 -04003110 if (md->kworker_task)
3111 flush_kthread_worker(&md->kworker);
Keith Busch2eb6e1e2014-10-17 17:46:36 -06003112 }
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01003113
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00003114 flush_workqueue(md->wq);
3115
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116 /*
Mikulas Patocka3b00b202009-04-09 00:27:15 +01003117 * At this point no more requests are entering target request routines.
3118 * We call dm_wait_for_completion to wait for all existing requests
3119 * to finish.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120 */
Mike Snitzerffcc3932014-10-28 18:34:52 -04003121 r = dm_wait_for_completion(md, interruptible);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122
Milan Broz6d6f10d2008-02-08 02:10:22 +00003123 if (noflush)
Mikulas Patocka022c2612009-04-02 19:55:39 +01003124 clear_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
Hannes Reinecke41abc4e2014-11-05 14:35:50 +01003125 if (map)
3126 synchronize_srcu(&md->io_barrier);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08003127
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128 /* were we interrupted ? */
Milan Broz46125c12008-02-08 02:10:30 +00003129 if (r < 0) {
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01003130 dm_queue_flush(md);
Milan Broz73d410c2008-02-08 02:10:25 +00003131
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01003132 if (dm_request_based(md))
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00003133 start_queue(md->queue);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01003134
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07003135 unlock_fs(md);
Mike Snitzerd67ee212014-10-28 20:13:31 -04003136 dm_table_presuspend_undo_targets(map);
Mike Snitzerffcc3932014-10-28 18:34:52 -04003137 /* pushback list is already flushed, so skip flush */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07003138 }
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07003139
Mike Snitzerffcc3932014-10-28 18:34:52 -04003140 return r;
3141}
3142
3143/*
3144 * We need to be able to change a mapping table under a mounted
3145 * filesystem. For example we might want to move some data in
3146 * the background. Before the table can be swapped with
3147 * dm_bind_table, dm_suspend must be called to flush any in
3148 * flight bios and ensure that any further io gets deferred.
3149 */
3150/*
3151 * Suspend mechanism in request-based dm.
3152 *
3153 * 1. Flush all I/Os by lock_fs() if needed.
3154 * 2. Stop dispatching any I/O by stopping the request_queue.
3155 * 3. Wait for all in-flight I/Os to be completed or requeued.
3156 *
3157 * To abort suspend, start the request_queue.
3158 */
3159int dm_suspend(struct mapped_device *md, unsigned suspend_flags)
3160{
3161 struct dm_table *map = NULL;
3162 int r = 0;
3163
3164retry:
3165 mutex_lock_nested(&md->suspend_lock, SINGLE_DEPTH_NESTING);
3166
3167 if (dm_suspended_md(md)) {
3168 r = -EINVAL;
3169 goto out_unlock;
3170 }
3171
3172 if (dm_suspended_internally_md(md)) {
3173 /* already internally suspended, wait for internal resume */
3174 mutex_unlock(&md->suspend_lock);
3175 r = wait_on_bit(&md->flags, DMF_SUSPENDED_INTERNALLY, TASK_INTERRUPTIBLE);
3176 if (r)
3177 return r;
3178 goto retry;
3179 }
3180
Eric Dumazeta12f5d42014-11-23 09:34:29 -08003181 map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mike Snitzerffcc3932014-10-28 18:34:52 -04003182
3183 r = __dm_suspend(md, map, suspend_flags, TASK_INTERRUPTIBLE);
3184 if (r)
3185 goto out_unlock;
Mikulas Patocka3b00b202009-04-09 00:27:15 +01003186
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187 set_bit(DMF_SUSPENDED, &md->flags);
3188
Kiyoshi Ueda4d4471c2009-12-10 23:52:26 +00003189 dm_table_postsuspend_targets(map);
3190
Alasdair G Kergond2874832006-11-08 17:44:43 -08003191out_unlock:
Daniel Walkere61290a2008-02-08 02:10:08 +00003192 mutex_unlock(&md->suspend_lock);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07003193 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194}
3195
Mike Snitzerffcc3932014-10-28 18:34:52 -04003196static int __dm_resume(struct mapped_device *md, struct dm_table *map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197{
Mike Snitzerffcc3932014-10-28 18:34:52 -04003198 if (map) {
3199 int r = dm_table_resume_targets(map);
3200 if (r)
3201 return r;
3202 }
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07003203
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01003204 dm_queue_flush(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07003205
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01003206 /*
3207 * Flushing deferred I/Os must be done after targets are resumed
3208 * so that mapping of targets can work correctly.
3209 * Request-based dm is queueing the deferred I/Os in its request_queue.
3210 */
3211 if (dm_request_based(md))
3212 start_queue(md->queue);
3213
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07003214 unlock_fs(md);
3215
Mike Snitzerffcc3932014-10-28 18:34:52 -04003216 return 0;
3217}
3218
3219int dm_resume(struct mapped_device *md)
3220{
3221 int r = -EINVAL;
3222 struct dm_table *map = NULL;
3223
3224retry:
3225 mutex_lock_nested(&md->suspend_lock, SINGLE_DEPTH_NESTING);
3226
3227 if (!dm_suspended_md(md))
3228 goto out;
3229
3230 if (dm_suspended_internally_md(md)) {
3231 /* already internally suspended, wait for internal resume */
3232 mutex_unlock(&md->suspend_lock);
3233 r = wait_on_bit(&md->flags, DMF_SUSPENDED_INTERNALLY, TASK_INTERRUPTIBLE);
3234 if (r)
3235 return r;
3236 goto retry;
3237 }
3238
Eric Dumazeta12f5d42014-11-23 09:34:29 -08003239 map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mike Snitzerffcc3932014-10-28 18:34:52 -04003240 if (!map || !dm_table_get_size(map))
3241 goto out;
3242
3243 r = __dm_resume(md, map);
3244 if (r)
3245 goto out;
3246
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07003247 clear_bit(DMF_SUSPENDED, &md->flags);
3248
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07003249 r = 0;
3250out:
Daniel Walkere61290a2008-02-08 02:10:08 +00003251 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07003252
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07003253 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254}
3255
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003256/*
3257 * Internal suspend/resume works like userspace-driven suspend. It waits
3258 * until all bios finish and prevents issuing new bios to the target drivers.
3259 * It may be used only from the kernel.
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003260 */
3261
Mike Snitzerffcc3932014-10-28 18:34:52 -04003262static void __dm_internal_suspend(struct mapped_device *md, unsigned suspend_flags)
3263{
3264 struct dm_table *map = NULL;
3265
Mikulas Patocka96b26c82015-01-08 18:52:26 -05003266 if (md->internal_suspend_count++)
Mike Snitzerffcc3932014-10-28 18:34:52 -04003267 return; /* nested internal suspend */
3268
3269 if (dm_suspended_md(md)) {
3270 set_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
3271 return; /* nest suspend */
3272 }
3273
Eric Dumazeta12f5d42014-11-23 09:34:29 -08003274 map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mike Snitzerffcc3932014-10-28 18:34:52 -04003275
3276 /*
3277 * Using TASK_UNINTERRUPTIBLE because only NOFLUSH internal suspend is
3278 * supported. Properly supporting a TASK_INTERRUPTIBLE internal suspend
3279 * would require changing .presuspend to return an error -- avoid this
3280 * until there is a need for more elaborate variants of internal suspend.
3281 */
3282 (void) __dm_suspend(md, map, suspend_flags, TASK_UNINTERRUPTIBLE);
3283
3284 set_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
3285
3286 dm_table_postsuspend_targets(map);
3287}
3288
3289static void __dm_internal_resume(struct mapped_device *md)
3290{
Mikulas Patocka96b26c82015-01-08 18:52:26 -05003291 BUG_ON(!md->internal_suspend_count);
3292
3293 if (--md->internal_suspend_count)
Mike Snitzerffcc3932014-10-28 18:34:52 -04003294 return; /* resume from nested internal suspend */
3295
3296 if (dm_suspended_md(md))
3297 goto done; /* resume from nested suspend */
3298
3299 /*
3300 * NOTE: existing callers don't need to call dm_table_resume_targets
3301 * (which may fail -- so best to avoid it for now by passing NULL map)
3302 */
3303 (void) __dm_resume(md, NULL);
3304
3305done:
3306 clear_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
3307 smp_mb__after_atomic();
3308 wake_up_bit(&md->flags, DMF_SUSPENDED_INTERNALLY);
3309}
3310
3311void dm_internal_suspend_noflush(struct mapped_device *md)
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003312{
3313 mutex_lock(&md->suspend_lock);
Mike Snitzerffcc3932014-10-28 18:34:52 -04003314 __dm_internal_suspend(md, DM_SUSPEND_NOFLUSH_FLAG);
3315 mutex_unlock(&md->suspend_lock);
3316}
3317EXPORT_SYMBOL_GPL(dm_internal_suspend_noflush);
3318
3319void dm_internal_resume(struct mapped_device *md)
3320{
3321 mutex_lock(&md->suspend_lock);
3322 __dm_internal_resume(md);
3323 mutex_unlock(&md->suspend_lock);
3324}
3325EXPORT_SYMBOL_GPL(dm_internal_resume);
3326
3327/*
3328 * Fast variants of internal suspend/resume hold md->suspend_lock,
3329 * which prevents interaction with userspace-driven suspend.
3330 */
3331
3332void dm_internal_suspend_fast(struct mapped_device *md)
3333{
3334 mutex_lock(&md->suspend_lock);
3335 if (dm_suspended_md(md) || dm_suspended_internally_md(md))
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003336 return;
3337
3338 set_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
3339 synchronize_srcu(&md->io_barrier);
3340 flush_workqueue(md->wq);
3341 dm_wait_for_completion(md, TASK_UNINTERRUPTIBLE);
3342}
Mikulas Patockab735fed2015-02-26 11:40:35 -05003343EXPORT_SYMBOL_GPL(dm_internal_suspend_fast);
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003344
Mike Snitzerffcc3932014-10-28 18:34:52 -04003345void dm_internal_resume_fast(struct mapped_device *md)
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003346{
Mike Snitzerffcc3932014-10-28 18:34:52 -04003347 if (dm_suspended_md(md) || dm_suspended_internally_md(md))
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003348 goto done;
3349
3350 dm_queue_flush(md);
3351
3352done:
3353 mutex_unlock(&md->suspend_lock);
3354}
Mikulas Patockab735fed2015-02-26 11:40:35 -05003355EXPORT_SYMBOL_GPL(dm_internal_resume_fast);
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003356
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357/*-----------------------------------------------------------------
3358 * Event notification.
3359 *---------------------------------------------------------------*/
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00003360int dm_kobject_uevent(struct mapped_device *md, enum kobject_action action,
Milan Broz60935eb2009-06-22 10:12:30 +01003361 unsigned cookie)
Alasdair G Kergon69267a32007-12-13 14:15:57 +00003362{
Milan Broz60935eb2009-06-22 10:12:30 +01003363 char udev_cookie[DM_COOKIE_LENGTH];
3364 char *envp[] = { udev_cookie, NULL };
3365
3366 if (!cookie)
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00003367 return kobject_uevent(&disk_to_dev(md->disk)->kobj, action);
Milan Broz60935eb2009-06-22 10:12:30 +01003368 else {
3369 snprintf(udev_cookie, DM_COOKIE_LENGTH, "%s=%u",
3370 DM_COOKIE_ENV_VAR_NAME, cookie);
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00003371 return kobject_uevent_env(&disk_to_dev(md->disk)->kobj,
3372 action, envp);
Milan Broz60935eb2009-06-22 10:12:30 +01003373 }
Alasdair G Kergon69267a32007-12-13 14:15:57 +00003374}
3375
Mike Anderson7a8c3d32007-10-19 22:48:01 +01003376uint32_t dm_next_uevent_seq(struct mapped_device *md)
3377{
3378 return atomic_add_return(1, &md->uevent_seq);
3379}
3380
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381uint32_t dm_get_event_nr(struct mapped_device *md)
3382{
3383 return atomic_read(&md->event_nr);
3384}
3385
3386int dm_wait_event(struct mapped_device *md, int event_nr)
3387{
3388 return wait_event_interruptible(md->eventq,
3389 (event_nr != atomic_read(&md->event_nr)));
3390}
3391
Mike Anderson7a8c3d32007-10-19 22:48:01 +01003392void dm_uevent_add(struct mapped_device *md, struct list_head *elist)
3393{
3394 unsigned long flags;
3395
3396 spin_lock_irqsave(&md->uevent_lock, flags);
3397 list_add(elist, &md->uevent_list);
3398 spin_unlock_irqrestore(&md->uevent_lock, flags);
3399}
3400
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401/*
3402 * The gendisk is only valid as long as you have a reference
3403 * count on 'md'.
3404 */
3405struct gendisk *dm_disk(struct mapped_device *md)
3406{
3407 return md->disk;
3408}
Sami Tolvanen65ff5b72015-03-18 15:52:14 +00003409EXPORT_SYMBOL_GPL(dm_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410
Milan Broz784aae72009-01-06 03:05:12 +00003411struct kobject *dm_kobject(struct mapped_device *md)
3412{
Mikulas Patocka2995fa72014-01-13 19:37:54 -05003413 return &md->kobj_holder.kobj;
Milan Broz784aae72009-01-06 03:05:12 +00003414}
3415
Milan Broz784aae72009-01-06 03:05:12 +00003416struct mapped_device *dm_get_from_kobject(struct kobject *kobj)
3417{
3418 struct mapped_device *md;
3419
Mikulas Patocka2995fa72014-01-13 19:37:54 -05003420 md = container_of(kobj, struct mapped_device, kobj_holder.kobj);
Milan Broz784aae72009-01-06 03:05:12 +00003421
Milan Broz4d89b7b2009-06-22 10:12:11 +01003422 if (test_bit(DMF_FREEING, &md->flags) ||
Mike Anderson432a2122009-12-10 23:52:20 +00003423 dm_deleting_md(md))
Milan Broz4d89b7b2009-06-22 10:12:11 +01003424 return NULL;
3425
Milan Broz784aae72009-01-06 03:05:12 +00003426 dm_get(md);
3427 return md;
3428}
3429
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +00003430int dm_suspended_md(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431{
3432 return test_bit(DMF_SUSPENDED, &md->flags);
3433}
3434
Mike Snitzerffcc3932014-10-28 18:34:52 -04003435int dm_suspended_internally_md(struct mapped_device *md)
3436{
3437 return test_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
3438}
3439
Mikulas Patocka2c140a22013-11-01 18:27:41 -04003440int dm_test_deferred_remove_flag(struct mapped_device *md)
3441{
3442 return test_bit(DMF_DEFERRED_REMOVE, &md->flags);
3443}
3444
Kiyoshi Ueda64dbce52009-12-10 23:52:27 +00003445int dm_suspended(struct dm_target *ti)
3446{
Kiyoshi Uedaecdb2e22010-03-06 02:29:52 +00003447 return dm_suspended_md(dm_table_get_md(ti->table));
Kiyoshi Ueda64dbce52009-12-10 23:52:27 +00003448}
3449EXPORT_SYMBOL_GPL(dm_suspended);
3450
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08003451int dm_noflush_suspending(struct dm_target *ti)
3452{
Kiyoshi Uedaecdb2e22010-03-06 02:29:52 +00003453 return __noflush_suspending(dm_table_get_md(ti->table));
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08003454}
3455EXPORT_SYMBOL_GPL(dm_noflush_suspending);
3456
Mike Snitzer78d8e582015-06-26 10:01:13 -04003457struct dm_md_mempools *dm_alloc_md_mempools(struct mapped_device *md, unsigned type,
3458 unsigned integrity, unsigned per_bio_data_size)
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003459{
Mike Snitzer78d8e582015-06-26 10:01:13 -04003460 struct dm_md_mempools *pools = kzalloc(sizeof(*pools), GFP_KERNEL);
3461 struct kmem_cache *cachep = NULL;
3462 unsigned int pool_size = 0;
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003463 unsigned int front_pad;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003464
3465 if (!pools)
Mike Snitzer4e6e36c2015-06-26 09:42:57 -04003466 return NULL;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003467
Mike Snitzer78d8e582015-06-26 10:01:13 -04003468 type = filter_md_type(type, md);
Mike Snitzer17e149b2015-03-11 15:01:09 -04003469
Mike Snitzer78d8e582015-06-26 10:01:13 -04003470 switch (type) {
3471 case DM_TYPE_BIO_BASED:
3472 cachep = _io_cache;
3473 pool_size = dm_get_reserved_bio_based_ios();
3474 front_pad = roundup(per_bio_data_size, __alignof__(struct dm_target_io)) + offsetof(struct dm_target_io, clone);
3475 break;
3476 case DM_TYPE_REQUEST_BASED:
3477 cachep = _rq_tio_cache;
3478 pool_size = dm_get_reserved_rq_based_ios();
3479 pools->rq_pool = mempool_create_slab_pool(pool_size, _rq_cache);
3480 if (!pools->rq_pool)
3481 goto out;
3482 /* fall through to setup remaining rq-based pools */
3483 case DM_TYPE_MQ_REQUEST_BASED:
3484 if (!pool_size)
3485 pool_size = dm_get_reserved_rq_based_ios();
3486 front_pad = offsetof(struct dm_rq_clone_bio_info, clone);
3487 /* per_bio_data_size is not used. See __bind_mempools(). */
3488 WARN_ON(per_bio_data_size != 0);
3489 break;
3490 default:
3491 BUG();
3492 }
3493
3494 if (cachep) {
3495 pools->io_pool = mempool_create_slab_pool(pool_size, cachep);
3496 if (!pools->io_pool)
3497 goto out;
3498 }
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003499
Junichi Nomura3d8aab22014-10-03 11:55:26 +00003500 pools->bs = bioset_create_nobvec(pool_size, front_pad);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003501 if (!pools->bs)
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003502 goto out;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003503
Martin K. Petersena91a2782011-03-17 11:11:05 +01003504 if (integrity && bioset_integrity_create(pools->bs, pool_size))
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003505 goto out;
Martin K. Petersena91a2782011-03-17 11:11:05 +01003506
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003507 return pools;
Mike Snitzer78d8e582015-06-26 10:01:13 -04003508
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003509out:
3510 dm_free_md_mempools(pools);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003511
Mike Snitzer4e6e36c2015-06-26 09:42:57 -04003512 return NULL;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003513}
3514
3515void dm_free_md_mempools(struct dm_md_mempools *pools)
3516{
3517 if (!pools)
3518 return;
3519
Julia Lawall6f659852015-09-13 14:15:05 +02003520 mempool_destroy(pools->io_pool);
3521 mempool_destroy(pools->rq_pool);
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05003522
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003523 if (pools->bs)
3524 bioset_free(pools->bs);
3525
3526 kfree(pools);
3527}
3528
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003529static int dm_pr_register(struct block_device *bdev, u64 old_key, u64 new_key,
Mike Snitzer956a4022016-02-18 16:13:51 -05003530 u32 flags)
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003531{
3532 struct mapped_device *md = bdev->bd_disk->private_data;
3533 const struct pr_ops *ops;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003534 fmode_t mode;
Mike Snitzer956a4022016-02-18 16:13:51 -05003535 int r;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003536
Mike Snitzer956a4022016-02-18 16:13:51 -05003537 r = dm_grab_bdev_for_ioctl(md, &bdev, &mode);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003538 if (r < 0)
3539 return r;
3540
3541 ops = bdev->bd_disk->fops->pr_ops;
3542 if (ops && ops->pr_register)
3543 r = ops->pr_register(bdev, old_key, new_key, flags);
3544 else
3545 r = -EOPNOTSUPP;
3546
Mike Snitzer956a4022016-02-18 16:13:51 -05003547 bdput(bdev);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003548 return r;
3549}
3550
3551static int dm_pr_reserve(struct block_device *bdev, u64 key, enum pr_type type,
Mike Snitzer956a4022016-02-18 16:13:51 -05003552 u32 flags)
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003553{
3554 struct mapped_device *md = bdev->bd_disk->private_data;
3555 const struct pr_ops *ops;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003556 fmode_t mode;
Mike Snitzer956a4022016-02-18 16:13:51 -05003557 int r;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003558
Mike Snitzer956a4022016-02-18 16:13:51 -05003559 r = dm_grab_bdev_for_ioctl(md, &bdev, &mode);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003560 if (r < 0)
3561 return r;
3562
3563 ops = bdev->bd_disk->fops->pr_ops;
3564 if (ops && ops->pr_reserve)
3565 r = ops->pr_reserve(bdev, key, type, flags);
3566 else
3567 r = -EOPNOTSUPP;
3568
Mike Snitzer956a4022016-02-18 16:13:51 -05003569 bdput(bdev);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003570 return r;
3571}
3572
3573static int dm_pr_release(struct block_device *bdev, u64 key, enum pr_type type)
3574{
3575 struct mapped_device *md = bdev->bd_disk->private_data;
3576 const struct pr_ops *ops;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003577 fmode_t mode;
Mike Snitzer956a4022016-02-18 16:13:51 -05003578 int r;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003579
Mike Snitzer956a4022016-02-18 16:13:51 -05003580 r = dm_grab_bdev_for_ioctl(md, &bdev, &mode);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003581 if (r < 0)
3582 return r;
3583
3584 ops = bdev->bd_disk->fops->pr_ops;
3585 if (ops && ops->pr_release)
3586 r = ops->pr_release(bdev, key, type);
3587 else
3588 r = -EOPNOTSUPP;
3589
Mike Snitzer956a4022016-02-18 16:13:51 -05003590 bdput(bdev);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003591 return r;
3592}
3593
3594static int dm_pr_preempt(struct block_device *bdev, u64 old_key, u64 new_key,
Mike Snitzer956a4022016-02-18 16:13:51 -05003595 enum pr_type type, bool abort)
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003596{
3597 struct mapped_device *md = bdev->bd_disk->private_data;
3598 const struct pr_ops *ops;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003599 fmode_t mode;
Mike Snitzer956a4022016-02-18 16:13:51 -05003600 int r;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003601
Mike Snitzer956a4022016-02-18 16:13:51 -05003602 r = dm_grab_bdev_for_ioctl(md, &bdev, &mode);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003603 if (r < 0)
3604 return r;
3605
3606 ops = bdev->bd_disk->fops->pr_ops;
3607 if (ops && ops->pr_preempt)
3608 r = ops->pr_preempt(bdev, old_key, new_key, type, abort);
3609 else
3610 r = -EOPNOTSUPP;
3611
Mike Snitzer956a4022016-02-18 16:13:51 -05003612 bdput(bdev);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003613 return r;
3614}
3615
3616static int dm_pr_clear(struct block_device *bdev, u64 key)
3617{
3618 struct mapped_device *md = bdev->bd_disk->private_data;
3619 const struct pr_ops *ops;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003620 fmode_t mode;
Mike Snitzer956a4022016-02-18 16:13:51 -05003621 int r;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003622
Mike Snitzer956a4022016-02-18 16:13:51 -05003623 r = dm_grab_bdev_for_ioctl(md, &bdev, &mode);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003624 if (r < 0)
3625 return r;
3626
3627 ops = bdev->bd_disk->fops->pr_ops;
3628 if (ops && ops->pr_clear)
3629 r = ops->pr_clear(bdev, key);
3630 else
3631 r = -EOPNOTSUPP;
3632
Mike Snitzer956a4022016-02-18 16:13:51 -05003633 bdput(bdev);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003634 return r;
3635}
3636
3637static const struct pr_ops dm_pr_ops = {
3638 .pr_register = dm_pr_register,
3639 .pr_reserve = dm_pr_reserve,
3640 .pr_release = dm_pr_release,
3641 .pr_preempt = dm_pr_preempt,
3642 .pr_clear = dm_pr_clear,
3643};
3644
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07003645static const struct block_device_operations dm_blk_dops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646 .open = dm_blk_open,
3647 .release = dm_blk_close,
Milan Brozaa129a22006-10-03 01:15:15 -07003648 .ioctl = dm_blk_ioctl,
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08003649 .getgeo = dm_blk_getgeo,
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003650 .pr_ops = &dm_pr_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003651 .owner = THIS_MODULE
3652};
3653
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654/*
3655 * module hooks
3656 */
3657module_init(dm_init);
3658module_exit(dm_exit);
3659
3660module_param(major, uint, 0);
3661MODULE_PARM_DESC(major, "The major number of the device mapper");
Mike Snitzerf4790822013-09-12 18:06:12 -04003662
Mike Snitzere8603132013-09-12 18:06:12 -04003663module_param(reserved_bio_based_ios, uint, S_IRUGO | S_IWUSR);
3664MODULE_PARM_DESC(reserved_bio_based_ios, "Reserved IOs in bio-based mempools");
3665
Mike Snitzerf4790822013-09-12 18:06:12 -04003666module_param(reserved_rq_based_ios, uint, S_IRUGO | S_IWUSR);
3667MODULE_PARM_DESC(reserved_rq_based_ios, "Reserved IOs in request-based mempools");
3668
Mike Snitzer17e149b2015-03-11 15:01:09 -04003669module_param(use_blk_mq, bool, S_IRUGO | S_IWUSR);
3670MODULE_PARM_DESC(use_blk_mq, "Use block multiqueue for request-based DM devices");
3671
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672MODULE_DESCRIPTION(DM_NAME " driver");
3673MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
3674MODULE_LICENSE("GPL");