blob: cc8aed2e3f889e2aebd178da5cb35ca53566a099 [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 Patocka2a7faeb2013-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 Patocka2a7faeb2013-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 */
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001696static void _dm_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
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001728static void dm_request(struct request_queue *q, struct bio *bio)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001729{
1730 struct mapped_device *md = q->queuedata;
1731
1732 if (dm_request_based(md))
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001733 blk_queue_bio(q, bio);
1734 else
1735 _dm_request(q, bio);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001736}
1737
Keith Busch466d89a2014-10-17 17:46:37 -06001738static void dm_dispatch_clone_request(struct request *clone, struct request *rq)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001739{
1740 int r;
1741
Keith Busch466d89a2014-10-17 17:46:37 -06001742 if (blk_queue_io_stat(clone->q))
1743 clone->cmd_flags |= REQ_IO_STAT;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001744
Keith Busch466d89a2014-10-17 17:46:37 -06001745 clone->start_time = jiffies;
1746 r = blk_insert_cloned_request(clone->q, clone);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001747 if (r)
Keith Busch466d89a2014-10-17 17:46:37 -06001748 /* must complete clone in terms of original request */
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001749 dm_complete_request(rq, r);
1750}
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001751
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001752static int dm_rq_bio_constructor(struct bio *bio, struct bio *bio_orig,
1753 void *data)
1754{
1755 struct dm_rq_target_io *tio = data;
Kent Overstreet94818742012-09-07 13:44:01 -07001756 struct dm_rq_clone_bio_info *info =
1757 container_of(bio, struct dm_rq_clone_bio_info, clone);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001758
1759 info->orig = bio_orig;
1760 info->tio = tio;
1761 bio->bi_end_io = end_clone_bio;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001762
1763 return 0;
1764}
1765
1766static int setup_clone(struct request *clone, struct request *rq,
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05001767 struct dm_rq_target_io *tio, gfp_t gfp_mask)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001768{
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00001769 int r;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001770
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05001771 r = blk_rq_prep_clone(clone, rq, tio->md->bs, gfp_mask,
Tejun Heo29e40132010-09-08 18:07:00 +02001772 dm_rq_bio_constructor, tio);
1773 if (r)
1774 return r;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001775
Tejun Heo29e40132010-09-08 18:07:00 +02001776 clone->cmd = rq->cmd;
1777 clone->cmd_len = rq->cmd_len;
1778 clone->sense = rq->sense;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001779 clone->end_io = end_clone_request;
1780 clone->end_io_data = tio;
1781
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05001782 tio->clone = clone;
1783
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001784 return 0;
1785}
1786
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001787static struct request *clone_rq(struct request *rq, struct mapped_device *md,
Keith Busch466d89a2014-10-17 17:46:37 -06001788 struct dm_rq_target_io *tio, gfp_t gfp_mask)
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001789{
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05001790 struct request *clone = alloc_clone_request(md, gfp_mask);
1791
1792 if (!clone)
1793 return NULL;
1794
1795 blk_rq_init(NULL, clone);
1796 if (setup_clone(clone, rq, tio, gfp_mask)) {
1797 /* -ENOMEM */
1798 free_clone_request(md, clone);
1799 return NULL;
1800 }
1801
1802 return clone;
1803}
1804
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001805static void map_tio_request(struct kthread_work *work);
1806
Keith Busch466d89a2014-10-17 17:46:37 -06001807static struct dm_rq_target_io *prep_tio(struct request *rq,
1808 struct mapped_device *md, gfp_t gfp_mask)
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001809{
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001810 struct dm_rq_target_io *tio;
Mike Snitzere5863d92014-12-17 21:08:12 -05001811 int srcu_idx;
1812 struct dm_table *table;
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001813
1814 tio = alloc_rq_tio(md, gfp_mask);
1815 if (!tio)
1816 return NULL;
1817
1818 tio->md = md;
1819 tio->ti = NULL;
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05001820 tio->clone = NULL;
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001821 tio->orig = rq;
1822 tio->error = 0;
1823 memset(&tio->info, 0, sizeof(tio->info));
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001824 init_kthread_work(&tio->work, map_tio_request);
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001825
Mike Snitzere5863d92014-12-17 21:08:12 -05001826 table = dm_get_live_table(md, &srcu_idx);
1827 if (!dm_table_mq_request_based(table)) {
1828 if (!clone_rq(rq, md, tio, gfp_mask)) {
1829 dm_put_live_table(md, srcu_idx);
1830 free_rq_tio(tio);
1831 return NULL;
1832 }
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001833 }
Mike Snitzere5863d92014-12-17 21:08:12 -05001834 dm_put_live_table(md, srcu_idx);
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001835
Keith Busch466d89a2014-10-17 17:46:37 -06001836 return tio;
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001837}
1838
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001839/*
1840 * Called with the queue lock held.
1841 */
1842static int dm_prep_fn(struct request_queue *q, struct request *rq)
1843{
1844 struct mapped_device *md = q->queuedata;
Keith Busch466d89a2014-10-17 17:46:37 -06001845 struct dm_rq_target_io *tio;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001846
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001847 if (unlikely(rq->special)) {
1848 DMWARN("Already has something in rq->special.");
1849 return BLKPREP_KILL;
1850 }
1851
Keith Busch466d89a2014-10-17 17:46:37 -06001852 tio = prep_tio(rq, md, GFP_ATOMIC);
1853 if (!tio)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001854 return BLKPREP_DEFER;
1855
Keith Busch466d89a2014-10-17 17:46:37 -06001856 rq->special = tio;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001857 rq->cmd_flags |= REQ_DONTPREP;
1858
1859 return BLKPREP_OK;
1860}
1861
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001862/*
1863 * Returns:
Mike Snitzere5863d92014-12-17 21:08:12 -05001864 * 0 : the request has been processed
1865 * DM_MAPIO_REQUEUE : the original request needs to be requeued
1866 * < 0 : the request was completed due to failure
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001867 */
Keith Busch466d89a2014-10-17 17:46:37 -06001868static int map_request(struct dm_target *ti, struct request *rq,
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001869 struct mapped_device *md)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001870{
Mike Snitzere5863d92014-12-17 21:08:12 -05001871 int r;
Keith Busch466d89a2014-10-17 17:46:37 -06001872 struct dm_rq_target_io *tio = rq->special;
Mike Snitzere5863d92014-12-17 21:08:12 -05001873 struct request *clone = NULL;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001874
Mike Snitzere5863d92014-12-17 21:08:12 -05001875 if (tio->clone) {
1876 clone = tio->clone;
1877 r = ti->type->map_rq(ti, clone, &tio->info);
1878 } else {
1879 r = ti->type->clone_and_map_rq(ti, rq, &tio->info, &clone);
1880 if (r < 0) {
1881 /* The target wants to complete the I/O */
1882 dm_kill_unmapped_request(rq, r);
1883 return r;
1884 }
1885 if (IS_ERR(clone))
1886 return DM_MAPIO_REQUEUE;
1887 if (setup_clone(clone, rq, tio, GFP_KERNEL)) {
1888 /* -ENOMEM */
1889 ti->type->release_clone_rq(clone);
1890 return DM_MAPIO_REQUEUE;
1891 }
1892 }
1893
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001894 switch (r) {
1895 case DM_MAPIO_SUBMITTED:
1896 /* The target has taken the I/O to submit by itself later */
1897 break;
1898 case DM_MAPIO_REMAPPED:
1899 /* The target has remapped the I/O so dispatch it */
Jun'ichi Nomura6db4ccd2009-12-10 23:52:25 +00001900 trace_block_rq_remap(clone->q, clone, disk_devt(dm_disk(md)),
Keith Busch466d89a2014-10-17 17:46:37 -06001901 blk_rq_pos(rq));
1902 dm_dispatch_clone_request(clone, rq);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001903 break;
1904 case DM_MAPIO_REQUEUE:
1905 /* The target wants to requeue the I/O */
1906 dm_requeue_unmapped_request(clone);
1907 break;
1908 default:
1909 if (r > 0) {
1910 DMWARN("unimplemented target map return value: %d", r);
1911 BUG();
1912 }
1913
1914 /* The target wants to complete the I/O */
Keith Busch466d89a2014-10-17 17:46:37 -06001915 dm_kill_unmapped_request(rq, r);
Mike Snitzere5863d92014-12-17 21:08:12 -05001916 return r;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001917 }
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001918
Mike Snitzere5863d92014-12-17 21:08:12 -05001919 return 0;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001920}
1921
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001922static void map_tio_request(struct kthread_work *work)
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001923{
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001924 struct dm_rq_target_io *tio = container_of(work, struct dm_rq_target_io, work);
Mike Snitzere5863d92014-12-17 21:08:12 -05001925 struct request *rq = tio->orig;
1926 struct mapped_device *md = tio->md;
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001927
Mike Snitzere5863d92014-12-17 21:08:12 -05001928 if (map_request(tio->ti, rq, md) == DM_MAPIO_REQUEUE)
1929 dm_requeue_unmapped_original_request(md, rq);
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001930}
1931
Keith Busch466d89a2014-10-17 17:46:37 -06001932static void dm_start_request(struct mapped_device *md, struct request *orig)
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001933{
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001934 blk_start_request(orig);
Keith Busch466d89a2014-10-17 17:46:37 -06001935 atomic_inc(&md->pending[rq_data_dir(orig)]);
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001936
1937 /*
1938 * Hold the md reference here for the in-flight I/O.
1939 * We can't rely on the reference count by device opener,
1940 * because the device may be closed during the request completion
1941 * when all bios are completed.
1942 * See the comment in rq_completed() too.
1943 */
1944 dm_get(md);
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001945}
1946
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001947/*
1948 * q->request_fn for request-based dm.
1949 * Called with the queue lock held.
1950 */
1951static void dm_request_fn(struct request_queue *q)
1952{
1953 struct mapped_device *md = q->queuedata;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001954 int srcu_idx;
1955 struct dm_table *map = dm_get_live_table(md, &srcu_idx);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001956 struct dm_target *ti;
Keith Busch466d89a2014-10-17 17:46:37 -06001957 struct request *rq;
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001958 struct dm_rq_target_io *tio;
Tejun Heo29e40132010-09-08 18:07:00 +02001959 sector_t pos;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001960
1961 /*
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00001962 * For suspend, check blk_queue_stopped() and increment
1963 * ->pending within a single queue_lock not to increment the
1964 * number of in-flight I/Os after the queue is stopped in
1965 * dm_suspend().
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001966 */
Jens Axboe7eaceac2011-03-10 08:52:07 +01001967 while (!blk_queue_stopped(q)) {
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001968 rq = blk_peek_request(q);
1969 if (!rq)
Jens Axboe7eaceac2011-03-10 08:52:07 +01001970 goto delay_and_out;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001971
Tejun Heo29e40132010-09-08 18:07:00 +02001972 /* always use block 0 to find the target for flushes for now */
1973 pos = 0;
1974 if (!(rq->cmd_flags & REQ_FLUSH))
1975 pos = blk_rq_pos(rq);
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00001976
Tejun Heo29e40132010-09-08 18:07:00 +02001977 ti = dm_table_find_target(map, pos);
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001978 if (!dm_target_is_valid(ti)) {
1979 /*
Keith Busch466d89a2014-10-17 17:46:37 -06001980 * Must perform setup, that rq_completed() requires,
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001981 * before calling dm_kill_unmapped_request
1982 */
1983 DMERR_LIMIT("request attempted access beyond the end of device");
Keith Busch466d89a2014-10-17 17:46:37 -06001984 dm_start_request(md, rq);
1985 dm_kill_unmapped_request(rq, -EIO);
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001986 continue;
1987 }
Tejun Heo29e40132010-09-08 18:07:00 +02001988
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001989 if (ti->type->busy && ti->type->busy(ti))
Jens Axboe7eaceac2011-03-10 08:52:07 +01001990 goto delay_and_out;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001991
Keith Busch466d89a2014-10-17 17:46:37 -06001992 dm_start_request(md, rq);
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00001993
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001994 tio = rq->special;
1995 /* Establish tio->ti before queuing work (map_tio_request) */
1996 tio->ti = ti;
1997 queue_kthread_work(&md->kworker, &tio->work);
Kiyoshi Ueda052189a2011-01-13 20:00:00 +00001998 BUG_ON(!irqs_disabled());
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001999 }
2000
2001 goto out;
2002
Jens Axboe7eaceac2011-03-10 08:52:07 +01002003delay_and_out:
2004 blk_delay_queue(q, HZ / 10);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002005out:
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002006 dm_put_live_table(md, srcu_idx);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002007}
2008
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009static int dm_any_congested(void *congested_data, int bdi_bits)
2010{
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00002011 int r = bdi_bits;
2012 struct mapped_device *md = congested_data;
2013 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01002015 if (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002016 map = dm_get_live_table_fast(md);
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00002017 if (map) {
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002018 /*
2019 * Request-based dm cares about only own queue for
2020 * the query about congestion status of request_queue
2021 */
2022 if (dm_request_based(md))
2023 r = md->queue->backing_dev_info.state &
2024 bdi_bits;
2025 else
2026 r = dm_table_any_congested(map, bdi_bits);
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00002027 }
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002028 dm_put_live_table_fast(md);
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00002029 }
2030
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 return r;
2032}
2033
2034/*-----------------------------------------------------------------
2035 * An IDR is used to keep track of allocated minor numbers.
2036 *---------------------------------------------------------------*/
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002037static void free_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038{
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002039 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 idr_remove(&_minor_idr, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002041 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042}
2043
2044/*
2045 * See if the device with a specific minor # is free.
2046 */
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01002047static int specific_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048{
Tejun Heoc9d76be2013-02-27 17:04:26 -08002049 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050
2051 if (minor >= (1 << MINORBITS))
2052 return -EINVAL;
2053
Tejun Heoc9d76be2013-02-27 17:04:26 -08002054 idr_preload(GFP_KERNEL);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002055 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056
Tejun Heoc9d76be2013-02-27 17:04:26 -08002057 r = idr_alloc(&_minor_idr, MINOR_ALLOCED, minor, minor + 1, GFP_NOWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002059 spin_unlock(&_minor_lock);
Tejun Heoc9d76be2013-02-27 17:04:26 -08002060 idr_preload_end();
2061 if (r < 0)
2062 return r == -ENOSPC ? -EBUSY : r;
2063 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064}
2065
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01002066static int next_free_minor(int *minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067{
Tejun Heoc9d76be2013-02-27 17:04:26 -08002068 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069
Tejun Heoc9d76be2013-02-27 17:04:26 -08002070 idr_preload(GFP_KERNEL);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002071 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072
Tejun Heoc9d76be2013-02-27 17:04:26 -08002073 r = idr_alloc(&_minor_idr, MINOR_ALLOCED, 0, 1 << MINORBITS, GFP_NOWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002075 spin_unlock(&_minor_lock);
Tejun Heoc9d76be2013-02-27 17:04:26 -08002076 idr_preload_end();
2077 if (r < 0)
2078 return r;
2079 *minor = r;
2080 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081}
2082
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07002083static const struct block_device_operations dm_blk_dops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084
Mikulas Patocka53d59142009-04-02 19:55:37 +01002085static void dm_wq_work(struct work_struct *work);
2086
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002087static void dm_init_md_queue(struct mapped_device *md)
2088{
2089 /*
2090 * Request-based dm devices cannot be stacked on top of bio-based dm
2091 * devices. The type of this dm device has not been decided yet.
2092 * The type is decided at the first table loading time.
2093 * To prevent problematic device stacking, clear the queue flag
2094 * for request stacking support until then.
2095 *
2096 * This queue is new, so no concurrency on the queue_flags.
2097 */
2098 queue_flag_clear_unlocked(QUEUE_FLAG_STACKABLE, md->queue);
2099
2100 md->queue->queuedata = md;
2101 md->queue->backing_dev_info.congested_fn = dm_any_congested;
2102 md->queue->backing_dev_info.congested_data = md;
2103 blk_queue_make_request(md->queue, dm_request);
2104 blk_queue_bounce_limit(md->queue, BLK_BOUNCE_ANY);
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002105 blk_queue_merge_bvec(md->queue, dm_merge_bvec);
2106}
2107
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108/*
2109 * Allocate and initialise a blank device with a given minor.
2110 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002111static struct mapped_device *alloc_dev(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112{
2113 int r;
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01002114 struct mapped_device *md = kzalloc(sizeof(*md), GFP_KERNEL);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07002115 void *old_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116
2117 if (!md) {
2118 DMWARN("unable to allocate device, out of memory.");
2119 return NULL;
2120 }
2121
Jeff Mahoney10da4f72006-06-26 00:27:25 -07002122 if (!try_module_get(THIS_MODULE))
Milan Broz6ed7ade2008-02-08 02:10:19 +00002123 goto bad_module_get;
Jeff Mahoney10da4f72006-06-26 00:27:25 -07002124
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 /* get a minor number for the dev */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002126 if (minor == DM_ANY_MINOR)
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01002127 r = next_free_minor(&minor);
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002128 else
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01002129 r = specific_minor(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 if (r < 0)
Milan Broz6ed7ade2008-02-08 02:10:19 +00002131 goto bad_minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002133 r = init_srcu_struct(&md->io_barrier);
2134 if (r < 0)
2135 goto bad_io_barrier;
2136
Mike Snitzera5664da2010-08-12 04:14:01 +01002137 md->type = DM_TYPE_NONE;
Daniel Walkere61290a2008-02-08 02:10:08 +00002138 mutex_init(&md->suspend_lock);
Mike Snitzera5664da2010-08-12 04:14:01 +01002139 mutex_init(&md->type_lock);
Benjamin Marzinski86f11522014-08-13 13:53:43 -05002140 mutex_init(&md->table_devices_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01002141 spin_lock_init(&md->deferred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 atomic_set(&md->holders, 1);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -07002143 atomic_set(&md->open_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 atomic_set(&md->event_nr, 0);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002145 atomic_set(&md->uevent_seq, 0);
2146 INIT_LIST_HEAD(&md->uevent_list);
Benjamin Marzinski86f11522014-08-13 13:53:43 -05002147 INIT_LIST_HEAD(&md->table_devices);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002148 spin_lock_init(&md->uevent_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002150 md->queue = blk_alloc_queue(GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 if (!md->queue)
Milan Broz6ed7ade2008-02-08 02:10:19 +00002152 goto bad_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002154 dm_init_md_queue(md);
Stefan Bader9faf4002006-10-03 01:15:41 -07002155
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 md->disk = alloc_disk(1);
2157 if (!md->disk)
Milan Broz6ed7ade2008-02-08 02:10:19 +00002158 goto bad_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02002160 atomic_set(&md->pending[0], 0);
2161 atomic_set(&md->pending[1], 0);
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07002162 init_waitqueue_head(&md->wait);
Mikulas Patocka53d59142009-04-02 19:55:37 +01002163 INIT_WORK(&md->work, dm_wq_work);
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07002164 init_waitqueue_head(&md->eventq);
Mikulas Patocka2995fa72014-01-13 19:37:54 -05002165 init_completion(&md->kobj_holder.completion);
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002166 md->kworker_task = NULL;
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07002167
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 md->disk->major = _major;
2169 md->disk->first_minor = minor;
2170 md->disk->fops = &dm_blk_dops;
2171 md->disk->queue = md->queue;
2172 md->disk->private_data = md;
2173 sprintf(md->disk->disk_name, "dm-%d", minor);
2174 add_disk(md->disk);
Mike Anderson7e51f252006-03-27 01:17:52 -08002175 format_dev_t(md->name, MKDEV(_major, minor));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176
Tejun Heo670368a2013-07-30 08:40:21 -04002177 md->wq = alloc_workqueue("kdmflush", WQ_MEM_RECLAIM, 0);
Milan Broz304f3f62008-02-08 02:11:17 +00002178 if (!md->wq)
2179 goto bad_thread;
2180
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002181 md->bdev = bdget_disk(md->disk, 0);
2182 if (!md->bdev)
2183 goto bad_bdev;
2184
Tejun Heo6a8736d2010-09-08 18:07:00 +02002185 bio_init(&md->flush_bio);
2186 md->flush_bio.bi_bdev = md->bdev;
2187 md->flush_bio.bi_rw = WRITE_FLUSH;
2188
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002189 dm_stats_init(&md->stats);
2190
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07002191 /* Populate the mapping, nobody knows we exist yet */
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002192 spin_lock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07002193 old_md = idr_replace(&_minor_idr, md, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002194 spin_unlock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07002195
2196 BUG_ON(old_md != MINOR_ALLOCED);
2197
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 return md;
2199
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002200bad_bdev:
2201 destroy_workqueue(md->wq);
Milan Broz304f3f62008-02-08 02:11:17 +00002202bad_thread:
Zdenek Kabelac03022c52009-10-16 23:18:15 +01002203 del_gendisk(md->disk);
Milan Broz304f3f62008-02-08 02:11:17 +00002204 put_disk(md->disk);
Milan Broz6ed7ade2008-02-08 02:10:19 +00002205bad_disk:
Al Viro1312f402006-03-12 11:02:03 -05002206 blk_cleanup_queue(md->queue);
Milan Broz6ed7ade2008-02-08 02:10:19 +00002207bad_queue:
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002208 cleanup_srcu_struct(&md->io_barrier);
2209bad_io_barrier:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 free_minor(minor);
Milan Broz6ed7ade2008-02-08 02:10:19 +00002211bad_minor:
Jeff Mahoney10da4f72006-06-26 00:27:25 -07002212 module_put(THIS_MODULE);
Milan Broz6ed7ade2008-02-08 02:10:19 +00002213bad_module_get:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 kfree(md);
2215 return NULL;
2216}
2217
Jun'ichi Nomuraae9da832007-10-19 22:38:43 +01002218static void unlock_fs(struct mapped_device *md);
2219
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220static void free_dev(struct mapped_device *md)
2221{
Tejun Heof331c022008-09-03 09:01:48 +02002222 int minor = MINOR(disk_devt(md->disk));
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08002223
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002224 unlock_fs(md);
Milan Broz304f3f62008-02-08 02:11:17 +00002225 destroy_workqueue(md->wq);
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002226
2227 if (md->kworker_task)
2228 kthread_stop(md->kworker_task);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002229 if (md->io_pool)
2230 mempool_destroy(md->io_pool);
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05002231 if (md->rq_pool)
2232 mempool_destroy(md->rq_pool);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002233 if (md->bs)
2234 bioset_free(md->bs);
Mike Snitzer63a4f062015-03-23 17:01:43 -04002235
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002236 cleanup_srcu_struct(&md->io_barrier);
Benjamin Marzinski86f11522014-08-13 13:53:43 -05002237 free_table_devices(&md->table_devices);
Mike Snitzer63a4f062015-03-23 17:01:43 -04002238 dm_stats_cleanup(&md->stats);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002239
2240 spin_lock(&_minor_lock);
2241 md->disk->private_data = NULL;
2242 spin_unlock(&_minor_lock);
Mike Snitzer63a4f062015-03-23 17:01:43 -04002243 if (blk_get_integrity(md->disk))
2244 blk_integrity_unregister(md->disk);
2245 del_gendisk(md->disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 put_disk(md->disk);
Al Viro1312f402006-03-12 11:02:03 -05002247 blk_cleanup_queue(md->queue);
Mike Snitzer63a4f062015-03-23 17:01:43 -04002248 bdput(md->bdev);
2249 free_minor(minor);
2250
Jeff Mahoney10da4f72006-06-26 00:27:25 -07002251 module_put(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 kfree(md);
2253}
2254
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002255static void __bind_mempools(struct mapped_device *md, struct dm_table *t)
2256{
Mikulas Patockac0820cf2012-12-21 20:23:38 +00002257 struct dm_md_mempools *p = dm_table_get_md_mempools(t);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002258
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00002259 if (md->io_pool && md->bs) {
Jun'ichi Nomura16245bd2013-03-01 22:45:44 +00002260 /* The md already has necessary mempools. */
2261 if (dm_table_get_type(t) == DM_TYPE_BIO_BASED) {
2262 /*
2263 * Reload bioset because front_pad may have changed
2264 * because a different table was loaded.
2265 */
2266 bioset_free(md->bs);
2267 md->bs = p->bs;
2268 p->bs = NULL;
Jun'ichi Nomura16245bd2013-03-01 22:45:44 +00002269 }
Keith Busch466d89a2014-10-17 17:46:37 -06002270 /*
2271 * There's no need to reload with request-based dm
2272 * because the size of front_pad doesn't change.
2273 * Note for future: If you are to reload bioset,
2274 * prep-ed requests in the queue may refer
2275 * to bio from the old bioset, so you must walk
2276 * through the queue to unprep.
2277 */
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002278 goto out;
Mikulas Patockac0820cf2012-12-21 20:23:38 +00002279 }
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002280
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05002281 BUG_ON(!p || md->io_pool || md->rq_pool || md->bs);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002282
2283 md->io_pool = p->io_pool;
2284 p->io_pool = NULL;
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05002285 md->rq_pool = p->rq_pool;
2286 p->rq_pool = NULL;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002287 md->bs = p->bs;
2288 p->bs = NULL;
2289
2290out:
2291 /* mempool bind completed, now no need any mempools in the table */
2292 dm_table_free_md_mempools(t);
2293}
2294
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295/*
2296 * Bind a table to the device.
2297 */
2298static void event_callback(void *context)
2299{
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002300 unsigned long flags;
2301 LIST_HEAD(uevents);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 struct mapped_device *md = (struct mapped_device *) context;
2303
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002304 spin_lock_irqsave(&md->uevent_lock, flags);
2305 list_splice_init(&md->uevent_list, &uevents);
2306 spin_unlock_irqrestore(&md->uevent_lock, flags);
2307
Tejun Heoed9e1982008-08-25 19:56:05 +09002308 dm_send_uevents(&uevents, &disk_to_dev(md->disk)->kobj);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002309
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 atomic_inc(&md->event_nr);
2311 wake_up(&md->eventq);
2312}
2313
Mike Snitzerc2176492011-01-13 19:53:46 +00002314/*
2315 * Protected by md->suspend_lock obtained by dm_swap_table().
2316 */
Alasdair G Kergon4e90188be2005-07-28 21:15:59 -07002317static void __set_size(struct mapped_device *md, sector_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318{
Alasdair G Kergon4e90188be2005-07-28 21:15:59 -07002319 set_capacity(md->disk, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002321 i_size_write(md->bdev->bd_inode, (loff_t)size << SECTOR_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322}
2323
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002324/*
Mikulas Patockad5b9dd02011-08-02 12:32:04 +01002325 * Return 1 if the queue has a compulsory merge_bvec_fn function.
2326 *
2327 * If this function returns 0, then the device is either a non-dm
2328 * device without a merge_bvec_fn, or it is a dm device that is
2329 * able to split any bios it receives that are too big.
2330 */
2331int dm_queue_merge_is_compulsory(struct request_queue *q)
2332{
2333 struct mapped_device *dev_md;
2334
2335 if (!q->merge_bvec_fn)
2336 return 0;
2337
2338 if (q->make_request_fn == dm_request) {
2339 dev_md = q->queuedata;
2340 if (test_bit(DMF_MERGE_IS_OPTIONAL, &dev_md->flags))
2341 return 0;
2342 }
2343
2344 return 1;
2345}
2346
2347static int dm_device_merge_is_compulsory(struct dm_target *ti,
2348 struct dm_dev *dev, sector_t start,
2349 sector_t len, void *data)
2350{
2351 struct block_device *bdev = dev->bdev;
2352 struct request_queue *q = bdev_get_queue(bdev);
2353
2354 return dm_queue_merge_is_compulsory(q);
2355}
2356
2357/*
2358 * Return 1 if it is acceptable to ignore merge_bvec_fn based
2359 * on the properties of the underlying devices.
2360 */
2361static int dm_table_merge_is_optional(struct dm_table *table)
2362{
2363 unsigned i = 0;
2364 struct dm_target *ti;
2365
2366 while (i < dm_table_get_num_targets(table)) {
2367 ti = dm_table_get_target(table, i++);
2368
2369 if (ti->type->iterate_devices &&
2370 ti->type->iterate_devices(ti, dm_device_merge_is_compulsory, NULL))
2371 return 0;
2372 }
2373
2374 return 1;
2375}
2376
2377/*
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002378 * Returns old map, which caller must destroy.
2379 */
2380static struct dm_table *__bind(struct mapped_device *md, struct dm_table *t,
2381 struct queue_limits *limits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382{
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002383 struct dm_table *old_map;
Jens Axboe165125e2007-07-24 09:28:11 +02002384 struct request_queue *q = md->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 sector_t size;
Mikulas Patockad5b9dd02011-08-02 12:32:04 +01002386 int merge_is_optional;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387
2388 size = dm_table_get_size(t);
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08002389
2390 /*
2391 * Wipe any geometry if the size of the table changed.
2392 */
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002393 if (size != dm_get_size(md))
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08002394 memset(&md->geometry, 0, sizeof(md->geometry));
2395
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002396 __set_size(md, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002398 dm_table_event_callback(t, event_callback, md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002399
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002400 /*
2401 * The queue hasn't been stopped yet, if the old table type wasn't
2402 * for request-based during suspension. So stop it to prevent
2403 * I/O mapping before resume.
2404 * This must be done before setting the queue restrictions,
2405 * because request-based dm may be run just after the setting.
2406 */
2407 if (dm_table_request_based(t) && !blk_queue_stopped(q))
2408 stop_queue(q);
2409
2410 __bind_mempools(md, t);
2411
Mikulas Patockad5b9dd02011-08-02 12:32:04 +01002412 merge_is_optional = dm_table_merge_is_optional(t);
2413
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002414 old_map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002415 rcu_assign_pointer(md->map, t);
Alasdair G Kergon36a04562011-10-31 20:19:04 +00002416 md->immutable_target_type = dm_table_get_immutable_target_type(t);
2417
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002418 dm_table_set_restrictions(t, q, limits);
Mikulas Patockad5b9dd02011-08-02 12:32:04 +01002419 if (merge_is_optional)
2420 set_bit(DMF_MERGE_IS_OPTIONAL, &md->flags);
2421 else
2422 clear_bit(DMF_MERGE_IS_OPTIONAL, &md->flags);
Hannes Reinecke41abc4e2014-11-05 14:35:50 +01002423 if (old_map)
2424 dm_sync_table(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002425
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002426 return old_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427}
2428
Alasdair G Kergona7940152009-12-10 23:52:23 +00002429/*
2430 * Returns unbound table for the caller to free.
2431 */
2432static struct dm_table *__unbind(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433{
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002434 struct dm_table *map = rcu_dereference_protected(md->map, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435
2436 if (!map)
Alasdair G Kergona7940152009-12-10 23:52:23 +00002437 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438
2439 dm_table_event_callback(map, NULL, NULL);
Monam Agarwal9cdb8522014-03-23 23:58:27 +05302440 RCU_INIT_POINTER(md->map, NULL);
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002441 dm_sync_table(md);
Alasdair G Kergona7940152009-12-10 23:52:23 +00002442
2443 return map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444}
2445
2446/*
2447 * Constructor for a new device.
2448 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002449int dm_create(int minor, struct mapped_device **result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450{
2451 struct mapped_device *md;
2452
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002453 md = alloc_dev(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 if (!md)
2455 return -ENXIO;
2456
Milan Broz784aae72009-01-06 03:05:12 +00002457 dm_sysfs_init(md);
2458
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 *result = md;
2460 return 0;
2461}
2462
Mike Snitzera5664da2010-08-12 04:14:01 +01002463/*
2464 * Functions to manage md->type.
2465 * All are required to hold md->type_lock.
2466 */
2467void dm_lock_md_type(struct mapped_device *md)
2468{
2469 mutex_lock(&md->type_lock);
2470}
2471
2472void dm_unlock_md_type(struct mapped_device *md)
2473{
2474 mutex_unlock(&md->type_lock);
2475}
2476
2477void dm_set_md_type(struct mapped_device *md, unsigned type)
2478{
Mike Snitzer00c4fc32013-08-27 18:57:03 -04002479 BUG_ON(!mutex_is_locked(&md->type_lock));
Mike Snitzera5664da2010-08-12 04:14:01 +01002480 md->type = type;
2481}
2482
2483unsigned dm_get_md_type(struct mapped_device *md)
2484{
Mike Snitzer00c4fc32013-08-27 18:57:03 -04002485 BUG_ON(!mutex_is_locked(&md->type_lock));
Mike Snitzera5664da2010-08-12 04:14:01 +01002486 return md->type;
2487}
2488
Mike Snitzere5863d92014-12-17 21:08:12 -05002489static bool dm_md_type_request_based(struct mapped_device *md)
2490{
2491 unsigned table_type = dm_get_md_type(md);
2492
2493 return (table_type == DM_TYPE_REQUEST_BASED ||
2494 table_type == DM_TYPE_MQ_REQUEST_BASED);
2495}
2496
Alasdair G Kergon36a04562011-10-31 20:19:04 +00002497struct target_type *dm_get_immutable_target_type(struct mapped_device *md)
2498{
2499 return md->immutable_target_type;
2500}
2501
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002502/*
Mike Snitzerf84cb8a2013-09-19 12:13:58 -04002503 * The queue_limits are only valid as long as you have a reference
2504 * count on 'md'.
2505 */
2506struct queue_limits *dm_get_queue_limits(struct mapped_device *md)
2507{
2508 BUG_ON(!atomic_read(&md->holders));
2509 return &md->queue->limits;
2510}
2511EXPORT_SYMBOL_GPL(dm_get_queue_limits);
2512
2513/*
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002514 * Fully initialize a request-based queue (->elevator, ->request_fn, etc).
2515 */
2516static int dm_init_request_based_queue(struct mapped_device *md)
2517{
2518 struct request_queue *q = NULL;
2519
2520 if (md->queue->elevator)
2521 return 1;
2522
2523 /* Fully initialize the queue */
2524 q = blk_init_allocated_queue(md->queue, dm_request_fn, NULL);
2525 if (!q)
2526 return 0;
2527
2528 md->queue = q;
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002529 dm_init_md_queue(md);
2530 blk_queue_softirq_done(md->queue, dm_softirq_done);
2531 blk_queue_prep_rq(md->queue, dm_prep_fn);
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002532
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002533 /* Also initialize the request-based DM worker thread */
2534 init_kthread_worker(&md->kworker);
2535 md->kworker_task = kthread_run(kthread_worker_fn, &md->kworker,
2536 "kdmwork-%s", dm_device_name(md));
2537
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002538 elv_register_queue(md->queue);
2539
2540 return 1;
2541}
2542
2543/*
2544 * Setup the DM device's queue based on md's type
2545 */
2546int dm_setup_md_queue(struct mapped_device *md)
2547{
Mike Snitzere5863d92014-12-17 21:08:12 -05002548 if (dm_md_type_request_based(md) && !dm_init_request_based_queue(md)) {
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002549 DMWARN("Cannot initialize queue for request-based mapped device");
2550 return -EINVAL;
2551 }
2552
2553 return 0;
2554}
2555
Mikulas Patocka2bec1f42015-02-17 14:30:53 -05002556struct mapped_device *dm_get_md(dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557{
2558 struct mapped_device *md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 unsigned minor = MINOR(dev);
2560
2561 if (MAJOR(dev) != _major || minor >= (1 << MINORBITS))
2562 return NULL;
2563
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002564 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565
2566 md = idr_find(&_minor_idr, minor);
Mikulas Patocka2bec1f42015-02-17 14:30:53 -05002567 if (md) {
2568 if ((md == MINOR_ALLOCED ||
2569 (MINOR(disk_devt(dm_disk(md))) != minor) ||
2570 dm_deleting_md(md) ||
2571 test_bit(DMF_FREEING, &md->flags))) {
2572 md = NULL;
2573 goto out;
2574 }
2575 dm_get(md);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002576 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002578out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002579 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580
David Teigland637842c2006-01-06 00:20:00 -08002581 return md;
2582}
Alasdair G Kergon3cf2e4b2011-10-31 20:19:06 +00002583EXPORT_SYMBOL_GPL(dm_get_md);
David Teiglandd229a952006-01-06 00:20:01 -08002584
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08002585void *dm_get_mdptr(struct mapped_device *md)
David Teigland637842c2006-01-06 00:20:00 -08002586{
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08002587 return md->interface_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588}
2589
2590void dm_set_mdptr(struct mapped_device *md, void *ptr)
2591{
2592 md->interface_ptr = ptr;
2593}
2594
2595void dm_get(struct mapped_device *md)
2596{
2597 atomic_inc(&md->holders);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002598 BUG_ON(test_bit(DMF_FREEING, &md->flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599}
2600
Mikulas Patocka09ee96b2015-02-26 11:41:28 -05002601int dm_hold(struct mapped_device *md)
2602{
2603 spin_lock(&_minor_lock);
2604 if (test_bit(DMF_FREEING, &md->flags)) {
2605 spin_unlock(&_minor_lock);
2606 return -EBUSY;
2607 }
2608 dm_get(md);
2609 spin_unlock(&_minor_lock);
2610 return 0;
2611}
2612EXPORT_SYMBOL_GPL(dm_hold);
2613
Alasdair G Kergon72d94862006-06-26 00:27:35 -07002614const char *dm_device_name(struct mapped_device *md)
2615{
2616 return md->name;
2617}
2618EXPORT_SYMBOL_GPL(dm_device_name);
2619
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002620static void __dm_destroy(struct mapped_device *md, bool wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621{
Mike Anderson1134e5a2006-03-27 01:17:54 -08002622 struct dm_table *map;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002623 int srcu_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002625 might_sleep();
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002626
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002627 map = dm_get_live_table(md, &srcu_idx);
Mike Snitzer63a4f062015-03-23 17:01:43 -04002628
2629 spin_lock(&_minor_lock);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002630 idr_replace(&_minor_idr, MINOR_ALLOCED, MINOR(disk_devt(dm_disk(md))));
2631 set_bit(DMF_FREEING, &md->flags);
2632 spin_unlock(&_minor_lock);
2633
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002634 if (dm_request_based(md))
2635 flush_kthread_worker(&md->kworker);
2636
Mikulas Patockaab7c7bb2015-02-27 14:04:27 -05002637 /*
2638 * Take suspend_lock so that presuspend and postsuspend methods
2639 * do not race with internal suspend.
2640 */
2641 mutex_lock(&md->suspend_lock);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002642 if (!dm_suspended_md(md)) {
2643 dm_table_presuspend_targets(map);
2644 dm_table_postsuspend_targets(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 }
Mikulas Patockaab7c7bb2015-02-27 14:04:27 -05002646 mutex_unlock(&md->suspend_lock);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002647
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002648 /* dm_put_live_table must be before msleep, otherwise deadlock is possible */
2649 dm_put_live_table(md, srcu_idx);
2650
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002651 /*
2652 * Rare, but there may be I/O requests still going to complete,
2653 * for example. Wait for all references to disappear.
2654 * No one should increment the reference count of the mapped_device,
2655 * after the mapped_device state becomes DMF_FREEING.
2656 */
2657 if (wait)
2658 while (atomic_read(&md->holders))
2659 msleep(1);
2660 else if (atomic_read(&md->holders))
2661 DMWARN("%s: Forcibly removing mapped_device still in use! (%d users)",
2662 dm_device_name(md), atomic_read(&md->holders));
2663
2664 dm_sysfs_exit(md);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002665 dm_table_destroy(__unbind(md));
2666 free_dev(md);
2667}
2668
2669void dm_destroy(struct mapped_device *md)
2670{
2671 __dm_destroy(md, true);
2672}
2673
2674void dm_destroy_immediate(struct mapped_device *md)
2675{
2676 __dm_destroy(md, false);
2677}
2678
2679void dm_put(struct mapped_device *md)
2680{
2681 atomic_dec(&md->holders);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682}
Edward Goggin79eb8852007-05-09 02:32:56 -07002683EXPORT_SYMBOL_GPL(dm_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684
Mikulas Patocka401600d2009-04-02 19:55:38 +01002685static int dm_wait_for_completion(struct mapped_device *md, int interruptible)
Milan Broz46125c12008-02-08 02:10:30 +00002686{
2687 int r = 0;
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002688 DECLARE_WAITQUEUE(wait, current);
2689
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002690 add_wait_queue(&md->wait, &wait);
Milan Broz46125c12008-02-08 02:10:30 +00002691
2692 while (1) {
Mikulas Patocka401600d2009-04-02 19:55:38 +01002693 set_current_state(interruptible);
Milan Broz46125c12008-02-08 02:10:30 +00002694
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00002695 if (!md_in_flight(md))
Milan Broz46125c12008-02-08 02:10:30 +00002696 break;
2697
Mikulas Patocka401600d2009-04-02 19:55:38 +01002698 if (interruptible == TASK_INTERRUPTIBLE &&
2699 signal_pending(current)) {
Milan Broz46125c12008-02-08 02:10:30 +00002700 r = -EINTR;
2701 break;
2702 }
2703
2704 io_schedule();
2705 }
2706 set_current_state(TASK_RUNNING);
2707
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002708 remove_wait_queue(&md->wait, &wait);
2709
Milan Broz46125c12008-02-08 02:10:30 +00002710 return r;
2711}
2712
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713/*
2714 * Process the deferred bios
2715 */
Mikulas Patockaef208582009-04-02 19:55:38 +01002716static void dm_wq_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717{
Mikulas Patockaef208582009-04-02 19:55:38 +01002718 struct mapped_device *md = container_of(work, struct mapped_device,
2719 work);
Milan Broz6d6f10d2008-02-08 02:10:22 +00002720 struct bio *c;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002721 int srcu_idx;
2722 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002724 map = dm_get_live_table(md, &srcu_idx);
Mikulas Patockaef208582009-04-02 19:55:38 +01002725
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002726 while (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002727 spin_lock_irq(&md->deferred_lock);
2728 c = bio_list_pop(&md->deferred);
2729 spin_unlock_irq(&md->deferred_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01002730
Tejun Heo6a8736d2010-09-08 18:07:00 +02002731 if (!c)
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002732 break;
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002733
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002734 if (dm_request_based(md))
2735 generic_make_request(c);
Tejun Heo6a8736d2010-09-08 18:07:00 +02002736 else
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002737 __split_and_process_bio(md, map, c);
Mikulas Patocka022c2612009-04-02 19:55:39 +01002738 }
Milan Broz73d410c2008-02-08 02:10:25 +00002739
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002740 dm_put_live_table(md, srcu_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741}
2742
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002743static void dm_queue_flush(struct mapped_device *md)
Milan Broz304f3f62008-02-08 02:11:17 +00002744{
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002745 clear_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01002746 smp_mb__after_atomic();
Mikulas Patocka53d59142009-04-02 19:55:37 +01002747 queue_work(md->wq, &md->work);
Milan Broz304f3f62008-02-08 02:11:17 +00002748}
2749
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750/*
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002751 * Swap in a new table, returning the old one for the caller to destroy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752 */
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002753struct dm_table *dm_swap_table(struct mapped_device *md, struct dm_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754{
Mike Christie87eb5b22013-03-01 22:45:48 +00002755 struct dm_table *live_map = NULL, *map = ERR_PTR(-EINVAL);
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002756 struct queue_limits limits;
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002757 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758
Daniel Walkere61290a2008-02-08 02:10:08 +00002759 mutex_lock(&md->suspend_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760
2761 /* device must be suspended */
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +00002762 if (!dm_suspended_md(md))
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07002763 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764
Mike Snitzer3ae70652012-09-26 23:45:45 +01002765 /*
2766 * If the new table has no data devices, retain the existing limits.
2767 * This helps multipath with queue_if_no_path if all paths disappear,
2768 * then new I/O is queued based on these limits, and then some paths
2769 * reappear.
2770 */
2771 if (dm_table_has_no_data_devices(table)) {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002772 live_map = dm_get_live_table_fast(md);
Mike Snitzer3ae70652012-09-26 23:45:45 +01002773 if (live_map)
2774 limits = md->queue->limits;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002775 dm_put_live_table_fast(md);
Mike Snitzer3ae70652012-09-26 23:45:45 +01002776 }
2777
Mike Christie87eb5b22013-03-01 22:45:48 +00002778 if (!live_map) {
2779 r = dm_calculate_queue_limits(table, &limits);
2780 if (r) {
2781 map = ERR_PTR(r);
2782 goto out;
2783 }
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002784 }
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002785
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002786 map = __bind(md, table, &limits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07002788out:
Daniel Walkere61290a2008-02-08 02:10:08 +00002789 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002790 return map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791}
2792
2793/*
2794 * Functions to lock and unlock any filesystem running on the
2795 * device.
2796 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002797static int lock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798{
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08002799 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800
2801 WARN_ON(md->frozen_sb);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002802
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002803 md->frozen_sb = freeze_bdev(md->bdev);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002804 if (IS_ERR(md->frozen_sb)) {
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002805 r = PTR_ERR(md->frozen_sb);
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08002806 md->frozen_sb = NULL;
2807 return r;
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002808 }
2809
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002810 set_bit(DMF_FROZEN, &md->flags);
2811
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812 return 0;
2813}
2814
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002815static void unlock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816{
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002817 if (!test_bit(DMF_FROZEN, &md->flags))
2818 return;
2819
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002820 thaw_bdev(md->bdev, md->frozen_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821 md->frozen_sb = NULL;
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002822 clear_bit(DMF_FROZEN, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823}
2824
2825/*
Mike Snitzerffcc3932014-10-28 18:34:52 -04002826 * If __dm_suspend returns 0, the device is completely quiescent
2827 * now. There is no request-processing activity. All new requests
2828 * are being added to md->deferred list.
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002829 *
Mike Snitzerffcc3932014-10-28 18:34:52 -04002830 * Caller must hold md->suspend_lock
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002831 */
Mike Snitzerffcc3932014-10-28 18:34:52 -04002832static int __dm_suspend(struct mapped_device *md, struct dm_table *map,
2833 unsigned suspend_flags, int interruptible)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834{
Mike Snitzerffcc3932014-10-28 18:34:52 -04002835 bool do_lockfs = suspend_flags & DM_SUSPEND_LOCKFS_FLAG;
2836 bool noflush = suspend_flags & DM_SUSPEND_NOFLUSH_FLAG;
2837 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002839 /*
2840 * DMF_NOFLUSH_SUSPENDING must be set before presuspend.
2841 * This flag is cleared before dm_suspend returns.
2842 */
2843 if (noflush)
2844 set_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
2845
Mike Snitzerd67ee212014-10-28 20:13:31 -04002846 /*
2847 * This gets reverted if there's an error later and the targets
2848 * provide the .presuspend_undo hook.
2849 */
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002850 dm_table_presuspend_targets(map);
2851
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002852 /*
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002853 * Flush I/O to the device.
2854 * Any I/O submitted after lock_fs() may not be flushed.
2855 * noflush takes precedence over do_lockfs.
2856 * (lock_fs() flushes I/Os and waits for them to complete.)
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002857 */
2858 if (!noflush && do_lockfs) {
2859 r = lock_fs(md);
Mike Snitzerd67ee212014-10-28 20:13:31 -04002860 if (r) {
2861 dm_table_presuspend_undo_targets(map);
Mike Snitzerffcc3932014-10-28 18:34:52 -04002862 return r;
Mike Snitzerd67ee212014-10-28 20:13:31 -04002863 }
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002864 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865
2866 /*
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002867 * Here we must make sure that no processes are submitting requests
2868 * to target drivers i.e. no one may be executing
2869 * __split_and_process_bio. This is called from dm_request and
2870 * dm_wq_work.
2871 *
2872 * To get all processes out of __split_and_process_bio in dm_request,
2873 * we take the write lock. To prevent any process from reentering
Tejun Heo6a8736d2010-09-08 18:07:00 +02002874 * __split_and_process_bio from dm_request and quiesce the thread
2875 * (dm_wq_work), we set BMF_BLOCK_IO_FOR_SUSPEND and call
2876 * flush_workqueue(md->wq).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 */
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01002878 set_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
Hannes Reinecke41abc4e2014-11-05 14:35:50 +01002879 if (map)
2880 synchronize_srcu(&md->io_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002882 /*
Tejun Heo29e40132010-09-08 18:07:00 +02002883 * Stop md->queue before flushing md->wq in case request-based
2884 * dm defers requests to md->wq from md->queue.
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002885 */
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002886 if (dm_request_based(md)) {
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002887 stop_queue(md->queue);
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002888 flush_kthread_worker(&md->kworker);
2889 }
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002890
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002891 flush_workqueue(md->wq);
2892
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893 /*
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002894 * At this point no more requests are entering target request routines.
2895 * We call dm_wait_for_completion to wait for all existing requests
2896 * to finish.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897 */
Mike Snitzerffcc3932014-10-28 18:34:52 -04002898 r = dm_wait_for_completion(md, interruptible);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899
Milan Broz6d6f10d2008-02-08 02:10:22 +00002900 if (noflush)
Mikulas Patocka022c2612009-04-02 19:55:39 +01002901 clear_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
Hannes Reinecke41abc4e2014-11-05 14:35:50 +01002902 if (map)
2903 synchronize_srcu(&md->io_barrier);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002904
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905 /* were we interrupted ? */
Milan Broz46125c12008-02-08 02:10:30 +00002906 if (r < 0) {
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002907 dm_queue_flush(md);
Milan Broz73d410c2008-02-08 02:10:25 +00002908
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002909 if (dm_request_based(md))
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002910 start_queue(md->queue);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002911
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002912 unlock_fs(md);
Mike Snitzerd67ee212014-10-28 20:13:31 -04002913 dm_table_presuspend_undo_targets(map);
Mike Snitzerffcc3932014-10-28 18:34:52 -04002914 /* pushback list is already flushed, so skip flush */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002915 }
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002916
Mike Snitzerffcc3932014-10-28 18:34:52 -04002917 return r;
2918}
2919
2920/*
2921 * We need to be able to change a mapping table under a mounted
2922 * filesystem. For example we might want to move some data in
2923 * the background. Before the table can be swapped with
2924 * dm_bind_table, dm_suspend must be called to flush any in
2925 * flight bios and ensure that any further io gets deferred.
2926 */
2927/*
2928 * Suspend mechanism in request-based dm.
2929 *
2930 * 1. Flush all I/Os by lock_fs() if needed.
2931 * 2. Stop dispatching any I/O by stopping the request_queue.
2932 * 3. Wait for all in-flight I/Os to be completed or requeued.
2933 *
2934 * To abort suspend, start the request_queue.
2935 */
2936int dm_suspend(struct mapped_device *md, unsigned suspend_flags)
2937{
2938 struct dm_table *map = NULL;
2939 int r = 0;
2940
2941retry:
2942 mutex_lock_nested(&md->suspend_lock, SINGLE_DEPTH_NESTING);
2943
2944 if (dm_suspended_md(md)) {
2945 r = -EINVAL;
2946 goto out_unlock;
2947 }
2948
2949 if (dm_suspended_internally_md(md)) {
2950 /* already internally suspended, wait for internal resume */
2951 mutex_unlock(&md->suspend_lock);
2952 r = wait_on_bit(&md->flags, DMF_SUSPENDED_INTERNALLY, TASK_INTERRUPTIBLE);
2953 if (r)
2954 return r;
2955 goto retry;
2956 }
2957
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002958 map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mike Snitzerffcc3932014-10-28 18:34:52 -04002959
2960 r = __dm_suspend(md, map, suspend_flags, TASK_INTERRUPTIBLE);
2961 if (r)
2962 goto out_unlock;
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002963
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964 set_bit(DMF_SUSPENDED, &md->flags);
2965
Kiyoshi Ueda4d4471c2009-12-10 23:52:26 +00002966 dm_table_postsuspend_targets(map);
2967
Alasdair G Kergond2874832006-11-08 17:44:43 -08002968out_unlock:
Daniel Walkere61290a2008-02-08 02:10:08 +00002969 mutex_unlock(&md->suspend_lock);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002970 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971}
2972
Mike Snitzerffcc3932014-10-28 18:34:52 -04002973static int __dm_resume(struct mapped_device *md, struct dm_table *map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974{
Mike Snitzerffcc3932014-10-28 18:34:52 -04002975 if (map) {
2976 int r = dm_table_resume_targets(map);
2977 if (r)
2978 return r;
2979 }
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002980
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002981 dm_queue_flush(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002982
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002983 /*
2984 * Flushing deferred I/Os must be done after targets are resumed
2985 * so that mapping of targets can work correctly.
2986 * Request-based dm is queueing the deferred I/Os in its request_queue.
2987 */
2988 if (dm_request_based(md))
2989 start_queue(md->queue);
2990
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002991 unlock_fs(md);
2992
Mike Snitzerffcc3932014-10-28 18:34:52 -04002993 return 0;
2994}
2995
2996int dm_resume(struct mapped_device *md)
2997{
2998 int r = -EINVAL;
2999 struct dm_table *map = NULL;
3000
3001retry:
3002 mutex_lock_nested(&md->suspend_lock, SINGLE_DEPTH_NESTING);
3003
3004 if (!dm_suspended_md(md))
3005 goto out;
3006
3007 if (dm_suspended_internally_md(md)) {
3008 /* already internally suspended, wait for internal resume */
3009 mutex_unlock(&md->suspend_lock);
3010 r = wait_on_bit(&md->flags, DMF_SUSPENDED_INTERNALLY, TASK_INTERRUPTIBLE);
3011 if (r)
3012 return r;
3013 goto retry;
3014 }
3015
Eric Dumazeta12f5d42014-11-23 09:34:29 -08003016 map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mike Snitzerffcc3932014-10-28 18:34:52 -04003017 if (!map || !dm_table_get_size(map))
3018 goto out;
3019
3020 r = __dm_resume(md, map);
3021 if (r)
3022 goto out;
3023
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07003024 clear_bit(DMF_SUSPENDED, &md->flags);
3025
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07003026 r = 0;
3027out:
Daniel Walkere61290a2008-02-08 02:10:08 +00003028 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07003029
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07003030 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031}
3032
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003033/*
3034 * Internal suspend/resume works like userspace-driven suspend. It waits
3035 * until all bios finish and prevents issuing new bios to the target drivers.
3036 * It may be used only from the kernel.
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003037 */
3038
Mike Snitzerffcc3932014-10-28 18:34:52 -04003039static void __dm_internal_suspend(struct mapped_device *md, unsigned suspend_flags)
3040{
3041 struct dm_table *map = NULL;
3042
Mikulas Patocka96b26c82015-01-08 18:52:26 -05003043 if (md->internal_suspend_count++)
Mike Snitzerffcc3932014-10-28 18:34:52 -04003044 return; /* nested internal suspend */
3045
3046 if (dm_suspended_md(md)) {
3047 set_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
3048 return; /* nest suspend */
3049 }
3050
Eric Dumazeta12f5d42014-11-23 09:34:29 -08003051 map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mike Snitzerffcc3932014-10-28 18:34:52 -04003052
3053 /*
3054 * Using TASK_UNINTERRUPTIBLE because only NOFLUSH internal suspend is
3055 * supported. Properly supporting a TASK_INTERRUPTIBLE internal suspend
3056 * would require changing .presuspend to return an error -- avoid this
3057 * until there is a need for more elaborate variants of internal suspend.
3058 */
3059 (void) __dm_suspend(md, map, suspend_flags, TASK_UNINTERRUPTIBLE);
3060
3061 set_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
3062
3063 dm_table_postsuspend_targets(map);
3064}
3065
3066static void __dm_internal_resume(struct mapped_device *md)
3067{
Mikulas Patocka96b26c82015-01-08 18:52:26 -05003068 BUG_ON(!md->internal_suspend_count);
3069
3070 if (--md->internal_suspend_count)
Mike Snitzerffcc3932014-10-28 18:34:52 -04003071 return; /* resume from nested internal suspend */
3072
3073 if (dm_suspended_md(md))
3074 goto done; /* resume from nested suspend */
3075
3076 /*
3077 * NOTE: existing callers don't need to call dm_table_resume_targets
3078 * (which may fail -- so best to avoid it for now by passing NULL map)
3079 */
3080 (void) __dm_resume(md, NULL);
3081
3082done:
3083 clear_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
3084 smp_mb__after_atomic();
3085 wake_up_bit(&md->flags, DMF_SUSPENDED_INTERNALLY);
3086}
3087
3088void dm_internal_suspend_noflush(struct mapped_device *md)
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003089{
3090 mutex_lock(&md->suspend_lock);
Mike Snitzerffcc3932014-10-28 18:34:52 -04003091 __dm_internal_suspend(md, DM_SUSPEND_NOFLUSH_FLAG);
3092 mutex_unlock(&md->suspend_lock);
3093}
3094EXPORT_SYMBOL_GPL(dm_internal_suspend_noflush);
3095
3096void dm_internal_resume(struct mapped_device *md)
3097{
3098 mutex_lock(&md->suspend_lock);
3099 __dm_internal_resume(md);
3100 mutex_unlock(&md->suspend_lock);
3101}
3102EXPORT_SYMBOL_GPL(dm_internal_resume);
3103
3104/*
3105 * Fast variants of internal suspend/resume hold md->suspend_lock,
3106 * which prevents interaction with userspace-driven suspend.
3107 */
3108
3109void dm_internal_suspend_fast(struct mapped_device *md)
3110{
3111 mutex_lock(&md->suspend_lock);
3112 if (dm_suspended_md(md) || dm_suspended_internally_md(md))
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003113 return;
3114
3115 set_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
3116 synchronize_srcu(&md->io_barrier);
3117 flush_workqueue(md->wq);
3118 dm_wait_for_completion(md, TASK_UNINTERRUPTIBLE);
3119}
Mikulas Patockab735fed2015-02-26 11:40:35 -05003120EXPORT_SYMBOL_GPL(dm_internal_suspend_fast);
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003121
Mike Snitzerffcc3932014-10-28 18:34:52 -04003122void dm_internal_resume_fast(struct mapped_device *md)
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003123{
Mike Snitzerffcc3932014-10-28 18:34:52 -04003124 if (dm_suspended_md(md) || dm_suspended_internally_md(md))
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003125 goto done;
3126
3127 dm_queue_flush(md);
3128
3129done:
3130 mutex_unlock(&md->suspend_lock);
3131}
Mikulas Patockab735fed2015-02-26 11:40:35 -05003132EXPORT_SYMBOL_GPL(dm_internal_resume_fast);
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003133
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134/*-----------------------------------------------------------------
3135 * Event notification.
3136 *---------------------------------------------------------------*/
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00003137int dm_kobject_uevent(struct mapped_device *md, enum kobject_action action,
Milan Broz60935eb2009-06-22 10:12:30 +01003138 unsigned cookie)
Alasdair G Kergon69267a32007-12-13 14:15:57 +00003139{
Milan Broz60935eb2009-06-22 10:12:30 +01003140 char udev_cookie[DM_COOKIE_LENGTH];
3141 char *envp[] = { udev_cookie, NULL };
3142
3143 if (!cookie)
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00003144 return kobject_uevent(&disk_to_dev(md->disk)->kobj, action);
Milan Broz60935eb2009-06-22 10:12:30 +01003145 else {
3146 snprintf(udev_cookie, DM_COOKIE_LENGTH, "%s=%u",
3147 DM_COOKIE_ENV_VAR_NAME, cookie);
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00003148 return kobject_uevent_env(&disk_to_dev(md->disk)->kobj,
3149 action, envp);
Milan Broz60935eb2009-06-22 10:12:30 +01003150 }
Alasdair G Kergon69267a32007-12-13 14:15:57 +00003151}
3152
Mike Anderson7a8c3d32007-10-19 22:48:01 +01003153uint32_t dm_next_uevent_seq(struct mapped_device *md)
3154{
3155 return atomic_add_return(1, &md->uevent_seq);
3156}
3157
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158uint32_t dm_get_event_nr(struct mapped_device *md)
3159{
3160 return atomic_read(&md->event_nr);
3161}
3162
3163int dm_wait_event(struct mapped_device *md, int event_nr)
3164{
3165 return wait_event_interruptible(md->eventq,
3166 (event_nr != atomic_read(&md->event_nr)));
3167}
3168
Mike Anderson7a8c3d32007-10-19 22:48:01 +01003169void dm_uevent_add(struct mapped_device *md, struct list_head *elist)
3170{
3171 unsigned long flags;
3172
3173 spin_lock_irqsave(&md->uevent_lock, flags);
3174 list_add(elist, &md->uevent_list);
3175 spin_unlock_irqrestore(&md->uevent_lock, flags);
3176}
3177
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178/*
3179 * The gendisk is only valid as long as you have a reference
3180 * count on 'md'.
3181 */
3182struct gendisk *dm_disk(struct mapped_device *md)
3183{
3184 return md->disk;
3185}
3186
Milan Broz784aae72009-01-06 03:05:12 +00003187struct kobject *dm_kobject(struct mapped_device *md)
3188{
Mikulas Patocka2995fa72014-01-13 19:37:54 -05003189 return &md->kobj_holder.kobj;
Milan Broz784aae72009-01-06 03:05:12 +00003190}
3191
Milan Broz784aae72009-01-06 03:05:12 +00003192struct mapped_device *dm_get_from_kobject(struct kobject *kobj)
3193{
3194 struct mapped_device *md;
3195
Mikulas Patocka2995fa72014-01-13 19:37:54 -05003196 md = container_of(kobj, struct mapped_device, kobj_holder.kobj);
Milan Broz784aae72009-01-06 03:05:12 +00003197
Milan Broz4d89b7b2009-06-22 10:12:11 +01003198 if (test_bit(DMF_FREEING, &md->flags) ||
Mike Anderson432a2122009-12-10 23:52:20 +00003199 dm_deleting_md(md))
Milan Broz4d89b7b2009-06-22 10:12:11 +01003200 return NULL;
3201
Milan Broz784aae72009-01-06 03:05:12 +00003202 dm_get(md);
3203 return md;
3204}
3205
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +00003206int dm_suspended_md(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207{
3208 return test_bit(DMF_SUSPENDED, &md->flags);
3209}
3210
Mike Snitzerffcc3932014-10-28 18:34:52 -04003211int dm_suspended_internally_md(struct mapped_device *md)
3212{
3213 return test_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
3214}
3215
Mikulas Patocka2c140a22013-11-01 18:27:41 -04003216int dm_test_deferred_remove_flag(struct mapped_device *md)
3217{
3218 return test_bit(DMF_DEFERRED_REMOVE, &md->flags);
3219}
3220
Kiyoshi Ueda64dbce52009-12-10 23:52:27 +00003221int dm_suspended(struct dm_target *ti)
3222{
Kiyoshi Uedaecdb2e22010-03-06 02:29:52 +00003223 return dm_suspended_md(dm_table_get_md(ti->table));
Kiyoshi Ueda64dbce52009-12-10 23:52:27 +00003224}
3225EXPORT_SYMBOL_GPL(dm_suspended);
3226
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08003227int dm_noflush_suspending(struct dm_target *ti)
3228{
Kiyoshi Uedaecdb2e22010-03-06 02:29:52 +00003229 return __noflush_suspending(dm_table_get_md(ti->table));
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08003230}
3231EXPORT_SYMBOL_GPL(dm_noflush_suspending);
3232
Mikulas Patockac0820cf2012-12-21 20:23:38 +00003233struct dm_md_mempools *dm_alloc_md_mempools(unsigned type, unsigned integrity, unsigned per_bio_data_size)
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003234{
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003235 struct dm_md_mempools *pools = kzalloc(sizeof(*pools), GFP_KERNEL);
3236 struct kmem_cache *cachep;
Mike Snitzere5863d92014-12-17 21:08:12 -05003237 unsigned int pool_size = 0;
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003238 unsigned int front_pad;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003239
3240 if (!pools)
3241 return NULL;
3242
Mike Snitzere5863d92014-12-17 21:08:12 -05003243 switch (type) {
3244 case DM_TYPE_BIO_BASED:
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003245 cachep = _io_cache;
Mike Snitzere8603132013-09-12 18:06:12 -04003246 pool_size = dm_get_reserved_bio_based_ios();
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003247 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 -05003248 break;
3249 case DM_TYPE_REQUEST_BASED:
Mike Snitzerf4790822013-09-12 18:06:12 -04003250 pool_size = dm_get_reserved_rq_based_ios();
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05003251 pools->rq_pool = mempool_create_slab_pool(pool_size, _rq_cache);
3252 if (!pools->rq_pool)
3253 goto out;
Mike Snitzere5863d92014-12-17 21:08:12 -05003254 /* fall through to setup remaining rq-based pools */
3255 case DM_TYPE_MQ_REQUEST_BASED:
3256 cachep = _rq_tio_cache;
3257 if (!pool_size)
3258 pool_size = dm_get_reserved_rq_based_ios();
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003259 front_pad = offsetof(struct dm_rq_clone_bio_info, clone);
3260 /* per_bio_data_size is not used. See __bind_mempools(). */
3261 WARN_ON(per_bio_data_size != 0);
Mike Snitzere5863d92014-12-17 21:08:12 -05003262 break;
3263 default:
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003264 goto out;
Mike Snitzere5863d92014-12-17 21:08:12 -05003265 }
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003266
Mike Snitzer6cfa5852013-09-12 18:06:11 -04003267 pools->io_pool = mempool_create_slab_pool(pool_size, cachep);
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003268 if (!pools->io_pool)
3269 goto out;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003270
Junichi Nomura3d8aab22014-10-03 11:55:26 +00003271 pools->bs = bioset_create_nobvec(pool_size, front_pad);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003272 if (!pools->bs)
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003273 goto out;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003274
Martin K. Petersena91a2782011-03-17 11:11:05 +01003275 if (integrity && bioset_integrity_create(pools->bs, pool_size))
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003276 goto out;
Martin K. Petersena91a2782011-03-17 11:11:05 +01003277
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003278 return pools;
3279
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003280out:
3281 dm_free_md_mempools(pools);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003282
3283 return NULL;
3284}
3285
3286void dm_free_md_mempools(struct dm_md_mempools *pools)
3287{
3288 if (!pools)
3289 return;
3290
3291 if (pools->io_pool)
3292 mempool_destroy(pools->io_pool);
3293
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05003294 if (pools->rq_pool)
3295 mempool_destroy(pools->rq_pool);
3296
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003297 if (pools->bs)
3298 bioset_free(pools->bs);
3299
3300 kfree(pools);
3301}
3302
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07003303static const struct block_device_operations dm_blk_dops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304 .open = dm_blk_open,
3305 .release = dm_blk_close,
Milan Brozaa129a22006-10-03 01:15:15 -07003306 .ioctl = dm_blk_ioctl,
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08003307 .getgeo = dm_blk_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003308 .owner = THIS_MODULE
3309};
3310
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311/*
3312 * module hooks
3313 */
3314module_init(dm_init);
3315module_exit(dm_exit);
3316
3317module_param(major, uint, 0);
3318MODULE_PARM_DESC(major, "The major number of the device mapper");
Mike Snitzerf4790822013-09-12 18:06:12 -04003319
Mike Snitzere8603132013-09-12 18:06:12 -04003320module_param(reserved_bio_based_ios, uint, S_IRUGO | S_IWUSR);
3321MODULE_PARM_DESC(reserved_bio_based_ios, "Reserved IOs in bio-based mempools");
3322
Mike Snitzerf4790822013-09-12 18:06:12 -04003323module_param(reserved_rq_based_ios, uint, S_IRUGO | S_IWUSR);
3324MODULE_PARM_DESC(reserved_rq_based_ios, "Reserved IOs in request-based mempools");
3325
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326MODULE_DESCRIPTION(DM_NAME " driver");
3327MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
3328MODULE_LICENSE("GPL");