blob: 43e0d1a85a6096f4ac6436c05b7058fa7dea02bd [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>
Li Zefan55782132009-06-09 13:43:05 +080024
25#include <trace/events/block.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Alasdair G Kergon72d94862006-06-26 00:27:35 -070027#define DM_MSG_PREFIX "core"
28
Namhyung Kim71a16732011-10-31 20:18:54 +000029#ifdef CONFIG_PRINTK
30/*
31 * ratelimit state to be used in DMXXX_LIMIT().
32 */
33DEFINE_RATELIMIT_STATE(dm_ratelimit_state,
34 DEFAULT_RATELIMIT_INTERVAL,
35 DEFAULT_RATELIMIT_BURST);
36EXPORT_SYMBOL(dm_ratelimit_state);
37#endif
38
Milan Broz60935eb2009-06-22 10:12:30 +010039/*
40 * Cookies are numeric values sent with CHANGE and REMOVE
41 * uevents while resuming, removing or renaming the device.
42 */
43#define DM_COOKIE_ENV_VAR_NAME "DM_COOKIE"
44#define DM_COOKIE_LENGTH 24
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046static const char *_name = DM_NAME;
47
48static unsigned int major = 0;
49static unsigned int _major = 0;
50
Alasdair G Kergond15b7742011-08-02 12:32:01 +010051static DEFINE_IDR(_minor_idr);
52
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -070053static DEFINE_SPINLOCK(_minor_lock);
Mikulas Patocka2c140a22013-11-01 18:27:41 -040054
55static void do_deferred_remove(struct work_struct *w);
56
57static DECLARE_WORK(deferred_remove_work, do_deferred_remove);
58
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -040059static struct workqueue_struct *deferred_remove_workqueue;
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061/*
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000062 * For bio-based dm.
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 * One of these is allocated per bio.
64 */
65struct dm_io {
66 struct mapped_device *md;
67 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 atomic_t io_count;
Richard Kennedy6ae2fa62008-07-21 12:00:28 +010069 struct bio *bio;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -080070 unsigned long start_time;
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +010071 spinlock_t endio_lock;
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -040072 struct dm_stats_aux stats_aux;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073};
74
75/*
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000076 * For request-based dm.
77 * One of these is allocated per request.
78 */
79struct dm_rq_target_io {
80 struct mapped_device *md;
81 struct dm_target *ti;
Mike Snitzer1ae49ea2014-12-05 17:11:05 -050082 struct request *orig, *clone;
Keith Busch2eb6e1e2014-10-17 17:46:36 -060083 struct kthread_work work;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000084 int error;
85 union map_info info;
86};
87
88/*
Kent Overstreet94818742012-09-07 13:44:01 -070089 * For request-based dm - the bio clones we allocate are embedded in these
90 * structs.
91 *
92 * We allocate these with bio_alloc_bioset, using the front_pad parameter when
93 * the bioset is created - this means the bio has to come at the end of the
94 * struct.
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000095 */
96struct dm_rq_clone_bio_info {
97 struct bio *orig;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +010098 struct dm_rq_target_io *tio;
Kent Overstreet94818742012-09-07 13:44:01 -070099 struct bio clone;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000100};
101
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100102union map_info *dm_get_rq_mapinfo(struct request *rq)
103{
104 if (rq && rq->end_io_data)
105 return &((struct dm_rq_target_io *)rq->end_io_data)->info;
106 return NULL;
107}
108EXPORT_SYMBOL_GPL(dm_get_rq_mapinfo);
109
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -0700110#define MINOR_ALLOCED ((void *)-1)
111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112/*
113 * Bits for the md->flags field.
114 */
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +0100115#define DMF_BLOCK_IO_FOR_SUSPEND 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116#define DMF_SUSPENDED 1
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -0800117#define DMF_FROZEN 2
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700118#define DMF_FREEING 3
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700119#define DMF_DELETING 4
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800120#define DMF_NOFLUSH_SUSPENDING 5
Mikulas Patockad5b9dd02011-08-02 12:32:04 +0100121#define DMF_MERGE_IS_OPTIONAL 6
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400122#define DMF_DEFERRED_REMOVE 7
Mike Snitzerffcc3932014-10-28 18:34:52 -0400123#define DMF_SUSPENDED_INTERNALLY 8
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Milan Broz304f3f62008-02-08 02:11:17 +0000125/*
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100126 * A dummy definition to make RCU happy.
127 * struct dm_table should never be dereferenced in this file.
128 */
129struct dm_table {
130 int undefined__;
131};
132
133/*
Milan Broz304f3f62008-02-08 02:11:17 +0000134 * Work processed by per-device workqueue.
135 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136struct mapped_device {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100137 struct srcu_struct io_barrier;
Daniel Walkere61290a2008-02-08 02:10:08 +0000138 struct mutex suspend_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 atomic_t holders;
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700140 atomic_t open_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Mikulas Patocka2a7faeb12013-07-10 23:41:18 +0100142 /*
143 * The current mapping.
144 * Use dm_get_live_table{_fast} or take suspend_lock for
145 * dereference.
146 */
Pranith Kumar6fa99522014-10-28 15:09:57 -0700147 struct dm_table __rcu *map;
Mikulas Patocka2a7faeb12013-07-10 23:41:18 +0100148
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500149 struct list_head table_devices;
150 struct mutex table_devices_lock;
151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 unsigned long flags;
153
Jens Axboe165125e2007-07-24 09:28:11 +0200154 struct request_queue *queue;
Mike Snitzera5664da2010-08-12 04:14:01 +0100155 unsigned type;
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +0100156 /* Protect queue and type against concurrent access. */
Mike Snitzera5664da2010-08-12 04:14:01 +0100157 struct mutex type_lock;
158
Alasdair G Kergon36a04562011-10-31 20:19:04 +0000159 struct target_type *immutable_target_type;
160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 struct gendisk *disk;
Mike Anderson7e51f252006-03-27 01:17:52 -0800162 char name[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164 void *interface_ptr;
165
166 /*
167 * A list of ios that arrived while we were suspended.
168 */
Nikanth Karthikesan316d3152009-10-06 20:16:55 +0200169 atomic_t pending[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 wait_queue_head_t wait;
Mikulas Patocka53d59142009-04-02 19:55:37 +0100171 struct work_struct work;
Kiyoshi Ueda74859362006-12-08 02:41:02 -0800172 struct bio_list deferred;
Mikulas Patocka022c2612009-04-02 19:55:39 +0100173 spinlock_t deferred_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
175 /*
Tejun Heo29e40132010-09-08 18:07:00 +0200176 * Processing queue (flush)
Milan Broz304f3f62008-02-08 02:11:17 +0000177 */
178 struct workqueue_struct *wq;
179
180 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 * io objects are allocated from here.
182 */
183 mempool_t *io_pool;
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500184 mempool_t *rq_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Stefan Bader9faf4002006-10-03 01:15:41 -0700186 struct bio_set *bs;
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 /*
189 * Event handling.
190 */
191 atomic_t event_nr;
192 wait_queue_head_t eventq;
Mike Anderson7a8c3d32007-10-19 22:48:01 +0100193 atomic_t uevent_seq;
194 struct list_head uevent_list;
195 spinlock_t uevent_lock; /* Protect access to uevent_list */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197 /*
198 * freeze/thaw support require holding onto a super block
199 */
200 struct super_block *frozen_sb;
Mikulas Patockadb8fef42009-06-22 10:12:15 +0100201 struct block_device *bdev;
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800202
203 /* forced geometry settings */
204 struct hd_geometry geometry;
Milan Broz784aae72009-01-06 03:05:12 +0000205
Mikulas Patocka2995fa72014-01-13 19:37:54 -0500206 /* kobject and completion */
207 struct dm_kobject_holder kobj_holder;
Mikulas Patockabe35f482014-01-06 23:01:22 -0500208
Tejun Heod87f4c12010-09-03 11:56:19 +0200209 /* zero-length flush that will be cloned and submitted to targets */
210 struct bio flush_bio;
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400211
Mikulas Patocka96b26c82015-01-08 18:52:26 -0500212 /* the number of internal suspends */
213 unsigned internal_suspend_count;
214
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400215 struct dm_stats stats;
Keith Busch2eb6e1e2014-10-17 17:46:36 -0600216
217 struct kthread_worker kworker;
218 struct task_struct *kworker_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219};
220
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +0100221/*
222 * For mempools pre-allocation at the table loading time.
223 */
224struct dm_md_mempools {
225 mempool_t *io_pool;
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500226 mempool_t *rq_pool;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +0100227 struct bio_set *bs;
228};
229
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500230struct table_device {
231 struct list_head list;
232 atomic_t count;
233 struct dm_dev dm_dev;
234};
235
Mike Snitzer6cfa5852013-09-12 18:06:11 -0400236#define RESERVED_BIO_BASED_IOS 16
237#define RESERVED_REQUEST_BASED_IOS 256
Mike Snitzerf4790822013-09-12 18:06:12 -0400238#define RESERVED_MAX_IOS 1024
Christoph Lametere18b8902006-12-06 20:33:20 -0800239static struct kmem_cache *_io_cache;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000240static struct kmem_cache *_rq_tio_cache;
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500241static struct kmem_cache *_rq_cache;
Kent Overstreet94818742012-09-07 13:44:01 -0700242
Mike Snitzerf4790822013-09-12 18:06:12 -0400243/*
Mike Snitzere8603132013-09-12 18:06:12 -0400244 * Bio-based DM's mempools' reserved IOs set by the user.
245 */
246static unsigned reserved_bio_based_ios = RESERVED_BIO_BASED_IOS;
247
248/*
Mike Snitzerf4790822013-09-12 18:06:12 -0400249 * Request-based DM's mempools' reserved IOs set by the user.
250 */
251static unsigned reserved_rq_based_ios = RESERVED_REQUEST_BASED_IOS;
252
Mike Snitzer09c2d532015-02-27 22:25:26 -0500253static unsigned __dm_get_module_param(unsigned *module_param,
Mike Snitzerf4790822013-09-12 18:06:12 -0400254 unsigned def, unsigned max)
255{
Mike Snitzer09c2d532015-02-27 22:25:26 -0500256 unsigned param = ACCESS_ONCE(*module_param);
257 unsigned modified_param = 0;
Mike Snitzerf4790822013-09-12 18:06:12 -0400258
Mike Snitzer09c2d532015-02-27 22:25:26 -0500259 if (!param)
260 modified_param = def;
261 else if (param > max)
262 modified_param = max;
Mike Snitzerf4790822013-09-12 18:06:12 -0400263
Mike Snitzer09c2d532015-02-27 22:25:26 -0500264 if (modified_param) {
265 (void)cmpxchg(module_param, param, modified_param);
266 param = modified_param;
Mike Snitzerf4790822013-09-12 18:06:12 -0400267 }
268
Mike Snitzer09c2d532015-02-27 22:25:26 -0500269 return param;
Mike Snitzerf4790822013-09-12 18:06:12 -0400270}
271
Mike Snitzere8603132013-09-12 18:06:12 -0400272unsigned dm_get_reserved_bio_based_ios(void)
273{
Mike Snitzer09c2d532015-02-27 22:25:26 -0500274 return __dm_get_module_param(&reserved_bio_based_ios,
Mike Snitzere8603132013-09-12 18:06:12 -0400275 RESERVED_BIO_BASED_IOS, RESERVED_MAX_IOS);
276}
277EXPORT_SYMBOL_GPL(dm_get_reserved_bio_based_ios);
278
Mike Snitzerf4790822013-09-12 18:06:12 -0400279unsigned dm_get_reserved_rq_based_ios(void)
280{
Mike Snitzer09c2d532015-02-27 22:25:26 -0500281 return __dm_get_module_param(&reserved_rq_based_ios,
Mike Snitzerf4790822013-09-12 18:06:12 -0400282 RESERVED_REQUEST_BASED_IOS, RESERVED_MAX_IOS);
283}
284EXPORT_SYMBOL_GPL(dm_get_reserved_rq_based_ios);
285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286static int __init local_init(void)
287{
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100288 int r = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 /* allocate a slab for the dm_ios */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100291 _io_cache = KMEM_CACHE(dm_io, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 if (!_io_cache)
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100293 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000295 _rq_tio_cache = KMEM_CACHE(dm_rq_target_io, 0);
296 if (!_rq_tio_cache)
Mikulas Patockadba14162012-10-12 21:02:15 +0100297 goto out_free_io_cache;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000298
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500299 _rq_cache = kmem_cache_create("dm_clone_request", sizeof(struct request),
300 __alignof__(struct request), 0, NULL);
301 if (!_rq_cache)
302 goto out_free_rq_tio_cache;
303
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100304 r = dm_uevent_init();
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100305 if (r)
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500306 goto out_free_rq_cache;
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100307
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400308 deferred_remove_workqueue = alloc_workqueue("kdmremove", WQ_UNBOUND, 1);
309 if (!deferred_remove_workqueue) {
310 r = -ENOMEM;
311 goto out_uevent_exit;
312 }
313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 _major = major;
315 r = register_blkdev(_major, _name);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100316 if (r < 0)
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400317 goto out_free_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
319 if (!_major)
320 _major = r;
321
322 return 0;
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100323
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400324out_free_workqueue:
325 destroy_workqueue(deferred_remove_workqueue);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100326out_uevent_exit:
327 dm_uevent_exit();
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500328out_free_rq_cache:
329 kmem_cache_destroy(_rq_cache);
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000330out_free_rq_tio_cache:
331 kmem_cache_destroy(_rq_tio_cache);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100332out_free_io_cache:
333 kmem_cache_destroy(_io_cache);
334
335 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336}
337
338static void local_exit(void)
339{
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400340 flush_scheduled_work();
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400341 destroy_workqueue(deferred_remove_workqueue);
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400342
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500343 kmem_cache_destroy(_rq_cache);
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000344 kmem_cache_destroy(_rq_tio_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 kmem_cache_destroy(_io_cache);
Akinobu Mita00d59402007-07-17 04:03:46 -0700346 unregister_blkdev(_major, _name);
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100347 dm_uevent_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
349 _major = 0;
350
351 DMINFO("cleaned up");
352}
353
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000354static int (*_inits[])(void) __initdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 local_init,
356 dm_target_init,
357 dm_linear_init,
358 dm_stripe_init,
Mikulas Patocka952b3552009-12-10 23:51:57 +0000359 dm_io_init,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100360 dm_kcopyd_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 dm_interface_init,
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400362 dm_statistics_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363};
364
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000365static void (*_exits[])(void) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 local_exit,
367 dm_target_exit,
368 dm_linear_exit,
369 dm_stripe_exit,
Mikulas Patocka952b3552009-12-10 23:51:57 +0000370 dm_io_exit,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100371 dm_kcopyd_exit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 dm_interface_exit,
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400373 dm_statistics_exit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374};
375
376static int __init dm_init(void)
377{
378 const int count = ARRAY_SIZE(_inits);
379
380 int r, i;
381
382 for (i = 0; i < count; i++) {
383 r = _inits[i]();
384 if (r)
385 goto bad;
386 }
387
388 return 0;
389
390 bad:
391 while (i--)
392 _exits[i]();
393
394 return r;
395}
396
397static void __exit dm_exit(void)
398{
399 int i = ARRAY_SIZE(_exits);
400
401 while (i--)
402 _exits[i]();
Alasdair G Kergond15b7742011-08-02 12:32:01 +0100403
404 /*
405 * Should be empty by this point.
406 */
Alasdair G Kergond15b7742011-08-02 12:32:01 +0100407 idr_destroy(&_minor_idr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408}
409
410/*
411 * Block device functions
412 */
Mike Anderson432a2122009-12-10 23:52:20 +0000413int dm_deleting_md(struct mapped_device *md)
414{
415 return test_bit(DMF_DELETING, &md->flags);
416}
417
Al Virofe5f9f22008-03-02 10:29:31 -0500418static int dm_blk_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419{
420 struct mapped_device *md;
421
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700422 spin_lock(&_minor_lock);
423
Al Virofe5f9f22008-03-02 10:29:31 -0500424 md = bdev->bd_disk->private_data;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700425 if (!md)
426 goto out;
427
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700428 if (test_bit(DMF_FREEING, &md->flags) ||
Mike Anderson432a2122009-12-10 23:52:20 +0000429 dm_deleting_md(md)) {
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700430 md = NULL;
431 goto out;
432 }
433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 dm_get(md);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700435 atomic_inc(&md->open_count);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700436out:
437 spin_unlock(&_minor_lock);
438
439 return md ? 0 : -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440}
441
Al Virodb2a1442013-05-05 21:52:57 -0400442static void dm_blk_close(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443{
Mike Snitzer63a4f062015-03-23 17:01:43 -0400444 struct mapped_device *md;
Arnd Bergmann6e9624b2010-08-07 18:25:34 +0200445
Milan Broz4a1aeb92011-01-13 19:59:48 +0000446 spin_lock(&_minor_lock);
447
Mike Snitzer63a4f062015-03-23 17:01:43 -0400448 md = disk->private_data;
449 if (WARN_ON(!md))
450 goto out;
451
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400452 if (atomic_dec_and_test(&md->open_count) &&
453 (test_bit(DMF_DEFERRED_REMOVE, &md->flags)))
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400454 queue_work(deferred_remove_workqueue, &deferred_remove_work);
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 dm_put(md);
Mike Snitzer63a4f062015-03-23 17:01:43 -0400457out:
Milan Broz4a1aeb92011-01-13 19:59:48 +0000458 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459}
460
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700461int dm_open_count(struct mapped_device *md)
462{
463 return atomic_read(&md->open_count);
464}
465
466/*
467 * Guarantees nothing is using the device before it's deleted.
468 */
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400469int dm_lock_for_deletion(struct mapped_device *md, bool mark_deferred, bool only_deferred)
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700470{
471 int r = 0;
472
473 spin_lock(&_minor_lock);
474
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400475 if (dm_open_count(md)) {
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700476 r = -EBUSY;
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400477 if (mark_deferred)
478 set_bit(DMF_DEFERRED_REMOVE, &md->flags);
479 } else if (only_deferred && !test_bit(DMF_DEFERRED_REMOVE, &md->flags))
480 r = -EEXIST;
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700481 else
482 set_bit(DMF_DELETING, &md->flags);
483
484 spin_unlock(&_minor_lock);
485
486 return r;
487}
488
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400489int dm_cancel_deferred_remove(struct mapped_device *md)
490{
491 int r = 0;
492
493 spin_lock(&_minor_lock);
494
495 if (test_bit(DMF_DELETING, &md->flags))
496 r = -EBUSY;
497 else
498 clear_bit(DMF_DEFERRED_REMOVE, &md->flags);
499
500 spin_unlock(&_minor_lock);
501
502 return r;
503}
504
505static void do_deferred_remove(struct work_struct *w)
506{
507 dm_deferred_remove();
508}
509
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400510sector_t dm_get_size(struct mapped_device *md)
511{
512 return get_capacity(md->disk);
513}
514
Mike Snitzer9974fa22014-02-28 15:33:43 +0100515struct request_queue *dm_get_md_queue(struct mapped_device *md)
516{
517 return md->queue;
518}
519
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400520struct dm_stats *dm_get_stats(struct mapped_device *md)
521{
522 return &md->stats;
523}
524
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800525static int dm_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
526{
527 struct mapped_device *md = bdev->bd_disk->private_data;
528
529 return dm_get_geometry(md, geo);
530}
531
Al Virofe5f9f22008-03-02 10:29:31 -0500532static int dm_blk_ioctl(struct block_device *bdev, fmode_t mode,
Milan Brozaa129a22006-10-03 01:15:15 -0700533 unsigned int cmd, unsigned long arg)
534{
Al Virofe5f9f22008-03-02 10:29:31 -0500535 struct mapped_device *md = bdev->bd_disk->private_data;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100536 int srcu_idx;
Hannes Reinecke6c182cd2013-07-10 23:41:15 +0100537 struct dm_table *map;
Milan Brozaa129a22006-10-03 01:15:15 -0700538 struct dm_target *tgt;
539 int r = -ENOTTY;
540
Hannes Reinecke6c182cd2013-07-10 23:41:15 +0100541retry:
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100542 map = dm_get_live_table(md, &srcu_idx);
543
Milan Brozaa129a22006-10-03 01:15:15 -0700544 if (!map || !dm_table_get_size(map))
545 goto out;
546
547 /* We only support devices that have a single target */
548 if (dm_table_get_num_targets(map) != 1)
549 goto out;
550
551 tgt = dm_table_get_target(map, 0);
Mike Snitzer4d341d82014-11-16 14:21:47 -0500552 if (!tgt->type->ioctl)
553 goto out;
Milan Brozaa129a22006-10-03 01:15:15 -0700554
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +0000555 if (dm_suspended_md(md)) {
Milan Brozaa129a22006-10-03 01:15:15 -0700556 r = -EAGAIN;
557 goto out;
558 }
559
Mike Snitzer4d341d82014-11-16 14:21:47 -0500560 r = tgt->type->ioctl(tgt, cmd, arg);
Milan Brozaa129a22006-10-03 01:15:15 -0700561
562out:
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100563 dm_put_live_table(md, srcu_idx);
Milan Brozaa129a22006-10-03 01:15:15 -0700564
Hannes Reinecke6c182cd2013-07-10 23:41:15 +0100565 if (r == -ENOTCONN) {
566 msleep(10);
567 goto retry;
568 }
569
Milan Brozaa129a22006-10-03 01:15:15 -0700570 return r;
571}
572
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100573static struct dm_io *alloc_io(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574{
575 return mempool_alloc(md->io_pool, GFP_NOIO);
576}
577
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100578static void free_io(struct mapped_device *md, struct dm_io *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
580 mempool_free(io, md->io_pool);
581}
582
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100583static void free_tio(struct mapped_device *md, struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584{
Mikulas Patockadba14162012-10-12 21:02:15 +0100585 bio_put(&tio->clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586}
587
Kiyoshi Ueda08885642009-12-10 23:52:15 +0000588static struct dm_rq_target_io *alloc_rq_tio(struct mapped_device *md,
589 gfp_t gfp_mask)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100590{
Jun'ichi Nomura5f015202013-03-01 22:45:48 +0000591 return mempool_alloc(md->io_pool, gfp_mask);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100592}
593
594static void free_rq_tio(struct dm_rq_target_io *tio)
595{
Jun'ichi Nomura5f015202013-03-01 22:45:48 +0000596 mempool_free(tio, tio->md->io_pool);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100597}
598
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500599static struct request *alloc_clone_request(struct mapped_device *md,
600 gfp_t gfp_mask)
601{
602 return mempool_alloc(md->rq_pool, gfp_mask);
603}
604
605static void free_clone_request(struct mapped_device *md, struct request *rq)
606{
607 mempool_free(rq, md->rq_pool);
608}
609
Kiyoshi Ueda90abb8c2009-12-10 23:52:13 +0000610static int md_in_flight(struct mapped_device *md)
611{
612 return atomic_read(&md->pending[READ]) +
613 atomic_read(&md->pending[WRITE]);
614}
615
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800616static void start_io_acct(struct dm_io *io)
617{
618 struct mapped_device *md = io->md;
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400619 struct bio *bio = io->bio;
Tejun Heoc9959052008-08-25 19:47:21 +0900620 int cpu;
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400621 int rw = bio_data_dir(bio);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800622
623 io->start_time = jiffies;
624
Tejun Heo074a7ac2008-08-25 19:56:14 +0900625 cpu = part_stat_lock();
626 part_round_stats(cpu, &dm_disk(md)->part0);
627 part_stat_unlock();
Shaohua Li1e9bb882011-03-22 08:35:35 +0100628 atomic_set(&dm_disk(md)->part0.in_flight[rw],
629 atomic_inc_return(&md->pending[rw]));
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400630
631 if (unlikely(dm_stats_used(&md->stats)))
Kent Overstreet4f024f32013-10-11 15:44:27 -0700632 dm_stats_account_io(&md->stats, bio->bi_rw, bio->bi_iter.bi_sector,
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400633 bio_sectors(bio), false, 0, &io->stats_aux);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800634}
635
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000636static void end_io_acct(struct dm_io *io)
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800637{
638 struct mapped_device *md = io->md;
639 struct bio *bio = io->bio;
640 unsigned long duration = jiffies - io->start_time;
Gu Zheng18c0b222014-11-24 11:05:26 +0800641 int pending;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800642 int rw = bio_data_dir(bio);
643
Gu Zheng18c0b222014-11-24 11:05:26 +0800644 generic_end_io_acct(rw, &dm_disk(md)->part0, io->start_time);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800645
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400646 if (unlikely(dm_stats_used(&md->stats)))
Kent Overstreet4f024f32013-10-11 15:44:27 -0700647 dm_stats_account_io(&md->stats, bio->bi_rw, bio->bi_iter.bi_sector,
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400648 bio_sectors(bio), true, duration, &io->stats_aux);
649
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100650 /*
651 * After this is decremented the bio must not be touched if it is
Tejun Heod87f4c12010-09-03 11:56:19 +0200652 * a flush.
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100653 */
Shaohua Li1e9bb882011-03-22 08:35:35 +0100654 pending = atomic_dec_return(&md->pending[rw]);
655 atomic_set(&dm_disk(md)->part0.in_flight[rw], pending);
Nikanth Karthikesan316d3152009-10-06 20:16:55 +0200656 pending += atomic_read(&md->pending[rw^0x1]);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800657
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000658 /* nudge anyone waiting on suspend queue */
659 if (!pending)
660 wake_up(&md->wait);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800661}
662
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663/*
664 * Add the bio to the list of deferred io.
665 */
Mikulas Patocka92c63902009-04-09 00:27:15 +0100666static void queue_io(struct mapped_device *md, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667{
Kiyoshi Ueda054474202010-09-08 18:07:01 +0200668 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Kiyoshi Ueda054474202010-09-08 18:07:01 +0200670 spin_lock_irqsave(&md->deferred_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 bio_list_add(&md->deferred, bio);
Kiyoshi Ueda054474202010-09-08 18:07:01 +0200672 spin_unlock_irqrestore(&md->deferred_lock, flags);
Tejun Heo6a8736d2010-09-08 18:07:00 +0200673 queue_work(md->wq, &md->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674}
675
676/*
677 * Everyone (including functions in this file), should use this
678 * function to access the md->map field, and make sure they call
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100679 * dm_put_live_table() when finished.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 */
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100681struct dm_table *dm_get_live_table(struct mapped_device *md, int *srcu_idx) __acquires(md->io_barrier)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100683 *srcu_idx = srcu_read_lock(&md->io_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100685 return srcu_dereference(md->map, &md->io_barrier);
686}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100688void dm_put_live_table(struct mapped_device *md, int srcu_idx) __releases(md->io_barrier)
689{
690 srcu_read_unlock(&md->io_barrier, srcu_idx);
691}
692
693void dm_sync_table(struct mapped_device *md)
694{
695 synchronize_srcu(&md->io_barrier);
696 synchronize_rcu_expedited();
697}
698
699/*
700 * A fast alternative to dm_get_live_table/dm_put_live_table.
701 * The caller must not block between these two functions.
702 */
703static struct dm_table *dm_get_live_table_fast(struct mapped_device *md) __acquires(RCU)
704{
705 rcu_read_lock();
706 return rcu_dereference(md->map);
707}
708
709static void dm_put_live_table_fast(struct mapped_device *md) __releases(RCU)
710{
711 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712}
713
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800714/*
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500715 * Open a table device so we can use it as a map destination.
716 */
717static int open_table_device(struct table_device *td, dev_t dev,
718 struct mapped_device *md)
719{
720 static char *_claim_ptr = "I belong to device-mapper";
721 struct block_device *bdev;
722
723 int r;
724
725 BUG_ON(td->dm_dev.bdev);
726
727 bdev = blkdev_get_by_dev(dev, td->dm_dev.mode | FMODE_EXCL, _claim_ptr);
728 if (IS_ERR(bdev))
729 return PTR_ERR(bdev);
730
731 r = bd_link_disk_holder(bdev, dm_disk(md));
732 if (r) {
733 blkdev_put(bdev, td->dm_dev.mode | FMODE_EXCL);
734 return r;
735 }
736
737 td->dm_dev.bdev = bdev;
738 return 0;
739}
740
741/*
742 * Close a table device that we've been using.
743 */
744static void close_table_device(struct table_device *td, struct mapped_device *md)
745{
746 if (!td->dm_dev.bdev)
747 return;
748
749 bd_unlink_disk_holder(td->dm_dev.bdev, dm_disk(md));
750 blkdev_put(td->dm_dev.bdev, td->dm_dev.mode | FMODE_EXCL);
751 td->dm_dev.bdev = NULL;
752}
753
754static struct table_device *find_table_device(struct list_head *l, dev_t dev,
755 fmode_t mode) {
756 struct table_device *td;
757
758 list_for_each_entry(td, l, list)
759 if (td->dm_dev.bdev->bd_dev == dev && td->dm_dev.mode == mode)
760 return td;
761
762 return NULL;
763}
764
765int dm_get_table_device(struct mapped_device *md, dev_t dev, fmode_t mode,
766 struct dm_dev **result) {
767 int r;
768 struct table_device *td;
769
770 mutex_lock(&md->table_devices_lock);
771 td = find_table_device(&md->table_devices, dev, mode);
772 if (!td) {
773 td = kmalloc(sizeof(*td), GFP_KERNEL);
774 if (!td) {
775 mutex_unlock(&md->table_devices_lock);
776 return -ENOMEM;
777 }
778
779 td->dm_dev.mode = mode;
780 td->dm_dev.bdev = NULL;
781
782 if ((r = open_table_device(td, dev, md))) {
783 mutex_unlock(&md->table_devices_lock);
784 kfree(td);
785 return r;
786 }
787
788 format_dev_t(td->dm_dev.name, dev);
789
790 atomic_set(&td->count, 0);
791 list_add(&td->list, &md->table_devices);
792 }
793 atomic_inc(&td->count);
794 mutex_unlock(&md->table_devices_lock);
795
796 *result = &td->dm_dev;
797 return 0;
798}
799EXPORT_SYMBOL_GPL(dm_get_table_device);
800
801void dm_put_table_device(struct mapped_device *md, struct dm_dev *d)
802{
803 struct table_device *td = container_of(d, struct table_device, dm_dev);
804
805 mutex_lock(&md->table_devices_lock);
806 if (atomic_dec_and_test(&td->count)) {
807 close_table_device(td, md);
808 list_del(&td->list);
809 kfree(td);
810 }
811 mutex_unlock(&md->table_devices_lock);
812}
813EXPORT_SYMBOL(dm_put_table_device);
814
815static void free_table_devices(struct list_head *devices)
816{
817 struct list_head *tmp, *next;
818
819 list_for_each_safe(tmp, next, devices) {
820 struct table_device *td = list_entry(tmp, struct table_device, list);
821
822 DMWARN("dm_destroy: %s still exists with %d references",
823 td->dm_dev.name, atomic_read(&td->count));
824 kfree(td);
825 }
826}
827
828/*
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800829 * Get the geometry associated with a dm device
830 */
831int dm_get_geometry(struct mapped_device *md, struct hd_geometry *geo)
832{
833 *geo = md->geometry;
834
835 return 0;
836}
837
838/*
839 * Set the geometry of a device.
840 */
841int dm_set_geometry(struct mapped_device *md, struct hd_geometry *geo)
842{
843 sector_t sz = (sector_t)geo->cylinders * geo->heads * geo->sectors;
844
845 if (geo->start > sz) {
846 DMWARN("Start sector is beyond the geometry limits.");
847 return -EINVAL;
848 }
849
850 md->geometry = *geo;
851
852 return 0;
853}
854
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855/*-----------------------------------------------------------------
856 * CRUD START:
857 * A more elegant soln is in the works that uses the queue
858 * merge fn, unfortunately there are a couple of changes to
859 * the block layer that I want to make for this. So in the
860 * interests of getting something for people to use I give
861 * you this clearly demarcated crap.
862 *---------------------------------------------------------------*/
863
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800864static int __noflush_suspending(struct mapped_device *md)
865{
866 return test_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
867}
868
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869/*
870 * Decrements the number of outstanding ios that a bio has been
871 * cloned into, completing the original io if necc.
872 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800873static void dec_pending(struct dm_io *io, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874{
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800875 unsigned long flags;
Milan Brozb35f8ca2009-03-16 17:44:36 +0000876 int io_error;
877 struct bio *bio;
878 struct mapped_device *md = io->md;
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800879
880 /* Push-back supersedes any I/O errors */
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +0100881 if (unlikely(error)) {
882 spin_lock_irqsave(&io->endio_lock, flags);
883 if (!(io->error > 0 && __noflush_suspending(md)))
884 io->error = error;
885 spin_unlock_irqrestore(&io->endio_lock, flags);
886 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
888 if (atomic_dec_and_test(&io->io_count)) {
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800889 if (io->error == DM_ENDIO_REQUEUE) {
890 /*
891 * Target requested pushing back the I/O.
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800892 */
Mikulas Patocka022c2612009-04-02 19:55:39 +0100893 spin_lock_irqsave(&md->deferred_lock, flags);
Tejun Heo6a8736d2010-09-08 18:07:00 +0200894 if (__noflush_suspending(md))
895 bio_list_add_head(&md->deferred, io->bio);
896 else
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800897 /* noflush suspend was interrupted. */
898 io->error = -EIO;
Mikulas Patocka022c2612009-04-02 19:55:39 +0100899 spin_unlock_irqrestore(&md->deferred_lock, flags);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800900 }
901
Milan Brozb35f8ca2009-03-16 17:44:36 +0000902 io_error = io->error;
903 bio = io->bio;
Tejun Heo6a8736d2010-09-08 18:07:00 +0200904 end_io_acct(io);
905 free_io(md, io);
Jens Axboe2056a782006-03-23 20:00:26 +0100906
Tejun Heo6a8736d2010-09-08 18:07:00 +0200907 if (io_error == DM_ENDIO_REQUEUE)
908 return;
909
Kent Overstreet4f024f32013-10-11 15:44:27 -0700910 if ((bio->bi_rw & REQ_FLUSH) && bio->bi_iter.bi_size) {
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100911 /*
Tejun Heo6a8736d2010-09-08 18:07:00 +0200912 * Preflush done for flush with data, reissue
913 * without REQ_FLUSH.
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100914 */
Tejun Heo6a8736d2010-09-08 18:07:00 +0200915 bio->bi_rw &= ~REQ_FLUSH;
916 queue_io(md, bio);
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100917 } else {
Mike Snitzerb372d362010-09-08 18:07:01 +0200918 /* done with normal IO or empty flush */
Linus Torvalds0a82a8d2013-04-18 09:00:26 -0700919 trace_block_bio_complete(md->queue, bio, io_error);
Mike Snitzerb372d362010-09-08 18:07:01 +0200920 bio_endio(bio, io_error);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800921 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 }
923}
924
Mike Snitzer7eee4ae2014-06-02 15:50:06 -0400925static void disable_write_same(struct mapped_device *md)
926{
927 struct queue_limits *limits = dm_get_queue_limits(md);
928
929 /* device doesn't really support WRITE SAME, disable it */
930 limits->max_write_same_sectors = 0;
931}
932
NeilBrown6712ecf2007-09-27 12:47:43 +0200933static void clone_endio(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934{
zhendong chen5164bec2014-12-17 14:37:04 +0800935 int r = error;
Mikulas Patockabfc6d412014-03-04 18:24:49 -0500936 struct dm_target_io *tio = container_of(bio, struct dm_target_io, clone);
Milan Brozb35f8ca2009-03-16 17:44:36 +0000937 struct dm_io *io = tio->io;
Stefan Bader9faf4002006-10-03 01:15:41 -0700938 struct mapped_device *md = tio->io->md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 dm_endio_fn endio = tio->ti->type->end_io;
940
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 if (!bio_flagged(bio, BIO_UPTODATE) && !error)
942 error = -EIO;
943
944 if (endio) {
Mikulas Patocka7de3ee52012-12-21 20:23:41 +0000945 r = endio(tio->ti, bio, error);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800946 if (r < 0 || r == DM_ENDIO_REQUEUE)
947 /*
948 * error and requeue request are handled
949 * in dec_pending().
950 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 error = r;
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800952 else if (r == DM_ENDIO_INCOMPLETE)
953 /* The target will handle the io */
NeilBrown6712ecf2007-09-27 12:47:43 +0200954 return;
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800955 else if (r) {
956 DMWARN("unimplemented target endio return value: %d", r);
957 BUG();
958 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 }
960
Mike Snitzer7eee4ae2014-06-02 15:50:06 -0400961 if (unlikely(r == -EREMOTEIO && (bio->bi_rw & REQ_WRITE_SAME) &&
962 !bdev_get_queue(bio->bi_bdev)->limits.max_write_same_sectors))
963 disable_write_same(md);
964
Stefan Bader9faf4002006-10-03 01:15:41 -0700965 free_tio(md, tio);
Milan Brozb35f8ca2009-03-16 17:44:36 +0000966 dec_pending(io, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967}
968
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100969/*
970 * Partial completion handling for request-based dm
971 */
972static void end_clone_bio(struct bio *clone, int error)
973{
Mikulas Patockabfc6d412014-03-04 18:24:49 -0500974 struct dm_rq_clone_bio_info *info =
975 container_of(clone, struct dm_rq_clone_bio_info, clone);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100976 struct dm_rq_target_io *tio = info->tio;
977 struct bio *bio = info->orig;
Kent Overstreet4f024f32013-10-11 15:44:27 -0700978 unsigned int nr_bytes = info->orig->bi_iter.bi_size;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100979
980 bio_put(clone);
981
982 if (tio->error)
983 /*
984 * An error has already been detected on the request.
985 * Once error occurred, just let clone->end_io() handle
986 * the remainder.
987 */
988 return;
989 else if (error) {
990 /*
991 * Don't notice the error to the upper layer yet.
992 * The error handling decision is made by the target driver,
993 * when the request is completed.
994 */
995 tio->error = error;
996 return;
997 }
998
999 /*
1000 * I/O for the bio successfully completed.
1001 * Notice the data completion to the upper layer.
1002 */
1003
1004 /*
1005 * bios are processed from the head of the list.
1006 * So the completing bio should always be rq->bio.
1007 * If it's not, something wrong is happening.
1008 */
1009 if (tio->orig->bio != bio)
1010 DMERR("bio completion is going in the middle of the request");
1011
1012 /*
1013 * Update the original request.
1014 * Do not use blk_end_request() here, because it may complete
1015 * the original request before the clone, and break the ordering.
1016 */
1017 blk_update_request(tio->orig, 0, nr_bytes);
1018}
1019
1020/*
1021 * Don't touch any member of the md after calling this function because
1022 * the md may be freed in dm_put() at the end of this function.
1023 * Or do dm_get() before calling this function and dm_put() later.
1024 */
Keith Busch466d89a2014-10-17 17:46:37 -06001025static void rq_completed(struct mapped_device *md, int rw, bool run_queue)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001026{
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00001027 atomic_dec(&md->pending[rw]);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001028
1029 /* nudge anyone waiting on suspend queue */
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00001030 if (!md_in_flight(md))
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001031 wake_up(&md->wait);
1032
Jens Axboea8c32a52012-11-06 12:24:26 +01001033 /*
1034 * Run this off this callpath, as drivers could invoke end_io while
1035 * inside their request_fn (and holding the queue lock). Calling
1036 * back into ->request_fn() could deadlock attempting to grab the
1037 * queue lock again.
1038 */
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001039 if (run_queue)
Jens Axboea8c32a52012-11-06 12:24:26 +01001040 blk_run_queue_async(md->queue);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001041
1042 /*
1043 * dm_put() must be at the end of this function. See the comment above
1044 */
1045 dm_put(md);
1046}
1047
Kiyoshi Uedaa77e28c2009-09-04 20:40:16 +01001048static void free_rq_clone(struct request *clone)
1049{
1050 struct dm_rq_target_io *tio = clone->end_io_data;
1051
1052 blk_rq_unprep_clone(clone);
Mike Snitzere5863d92014-12-17 21:08:12 -05001053 if (clone->q && clone->q->mq_ops)
1054 tio->ti->type->release_clone_rq(clone);
1055 else
1056 free_clone_request(tio->md, clone);
Kiyoshi Uedaa77e28c2009-09-04 20:40:16 +01001057 free_rq_tio(tio);
1058}
1059
Kiyoshi Ueda980691e2009-12-10 23:52:17 +00001060/*
1061 * Complete the clone and the original request.
Keith Busch466d89a2014-10-17 17:46:37 -06001062 * Must be called without clone's queue lock held,
1063 * see end_clone_request() for more details.
Kiyoshi Ueda980691e2009-12-10 23:52:17 +00001064 */
1065static void dm_end_request(struct request *clone, int error)
1066{
1067 int rw = rq_data_dir(clone);
1068 struct dm_rq_target_io *tio = clone->end_io_data;
1069 struct mapped_device *md = tio->md;
1070 struct request *rq = tio->orig;
1071
Tejun Heo29e40132010-09-08 18:07:00 +02001072 if (rq->cmd_type == REQ_TYPE_BLOCK_PC) {
Kiyoshi Ueda980691e2009-12-10 23:52:17 +00001073 rq->errors = clone->errors;
1074 rq->resid_len = clone->resid_len;
1075
1076 if (rq->sense)
1077 /*
1078 * We are using the sense buffer of the original
1079 * request.
1080 * So setting the length of the sense data is enough.
1081 */
1082 rq->sense_len = clone->sense_len;
1083 }
1084
1085 free_rq_clone(clone);
Tejun Heo29e40132010-09-08 18:07:00 +02001086 blk_end_request_all(rq, error);
1087 rq_completed(md, rw, true);
Kiyoshi Ueda980691e2009-12-10 23:52:17 +00001088}
1089
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001090static void dm_unprep_request(struct request *rq)
1091{
Keith Busch466d89a2014-10-17 17:46:37 -06001092 struct dm_rq_target_io *tio = rq->special;
1093 struct request *clone = tio->clone;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001094
1095 rq->special = NULL;
1096 rq->cmd_flags &= ~REQ_DONTPREP;
1097
Mike Snitzere5863d92014-12-17 21:08:12 -05001098 if (clone)
1099 free_rq_clone(clone);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001100}
1101
1102/*
1103 * Requeue the original request of a clone.
1104 */
Keith Busch466d89a2014-10-17 17:46:37 -06001105static void dm_requeue_unmapped_original_request(struct mapped_device *md,
1106 struct request *rq)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001107{
Keith Busch466d89a2014-10-17 17:46:37 -06001108 int rw = rq_data_dir(rq);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001109 struct request_queue *q = rq->q;
1110 unsigned long flags;
1111
1112 dm_unprep_request(rq);
1113
1114 spin_lock_irqsave(q->queue_lock, flags);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001115 blk_requeue_request(q, rq);
1116 spin_unlock_irqrestore(q->queue_lock, flags);
1117
Keith Busch466d89a2014-10-17 17:46:37 -06001118 rq_completed(md, rw, false);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001119}
Keith Busch466d89a2014-10-17 17:46:37 -06001120
1121static void dm_requeue_unmapped_request(struct request *clone)
1122{
1123 struct dm_rq_target_io *tio = clone->end_io_data;
1124
1125 dm_requeue_unmapped_original_request(tio->md, tio->orig);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001126}
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001127
1128static void __stop_queue(struct request_queue *q)
1129{
1130 blk_stop_queue(q);
1131}
1132
1133static void stop_queue(struct request_queue *q)
1134{
1135 unsigned long flags;
1136
1137 spin_lock_irqsave(q->queue_lock, flags);
1138 __stop_queue(q);
1139 spin_unlock_irqrestore(q->queue_lock, flags);
1140}
1141
1142static void __start_queue(struct request_queue *q)
1143{
1144 if (blk_queue_stopped(q))
1145 blk_start_queue(q);
1146}
1147
1148static void start_queue(struct request_queue *q)
1149{
1150 unsigned long flags;
1151
1152 spin_lock_irqsave(q->queue_lock, flags);
1153 __start_queue(q);
1154 spin_unlock_irqrestore(q->queue_lock, flags);
1155}
1156
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001157static void dm_done(struct request *clone, int error, bool mapped)
1158{
1159 int r = error;
1160 struct dm_rq_target_io *tio = clone->end_io_data;
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001161 dm_request_endio_fn rq_end_io = NULL;
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001162
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001163 if (tio->ti) {
1164 rq_end_io = tio->ti->type->rq_end_io;
1165
1166 if (mapped && rq_end_io)
1167 r = rq_end_io(tio->ti, clone, error, &tio->info);
1168 }
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001169
Mike Snitzer7eee4ae2014-06-02 15:50:06 -04001170 if (unlikely(r == -EREMOTEIO && (clone->cmd_flags & REQ_WRITE_SAME) &&
1171 !clone->q->limits.max_write_same_sectors))
1172 disable_write_same(tio->md);
1173
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001174 if (r <= 0)
1175 /* The target wants to complete the I/O */
1176 dm_end_request(clone, r);
1177 else if (r == DM_ENDIO_INCOMPLETE)
1178 /* The target will handle the I/O */
1179 return;
1180 else if (r == DM_ENDIO_REQUEUE)
1181 /* The target wants to requeue the I/O */
1182 dm_requeue_unmapped_request(clone);
1183 else {
1184 DMWARN("unimplemented target endio return value: %d", r);
1185 BUG();
1186 }
1187}
1188
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001189/*
1190 * Request completion handler for request-based dm
1191 */
1192static void dm_softirq_done(struct request *rq)
1193{
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001194 bool mapped = true;
Keith Busch466d89a2014-10-17 17:46:37 -06001195 struct dm_rq_target_io *tio = rq->special;
1196 struct request *clone = tio->clone;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001197
Mike Snitzere5863d92014-12-17 21:08:12 -05001198 if (!clone) {
1199 blk_end_request_all(rq, tio->error);
1200 rq_completed(tio->md, rq_data_dir(rq), false);
1201 free_rq_tio(tio);
1202 return;
1203 }
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001204
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001205 if (rq->cmd_flags & REQ_FAILED)
1206 mapped = false;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001207
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001208 dm_done(clone, tio->error, mapped);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001209}
1210
1211/*
1212 * Complete the clone and the original request with the error status
1213 * through softirq context.
1214 */
Keith Busch466d89a2014-10-17 17:46:37 -06001215static void dm_complete_request(struct request *rq, int error)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001216{
Keith Busch466d89a2014-10-17 17:46:37 -06001217 struct dm_rq_target_io *tio = rq->special;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001218
1219 tio->error = error;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001220 blk_complete_request(rq);
1221}
1222
1223/*
1224 * Complete the not-mapped clone and the original request with the error status
1225 * through softirq context.
1226 * Target's rq_end_io() function isn't called.
Mike Snitzere5863d92014-12-17 21:08:12 -05001227 * This may be used when the target's map_rq() or clone_and_map_rq() functions fail.
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001228 */
Keith Busch466d89a2014-10-17 17:46:37 -06001229static void dm_kill_unmapped_request(struct request *rq, int error)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001230{
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001231 rq->cmd_flags |= REQ_FAILED;
Keith Busch466d89a2014-10-17 17:46:37 -06001232 dm_complete_request(rq, error);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001233}
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001234
1235/*
Keith Busch466d89a2014-10-17 17:46:37 -06001236 * Called with the clone's queue lock held
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001237 */
1238static void end_clone_request(struct request *clone, int error)
1239{
Keith Busch466d89a2014-10-17 17:46:37 -06001240 struct dm_rq_target_io *tio = clone->end_io_data;
1241
Mike Snitzere5863d92014-12-17 21:08:12 -05001242 if (!clone->q->mq_ops) {
1243 /*
1244 * For just cleaning up the information of the queue in which
1245 * the clone was dispatched.
1246 * The clone is *NOT* freed actually here because it is alloced
1247 * from dm own mempool (REQ_ALLOCED isn't set).
1248 */
1249 __blk_put_request(clone->q, clone);
1250 }
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001251
1252 /*
1253 * Actual request completion is done in a softirq context which doesn't
Keith Busch466d89a2014-10-17 17:46:37 -06001254 * hold the clone's queue lock. Otherwise, deadlock could occur because:
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001255 * - another request may be submitted by the upper level driver
1256 * of the stacking during the completion
1257 * - the submission which requires queue lock may be done
Keith Busch466d89a2014-10-17 17:46:37 -06001258 * against this clone's queue
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001259 */
Keith Busch466d89a2014-10-17 17:46:37 -06001260 dm_complete_request(tio->orig, error);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001261}
1262
Mike Snitzer56a67df2010-08-12 04:14:10 +01001263/*
1264 * Return maximum size of I/O possible at the supplied sector up to the current
1265 * target boundary.
1266 */
1267static sector_t max_io_len_target_boundary(sector_t sector, struct dm_target *ti)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268{
Mike Snitzer56a67df2010-08-12 04:14:10 +01001269 sector_t target_offset = dm_target_offset(ti, sector);
1270
1271 return ti->len - target_offset;
1272}
1273
1274static sector_t max_io_len(sector_t sector, struct dm_target *ti)
1275{
1276 sector_t len = max_io_len_target_boundary(sector, ti);
Mike Snitzer542f9032012-07-27 15:08:00 +01001277 sector_t offset, max_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
1279 /*
Mike Snitzer542f9032012-07-27 15:08:00 +01001280 * Does the target need to split even further?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 */
Mike Snitzer542f9032012-07-27 15:08:00 +01001282 if (ti->max_io_len) {
1283 offset = dm_target_offset(ti, sector);
1284 if (unlikely(ti->max_io_len & (ti->max_io_len - 1)))
1285 max_len = sector_div(offset, ti->max_io_len);
1286 else
1287 max_len = offset & (ti->max_io_len - 1);
1288 max_len = ti->max_io_len - max_len;
1289
1290 if (len > max_len)
1291 len = max_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 }
1293
1294 return len;
1295}
1296
Mike Snitzer542f9032012-07-27 15:08:00 +01001297int dm_set_target_max_io_len(struct dm_target *ti, sector_t len)
1298{
1299 if (len > UINT_MAX) {
1300 DMERR("Specified maximum size of target IO (%llu) exceeds limit (%u)",
1301 (unsigned long long)len, UINT_MAX);
1302 ti->error = "Maximum size of target IO is too large";
1303 return -EINVAL;
1304 }
1305
1306 ti->max_io_len = (uint32_t) len;
1307
1308 return 0;
1309}
1310EXPORT_SYMBOL_GPL(dm_set_target_max_io_len);
1311
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001312/*
1313 * A target may call dm_accept_partial_bio only from the map routine. It is
1314 * allowed for all bio types except REQ_FLUSH.
1315 *
1316 * dm_accept_partial_bio informs the dm that the target only wants to process
1317 * additional n_sectors sectors of the bio and the rest of the data should be
1318 * sent in a next bio.
1319 *
1320 * A diagram that explains the arithmetics:
1321 * +--------------------+---------------+-------+
1322 * | 1 | 2 | 3 |
1323 * +--------------------+---------------+-------+
1324 *
1325 * <-------------- *tio->len_ptr --------------->
1326 * <------- bi_size ------->
1327 * <-- n_sectors -->
1328 *
1329 * Region 1 was already iterated over with bio_advance or similar function.
1330 * (it may be empty if the target doesn't use bio_advance)
1331 * Region 2 is the remaining bio size that the target wants to process.
1332 * (it may be empty if region 1 is non-empty, although there is no reason
1333 * to make it empty)
1334 * The target requires that region 3 is to be sent in the next bio.
1335 *
1336 * If the target wants to receive multiple copies of the bio (via num_*bios, etc),
1337 * the partially processed part (the sum of regions 1+2) must be the same for all
1338 * copies of the bio.
1339 */
1340void dm_accept_partial_bio(struct bio *bio, unsigned n_sectors)
1341{
1342 struct dm_target_io *tio = container_of(bio, struct dm_target_io, clone);
1343 unsigned bi_size = bio->bi_iter.bi_size >> SECTOR_SHIFT;
1344 BUG_ON(bio->bi_rw & REQ_FLUSH);
1345 BUG_ON(bi_size > *tio->len_ptr);
1346 BUG_ON(n_sectors > bi_size);
1347 *tio->len_ptr -= bi_size - n_sectors;
1348 bio->bi_iter.bi_size = n_sectors << SECTOR_SHIFT;
1349}
1350EXPORT_SYMBOL_GPL(dm_accept_partial_bio);
1351
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001352static void __map_bio(struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353{
1354 int r;
Jens Axboe2056a782006-03-23 20:00:26 +01001355 sector_t sector;
Stefan Bader9faf4002006-10-03 01:15:41 -07001356 struct mapped_device *md;
Mikulas Patockadba14162012-10-12 21:02:15 +01001357 struct bio *clone = &tio->clone;
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001358 struct dm_target *ti = tio->ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 clone->bi_end_io = clone_endio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361
1362 /*
1363 * Map the clone. If r == 0 we don't need to do
1364 * anything, the target has assumed ownership of
1365 * this io.
1366 */
1367 atomic_inc(&tio->io->io_count);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001368 sector = clone->bi_iter.bi_sector;
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00001369 r = ti->type->map(ti, clone);
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -08001370 if (r == DM_MAPIO_REMAPPED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 /* the bio has been remapped so dispatch it */
Jens Axboe2056a782006-03-23 20:00:26 +01001372
Mike Snitzerd07335e2010-11-16 12:52:38 +01001373 trace_block_bio_remap(bdev_get_queue(clone->bi_bdev), clone,
1374 tio->io->bio->bi_bdev->bd_dev, sector);
Jens Axboe2056a782006-03-23 20:00:26 +01001375
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 generic_make_request(clone);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001377 } else if (r < 0 || r == DM_MAPIO_REQUEUE) {
1378 /* error the io and bail out, or requeue it if needed */
Stefan Bader9faf4002006-10-03 01:15:41 -07001379 md = tio->io->md;
1380 dec_pending(tio->io, r);
Stefan Bader9faf4002006-10-03 01:15:41 -07001381 free_tio(md, tio);
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -08001382 } else if (r) {
1383 DMWARN("unimplemented target map return value: %d", r);
1384 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 }
1386}
1387
1388struct clone_info {
1389 struct mapped_device *md;
1390 struct dm_table *map;
1391 struct bio *bio;
1392 struct dm_io *io;
1393 sector_t sector;
Mikulas Patockae0d66092014-03-14 18:40:39 -04001394 unsigned sector_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395};
1396
Mikulas Patockae0d66092014-03-14 18:40:39 -04001397static void bio_setup_sector(struct bio *bio, sector_t sector, unsigned len)
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001398{
Kent Overstreet4f024f32013-10-11 15:44:27 -07001399 bio->bi_iter.bi_sector = sector;
1400 bio->bi_iter.bi_size = to_bytes(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401}
1402
1403/*
1404 * Creates a bio that consists of range of complete bvecs.
1405 */
Mikulas Patockadba14162012-10-12 21:02:15 +01001406static void clone_bio(struct dm_target_io *tio, struct bio *bio,
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001407 sector_t sector, unsigned len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408{
Mikulas Patockadba14162012-10-12 21:02:15 +01001409 struct bio *clone = &tio->clone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001411 __bio_clone_fast(clone, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001413 if (bio_integrity(bio))
1414 bio_integrity_clone(clone, bio, GFP_NOIO);
1415
1416 bio_advance(clone, to_bytes(sector - clone->bi_iter.bi_sector));
1417 clone->bi_iter.bi_size = to_bytes(len);
1418
1419 if (bio_integrity(bio))
1420 bio_integrity_trim(clone, 0, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421}
1422
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001423static struct dm_target_io *alloc_tio(struct clone_info *ci,
Junichi Nomura99778272014-10-03 11:55:16 +00001424 struct dm_target *ti,
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001425 unsigned target_bio_nr)
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001426{
Mikulas Patockadba14162012-10-12 21:02:15 +01001427 struct dm_target_io *tio;
1428 struct bio *clone;
1429
Junichi Nomura99778272014-10-03 11:55:16 +00001430 clone = bio_alloc_bioset(GFP_NOIO, 0, ci->md->bs);
Mikulas Patockadba14162012-10-12 21:02:15 +01001431 tio = container_of(clone, struct dm_target_io, clone);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001432
1433 tio->io = ci->io;
1434 tio->ti = ti;
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001435 tio->target_bio_nr = target_bio_nr;
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001436
1437 return tio;
1438}
1439
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001440static void __clone_and_map_simple_bio(struct clone_info *ci,
1441 struct dm_target *ti,
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001442 unsigned target_bio_nr, unsigned *len)
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001443{
Junichi Nomura99778272014-10-03 11:55:16 +00001444 struct dm_target_io *tio = alloc_tio(ci, ti, target_bio_nr);
Mikulas Patockadba14162012-10-12 21:02:15 +01001445 struct bio *clone = &tio->clone;
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001446
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001447 tio->len_ptr = len;
1448
Junichi Nomura99778272014-10-03 11:55:16 +00001449 __bio_clone_fast(clone, ci->bio);
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001450 if (len)
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001451 bio_setup_sector(clone, ci->sector, *len);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001452
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001453 __map_bio(tio);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001454}
1455
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001456static void __send_duplicate_bios(struct clone_info *ci, struct dm_target *ti,
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001457 unsigned num_bios, unsigned *len)
Mike Snitzer06a426c2010-08-12 04:14:09 +01001458{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001459 unsigned target_bio_nr;
Mike Snitzer06a426c2010-08-12 04:14:09 +01001460
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001461 for (target_bio_nr = 0; target_bio_nr < num_bios; target_bio_nr++)
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001462 __clone_and_map_simple_bio(ci, ti, target_bio_nr, len);
Mike Snitzer06a426c2010-08-12 04:14:09 +01001463}
1464
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001465static int __send_empty_flush(struct clone_info *ci)
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001466{
Mike Snitzer06a426c2010-08-12 04:14:09 +01001467 unsigned target_nr = 0;
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001468 struct dm_target *ti;
1469
Mike Snitzerb372d362010-09-08 18:07:01 +02001470 BUG_ON(bio_has_data(ci->bio));
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001471 while ((ti = dm_table_get_target(ci->map, target_nr++)))
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001472 __send_duplicate_bios(ci, ti, ti->num_flush_bios, NULL);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001473
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001474 return 0;
1475}
1476
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001477static void __clone_and_map_data_bio(struct clone_info *ci, struct dm_target *ti,
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001478 sector_t sector, unsigned *len)
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001479{
Mikulas Patockadba14162012-10-12 21:02:15 +01001480 struct bio *bio = ci->bio;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001481 struct dm_target_io *tio;
Alasdair G Kergonb0d8ed42013-03-01 22:45:49 +00001482 unsigned target_bio_nr;
1483 unsigned num_target_bios = 1;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001484
Alasdair G Kergonb0d8ed42013-03-01 22:45:49 +00001485 /*
1486 * Does the target want to receive duplicate copies of the bio?
1487 */
1488 if (bio_data_dir(bio) == WRITE && ti->num_write_bios)
1489 num_target_bios = ti->num_write_bios(ti, bio);
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001490
Alasdair G Kergonb0d8ed42013-03-01 22:45:49 +00001491 for (target_bio_nr = 0; target_bio_nr < num_target_bios; target_bio_nr++) {
Junichi Nomura99778272014-10-03 11:55:16 +00001492 tio = alloc_tio(ci, ti, target_bio_nr);
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001493 tio->len_ptr = len;
1494 clone_bio(tio, bio, sector, *len);
Alasdair G Kergonb0d8ed42013-03-01 22:45:49 +00001495 __map_bio(tio);
1496 }
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001497}
1498
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001499typedef unsigned (*get_num_bios_fn)(struct dm_target *ti);
Mike Snitzer23508a92012-12-21 20:23:37 +00001500
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001501static unsigned get_num_discard_bios(struct dm_target *ti)
Mike Snitzer23508a92012-12-21 20:23:37 +00001502{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001503 return ti->num_discard_bios;
Mike Snitzer23508a92012-12-21 20:23:37 +00001504}
1505
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001506static unsigned get_num_write_same_bios(struct dm_target *ti)
Mike Snitzer23508a92012-12-21 20:23:37 +00001507{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001508 return ti->num_write_same_bios;
Mike Snitzer23508a92012-12-21 20:23:37 +00001509}
1510
1511typedef bool (*is_split_required_fn)(struct dm_target *ti);
1512
1513static bool is_split_required_for_discard(struct dm_target *ti)
1514{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001515 return ti->split_discard_bios;
Mike Snitzer23508a92012-12-21 20:23:37 +00001516}
1517
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001518static int __send_changing_extent_only(struct clone_info *ci,
1519 get_num_bios_fn get_num_bios,
1520 is_split_required_fn is_split_required)
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001521{
1522 struct dm_target *ti;
Mikulas Patockae0d66092014-03-14 18:40:39 -04001523 unsigned len;
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001524 unsigned num_bios;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001525
Mike Snitzera79245b2010-08-12 04:14:24 +01001526 do {
1527 ti = dm_table_find_target(ci->map, ci->sector);
1528 if (!dm_target_is_valid(ti))
1529 return -EIO;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001530
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001531 /*
Mike Snitzer23508a92012-12-21 20:23:37 +00001532 * Even though the device advertised support for this type of
1533 * request, that does not mean every target supports it, and
Mike Snitzer936688d2011-08-02 12:32:01 +01001534 * reconfiguration might also have changed that since the
Mike Snitzera79245b2010-08-12 04:14:24 +01001535 * check was performed.
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001536 */
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001537 num_bios = get_num_bios ? get_num_bios(ti) : 0;
1538 if (!num_bios)
Mike Snitzera79245b2010-08-12 04:14:24 +01001539 return -EOPNOTSUPP;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001540
Mike Snitzer23508a92012-12-21 20:23:37 +00001541 if (is_split_required && !is_split_required(ti))
Mikulas Patockae0d66092014-03-14 18:40:39 -04001542 len = min((sector_t)ci->sector_count, max_io_len_target_boundary(ci->sector, ti));
Mikulas Patocka7acf0272012-07-27 15:08:03 +01001543 else
Mikulas Patockae0d66092014-03-14 18:40:39 -04001544 len = min((sector_t)ci->sector_count, max_io_len(ci->sector, ti));
Mike Snitzer06a426c2010-08-12 04:14:09 +01001545
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001546 __send_duplicate_bios(ci, ti, num_bios, &len);
Mike Snitzera79245b2010-08-12 04:14:24 +01001547
1548 ci->sector += len;
1549 } while (ci->sector_count -= len);
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001550
1551 return 0;
1552}
1553
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001554static int __send_discard(struct clone_info *ci)
Mike Snitzer23508a92012-12-21 20:23:37 +00001555{
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001556 return __send_changing_extent_only(ci, get_num_discard_bios,
1557 is_split_required_for_discard);
Mike Snitzer23508a92012-12-21 20:23:37 +00001558}
1559
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001560static int __send_write_same(struct clone_info *ci)
Mike Snitzer23508a92012-12-21 20:23:37 +00001561{
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001562 return __send_changing_extent_only(ci, get_num_write_same_bios, NULL);
Mike Snitzer23508a92012-12-21 20:23:37 +00001563}
1564
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001565/*
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001566 * Select the correct strategy for processing a non-flush bio.
1567 */
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001568static int __split_and_process_non_flush(struct clone_info *ci)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569{
Mikulas Patockadba14162012-10-12 21:02:15 +01001570 struct bio *bio = ci->bio;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001571 struct dm_target *ti;
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001572 unsigned len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001574 if (unlikely(bio->bi_rw & REQ_DISCARD))
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001575 return __send_discard(ci);
Mike Snitzer23508a92012-12-21 20:23:37 +00001576 else if (unlikely(bio->bi_rw & REQ_WRITE_SAME))
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001577 return __send_write_same(ci);
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001578
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001579 ti = dm_table_find_target(ci->map, ci->sector);
1580 if (!dm_target_is_valid(ti))
1581 return -EIO;
1582
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001583 len = min_t(sector_t, max_io_len(ci->sector, ti), ci->sector_count);
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001584
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001585 __clone_and_map_data_bio(ci, ti, ci->sector, &len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001587 ci->sector += len;
1588 ci->sector_count -= len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001590 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591}
1592
1593/*
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001594 * Entry point to split a bio into clones and submit them to the targets.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 */
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001596static void __split_and_process_bio(struct mapped_device *md,
1597 struct dm_table *map, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598{
1599 struct clone_info ci;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001600 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001602 if (unlikely(!map)) {
Tejun Heo6a8736d2010-09-08 18:07:00 +02001603 bio_io_error(bio);
Mikulas Patockaf0b9a452009-04-02 19:55:38 +01001604 return;
1605 }
Mikulas Patocka692d0eb2009-04-09 00:27:13 +01001606
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001607 ci.map = map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 ci.md = md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 ci.io = alloc_io(md);
1610 ci.io->error = 0;
1611 atomic_set(&ci.io->io_count, 1);
1612 ci.io->bio = bio;
1613 ci.io->md = md;
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +01001614 spin_lock_init(&ci.io->endio_lock);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001615 ci.sector = bio->bi_iter.bi_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -08001617 start_io_acct(ci.io);
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001618
Mike Snitzerb372d362010-09-08 18:07:01 +02001619 if (bio->bi_rw & REQ_FLUSH) {
1620 ci.bio = &ci.md->flush_bio;
1621 ci.sector_count = 0;
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001622 error = __send_empty_flush(&ci);
Mike Snitzerb372d362010-09-08 18:07:01 +02001623 /* dec_pending submits any data associated with flush */
1624 } else {
Tejun Heo6a8736d2010-09-08 18:07:00 +02001625 ci.bio = bio;
Tejun Heod87f4c12010-09-03 11:56:19 +02001626 ci.sector_count = bio_sectors(bio);
Mike Snitzerb372d362010-09-08 18:07:01 +02001627 while (ci.sector_count && !error)
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001628 error = __split_and_process_non_flush(&ci);
Tejun Heod87f4c12010-09-03 11:56:19 +02001629 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
1631 /* drop the extra reference count */
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001632 dec_pending(ci.io, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633}
1634/*-----------------------------------------------------------------
1635 * CRUD END
1636 *---------------------------------------------------------------*/
1637
Milan Brozf6fccb12008-07-21 12:00:37 +01001638static int dm_merge_bvec(struct request_queue *q,
1639 struct bvec_merge_data *bvm,
1640 struct bio_vec *biovec)
1641{
1642 struct mapped_device *md = q->queuedata;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001643 struct dm_table *map = dm_get_live_table_fast(md);
Milan Brozf6fccb12008-07-21 12:00:37 +01001644 struct dm_target *ti;
1645 sector_t max_sectors;
Mikulas Patocka50371082008-10-01 14:39:17 +01001646 int max_size = 0;
Milan Brozf6fccb12008-07-21 12:00:37 +01001647
1648 if (unlikely(!map))
Mikulas Patocka50371082008-10-01 14:39:17 +01001649 goto out;
Milan Brozf6fccb12008-07-21 12:00:37 +01001650
1651 ti = dm_table_find_target(map, bvm->bi_sector);
Mikulas Patockab01cd5a2008-10-01 14:39:24 +01001652 if (!dm_target_is_valid(ti))
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001653 goto out;
Milan Brozf6fccb12008-07-21 12:00:37 +01001654
1655 /*
1656 * Find maximum amount of I/O that won't need splitting
1657 */
Mike Snitzer56a67df2010-08-12 04:14:10 +01001658 max_sectors = min(max_io_len(bvm->bi_sector, ti),
Mike Snitzer148e51b2014-10-09 19:32:22 -04001659 (sector_t) queue_max_sectors(q));
Milan Brozf6fccb12008-07-21 12:00:37 +01001660 max_size = (max_sectors << SECTOR_SHIFT) - bvm->bi_size;
Mike Snitzer148e51b2014-10-09 19:32:22 -04001661 if (unlikely(max_size < 0)) /* this shouldn't _ever_ happen */
Milan Brozf6fccb12008-07-21 12:00:37 +01001662 max_size = 0;
1663
1664 /*
1665 * merge_bvec_fn() returns number of bytes
1666 * it can accept at this offset
1667 * max is precomputed maximal io size
1668 */
1669 if (max_size && ti->type->merge)
1670 max_size = ti->type->merge(ti, bvm, biovec, max_size);
Mikulas Patocka8cbeb672009-06-22 10:12:14 +01001671 /*
1672 * If the target doesn't support merge method and some of the devices
Mike Snitzer148e51b2014-10-09 19:32:22 -04001673 * provided their merge_bvec method (we know this by looking for the
1674 * max_hw_sectors that dm_set_device_limits may set), then we can't
1675 * allow bios with multiple vector entries. So always set max_size
1676 * to 0, and the code below allows just one page.
Mikulas Patocka8cbeb672009-06-22 10:12:14 +01001677 */
1678 else if (queue_max_hw_sectors(q) <= PAGE_SIZE >> 9)
Mikulas Patocka8cbeb672009-06-22 10:12:14 +01001679 max_size = 0;
Milan Brozf6fccb12008-07-21 12:00:37 +01001680
Mikulas Patocka50371082008-10-01 14:39:17 +01001681out:
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001682 dm_put_live_table_fast(md);
Milan Brozf6fccb12008-07-21 12:00:37 +01001683 /*
1684 * Always allow an entire first page
1685 */
1686 if (max_size <= biovec->bv_len && !(bvm->bi_size >> SECTOR_SHIFT))
1687 max_size = biovec->bv_len;
1688
Milan Brozf6fccb12008-07-21 12:00:37 +01001689 return max_size;
1690}
1691
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692/*
1693 * The request function that just remaps the bio built up by
1694 * dm_merge_bvec.
1695 */
Mike Snitzerff36ab32015-02-23 17:56:37 -05001696static void dm_make_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697{
Kevin Corry12f03a42006-02-01 03:04:52 -08001698 int rw = bio_data_dir(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 struct mapped_device *md = q->queuedata;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001700 int srcu_idx;
1701 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001703 map = dm_get_live_table(md, &srcu_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704
Gu Zheng18c0b222014-11-24 11:05:26 +08001705 generic_start_io_acct(rw, bio_sectors(bio), &dm_disk(md)->part0);
Kevin Corry12f03a42006-02-01 03:04:52 -08001706
Tejun Heo6a8736d2010-09-08 18:07:00 +02001707 /* if we're suspended, we have to queue this io for later */
1708 if (unlikely(test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags))) {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001709 dm_put_live_table(md, srcu_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710
Tejun Heo6a8736d2010-09-08 18:07:00 +02001711 if (bio_rw(bio) != READA)
1712 queue_io(md, bio);
1713 else
Alasdair G Kergon54d9a1b2009-04-09 00:27:14 +01001714 bio_io_error(bio);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001715 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 }
1717
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001718 __split_and_process_bio(md, map, bio);
1719 dm_put_live_table(md, srcu_idx);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001720 return;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001721}
1722
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04001723int dm_request_based(struct mapped_device *md)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001724{
1725 return blk_queue_stackable(md->queue);
1726}
1727
Keith Busch466d89a2014-10-17 17:46:37 -06001728static void dm_dispatch_clone_request(struct request *clone, struct request *rq)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001729{
1730 int r;
1731
Keith Busch466d89a2014-10-17 17:46:37 -06001732 if (blk_queue_io_stat(clone->q))
1733 clone->cmd_flags |= REQ_IO_STAT;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001734
Keith Busch466d89a2014-10-17 17:46:37 -06001735 clone->start_time = jiffies;
1736 r = blk_insert_cloned_request(clone->q, clone);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001737 if (r)
Keith Busch466d89a2014-10-17 17:46:37 -06001738 /* must complete clone in terms of original request */
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001739 dm_complete_request(rq, r);
1740}
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001741
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001742static int dm_rq_bio_constructor(struct bio *bio, struct bio *bio_orig,
1743 void *data)
1744{
1745 struct dm_rq_target_io *tio = data;
Kent Overstreet94818742012-09-07 13:44:01 -07001746 struct dm_rq_clone_bio_info *info =
1747 container_of(bio, struct dm_rq_clone_bio_info, clone);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001748
1749 info->orig = bio_orig;
1750 info->tio = tio;
1751 bio->bi_end_io = end_clone_bio;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001752
1753 return 0;
1754}
1755
1756static int setup_clone(struct request *clone, struct request *rq,
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05001757 struct dm_rq_target_io *tio, gfp_t gfp_mask)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001758{
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00001759 int r;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001760
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05001761 r = blk_rq_prep_clone(clone, rq, tio->md->bs, gfp_mask,
Tejun Heo29e40132010-09-08 18:07:00 +02001762 dm_rq_bio_constructor, tio);
1763 if (r)
1764 return r;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001765
Tejun Heo29e40132010-09-08 18:07:00 +02001766 clone->cmd = rq->cmd;
1767 clone->cmd_len = rq->cmd_len;
1768 clone->sense = rq->sense;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001769 clone->end_io = end_clone_request;
1770 clone->end_io_data = tio;
1771
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05001772 tio->clone = clone;
1773
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001774 return 0;
1775}
1776
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001777static struct request *clone_rq(struct request *rq, struct mapped_device *md,
Keith Busch466d89a2014-10-17 17:46:37 -06001778 struct dm_rq_target_io *tio, gfp_t gfp_mask)
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001779{
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05001780 struct request *clone = alloc_clone_request(md, gfp_mask);
1781
1782 if (!clone)
1783 return NULL;
1784
1785 blk_rq_init(NULL, clone);
1786 if (setup_clone(clone, rq, tio, gfp_mask)) {
1787 /* -ENOMEM */
1788 free_clone_request(md, clone);
1789 return NULL;
1790 }
1791
1792 return clone;
1793}
1794
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001795static void map_tio_request(struct kthread_work *work);
1796
Keith Busch466d89a2014-10-17 17:46:37 -06001797static struct dm_rq_target_io *prep_tio(struct request *rq,
1798 struct mapped_device *md, gfp_t gfp_mask)
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001799{
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001800 struct dm_rq_target_io *tio;
Mike Snitzere5863d92014-12-17 21:08:12 -05001801 int srcu_idx;
1802 struct dm_table *table;
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001803
1804 tio = alloc_rq_tio(md, gfp_mask);
1805 if (!tio)
1806 return NULL;
1807
1808 tio->md = md;
1809 tio->ti = NULL;
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05001810 tio->clone = NULL;
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001811 tio->orig = rq;
1812 tio->error = 0;
1813 memset(&tio->info, 0, sizeof(tio->info));
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001814 init_kthread_work(&tio->work, map_tio_request);
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001815
Mike Snitzere5863d92014-12-17 21:08:12 -05001816 table = dm_get_live_table(md, &srcu_idx);
1817 if (!dm_table_mq_request_based(table)) {
1818 if (!clone_rq(rq, md, tio, gfp_mask)) {
1819 dm_put_live_table(md, srcu_idx);
1820 free_rq_tio(tio);
1821 return NULL;
1822 }
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001823 }
Mike Snitzere5863d92014-12-17 21:08:12 -05001824 dm_put_live_table(md, srcu_idx);
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001825
Keith Busch466d89a2014-10-17 17:46:37 -06001826 return tio;
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001827}
1828
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001829/*
1830 * Called with the queue lock held.
1831 */
1832static int dm_prep_fn(struct request_queue *q, struct request *rq)
1833{
1834 struct mapped_device *md = q->queuedata;
Keith Busch466d89a2014-10-17 17:46:37 -06001835 struct dm_rq_target_io *tio;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001836
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001837 if (unlikely(rq->special)) {
1838 DMWARN("Already has something in rq->special.");
1839 return BLKPREP_KILL;
1840 }
1841
Keith Busch466d89a2014-10-17 17:46:37 -06001842 tio = prep_tio(rq, md, GFP_ATOMIC);
1843 if (!tio)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001844 return BLKPREP_DEFER;
1845
Keith Busch466d89a2014-10-17 17:46:37 -06001846 rq->special = tio;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001847 rq->cmd_flags |= REQ_DONTPREP;
1848
1849 return BLKPREP_OK;
1850}
1851
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001852/*
1853 * Returns:
Mike Snitzere5863d92014-12-17 21:08:12 -05001854 * 0 : the request has been processed
1855 * DM_MAPIO_REQUEUE : the original request needs to be requeued
1856 * < 0 : the request was completed due to failure
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001857 */
Keith Busch466d89a2014-10-17 17:46:37 -06001858static int map_request(struct dm_target *ti, struct request *rq,
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001859 struct mapped_device *md)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001860{
Mike Snitzere5863d92014-12-17 21:08:12 -05001861 int r;
Keith Busch466d89a2014-10-17 17:46:37 -06001862 struct dm_rq_target_io *tio = rq->special;
Mike Snitzere5863d92014-12-17 21:08:12 -05001863 struct request *clone = NULL;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001864
Mike Snitzere5863d92014-12-17 21:08:12 -05001865 if (tio->clone) {
1866 clone = tio->clone;
1867 r = ti->type->map_rq(ti, clone, &tio->info);
1868 } else {
1869 r = ti->type->clone_and_map_rq(ti, rq, &tio->info, &clone);
1870 if (r < 0) {
1871 /* The target wants to complete the I/O */
1872 dm_kill_unmapped_request(rq, r);
1873 return r;
1874 }
1875 if (IS_ERR(clone))
1876 return DM_MAPIO_REQUEUE;
1877 if (setup_clone(clone, rq, tio, GFP_KERNEL)) {
1878 /* -ENOMEM */
1879 ti->type->release_clone_rq(clone);
1880 return DM_MAPIO_REQUEUE;
1881 }
1882 }
1883
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001884 switch (r) {
1885 case DM_MAPIO_SUBMITTED:
1886 /* The target has taken the I/O to submit by itself later */
1887 break;
1888 case DM_MAPIO_REMAPPED:
1889 /* The target has remapped the I/O so dispatch it */
Jun'ichi Nomura6db4ccd2009-12-10 23:52:25 +00001890 trace_block_rq_remap(clone->q, clone, disk_devt(dm_disk(md)),
Keith Busch466d89a2014-10-17 17:46:37 -06001891 blk_rq_pos(rq));
1892 dm_dispatch_clone_request(clone, rq);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001893 break;
1894 case DM_MAPIO_REQUEUE:
1895 /* The target wants to requeue the I/O */
1896 dm_requeue_unmapped_request(clone);
1897 break;
1898 default:
1899 if (r > 0) {
1900 DMWARN("unimplemented target map return value: %d", r);
1901 BUG();
1902 }
1903
1904 /* The target wants to complete the I/O */
Keith Busch466d89a2014-10-17 17:46:37 -06001905 dm_kill_unmapped_request(rq, r);
Mike Snitzere5863d92014-12-17 21:08:12 -05001906 return r;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001907 }
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001908
Mike Snitzere5863d92014-12-17 21:08:12 -05001909 return 0;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001910}
1911
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001912static void map_tio_request(struct kthread_work *work)
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001913{
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001914 struct dm_rq_target_io *tio = container_of(work, struct dm_rq_target_io, work);
Mike Snitzere5863d92014-12-17 21:08:12 -05001915 struct request *rq = tio->orig;
1916 struct mapped_device *md = tio->md;
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001917
Mike Snitzere5863d92014-12-17 21:08:12 -05001918 if (map_request(tio->ti, rq, md) == DM_MAPIO_REQUEUE)
1919 dm_requeue_unmapped_original_request(md, rq);
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001920}
1921
Keith Busch466d89a2014-10-17 17:46:37 -06001922static void dm_start_request(struct mapped_device *md, struct request *orig)
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001923{
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001924 blk_start_request(orig);
Keith Busch466d89a2014-10-17 17:46:37 -06001925 atomic_inc(&md->pending[rq_data_dir(orig)]);
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001926
1927 /*
1928 * Hold the md reference here for the in-flight I/O.
1929 * We can't rely on the reference count by device opener,
1930 * because the device may be closed during the request completion
1931 * when all bios are completed.
1932 * See the comment in rq_completed() too.
1933 */
1934 dm_get(md);
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001935}
1936
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001937/*
1938 * q->request_fn for request-based dm.
1939 * Called with the queue lock held.
1940 */
1941static void dm_request_fn(struct request_queue *q)
1942{
1943 struct mapped_device *md = q->queuedata;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001944 int srcu_idx;
1945 struct dm_table *map = dm_get_live_table(md, &srcu_idx);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001946 struct dm_target *ti;
Keith Busch466d89a2014-10-17 17:46:37 -06001947 struct request *rq;
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001948 struct dm_rq_target_io *tio;
Tejun Heo29e40132010-09-08 18:07:00 +02001949 sector_t pos;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001950
1951 /*
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00001952 * For suspend, check blk_queue_stopped() and increment
1953 * ->pending within a single queue_lock not to increment the
1954 * number of in-flight I/Os after the queue is stopped in
1955 * dm_suspend().
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001956 */
Jens Axboe7eaceac2011-03-10 08:52:07 +01001957 while (!blk_queue_stopped(q)) {
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001958 rq = blk_peek_request(q);
1959 if (!rq)
Jens Axboe7eaceac2011-03-10 08:52:07 +01001960 goto delay_and_out;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001961
Tejun Heo29e40132010-09-08 18:07:00 +02001962 /* always use block 0 to find the target for flushes for now */
1963 pos = 0;
1964 if (!(rq->cmd_flags & REQ_FLUSH))
1965 pos = blk_rq_pos(rq);
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00001966
Tejun Heo29e40132010-09-08 18:07:00 +02001967 ti = dm_table_find_target(map, pos);
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001968 if (!dm_target_is_valid(ti)) {
1969 /*
Keith Busch466d89a2014-10-17 17:46:37 -06001970 * Must perform setup, that rq_completed() requires,
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001971 * before calling dm_kill_unmapped_request
1972 */
1973 DMERR_LIMIT("request attempted access beyond the end of device");
Keith Busch466d89a2014-10-17 17:46:37 -06001974 dm_start_request(md, rq);
1975 dm_kill_unmapped_request(rq, -EIO);
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001976 continue;
1977 }
Tejun Heo29e40132010-09-08 18:07:00 +02001978
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001979 if (ti->type->busy && ti->type->busy(ti))
Jens Axboe7eaceac2011-03-10 08:52:07 +01001980 goto delay_and_out;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001981
Keith Busch466d89a2014-10-17 17:46:37 -06001982 dm_start_request(md, rq);
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00001983
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001984 tio = rq->special;
1985 /* Establish tio->ti before queuing work (map_tio_request) */
1986 tio->ti = ti;
1987 queue_kthread_work(&md->kworker, &tio->work);
Kiyoshi Ueda052189a2011-01-13 20:00:00 +00001988 BUG_ON(!irqs_disabled());
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001989 }
1990
1991 goto out;
1992
Jens Axboe7eaceac2011-03-10 08:52:07 +01001993delay_and_out:
1994 blk_delay_queue(q, HZ / 10);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001995out:
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001996 dm_put_live_table(md, srcu_idx);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001997}
1998
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999static int dm_any_congested(void *congested_data, int bdi_bits)
2000{
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00002001 int r = bdi_bits;
2002 struct mapped_device *md = congested_data;
2003 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01002005 if (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002006 map = dm_get_live_table_fast(md);
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00002007 if (map) {
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002008 /*
2009 * Request-based dm cares about only own queue for
2010 * the query about congestion status of request_queue
2011 */
2012 if (dm_request_based(md))
2013 r = md->queue->backing_dev_info.state &
2014 bdi_bits;
2015 else
2016 r = dm_table_any_congested(map, bdi_bits);
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00002017 }
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002018 dm_put_live_table_fast(md);
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00002019 }
2020
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 return r;
2022}
2023
2024/*-----------------------------------------------------------------
2025 * An IDR is used to keep track of allocated minor numbers.
2026 *---------------------------------------------------------------*/
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002027static void free_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028{
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002029 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 idr_remove(&_minor_idr, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002031 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032}
2033
2034/*
2035 * See if the device with a specific minor # is free.
2036 */
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01002037static int specific_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038{
Tejun Heoc9d76be2013-02-27 17:04:26 -08002039 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040
2041 if (minor >= (1 << MINORBITS))
2042 return -EINVAL;
2043
Tejun Heoc9d76be2013-02-27 17:04:26 -08002044 idr_preload(GFP_KERNEL);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002045 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046
Tejun Heoc9d76be2013-02-27 17:04:26 -08002047 r = idr_alloc(&_minor_idr, MINOR_ALLOCED, minor, minor + 1, GFP_NOWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002049 spin_unlock(&_minor_lock);
Tejun Heoc9d76be2013-02-27 17:04:26 -08002050 idr_preload_end();
2051 if (r < 0)
2052 return r == -ENOSPC ? -EBUSY : r;
2053 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054}
2055
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01002056static int next_free_minor(int *minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057{
Tejun Heoc9d76be2013-02-27 17:04:26 -08002058 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059
Tejun Heoc9d76be2013-02-27 17:04:26 -08002060 idr_preload(GFP_KERNEL);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002061 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062
Tejun Heoc9d76be2013-02-27 17:04:26 -08002063 r = idr_alloc(&_minor_idr, MINOR_ALLOCED, 0, 1 << MINORBITS, GFP_NOWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002065 spin_unlock(&_minor_lock);
Tejun Heoc9d76be2013-02-27 17:04:26 -08002066 idr_preload_end();
2067 if (r < 0)
2068 return r;
2069 *minor = r;
2070 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071}
2072
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07002073static const struct block_device_operations dm_blk_dops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074
Mikulas Patocka53d59142009-04-02 19:55:37 +01002075static void dm_wq_work(struct work_struct *work);
2076
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002077static void dm_init_md_queue(struct mapped_device *md)
2078{
2079 /*
2080 * Request-based dm devices cannot be stacked on top of bio-based dm
2081 * devices. The type of this dm device has not been decided yet.
2082 * The type is decided at the first table loading time.
2083 * To prevent problematic device stacking, clear the queue flag
2084 * for request stacking support until then.
2085 *
2086 * This queue is new, so no concurrency on the queue_flags.
2087 */
2088 queue_flag_clear_unlocked(QUEUE_FLAG_STACKABLE, md->queue);
2089
2090 md->queue->queuedata = md;
2091 md->queue->backing_dev_info.congested_fn = dm_any_congested;
2092 md->queue->backing_dev_info.congested_data = md;
Mike Snitzerff36ab32015-02-23 17:56:37 -05002093
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002094 blk_queue_bounce_limit(md->queue, BLK_BOUNCE_ANY);
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002095}
2096
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097/*
2098 * Allocate and initialise a blank device with a given minor.
2099 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002100static struct mapped_device *alloc_dev(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101{
2102 int r;
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01002103 struct mapped_device *md = kzalloc(sizeof(*md), GFP_KERNEL);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07002104 void *old_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105
2106 if (!md) {
2107 DMWARN("unable to allocate device, out of memory.");
2108 return NULL;
2109 }
2110
Jeff Mahoney10da4f72006-06-26 00:27:25 -07002111 if (!try_module_get(THIS_MODULE))
Milan Broz6ed7ade2008-02-08 02:10:19 +00002112 goto bad_module_get;
Jeff Mahoney10da4f72006-06-26 00:27:25 -07002113
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 /* get a minor number for the dev */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002115 if (minor == DM_ANY_MINOR)
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01002116 r = next_free_minor(&minor);
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002117 else
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01002118 r = specific_minor(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 if (r < 0)
Milan Broz6ed7ade2008-02-08 02:10:19 +00002120 goto bad_minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002122 r = init_srcu_struct(&md->io_barrier);
2123 if (r < 0)
2124 goto bad_io_barrier;
2125
Mike Snitzera5664da2010-08-12 04:14:01 +01002126 md->type = DM_TYPE_NONE;
Daniel Walkere61290a2008-02-08 02:10:08 +00002127 mutex_init(&md->suspend_lock);
Mike Snitzera5664da2010-08-12 04:14:01 +01002128 mutex_init(&md->type_lock);
Benjamin Marzinski86f11522014-08-13 13:53:43 -05002129 mutex_init(&md->table_devices_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01002130 spin_lock_init(&md->deferred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 atomic_set(&md->holders, 1);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -07002132 atomic_set(&md->open_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 atomic_set(&md->event_nr, 0);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002134 atomic_set(&md->uevent_seq, 0);
2135 INIT_LIST_HEAD(&md->uevent_list);
Benjamin Marzinski86f11522014-08-13 13:53:43 -05002136 INIT_LIST_HEAD(&md->table_devices);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002137 spin_lock_init(&md->uevent_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002139 md->queue = blk_alloc_queue(GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 if (!md->queue)
Milan Broz6ed7ade2008-02-08 02:10:19 +00002141 goto bad_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002143 dm_init_md_queue(md);
Stefan Bader9faf4002006-10-03 01:15:41 -07002144
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 md->disk = alloc_disk(1);
2146 if (!md->disk)
Milan Broz6ed7ade2008-02-08 02:10:19 +00002147 goto bad_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02002149 atomic_set(&md->pending[0], 0);
2150 atomic_set(&md->pending[1], 0);
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07002151 init_waitqueue_head(&md->wait);
Mikulas Patocka53d59142009-04-02 19:55:37 +01002152 INIT_WORK(&md->work, dm_wq_work);
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07002153 init_waitqueue_head(&md->eventq);
Mikulas Patocka2995fa72014-01-13 19:37:54 -05002154 init_completion(&md->kobj_holder.completion);
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002155 md->kworker_task = NULL;
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07002156
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 md->disk->major = _major;
2158 md->disk->first_minor = minor;
2159 md->disk->fops = &dm_blk_dops;
2160 md->disk->queue = md->queue;
2161 md->disk->private_data = md;
2162 sprintf(md->disk->disk_name, "dm-%d", minor);
2163 add_disk(md->disk);
Mike Anderson7e51f252006-03-27 01:17:52 -08002164 format_dev_t(md->name, MKDEV(_major, minor));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165
Tejun Heo670368a2013-07-30 08:40:21 -04002166 md->wq = alloc_workqueue("kdmflush", WQ_MEM_RECLAIM, 0);
Milan Broz304f3f62008-02-08 02:11:17 +00002167 if (!md->wq)
2168 goto bad_thread;
2169
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002170 md->bdev = bdget_disk(md->disk, 0);
2171 if (!md->bdev)
2172 goto bad_bdev;
2173
Tejun Heo6a8736d2010-09-08 18:07:00 +02002174 bio_init(&md->flush_bio);
2175 md->flush_bio.bi_bdev = md->bdev;
2176 md->flush_bio.bi_rw = WRITE_FLUSH;
2177
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002178 dm_stats_init(&md->stats);
2179
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07002180 /* Populate the mapping, nobody knows we exist yet */
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002181 spin_lock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07002182 old_md = idr_replace(&_minor_idr, md, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002183 spin_unlock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07002184
2185 BUG_ON(old_md != MINOR_ALLOCED);
2186
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 return md;
2188
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002189bad_bdev:
2190 destroy_workqueue(md->wq);
Milan Broz304f3f62008-02-08 02:11:17 +00002191bad_thread:
Zdenek Kabelac03022c52009-10-16 23:18:15 +01002192 del_gendisk(md->disk);
Milan Broz304f3f62008-02-08 02:11:17 +00002193 put_disk(md->disk);
Milan Broz6ed7ade2008-02-08 02:10:19 +00002194bad_disk:
Al Viro1312f402006-03-12 11:02:03 -05002195 blk_cleanup_queue(md->queue);
Milan Broz6ed7ade2008-02-08 02:10:19 +00002196bad_queue:
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002197 cleanup_srcu_struct(&md->io_barrier);
2198bad_io_barrier:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 free_minor(minor);
Milan Broz6ed7ade2008-02-08 02:10:19 +00002200bad_minor:
Jeff Mahoney10da4f72006-06-26 00:27:25 -07002201 module_put(THIS_MODULE);
Milan Broz6ed7ade2008-02-08 02:10:19 +00002202bad_module_get:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 kfree(md);
2204 return NULL;
2205}
2206
Jun'ichi Nomuraae9da832007-10-19 22:38:43 +01002207static void unlock_fs(struct mapped_device *md);
2208
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209static void free_dev(struct mapped_device *md)
2210{
Tejun Heof331c022008-09-03 09:01:48 +02002211 int minor = MINOR(disk_devt(md->disk));
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08002212
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002213 unlock_fs(md);
Milan Broz304f3f62008-02-08 02:11:17 +00002214 destroy_workqueue(md->wq);
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002215
2216 if (md->kworker_task)
2217 kthread_stop(md->kworker_task);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002218 if (md->io_pool)
2219 mempool_destroy(md->io_pool);
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05002220 if (md->rq_pool)
2221 mempool_destroy(md->rq_pool);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002222 if (md->bs)
2223 bioset_free(md->bs);
Mike Snitzer63a4f062015-03-23 17:01:43 -04002224
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002225 cleanup_srcu_struct(&md->io_barrier);
Benjamin Marzinski86f11522014-08-13 13:53:43 -05002226 free_table_devices(&md->table_devices);
Mike Snitzer63a4f062015-03-23 17:01:43 -04002227 dm_stats_cleanup(&md->stats);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002228
2229 spin_lock(&_minor_lock);
2230 md->disk->private_data = NULL;
2231 spin_unlock(&_minor_lock);
Mike Snitzer63a4f062015-03-23 17:01:43 -04002232 if (blk_get_integrity(md->disk))
2233 blk_integrity_unregister(md->disk);
2234 del_gendisk(md->disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 put_disk(md->disk);
Al Viro1312f402006-03-12 11:02:03 -05002236 blk_cleanup_queue(md->queue);
Mike Snitzer63a4f062015-03-23 17:01:43 -04002237 bdput(md->bdev);
2238 free_minor(minor);
2239
Jeff Mahoney10da4f72006-06-26 00:27:25 -07002240 module_put(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 kfree(md);
2242}
2243
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002244static void __bind_mempools(struct mapped_device *md, struct dm_table *t)
2245{
Mikulas Patockac0820cf2012-12-21 20:23:38 +00002246 struct dm_md_mempools *p = dm_table_get_md_mempools(t);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002247
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00002248 if (md->io_pool && md->bs) {
Jun'ichi Nomura16245bd2013-03-01 22:45:44 +00002249 /* The md already has necessary mempools. */
2250 if (dm_table_get_type(t) == DM_TYPE_BIO_BASED) {
2251 /*
2252 * Reload bioset because front_pad may have changed
2253 * because a different table was loaded.
2254 */
2255 bioset_free(md->bs);
2256 md->bs = p->bs;
2257 p->bs = NULL;
Jun'ichi Nomura16245bd2013-03-01 22:45:44 +00002258 }
Keith Busch466d89a2014-10-17 17:46:37 -06002259 /*
2260 * There's no need to reload with request-based dm
2261 * because the size of front_pad doesn't change.
2262 * Note for future: If you are to reload bioset,
2263 * prep-ed requests in the queue may refer
2264 * to bio from the old bioset, so you must walk
2265 * through the queue to unprep.
2266 */
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002267 goto out;
Mikulas Patockac0820cf2012-12-21 20:23:38 +00002268 }
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002269
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05002270 BUG_ON(!p || md->io_pool || md->rq_pool || md->bs);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002271
2272 md->io_pool = p->io_pool;
2273 p->io_pool = NULL;
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05002274 md->rq_pool = p->rq_pool;
2275 p->rq_pool = NULL;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002276 md->bs = p->bs;
2277 p->bs = NULL;
2278
2279out:
2280 /* mempool bind completed, now no need any mempools in the table */
2281 dm_table_free_md_mempools(t);
2282}
2283
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284/*
2285 * Bind a table to the device.
2286 */
2287static void event_callback(void *context)
2288{
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002289 unsigned long flags;
2290 LIST_HEAD(uevents);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 struct mapped_device *md = (struct mapped_device *) context;
2292
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002293 spin_lock_irqsave(&md->uevent_lock, flags);
2294 list_splice_init(&md->uevent_list, &uevents);
2295 spin_unlock_irqrestore(&md->uevent_lock, flags);
2296
Tejun Heoed9e1982008-08-25 19:56:05 +09002297 dm_send_uevents(&uevents, &disk_to_dev(md->disk)->kobj);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002298
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 atomic_inc(&md->event_nr);
2300 wake_up(&md->eventq);
2301}
2302
Mike Snitzerc2176492011-01-13 19:53:46 +00002303/*
2304 * Protected by md->suspend_lock obtained by dm_swap_table().
2305 */
Alasdair G Kergon4e90188be2005-07-28 21:15:59 -07002306static void __set_size(struct mapped_device *md, sector_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307{
Alasdair G Kergon4e90188be2005-07-28 21:15:59 -07002308 set_capacity(md->disk, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002310 i_size_write(md->bdev->bd_inode, (loff_t)size << SECTOR_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311}
2312
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002313/*
Mikulas Patockad5b9dd02011-08-02 12:32:04 +01002314 * Return 1 if the queue has a compulsory merge_bvec_fn function.
2315 *
2316 * If this function returns 0, then the device is either a non-dm
2317 * device without a merge_bvec_fn, or it is a dm device that is
2318 * able to split any bios it receives that are too big.
2319 */
2320int dm_queue_merge_is_compulsory(struct request_queue *q)
2321{
2322 struct mapped_device *dev_md;
2323
2324 if (!q->merge_bvec_fn)
2325 return 0;
2326
Mike Snitzerff36ab32015-02-23 17:56:37 -05002327 if (q->make_request_fn == dm_make_request) {
Mikulas Patockad5b9dd02011-08-02 12:32:04 +01002328 dev_md = q->queuedata;
2329 if (test_bit(DMF_MERGE_IS_OPTIONAL, &dev_md->flags))
2330 return 0;
2331 }
2332
2333 return 1;
2334}
2335
2336static int dm_device_merge_is_compulsory(struct dm_target *ti,
2337 struct dm_dev *dev, sector_t start,
2338 sector_t len, void *data)
2339{
2340 struct block_device *bdev = dev->bdev;
2341 struct request_queue *q = bdev_get_queue(bdev);
2342
2343 return dm_queue_merge_is_compulsory(q);
2344}
2345
2346/*
2347 * Return 1 if it is acceptable to ignore merge_bvec_fn based
2348 * on the properties of the underlying devices.
2349 */
2350static int dm_table_merge_is_optional(struct dm_table *table)
2351{
2352 unsigned i = 0;
2353 struct dm_target *ti;
2354
2355 while (i < dm_table_get_num_targets(table)) {
2356 ti = dm_table_get_target(table, i++);
2357
2358 if (ti->type->iterate_devices &&
2359 ti->type->iterate_devices(ti, dm_device_merge_is_compulsory, NULL))
2360 return 0;
2361 }
2362
2363 return 1;
2364}
2365
2366/*
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002367 * Returns old map, which caller must destroy.
2368 */
2369static struct dm_table *__bind(struct mapped_device *md, struct dm_table *t,
2370 struct queue_limits *limits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371{
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002372 struct dm_table *old_map;
Jens Axboe165125e2007-07-24 09:28:11 +02002373 struct request_queue *q = md->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 sector_t size;
Mikulas Patockad5b9dd02011-08-02 12:32:04 +01002375 int merge_is_optional;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376
2377 size = dm_table_get_size(t);
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08002378
2379 /*
2380 * Wipe any geometry if the size of the table changed.
2381 */
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002382 if (size != dm_get_size(md))
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08002383 memset(&md->geometry, 0, sizeof(md->geometry));
2384
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002385 __set_size(md, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002387 dm_table_event_callback(t, event_callback, md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002388
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002389 /*
2390 * The queue hasn't been stopped yet, if the old table type wasn't
2391 * for request-based during suspension. So stop it to prevent
2392 * I/O mapping before resume.
2393 * This must be done before setting the queue restrictions,
2394 * because request-based dm may be run just after the setting.
2395 */
2396 if (dm_table_request_based(t) && !blk_queue_stopped(q))
2397 stop_queue(q);
2398
2399 __bind_mempools(md, t);
2400
Mikulas Patockad5b9dd02011-08-02 12:32:04 +01002401 merge_is_optional = dm_table_merge_is_optional(t);
2402
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002403 old_map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002404 rcu_assign_pointer(md->map, t);
Alasdair G Kergon36a04562011-10-31 20:19:04 +00002405 md->immutable_target_type = dm_table_get_immutable_target_type(t);
2406
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002407 dm_table_set_restrictions(t, q, limits);
Mikulas Patockad5b9dd02011-08-02 12:32:04 +01002408 if (merge_is_optional)
2409 set_bit(DMF_MERGE_IS_OPTIONAL, &md->flags);
2410 else
2411 clear_bit(DMF_MERGE_IS_OPTIONAL, &md->flags);
Hannes Reinecke41abc4e2014-11-05 14:35:50 +01002412 if (old_map)
2413 dm_sync_table(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002414
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002415 return old_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416}
2417
Alasdair G Kergona7940152009-12-10 23:52:23 +00002418/*
2419 * Returns unbound table for the caller to free.
2420 */
2421static struct dm_table *__unbind(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422{
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002423 struct dm_table *map = rcu_dereference_protected(md->map, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424
2425 if (!map)
Alasdair G Kergona7940152009-12-10 23:52:23 +00002426 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427
2428 dm_table_event_callback(map, NULL, NULL);
Monam Agarwal9cdb8522014-03-23 23:58:27 +05302429 RCU_INIT_POINTER(md->map, NULL);
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002430 dm_sync_table(md);
Alasdair G Kergona7940152009-12-10 23:52:23 +00002431
2432 return map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433}
2434
2435/*
2436 * Constructor for a new device.
2437 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002438int dm_create(int minor, struct mapped_device **result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439{
2440 struct mapped_device *md;
2441
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002442 md = alloc_dev(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 if (!md)
2444 return -ENXIO;
2445
Milan Broz784aae72009-01-06 03:05:12 +00002446 dm_sysfs_init(md);
2447
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448 *result = md;
2449 return 0;
2450}
2451
Mike Snitzera5664da2010-08-12 04:14:01 +01002452/*
2453 * Functions to manage md->type.
2454 * All are required to hold md->type_lock.
2455 */
2456void dm_lock_md_type(struct mapped_device *md)
2457{
2458 mutex_lock(&md->type_lock);
2459}
2460
2461void dm_unlock_md_type(struct mapped_device *md)
2462{
2463 mutex_unlock(&md->type_lock);
2464}
2465
2466void dm_set_md_type(struct mapped_device *md, unsigned type)
2467{
Mike Snitzer00c4fc32013-08-27 18:57:03 -04002468 BUG_ON(!mutex_is_locked(&md->type_lock));
Mike Snitzera5664da2010-08-12 04:14:01 +01002469 md->type = type;
2470}
2471
2472unsigned dm_get_md_type(struct mapped_device *md)
2473{
Mike Snitzer00c4fc32013-08-27 18:57:03 -04002474 BUG_ON(!mutex_is_locked(&md->type_lock));
Mike Snitzera5664da2010-08-12 04:14:01 +01002475 return md->type;
2476}
2477
Mike Snitzere5863d92014-12-17 21:08:12 -05002478static bool dm_md_type_request_based(struct mapped_device *md)
2479{
2480 unsigned table_type = dm_get_md_type(md);
2481
2482 return (table_type == DM_TYPE_REQUEST_BASED ||
2483 table_type == DM_TYPE_MQ_REQUEST_BASED);
2484}
2485
Alasdair G Kergon36a04562011-10-31 20:19:04 +00002486struct target_type *dm_get_immutable_target_type(struct mapped_device *md)
2487{
2488 return md->immutable_target_type;
2489}
2490
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002491/*
Mike Snitzerf84cb8a2013-09-19 12:13:58 -04002492 * The queue_limits are only valid as long as you have a reference
2493 * count on 'md'.
2494 */
2495struct queue_limits *dm_get_queue_limits(struct mapped_device *md)
2496{
2497 BUG_ON(!atomic_read(&md->holders));
2498 return &md->queue->limits;
2499}
2500EXPORT_SYMBOL_GPL(dm_get_queue_limits);
2501
2502/*
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002503 * Fully initialize a request-based queue (->elevator, ->request_fn, etc).
2504 */
2505static int dm_init_request_based_queue(struct mapped_device *md)
2506{
2507 struct request_queue *q = NULL;
2508
2509 if (md->queue->elevator)
2510 return 1;
2511
2512 /* Fully initialize the queue */
2513 q = blk_init_allocated_queue(md->queue, dm_request_fn, NULL);
2514 if (!q)
2515 return 0;
2516
2517 md->queue = q;
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002518 dm_init_md_queue(md);
2519 blk_queue_softirq_done(md->queue, dm_softirq_done);
2520 blk_queue_prep_rq(md->queue, dm_prep_fn);
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002521
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002522 /* Also initialize the request-based DM worker thread */
2523 init_kthread_worker(&md->kworker);
2524 md->kworker_task = kthread_run(kthread_worker_fn, &md->kworker,
2525 "kdmwork-%s", dm_device_name(md));
2526
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002527 elv_register_queue(md->queue);
2528
2529 return 1;
2530}
2531
2532/*
2533 * Setup the DM device's queue based on md's type
2534 */
2535int dm_setup_md_queue(struct mapped_device *md)
2536{
Mike Snitzerff36ab32015-02-23 17:56:37 -05002537 if (dm_md_type_request_based(md)) {
2538 if (!dm_init_request_based_queue(md)) {
2539 DMWARN("Cannot initialize queue for request-based mapped device");
2540 return -EINVAL;
2541 }
2542 } else {
2543 /* bio-based specific initialization */
2544 blk_queue_make_request(md->queue, dm_make_request);
2545 blk_queue_merge_bvec(md->queue, dm_merge_bvec);
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002546 }
2547
2548 return 0;
2549}
2550
Mikulas Patocka2bec1f42015-02-17 14:30:53 -05002551struct mapped_device *dm_get_md(dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552{
2553 struct mapped_device *md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 unsigned minor = MINOR(dev);
2555
2556 if (MAJOR(dev) != _major || minor >= (1 << MINORBITS))
2557 return NULL;
2558
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002559 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560
2561 md = idr_find(&_minor_idr, minor);
Mikulas Patocka2bec1f42015-02-17 14:30:53 -05002562 if (md) {
2563 if ((md == MINOR_ALLOCED ||
2564 (MINOR(disk_devt(dm_disk(md))) != minor) ||
2565 dm_deleting_md(md) ||
2566 test_bit(DMF_FREEING, &md->flags))) {
2567 md = NULL;
2568 goto out;
2569 }
2570 dm_get(md);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002571 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002573out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002574 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575
David Teigland637842c2006-01-06 00:20:00 -08002576 return md;
2577}
Alasdair G Kergon3cf2e4b2011-10-31 20:19:06 +00002578EXPORT_SYMBOL_GPL(dm_get_md);
David Teiglandd229a952006-01-06 00:20:01 -08002579
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08002580void *dm_get_mdptr(struct mapped_device *md)
David Teigland637842c2006-01-06 00:20:00 -08002581{
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08002582 return md->interface_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583}
2584
2585void dm_set_mdptr(struct mapped_device *md, void *ptr)
2586{
2587 md->interface_ptr = ptr;
2588}
2589
2590void dm_get(struct mapped_device *md)
2591{
2592 atomic_inc(&md->holders);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002593 BUG_ON(test_bit(DMF_FREEING, &md->flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594}
2595
Mikulas Patocka09ee96b2015-02-26 11:41:28 -05002596int dm_hold(struct mapped_device *md)
2597{
2598 spin_lock(&_minor_lock);
2599 if (test_bit(DMF_FREEING, &md->flags)) {
2600 spin_unlock(&_minor_lock);
2601 return -EBUSY;
2602 }
2603 dm_get(md);
2604 spin_unlock(&_minor_lock);
2605 return 0;
2606}
2607EXPORT_SYMBOL_GPL(dm_hold);
2608
Alasdair G Kergon72d94862006-06-26 00:27:35 -07002609const char *dm_device_name(struct mapped_device *md)
2610{
2611 return md->name;
2612}
2613EXPORT_SYMBOL_GPL(dm_device_name);
2614
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002615static void __dm_destroy(struct mapped_device *md, bool wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616{
Mike Anderson1134e5a2006-03-27 01:17:54 -08002617 struct dm_table *map;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002618 int srcu_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002620 might_sleep();
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002621
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002622 map = dm_get_live_table(md, &srcu_idx);
Mike Snitzer63a4f062015-03-23 17:01:43 -04002623
2624 spin_lock(&_minor_lock);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002625 idr_replace(&_minor_idr, MINOR_ALLOCED, MINOR(disk_devt(dm_disk(md))));
2626 set_bit(DMF_FREEING, &md->flags);
2627 spin_unlock(&_minor_lock);
2628
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002629 if (dm_request_based(md))
2630 flush_kthread_worker(&md->kworker);
2631
Mikulas Patockaab7c7bb2015-02-27 14:04:27 -05002632 /*
2633 * Take suspend_lock so that presuspend and postsuspend methods
2634 * do not race with internal suspend.
2635 */
2636 mutex_lock(&md->suspend_lock);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002637 if (!dm_suspended_md(md)) {
2638 dm_table_presuspend_targets(map);
2639 dm_table_postsuspend_targets(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 }
Mikulas Patockaab7c7bb2015-02-27 14:04:27 -05002641 mutex_unlock(&md->suspend_lock);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002642
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002643 /* dm_put_live_table must be before msleep, otherwise deadlock is possible */
2644 dm_put_live_table(md, srcu_idx);
2645
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002646 /*
2647 * Rare, but there may be I/O requests still going to complete,
2648 * for example. Wait for all references to disappear.
2649 * No one should increment the reference count of the mapped_device,
2650 * after the mapped_device state becomes DMF_FREEING.
2651 */
2652 if (wait)
2653 while (atomic_read(&md->holders))
2654 msleep(1);
2655 else if (atomic_read(&md->holders))
2656 DMWARN("%s: Forcibly removing mapped_device still in use! (%d users)",
2657 dm_device_name(md), atomic_read(&md->holders));
2658
2659 dm_sysfs_exit(md);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002660 dm_table_destroy(__unbind(md));
2661 free_dev(md);
2662}
2663
2664void dm_destroy(struct mapped_device *md)
2665{
2666 __dm_destroy(md, true);
2667}
2668
2669void dm_destroy_immediate(struct mapped_device *md)
2670{
2671 __dm_destroy(md, false);
2672}
2673
2674void dm_put(struct mapped_device *md)
2675{
2676 atomic_dec(&md->holders);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677}
Edward Goggin79eb8852007-05-09 02:32:56 -07002678EXPORT_SYMBOL_GPL(dm_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679
Mikulas Patocka401600d2009-04-02 19:55:38 +01002680static int dm_wait_for_completion(struct mapped_device *md, int interruptible)
Milan Broz46125c12008-02-08 02:10:30 +00002681{
2682 int r = 0;
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002683 DECLARE_WAITQUEUE(wait, current);
2684
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002685 add_wait_queue(&md->wait, &wait);
Milan Broz46125c12008-02-08 02:10:30 +00002686
2687 while (1) {
Mikulas Patocka401600d2009-04-02 19:55:38 +01002688 set_current_state(interruptible);
Milan Broz46125c12008-02-08 02:10:30 +00002689
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00002690 if (!md_in_flight(md))
Milan Broz46125c12008-02-08 02:10:30 +00002691 break;
2692
Mikulas Patocka401600d2009-04-02 19:55:38 +01002693 if (interruptible == TASK_INTERRUPTIBLE &&
2694 signal_pending(current)) {
Milan Broz46125c12008-02-08 02:10:30 +00002695 r = -EINTR;
2696 break;
2697 }
2698
2699 io_schedule();
2700 }
2701 set_current_state(TASK_RUNNING);
2702
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002703 remove_wait_queue(&md->wait, &wait);
2704
Milan Broz46125c12008-02-08 02:10:30 +00002705 return r;
2706}
2707
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708/*
2709 * Process the deferred bios
2710 */
Mikulas Patockaef208582009-04-02 19:55:38 +01002711static void dm_wq_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712{
Mikulas Patockaef208582009-04-02 19:55:38 +01002713 struct mapped_device *md = container_of(work, struct mapped_device,
2714 work);
Milan Broz6d6f10d2008-02-08 02:10:22 +00002715 struct bio *c;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002716 int srcu_idx;
2717 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002719 map = dm_get_live_table(md, &srcu_idx);
Mikulas Patockaef208582009-04-02 19:55:38 +01002720
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002721 while (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002722 spin_lock_irq(&md->deferred_lock);
2723 c = bio_list_pop(&md->deferred);
2724 spin_unlock_irq(&md->deferred_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01002725
Tejun Heo6a8736d2010-09-08 18:07:00 +02002726 if (!c)
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002727 break;
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002728
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002729 if (dm_request_based(md))
2730 generic_make_request(c);
Tejun Heo6a8736d2010-09-08 18:07:00 +02002731 else
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002732 __split_and_process_bio(md, map, c);
Mikulas Patocka022c2612009-04-02 19:55:39 +01002733 }
Milan Broz73d410c2008-02-08 02:10:25 +00002734
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002735 dm_put_live_table(md, srcu_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736}
2737
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002738static void dm_queue_flush(struct mapped_device *md)
Milan Broz304f3f62008-02-08 02:11:17 +00002739{
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002740 clear_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01002741 smp_mb__after_atomic();
Mikulas Patocka53d59142009-04-02 19:55:37 +01002742 queue_work(md->wq, &md->work);
Milan Broz304f3f62008-02-08 02:11:17 +00002743}
2744
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745/*
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002746 * Swap in a new table, returning the old one for the caller to destroy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 */
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002748struct dm_table *dm_swap_table(struct mapped_device *md, struct dm_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749{
Mike Christie87eb5b22013-03-01 22:45:48 +00002750 struct dm_table *live_map = NULL, *map = ERR_PTR(-EINVAL);
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002751 struct queue_limits limits;
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002752 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753
Daniel Walkere61290a2008-02-08 02:10:08 +00002754 mutex_lock(&md->suspend_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755
2756 /* device must be suspended */
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +00002757 if (!dm_suspended_md(md))
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07002758 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759
Mike Snitzer3ae70652012-09-26 23:45:45 +01002760 /*
2761 * If the new table has no data devices, retain the existing limits.
2762 * This helps multipath with queue_if_no_path if all paths disappear,
2763 * then new I/O is queued based on these limits, and then some paths
2764 * reappear.
2765 */
2766 if (dm_table_has_no_data_devices(table)) {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002767 live_map = dm_get_live_table_fast(md);
Mike Snitzer3ae70652012-09-26 23:45:45 +01002768 if (live_map)
2769 limits = md->queue->limits;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002770 dm_put_live_table_fast(md);
Mike Snitzer3ae70652012-09-26 23:45:45 +01002771 }
2772
Mike Christie87eb5b22013-03-01 22:45:48 +00002773 if (!live_map) {
2774 r = dm_calculate_queue_limits(table, &limits);
2775 if (r) {
2776 map = ERR_PTR(r);
2777 goto out;
2778 }
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002779 }
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002780
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002781 map = __bind(md, table, &limits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07002783out:
Daniel Walkere61290a2008-02-08 02:10:08 +00002784 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002785 return map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786}
2787
2788/*
2789 * Functions to lock and unlock any filesystem running on the
2790 * device.
2791 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002792static int lock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793{
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08002794 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795
2796 WARN_ON(md->frozen_sb);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002797
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002798 md->frozen_sb = freeze_bdev(md->bdev);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002799 if (IS_ERR(md->frozen_sb)) {
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002800 r = PTR_ERR(md->frozen_sb);
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08002801 md->frozen_sb = NULL;
2802 return r;
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002803 }
2804
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002805 set_bit(DMF_FROZEN, &md->flags);
2806
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807 return 0;
2808}
2809
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002810static void unlock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811{
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002812 if (!test_bit(DMF_FROZEN, &md->flags))
2813 return;
2814
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002815 thaw_bdev(md->bdev, md->frozen_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816 md->frozen_sb = NULL;
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002817 clear_bit(DMF_FROZEN, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818}
2819
2820/*
Mike Snitzerffcc3932014-10-28 18:34:52 -04002821 * If __dm_suspend returns 0, the device is completely quiescent
2822 * now. There is no request-processing activity. All new requests
2823 * are being added to md->deferred list.
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002824 *
Mike Snitzerffcc3932014-10-28 18:34:52 -04002825 * Caller must hold md->suspend_lock
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002826 */
Mike Snitzerffcc3932014-10-28 18:34:52 -04002827static int __dm_suspend(struct mapped_device *md, struct dm_table *map,
2828 unsigned suspend_flags, int interruptible)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829{
Mike Snitzerffcc3932014-10-28 18:34:52 -04002830 bool do_lockfs = suspend_flags & DM_SUSPEND_LOCKFS_FLAG;
2831 bool noflush = suspend_flags & DM_SUSPEND_NOFLUSH_FLAG;
2832 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002834 /*
2835 * DMF_NOFLUSH_SUSPENDING must be set before presuspend.
2836 * This flag is cleared before dm_suspend returns.
2837 */
2838 if (noflush)
2839 set_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
2840
Mike Snitzerd67ee212014-10-28 20:13:31 -04002841 /*
2842 * This gets reverted if there's an error later and the targets
2843 * provide the .presuspend_undo hook.
2844 */
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002845 dm_table_presuspend_targets(map);
2846
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002847 /*
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002848 * Flush I/O to the device.
2849 * Any I/O submitted after lock_fs() may not be flushed.
2850 * noflush takes precedence over do_lockfs.
2851 * (lock_fs() flushes I/Os and waits for them to complete.)
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002852 */
2853 if (!noflush && do_lockfs) {
2854 r = lock_fs(md);
Mike Snitzerd67ee212014-10-28 20:13:31 -04002855 if (r) {
2856 dm_table_presuspend_undo_targets(map);
Mike Snitzerffcc3932014-10-28 18:34:52 -04002857 return r;
Mike Snitzerd67ee212014-10-28 20:13:31 -04002858 }
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002859 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860
2861 /*
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002862 * Here we must make sure that no processes are submitting requests
2863 * to target drivers i.e. no one may be executing
2864 * __split_and_process_bio. This is called from dm_request and
2865 * dm_wq_work.
2866 *
2867 * To get all processes out of __split_and_process_bio in dm_request,
2868 * we take the write lock. To prevent any process from reentering
Tejun Heo6a8736d2010-09-08 18:07:00 +02002869 * __split_and_process_bio from dm_request and quiesce the thread
2870 * (dm_wq_work), we set BMF_BLOCK_IO_FOR_SUSPEND and call
2871 * flush_workqueue(md->wq).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872 */
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01002873 set_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
Hannes Reinecke41abc4e2014-11-05 14:35:50 +01002874 if (map)
2875 synchronize_srcu(&md->io_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002877 /*
Tejun Heo29e40132010-09-08 18:07:00 +02002878 * Stop md->queue before flushing md->wq in case request-based
2879 * dm defers requests to md->wq from md->queue.
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002880 */
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002881 if (dm_request_based(md)) {
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002882 stop_queue(md->queue);
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002883 flush_kthread_worker(&md->kworker);
2884 }
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002885
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002886 flush_workqueue(md->wq);
2887
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888 /*
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002889 * At this point no more requests are entering target request routines.
2890 * We call dm_wait_for_completion to wait for all existing requests
2891 * to finish.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892 */
Mike Snitzerffcc3932014-10-28 18:34:52 -04002893 r = dm_wait_for_completion(md, interruptible);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894
Milan Broz6d6f10d2008-02-08 02:10:22 +00002895 if (noflush)
Mikulas Patocka022c2612009-04-02 19:55:39 +01002896 clear_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
Hannes Reinecke41abc4e2014-11-05 14:35:50 +01002897 if (map)
2898 synchronize_srcu(&md->io_barrier);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002899
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900 /* were we interrupted ? */
Milan Broz46125c12008-02-08 02:10:30 +00002901 if (r < 0) {
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002902 dm_queue_flush(md);
Milan Broz73d410c2008-02-08 02:10:25 +00002903
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002904 if (dm_request_based(md))
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002905 start_queue(md->queue);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002906
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002907 unlock_fs(md);
Mike Snitzerd67ee212014-10-28 20:13:31 -04002908 dm_table_presuspend_undo_targets(map);
Mike Snitzerffcc3932014-10-28 18:34:52 -04002909 /* pushback list is already flushed, so skip flush */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002910 }
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002911
Mike Snitzerffcc3932014-10-28 18:34:52 -04002912 return r;
2913}
2914
2915/*
2916 * We need to be able to change a mapping table under a mounted
2917 * filesystem. For example we might want to move some data in
2918 * the background. Before the table can be swapped with
2919 * dm_bind_table, dm_suspend must be called to flush any in
2920 * flight bios and ensure that any further io gets deferred.
2921 */
2922/*
2923 * Suspend mechanism in request-based dm.
2924 *
2925 * 1. Flush all I/Os by lock_fs() if needed.
2926 * 2. Stop dispatching any I/O by stopping the request_queue.
2927 * 3. Wait for all in-flight I/Os to be completed or requeued.
2928 *
2929 * To abort suspend, start the request_queue.
2930 */
2931int dm_suspend(struct mapped_device *md, unsigned suspend_flags)
2932{
2933 struct dm_table *map = NULL;
2934 int r = 0;
2935
2936retry:
2937 mutex_lock_nested(&md->suspend_lock, SINGLE_DEPTH_NESTING);
2938
2939 if (dm_suspended_md(md)) {
2940 r = -EINVAL;
2941 goto out_unlock;
2942 }
2943
2944 if (dm_suspended_internally_md(md)) {
2945 /* already internally suspended, wait for internal resume */
2946 mutex_unlock(&md->suspend_lock);
2947 r = wait_on_bit(&md->flags, DMF_SUSPENDED_INTERNALLY, TASK_INTERRUPTIBLE);
2948 if (r)
2949 return r;
2950 goto retry;
2951 }
2952
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002953 map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mike Snitzerffcc3932014-10-28 18:34:52 -04002954
2955 r = __dm_suspend(md, map, suspend_flags, TASK_INTERRUPTIBLE);
2956 if (r)
2957 goto out_unlock;
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002958
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 set_bit(DMF_SUSPENDED, &md->flags);
2960
Kiyoshi Ueda4d4471c2009-12-10 23:52:26 +00002961 dm_table_postsuspend_targets(map);
2962
Alasdair G Kergond2874832006-11-08 17:44:43 -08002963out_unlock:
Daniel Walkere61290a2008-02-08 02:10:08 +00002964 mutex_unlock(&md->suspend_lock);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002965 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966}
2967
Mike Snitzerffcc3932014-10-28 18:34:52 -04002968static int __dm_resume(struct mapped_device *md, struct dm_table *map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969{
Mike Snitzerffcc3932014-10-28 18:34:52 -04002970 if (map) {
2971 int r = dm_table_resume_targets(map);
2972 if (r)
2973 return r;
2974 }
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002975
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002976 dm_queue_flush(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002977
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002978 /*
2979 * Flushing deferred I/Os must be done after targets are resumed
2980 * so that mapping of targets can work correctly.
2981 * Request-based dm is queueing the deferred I/Os in its request_queue.
2982 */
2983 if (dm_request_based(md))
2984 start_queue(md->queue);
2985
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002986 unlock_fs(md);
2987
Mike Snitzerffcc3932014-10-28 18:34:52 -04002988 return 0;
2989}
2990
2991int dm_resume(struct mapped_device *md)
2992{
2993 int r = -EINVAL;
2994 struct dm_table *map = NULL;
2995
2996retry:
2997 mutex_lock_nested(&md->suspend_lock, SINGLE_DEPTH_NESTING);
2998
2999 if (!dm_suspended_md(md))
3000 goto out;
3001
3002 if (dm_suspended_internally_md(md)) {
3003 /* already internally suspended, wait for internal resume */
3004 mutex_unlock(&md->suspend_lock);
3005 r = wait_on_bit(&md->flags, DMF_SUSPENDED_INTERNALLY, TASK_INTERRUPTIBLE);
3006 if (r)
3007 return r;
3008 goto retry;
3009 }
3010
Eric Dumazeta12f5d42014-11-23 09:34:29 -08003011 map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mike Snitzerffcc3932014-10-28 18:34:52 -04003012 if (!map || !dm_table_get_size(map))
3013 goto out;
3014
3015 r = __dm_resume(md, map);
3016 if (r)
3017 goto out;
3018
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07003019 clear_bit(DMF_SUSPENDED, &md->flags);
3020
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07003021 r = 0;
3022out:
Daniel Walkere61290a2008-02-08 02:10:08 +00003023 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07003024
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07003025 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026}
3027
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003028/*
3029 * Internal suspend/resume works like userspace-driven suspend. It waits
3030 * until all bios finish and prevents issuing new bios to the target drivers.
3031 * It may be used only from the kernel.
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003032 */
3033
Mike Snitzerffcc3932014-10-28 18:34:52 -04003034static void __dm_internal_suspend(struct mapped_device *md, unsigned suspend_flags)
3035{
3036 struct dm_table *map = NULL;
3037
Mikulas Patocka96b26c82015-01-08 18:52:26 -05003038 if (md->internal_suspend_count++)
Mike Snitzerffcc3932014-10-28 18:34:52 -04003039 return; /* nested internal suspend */
3040
3041 if (dm_suspended_md(md)) {
3042 set_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
3043 return; /* nest suspend */
3044 }
3045
Eric Dumazeta12f5d42014-11-23 09:34:29 -08003046 map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mike Snitzerffcc3932014-10-28 18:34:52 -04003047
3048 /*
3049 * Using TASK_UNINTERRUPTIBLE because only NOFLUSH internal suspend is
3050 * supported. Properly supporting a TASK_INTERRUPTIBLE internal suspend
3051 * would require changing .presuspend to return an error -- avoid this
3052 * until there is a need for more elaborate variants of internal suspend.
3053 */
3054 (void) __dm_suspend(md, map, suspend_flags, TASK_UNINTERRUPTIBLE);
3055
3056 set_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
3057
3058 dm_table_postsuspend_targets(map);
3059}
3060
3061static void __dm_internal_resume(struct mapped_device *md)
3062{
Mikulas Patocka96b26c82015-01-08 18:52:26 -05003063 BUG_ON(!md->internal_suspend_count);
3064
3065 if (--md->internal_suspend_count)
Mike Snitzerffcc3932014-10-28 18:34:52 -04003066 return; /* resume from nested internal suspend */
3067
3068 if (dm_suspended_md(md))
3069 goto done; /* resume from nested suspend */
3070
3071 /*
3072 * NOTE: existing callers don't need to call dm_table_resume_targets
3073 * (which may fail -- so best to avoid it for now by passing NULL map)
3074 */
3075 (void) __dm_resume(md, NULL);
3076
3077done:
3078 clear_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
3079 smp_mb__after_atomic();
3080 wake_up_bit(&md->flags, DMF_SUSPENDED_INTERNALLY);
3081}
3082
3083void dm_internal_suspend_noflush(struct mapped_device *md)
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003084{
3085 mutex_lock(&md->suspend_lock);
Mike Snitzerffcc3932014-10-28 18:34:52 -04003086 __dm_internal_suspend(md, DM_SUSPEND_NOFLUSH_FLAG);
3087 mutex_unlock(&md->suspend_lock);
3088}
3089EXPORT_SYMBOL_GPL(dm_internal_suspend_noflush);
3090
3091void dm_internal_resume(struct mapped_device *md)
3092{
3093 mutex_lock(&md->suspend_lock);
3094 __dm_internal_resume(md);
3095 mutex_unlock(&md->suspend_lock);
3096}
3097EXPORT_SYMBOL_GPL(dm_internal_resume);
3098
3099/*
3100 * Fast variants of internal suspend/resume hold md->suspend_lock,
3101 * which prevents interaction with userspace-driven suspend.
3102 */
3103
3104void dm_internal_suspend_fast(struct mapped_device *md)
3105{
3106 mutex_lock(&md->suspend_lock);
3107 if (dm_suspended_md(md) || dm_suspended_internally_md(md))
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003108 return;
3109
3110 set_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
3111 synchronize_srcu(&md->io_barrier);
3112 flush_workqueue(md->wq);
3113 dm_wait_for_completion(md, TASK_UNINTERRUPTIBLE);
3114}
Mikulas Patockab735fed2015-02-26 11:40:35 -05003115EXPORT_SYMBOL_GPL(dm_internal_suspend_fast);
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003116
Mike Snitzerffcc3932014-10-28 18:34:52 -04003117void dm_internal_resume_fast(struct mapped_device *md)
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003118{
Mike Snitzerffcc3932014-10-28 18:34:52 -04003119 if (dm_suspended_md(md) || dm_suspended_internally_md(md))
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003120 goto done;
3121
3122 dm_queue_flush(md);
3123
3124done:
3125 mutex_unlock(&md->suspend_lock);
3126}
Mikulas Patockab735fed2015-02-26 11:40:35 -05003127EXPORT_SYMBOL_GPL(dm_internal_resume_fast);
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003128
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129/*-----------------------------------------------------------------
3130 * Event notification.
3131 *---------------------------------------------------------------*/
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00003132int dm_kobject_uevent(struct mapped_device *md, enum kobject_action action,
Milan Broz60935eb2009-06-22 10:12:30 +01003133 unsigned cookie)
Alasdair G Kergon69267a32007-12-13 14:15:57 +00003134{
Milan Broz60935eb2009-06-22 10:12:30 +01003135 char udev_cookie[DM_COOKIE_LENGTH];
3136 char *envp[] = { udev_cookie, NULL };
3137
3138 if (!cookie)
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00003139 return kobject_uevent(&disk_to_dev(md->disk)->kobj, action);
Milan Broz60935eb2009-06-22 10:12:30 +01003140 else {
3141 snprintf(udev_cookie, DM_COOKIE_LENGTH, "%s=%u",
3142 DM_COOKIE_ENV_VAR_NAME, cookie);
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00003143 return kobject_uevent_env(&disk_to_dev(md->disk)->kobj,
3144 action, envp);
Milan Broz60935eb2009-06-22 10:12:30 +01003145 }
Alasdair G Kergon69267a32007-12-13 14:15:57 +00003146}
3147
Mike Anderson7a8c3d32007-10-19 22:48:01 +01003148uint32_t dm_next_uevent_seq(struct mapped_device *md)
3149{
3150 return atomic_add_return(1, &md->uevent_seq);
3151}
3152
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153uint32_t dm_get_event_nr(struct mapped_device *md)
3154{
3155 return atomic_read(&md->event_nr);
3156}
3157
3158int dm_wait_event(struct mapped_device *md, int event_nr)
3159{
3160 return wait_event_interruptible(md->eventq,
3161 (event_nr != atomic_read(&md->event_nr)));
3162}
3163
Mike Anderson7a8c3d32007-10-19 22:48:01 +01003164void dm_uevent_add(struct mapped_device *md, struct list_head *elist)
3165{
3166 unsigned long flags;
3167
3168 spin_lock_irqsave(&md->uevent_lock, flags);
3169 list_add(elist, &md->uevent_list);
3170 spin_unlock_irqrestore(&md->uevent_lock, flags);
3171}
3172
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173/*
3174 * The gendisk is only valid as long as you have a reference
3175 * count on 'md'.
3176 */
3177struct gendisk *dm_disk(struct mapped_device *md)
3178{
3179 return md->disk;
3180}
3181
Milan Broz784aae72009-01-06 03:05:12 +00003182struct kobject *dm_kobject(struct mapped_device *md)
3183{
Mikulas Patocka2995fa72014-01-13 19:37:54 -05003184 return &md->kobj_holder.kobj;
Milan Broz784aae72009-01-06 03:05:12 +00003185}
3186
Milan Broz784aae72009-01-06 03:05:12 +00003187struct mapped_device *dm_get_from_kobject(struct kobject *kobj)
3188{
3189 struct mapped_device *md;
3190
Mikulas Patocka2995fa72014-01-13 19:37:54 -05003191 md = container_of(kobj, struct mapped_device, kobj_holder.kobj);
Milan Broz784aae72009-01-06 03:05:12 +00003192
Milan Broz4d89b7b2009-06-22 10:12:11 +01003193 if (test_bit(DMF_FREEING, &md->flags) ||
Mike Anderson432a2122009-12-10 23:52:20 +00003194 dm_deleting_md(md))
Milan Broz4d89b7b2009-06-22 10:12:11 +01003195 return NULL;
3196
Milan Broz784aae72009-01-06 03:05:12 +00003197 dm_get(md);
3198 return md;
3199}
3200
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +00003201int dm_suspended_md(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202{
3203 return test_bit(DMF_SUSPENDED, &md->flags);
3204}
3205
Mike Snitzerffcc3932014-10-28 18:34:52 -04003206int dm_suspended_internally_md(struct mapped_device *md)
3207{
3208 return test_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
3209}
3210
Mikulas Patocka2c140a22013-11-01 18:27:41 -04003211int dm_test_deferred_remove_flag(struct mapped_device *md)
3212{
3213 return test_bit(DMF_DEFERRED_REMOVE, &md->flags);
3214}
3215
Kiyoshi Ueda64dbce52009-12-10 23:52:27 +00003216int dm_suspended(struct dm_target *ti)
3217{
Kiyoshi Uedaecdb2e22010-03-06 02:29:52 +00003218 return dm_suspended_md(dm_table_get_md(ti->table));
Kiyoshi Ueda64dbce52009-12-10 23:52:27 +00003219}
3220EXPORT_SYMBOL_GPL(dm_suspended);
3221
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08003222int dm_noflush_suspending(struct dm_target *ti)
3223{
Kiyoshi Uedaecdb2e22010-03-06 02:29:52 +00003224 return __noflush_suspending(dm_table_get_md(ti->table));
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08003225}
3226EXPORT_SYMBOL_GPL(dm_noflush_suspending);
3227
Mikulas Patockac0820cf2012-12-21 20:23:38 +00003228struct dm_md_mempools *dm_alloc_md_mempools(unsigned type, unsigned integrity, unsigned per_bio_data_size)
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003229{
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003230 struct dm_md_mempools *pools = kzalloc(sizeof(*pools), GFP_KERNEL);
3231 struct kmem_cache *cachep;
Mike Snitzere5863d92014-12-17 21:08:12 -05003232 unsigned int pool_size = 0;
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003233 unsigned int front_pad;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003234
3235 if (!pools)
3236 return NULL;
3237
Mike Snitzere5863d92014-12-17 21:08:12 -05003238 switch (type) {
3239 case DM_TYPE_BIO_BASED:
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003240 cachep = _io_cache;
Mike Snitzere8603132013-09-12 18:06:12 -04003241 pool_size = dm_get_reserved_bio_based_ios();
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003242 front_pad = roundup(per_bio_data_size, __alignof__(struct dm_target_io)) + offsetof(struct dm_target_io, clone);
Mike Snitzere5863d92014-12-17 21:08:12 -05003243 break;
3244 case DM_TYPE_REQUEST_BASED:
Mike Snitzerf4790822013-09-12 18:06:12 -04003245 pool_size = dm_get_reserved_rq_based_ios();
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05003246 pools->rq_pool = mempool_create_slab_pool(pool_size, _rq_cache);
3247 if (!pools->rq_pool)
3248 goto out;
Mike Snitzere5863d92014-12-17 21:08:12 -05003249 /* fall through to setup remaining rq-based pools */
3250 case DM_TYPE_MQ_REQUEST_BASED:
3251 cachep = _rq_tio_cache;
3252 if (!pool_size)
3253 pool_size = dm_get_reserved_rq_based_ios();
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003254 front_pad = offsetof(struct dm_rq_clone_bio_info, clone);
3255 /* per_bio_data_size is not used. See __bind_mempools(). */
3256 WARN_ON(per_bio_data_size != 0);
Mike Snitzere5863d92014-12-17 21:08:12 -05003257 break;
3258 default:
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003259 goto out;
Mike Snitzere5863d92014-12-17 21:08:12 -05003260 }
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003261
Mike Snitzer6cfa5852013-09-12 18:06:11 -04003262 pools->io_pool = mempool_create_slab_pool(pool_size, cachep);
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003263 if (!pools->io_pool)
3264 goto out;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003265
Junichi Nomura3d8aab22014-10-03 11:55:26 +00003266 pools->bs = bioset_create_nobvec(pool_size, front_pad);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003267 if (!pools->bs)
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003268 goto out;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003269
Martin K. Petersena91a2782011-03-17 11:11:05 +01003270 if (integrity && bioset_integrity_create(pools->bs, pool_size))
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003271 goto out;
Martin K. Petersena91a2782011-03-17 11:11:05 +01003272
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003273 return pools;
3274
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003275out:
3276 dm_free_md_mempools(pools);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003277
3278 return NULL;
3279}
3280
3281void dm_free_md_mempools(struct dm_md_mempools *pools)
3282{
3283 if (!pools)
3284 return;
3285
3286 if (pools->io_pool)
3287 mempool_destroy(pools->io_pool);
3288
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05003289 if (pools->rq_pool)
3290 mempool_destroy(pools->rq_pool);
3291
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003292 if (pools->bs)
3293 bioset_free(pools->bs);
3294
3295 kfree(pools);
3296}
3297
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07003298static const struct block_device_operations dm_blk_dops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299 .open = dm_blk_open,
3300 .release = dm_blk_close,
Milan Brozaa129a22006-10-03 01:15:15 -07003301 .ioctl = dm_blk_ioctl,
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08003302 .getgeo = dm_blk_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303 .owner = THIS_MODULE
3304};
3305
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306/*
3307 * module hooks
3308 */
3309module_init(dm_init);
3310module_exit(dm_exit);
3311
3312module_param(major, uint, 0);
3313MODULE_PARM_DESC(major, "The major number of the device mapper");
Mike Snitzerf4790822013-09-12 18:06:12 -04003314
Mike Snitzere8603132013-09-12 18:06:12 -04003315module_param(reserved_bio_based_ios, uint, S_IRUGO | S_IWUSR);
3316MODULE_PARM_DESC(reserved_bio_based_ios, "Reserved IOs in bio-based mempools");
3317
Mike Snitzerf4790822013-09-12 18:06:12 -04003318module_param(reserved_rq_based_ios, uint, S_IRUGO | S_IWUSR);
3319MODULE_PARM_DESC(reserved_rq_based_ios, "Reserved IOs in request-based mempools");
3320
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321MODULE_DESCRIPTION(DM_NAME " driver");
3322MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
3323MODULE_LICENSE("GPL");