blob: 98eb02d32e6e873c392059ab7fc18b7c15dda757 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2001, 2002 Sistina Software (UK) Limited.
Milan Broz784aae72009-01-06 03:05:12 +00003 * Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * This file is released under the GPL.
6 */
7
8#include "dm.h"
Mike Anderson51e5b2b2007-10-19 22:48:00 +01009#include "dm-uevent.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
11#include <linux/init.h>
12#include <linux/module.h>
Arjan van de Ven48c9c272006-03-27 01:18:20 -080013#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/moduleparam.h>
15#include <linux/blkpg.h>
16#include <linux/bio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/mempool.h>
18#include <linux/slab.h>
19#include <linux/idr.h>
Darrick J. Wong3ac51e72006-03-27 01:17:54 -080020#include <linux/hdreg.h>
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +010021#include <linux/delay.h>
Mike Snitzerffcc3932014-10-28 18:34:52 -040022#include <linux/wait.h>
Keith Busch2eb6e1e2014-10-17 17:46:36 -060023#include <linux/kthread.h>
Li Zefan55782132009-06-09 13:43:05 +080024
25#include <trace/events/block.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Alasdair G Kergon72d94862006-06-26 00:27:35 -070027#define DM_MSG_PREFIX "core"
28
Namhyung Kim71a16732011-10-31 20:18:54 +000029#ifdef CONFIG_PRINTK
30/*
31 * ratelimit state to be used in DMXXX_LIMIT().
32 */
33DEFINE_RATELIMIT_STATE(dm_ratelimit_state,
34 DEFAULT_RATELIMIT_INTERVAL,
35 DEFAULT_RATELIMIT_BURST);
36EXPORT_SYMBOL(dm_ratelimit_state);
37#endif
38
Milan Broz60935eb2009-06-22 10:12:30 +010039/*
40 * Cookies are numeric values sent with CHANGE and REMOVE
41 * uevents while resuming, removing or renaming the device.
42 */
43#define DM_COOKIE_ENV_VAR_NAME "DM_COOKIE"
44#define DM_COOKIE_LENGTH 24
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046static const char *_name = DM_NAME;
47
48static unsigned int major = 0;
49static unsigned int _major = 0;
50
Alasdair G Kergond15b7742011-08-02 12:32:01 +010051static DEFINE_IDR(_minor_idr);
52
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -070053static DEFINE_SPINLOCK(_minor_lock);
Mikulas Patocka2c140a22013-11-01 18:27:41 -040054
55static void do_deferred_remove(struct work_struct *w);
56
57static DECLARE_WORK(deferred_remove_work, do_deferred_remove);
58
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -040059static struct workqueue_struct *deferred_remove_workqueue;
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061/*
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000062 * For bio-based dm.
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 * One of these is allocated per bio.
64 */
65struct dm_io {
66 struct mapped_device *md;
67 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 atomic_t io_count;
Richard Kennedy6ae2fa62008-07-21 12:00:28 +010069 struct bio *bio;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -080070 unsigned long start_time;
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +010071 spinlock_t endio_lock;
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -040072 struct dm_stats_aux stats_aux;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073};
74
75/*
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000076 * For request-based dm.
77 * One of these is allocated per request.
78 */
79struct dm_rq_target_io {
80 struct mapped_device *md;
81 struct dm_target *ti;
Mike Snitzer1ae49ea2014-12-05 17:11:05 -050082 struct request *orig, *clone;
Keith Busch2eb6e1e2014-10-17 17:46:36 -060083 struct kthread_work work;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000084 int error;
85 union map_info info;
86};
87
88/*
Kent Overstreet94818742012-09-07 13:44:01 -070089 * For request-based dm - the bio clones we allocate are embedded in these
90 * structs.
91 *
92 * We allocate these with bio_alloc_bioset, using the front_pad parameter when
93 * the bioset is created - this means the bio has to come at the end of the
94 * struct.
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000095 */
96struct dm_rq_clone_bio_info {
97 struct bio *orig;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +010098 struct dm_rq_target_io *tio;
Kent Overstreet94818742012-09-07 13:44:01 -070099 struct bio clone;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000100};
101
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100102union map_info *dm_get_rq_mapinfo(struct request *rq)
103{
104 if (rq && rq->end_io_data)
105 return &((struct dm_rq_target_io *)rq->end_io_data)->info;
106 return NULL;
107}
108EXPORT_SYMBOL_GPL(dm_get_rq_mapinfo);
109
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -0700110#define MINOR_ALLOCED ((void *)-1)
111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112/*
113 * Bits for the md->flags field.
114 */
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +0100115#define DMF_BLOCK_IO_FOR_SUSPEND 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116#define DMF_SUSPENDED 1
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -0800117#define DMF_FROZEN 2
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700118#define DMF_FREEING 3
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700119#define DMF_DELETING 4
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800120#define DMF_NOFLUSH_SUSPENDING 5
Mikulas Patockad5b9dd02011-08-02 12:32:04 +0100121#define DMF_MERGE_IS_OPTIONAL 6
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400122#define DMF_DEFERRED_REMOVE 7
Mike Snitzerffcc3932014-10-28 18:34:52 -0400123#define DMF_SUSPENDED_INTERNALLY 8
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Milan Broz304f3f62008-02-08 02:11:17 +0000125/*
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100126 * A dummy definition to make RCU happy.
127 * struct dm_table should never be dereferenced in this file.
128 */
129struct dm_table {
130 int undefined__;
131};
132
133/*
Milan Broz304f3f62008-02-08 02:11:17 +0000134 * Work processed by per-device workqueue.
135 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136struct mapped_device {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100137 struct srcu_struct io_barrier;
Daniel Walkere61290a2008-02-08 02:10:08 +0000138 struct mutex suspend_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 atomic_t holders;
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700140 atomic_t open_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Mikulas Patocka2a7faeb12013-07-10 23:41:18 +0100142 /*
143 * The current mapping.
144 * Use dm_get_live_table{_fast} or take suspend_lock for
145 * dereference.
146 */
Pranith Kumar6fa99522014-10-28 15:09:57 -0700147 struct dm_table __rcu *map;
Mikulas Patocka2a7faeb12013-07-10 23:41:18 +0100148
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500149 struct list_head table_devices;
150 struct mutex table_devices_lock;
151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 unsigned long flags;
153
Jens Axboe165125e2007-07-24 09:28:11 +0200154 struct request_queue *queue;
Mike Snitzera5664da2010-08-12 04:14:01 +0100155 unsigned type;
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +0100156 /* Protect queue and type against concurrent access. */
Mike Snitzera5664da2010-08-12 04:14:01 +0100157 struct mutex type_lock;
158
Alasdair G Kergon36a04562011-10-31 20:19:04 +0000159 struct target_type *immutable_target_type;
160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 struct gendisk *disk;
Mike Anderson7e51f252006-03-27 01:17:52 -0800162 char name[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164 void *interface_ptr;
165
166 /*
167 * A list of ios that arrived while we were suspended.
168 */
Nikanth Karthikesan316d3152009-10-06 20:16:55 +0200169 atomic_t pending[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 wait_queue_head_t wait;
Mikulas Patocka53d59142009-04-02 19:55:37 +0100171 struct work_struct work;
Kiyoshi Ueda74859362006-12-08 02:41:02 -0800172 struct bio_list deferred;
Mikulas Patocka022c2612009-04-02 19:55:39 +0100173 spinlock_t deferred_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
175 /*
Tejun Heo29e40132010-09-08 18:07:00 +0200176 * Processing queue (flush)
Milan Broz304f3f62008-02-08 02:11:17 +0000177 */
178 struct workqueue_struct *wq;
179
180 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 * io objects are allocated from here.
182 */
183 mempool_t *io_pool;
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500184 mempool_t *rq_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Stefan Bader9faf4002006-10-03 01:15:41 -0700186 struct bio_set *bs;
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 /*
189 * Event handling.
190 */
191 atomic_t event_nr;
192 wait_queue_head_t eventq;
Mike Anderson7a8c3d32007-10-19 22:48:01 +0100193 atomic_t uevent_seq;
194 struct list_head uevent_list;
195 spinlock_t uevent_lock; /* Protect access to uevent_list */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197 /*
198 * freeze/thaw support require holding onto a super block
199 */
200 struct super_block *frozen_sb;
Mikulas Patockadb8fef42009-06-22 10:12:15 +0100201 struct block_device *bdev;
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800202
203 /* forced geometry settings */
204 struct hd_geometry geometry;
Milan Broz784aae72009-01-06 03:05:12 +0000205
Mikulas Patocka2995fa72014-01-13 19:37:54 -0500206 /* kobject and completion */
207 struct dm_kobject_holder kobj_holder;
Mikulas Patockabe35f482014-01-06 23:01:22 -0500208
Tejun Heod87f4c12010-09-03 11:56:19 +0200209 /* zero-length flush that will be cloned and submitted to targets */
210 struct bio flush_bio;
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400211
Mikulas Patocka96b26c82015-01-08 18:52:26 -0500212 /* the number of internal suspends */
213 unsigned internal_suspend_count;
214
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400215 struct dm_stats stats;
Keith Busch2eb6e1e2014-10-17 17:46:36 -0600216
217 struct kthread_worker kworker;
218 struct task_struct *kworker_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219};
220
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +0100221/*
222 * For mempools pre-allocation at the table loading time.
223 */
224struct dm_md_mempools {
225 mempool_t *io_pool;
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500226 mempool_t *rq_pool;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +0100227 struct bio_set *bs;
228};
229
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500230struct table_device {
231 struct list_head list;
232 atomic_t count;
233 struct dm_dev dm_dev;
234};
235
Mike Snitzer6cfa5852013-09-12 18:06:11 -0400236#define RESERVED_BIO_BASED_IOS 16
237#define RESERVED_REQUEST_BASED_IOS 256
Mike Snitzerf4790822013-09-12 18:06:12 -0400238#define RESERVED_MAX_IOS 1024
Christoph Lametere18b8902006-12-06 20:33:20 -0800239static struct kmem_cache *_io_cache;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000240static struct kmem_cache *_rq_tio_cache;
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500241static struct kmem_cache *_rq_cache;
Kent Overstreet94818742012-09-07 13:44:01 -0700242
Mike Snitzerf4790822013-09-12 18:06:12 -0400243/*
Mike Snitzere8603132013-09-12 18:06:12 -0400244 * Bio-based DM's mempools' reserved IOs set by the user.
245 */
246static unsigned reserved_bio_based_ios = RESERVED_BIO_BASED_IOS;
247
248/*
Mike Snitzerf4790822013-09-12 18:06:12 -0400249 * Request-based DM's mempools' reserved IOs set by the user.
250 */
251static unsigned reserved_rq_based_ios = RESERVED_REQUEST_BASED_IOS;
252
Mike Snitzer09c2d532015-02-27 22:25:26 -0500253static unsigned __dm_get_module_param(unsigned *module_param,
Mike Snitzerf4790822013-09-12 18:06:12 -0400254 unsigned def, unsigned max)
255{
Mike Snitzer09c2d532015-02-27 22:25:26 -0500256 unsigned param = ACCESS_ONCE(*module_param);
257 unsigned modified_param = 0;
Mike Snitzerf4790822013-09-12 18:06:12 -0400258
Mike Snitzer09c2d532015-02-27 22:25:26 -0500259 if (!param)
260 modified_param = def;
261 else if (param > max)
262 modified_param = max;
Mike Snitzerf4790822013-09-12 18:06:12 -0400263
Mike Snitzer09c2d532015-02-27 22:25:26 -0500264 if (modified_param) {
265 (void)cmpxchg(module_param, param, modified_param);
266 param = modified_param;
Mike Snitzerf4790822013-09-12 18:06:12 -0400267 }
268
Mike Snitzer09c2d532015-02-27 22:25:26 -0500269 return param;
Mike Snitzerf4790822013-09-12 18:06:12 -0400270}
271
Mike Snitzere8603132013-09-12 18:06:12 -0400272unsigned dm_get_reserved_bio_based_ios(void)
273{
Mike Snitzer09c2d532015-02-27 22:25:26 -0500274 return __dm_get_module_param(&reserved_bio_based_ios,
Mike Snitzere8603132013-09-12 18:06:12 -0400275 RESERVED_BIO_BASED_IOS, RESERVED_MAX_IOS);
276}
277EXPORT_SYMBOL_GPL(dm_get_reserved_bio_based_ios);
278
Mike Snitzerf4790822013-09-12 18:06:12 -0400279unsigned dm_get_reserved_rq_based_ios(void)
280{
Mike Snitzer09c2d532015-02-27 22:25:26 -0500281 return __dm_get_module_param(&reserved_rq_based_ios,
Mike Snitzerf4790822013-09-12 18:06:12 -0400282 RESERVED_REQUEST_BASED_IOS, RESERVED_MAX_IOS);
283}
284EXPORT_SYMBOL_GPL(dm_get_reserved_rq_based_ios);
285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286static int __init local_init(void)
287{
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100288 int r = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 /* allocate a slab for the dm_ios */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100291 _io_cache = KMEM_CACHE(dm_io, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 if (!_io_cache)
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100293 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000295 _rq_tio_cache = KMEM_CACHE(dm_rq_target_io, 0);
296 if (!_rq_tio_cache)
Mikulas Patockadba14162012-10-12 21:02:15 +0100297 goto out_free_io_cache;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000298
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500299 _rq_cache = kmem_cache_create("dm_clone_request", sizeof(struct request),
300 __alignof__(struct request), 0, NULL);
301 if (!_rq_cache)
302 goto out_free_rq_tio_cache;
303
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100304 r = dm_uevent_init();
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100305 if (r)
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500306 goto out_free_rq_cache;
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100307
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400308 deferred_remove_workqueue = alloc_workqueue("kdmremove", WQ_UNBOUND, 1);
309 if (!deferred_remove_workqueue) {
310 r = -ENOMEM;
311 goto out_uevent_exit;
312 }
313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 _major = major;
315 r = register_blkdev(_major, _name);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100316 if (r < 0)
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400317 goto out_free_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
319 if (!_major)
320 _major = r;
321
322 return 0;
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100323
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400324out_free_workqueue:
325 destroy_workqueue(deferred_remove_workqueue);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100326out_uevent_exit:
327 dm_uevent_exit();
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500328out_free_rq_cache:
329 kmem_cache_destroy(_rq_cache);
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000330out_free_rq_tio_cache:
331 kmem_cache_destroy(_rq_tio_cache);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100332out_free_io_cache:
333 kmem_cache_destroy(_io_cache);
334
335 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336}
337
338static void local_exit(void)
339{
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400340 flush_scheduled_work();
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400341 destroy_workqueue(deferred_remove_workqueue);
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400342
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500343 kmem_cache_destroy(_rq_cache);
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000344 kmem_cache_destroy(_rq_tio_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 kmem_cache_destroy(_io_cache);
Akinobu Mita00d59402007-07-17 04:03:46 -0700346 unregister_blkdev(_major, _name);
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100347 dm_uevent_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
349 _major = 0;
350
351 DMINFO("cleaned up");
352}
353
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000354static int (*_inits[])(void) __initdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 local_init,
356 dm_target_init,
357 dm_linear_init,
358 dm_stripe_init,
Mikulas Patocka952b3552009-12-10 23:51:57 +0000359 dm_io_init,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100360 dm_kcopyd_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 dm_interface_init,
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400362 dm_statistics_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363};
364
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000365static void (*_exits[])(void) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 local_exit,
367 dm_target_exit,
368 dm_linear_exit,
369 dm_stripe_exit,
Mikulas Patocka952b3552009-12-10 23:51:57 +0000370 dm_io_exit,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100371 dm_kcopyd_exit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 dm_interface_exit,
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400373 dm_statistics_exit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374};
375
376static int __init dm_init(void)
377{
378 const int count = ARRAY_SIZE(_inits);
379
380 int r, i;
381
382 for (i = 0; i < count; i++) {
383 r = _inits[i]();
384 if (r)
385 goto bad;
386 }
387
388 return 0;
389
390 bad:
391 while (i--)
392 _exits[i]();
393
394 return r;
395}
396
397static void __exit dm_exit(void)
398{
399 int i = ARRAY_SIZE(_exits);
400
401 while (i--)
402 _exits[i]();
Alasdair G Kergond15b7742011-08-02 12:32:01 +0100403
404 /*
405 * Should be empty by this point.
406 */
Alasdair G Kergond15b7742011-08-02 12:32:01 +0100407 idr_destroy(&_minor_idr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408}
409
410/*
411 * Block device functions
412 */
Mike Anderson432a2122009-12-10 23:52:20 +0000413int dm_deleting_md(struct mapped_device *md)
414{
415 return test_bit(DMF_DELETING, &md->flags);
416}
417
Al Virofe5f9f22008-03-02 10:29:31 -0500418static int dm_blk_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419{
420 struct mapped_device *md;
421
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700422 spin_lock(&_minor_lock);
423
Al Virofe5f9f22008-03-02 10:29:31 -0500424 md = bdev->bd_disk->private_data;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700425 if (!md)
426 goto out;
427
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700428 if (test_bit(DMF_FREEING, &md->flags) ||
Mike Anderson432a2122009-12-10 23:52:20 +0000429 dm_deleting_md(md)) {
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700430 md = NULL;
431 goto out;
432 }
433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 dm_get(md);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700435 atomic_inc(&md->open_count);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700436out:
437 spin_unlock(&_minor_lock);
438
439 return md ? 0 : -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440}
441
Al Virodb2a1442013-05-05 21:52:57 -0400442static void dm_blk_close(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443{
Mike Snitzer63a4f062015-03-23 17:01:43 -0400444 struct mapped_device *md;
Arnd Bergmann6e9624b2010-08-07 18:25:34 +0200445
Milan Broz4a1aeb92011-01-13 19:59:48 +0000446 spin_lock(&_minor_lock);
447
Mike Snitzer63a4f062015-03-23 17:01:43 -0400448 md = disk->private_data;
449 if (WARN_ON(!md))
450 goto out;
451
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400452 if (atomic_dec_and_test(&md->open_count) &&
453 (test_bit(DMF_DEFERRED_REMOVE, &md->flags)))
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400454 queue_work(deferred_remove_workqueue, &deferred_remove_work);
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 dm_put(md);
Mike Snitzer63a4f062015-03-23 17:01:43 -0400457out:
Milan Broz4a1aeb92011-01-13 19:59:48 +0000458 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459}
460
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700461int dm_open_count(struct mapped_device *md)
462{
463 return atomic_read(&md->open_count);
464}
465
466/*
467 * Guarantees nothing is using the device before it's deleted.
468 */
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400469int dm_lock_for_deletion(struct mapped_device *md, bool mark_deferred, bool only_deferred)
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700470{
471 int r = 0;
472
473 spin_lock(&_minor_lock);
474
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400475 if (dm_open_count(md)) {
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700476 r = -EBUSY;
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400477 if (mark_deferred)
478 set_bit(DMF_DEFERRED_REMOVE, &md->flags);
479 } else if (only_deferred && !test_bit(DMF_DEFERRED_REMOVE, &md->flags))
480 r = -EEXIST;
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700481 else
482 set_bit(DMF_DELETING, &md->flags);
483
484 spin_unlock(&_minor_lock);
485
486 return r;
487}
488
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400489int dm_cancel_deferred_remove(struct mapped_device *md)
490{
491 int r = 0;
492
493 spin_lock(&_minor_lock);
494
495 if (test_bit(DMF_DELETING, &md->flags))
496 r = -EBUSY;
497 else
498 clear_bit(DMF_DEFERRED_REMOVE, &md->flags);
499
500 spin_unlock(&_minor_lock);
501
502 return r;
503}
504
505static void do_deferred_remove(struct work_struct *w)
506{
507 dm_deferred_remove();
508}
509
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400510sector_t dm_get_size(struct mapped_device *md)
511{
512 return get_capacity(md->disk);
513}
514
Mike Snitzer9974fa22014-02-28 15:33:43 +0100515struct request_queue *dm_get_md_queue(struct mapped_device *md)
516{
517 return md->queue;
518}
519
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400520struct dm_stats *dm_get_stats(struct mapped_device *md)
521{
522 return &md->stats;
523}
524
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800525static int dm_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
526{
527 struct mapped_device *md = bdev->bd_disk->private_data;
528
529 return dm_get_geometry(md, geo);
530}
531
Al Virofe5f9f22008-03-02 10:29:31 -0500532static int dm_blk_ioctl(struct block_device *bdev, fmode_t mode,
Milan Brozaa129a22006-10-03 01:15:15 -0700533 unsigned int cmd, unsigned long arg)
534{
Al Virofe5f9f22008-03-02 10:29:31 -0500535 struct mapped_device *md = bdev->bd_disk->private_data;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100536 int srcu_idx;
Hannes Reinecke6c182cd2013-07-10 23:41:15 +0100537 struct dm_table *map;
Milan Brozaa129a22006-10-03 01:15:15 -0700538 struct dm_target *tgt;
539 int r = -ENOTTY;
540
Hannes Reinecke6c182cd2013-07-10 23:41:15 +0100541retry:
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100542 map = dm_get_live_table(md, &srcu_idx);
543
Milan Brozaa129a22006-10-03 01:15:15 -0700544 if (!map || !dm_table_get_size(map))
545 goto out;
546
547 /* We only support devices that have a single target */
548 if (dm_table_get_num_targets(map) != 1)
549 goto out;
550
551 tgt = dm_table_get_target(map, 0);
Mike Snitzer4d341d82014-11-16 14:21:47 -0500552 if (!tgt->type->ioctl)
553 goto out;
Milan Brozaa129a22006-10-03 01:15:15 -0700554
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +0000555 if (dm_suspended_md(md)) {
Milan Brozaa129a22006-10-03 01:15:15 -0700556 r = -EAGAIN;
557 goto out;
558 }
559
Mike Snitzer4d341d82014-11-16 14:21:47 -0500560 r = tgt->type->ioctl(tgt, cmd, arg);
Milan Brozaa129a22006-10-03 01:15:15 -0700561
562out:
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100563 dm_put_live_table(md, srcu_idx);
Milan Brozaa129a22006-10-03 01:15:15 -0700564
Hannes Reinecke6c182cd2013-07-10 23:41:15 +0100565 if (r == -ENOTCONN) {
566 msleep(10);
567 goto retry;
568 }
569
Milan Brozaa129a22006-10-03 01:15:15 -0700570 return r;
571}
572
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100573static struct dm_io *alloc_io(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574{
575 return mempool_alloc(md->io_pool, GFP_NOIO);
576}
577
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100578static void free_io(struct mapped_device *md, struct dm_io *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
580 mempool_free(io, md->io_pool);
581}
582
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100583static void free_tio(struct mapped_device *md, struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584{
Mikulas Patockadba14162012-10-12 21:02:15 +0100585 bio_put(&tio->clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586}
587
Kiyoshi Ueda08885642009-12-10 23:52:15 +0000588static struct dm_rq_target_io *alloc_rq_tio(struct mapped_device *md,
589 gfp_t gfp_mask)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100590{
Jun'ichi Nomura5f015202013-03-01 22:45:48 +0000591 return mempool_alloc(md->io_pool, gfp_mask);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100592}
593
594static void free_rq_tio(struct dm_rq_target_io *tio)
595{
Jun'ichi Nomura5f015202013-03-01 22:45:48 +0000596 mempool_free(tio, tio->md->io_pool);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100597}
598
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500599static struct request *alloc_clone_request(struct mapped_device *md,
600 gfp_t gfp_mask)
601{
602 return mempool_alloc(md->rq_pool, gfp_mask);
603}
604
605static void free_clone_request(struct mapped_device *md, struct request *rq)
606{
607 mempool_free(rq, md->rq_pool);
608}
609
Kiyoshi Ueda90abb8c2009-12-10 23:52:13 +0000610static int md_in_flight(struct mapped_device *md)
611{
612 return atomic_read(&md->pending[READ]) +
613 atomic_read(&md->pending[WRITE]);
614}
615
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800616static void start_io_acct(struct dm_io *io)
617{
618 struct mapped_device *md = io->md;
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400619 struct bio *bio = io->bio;
Tejun Heoc9959052008-08-25 19:47:21 +0900620 int cpu;
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400621 int rw = bio_data_dir(bio);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800622
623 io->start_time = jiffies;
624
Tejun Heo074a7ac2008-08-25 19:56:14 +0900625 cpu = part_stat_lock();
626 part_round_stats(cpu, &dm_disk(md)->part0);
627 part_stat_unlock();
Shaohua Li1e9bb882011-03-22 08:35:35 +0100628 atomic_set(&dm_disk(md)->part0.in_flight[rw],
629 atomic_inc_return(&md->pending[rw]));
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400630
631 if (unlikely(dm_stats_used(&md->stats)))
Kent Overstreet4f024f32013-10-11 15:44:27 -0700632 dm_stats_account_io(&md->stats, bio->bi_rw, bio->bi_iter.bi_sector,
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400633 bio_sectors(bio), false, 0, &io->stats_aux);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800634}
635
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000636static void end_io_acct(struct dm_io *io)
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800637{
638 struct mapped_device *md = io->md;
639 struct bio *bio = io->bio;
640 unsigned long duration = jiffies - io->start_time;
Gu Zheng18c0b222014-11-24 11:05:26 +0800641 int pending;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800642 int rw = bio_data_dir(bio);
643
Gu Zheng18c0b222014-11-24 11:05:26 +0800644 generic_end_io_acct(rw, &dm_disk(md)->part0, io->start_time);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800645
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400646 if (unlikely(dm_stats_used(&md->stats)))
Kent Overstreet4f024f32013-10-11 15:44:27 -0700647 dm_stats_account_io(&md->stats, bio->bi_rw, bio->bi_iter.bi_sector,
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400648 bio_sectors(bio), true, duration, &io->stats_aux);
649
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100650 /*
651 * After this is decremented the bio must not be touched if it is
Tejun Heod87f4c12010-09-03 11:56:19 +0200652 * a flush.
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100653 */
Shaohua Li1e9bb882011-03-22 08:35:35 +0100654 pending = atomic_dec_return(&md->pending[rw]);
655 atomic_set(&dm_disk(md)->part0.in_flight[rw], pending);
Nikanth Karthikesan316d3152009-10-06 20:16:55 +0200656 pending += atomic_read(&md->pending[rw^0x1]);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800657
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000658 /* nudge anyone waiting on suspend queue */
659 if (!pending)
660 wake_up(&md->wait);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800661}
662
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663/*
664 * Add the bio to the list of deferred io.
665 */
Mikulas Patocka92c63902009-04-09 00:27:15 +0100666static void queue_io(struct mapped_device *md, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667{
Kiyoshi Ueda054474202010-09-08 18:07:01 +0200668 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Kiyoshi Ueda054474202010-09-08 18:07:01 +0200670 spin_lock_irqsave(&md->deferred_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 bio_list_add(&md->deferred, bio);
Kiyoshi Ueda054474202010-09-08 18:07:01 +0200672 spin_unlock_irqrestore(&md->deferred_lock, flags);
Tejun Heo6a8736d2010-09-08 18:07:00 +0200673 queue_work(md->wq, &md->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674}
675
676/*
677 * Everyone (including functions in this file), should use this
678 * function to access the md->map field, and make sure they call
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100679 * dm_put_live_table() when finished.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 */
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100681struct dm_table *dm_get_live_table(struct mapped_device *md, int *srcu_idx) __acquires(md->io_barrier)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100683 *srcu_idx = srcu_read_lock(&md->io_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100685 return srcu_dereference(md->map, &md->io_barrier);
686}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100688void dm_put_live_table(struct mapped_device *md, int srcu_idx) __releases(md->io_barrier)
689{
690 srcu_read_unlock(&md->io_barrier, srcu_idx);
691}
692
693void dm_sync_table(struct mapped_device *md)
694{
695 synchronize_srcu(&md->io_barrier);
696 synchronize_rcu_expedited();
697}
698
699/*
700 * A fast alternative to dm_get_live_table/dm_put_live_table.
701 * The caller must not block between these two functions.
702 */
703static struct dm_table *dm_get_live_table_fast(struct mapped_device *md) __acquires(RCU)
704{
705 rcu_read_lock();
706 return rcu_dereference(md->map);
707}
708
709static void dm_put_live_table_fast(struct mapped_device *md) __releases(RCU)
710{
711 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712}
713
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800714/*
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500715 * Open a table device so we can use it as a map destination.
716 */
717static int open_table_device(struct table_device *td, dev_t dev,
718 struct mapped_device *md)
719{
720 static char *_claim_ptr = "I belong to device-mapper";
721 struct block_device *bdev;
722
723 int r;
724
725 BUG_ON(td->dm_dev.bdev);
726
727 bdev = blkdev_get_by_dev(dev, td->dm_dev.mode | FMODE_EXCL, _claim_ptr);
728 if (IS_ERR(bdev))
729 return PTR_ERR(bdev);
730
731 r = bd_link_disk_holder(bdev, dm_disk(md));
732 if (r) {
733 blkdev_put(bdev, td->dm_dev.mode | FMODE_EXCL);
734 return r;
735 }
736
737 td->dm_dev.bdev = bdev;
738 return 0;
739}
740
741/*
742 * Close a table device that we've been using.
743 */
744static void close_table_device(struct table_device *td, struct mapped_device *md)
745{
746 if (!td->dm_dev.bdev)
747 return;
748
749 bd_unlink_disk_holder(td->dm_dev.bdev, dm_disk(md));
750 blkdev_put(td->dm_dev.bdev, td->dm_dev.mode | FMODE_EXCL);
751 td->dm_dev.bdev = NULL;
752}
753
754static struct table_device *find_table_device(struct list_head *l, dev_t dev,
755 fmode_t mode) {
756 struct table_device *td;
757
758 list_for_each_entry(td, l, list)
759 if (td->dm_dev.bdev->bd_dev == dev && td->dm_dev.mode == mode)
760 return td;
761
762 return NULL;
763}
764
765int dm_get_table_device(struct mapped_device *md, dev_t dev, fmode_t mode,
766 struct dm_dev **result) {
767 int r;
768 struct table_device *td;
769
770 mutex_lock(&md->table_devices_lock);
771 td = find_table_device(&md->table_devices, dev, mode);
772 if (!td) {
773 td = kmalloc(sizeof(*td), GFP_KERNEL);
774 if (!td) {
775 mutex_unlock(&md->table_devices_lock);
776 return -ENOMEM;
777 }
778
779 td->dm_dev.mode = mode;
780 td->dm_dev.bdev = NULL;
781
782 if ((r = open_table_device(td, dev, md))) {
783 mutex_unlock(&md->table_devices_lock);
784 kfree(td);
785 return r;
786 }
787
788 format_dev_t(td->dm_dev.name, dev);
789
790 atomic_set(&td->count, 0);
791 list_add(&td->list, &md->table_devices);
792 }
793 atomic_inc(&td->count);
794 mutex_unlock(&md->table_devices_lock);
795
796 *result = &td->dm_dev;
797 return 0;
798}
799EXPORT_SYMBOL_GPL(dm_get_table_device);
800
801void dm_put_table_device(struct mapped_device *md, struct dm_dev *d)
802{
803 struct table_device *td = container_of(d, struct table_device, dm_dev);
804
805 mutex_lock(&md->table_devices_lock);
806 if (atomic_dec_and_test(&td->count)) {
807 close_table_device(td, md);
808 list_del(&td->list);
809 kfree(td);
810 }
811 mutex_unlock(&md->table_devices_lock);
812}
813EXPORT_SYMBOL(dm_put_table_device);
814
815static void free_table_devices(struct list_head *devices)
816{
817 struct list_head *tmp, *next;
818
819 list_for_each_safe(tmp, next, devices) {
820 struct table_device *td = list_entry(tmp, struct table_device, list);
821
822 DMWARN("dm_destroy: %s still exists with %d references",
823 td->dm_dev.name, atomic_read(&td->count));
824 kfree(td);
825 }
826}
827
828/*
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800829 * Get the geometry associated with a dm device
830 */
831int dm_get_geometry(struct mapped_device *md, struct hd_geometry *geo)
832{
833 *geo = md->geometry;
834
835 return 0;
836}
837
838/*
839 * Set the geometry of a device.
840 */
841int dm_set_geometry(struct mapped_device *md, struct hd_geometry *geo)
842{
843 sector_t sz = (sector_t)geo->cylinders * geo->heads * geo->sectors;
844
845 if (geo->start > sz) {
846 DMWARN("Start sector is beyond the geometry limits.");
847 return -EINVAL;
848 }
849
850 md->geometry = *geo;
851
852 return 0;
853}
854
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855/*-----------------------------------------------------------------
856 * CRUD START:
857 * A more elegant soln is in the works that uses the queue
858 * merge fn, unfortunately there are a couple of changes to
859 * the block layer that I want to make for this. So in the
860 * interests of getting something for people to use I give
861 * you this clearly demarcated crap.
862 *---------------------------------------------------------------*/
863
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800864static int __noflush_suspending(struct mapped_device *md)
865{
866 return test_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
867}
868
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869/*
870 * Decrements the number of outstanding ios that a bio has been
871 * cloned into, completing the original io if necc.
872 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800873static void dec_pending(struct dm_io *io, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874{
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800875 unsigned long flags;
Milan Brozb35f8ca2009-03-16 17:44:36 +0000876 int io_error;
877 struct bio *bio;
878 struct mapped_device *md = io->md;
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800879
880 /* Push-back supersedes any I/O errors */
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +0100881 if (unlikely(error)) {
882 spin_lock_irqsave(&io->endio_lock, flags);
883 if (!(io->error > 0 && __noflush_suspending(md)))
884 io->error = error;
885 spin_unlock_irqrestore(&io->endio_lock, flags);
886 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
888 if (atomic_dec_and_test(&io->io_count)) {
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800889 if (io->error == DM_ENDIO_REQUEUE) {
890 /*
891 * Target requested pushing back the I/O.
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800892 */
Mikulas Patocka022c2612009-04-02 19:55:39 +0100893 spin_lock_irqsave(&md->deferred_lock, flags);
Tejun Heo6a8736d2010-09-08 18:07:00 +0200894 if (__noflush_suspending(md))
895 bio_list_add_head(&md->deferred, io->bio);
896 else
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800897 /* noflush suspend was interrupted. */
898 io->error = -EIO;
Mikulas Patocka022c2612009-04-02 19:55:39 +0100899 spin_unlock_irqrestore(&md->deferred_lock, flags);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800900 }
901
Milan Brozb35f8ca2009-03-16 17:44:36 +0000902 io_error = io->error;
903 bio = io->bio;
Tejun Heo6a8736d2010-09-08 18:07:00 +0200904 end_io_acct(io);
905 free_io(md, io);
Jens Axboe2056a782006-03-23 20:00:26 +0100906
Tejun Heo6a8736d2010-09-08 18:07:00 +0200907 if (io_error == DM_ENDIO_REQUEUE)
908 return;
909
Kent Overstreet4f024f32013-10-11 15:44:27 -0700910 if ((bio->bi_rw & REQ_FLUSH) && bio->bi_iter.bi_size) {
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100911 /*
Tejun Heo6a8736d2010-09-08 18:07:00 +0200912 * Preflush done for flush with data, reissue
913 * without REQ_FLUSH.
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100914 */
Tejun Heo6a8736d2010-09-08 18:07:00 +0200915 bio->bi_rw &= ~REQ_FLUSH;
916 queue_io(md, bio);
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100917 } else {
Mike Snitzerb372d362010-09-08 18:07:01 +0200918 /* done with normal IO or empty flush */
Linus Torvalds0a82a8d2013-04-18 09:00:26 -0700919 trace_block_bio_complete(md->queue, bio, io_error);
Mike Snitzerb372d362010-09-08 18:07:01 +0200920 bio_endio(bio, io_error);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800921 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 }
923}
924
Mike Snitzer7eee4ae2014-06-02 15:50:06 -0400925static void disable_write_same(struct mapped_device *md)
926{
927 struct queue_limits *limits = dm_get_queue_limits(md);
928
929 /* device doesn't really support WRITE SAME, disable it */
930 limits->max_write_same_sectors = 0;
931}
932
NeilBrown6712ecf2007-09-27 12:47:43 +0200933static void clone_endio(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934{
zhendong chen5164bec2014-12-17 14:37:04 +0800935 int r = error;
Mikulas Patockabfc6d412014-03-04 18:24:49 -0500936 struct dm_target_io *tio = container_of(bio, struct dm_target_io, clone);
Milan Brozb35f8ca2009-03-16 17:44:36 +0000937 struct dm_io *io = tio->io;
Stefan Bader9faf4002006-10-03 01:15:41 -0700938 struct mapped_device *md = tio->io->md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 dm_endio_fn endio = tio->ti->type->end_io;
940
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 if (!bio_flagged(bio, BIO_UPTODATE) && !error)
942 error = -EIO;
943
944 if (endio) {
Mikulas Patocka7de3ee52012-12-21 20:23:41 +0000945 r = endio(tio->ti, bio, error);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800946 if (r < 0 || r == DM_ENDIO_REQUEUE)
947 /*
948 * error and requeue request are handled
949 * in dec_pending().
950 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 error = r;
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800952 else if (r == DM_ENDIO_INCOMPLETE)
953 /* The target will handle the io */
NeilBrown6712ecf2007-09-27 12:47:43 +0200954 return;
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800955 else if (r) {
956 DMWARN("unimplemented target endio return value: %d", r);
957 BUG();
958 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 }
960
Mike Snitzer7eee4ae2014-06-02 15:50:06 -0400961 if (unlikely(r == -EREMOTEIO && (bio->bi_rw & REQ_WRITE_SAME) &&
962 !bdev_get_queue(bio->bi_bdev)->limits.max_write_same_sectors))
963 disable_write_same(md);
964
Stefan Bader9faf4002006-10-03 01:15:41 -0700965 free_tio(md, tio);
Milan Brozb35f8ca2009-03-16 17:44:36 +0000966 dec_pending(io, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967}
968
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100969/*
970 * Partial completion handling for request-based dm
971 */
972static void end_clone_bio(struct bio *clone, int error)
973{
Mikulas Patockabfc6d412014-03-04 18:24:49 -0500974 struct dm_rq_clone_bio_info *info =
975 container_of(clone, struct dm_rq_clone_bio_info, clone);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100976 struct dm_rq_target_io *tio = info->tio;
977 struct bio *bio = info->orig;
Kent Overstreet4f024f32013-10-11 15:44:27 -0700978 unsigned int nr_bytes = info->orig->bi_iter.bi_size;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100979
980 bio_put(clone);
981
982 if (tio->error)
983 /*
984 * An error has already been detected on the request.
985 * Once error occurred, just let clone->end_io() handle
986 * the remainder.
987 */
988 return;
989 else if (error) {
990 /*
991 * Don't notice the error to the upper layer yet.
992 * The error handling decision is made by the target driver,
993 * when the request is completed.
994 */
995 tio->error = error;
996 return;
997 }
998
999 /*
1000 * I/O for the bio successfully completed.
1001 * Notice the data completion to the upper layer.
1002 */
1003
1004 /*
1005 * bios are processed from the head of the list.
1006 * So the completing bio should always be rq->bio.
1007 * If it's not, something wrong is happening.
1008 */
1009 if (tio->orig->bio != bio)
1010 DMERR("bio completion is going in the middle of the request");
1011
1012 /*
1013 * Update the original request.
1014 * Do not use blk_end_request() here, because it may complete
1015 * the original request before the clone, and break the ordering.
1016 */
1017 blk_update_request(tio->orig, 0, nr_bytes);
1018}
1019
1020/*
1021 * Don't touch any member of the md after calling this function because
1022 * the md may be freed in dm_put() at the end of this function.
1023 * Or do dm_get() before calling this function and dm_put() later.
1024 */
Keith Busch466d89a2014-10-17 17:46:37 -06001025static void rq_completed(struct mapped_device *md, int rw, bool run_queue)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001026{
Mike Snitzer9a0e6092015-02-24 11:03:22 -05001027 int nr_requests_pending;
1028
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00001029 atomic_dec(&md->pending[rw]);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001030
1031 /* nudge anyone waiting on suspend queue */
Mike Snitzer9a0e6092015-02-24 11:03:22 -05001032 nr_requests_pending = md_in_flight(md);
1033 if (!nr_requests_pending)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001034 wake_up(&md->wait);
1035
Jens Axboea8c32a52012-11-06 12:24:26 +01001036 /*
1037 * Run this off this callpath, as drivers could invoke end_io while
1038 * inside their request_fn (and holding the queue lock). Calling
1039 * back into ->request_fn() could deadlock attempting to grab the
1040 * queue lock again.
1041 */
Mike Snitzer9a0e6092015-02-24 11:03:22 -05001042 if (run_queue) {
1043 if (!nr_requests_pending ||
1044 (nr_requests_pending >= md->queue->nr_congestion_on))
1045 blk_run_queue_async(md->queue);
1046 }
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001047
1048 /*
1049 * dm_put() must be at the end of this function. See the comment above
1050 */
1051 dm_put(md);
1052}
1053
Kiyoshi Uedaa77e28c2009-09-04 20:40:16 +01001054static void free_rq_clone(struct request *clone)
1055{
1056 struct dm_rq_target_io *tio = clone->end_io_data;
1057
1058 blk_rq_unprep_clone(clone);
Mike Snitzere5863d92014-12-17 21:08:12 -05001059 if (clone->q && clone->q->mq_ops)
1060 tio->ti->type->release_clone_rq(clone);
1061 else
1062 free_clone_request(tio->md, clone);
Kiyoshi Uedaa77e28c2009-09-04 20:40:16 +01001063 free_rq_tio(tio);
1064}
1065
Kiyoshi Ueda980691e2009-12-10 23:52:17 +00001066/*
1067 * Complete the clone and the original request.
Keith Busch466d89a2014-10-17 17:46:37 -06001068 * Must be called without clone's queue lock held,
1069 * see end_clone_request() for more details.
Kiyoshi Ueda980691e2009-12-10 23:52:17 +00001070 */
1071static void dm_end_request(struct request *clone, int error)
1072{
1073 int rw = rq_data_dir(clone);
1074 struct dm_rq_target_io *tio = clone->end_io_data;
1075 struct mapped_device *md = tio->md;
1076 struct request *rq = tio->orig;
1077
Tejun Heo29e40132010-09-08 18:07:00 +02001078 if (rq->cmd_type == REQ_TYPE_BLOCK_PC) {
Kiyoshi Ueda980691e2009-12-10 23:52:17 +00001079 rq->errors = clone->errors;
1080 rq->resid_len = clone->resid_len;
1081
1082 if (rq->sense)
1083 /*
1084 * We are using the sense buffer of the original
1085 * request.
1086 * So setting the length of the sense data is enough.
1087 */
1088 rq->sense_len = clone->sense_len;
1089 }
1090
1091 free_rq_clone(clone);
Tejun Heo29e40132010-09-08 18:07:00 +02001092 blk_end_request_all(rq, error);
1093 rq_completed(md, rw, true);
Kiyoshi Ueda980691e2009-12-10 23:52:17 +00001094}
1095
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001096static void dm_unprep_request(struct request *rq)
1097{
Keith Busch466d89a2014-10-17 17:46:37 -06001098 struct dm_rq_target_io *tio = rq->special;
1099 struct request *clone = tio->clone;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001100
1101 rq->special = NULL;
1102 rq->cmd_flags &= ~REQ_DONTPREP;
1103
Mike Snitzere5863d92014-12-17 21:08:12 -05001104 if (clone)
1105 free_rq_clone(clone);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001106}
1107
1108/*
1109 * Requeue the original request of a clone.
1110 */
Keith Busch466d89a2014-10-17 17:46:37 -06001111static void dm_requeue_unmapped_original_request(struct mapped_device *md,
1112 struct request *rq)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001113{
Keith Busch466d89a2014-10-17 17:46:37 -06001114 int rw = rq_data_dir(rq);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001115 struct request_queue *q = rq->q;
1116 unsigned long flags;
1117
1118 dm_unprep_request(rq);
1119
1120 spin_lock_irqsave(q->queue_lock, flags);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001121 blk_requeue_request(q, rq);
1122 spin_unlock_irqrestore(q->queue_lock, flags);
1123
Keith Busch466d89a2014-10-17 17:46:37 -06001124 rq_completed(md, rw, false);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001125}
Keith Busch466d89a2014-10-17 17:46:37 -06001126
1127static void dm_requeue_unmapped_request(struct request *clone)
1128{
1129 struct dm_rq_target_io *tio = clone->end_io_data;
1130
1131 dm_requeue_unmapped_original_request(tio->md, tio->orig);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001132}
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001133
1134static void __stop_queue(struct request_queue *q)
1135{
1136 blk_stop_queue(q);
1137}
1138
1139static void stop_queue(struct request_queue *q)
1140{
1141 unsigned long flags;
1142
1143 spin_lock_irqsave(q->queue_lock, flags);
1144 __stop_queue(q);
1145 spin_unlock_irqrestore(q->queue_lock, flags);
1146}
1147
1148static void __start_queue(struct request_queue *q)
1149{
1150 if (blk_queue_stopped(q))
1151 blk_start_queue(q);
1152}
1153
1154static void start_queue(struct request_queue *q)
1155{
1156 unsigned long flags;
1157
1158 spin_lock_irqsave(q->queue_lock, flags);
1159 __start_queue(q);
1160 spin_unlock_irqrestore(q->queue_lock, flags);
1161}
1162
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001163static void dm_done(struct request *clone, int error, bool mapped)
1164{
1165 int r = error;
1166 struct dm_rq_target_io *tio = clone->end_io_data;
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001167 dm_request_endio_fn rq_end_io = NULL;
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001168
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001169 if (tio->ti) {
1170 rq_end_io = tio->ti->type->rq_end_io;
1171
1172 if (mapped && rq_end_io)
1173 r = rq_end_io(tio->ti, clone, error, &tio->info);
1174 }
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001175
Mike Snitzer7eee4ae2014-06-02 15:50:06 -04001176 if (unlikely(r == -EREMOTEIO && (clone->cmd_flags & REQ_WRITE_SAME) &&
1177 !clone->q->limits.max_write_same_sectors))
1178 disable_write_same(tio->md);
1179
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001180 if (r <= 0)
1181 /* The target wants to complete the I/O */
1182 dm_end_request(clone, r);
1183 else if (r == DM_ENDIO_INCOMPLETE)
1184 /* The target will handle the I/O */
1185 return;
1186 else if (r == DM_ENDIO_REQUEUE)
1187 /* The target wants to requeue the I/O */
1188 dm_requeue_unmapped_request(clone);
1189 else {
1190 DMWARN("unimplemented target endio return value: %d", r);
1191 BUG();
1192 }
1193}
1194
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001195/*
1196 * Request completion handler for request-based dm
1197 */
1198static void dm_softirq_done(struct request *rq)
1199{
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001200 bool mapped = true;
Keith Busch466d89a2014-10-17 17:46:37 -06001201 struct dm_rq_target_io *tio = rq->special;
1202 struct request *clone = tio->clone;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001203
Mike Snitzere5863d92014-12-17 21:08:12 -05001204 if (!clone) {
1205 blk_end_request_all(rq, tio->error);
1206 rq_completed(tio->md, rq_data_dir(rq), false);
1207 free_rq_tio(tio);
1208 return;
1209 }
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001210
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001211 if (rq->cmd_flags & REQ_FAILED)
1212 mapped = false;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001213
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001214 dm_done(clone, tio->error, mapped);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001215}
1216
1217/*
1218 * Complete the clone and the original request with the error status
1219 * through softirq context.
1220 */
Keith Busch466d89a2014-10-17 17:46:37 -06001221static void dm_complete_request(struct request *rq, int error)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001222{
Keith Busch466d89a2014-10-17 17:46:37 -06001223 struct dm_rq_target_io *tio = rq->special;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001224
1225 tio->error = error;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001226 blk_complete_request(rq);
1227}
1228
1229/*
1230 * Complete the not-mapped clone and the original request with the error status
1231 * through softirq context.
1232 * Target's rq_end_io() function isn't called.
Mike Snitzere5863d92014-12-17 21:08:12 -05001233 * This may be used when the target's map_rq() or clone_and_map_rq() functions fail.
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001234 */
Keith Busch466d89a2014-10-17 17:46:37 -06001235static void dm_kill_unmapped_request(struct request *rq, int error)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001236{
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001237 rq->cmd_flags |= REQ_FAILED;
Keith Busch466d89a2014-10-17 17:46:37 -06001238 dm_complete_request(rq, error);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001239}
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001240
1241/*
Keith Busch466d89a2014-10-17 17:46:37 -06001242 * Called with the clone's queue lock held
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001243 */
1244static void end_clone_request(struct request *clone, int error)
1245{
Keith Busch466d89a2014-10-17 17:46:37 -06001246 struct dm_rq_target_io *tio = clone->end_io_data;
1247
Mike Snitzere5863d92014-12-17 21:08:12 -05001248 if (!clone->q->mq_ops) {
1249 /*
1250 * For just cleaning up the information of the queue in which
1251 * the clone was dispatched.
1252 * The clone is *NOT* freed actually here because it is alloced
1253 * from dm own mempool (REQ_ALLOCED isn't set).
1254 */
1255 __blk_put_request(clone->q, clone);
1256 }
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001257
1258 /*
1259 * Actual request completion is done in a softirq context which doesn't
Keith Busch466d89a2014-10-17 17:46:37 -06001260 * hold the clone's queue lock. Otherwise, deadlock could occur because:
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001261 * - another request may be submitted by the upper level driver
1262 * of the stacking during the completion
1263 * - the submission which requires queue lock may be done
Keith Busch466d89a2014-10-17 17:46:37 -06001264 * against this clone's queue
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001265 */
Keith Busch466d89a2014-10-17 17:46:37 -06001266 dm_complete_request(tio->orig, error);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001267}
1268
Mike Snitzer56a67df2010-08-12 04:14:10 +01001269/*
1270 * Return maximum size of I/O possible at the supplied sector up to the current
1271 * target boundary.
1272 */
1273static sector_t max_io_len_target_boundary(sector_t sector, struct dm_target *ti)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274{
Mike Snitzer56a67df2010-08-12 04:14:10 +01001275 sector_t target_offset = dm_target_offset(ti, sector);
1276
1277 return ti->len - target_offset;
1278}
1279
1280static sector_t max_io_len(sector_t sector, struct dm_target *ti)
1281{
1282 sector_t len = max_io_len_target_boundary(sector, ti);
Mike Snitzer542f9032012-07-27 15:08:00 +01001283 sector_t offset, max_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
1285 /*
Mike Snitzer542f9032012-07-27 15:08:00 +01001286 * Does the target need to split even further?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 */
Mike Snitzer542f9032012-07-27 15:08:00 +01001288 if (ti->max_io_len) {
1289 offset = dm_target_offset(ti, sector);
1290 if (unlikely(ti->max_io_len & (ti->max_io_len - 1)))
1291 max_len = sector_div(offset, ti->max_io_len);
1292 else
1293 max_len = offset & (ti->max_io_len - 1);
1294 max_len = ti->max_io_len - max_len;
1295
1296 if (len > max_len)
1297 len = max_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 }
1299
1300 return len;
1301}
1302
Mike Snitzer542f9032012-07-27 15:08:00 +01001303int dm_set_target_max_io_len(struct dm_target *ti, sector_t len)
1304{
1305 if (len > UINT_MAX) {
1306 DMERR("Specified maximum size of target IO (%llu) exceeds limit (%u)",
1307 (unsigned long long)len, UINT_MAX);
1308 ti->error = "Maximum size of target IO is too large";
1309 return -EINVAL;
1310 }
1311
1312 ti->max_io_len = (uint32_t) len;
1313
1314 return 0;
1315}
1316EXPORT_SYMBOL_GPL(dm_set_target_max_io_len);
1317
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001318/*
1319 * A target may call dm_accept_partial_bio only from the map routine. It is
1320 * allowed for all bio types except REQ_FLUSH.
1321 *
1322 * dm_accept_partial_bio informs the dm that the target only wants to process
1323 * additional n_sectors sectors of the bio and the rest of the data should be
1324 * sent in a next bio.
1325 *
1326 * A diagram that explains the arithmetics:
1327 * +--------------------+---------------+-------+
1328 * | 1 | 2 | 3 |
1329 * +--------------------+---------------+-------+
1330 *
1331 * <-------------- *tio->len_ptr --------------->
1332 * <------- bi_size ------->
1333 * <-- n_sectors -->
1334 *
1335 * Region 1 was already iterated over with bio_advance or similar function.
1336 * (it may be empty if the target doesn't use bio_advance)
1337 * Region 2 is the remaining bio size that the target wants to process.
1338 * (it may be empty if region 1 is non-empty, although there is no reason
1339 * to make it empty)
1340 * The target requires that region 3 is to be sent in the next bio.
1341 *
1342 * If the target wants to receive multiple copies of the bio (via num_*bios, etc),
1343 * the partially processed part (the sum of regions 1+2) must be the same for all
1344 * copies of the bio.
1345 */
1346void dm_accept_partial_bio(struct bio *bio, unsigned n_sectors)
1347{
1348 struct dm_target_io *tio = container_of(bio, struct dm_target_io, clone);
1349 unsigned bi_size = bio->bi_iter.bi_size >> SECTOR_SHIFT;
1350 BUG_ON(bio->bi_rw & REQ_FLUSH);
1351 BUG_ON(bi_size > *tio->len_ptr);
1352 BUG_ON(n_sectors > bi_size);
1353 *tio->len_ptr -= bi_size - n_sectors;
1354 bio->bi_iter.bi_size = n_sectors << SECTOR_SHIFT;
1355}
1356EXPORT_SYMBOL_GPL(dm_accept_partial_bio);
1357
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001358static void __map_bio(struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359{
1360 int r;
Jens Axboe2056a782006-03-23 20:00:26 +01001361 sector_t sector;
Stefan Bader9faf4002006-10-03 01:15:41 -07001362 struct mapped_device *md;
Mikulas Patockadba14162012-10-12 21:02:15 +01001363 struct bio *clone = &tio->clone;
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001364 struct dm_target *ti = tio->ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 clone->bi_end_io = clone_endio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
1368 /*
1369 * Map the clone. If r == 0 we don't need to do
1370 * anything, the target has assumed ownership of
1371 * this io.
1372 */
1373 atomic_inc(&tio->io->io_count);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001374 sector = clone->bi_iter.bi_sector;
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00001375 r = ti->type->map(ti, clone);
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -08001376 if (r == DM_MAPIO_REMAPPED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 /* the bio has been remapped so dispatch it */
Jens Axboe2056a782006-03-23 20:00:26 +01001378
Mike Snitzerd07335e2010-11-16 12:52:38 +01001379 trace_block_bio_remap(bdev_get_queue(clone->bi_bdev), clone,
1380 tio->io->bio->bi_bdev->bd_dev, sector);
Jens Axboe2056a782006-03-23 20:00:26 +01001381
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 generic_make_request(clone);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001383 } else if (r < 0 || r == DM_MAPIO_REQUEUE) {
1384 /* error the io and bail out, or requeue it if needed */
Stefan Bader9faf4002006-10-03 01:15:41 -07001385 md = tio->io->md;
1386 dec_pending(tio->io, r);
Stefan Bader9faf4002006-10-03 01:15:41 -07001387 free_tio(md, tio);
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -08001388 } else if (r) {
1389 DMWARN("unimplemented target map return value: %d", r);
1390 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 }
1392}
1393
1394struct clone_info {
1395 struct mapped_device *md;
1396 struct dm_table *map;
1397 struct bio *bio;
1398 struct dm_io *io;
1399 sector_t sector;
Mikulas Patockae0d66092014-03-14 18:40:39 -04001400 unsigned sector_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401};
1402
Mikulas Patockae0d66092014-03-14 18:40:39 -04001403static void bio_setup_sector(struct bio *bio, sector_t sector, unsigned len)
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001404{
Kent Overstreet4f024f32013-10-11 15:44:27 -07001405 bio->bi_iter.bi_sector = sector;
1406 bio->bi_iter.bi_size = to_bytes(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407}
1408
1409/*
1410 * Creates a bio that consists of range of complete bvecs.
1411 */
Mikulas Patockadba14162012-10-12 21:02:15 +01001412static void clone_bio(struct dm_target_io *tio, struct bio *bio,
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001413 sector_t sector, unsigned len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414{
Mikulas Patockadba14162012-10-12 21:02:15 +01001415 struct bio *clone = &tio->clone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001417 __bio_clone_fast(clone, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001419 if (bio_integrity(bio))
1420 bio_integrity_clone(clone, bio, GFP_NOIO);
1421
1422 bio_advance(clone, to_bytes(sector - clone->bi_iter.bi_sector));
1423 clone->bi_iter.bi_size = to_bytes(len);
1424
1425 if (bio_integrity(bio))
1426 bio_integrity_trim(clone, 0, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427}
1428
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001429static struct dm_target_io *alloc_tio(struct clone_info *ci,
Junichi Nomura99778272014-10-03 11:55:16 +00001430 struct dm_target *ti,
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001431 unsigned target_bio_nr)
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001432{
Mikulas Patockadba14162012-10-12 21:02:15 +01001433 struct dm_target_io *tio;
1434 struct bio *clone;
1435
Junichi Nomura99778272014-10-03 11:55:16 +00001436 clone = bio_alloc_bioset(GFP_NOIO, 0, ci->md->bs);
Mikulas Patockadba14162012-10-12 21:02:15 +01001437 tio = container_of(clone, struct dm_target_io, clone);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001438
1439 tio->io = ci->io;
1440 tio->ti = ti;
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001441 tio->target_bio_nr = target_bio_nr;
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001442
1443 return tio;
1444}
1445
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001446static void __clone_and_map_simple_bio(struct clone_info *ci,
1447 struct dm_target *ti,
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001448 unsigned target_bio_nr, unsigned *len)
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001449{
Junichi Nomura99778272014-10-03 11:55:16 +00001450 struct dm_target_io *tio = alloc_tio(ci, ti, target_bio_nr);
Mikulas Patockadba14162012-10-12 21:02:15 +01001451 struct bio *clone = &tio->clone;
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001452
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001453 tio->len_ptr = len;
1454
Junichi Nomura99778272014-10-03 11:55:16 +00001455 __bio_clone_fast(clone, ci->bio);
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001456 if (len)
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001457 bio_setup_sector(clone, ci->sector, *len);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001458
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001459 __map_bio(tio);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001460}
1461
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001462static void __send_duplicate_bios(struct clone_info *ci, struct dm_target *ti,
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001463 unsigned num_bios, unsigned *len)
Mike Snitzer06a426c2010-08-12 04:14:09 +01001464{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001465 unsigned target_bio_nr;
Mike Snitzer06a426c2010-08-12 04:14:09 +01001466
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001467 for (target_bio_nr = 0; target_bio_nr < num_bios; target_bio_nr++)
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001468 __clone_and_map_simple_bio(ci, ti, target_bio_nr, len);
Mike Snitzer06a426c2010-08-12 04:14:09 +01001469}
1470
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001471static int __send_empty_flush(struct clone_info *ci)
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001472{
Mike Snitzer06a426c2010-08-12 04:14:09 +01001473 unsigned target_nr = 0;
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001474 struct dm_target *ti;
1475
Mike Snitzerb372d362010-09-08 18:07:01 +02001476 BUG_ON(bio_has_data(ci->bio));
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001477 while ((ti = dm_table_get_target(ci->map, target_nr++)))
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001478 __send_duplicate_bios(ci, ti, ti->num_flush_bios, NULL);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001479
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001480 return 0;
1481}
1482
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001483static void __clone_and_map_data_bio(struct clone_info *ci, struct dm_target *ti,
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001484 sector_t sector, unsigned *len)
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001485{
Mikulas Patockadba14162012-10-12 21:02:15 +01001486 struct bio *bio = ci->bio;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001487 struct dm_target_io *tio;
Alasdair G Kergonb0d8ed42013-03-01 22:45:49 +00001488 unsigned target_bio_nr;
1489 unsigned num_target_bios = 1;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001490
Alasdair G Kergonb0d8ed42013-03-01 22:45:49 +00001491 /*
1492 * Does the target want to receive duplicate copies of the bio?
1493 */
1494 if (bio_data_dir(bio) == WRITE && ti->num_write_bios)
1495 num_target_bios = ti->num_write_bios(ti, bio);
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001496
Alasdair G Kergonb0d8ed42013-03-01 22:45:49 +00001497 for (target_bio_nr = 0; target_bio_nr < num_target_bios; target_bio_nr++) {
Junichi Nomura99778272014-10-03 11:55:16 +00001498 tio = alloc_tio(ci, ti, target_bio_nr);
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001499 tio->len_ptr = len;
1500 clone_bio(tio, bio, sector, *len);
Alasdair G Kergonb0d8ed42013-03-01 22:45:49 +00001501 __map_bio(tio);
1502 }
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001503}
1504
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001505typedef unsigned (*get_num_bios_fn)(struct dm_target *ti);
Mike Snitzer23508a92012-12-21 20:23:37 +00001506
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001507static unsigned get_num_discard_bios(struct dm_target *ti)
Mike Snitzer23508a92012-12-21 20:23:37 +00001508{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001509 return ti->num_discard_bios;
Mike Snitzer23508a92012-12-21 20:23:37 +00001510}
1511
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001512static unsigned get_num_write_same_bios(struct dm_target *ti)
Mike Snitzer23508a92012-12-21 20:23:37 +00001513{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001514 return ti->num_write_same_bios;
Mike Snitzer23508a92012-12-21 20:23:37 +00001515}
1516
1517typedef bool (*is_split_required_fn)(struct dm_target *ti);
1518
1519static bool is_split_required_for_discard(struct dm_target *ti)
1520{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001521 return ti->split_discard_bios;
Mike Snitzer23508a92012-12-21 20:23:37 +00001522}
1523
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001524static int __send_changing_extent_only(struct clone_info *ci,
1525 get_num_bios_fn get_num_bios,
1526 is_split_required_fn is_split_required)
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001527{
1528 struct dm_target *ti;
Mikulas Patockae0d66092014-03-14 18:40:39 -04001529 unsigned len;
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001530 unsigned num_bios;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001531
Mike Snitzera79245b2010-08-12 04:14:24 +01001532 do {
1533 ti = dm_table_find_target(ci->map, ci->sector);
1534 if (!dm_target_is_valid(ti))
1535 return -EIO;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001536
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001537 /*
Mike Snitzer23508a92012-12-21 20:23:37 +00001538 * Even though the device advertised support for this type of
1539 * request, that does not mean every target supports it, and
Mike Snitzer936688d2011-08-02 12:32:01 +01001540 * reconfiguration might also have changed that since the
Mike Snitzera79245b2010-08-12 04:14:24 +01001541 * check was performed.
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001542 */
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001543 num_bios = get_num_bios ? get_num_bios(ti) : 0;
1544 if (!num_bios)
Mike Snitzera79245b2010-08-12 04:14:24 +01001545 return -EOPNOTSUPP;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001546
Mike Snitzer23508a92012-12-21 20:23:37 +00001547 if (is_split_required && !is_split_required(ti))
Mikulas Patockae0d66092014-03-14 18:40:39 -04001548 len = min((sector_t)ci->sector_count, max_io_len_target_boundary(ci->sector, ti));
Mikulas Patocka7acf0272012-07-27 15:08:03 +01001549 else
Mikulas Patockae0d66092014-03-14 18:40:39 -04001550 len = min((sector_t)ci->sector_count, max_io_len(ci->sector, ti));
Mike Snitzer06a426c2010-08-12 04:14:09 +01001551
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001552 __send_duplicate_bios(ci, ti, num_bios, &len);
Mike Snitzera79245b2010-08-12 04:14:24 +01001553
1554 ci->sector += len;
1555 } while (ci->sector_count -= len);
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001556
1557 return 0;
1558}
1559
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001560static int __send_discard(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_discard_bios,
1563 is_split_required_for_discard);
Mike Snitzer23508a92012-12-21 20:23:37 +00001564}
1565
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001566static int __send_write_same(struct clone_info *ci)
Mike Snitzer23508a92012-12-21 20:23:37 +00001567{
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001568 return __send_changing_extent_only(ci, get_num_write_same_bios, NULL);
Mike Snitzer23508a92012-12-21 20:23:37 +00001569}
1570
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001571/*
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001572 * Select the correct strategy for processing a non-flush bio.
1573 */
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001574static int __split_and_process_non_flush(struct clone_info *ci)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575{
Mikulas Patockadba14162012-10-12 21:02:15 +01001576 struct bio *bio = ci->bio;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001577 struct dm_target *ti;
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001578 unsigned len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001580 if (unlikely(bio->bi_rw & REQ_DISCARD))
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001581 return __send_discard(ci);
Mike Snitzer23508a92012-12-21 20:23:37 +00001582 else if (unlikely(bio->bi_rw & REQ_WRITE_SAME))
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001583 return __send_write_same(ci);
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001584
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001585 ti = dm_table_find_target(ci->map, ci->sector);
1586 if (!dm_target_is_valid(ti))
1587 return -EIO;
1588
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001589 len = min_t(sector_t, max_io_len(ci->sector, ti), ci->sector_count);
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001590
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001591 __clone_and_map_data_bio(ci, ti, ci->sector, &len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001593 ci->sector += len;
1594 ci->sector_count -= len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001596 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597}
1598
1599/*
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001600 * Entry point to split a bio into clones and submit them to the targets.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 */
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001602static void __split_and_process_bio(struct mapped_device *md,
1603 struct dm_table *map, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604{
1605 struct clone_info ci;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001606 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001608 if (unlikely(!map)) {
Tejun Heo6a8736d2010-09-08 18:07:00 +02001609 bio_io_error(bio);
Mikulas Patockaf0b9a452009-04-02 19:55:38 +01001610 return;
1611 }
Mikulas Patocka692d0eb2009-04-09 00:27:13 +01001612
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001613 ci.map = map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 ci.md = md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 ci.io = alloc_io(md);
1616 ci.io->error = 0;
1617 atomic_set(&ci.io->io_count, 1);
1618 ci.io->bio = bio;
1619 ci.io->md = md;
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +01001620 spin_lock_init(&ci.io->endio_lock);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001621 ci.sector = bio->bi_iter.bi_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -08001623 start_io_acct(ci.io);
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001624
Mike Snitzerb372d362010-09-08 18:07:01 +02001625 if (bio->bi_rw & REQ_FLUSH) {
1626 ci.bio = &ci.md->flush_bio;
1627 ci.sector_count = 0;
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001628 error = __send_empty_flush(&ci);
Mike Snitzerb372d362010-09-08 18:07:01 +02001629 /* dec_pending submits any data associated with flush */
1630 } else {
Tejun Heo6a8736d2010-09-08 18:07:00 +02001631 ci.bio = bio;
Tejun Heod87f4c12010-09-03 11:56:19 +02001632 ci.sector_count = bio_sectors(bio);
Mike Snitzerb372d362010-09-08 18:07:01 +02001633 while (ci.sector_count && !error)
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001634 error = __split_and_process_non_flush(&ci);
Tejun Heod87f4c12010-09-03 11:56:19 +02001635 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636
1637 /* drop the extra reference count */
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001638 dec_pending(ci.io, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639}
1640/*-----------------------------------------------------------------
1641 * CRUD END
1642 *---------------------------------------------------------------*/
1643
Milan Brozf6fccb12008-07-21 12:00:37 +01001644static int dm_merge_bvec(struct request_queue *q,
1645 struct bvec_merge_data *bvm,
1646 struct bio_vec *biovec)
1647{
1648 struct mapped_device *md = q->queuedata;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001649 struct dm_table *map = dm_get_live_table_fast(md);
Milan Brozf6fccb12008-07-21 12:00:37 +01001650 struct dm_target *ti;
1651 sector_t max_sectors;
Mikulas Patocka50371082008-10-01 14:39:17 +01001652 int max_size = 0;
Milan Brozf6fccb12008-07-21 12:00:37 +01001653
1654 if (unlikely(!map))
Mikulas Patocka50371082008-10-01 14:39:17 +01001655 goto out;
Milan Brozf6fccb12008-07-21 12:00:37 +01001656
1657 ti = dm_table_find_target(map, bvm->bi_sector);
Mikulas Patockab01cd5a2008-10-01 14:39:24 +01001658 if (!dm_target_is_valid(ti))
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001659 goto out;
Milan Brozf6fccb12008-07-21 12:00:37 +01001660
1661 /*
1662 * Find maximum amount of I/O that won't need splitting
1663 */
Mike Snitzer56a67df2010-08-12 04:14:10 +01001664 max_sectors = min(max_io_len(bvm->bi_sector, ti),
Mike Snitzer148e51b2014-10-09 19:32:22 -04001665 (sector_t) queue_max_sectors(q));
Milan Brozf6fccb12008-07-21 12:00:37 +01001666 max_size = (max_sectors << SECTOR_SHIFT) - bvm->bi_size;
Mike Snitzer148e51b2014-10-09 19:32:22 -04001667 if (unlikely(max_size < 0)) /* this shouldn't _ever_ happen */
Milan Brozf6fccb12008-07-21 12:00:37 +01001668 max_size = 0;
1669
1670 /*
1671 * merge_bvec_fn() returns number of bytes
1672 * it can accept at this offset
1673 * max is precomputed maximal io size
1674 */
1675 if (max_size && ti->type->merge)
1676 max_size = ti->type->merge(ti, bvm, biovec, max_size);
Mikulas Patocka8cbeb672009-06-22 10:12:14 +01001677 /*
1678 * If the target doesn't support merge method and some of the devices
Mike Snitzer148e51b2014-10-09 19:32:22 -04001679 * provided their merge_bvec method (we know this by looking for the
1680 * max_hw_sectors that dm_set_device_limits may set), then we can't
1681 * allow bios with multiple vector entries. So always set max_size
1682 * to 0, and the code below allows just one page.
Mikulas Patocka8cbeb672009-06-22 10:12:14 +01001683 */
1684 else if (queue_max_hw_sectors(q) <= PAGE_SIZE >> 9)
Mikulas Patocka8cbeb672009-06-22 10:12:14 +01001685 max_size = 0;
Milan Brozf6fccb12008-07-21 12:00:37 +01001686
Mikulas Patocka50371082008-10-01 14:39:17 +01001687out:
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001688 dm_put_live_table_fast(md);
Milan Brozf6fccb12008-07-21 12:00:37 +01001689 /*
1690 * Always allow an entire first page
1691 */
1692 if (max_size <= biovec->bv_len && !(bvm->bi_size >> SECTOR_SHIFT))
1693 max_size = biovec->bv_len;
1694
Milan Brozf6fccb12008-07-21 12:00:37 +01001695 return max_size;
1696}
1697
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698/*
1699 * The request function that just remaps the bio built up by
1700 * dm_merge_bvec.
1701 */
Mike Snitzerff36ab32015-02-23 17:56:37 -05001702static void dm_make_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703{
Kevin Corry12f03a42006-02-01 03:04:52 -08001704 int rw = bio_data_dir(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 struct mapped_device *md = q->queuedata;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001706 int srcu_idx;
1707 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001709 map = dm_get_live_table(md, &srcu_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710
Gu Zheng18c0b222014-11-24 11:05:26 +08001711 generic_start_io_acct(rw, bio_sectors(bio), &dm_disk(md)->part0);
Kevin Corry12f03a42006-02-01 03:04:52 -08001712
Tejun Heo6a8736d2010-09-08 18:07:00 +02001713 /* if we're suspended, we have to queue this io for later */
1714 if (unlikely(test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags))) {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001715 dm_put_live_table(md, srcu_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716
Tejun Heo6a8736d2010-09-08 18:07:00 +02001717 if (bio_rw(bio) != READA)
1718 queue_io(md, bio);
1719 else
Alasdair G Kergon54d9a1b2009-04-09 00:27:14 +01001720 bio_io_error(bio);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001721 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 }
1723
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001724 __split_and_process_bio(md, map, bio);
1725 dm_put_live_table(md, srcu_idx);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001726 return;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001727}
1728
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04001729int dm_request_based(struct mapped_device *md)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001730{
1731 return blk_queue_stackable(md->queue);
1732}
1733
Keith Busch466d89a2014-10-17 17:46:37 -06001734static void dm_dispatch_clone_request(struct request *clone, struct request *rq)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001735{
1736 int r;
1737
Keith Busch466d89a2014-10-17 17:46:37 -06001738 if (blk_queue_io_stat(clone->q))
1739 clone->cmd_flags |= REQ_IO_STAT;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001740
Keith Busch466d89a2014-10-17 17:46:37 -06001741 clone->start_time = jiffies;
1742 r = blk_insert_cloned_request(clone->q, clone);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001743 if (r)
Keith Busch466d89a2014-10-17 17:46:37 -06001744 /* must complete clone in terms of original request */
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001745 dm_complete_request(rq, r);
1746}
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001747
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001748static int dm_rq_bio_constructor(struct bio *bio, struct bio *bio_orig,
1749 void *data)
1750{
1751 struct dm_rq_target_io *tio = data;
Kent Overstreet94818742012-09-07 13:44:01 -07001752 struct dm_rq_clone_bio_info *info =
1753 container_of(bio, struct dm_rq_clone_bio_info, clone);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001754
1755 info->orig = bio_orig;
1756 info->tio = tio;
1757 bio->bi_end_io = end_clone_bio;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001758
1759 return 0;
1760}
1761
1762static int setup_clone(struct request *clone, struct request *rq,
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05001763 struct dm_rq_target_io *tio, gfp_t gfp_mask)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001764{
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00001765 int r;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001766
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05001767 r = blk_rq_prep_clone(clone, rq, tio->md->bs, gfp_mask,
Tejun Heo29e40132010-09-08 18:07:00 +02001768 dm_rq_bio_constructor, tio);
1769 if (r)
1770 return r;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001771
Tejun Heo29e40132010-09-08 18:07:00 +02001772 clone->cmd = rq->cmd;
1773 clone->cmd_len = rq->cmd_len;
1774 clone->sense = rq->sense;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001775 clone->end_io = end_clone_request;
1776 clone->end_io_data = tio;
1777
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05001778 tio->clone = clone;
1779
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001780 return 0;
1781}
1782
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001783static struct request *clone_rq(struct request *rq, struct mapped_device *md,
Keith Busch466d89a2014-10-17 17:46:37 -06001784 struct dm_rq_target_io *tio, gfp_t gfp_mask)
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001785{
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05001786 struct request *clone = alloc_clone_request(md, gfp_mask);
1787
1788 if (!clone)
1789 return NULL;
1790
1791 blk_rq_init(NULL, clone);
1792 if (setup_clone(clone, rq, tio, gfp_mask)) {
1793 /* -ENOMEM */
1794 free_clone_request(md, clone);
1795 return NULL;
1796 }
1797
1798 return clone;
1799}
1800
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001801static void map_tio_request(struct kthread_work *work);
1802
Keith Busch466d89a2014-10-17 17:46:37 -06001803static struct dm_rq_target_io *prep_tio(struct request *rq,
1804 struct mapped_device *md, gfp_t gfp_mask)
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001805{
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001806 struct dm_rq_target_io *tio;
Mike Snitzere5863d92014-12-17 21:08:12 -05001807 int srcu_idx;
1808 struct dm_table *table;
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001809
1810 tio = alloc_rq_tio(md, gfp_mask);
1811 if (!tio)
1812 return NULL;
1813
1814 tio->md = md;
1815 tio->ti = NULL;
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05001816 tio->clone = NULL;
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001817 tio->orig = rq;
1818 tio->error = 0;
1819 memset(&tio->info, 0, sizeof(tio->info));
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001820 init_kthread_work(&tio->work, map_tio_request);
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001821
Mike Snitzere5863d92014-12-17 21:08:12 -05001822 table = dm_get_live_table(md, &srcu_idx);
1823 if (!dm_table_mq_request_based(table)) {
1824 if (!clone_rq(rq, md, tio, gfp_mask)) {
1825 dm_put_live_table(md, srcu_idx);
1826 free_rq_tio(tio);
1827 return NULL;
1828 }
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001829 }
Mike Snitzere5863d92014-12-17 21:08:12 -05001830 dm_put_live_table(md, srcu_idx);
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001831
Keith Busch466d89a2014-10-17 17:46:37 -06001832 return tio;
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001833}
1834
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001835/*
1836 * Called with the queue lock held.
1837 */
1838static int dm_prep_fn(struct request_queue *q, struct request *rq)
1839{
1840 struct mapped_device *md = q->queuedata;
Keith Busch466d89a2014-10-17 17:46:37 -06001841 struct dm_rq_target_io *tio;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001842
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001843 if (unlikely(rq->special)) {
1844 DMWARN("Already has something in rq->special.");
1845 return BLKPREP_KILL;
1846 }
1847
Keith Busch466d89a2014-10-17 17:46:37 -06001848 tio = prep_tio(rq, md, GFP_ATOMIC);
1849 if (!tio)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001850 return BLKPREP_DEFER;
1851
Keith Busch466d89a2014-10-17 17:46:37 -06001852 rq->special = tio;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001853 rq->cmd_flags |= REQ_DONTPREP;
1854
1855 return BLKPREP_OK;
1856}
1857
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001858/*
1859 * Returns:
Mike Snitzere5863d92014-12-17 21:08:12 -05001860 * 0 : the request has been processed
1861 * DM_MAPIO_REQUEUE : the original request needs to be requeued
1862 * < 0 : the request was completed due to failure
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001863 */
Keith Busch466d89a2014-10-17 17:46:37 -06001864static int map_request(struct dm_target *ti, struct request *rq,
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001865 struct mapped_device *md)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001866{
Mike Snitzere5863d92014-12-17 21:08:12 -05001867 int r;
Keith Busch466d89a2014-10-17 17:46:37 -06001868 struct dm_rq_target_io *tio = rq->special;
Mike Snitzere5863d92014-12-17 21:08:12 -05001869 struct request *clone = NULL;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001870
Mike Snitzere5863d92014-12-17 21:08:12 -05001871 if (tio->clone) {
1872 clone = tio->clone;
1873 r = ti->type->map_rq(ti, clone, &tio->info);
1874 } else {
1875 r = ti->type->clone_and_map_rq(ti, rq, &tio->info, &clone);
1876 if (r < 0) {
1877 /* The target wants to complete the I/O */
1878 dm_kill_unmapped_request(rq, r);
1879 return r;
1880 }
1881 if (IS_ERR(clone))
1882 return DM_MAPIO_REQUEUE;
1883 if (setup_clone(clone, rq, tio, GFP_KERNEL)) {
1884 /* -ENOMEM */
1885 ti->type->release_clone_rq(clone);
1886 return DM_MAPIO_REQUEUE;
1887 }
1888 }
1889
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001890 switch (r) {
1891 case DM_MAPIO_SUBMITTED:
1892 /* The target has taken the I/O to submit by itself later */
1893 break;
1894 case DM_MAPIO_REMAPPED:
1895 /* The target has remapped the I/O so dispatch it */
Jun'ichi Nomura6db4ccd2009-12-10 23:52:25 +00001896 trace_block_rq_remap(clone->q, clone, disk_devt(dm_disk(md)),
Keith Busch466d89a2014-10-17 17:46:37 -06001897 blk_rq_pos(rq));
1898 dm_dispatch_clone_request(clone, rq);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001899 break;
1900 case DM_MAPIO_REQUEUE:
1901 /* The target wants to requeue the I/O */
1902 dm_requeue_unmapped_request(clone);
1903 break;
1904 default:
1905 if (r > 0) {
1906 DMWARN("unimplemented target map return value: %d", r);
1907 BUG();
1908 }
1909
1910 /* The target wants to complete the I/O */
Keith Busch466d89a2014-10-17 17:46:37 -06001911 dm_kill_unmapped_request(rq, r);
Mike Snitzere5863d92014-12-17 21:08:12 -05001912 return r;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001913 }
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001914
Mike Snitzere5863d92014-12-17 21:08:12 -05001915 return 0;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001916}
1917
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001918static void map_tio_request(struct kthread_work *work)
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001919{
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001920 struct dm_rq_target_io *tio = container_of(work, struct dm_rq_target_io, work);
Mike Snitzere5863d92014-12-17 21:08:12 -05001921 struct request *rq = tio->orig;
1922 struct mapped_device *md = tio->md;
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001923
Mike Snitzere5863d92014-12-17 21:08:12 -05001924 if (map_request(tio->ti, rq, md) == DM_MAPIO_REQUEUE)
1925 dm_requeue_unmapped_original_request(md, rq);
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001926}
1927
Keith Busch466d89a2014-10-17 17:46:37 -06001928static void dm_start_request(struct mapped_device *md, struct request *orig)
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001929{
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001930 blk_start_request(orig);
Keith Busch466d89a2014-10-17 17:46:37 -06001931 atomic_inc(&md->pending[rq_data_dir(orig)]);
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001932
1933 /*
1934 * Hold the md reference here for the in-flight I/O.
1935 * We can't rely on the reference count by device opener,
1936 * because the device may be closed during the request completion
1937 * when all bios are completed.
1938 * See the comment in rq_completed() too.
1939 */
1940 dm_get(md);
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001941}
1942
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001943/*
1944 * q->request_fn for request-based dm.
1945 * Called with the queue lock held.
1946 */
1947static void dm_request_fn(struct request_queue *q)
1948{
1949 struct mapped_device *md = q->queuedata;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001950 int srcu_idx;
1951 struct dm_table *map = dm_get_live_table(md, &srcu_idx);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001952 struct dm_target *ti;
Keith Busch466d89a2014-10-17 17:46:37 -06001953 struct request *rq;
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001954 struct dm_rq_target_io *tio;
Tejun Heo29e40132010-09-08 18:07:00 +02001955 sector_t pos;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001956
1957 /*
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00001958 * For suspend, check blk_queue_stopped() and increment
1959 * ->pending within a single queue_lock not to increment the
1960 * number of in-flight I/Os after the queue is stopped in
1961 * dm_suspend().
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001962 */
Jens Axboe7eaceac2011-03-10 08:52:07 +01001963 while (!blk_queue_stopped(q)) {
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001964 rq = blk_peek_request(q);
1965 if (!rq)
Mike Snitzer9d1deb82015-02-24 20:49:18 -05001966 goto out;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001967
Tejun Heo29e40132010-09-08 18:07:00 +02001968 /* always use block 0 to find the target for flushes for now */
1969 pos = 0;
1970 if (!(rq->cmd_flags & REQ_FLUSH))
1971 pos = blk_rq_pos(rq);
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00001972
Tejun Heo29e40132010-09-08 18:07:00 +02001973 ti = dm_table_find_target(map, pos);
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001974 if (!dm_target_is_valid(ti)) {
1975 /*
Keith Busch466d89a2014-10-17 17:46:37 -06001976 * Must perform setup, that rq_completed() requires,
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001977 * before calling dm_kill_unmapped_request
1978 */
1979 DMERR_LIMIT("request attempted access beyond the end of device");
Keith Busch466d89a2014-10-17 17:46:37 -06001980 dm_start_request(md, rq);
1981 dm_kill_unmapped_request(rq, -EIO);
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001982 continue;
1983 }
Tejun Heo29e40132010-09-08 18:07:00 +02001984
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001985 if (ti->type->busy && ti->type->busy(ti))
Jens Axboe7eaceac2011-03-10 08:52:07 +01001986 goto delay_and_out;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001987
Keith Busch466d89a2014-10-17 17:46:37 -06001988 dm_start_request(md, rq);
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00001989
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001990 tio = rq->special;
1991 /* Establish tio->ti before queuing work (map_tio_request) */
1992 tio->ti = ti;
1993 queue_kthread_work(&md->kworker, &tio->work);
Kiyoshi Ueda052189a2011-01-13 20:00:00 +00001994 BUG_ON(!irqs_disabled());
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001995 }
1996
1997 goto out;
1998
Jens Axboe7eaceac2011-03-10 08:52:07 +01001999delay_and_out:
Mike Snitzerd548b342015-03-05 22:21:10 -05002000 blk_delay_queue(q, HZ / 100);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002001out:
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002002 dm_put_live_table(md, srcu_idx);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002003}
2004
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005static int dm_any_congested(void *congested_data, int bdi_bits)
2006{
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00002007 int r = bdi_bits;
2008 struct mapped_device *md = congested_data;
2009 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01002011 if (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002012 map = dm_get_live_table_fast(md);
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00002013 if (map) {
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002014 /*
2015 * Request-based dm cares about only own queue for
2016 * the query about congestion status of request_queue
2017 */
2018 if (dm_request_based(md))
2019 r = md->queue->backing_dev_info.state &
2020 bdi_bits;
2021 else
2022 r = dm_table_any_congested(map, bdi_bits);
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00002023 }
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002024 dm_put_live_table_fast(md);
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00002025 }
2026
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 return r;
2028}
2029
2030/*-----------------------------------------------------------------
2031 * An IDR is used to keep track of allocated minor numbers.
2032 *---------------------------------------------------------------*/
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002033static void free_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034{
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002035 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 idr_remove(&_minor_idr, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002037 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038}
2039
2040/*
2041 * See if the device with a specific minor # is free.
2042 */
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01002043static int specific_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044{
Tejun Heoc9d76be2013-02-27 17:04:26 -08002045 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046
2047 if (minor >= (1 << MINORBITS))
2048 return -EINVAL;
2049
Tejun Heoc9d76be2013-02-27 17:04:26 -08002050 idr_preload(GFP_KERNEL);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002051 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052
Tejun Heoc9d76be2013-02-27 17:04:26 -08002053 r = idr_alloc(&_minor_idr, MINOR_ALLOCED, minor, minor + 1, GFP_NOWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002055 spin_unlock(&_minor_lock);
Tejun Heoc9d76be2013-02-27 17:04:26 -08002056 idr_preload_end();
2057 if (r < 0)
2058 return r == -ENOSPC ? -EBUSY : r;
2059 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060}
2061
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01002062static int next_free_minor(int *minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063{
Tejun Heoc9d76be2013-02-27 17:04:26 -08002064 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065
Tejun Heoc9d76be2013-02-27 17:04:26 -08002066 idr_preload(GFP_KERNEL);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002067 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068
Tejun Heoc9d76be2013-02-27 17:04:26 -08002069 r = idr_alloc(&_minor_idr, MINOR_ALLOCED, 0, 1 << MINORBITS, GFP_NOWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002071 spin_unlock(&_minor_lock);
Tejun Heoc9d76be2013-02-27 17:04:26 -08002072 idr_preload_end();
2073 if (r < 0)
2074 return r;
2075 *minor = r;
2076 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077}
2078
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07002079static const struct block_device_operations dm_blk_dops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080
Mikulas Patocka53d59142009-04-02 19:55:37 +01002081static void dm_wq_work(struct work_struct *work);
2082
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002083static void dm_init_md_queue(struct mapped_device *md)
2084{
2085 /*
2086 * Request-based dm devices cannot be stacked on top of bio-based dm
2087 * devices. The type of this dm device has not been decided yet.
2088 * The type is decided at the first table loading time.
2089 * To prevent problematic device stacking, clear the queue flag
2090 * for request stacking support until then.
2091 *
2092 * This queue is new, so no concurrency on the queue_flags.
2093 */
2094 queue_flag_clear_unlocked(QUEUE_FLAG_STACKABLE, md->queue);
2095
2096 md->queue->queuedata = md;
2097 md->queue->backing_dev_info.congested_fn = dm_any_congested;
2098 md->queue->backing_dev_info.congested_data = md;
Mike Snitzerff36ab32015-02-23 17:56:37 -05002099
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002100 blk_queue_bounce_limit(md->queue, BLK_BOUNCE_ANY);
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002101}
2102
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103/*
2104 * Allocate and initialise a blank device with a given minor.
2105 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002106static struct mapped_device *alloc_dev(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107{
2108 int r;
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01002109 struct mapped_device *md = kzalloc(sizeof(*md), GFP_KERNEL);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07002110 void *old_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111
2112 if (!md) {
2113 DMWARN("unable to allocate device, out of memory.");
2114 return NULL;
2115 }
2116
Jeff Mahoney10da4f72006-06-26 00:27:25 -07002117 if (!try_module_get(THIS_MODULE))
Milan Broz6ed7ade2008-02-08 02:10:19 +00002118 goto bad_module_get;
Jeff Mahoney10da4f72006-06-26 00:27:25 -07002119
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 /* get a minor number for the dev */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002121 if (minor == DM_ANY_MINOR)
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01002122 r = next_free_minor(&minor);
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002123 else
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01002124 r = specific_minor(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 if (r < 0)
Milan Broz6ed7ade2008-02-08 02:10:19 +00002126 goto bad_minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002128 r = init_srcu_struct(&md->io_barrier);
2129 if (r < 0)
2130 goto bad_io_barrier;
2131
Mike Snitzera5664da2010-08-12 04:14:01 +01002132 md->type = DM_TYPE_NONE;
Daniel Walkere61290a2008-02-08 02:10:08 +00002133 mutex_init(&md->suspend_lock);
Mike Snitzera5664da2010-08-12 04:14:01 +01002134 mutex_init(&md->type_lock);
Benjamin Marzinski86f11522014-08-13 13:53:43 -05002135 mutex_init(&md->table_devices_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01002136 spin_lock_init(&md->deferred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 atomic_set(&md->holders, 1);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -07002138 atomic_set(&md->open_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 atomic_set(&md->event_nr, 0);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002140 atomic_set(&md->uevent_seq, 0);
2141 INIT_LIST_HEAD(&md->uevent_list);
Benjamin Marzinski86f11522014-08-13 13:53:43 -05002142 INIT_LIST_HEAD(&md->table_devices);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002143 spin_lock_init(&md->uevent_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002145 md->queue = blk_alloc_queue(GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 if (!md->queue)
Milan Broz6ed7ade2008-02-08 02:10:19 +00002147 goto bad_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002149 dm_init_md_queue(md);
Stefan Bader9faf4002006-10-03 01:15:41 -07002150
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 md->disk = alloc_disk(1);
2152 if (!md->disk)
Milan Broz6ed7ade2008-02-08 02:10:19 +00002153 goto bad_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02002155 atomic_set(&md->pending[0], 0);
2156 atomic_set(&md->pending[1], 0);
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07002157 init_waitqueue_head(&md->wait);
Mikulas Patocka53d59142009-04-02 19:55:37 +01002158 INIT_WORK(&md->work, dm_wq_work);
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07002159 init_waitqueue_head(&md->eventq);
Mikulas Patocka2995fa72014-01-13 19:37:54 -05002160 init_completion(&md->kobj_holder.completion);
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002161 md->kworker_task = NULL;
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07002162
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 md->disk->major = _major;
2164 md->disk->first_minor = minor;
2165 md->disk->fops = &dm_blk_dops;
2166 md->disk->queue = md->queue;
2167 md->disk->private_data = md;
2168 sprintf(md->disk->disk_name, "dm-%d", minor);
2169 add_disk(md->disk);
Mike Anderson7e51f252006-03-27 01:17:52 -08002170 format_dev_t(md->name, MKDEV(_major, minor));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171
Tejun Heo670368a2013-07-30 08:40:21 -04002172 md->wq = alloc_workqueue("kdmflush", WQ_MEM_RECLAIM, 0);
Milan Broz304f3f62008-02-08 02:11:17 +00002173 if (!md->wq)
2174 goto bad_thread;
2175
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002176 md->bdev = bdget_disk(md->disk, 0);
2177 if (!md->bdev)
2178 goto bad_bdev;
2179
Tejun Heo6a8736d2010-09-08 18:07:00 +02002180 bio_init(&md->flush_bio);
2181 md->flush_bio.bi_bdev = md->bdev;
2182 md->flush_bio.bi_rw = WRITE_FLUSH;
2183
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002184 dm_stats_init(&md->stats);
2185
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07002186 /* Populate the mapping, nobody knows we exist yet */
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002187 spin_lock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07002188 old_md = idr_replace(&_minor_idr, md, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002189 spin_unlock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07002190
2191 BUG_ON(old_md != MINOR_ALLOCED);
2192
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 return md;
2194
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002195bad_bdev:
2196 destroy_workqueue(md->wq);
Milan Broz304f3f62008-02-08 02:11:17 +00002197bad_thread:
Zdenek Kabelac03022c52009-10-16 23:18:15 +01002198 del_gendisk(md->disk);
Milan Broz304f3f62008-02-08 02:11:17 +00002199 put_disk(md->disk);
Milan Broz6ed7ade2008-02-08 02:10:19 +00002200bad_disk:
Al Viro1312f402006-03-12 11:02:03 -05002201 blk_cleanup_queue(md->queue);
Milan Broz6ed7ade2008-02-08 02:10:19 +00002202bad_queue:
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002203 cleanup_srcu_struct(&md->io_barrier);
2204bad_io_barrier:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 free_minor(minor);
Milan Broz6ed7ade2008-02-08 02:10:19 +00002206bad_minor:
Jeff Mahoney10da4f72006-06-26 00:27:25 -07002207 module_put(THIS_MODULE);
Milan Broz6ed7ade2008-02-08 02:10:19 +00002208bad_module_get:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 kfree(md);
2210 return NULL;
2211}
2212
Jun'ichi Nomuraae9da832007-10-19 22:38:43 +01002213static void unlock_fs(struct mapped_device *md);
2214
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215static void free_dev(struct mapped_device *md)
2216{
Tejun Heof331c022008-09-03 09:01:48 +02002217 int minor = MINOR(disk_devt(md->disk));
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08002218
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002219 unlock_fs(md);
Milan Broz304f3f62008-02-08 02:11:17 +00002220 destroy_workqueue(md->wq);
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002221
2222 if (md->kworker_task)
2223 kthread_stop(md->kworker_task);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002224 if (md->io_pool)
2225 mempool_destroy(md->io_pool);
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05002226 if (md->rq_pool)
2227 mempool_destroy(md->rq_pool);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002228 if (md->bs)
2229 bioset_free(md->bs);
Mike Snitzer63a4f062015-03-23 17:01:43 -04002230
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002231 cleanup_srcu_struct(&md->io_barrier);
Benjamin Marzinski86f11522014-08-13 13:53:43 -05002232 free_table_devices(&md->table_devices);
Mike Snitzer63a4f062015-03-23 17:01:43 -04002233 dm_stats_cleanup(&md->stats);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002234
2235 spin_lock(&_minor_lock);
2236 md->disk->private_data = NULL;
2237 spin_unlock(&_minor_lock);
Mike Snitzer63a4f062015-03-23 17:01:43 -04002238 if (blk_get_integrity(md->disk))
2239 blk_integrity_unregister(md->disk);
2240 del_gendisk(md->disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 put_disk(md->disk);
Al Viro1312f402006-03-12 11:02:03 -05002242 blk_cleanup_queue(md->queue);
Mike Snitzer63a4f062015-03-23 17:01:43 -04002243 bdput(md->bdev);
2244 free_minor(minor);
2245
Jeff Mahoney10da4f72006-06-26 00:27:25 -07002246 module_put(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 kfree(md);
2248}
2249
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002250static void __bind_mempools(struct mapped_device *md, struct dm_table *t)
2251{
Mikulas Patockac0820cf2012-12-21 20:23:38 +00002252 struct dm_md_mempools *p = dm_table_get_md_mempools(t);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002253
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00002254 if (md->io_pool && md->bs) {
Jun'ichi Nomura16245bd2013-03-01 22:45:44 +00002255 /* The md already has necessary mempools. */
2256 if (dm_table_get_type(t) == DM_TYPE_BIO_BASED) {
2257 /*
2258 * Reload bioset because front_pad may have changed
2259 * because a different table was loaded.
2260 */
2261 bioset_free(md->bs);
2262 md->bs = p->bs;
2263 p->bs = NULL;
Jun'ichi Nomura16245bd2013-03-01 22:45:44 +00002264 }
Keith Busch466d89a2014-10-17 17:46:37 -06002265 /*
2266 * There's no need to reload with request-based dm
2267 * because the size of front_pad doesn't change.
2268 * Note for future: If you are to reload bioset,
2269 * prep-ed requests in the queue may refer
2270 * to bio from the old bioset, so you must walk
2271 * through the queue to unprep.
2272 */
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002273 goto out;
Mikulas Patockac0820cf2012-12-21 20:23:38 +00002274 }
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002275
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05002276 BUG_ON(!p || md->io_pool || md->rq_pool || md->bs);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002277
2278 md->io_pool = p->io_pool;
2279 p->io_pool = NULL;
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05002280 md->rq_pool = p->rq_pool;
2281 p->rq_pool = NULL;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002282 md->bs = p->bs;
2283 p->bs = NULL;
2284
2285out:
2286 /* mempool bind completed, now no need any mempools in the table */
2287 dm_table_free_md_mempools(t);
2288}
2289
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290/*
2291 * Bind a table to the device.
2292 */
2293static void event_callback(void *context)
2294{
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002295 unsigned long flags;
2296 LIST_HEAD(uevents);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 struct mapped_device *md = (struct mapped_device *) context;
2298
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002299 spin_lock_irqsave(&md->uevent_lock, flags);
2300 list_splice_init(&md->uevent_list, &uevents);
2301 spin_unlock_irqrestore(&md->uevent_lock, flags);
2302
Tejun Heoed9e1982008-08-25 19:56:05 +09002303 dm_send_uevents(&uevents, &disk_to_dev(md->disk)->kobj);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002304
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 atomic_inc(&md->event_nr);
2306 wake_up(&md->eventq);
2307}
2308
Mike Snitzerc2176492011-01-13 19:53:46 +00002309/*
2310 * Protected by md->suspend_lock obtained by dm_swap_table().
2311 */
Alasdair G Kergon4e90188be2005-07-28 21:15:59 -07002312static void __set_size(struct mapped_device *md, sector_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313{
Alasdair G Kergon4e90188be2005-07-28 21:15:59 -07002314 set_capacity(md->disk, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002316 i_size_write(md->bdev->bd_inode, (loff_t)size << SECTOR_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317}
2318
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002319/*
Mikulas Patockad5b9dd02011-08-02 12:32:04 +01002320 * Return 1 if the queue has a compulsory merge_bvec_fn function.
2321 *
2322 * If this function returns 0, then the device is either a non-dm
2323 * device without a merge_bvec_fn, or it is a dm device that is
2324 * able to split any bios it receives that are too big.
2325 */
2326int dm_queue_merge_is_compulsory(struct request_queue *q)
2327{
2328 struct mapped_device *dev_md;
2329
2330 if (!q->merge_bvec_fn)
2331 return 0;
2332
Mike Snitzerff36ab32015-02-23 17:56:37 -05002333 if (q->make_request_fn == dm_make_request) {
Mikulas Patockad5b9dd02011-08-02 12:32:04 +01002334 dev_md = q->queuedata;
2335 if (test_bit(DMF_MERGE_IS_OPTIONAL, &dev_md->flags))
2336 return 0;
2337 }
2338
2339 return 1;
2340}
2341
2342static int dm_device_merge_is_compulsory(struct dm_target *ti,
2343 struct dm_dev *dev, sector_t start,
2344 sector_t len, void *data)
2345{
2346 struct block_device *bdev = dev->bdev;
2347 struct request_queue *q = bdev_get_queue(bdev);
2348
2349 return dm_queue_merge_is_compulsory(q);
2350}
2351
2352/*
2353 * Return 1 if it is acceptable to ignore merge_bvec_fn based
2354 * on the properties of the underlying devices.
2355 */
2356static int dm_table_merge_is_optional(struct dm_table *table)
2357{
2358 unsigned i = 0;
2359 struct dm_target *ti;
2360
2361 while (i < dm_table_get_num_targets(table)) {
2362 ti = dm_table_get_target(table, i++);
2363
2364 if (ti->type->iterate_devices &&
2365 ti->type->iterate_devices(ti, dm_device_merge_is_compulsory, NULL))
2366 return 0;
2367 }
2368
2369 return 1;
2370}
2371
2372/*
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002373 * Returns old map, which caller must destroy.
2374 */
2375static struct dm_table *__bind(struct mapped_device *md, struct dm_table *t,
2376 struct queue_limits *limits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377{
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002378 struct dm_table *old_map;
Jens Axboe165125e2007-07-24 09:28:11 +02002379 struct request_queue *q = md->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 sector_t size;
Mikulas Patockad5b9dd02011-08-02 12:32:04 +01002381 int merge_is_optional;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382
2383 size = dm_table_get_size(t);
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08002384
2385 /*
2386 * Wipe any geometry if the size of the table changed.
2387 */
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002388 if (size != dm_get_size(md))
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08002389 memset(&md->geometry, 0, sizeof(md->geometry));
2390
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002391 __set_size(md, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002393 dm_table_event_callback(t, event_callback, md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002394
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002395 /*
2396 * The queue hasn't been stopped yet, if the old table type wasn't
2397 * for request-based during suspension. So stop it to prevent
2398 * I/O mapping before resume.
2399 * This must be done before setting the queue restrictions,
2400 * because request-based dm may be run just after the setting.
2401 */
2402 if (dm_table_request_based(t) && !blk_queue_stopped(q))
2403 stop_queue(q);
2404
2405 __bind_mempools(md, t);
2406
Mikulas Patockad5b9dd02011-08-02 12:32:04 +01002407 merge_is_optional = dm_table_merge_is_optional(t);
2408
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002409 old_map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002410 rcu_assign_pointer(md->map, t);
Alasdair G Kergon36a04562011-10-31 20:19:04 +00002411 md->immutable_target_type = dm_table_get_immutable_target_type(t);
2412
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002413 dm_table_set_restrictions(t, q, limits);
Mikulas Patockad5b9dd02011-08-02 12:32:04 +01002414 if (merge_is_optional)
2415 set_bit(DMF_MERGE_IS_OPTIONAL, &md->flags);
2416 else
2417 clear_bit(DMF_MERGE_IS_OPTIONAL, &md->flags);
Hannes Reinecke41abc4e2014-11-05 14:35:50 +01002418 if (old_map)
2419 dm_sync_table(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002420
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002421 return old_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422}
2423
Alasdair G Kergona7940152009-12-10 23:52:23 +00002424/*
2425 * Returns unbound table for the caller to free.
2426 */
2427static struct dm_table *__unbind(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428{
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002429 struct dm_table *map = rcu_dereference_protected(md->map, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430
2431 if (!map)
Alasdair G Kergona7940152009-12-10 23:52:23 +00002432 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433
2434 dm_table_event_callback(map, NULL, NULL);
Monam Agarwal9cdb8522014-03-23 23:58:27 +05302435 RCU_INIT_POINTER(md->map, NULL);
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002436 dm_sync_table(md);
Alasdair G Kergona7940152009-12-10 23:52:23 +00002437
2438 return map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439}
2440
2441/*
2442 * Constructor for a new device.
2443 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002444int dm_create(int minor, struct mapped_device **result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445{
2446 struct mapped_device *md;
2447
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002448 md = alloc_dev(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 if (!md)
2450 return -ENXIO;
2451
Milan Broz784aae72009-01-06 03:05:12 +00002452 dm_sysfs_init(md);
2453
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 *result = md;
2455 return 0;
2456}
2457
Mike Snitzera5664da2010-08-12 04:14:01 +01002458/*
2459 * Functions to manage md->type.
2460 * All are required to hold md->type_lock.
2461 */
2462void dm_lock_md_type(struct mapped_device *md)
2463{
2464 mutex_lock(&md->type_lock);
2465}
2466
2467void dm_unlock_md_type(struct mapped_device *md)
2468{
2469 mutex_unlock(&md->type_lock);
2470}
2471
2472void dm_set_md_type(struct mapped_device *md, unsigned type)
2473{
Mike Snitzer00c4fc32013-08-27 18:57:03 -04002474 BUG_ON(!mutex_is_locked(&md->type_lock));
Mike Snitzera5664da2010-08-12 04:14:01 +01002475 md->type = type;
2476}
2477
2478unsigned dm_get_md_type(struct mapped_device *md)
2479{
Mike Snitzer00c4fc32013-08-27 18:57:03 -04002480 BUG_ON(!mutex_is_locked(&md->type_lock));
Mike Snitzera5664da2010-08-12 04:14:01 +01002481 return md->type;
2482}
2483
Mike Snitzere5863d92014-12-17 21:08:12 -05002484static bool dm_md_type_request_based(struct mapped_device *md)
2485{
2486 unsigned table_type = dm_get_md_type(md);
2487
2488 return (table_type == DM_TYPE_REQUEST_BASED ||
2489 table_type == DM_TYPE_MQ_REQUEST_BASED);
2490}
2491
Alasdair G Kergon36a04562011-10-31 20:19:04 +00002492struct target_type *dm_get_immutable_target_type(struct mapped_device *md)
2493{
2494 return md->immutable_target_type;
2495}
2496
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002497/*
Mike Snitzerf84cb8a2013-09-19 12:13:58 -04002498 * The queue_limits are only valid as long as you have a reference
2499 * count on 'md'.
2500 */
2501struct queue_limits *dm_get_queue_limits(struct mapped_device *md)
2502{
2503 BUG_ON(!atomic_read(&md->holders));
2504 return &md->queue->limits;
2505}
2506EXPORT_SYMBOL_GPL(dm_get_queue_limits);
2507
2508/*
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002509 * Fully initialize a request-based queue (->elevator, ->request_fn, etc).
2510 */
2511static int dm_init_request_based_queue(struct mapped_device *md)
2512{
2513 struct request_queue *q = NULL;
2514
2515 if (md->queue->elevator)
2516 return 1;
2517
2518 /* Fully initialize the queue */
2519 q = blk_init_allocated_queue(md->queue, dm_request_fn, NULL);
2520 if (!q)
2521 return 0;
2522
2523 md->queue = q;
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002524 dm_init_md_queue(md);
2525 blk_queue_softirq_done(md->queue, dm_softirq_done);
2526 blk_queue_prep_rq(md->queue, dm_prep_fn);
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002527
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002528 /* Also initialize the request-based DM worker thread */
2529 init_kthread_worker(&md->kworker);
2530 md->kworker_task = kthread_run(kthread_worker_fn, &md->kworker,
2531 "kdmwork-%s", dm_device_name(md));
2532
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002533 elv_register_queue(md->queue);
2534
2535 return 1;
2536}
2537
2538/*
2539 * Setup the DM device's queue based on md's type
2540 */
2541int dm_setup_md_queue(struct mapped_device *md)
2542{
Mike Snitzerff36ab32015-02-23 17:56:37 -05002543 if (dm_md_type_request_based(md)) {
2544 if (!dm_init_request_based_queue(md)) {
2545 DMWARN("Cannot initialize queue for request-based mapped device");
2546 return -EINVAL;
2547 }
2548 } else {
2549 /* bio-based specific initialization */
2550 blk_queue_make_request(md->queue, dm_make_request);
2551 blk_queue_merge_bvec(md->queue, dm_merge_bvec);
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002552 }
2553
2554 return 0;
2555}
2556
Mikulas Patocka2bec1f42015-02-17 14:30:53 -05002557struct mapped_device *dm_get_md(dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558{
2559 struct mapped_device *md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 unsigned minor = MINOR(dev);
2561
2562 if (MAJOR(dev) != _major || minor >= (1 << MINORBITS))
2563 return NULL;
2564
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002565 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566
2567 md = idr_find(&_minor_idr, minor);
Mikulas Patocka2bec1f42015-02-17 14:30:53 -05002568 if (md) {
2569 if ((md == MINOR_ALLOCED ||
2570 (MINOR(disk_devt(dm_disk(md))) != minor) ||
2571 dm_deleting_md(md) ||
2572 test_bit(DMF_FREEING, &md->flags))) {
2573 md = NULL;
2574 goto out;
2575 }
2576 dm_get(md);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002577 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002579out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002580 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581
David Teigland637842c2006-01-06 00:20:00 -08002582 return md;
2583}
Alasdair G Kergon3cf2e4b2011-10-31 20:19:06 +00002584EXPORT_SYMBOL_GPL(dm_get_md);
David Teiglandd229a952006-01-06 00:20:01 -08002585
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08002586void *dm_get_mdptr(struct mapped_device *md)
David Teigland637842c2006-01-06 00:20:00 -08002587{
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08002588 return md->interface_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589}
2590
2591void dm_set_mdptr(struct mapped_device *md, void *ptr)
2592{
2593 md->interface_ptr = ptr;
2594}
2595
2596void dm_get(struct mapped_device *md)
2597{
2598 atomic_inc(&md->holders);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002599 BUG_ON(test_bit(DMF_FREEING, &md->flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600}
2601
Mikulas Patocka09ee96b2015-02-26 11:41:28 -05002602int dm_hold(struct mapped_device *md)
2603{
2604 spin_lock(&_minor_lock);
2605 if (test_bit(DMF_FREEING, &md->flags)) {
2606 spin_unlock(&_minor_lock);
2607 return -EBUSY;
2608 }
2609 dm_get(md);
2610 spin_unlock(&_minor_lock);
2611 return 0;
2612}
2613EXPORT_SYMBOL_GPL(dm_hold);
2614
Alasdair G Kergon72d94862006-06-26 00:27:35 -07002615const char *dm_device_name(struct mapped_device *md)
2616{
2617 return md->name;
2618}
2619EXPORT_SYMBOL_GPL(dm_device_name);
2620
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002621static void __dm_destroy(struct mapped_device *md, bool wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622{
Mike Anderson1134e5a2006-03-27 01:17:54 -08002623 struct dm_table *map;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002624 int srcu_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002626 might_sleep();
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002627
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002628 map = dm_get_live_table(md, &srcu_idx);
Mike Snitzer63a4f062015-03-23 17:01:43 -04002629
2630 spin_lock(&_minor_lock);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002631 idr_replace(&_minor_idr, MINOR_ALLOCED, MINOR(disk_devt(dm_disk(md))));
2632 set_bit(DMF_FREEING, &md->flags);
2633 spin_unlock(&_minor_lock);
2634
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002635 if (dm_request_based(md))
2636 flush_kthread_worker(&md->kworker);
2637
Mikulas Patockaab7c7bb2015-02-27 14:04:27 -05002638 /*
2639 * Take suspend_lock so that presuspend and postsuspend methods
2640 * do not race with internal suspend.
2641 */
2642 mutex_lock(&md->suspend_lock);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002643 if (!dm_suspended_md(md)) {
2644 dm_table_presuspend_targets(map);
2645 dm_table_postsuspend_targets(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 }
Mikulas Patockaab7c7bb2015-02-27 14:04:27 -05002647 mutex_unlock(&md->suspend_lock);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002648
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002649 /* dm_put_live_table must be before msleep, otherwise deadlock is possible */
2650 dm_put_live_table(md, srcu_idx);
2651
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002652 /*
2653 * Rare, but there may be I/O requests still going to complete,
2654 * for example. Wait for all references to disappear.
2655 * No one should increment the reference count of the mapped_device,
2656 * after the mapped_device state becomes DMF_FREEING.
2657 */
2658 if (wait)
2659 while (atomic_read(&md->holders))
2660 msleep(1);
2661 else if (atomic_read(&md->holders))
2662 DMWARN("%s: Forcibly removing mapped_device still in use! (%d users)",
2663 dm_device_name(md), atomic_read(&md->holders));
2664
2665 dm_sysfs_exit(md);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002666 dm_table_destroy(__unbind(md));
2667 free_dev(md);
2668}
2669
2670void dm_destroy(struct mapped_device *md)
2671{
2672 __dm_destroy(md, true);
2673}
2674
2675void dm_destroy_immediate(struct mapped_device *md)
2676{
2677 __dm_destroy(md, false);
2678}
2679
2680void dm_put(struct mapped_device *md)
2681{
2682 atomic_dec(&md->holders);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683}
Edward Goggin79eb8852007-05-09 02:32:56 -07002684EXPORT_SYMBOL_GPL(dm_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685
Mikulas Patocka401600d2009-04-02 19:55:38 +01002686static int dm_wait_for_completion(struct mapped_device *md, int interruptible)
Milan Broz46125c12008-02-08 02:10:30 +00002687{
2688 int r = 0;
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002689 DECLARE_WAITQUEUE(wait, current);
2690
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002691 add_wait_queue(&md->wait, &wait);
Milan Broz46125c12008-02-08 02:10:30 +00002692
2693 while (1) {
Mikulas Patocka401600d2009-04-02 19:55:38 +01002694 set_current_state(interruptible);
Milan Broz46125c12008-02-08 02:10:30 +00002695
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00002696 if (!md_in_flight(md))
Milan Broz46125c12008-02-08 02:10:30 +00002697 break;
2698
Mikulas Patocka401600d2009-04-02 19:55:38 +01002699 if (interruptible == TASK_INTERRUPTIBLE &&
2700 signal_pending(current)) {
Milan Broz46125c12008-02-08 02:10:30 +00002701 r = -EINTR;
2702 break;
2703 }
2704
2705 io_schedule();
2706 }
2707 set_current_state(TASK_RUNNING);
2708
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002709 remove_wait_queue(&md->wait, &wait);
2710
Milan Broz46125c12008-02-08 02:10:30 +00002711 return r;
2712}
2713
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714/*
2715 * Process the deferred bios
2716 */
Mikulas Patockaef208582009-04-02 19:55:38 +01002717static void dm_wq_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718{
Mikulas Patockaef208582009-04-02 19:55:38 +01002719 struct mapped_device *md = container_of(work, struct mapped_device,
2720 work);
Milan Broz6d6f10d2008-02-08 02:10:22 +00002721 struct bio *c;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002722 int srcu_idx;
2723 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002725 map = dm_get_live_table(md, &srcu_idx);
Mikulas Patockaef208582009-04-02 19:55:38 +01002726
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002727 while (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002728 spin_lock_irq(&md->deferred_lock);
2729 c = bio_list_pop(&md->deferred);
2730 spin_unlock_irq(&md->deferred_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01002731
Tejun Heo6a8736d2010-09-08 18:07:00 +02002732 if (!c)
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002733 break;
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002734
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002735 if (dm_request_based(md))
2736 generic_make_request(c);
Tejun Heo6a8736d2010-09-08 18:07:00 +02002737 else
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002738 __split_and_process_bio(md, map, c);
Mikulas Patocka022c2612009-04-02 19:55:39 +01002739 }
Milan Broz73d410c2008-02-08 02:10:25 +00002740
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002741 dm_put_live_table(md, srcu_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742}
2743
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002744static void dm_queue_flush(struct mapped_device *md)
Milan Broz304f3f62008-02-08 02:11:17 +00002745{
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002746 clear_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01002747 smp_mb__after_atomic();
Mikulas Patocka53d59142009-04-02 19:55:37 +01002748 queue_work(md->wq, &md->work);
Milan Broz304f3f62008-02-08 02:11:17 +00002749}
2750
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751/*
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002752 * Swap in a new table, returning the old one for the caller to destroy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 */
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002754struct dm_table *dm_swap_table(struct mapped_device *md, struct dm_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755{
Mike Christie87eb5b22013-03-01 22:45:48 +00002756 struct dm_table *live_map = NULL, *map = ERR_PTR(-EINVAL);
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002757 struct queue_limits limits;
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002758 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759
Daniel Walkere61290a2008-02-08 02:10:08 +00002760 mutex_lock(&md->suspend_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761
2762 /* device must be suspended */
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +00002763 if (!dm_suspended_md(md))
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07002764 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765
Mike Snitzer3ae70652012-09-26 23:45:45 +01002766 /*
2767 * If the new table has no data devices, retain the existing limits.
2768 * This helps multipath with queue_if_no_path if all paths disappear,
2769 * then new I/O is queued based on these limits, and then some paths
2770 * reappear.
2771 */
2772 if (dm_table_has_no_data_devices(table)) {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002773 live_map = dm_get_live_table_fast(md);
Mike Snitzer3ae70652012-09-26 23:45:45 +01002774 if (live_map)
2775 limits = md->queue->limits;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002776 dm_put_live_table_fast(md);
Mike Snitzer3ae70652012-09-26 23:45:45 +01002777 }
2778
Mike Christie87eb5b22013-03-01 22:45:48 +00002779 if (!live_map) {
2780 r = dm_calculate_queue_limits(table, &limits);
2781 if (r) {
2782 map = ERR_PTR(r);
2783 goto out;
2784 }
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002785 }
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002786
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002787 map = __bind(md, table, &limits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07002789out:
Daniel Walkere61290a2008-02-08 02:10:08 +00002790 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002791 return map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792}
2793
2794/*
2795 * Functions to lock and unlock any filesystem running on the
2796 * device.
2797 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002798static int lock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799{
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08002800 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801
2802 WARN_ON(md->frozen_sb);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002803
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002804 md->frozen_sb = freeze_bdev(md->bdev);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002805 if (IS_ERR(md->frozen_sb)) {
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002806 r = PTR_ERR(md->frozen_sb);
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08002807 md->frozen_sb = NULL;
2808 return r;
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002809 }
2810
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002811 set_bit(DMF_FROZEN, &md->flags);
2812
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813 return 0;
2814}
2815
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002816static void unlock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817{
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002818 if (!test_bit(DMF_FROZEN, &md->flags))
2819 return;
2820
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002821 thaw_bdev(md->bdev, md->frozen_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822 md->frozen_sb = NULL;
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002823 clear_bit(DMF_FROZEN, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824}
2825
2826/*
Mike Snitzerffcc3932014-10-28 18:34:52 -04002827 * If __dm_suspend returns 0, the device is completely quiescent
2828 * now. There is no request-processing activity. All new requests
2829 * are being added to md->deferred list.
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002830 *
Mike Snitzerffcc3932014-10-28 18:34:52 -04002831 * Caller must hold md->suspend_lock
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002832 */
Mike Snitzerffcc3932014-10-28 18:34:52 -04002833static int __dm_suspend(struct mapped_device *md, struct dm_table *map,
2834 unsigned suspend_flags, int interruptible)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835{
Mike Snitzerffcc3932014-10-28 18:34:52 -04002836 bool do_lockfs = suspend_flags & DM_SUSPEND_LOCKFS_FLAG;
2837 bool noflush = suspend_flags & DM_SUSPEND_NOFLUSH_FLAG;
2838 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002840 /*
2841 * DMF_NOFLUSH_SUSPENDING must be set before presuspend.
2842 * This flag is cleared before dm_suspend returns.
2843 */
2844 if (noflush)
2845 set_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
2846
Mike Snitzerd67ee212014-10-28 20:13:31 -04002847 /*
2848 * This gets reverted if there's an error later and the targets
2849 * provide the .presuspend_undo hook.
2850 */
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002851 dm_table_presuspend_targets(map);
2852
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002853 /*
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002854 * Flush I/O to the device.
2855 * Any I/O submitted after lock_fs() may not be flushed.
2856 * noflush takes precedence over do_lockfs.
2857 * (lock_fs() flushes I/Os and waits for them to complete.)
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002858 */
2859 if (!noflush && do_lockfs) {
2860 r = lock_fs(md);
Mike Snitzerd67ee212014-10-28 20:13:31 -04002861 if (r) {
2862 dm_table_presuspend_undo_targets(map);
Mike Snitzerffcc3932014-10-28 18:34:52 -04002863 return r;
Mike Snitzerd67ee212014-10-28 20:13:31 -04002864 }
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002865 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866
2867 /*
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002868 * Here we must make sure that no processes are submitting requests
2869 * to target drivers i.e. no one may be executing
2870 * __split_and_process_bio. This is called from dm_request and
2871 * dm_wq_work.
2872 *
2873 * To get all processes out of __split_and_process_bio in dm_request,
2874 * we take the write lock. To prevent any process from reentering
Tejun Heo6a8736d2010-09-08 18:07:00 +02002875 * __split_and_process_bio from dm_request and quiesce the thread
2876 * (dm_wq_work), we set BMF_BLOCK_IO_FOR_SUSPEND and call
2877 * flush_workqueue(md->wq).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 */
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01002879 set_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
Hannes Reinecke41abc4e2014-11-05 14:35:50 +01002880 if (map)
2881 synchronize_srcu(&md->io_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002883 /*
Tejun Heo29e40132010-09-08 18:07:00 +02002884 * Stop md->queue before flushing md->wq in case request-based
2885 * dm defers requests to md->wq from md->queue.
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002886 */
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002887 if (dm_request_based(md)) {
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002888 stop_queue(md->queue);
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002889 flush_kthread_worker(&md->kworker);
2890 }
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002891
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002892 flush_workqueue(md->wq);
2893
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894 /*
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002895 * At this point no more requests are entering target request routines.
2896 * We call dm_wait_for_completion to wait for all existing requests
2897 * to finish.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 */
Mike Snitzerffcc3932014-10-28 18:34:52 -04002899 r = dm_wait_for_completion(md, interruptible);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900
Milan Broz6d6f10d2008-02-08 02:10:22 +00002901 if (noflush)
Mikulas Patocka022c2612009-04-02 19:55:39 +01002902 clear_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
Hannes Reinecke41abc4e2014-11-05 14:35:50 +01002903 if (map)
2904 synchronize_srcu(&md->io_barrier);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002905
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906 /* were we interrupted ? */
Milan Broz46125c12008-02-08 02:10:30 +00002907 if (r < 0) {
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002908 dm_queue_flush(md);
Milan Broz73d410c2008-02-08 02:10:25 +00002909
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002910 if (dm_request_based(md))
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002911 start_queue(md->queue);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002912
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002913 unlock_fs(md);
Mike Snitzerd67ee212014-10-28 20:13:31 -04002914 dm_table_presuspend_undo_targets(map);
Mike Snitzerffcc3932014-10-28 18:34:52 -04002915 /* pushback list is already flushed, so skip flush */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002916 }
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002917
Mike Snitzerffcc3932014-10-28 18:34:52 -04002918 return r;
2919}
2920
2921/*
2922 * We need to be able to change a mapping table under a mounted
2923 * filesystem. For example we might want to move some data in
2924 * the background. Before the table can be swapped with
2925 * dm_bind_table, dm_suspend must be called to flush any in
2926 * flight bios and ensure that any further io gets deferred.
2927 */
2928/*
2929 * Suspend mechanism in request-based dm.
2930 *
2931 * 1. Flush all I/Os by lock_fs() if needed.
2932 * 2. Stop dispatching any I/O by stopping the request_queue.
2933 * 3. Wait for all in-flight I/Os to be completed or requeued.
2934 *
2935 * To abort suspend, start the request_queue.
2936 */
2937int dm_suspend(struct mapped_device *md, unsigned suspend_flags)
2938{
2939 struct dm_table *map = NULL;
2940 int r = 0;
2941
2942retry:
2943 mutex_lock_nested(&md->suspend_lock, SINGLE_DEPTH_NESTING);
2944
2945 if (dm_suspended_md(md)) {
2946 r = -EINVAL;
2947 goto out_unlock;
2948 }
2949
2950 if (dm_suspended_internally_md(md)) {
2951 /* already internally suspended, wait for internal resume */
2952 mutex_unlock(&md->suspend_lock);
2953 r = wait_on_bit(&md->flags, DMF_SUSPENDED_INTERNALLY, TASK_INTERRUPTIBLE);
2954 if (r)
2955 return r;
2956 goto retry;
2957 }
2958
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002959 map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mike Snitzerffcc3932014-10-28 18:34:52 -04002960
2961 r = __dm_suspend(md, map, suspend_flags, TASK_INTERRUPTIBLE);
2962 if (r)
2963 goto out_unlock;
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002964
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965 set_bit(DMF_SUSPENDED, &md->flags);
2966
Kiyoshi Ueda4d4471c2009-12-10 23:52:26 +00002967 dm_table_postsuspend_targets(map);
2968
Alasdair G Kergond2874832006-11-08 17:44:43 -08002969out_unlock:
Daniel Walkere61290a2008-02-08 02:10:08 +00002970 mutex_unlock(&md->suspend_lock);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002971 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972}
2973
Mike Snitzerffcc3932014-10-28 18:34:52 -04002974static int __dm_resume(struct mapped_device *md, struct dm_table *map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975{
Mike Snitzerffcc3932014-10-28 18:34:52 -04002976 if (map) {
2977 int r = dm_table_resume_targets(map);
2978 if (r)
2979 return r;
2980 }
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002981
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002982 dm_queue_flush(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002983
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002984 /*
2985 * Flushing deferred I/Os must be done after targets are resumed
2986 * so that mapping of targets can work correctly.
2987 * Request-based dm is queueing the deferred I/Os in its request_queue.
2988 */
2989 if (dm_request_based(md))
2990 start_queue(md->queue);
2991
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002992 unlock_fs(md);
2993
Mike Snitzerffcc3932014-10-28 18:34:52 -04002994 return 0;
2995}
2996
2997int dm_resume(struct mapped_device *md)
2998{
2999 int r = -EINVAL;
3000 struct dm_table *map = NULL;
3001
3002retry:
3003 mutex_lock_nested(&md->suspend_lock, SINGLE_DEPTH_NESTING);
3004
3005 if (!dm_suspended_md(md))
3006 goto out;
3007
3008 if (dm_suspended_internally_md(md)) {
3009 /* already internally suspended, wait for internal resume */
3010 mutex_unlock(&md->suspend_lock);
3011 r = wait_on_bit(&md->flags, DMF_SUSPENDED_INTERNALLY, TASK_INTERRUPTIBLE);
3012 if (r)
3013 return r;
3014 goto retry;
3015 }
3016
Eric Dumazeta12f5d42014-11-23 09:34:29 -08003017 map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mike Snitzerffcc3932014-10-28 18:34:52 -04003018 if (!map || !dm_table_get_size(map))
3019 goto out;
3020
3021 r = __dm_resume(md, map);
3022 if (r)
3023 goto out;
3024
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07003025 clear_bit(DMF_SUSPENDED, &md->flags);
3026
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07003027 r = 0;
3028out:
Daniel Walkere61290a2008-02-08 02:10:08 +00003029 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07003030
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07003031 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032}
3033
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003034/*
3035 * Internal suspend/resume works like userspace-driven suspend. It waits
3036 * until all bios finish and prevents issuing new bios to the target drivers.
3037 * It may be used only from the kernel.
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003038 */
3039
Mike Snitzerffcc3932014-10-28 18:34:52 -04003040static void __dm_internal_suspend(struct mapped_device *md, unsigned suspend_flags)
3041{
3042 struct dm_table *map = NULL;
3043
Mikulas Patocka96b26c82015-01-08 18:52:26 -05003044 if (md->internal_suspend_count++)
Mike Snitzerffcc3932014-10-28 18:34:52 -04003045 return; /* nested internal suspend */
3046
3047 if (dm_suspended_md(md)) {
3048 set_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
3049 return; /* nest suspend */
3050 }
3051
Eric Dumazeta12f5d42014-11-23 09:34:29 -08003052 map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mike Snitzerffcc3932014-10-28 18:34:52 -04003053
3054 /*
3055 * Using TASK_UNINTERRUPTIBLE because only NOFLUSH internal suspend is
3056 * supported. Properly supporting a TASK_INTERRUPTIBLE internal suspend
3057 * would require changing .presuspend to return an error -- avoid this
3058 * until there is a need for more elaborate variants of internal suspend.
3059 */
3060 (void) __dm_suspend(md, map, suspend_flags, TASK_UNINTERRUPTIBLE);
3061
3062 set_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
3063
3064 dm_table_postsuspend_targets(map);
3065}
3066
3067static void __dm_internal_resume(struct mapped_device *md)
3068{
Mikulas Patocka96b26c82015-01-08 18:52:26 -05003069 BUG_ON(!md->internal_suspend_count);
3070
3071 if (--md->internal_suspend_count)
Mike Snitzerffcc3932014-10-28 18:34:52 -04003072 return; /* resume from nested internal suspend */
3073
3074 if (dm_suspended_md(md))
3075 goto done; /* resume from nested suspend */
3076
3077 /*
3078 * NOTE: existing callers don't need to call dm_table_resume_targets
3079 * (which may fail -- so best to avoid it for now by passing NULL map)
3080 */
3081 (void) __dm_resume(md, NULL);
3082
3083done:
3084 clear_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
3085 smp_mb__after_atomic();
3086 wake_up_bit(&md->flags, DMF_SUSPENDED_INTERNALLY);
3087}
3088
3089void dm_internal_suspend_noflush(struct mapped_device *md)
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003090{
3091 mutex_lock(&md->suspend_lock);
Mike Snitzerffcc3932014-10-28 18:34:52 -04003092 __dm_internal_suspend(md, DM_SUSPEND_NOFLUSH_FLAG);
3093 mutex_unlock(&md->suspend_lock);
3094}
3095EXPORT_SYMBOL_GPL(dm_internal_suspend_noflush);
3096
3097void dm_internal_resume(struct mapped_device *md)
3098{
3099 mutex_lock(&md->suspend_lock);
3100 __dm_internal_resume(md);
3101 mutex_unlock(&md->suspend_lock);
3102}
3103EXPORT_SYMBOL_GPL(dm_internal_resume);
3104
3105/*
3106 * Fast variants of internal suspend/resume hold md->suspend_lock,
3107 * which prevents interaction with userspace-driven suspend.
3108 */
3109
3110void dm_internal_suspend_fast(struct mapped_device *md)
3111{
3112 mutex_lock(&md->suspend_lock);
3113 if (dm_suspended_md(md) || dm_suspended_internally_md(md))
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003114 return;
3115
3116 set_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
3117 synchronize_srcu(&md->io_barrier);
3118 flush_workqueue(md->wq);
3119 dm_wait_for_completion(md, TASK_UNINTERRUPTIBLE);
3120}
Mikulas Patockab735fed2015-02-26 11:40:35 -05003121EXPORT_SYMBOL_GPL(dm_internal_suspend_fast);
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003122
Mike Snitzerffcc3932014-10-28 18:34:52 -04003123void dm_internal_resume_fast(struct mapped_device *md)
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003124{
Mike Snitzerffcc3932014-10-28 18:34:52 -04003125 if (dm_suspended_md(md) || dm_suspended_internally_md(md))
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003126 goto done;
3127
3128 dm_queue_flush(md);
3129
3130done:
3131 mutex_unlock(&md->suspend_lock);
3132}
Mikulas Patockab735fed2015-02-26 11:40:35 -05003133EXPORT_SYMBOL_GPL(dm_internal_resume_fast);
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003134
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135/*-----------------------------------------------------------------
3136 * Event notification.
3137 *---------------------------------------------------------------*/
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00003138int dm_kobject_uevent(struct mapped_device *md, enum kobject_action action,
Milan Broz60935eb2009-06-22 10:12:30 +01003139 unsigned cookie)
Alasdair G Kergon69267a32007-12-13 14:15:57 +00003140{
Milan Broz60935eb2009-06-22 10:12:30 +01003141 char udev_cookie[DM_COOKIE_LENGTH];
3142 char *envp[] = { udev_cookie, NULL };
3143
3144 if (!cookie)
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00003145 return kobject_uevent(&disk_to_dev(md->disk)->kobj, action);
Milan Broz60935eb2009-06-22 10:12:30 +01003146 else {
3147 snprintf(udev_cookie, DM_COOKIE_LENGTH, "%s=%u",
3148 DM_COOKIE_ENV_VAR_NAME, cookie);
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00003149 return kobject_uevent_env(&disk_to_dev(md->disk)->kobj,
3150 action, envp);
Milan Broz60935eb2009-06-22 10:12:30 +01003151 }
Alasdair G Kergon69267a32007-12-13 14:15:57 +00003152}
3153
Mike Anderson7a8c3d32007-10-19 22:48:01 +01003154uint32_t dm_next_uevent_seq(struct mapped_device *md)
3155{
3156 return atomic_add_return(1, &md->uevent_seq);
3157}
3158
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159uint32_t dm_get_event_nr(struct mapped_device *md)
3160{
3161 return atomic_read(&md->event_nr);
3162}
3163
3164int dm_wait_event(struct mapped_device *md, int event_nr)
3165{
3166 return wait_event_interruptible(md->eventq,
3167 (event_nr != atomic_read(&md->event_nr)));
3168}
3169
Mike Anderson7a8c3d32007-10-19 22:48:01 +01003170void dm_uevent_add(struct mapped_device *md, struct list_head *elist)
3171{
3172 unsigned long flags;
3173
3174 spin_lock_irqsave(&md->uevent_lock, flags);
3175 list_add(elist, &md->uevent_list);
3176 spin_unlock_irqrestore(&md->uevent_lock, flags);
3177}
3178
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179/*
3180 * The gendisk is only valid as long as you have a reference
3181 * count on 'md'.
3182 */
3183struct gendisk *dm_disk(struct mapped_device *md)
3184{
3185 return md->disk;
3186}
3187
Milan Broz784aae72009-01-06 03:05:12 +00003188struct kobject *dm_kobject(struct mapped_device *md)
3189{
Mikulas Patocka2995fa72014-01-13 19:37:54 -05003190 return &md->kobj_holder.kobj;
Milan Broz784aae72009-01-06 03:05:12 +00003191}
3192
Milan Broz784aae72009-01-06 03:05:12 +00003193struct mapped_device *dm_get_from_kobject(struct kobject *kobj)
3194{
3195 struct mapped_device *md;
3196
Mikulas Patocka2995fa72014-01-13 19:37:54 -05003197 md = container_of(kobj, struct mapped_device, kobj_holder.kobj);
Milan Broz784aae72009-01-06 03:05:12 +00003198
Milan Broz4d89b7b2009-06-22 10:12:11 +01003199 if (test_bit(DMF_FREEING, &md->flags) ||
Mike Anderson432a2122009-12-10 23:52:20 +00003200 dm_deleting_md(md))
Milan Broz4d89b7b2009-06-22 10:12:11 +01003201 return NULL;
3202
Milan Broz784aae72009-01-06 03:05:12 +00003203 dm_get(md);
3204 return md;
3205}
3206
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +00003207int dm_suspended_md(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208{
3209 return test_bit(DMF_SUSPENDED, &md->flags);
3210}
3211
Mike Snitzerffcc3932014-10-28 18:34:52 -04003212int dm_suspended_internally_md(struct mapped_device *md)
3213{
3214 return test_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
3215}
3216
Mikulas Patocka2c140a22013-11-01 18:27:41 -04003217int dm_test_deferred_remove_flag(struct mapped_device *md)
3218{
3219 return test_bit(DMF_DEFERRED_REMOVE, &md->flags);
3220}
3221
Kiyoshi Ueda64dbce52009-12-10 23:52:27 +00003222int dm_suspended(struct dm_target *ti)
3223{
Kiyoshi Uedaecdb2e22010-03-06 02:29:52 +00003224 return dm_suspended_md(dm_table_get_md(ti->table));
Kiyoshi Ueda64dbce52009-12-10 23:52:27 +00003225}
3226EXPORT_SYMBOL_GPL(dm_suspended);
3227
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08003228int dm_noflush_suspending(struct dm_target *ti)
3229{
Kiyoshi Uedaecdb2e22010-03-06 02:29:52 +00003230 return __noflush_suspending(dm_table_get_md(ti->table));
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08003231}
3232EXPORT_SYMBOL_GPL(dm_noflush_suspending);
3233
Mikulas Patockac0820cf2012-12-21 20:23:38 +00003234struct dm_md_mempools *dm_alloc_md_mempools(unsigned type, unsigned integrity, unsigned per_bio_data_size)
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003235{
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003236 struct dm_md_mempools *pools = kzalloc(sizeof(*pools), GFP_KERNEL);
3237 struct kmem_cache *cachep;
Mike Snitzere5863d92014-12-17 21:08:12 -05003238 unsigned int pool_size = 0;
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003239 unsigned int front_pad;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003240
3241 if (!pools)
3242 return NULL;
3243
Mike Snitzere5863d92014-12-17 21:08:12 -05003244 switch (type) {
3245 case DM_TYPE_BIO_BASED:
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003246 cachep = _io_cache;
Mike Snitzere8603132013-09-12 18:06:12 -04003247 pool_size = dm_get_reserved_bio_based_ios();
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003248 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 -05003249 break;
3250 case DM_TYPE_REQUEST_BASED:
Mike Snitzerf4790822013-09-12 18:06:12 -04003251 pool_size = dm_get_reserved_rq_based_ios();
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05003252 pools->rq_pool = mempool_create_slab_pool(pool_size, _rq_cache);
3253 if (!pools->rq_pool)
3254 goto out;
Mike Snitzere5863d92014-12-17 21:08:12 -05003255 /* fall through to setup remaining rq-based pools */
3256 case DM_TYPE_MQ_REQUEST_BASED:
3257 cachep = _rq_tio_cache;
3258 if (!pool_size)
3259 pool_size = dm_get_reserved_rq_based_ios();
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003260 front_pad = offsetof(struct dm_rq_clone_bio_info, clone);
3261 /* per_bio_data_size is not used. See __bind_mempools(). */
3262 WARN_ON(per_bio_data_size != 0);
Mike Snitzere5863d92014-12-17 21:08:12 -05003263 break;
3264 default:
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003265 goto out;
Mike Snitzere5863d92014-12-17 21:08:12 -05003266 }
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003267
Mike Snitzer6cfa5852013-09-12 18:06:11 -04003268 pools->io_pool = mempool_create_slab_pool(pool_size, cachep);
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003269 if (!pools->io_pool)
3270 goto out;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003271
Junichi Nomura3d8aab22014-10-03 11:55:26 +00003272 pools->bs = bioset_create_nobvec(pool_size, front_pad);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003273 if (!pools->bs)
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003274 goto out;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003275
Martin K. Petersena91a2782011-03-17 11:11:05 +01003276 if (integrity && bioset_integrity_create(pools->bs, pool_size))
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003277 goto out;
Martin K. Petersena91a2782011-03-17 11:11:05 +01003278
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003279 return pools;
3280
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003281out:
3282 dm_free_md_mempools(pools);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003283
3284 return NULL;
3285}
3286
3287void dm_free_md_mempools(struct dm_md_mempools *pools)
3288{
3289 if (!pools)
3290 return;
3291
3292 if (pools->io_pool)
3293 mempool_destroy(pools->io_pool);
3294
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05003295 if (pools->rq_pool)
3296 mempool_destroy(pools->rq_pool);
3297
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003298 if (pools->bs)
3299 bioset_free(pools->bs);
3300
3301 kfree(pools);
3302}
3303
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07003304static const struct block_device_operations dm_blk_dops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305 .open = dm_blk_open,
3306 .release = dm_blk_close,
Milan Brozaa129a22006-10-03 01:15:15 -07003307 .ioctl = dm_blk_ioctl,
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08003308 .getgeo = dm_blk_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309 .owner = THIS_MODULE
3310};
3311
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312/*
3313 * module hooks
3314 */
3315module_init(dm_init);
3316module_exit(dm_exit);
3317
3318module_param(major, uint, 0);
3319MODULE_PARM_DESC(major, "The major number of the device mapper");
Mike Snitzerf4790822013-09-12 18:06:12 -04003320
Mike Snitzere8603132013-09-12 18:06:12 -04003321module_param(reserved_bio_based_ios, uint, S_IRUGO | S_IWUSR);
3322MODULE_PARM_DESC(reserved_bio_based_ios, "Reserved IOs in bio-based mempools");
3323
Mike Snitzerf4790822013-09-12 18:06:12 -04003324module_param(reserved_rq_based_ios, uint, S_IRUGO | S_IWUSR);
3325MODULE_PARM_DESC(reserved_rq_based_ios, "Reserved IOs in request-based mempools");
3326
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327MODULE_DESCRIPTION(DM_NAME " driver");
3328MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
3329MODULE_LICENSE("GPL");