blob: 8001fe9e3434734ad92c8109ef8fa860906238ce [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2001, 2002 Sistina Software (UK) Limited.
Milan Broz784aae72009-01-06 03:05:12 +00003 * Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * This file is released under the GPL.
6 */
7
8#include "dm.h"
Mike Anderson51e5b2b2007-10-19 22:48:00 +01009#include "dm-uevent.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
11#include <linux/init.h>
12#include <linux/module.h>
Arjan van de Ven48c9c272006-03-27 01:18:20 -080013#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/moduleparam.h>
15#include <linux/blkpg.h>
16#include <linux/bio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/mempool.h>
18#include <linux/slab.h>
19#include <linux/idr.h>
Darrick J. Wong3ac51e72006-03-27 01:17:54 -080020#include <linux/hdreg.h>
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +010021#include <linux/delay.h>
Mike Snitzerffcc3932014-10-28 18:34:52 -040022#include <linux/wait.h>
Keith Busch2eb6e1e2014-10-17 17:46:36 -060023#include <linux/kthread.h>
Li Zefan55782132009-06-09 13:43:05 +080024
25#include <trace/events/block.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Alasdair G Kergon72d94862006-06-26 00:27:35 -070027#define DM_MSG_PREFIX "core"
28
Namhyung Kim71a16732011-10-31 20:18:54 +000029#ifdef CONFIG_PRINTK
30/*
31 * ratelimit state to be used in DMXXX_LIMIT().
32 */
33DEFINE_RATELIMIT_STATE(dm_ratelimit_state,
34 DEFAULT_RATELIMIT_INTERVAL,
35 DEFAULT_RATELIMIT_BURST);
36EXPORT_SYMBOL(dm_ratelimit_state);
37#endif
38
Milan Broz60935eb2009-06-22 10:12:30 +010039/*
40 * Cookies are numeric values sent with CHANGE and REMOVE
41 * uevents while resuming, removing or renaming the device.
42 */
43#define DM_COOKIE_ENV_VAR_NAME "DM_COOKIE"
44#define DM_COOKIE_LENGTH 24
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046static const char *_name = DM_NAME;
47
48static unsigned int major = 0;
49static unsigned int _major = 0;
50
Alasdair G Kergond15b7742011-08-02 12:32:01 +010051static DEFINE_IDR(_minor_idr);
52
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -070053static DEFINE_SPINLOCK(_minor_lock);
Mikulas Patocka2c140a22013-11-01 18:27:41 -040054
55static void do_deferred_remove(struct work_struct *w);
56
57static DECLARE_WORK(deferred_remove_work, do_deferred_remove);
58
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -040059static struct workqueue_struct *deferred_remove_workqueue;
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061/*
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000062 * For bio-based dm.
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 * One of these is allocated per bio.
64 */
65struct dm_io {
66 struct mapped_device *md;
67 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 atomic_t io_count;
Richard Kennedy6ae2fa62008-07-21 12:00:28 +010069 struct bio *bio;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -080070 unsigned long start_time;
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +010071 spinlock_t endio_lock;
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -040072 struct dm_stats_aux stats_aux;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073};
74
75/*
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000076 * For request-based dm.
77 * One of these is allocated per request.
78 */
79struct dm_rq_target_io {
80 struct mapped_device *md;
81 struct dm_target *ti;
Mike Snitzer1ae49ea2014-12-05 17:11:05 -050082 struct request *orig, *clone;
Keith Busch2eb6e1e2014-10-17 17:46:36 -060083 struct kthread_work work;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000084 int error;
85 union map_info info;
86};
87
88/*
Kent Overstreet94818742012-09-07 13:44:01 -070089 * For request-based dm - the bio clones we allocate are embedded in these
90 * structs.
91 *
92 * We allocate these with bio_alloc_bioset, using the front_pad parameter when
93 * the bioset is created - this means the bio has to come at the end of the
94 * struct.
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000095 */
96struct dm_rq_clone_bio_info {
97 struct bio *orig;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +010098 struct dm_rq_target_io *tio;
Kent Overstreet94818742012-09-07 13:44:01 -070099 struct bio clone;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000100};
101
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100102union map_info *dm_get_rq_mapinfo(struct request *rq)
103{
104 if (rq && rq->end_io_data)
105 return &((struct dm_rq_target_io *)rq->end_io_data)->info;
106 return NULL;
107}
108EXPORT_SYMBOL_GPL(dm_get_rq_mapinfo);
109
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -0700110#define MINOR_ALLOCED ((void *)-1)
111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112/*
113 * Bits for the md->flags field.
114 */
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +0100115#define DMF_BLOCK_IO_FOR_SUSPEND 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116#define DMF_SUSPENDED 1
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -0800117#define DMF_FROZEN 2
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700118#define DMF_FREEING 3
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700119#define DMF_DELETING 4
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800120#define DMF_NOFLUSH_SUSPENDING 5
Mikulas Patockad5b9dd02011-08-02 12:32:04 +0100121#define DMF_MERGE_IS_OPTIONAL 6
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400122#define DMF_DEFERRED_REMOVE 7
Mike Snitzerffcc3932014-10-28 18:34:52 -0400123#define DMF_SUSPENDED_INTERNALLY 8
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Milan Broz304f3f62008-02-08 02:11:17 +0000125/*
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100126 * A dummy definition to make RCU happy.
127 * struct dm_table should never be dereferenced in this file.
128 */
129struct dm_table {
130 int undefined__;
131};
132
133/*
Milan Broz304f3f62008-02-08 02:11:17 +0000134 * Work processed by per-device workqueue.
135 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136struct mapped_device {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100137 struct srcu_struct io_barrier;
Daniel Walkere61290a2008-02-08 02:10:08 +0000138 struct mutex suspend_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 atomic_t holders;
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700140 atomic_t open_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Mikulas Patocka2a7faeb2013-07-10 23:41:18 +0100142 /*
143 * The current mapping.
144 * Use dm_get_live_table{_fast} or take suspend_lock for
145 * dereference.
146 */
Pranith Kumar6fa99522014-10-28 15:09:57 -0700147 struct dm_table __rcu *map;
Mikulas Patocka2a7faeb2013-07-10 23:41:18 +0100148
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500149 struct list_head table_devices;
150 struct mutex table_devices_lock;
151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 unsigned long flags;
153
Jens Axboe165125e2007-07-24 09:28:11 +0200154 struct request_queue *queue;
Mike Snitzera5664da2010-08-12 04:14:01 +0100155 unsigned type;
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +0100156 /* Protect queue and type against concurrent access. */
Mike Snitzera5664da2010-08-12 04:14:01 +0100157 struct mutex type_lock;
158
Alasdair G Kergon36a04562011-10-31 20:19:04 +0000159 struct target_type *immutable_target_type;
160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 struct gendisk *disk;
Mike Anderson7e51f252006-03-27 01:17:52 -0800162 char name[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164 void *interface_ptr;
165
166 /*
167 * A list of ios that arrived while we were suspended.
168 */
Nikanth Karthikesan316d3152009-10-06 20:16:55 +0200169 atomic_t pending[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 wait_queue_head_t wait;
Mikulas Patocka53d59142009-04-02 19:55:37 +0100171 struct work_struct work;
Kiyoshi Ueda74859362006-12-08 02:41:02 -0800172 struct bio_list deferred;
Mikulas Patocka022c2612009-04-02 19:55:39 +0100173 spinlock_t deferred_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
175 /*
Tejun Heo29e40132010-09-08 18:07:00 +0200176 * Processing queue (flush)
Milan Broz304f3f62008-02-08 02:11:17 +0000177 */
178 struct workqueue_struct *wq;
179
180 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 * io objects are allocated from here.
182 */
183 mempool_t *io_pool;
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500184 mempool_t *rq_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Stefan Bader9faf4002006-10-03 01:15:41 -0700186 struct bio_set *bs;
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 /*
189 * Event handling.
190 */
191 atomic_t event_nr;
192 wait_queue_head_t eventq;
Mike Anderson7a8c3d32007-10-19 22:48:01 +0100193 atomic_t uevent_seq;
194 struct list_head uevent_list;
195 spinlock_t uevent_lock; /* Protect access to uevent_list */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197 /*
198 * freeze/thaw support require holding onto a super block
199 */
200 struct super_block *frozen_sb;
Mikulas Patockadb8fef42009-06-22 10:12:15 +0100201 struct block_device *bdev;
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800202
203 /* forced geometry settings */
204 struct hd_geometry geometry;
Milan Broz784aae72009-01-06 03:05:12 +0000205
Mikulas Patocka2995fa72014-01-13 19:37:54 -0500206 /* kobject and completion */
207 struct dm_kobject_holder kobj_holder;
Mikulas Patockabe35f482014-01-06 23:01:22 -0500208
Tejun Heod87f4c12010-09-03 11:56:19 +0200209 /* zero-length flush that will be cloned and submitted to targets */
210 struct bio flush_bio;
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400211
Mikulas Patocka96b26c82015-01-08 18:52:26 -0500212 /* the number of internal suspends */
213 unsigned internal_suspend_count;
214
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400215 struct dm_stats stats;
Keith Busch2eb6e1e2014-10-17 17:46:36 -0600216
217 struct kthread_worker kworker;
218 struct task_struct *kworker_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219};
220
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +0100221/*
222 * For mempools pre-allocation at the table loading time.
223 */
224struct dm_md_mempools {
225 mempool_t *io_pool;
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500226 mempool_t *rq_pool;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +0100227 struct bio_set *bs;
228};
229
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500230struct table_device {
231 struct list_head list;
232 atomic_t count;
233 struct dm_dev dm_dev;
234};
235
Mike Snitzer6cfa5852013-09-12 18:06:11 -0400236#define RESERVED_BIO_BASED_IOS 16
237#define RESERVED_REQUEST_BASED_IOS 256
Mike Snitzerf4790822013-09-12 18:06:12 -0400238#define RESERVED_MAX_IOS 1024
Christoph Lametere18b8902006-12-06 20:33:20 -0800239static struct kmem_cache *_io_cache;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000240static struct kmem_cache *_rq_tio_cache;
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500241static struct kmem_cache *_rq_cache;
Kent Overstreet94818742012-09-07 13:44:01 -0700242
Mike Snitzerf4790822013-09-12 18:06:12 -0400243/*
Mike Snitzere8603132013-09-12 18:06:12 -0400244 * Bio-based DM's mempools' reserved IOs set by the user.
245 */
246static unsigned reserved_bio_based_ios = RESERVED_BIO_BASED_IOS;
247
248/*
Mike Snitzerf4790822013-09-12 18:06:12 -0400249 * Request-based DM's mempools' reserved IOs set by the user.
250 */
251static unsigned reserved_rq_based_ios = RESERVED_REQUEST_BASED_IOS;
252
253static unsigned __dm_get_reserved_ios(unsigned *reserved_ios,
254 unsigned def, unsigned max)
255{
256 unsigned ios = ACCESS_ONCE(*reserved_ios);
257 unsigned modified_ios = 0;
258
259 if (!ios)
260 modified_ios = def;
261 else if (ios > max)
262 modified_ios = max;
263
264 if (modified_ios) {
265 (void)cmpxchg(reserved_ios, ios, modified_ios);
266 ios = modified_ios;
267 }
268
269 return ios;
270}
271
Mike Snitzere8603132013-09-12 18:06:12 -0400272unsigned dm_get_reserved_bio_based_ios(void)
273{
274 return __dm_get_reserved_ios(&reserved_bio_based_ios,
275 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{
281 return __dm_get_reserved_ios(&reserved_rq_based_ios,
282 RESERVED_REQUEST_BASED_IOS, RESERVED_MAX_IOS);
283}
284EXPORT_SYMBOL_GPL(dm_get_reserved_rq_based_ios);
285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286static int __init local_init(void)
287{
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100288 int r = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 /* allocate a slab for the dm_ios */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100291 _io_cache = KMEM_CACHE(dm_io, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 if (!_io_cache)
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100293 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000295 _rq_tio_cache = KMEM_CACHE(dm_rq_target_io, 0);
296 if (!_rq_tio_cache)
Mikulas Patockadba14162012-10-12 21:02:15 +0100297 goto out_free_io_cache;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000298
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500299 _rq_cache = kmem_cache_create("dm_clone_request", sizeof(struct request),
300 __alignof__(struct request), 0, NULL);
301 if (!_rq_cache)
302 goto out_free_rq_tio_cache;
303
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100304 r = dm_uevent_init();
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100305 if (r)
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500306 goto out_free_rq_cache;
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100307
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400308 deferred_remove_workqueue = alloc_workqueue("kdmremove", WQ_UNBOUND, 1);
309 if (!deferred_remove_workqueue) {
310 r = -ENOMEM;
311 goto out_uevent_exit;
312 }
313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 _major = major;
315 r = register_blkdev(_major, _name);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100316 if (r < 0)
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400317 goto out_free_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
319 if (!_major)
320 _major = r;
321
322 return 0;
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100323
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400324out_free_workqueue:
325 destroy_workqueue(deferred_remove_workqueue);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100326out_uevent_exit:
327 dm_uevent_exit();
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500328out_free_rq_cache:
329 kmem_cache_destroy(_rq_cache);
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000330out_free_rq_tio_cache:
331 kmem_cache_destroy(_rq_tio_cache);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100332out_free_io_cache:
333 kmem_cache_destroy(_io_cache);
334
335 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336}
337
338static void local_exit(void)
339{
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400340 flush_scheduled_work();
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400341 destroy_workqueue(deferred_remove_workqueue);
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400342
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500343 kmem_cache_destroy(_rq_cache);
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000344 kmem_cache_destroy(_rq_tio_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 kmem_cache_destroy(_io_cache);
Akinobu Mita00d59402007-07-17 04:03:46 -0700346 unregister_blkdev(_major, _name);
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100347 dm_uevent_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
349 _major = 0;
350
351 DMINFO("cleaned up");
352}
353
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000354static int (*_inits[])(void) __initdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 local_init,
356 dm_target_init,
357 dm_linear_init,
358 dm_stripe_init,
Mikulas Patocka952b3552009-12-10 23:51:57 +0000359 dm_io_init,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100360 dm_kcopyd_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 dm_interface_init,
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400362 dm_statistics_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363};
364
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000365static void (*_exits[])(void) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 local_exit,
367 dm_target_exit,
368 dm_linear_exit,
369 dm_stripe_exit,
Mikulas Patocka952b3552009-12-10 23:51:57 +0000370 dm_io_exit,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100371 dm_kcopyd_exit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 dm_interface_exit,
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400373 dm_statistics_exit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374};
375
376static int __init dm_init(void)
377{
378 const int count = ARRAY_SIZE(_inits);
379
380 int r, i;
381
382 for (i = 0; i < count; i++) {
383 r = _inits[i]();
384 if (r)
385 goto bad;
386 }
387
388 return 0;
389
390 bad:
391 while (i--)
392 _exits[i]();
393
394 return r;
395}
396
397static void __exit dm_exit(void)
398{
399 int i = ARRAY_SIZE(_exits);
400
401 while (i--)
402 _exits[i]();
Alasdair G Kergond15b7742011-08-02 12:32:01 +0100403
404 /*
405 * Should be empty by this point.
406 */
Alasdair G Kergond15b7742011-08-02 12:32:01 +0100407 idr_destroy(&_minor_idr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408}
409
410/*
411 * Block device functions
412 */
Mike Anderson432a2122009-12-10 23:52:20 +0000413int dm_deleting_md(struct mapped_device *md)
414{
415 return test_bit(DMF_DELETING, &md->flags);
416}
417
Al Virofe5f9f22008-03-02 10:29:31 -0500418static int dm_blk_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419{
420 struct mapped_device *md;
421
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700422 spin_lock(&_minor_lock);
423
Al Virofe5f9f22008-03-02 10:29:31 -0500424 md = bdev->bd_disk->private_data;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700425 if (!md)
426 goto out;
427
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700428 if (test_bit(DMF_FREEING, &md->flags) ||
Mike Anderson432a2122009-12-10 23:52:20 +0000429 dm_deleting_md(md)) {
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700430 md = NULL;
431 goto out;
432 }
433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 dm_get(md);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700435 atomic_inc(&md->open_count);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700436out:
437 spin_unlock(&_minor_lock);
438
439 return md ? 0 : -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440}
441
Al Virodb2a1442013-05-05 21:52:57 -0400442static void dm_blk_close(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443{
Mike Snitzer63a4f062015-03-23 17:01:43 -0400444 struct mapped_device *md;
Arnd Bergmann6e9624b2010-08-07 18:25:34 +0200445
Milan Broz4a1aeb92011-01-13 19:59:48 +0000446 spin_lock(&_minor_lock);
447
Mike Snitzer63a4f062015-03-23 17:01:43 -0400448 md = disk->private_data;
449 if (WARN_ON(!md))
450 goto out;
451
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400452 if (atomic_dec_and_test(&md->open_count) &&
453 (test_bit(DMF_DEFERRED_REMOVE, &md->flags)))
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400454 queue_work(deferred_remove_workqueue, &deferred_remove_work);
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 dm_put(md);
Mike Snitzer63a4f062015-03-23 17:01:43 -0400457out:
Milan Broz4a1aeb92011-01-13 19:59:48 +0000458 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459}
460
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700461int dm_open_count(struct mapped_device *md)
462{
463 return atomic_read(&md->open_count);
464}
465
466/*
467 * Guarantees nothing is using the device before it's deleted.
468 */
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400469int dm_lock_for_deletion(struct mapped_device *md, bool mark_deferred, bool only_deferred)
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700470{
471 int r = 0;
472
473 spin_lock(&_minor_lock);
474
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400475 if (dm_open_count(md)) {
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700476 r = -EBUSY;
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400477 if (mark_deferred)
478 set_bit(DMF_DEFERRED_REMOVE, &md->flags);
479 } else if (only_deferred && !test_bit(DMF_DEFERRED_REMOVE, &md->flags))
480 r = -EEXIST;
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700481 else
482 set_bit(DMF_DELETING, &md->flags);
483
484 spin_unlock(&_minor_lock);
485
486 return r;
487}
488
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400489int dm_cancel_deferred_remove(struct mapped_device *md)
490{
491 int r = 0;
492
493 spin_lock(&_minor_lock);
494
495 if (test_bit(DMF_DELETING, &md->flags))
496 r = -EBUSY;
497 else
498 clear_bit(DMF_DEFERRED_REMOVE, &md->flags);
499
500 spin_unlock(&_minor_lock);
501
502 return r;
503}
504
505static void do_deferred_remove(struct work_struct *w)
506{
507 dm_deferred_remove();
508}
509
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400510sector_t dm_get_size(struct mapped_device *md)
511{
512 return get_capacity(md->disk);
513}
514
Mike Snitzer9974fa22014-02-28 15:33:43 +0100515struct request_queue *dm_get_md_queue(struct mapped_device *md)
516{
517 return md->queue;
518}
519
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400520struct dm_stats *dm_get_stats(struct mapped_device *md)
521{
522 return &md->stats;
523}
524
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800525static int dm_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
526{
527 struct mapped_device *md = bdev->bd_disk->private_data;
528
529 return dm_get_geometry(md, geo);
530}
531
Al Virofe5f9f22008-03-02 10:29:31 -0500532static int dm_blk_ioctl(struct block_device *bdev, fmode_t mode,
Milan Brozaa129a22006-10-03 01:15:15 -0700533 unsigned int cmd, unsigned long arg)
534{
Al Virofe5f9f22008-03-02 10:29:31 -0500535 struct mapped_device *md = bdev->bd_disk->private_data;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100536 int srcu_idx;
Hannes Reinecke6c182cd2013-07-10 23:41:15 +0100537 struct dm_table *map;
Milan Brozaa129a22006-10-03 01:15:15 -0700538 struct dm_target *tgt;
539 int r = -ENOTTY;
540
Hannes Reinecke6c182cd2013-07-10 23:41:15 +0100541retry:
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100542 map = dm_get_live_table(md, &srcu_idx);
543
Milan Brozaa129a22006-10-03 01:15:15 -0700544 if (!map || !dm_table_get_size(map))
545 goto out;
546
547 /* We only support devices that have a single target */
548 if (dm_table_get_num_targets(map) != 1)
549 goto out;
550
551 tgt = dm_table_get_target(map, 0);
Mike Snitzer4d341d82014-11-16 14:21:47 -0500552 if (!tgt->type->ioctl)
553 goto out;
Milan Brozaa129a22006-10-03 01:15:15 -0700554
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +0000555 if (dm_suspended_md(md)) {
Milan Brozaa129a22006-10-03 01:15:15 -0700556 r = -EAGAIN;
557 goto out;
558 }
559
Mike Snitzer4d341d82014-11-16 14:21:47 -0500560 r = tgt->type->ioctl(tgt, cmd, arg);
Milan Brozaa129a22006-10-03 01:15:15 -0700561
562out:
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100563 dm_put_live_table(md, srcu_idx);
Milan Brozaa129a22006-10-03 01:15:15 -0700564
Hannes Reinecke6c182cd2013-07-10 23:41:15 +0100565 if (r == -ENOTCONN) {
566 msleep(10);
567 goto retry;
568 }
569
Milan Brozaa129a22006-10-03 01:15:15 -0700570 return r;
571}
572
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100573static struct dm_io *alloc_io(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574{
575 return mempool_alloc(md->io_pool, GFP_NOIO);
576}
577
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100578static void free_io(struct mapped_device *md, struct dm_io *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
580 mempool_free(io, md->io_pool);
581}
582
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100583static void free_tio(struct mapped_device *md, struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584{
Mikulas Patockadba14162012-10-12 21:02:15 +0100585 bio_put(&tio->clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586}
587
Kiyoshi Ueda08885642009-12-10 23:52:15 +0000588static struct dm_rq_target_io *alloc_rq_tio(struct mapped_device *md,
589 gfp_t gfp_mask)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100590{
Jun'ichi Nomura5f015202013-03-01 22:45:48 +0000591 return mempool_alloc(md->io_pool, gfp_mask);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100592}
593
594static void free_rq_tio(struct dm_rq_target_io *tio)
595{
Jun'ichi Nomura5f015202013-03-01 22:45:48 +0000596 mempool_free(tio, tio->md->io_pool);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100597}
598
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500599static struct request *alloc_clone_request(struct mapped_device *md,
600 gfp_t gfp_mask)
601{
602 return mempool_alloc(md->rq_pool, gfp_mask);
603}
604
605static void free_clone_request(struct mapped_device *md, struct request *rq)
606{
607 mempool_free(rq, md->rq_pool);
608}
609
Kiyoshi Ueda90abb8c2009-12-10 23:52:13 +0000610static int md_in_flight(struct mapped_device *md)
611{
612 return atomic_read(&md->pending[READ]) +
613 atomic_read(&md->pending[WRITE]);
614}
615
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800616static void start_io_acct(struct dm_io *io)
617{
618 struct mapped_device *md = io->md;
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400619 struct bio *bio = io->bio;
Tejun Heoc9959052008-08-25 19:47:21 +0900620 int cpu;
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400621 int rw = bio_data_dir(bio);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800622
623 io->start_time = jiffies;
624
Tejun Heo074a7ac2008-08-25 19:56:14 +0900625 cpu = part_stat_lock();
626 part_round_stats(cpu, &dm_disk(md)->part0);
627 part_stat_unlock();
Shaohua Li1e9bb882011-03-22 08:35:35 +0100628 atomic_set(&dm_disk(md)->part0.in_flight[rw],
629 atomic_inc_return(&md->pending[rw]));
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400630
631 if (unlikely(dm_stats_used(&md->stats)))
Kent Overstreet4f024f32013-10-11 15:44:27 -0700632 dm_stats_account_io(&md->stats, bio->bi_rw, bio->bi_iter.bi_sector,
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400633 bio_sectors(bio), false, 0, &io->stats_aux);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800634}
635
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000636static void end_io_acct(struct dm_io *io)
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800637{
638 struct mapped_device *md = io->md;
639 struct bio *bio = io->bio;
640 unsigned long duration = jiffies - io->start_time;
Gu Zheng18c0b222014-11-24 11:05:26 +0800641 int pending;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800642 int rw = bio_data_dir(bio);
643
Gu Zheng18c0b222014-11-24 11:05:26 +0800644 generic_end_io_acct(rw, &dm_disk(md)->part0, io->start_time);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800645
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400646 if (unlikely(dm_stats_used(&md->stats)))
Kent Overstreet4f024f32013-10-11 15:44:27 -0700647 dm_stats_account_io(&md->stats, bio->bi_rw, bio->bi_iter.bi_sector,
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400648 bio_sectors(bio), true, duration, &io->stats_aux);
649
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100650 /*
651 * After this is decremented the bio must not be touched if it is
Tejun Heod87f4c12010-09-03 11:56:19 +0200652 * a flush.
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100653 */
Shaohua Li1e9bb882011-03-22 08:35:35 +0100654 pending = atomic_dec_return(&md->pending[rw]);
655 atomic_set(&dm_disk(md)->part0.in_flight[rw], pending);
Nikanth Karthikesan316d3152009-10-06 20:16:55 +0200656 pending += atomic_read(&md->pending[rw^0x1]);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800657
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000658 /* nudge anyone waiting on suspend queue */
659 if (!pending)
660 wake_up(&md->wait);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800661}
662
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663/*
664 * Add the bio to the list of deferred io.
665 */
Mikulas Patocka92c63902009-04-09 00:27:15 +0100666static void queue_io(struct mapped_device *md, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667{
Kiyoshi Ueda054474202010-09-08 18:07:01 +0200668 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Kiyoshi Ueda054474202010-09-08 18:07:01 +0200670 spin_lock_irqsave(&md->deferred_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 bio_list_add(&md->deferred, bio);
Kiyoshi Ueda054474202010-09-08 18:07:01 +0200672 spin_unlock_irqrestore(&md->deferred_lock, flags);
Tejun Heo6a8736d2010-09-08 18:07:00 +0200673 queue_work(md->wq, &md->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674}
675
676/*
677 * Everyone (including functions in this file), should use this
678 * function to access the md->map field, and make sure they call
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100679 * dm_put_live_table() when finished.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 */
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100681struct dm_table *dm_get_live_table(struct mapped_device *md, int *srcu_idx) __acquires(md->io_barrier)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100683 *srcu_idx = srcu_read_lock(&md->io_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100685 return srcu_dereference(md->map, &md->io_barrier);
686}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100688void dm_put_live_table(struct mapped_device *md, int srcu_idx) __releases(md->io_barrier)
689{
690 srcu_read_unlock(&md->io_barrier, srcu_idx);
691}
692
693void dm_sync_table(struct mapped_device *md)
694{
695 synchronize_srcu(&md->io_barrier);
696 synchronize_rcu_expedited();
697}
698
699/*
700 * A fast alternative to dm_get_live_table/dm_put_live_table.
701 * The caller must not block between these two functions.
702 */
703static struct dm_table *dm_get_live_table_fast(struct mapped_device *md) __acquires(RCU)
704{
705 rcu_read_lock();
706 return rcu_dereference(md->map);
707}
708
709static void dm_put_live_table_fast(struct mapped_device *md) __releases(RCU)
710{
711 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712}
713
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800714/*
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500715 * Open a table device so we can use it as a map destination.
716 */
717static int open_table_device(struct table_device *td, dev_t dev,
718 struct mapped_device *md)
719{
720 static char *_claim_ptr = "I belong to device-mapper";
721 struct block_device *bdev;
722
723 int r;
724
725 BUG_ON(td->dm_dev.bdev);
726
727 bdev = blkdev_get_by_dev(dev, td->dm_dev.mode | FMODE_EXCL, _claim_ptr);
728 if (IS_ERR(bdev))
729 return PTR_ERR(bdev);
730
731 r = bd_link_disk_holder(bdev, dm_disk(md));
732 if (r) {
733 blkdev_put(bdev, td->dm_dev.mode | FMODE_EXCL);
734 return r;
735 }
736
737 td->dm_dev.bdev = bdev;
738 return 0;
739}
740
741/*
742 * Close a table device that we've been using.
743 */
744static void close_table_device(struct table_device *td, struct mapped_device *md)
745{
746 if (!td->dm_dev.bdev)
747 return;
748
749 bd_unlink_disk_holder(td->dm_dev.bdev, dm_disk(md));
750 blkdev_put(td->dm_dev.bdev, td->dm_dev.mode | FMODE_EXCL);
751 td->dm_dev.bdev = NULL;
752}
753
754static struct table_device *find_table_device(struct list_head *l, dev_t dev,
755 fmode_t mode) {
756 struct table_device *td;
757
758 list_for_each_entry(td, l, list)
759 if (td->dm_dev.bdev->bd_dev == dev && td->dm_dev.mode == mode)
760 return td;
761
762 return NULL;
763}
764
765int dm_get_table_device(struct mapped_device *md, dev_t dev, fmode_t mode,
766 struct dm_dev **result) {
767 int r;
768 struct table_device *td;
769
770 mutex_lock(&md->table_devices_lock);
771 td = find_table_device(&md->table_devices, dev, mode);
772 if (!td) {
773 td = kmalloc(sizeof(*td), GFP_KERNEL);
774 if (!td) {
775 mutex_unlock(&md->table_devices_lock);
776 return -ENOMEM;
777 }
778
779 td->dm_dev.mode = mode;
780 td->dm_dev.bdev = NULL;
781
782 if ((r = open_table_device(td, dev, md))) {
783 mutex_unlock(&md->table_devices_lock);
784 kfree(td);
785 return r;
786 }
787
788 format_dev_t(td->dm_dev.name, dev);
789
790 atomic_set(&td->count, 0);
791 list_add(&td->list, &md->table_devices);
792 }
793 atomic_inc(&td->count);
794 mutex_unlock(&md->table_devices_lock);
795
796 *result = &td->dm_dev;
797 return 0;
798}
799EXPORT_SYMBOL_GPL(dm_get_table_device);
800
801void dm_put_table_device(struct mapped_device *md, struct dm_dev *d)
802{
803 struct table_device *td = container_of(d, struct table_device, dm_dev);
804
805 mutex_lock(&md->table_devices_lock);
806 if (atomic_dec_and_test(&td->count)) {
807 close_table_device(td, md);
808 list_del(&td->list);
809 kfree(td);
810 }
811 mutex_unlock(&md->table_devices_lock);
812}
813EXPORT_SYMBOL(dm_put_table_device);
814
815static void free_table_devices(struct list_head *devices)
816{
817 struct list_head *tmp, *next;
818
819 list_for_each_safe(tmp, next, devices) {
820 struct table_device *td = list_entry(tmp, struct table_device, list);
821
822 DMWARN("dm_destroy: %s still exists with %d references",
823 td->dm_dev.name, atomic_read(&td->count));
824 kfree(td);
825 }
826}
827
828/*
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800829 * Get the geometry associated with a dm device
830 */
831int dm_get_geometry(struct mapped_device *md, struct hd_geometry *geo)
832{
833 *geo = md->geometry;
834
835 return 0;
836}
837
838/*
839 * Set the geometry of a device.
840 */
841int dm_set_geometry(struct mapped_device *md, struct hd_geometry *geo)
842{
843 sector_t sz = (sector_t)geo->cylinders * geo->heads * geo->sectors;
844
845 if (geo->start > sz) {
846 DMWARN("Start sector is beyond the geometry limits.");
847 return -EINVAL;
848 }
849
850 md->geometry = *geo;
851
852 return 0;
853}
854
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855/*-----------------------------------------------------------------
856 * CRUD START:
857 * A more elegant soln is in the works that uses the queue
858 * merge fn, unfortunately there are a couple of changes to
859 * the block layer that I want to make for this. So in the
860 * interests of getting something for people to use I give
861 * you this clearly demarcated crap.
862 *---------------------------------------------------------------*/
863
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800864static int __noflush_suspending(struct mapped_device *md)
865{
866 return test_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
867}
868
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869/*
870 * Decrements the number of outstanding ios that a bio has been
871 * cloned into, completing the original io if necc.
872 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800873static void dec_pending(struct dm_io *io, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874{
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800875 unsigned long flags;
Milan Brozb35f8ca2009-03-16 17:44:36 +0000876 int io_error;
877 struct bio *bio;
878 struct mapped_device *md = io->md;
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800879
880 /* Push-back supersedes any I/O errors */
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +0100881 if (unlikely(error)) {
882 spin_lock_irqsave(&io->endio_lock, flags);
883 if (!(io->error > 0 && __noflush_suspending(md)))
884 io->error = error;
885 spin_unlock_irqrestore(&io->endio_lock, flags);
886 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
888 if (atomic_dec_and_test(&io->io_count)) {
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800889 if (io->error == DM_ENDIO_REQUEUE) {
890 /*
891 * Target requested pushing back the I/O.
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800892 */
Mikulas Patocka022c2612009-04-02 19:55:39 +0100893 spin_lock_irqsave(&md->deferred_lock, flags);
Tejun Heo6a8736d2010-09-08 18:07:00 +0200894 if (__noflush_suspending(md))
895 bio_list_add_head(&md->deferred, io->bio);
896 else
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800897 /* noflush suspend was interrupted. */
898 io->error = -EIO;
Mikulas Patocka022c2612009-04-02 19:55:39 +0100899 spin_unlock_irqrestore(&md->deferred_lock, flags);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800900 }
901
Milan Brozb35f8ca2009-03-16 17:44:36 +0000902 io_error = io->error;
903 bio = io->bio;
Tejun Heo6a8736d2010-09-08 18:07:00 +0200904 end_io_acct(io);
905 free_io(md, io);
Jens Axboe2056a782006-03-23 20:00:26 +0100906
Tejun Heo6a8736d2010-09-08 18:07:00 +0200907 if (io_error == DM_ENDIO_REQUEUE)
908 return;
909
Kent Overstreet4f024f32013-10-11 15:44:27 -0700910 if ((bio->bi_rw & REQ_FLUSH) && bio->bi_iter.bi_size) {
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100911 /*
Tejun Heo6a8736d2010-09-08 18:07:00 +0200912 * Preflush done for flush with data, reissue
913 * without REQ_FLUSH.
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100914 */
Tejun Heo6a8736d2010-09-08 18:07:00 +0200915 bio->bi_rw &= ~REQ_FLUSH;
916 queue_io(md, bio);
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100917 } else {
Mike Snitzerb372d362010-09-08 18:07:01 +0200918 /* done with normal IO or empty flush */
Linus Torvalds0a82a8d2013-04-18 09:00:26 -0700919 trace_block_bio_complete(md->queue, bio, io_error);
Mike Snitzerb372d362010-09-08 18:07:01 +0200920 bio_endio(bio, io_error);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800921 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 }
923}
924
Mike Snitzer7eee4ae2014-06-02 15:50:06 -0400925static void disable_write_same(struct mapped_device *md)
926{
927 struct queue_limits *limits = dm_get_queue_limits(md);
928
929 /* device doesn't really support WRITE SAME, disable it */
930 limits->max_write_same_sectors = 0;
931}
932
NeilBrown6712ecf2007-09-27 12:47:43 +0200933static void clone_endio(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934{
zhendong chen5164bec2014-12-17 14:37:04 +0800935 int r = error;
Mikulas Patockabfc6d412014-03-04 18:24:49 -0500936 struct dm_target_io *tio = container_of(bio, struct dm_target_io, clone);
Milan Brozb35f8ca2009-03-16 17:44:36 +0000937 struct dm_io *io = tio->io;
Stefan Bader9faf4002006-10-03 01:15:41 -0700938 struct mapped_device *md = tio->io->md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 dm_endio_fn endio = tio->ti->type->end_io;
940
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 if (!bio_flagged(bio, BIO_UPTODATE) && !error)
942 error = -EIO;
943
944 if (endio) {
Mikulas Patocka7de3ee52012-12-21 20:23:41 +0000945 r = endio(tio->ti, bio, error);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800946 if (r < 0 || r == DM_ENDIO_REQUEUE)
947 /*
948 * error and requeue request are handled
949 * in dec_pending().
950 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 error = r;
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800952 else if (r == DM_ENDIO_INCOMPLETE)
953 /* The target will handle the io */
NeilBrown6712ecf2007-09-27 12:47:43 +0200954 return;
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800955 else if (r) {
956 DMWARN("unimplemented target endio return value: %d", r);
957 BUG();
958 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 }
960
Mike Snitzer7eee4ae2014-06-02 15:50:06 -0400961 if (unlikely(r == -EREMOTEIO && (bio->bi_rw & REQ_WRITE_SAME) &&
962 !bdev_get_queue(bio->bi_bdev)->limits.max_write_same_sectors))
963 disable_write_same(md);
964
Stefan Bader9faf4002006-10-03 01:15:41 -0700965 free_tio(md, tio);
Milan Brozb35f8ca2009-03-16 17:44:36 +0000966 dec_pending(io, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967}
968
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100969/*
970 * Partial completion handling for request-based dm
971 */
972static void end_clone_bio(struct bio *clone, int error)
973{
Mikulas Patockabfc6d412014-03-04 18:24:49 -0500974 struct dm_rq_clone_bio_info *info =
975 container_of(clone, struct dm_rq_clone_bio_info, clone);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100976 struct dm_rq_target_io *tio = info->tio;
977 struct bio *bio = info->orig;
Kent Overstreet4f024f32013-10-11 15:44:27 -0700978 unsigned int nr_bytes = info->orig->bi_iter.bi_size;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100979
980 bio_put(clone);
981
982 if (tio->error)
983 /*
984 * An error has already been detected on the request.
985 * Once error occurred, just let clone->end_io() handle
986 * the remainder.
987 */
988 return;
989 else if (error) {
990 /*
991 * Don't notice the error to the upper layer yet.
992 * The error handling decision is made by the target driver,
993 * when the request is completed.
994 */
995 tio->error = error;
996 return;
997 }
998
999 /*
1000 * I/O for the bio successfully completed.
1001 * Notice the data completion to the upper layer.
1002 */
1003
1004 /*
1005 * bios are processed from the head of the list.
1006 * So the completing bio should always be rq->bio.
1007 * If it's not, something wrong is happening.
1008 */
1009 if (tio->orig->bio != bio)
1010 DMERR("bio completion is going in the middle of the request");
1011
1012 /*
1013 * Update the original request.
1014 * Do not use blk_end_request() here, because it may complete
1015 * the original request before the clone, and break the ordering.
1016 */
1017 blk_update_request(tio->orig, 0, nr_bytes);
1018}
1019
1020/*
1021 * Don't touch any member of the md after calling this function because
1022 * the md may be freed in dm_put() at the end of this function.
1023 * Or do dm_get() before calling this function and dm_put() later.
1024 */
Keith Busch466d89a2014-10-17 17:46:37 -06001025static void rq_completed(struct mapped_device *md, int rw, bool run_queue)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001026{
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00001027 atomic_dec(&md->pending[rw]);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001028
1029 /* nudge anyone waiting on suspend queue */
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00001030 if (!md_in_flight(md))
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001031 wake_up(&md->wait);
1032
Jens Axboea8c32a52012-11-06 12:24:26 +01001033 /*
1034 * Run this off this callpath, as drivers could invoke end_io while
1035 * inside their request_fn (and holding the queue lock). Calling
1036 * back into ->request_fn() could deadlock attempting to grab the
1037 * queue lock again.
1038 */
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001039 if (run_queue)
Jens Axboea8c32a52012-11-06 12:24:26 +01001040 blk_run_queue_async(md->queue);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001041
1042 /*
1043 * dm_put() must be at the end of this function. See the comment above
1044 */
1045 dm_put(md);
1046}
1047
Kiyoshi Uedaa77e28c2009-09-04 20:40:16 +01001048static void free_rq_clone(struct request *clone)
1049{
1050 struct dm_rq_target_io *tio = clone->end_io_data;
1051
1052 blk_rq_unprep_clone(clone);
Mike Snitzere5863d92014-12-17 21:08:12 -05001053 if (clone->q && clone->q->mq_ops)
1054 tio->ti->type->release_clone_rq(clone);
1055 else
1056 free_clone_request(tio->md, clone);
Kiyoshi Uedaa77e28c2009-09-04 20:40:16 +01001057 free_rq_tio(tio);
1058}
1059
Kiyoshi Ueda980691e2009-12-10 23:52:17 +00001060/*
1061 * Complete the clone and the original request.
Keith Busch466d89a2014-10-17 17:46:37 -06001062 * Must be called without clone's queue lock held,
1063 * see end_clone_request() for more details.
Kiyoshi Ueda980691e2009-12-10 23:52:17 +00001064 */
1065static void dm_end_request(struct request *clone, int error)
1066{
1067 int rw = rq_data_dir(clone);
1068 struct dm_rq_target_io *tio = clone->end_io_data;
1069 struct mapped_device *md = tio->md;
1070 struct request *rq = tio->orig;
1071
Tejun Heo29e40132010-09-08 18:07:00 +02001072 if (rq->cmd_type == REQ_TYPE_BLOCK_PC) {
Kiyoshi Ueda980691e2009-12-10 23:52:17 +00001073 rq->errors = clone->errors;
1074 rq->resid_len = clone->resid_len;
1075
1076 if (rq->sense)
1077 /*
1078 * We are using the sense buffer of the original
1079 * request.
1080 * So setting the length of the sense data is enough.
1081 */
1082 rq->sense_len = clone->sense_len;
1083 }
1084
1085 free_rq_clone(clone);
Tejun Heo29e40132010-09-08 18:07:00 +02001086 blk_end_request_all(rq, error);
1087 rq_completed(md, rw, true);
Kiyoshi Ueda980691e2009-12-10 23:52:17 +00001088}
1089
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001090static void dm_unprep_request(struct request *rq)
1091{
Keith Busch466d89a2014-10-17 17:46:37 -06001092 struct dm_rq_target_io *tio = rq->special;
1093 struct request *clone = tio->clone;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001094
1095 rq->special = NULL;
1096 rq->cmd_flags &= ~REQ_DONTPREP;
1097
Mike Snitzere5863d92014-12-17 21:08:12 -05001098 if (clone)
1099 free_rq_clone(clone);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001100}
1101
1102/*
1103 * Requeue the original request of a clone.
1104 */
Keith Busch466d89a2014-10-17 17:46:37 -06001105static void dm_requeue_unmapped_original_request(struct mapped_device *md,
1106 struct request *rq)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001107{
Keith Busch466d89a2014-10-17 17:46:37 -06001108 int rw = rq_data_dir(rq);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001109 struct request_queue *q = rq->q;
1110 unsigned long flags;
1111
1112 dm_unprep_request(rq);
1113
1114 spin_lock_irqsave(q->queue_lock, flags);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001115 blk_requeue_request(q, rq);
1116 spin_unlock_irqrestore(q->queue_lock, flags);
1117
Keith Busch466d89a2014-10-17 17:46:37 -06001118 rq_completed(md, rw, false);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001119}
Keith Busch466d89a2014-10-17 17:46:37 -06001120
1121static void dm_requeue_unmapped_request(struct request *clone)
1122{
1123 struct dm_rq_target_io *tio = clone->end_io_data;
1124
1125 dm_requeue_unmapped_original_request(tio->md, tio->orig);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001126}
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001127
1128static void __stop_queue(struct request_queue *q)
1129{
1130 blk_stop_queue(q);
1131}
1132
1133static void stop_queue(struct request_queue *q)
1134{
1135 unsigned long flags;
1136
1137 spin_lock_irqsave(q->queue_lock, flags);
1138 __stop_queue(q);
1139 spin_unlock_irqrestore(q->queue_lock, flags);
1140}
1141
1142static void __start_queue(struct request_queue *q)
1143{
1144 if (blk_queue_stopped(q))
1145 blk_start_queue(q);
1146}
1147
1148static void start_queue(struct request_queue *q)
1149{
1150 unsigned long flags;
1151
1152 spin_lock_irqsave(q->queue_lock, flags);
1153 __start_queue(q);
1154 spin_unlock_irqrestore(q->queue_lock, flags);
1155}
1156
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001157static void dm_done(struct request *clone, int error, bool mapped)
1158{
1159 int r = error;
1160 struct dm_rq_target_io *tio = clone->end_io_data;
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001161 dm_request_endio_fn rq_end_io = NULL;
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001162
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001163 if (tio->ti) {
1164 rq_end_io = tio->ti->type->rq_end_io;
1165
1166 if (mapped && rq_end_io)
1167 r = rq_end_io(tio->ti, clone, error, &tio->info);
1168 }
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001169
Mike Snitzer7eee4ae2014-06-02 15:50:06 -04001170 if (unlikely(r == -EREMOTEIO && (clone->cmd_flags & REQ_WRITE_SAME) &&
1171 !clone->q->limits.max_write_same_sectors))
1172 disable_write_same(tio->md);
1173
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001174 if (r <= 0)
1175 /* The target wants to complete the I/O */
1176 dm_end_request(clone, r);
1177 else if (r == DM_ENDIO_INCOMPLETE)
1178 /* The target will handle the I/O */
1179 return;
1180 else if (r == DM_ENDIO_REQUEUE)
1181 /* The target wants to requeue the I/O */
1182 dm_requeue_unmapped_request(clone);
1183 else {
1184 DMWARN("unimplemented target endio return value: %d", r);
1185 BUG();
1186 }
1187}
1188
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001189/*
1190 * Request completion handler for request-based dm
1191 */
1192static void dm_softirq_done(struct request *rq)
1193{
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001194 bool mapped = true;
Keith Busch466d89a2014-10-17 17:46:37 -06001195 struct dm_rq_target_io *tio = rq->special;
1196 struct request *clone = tio->clone;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001197
Mike Snitzere5863d92014-12-17 21:08:12 -05001198 if (!clone) {
1199 blk_end_request_all(rq, tio->error);
1200 rq_completed(tio->md, rq_data_dir(rq), false);
1201 free_rq_tio(tio);
1202 return;
1203 }
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001204
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001205 if (rq->cmd_flags & REQ_FAILED)
1206 mapped = false;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001207
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001208 dm_done(clone, tio->error, mapped);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001209}
1210
1211/*
1212 * Complete the clone and the original request with the error status
1213 * through softirq context.
1214 */
Keith Busch466d89a2014-10-17 17:46:37 -06001215static void dm_complete_request(struct request *rq, int error)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001216{
Keith Busch466d89a2014-10-17 17:46:37 -06001217 struct dm_rq_target_io *tio = rq->special;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001218
1219 tio->error = error;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001220 blk_complete_request(rq);
1221}
1222
1223/*
1224 * Complete the not-mapped clone and the original request with the error status
1225 * through softirq context.
1226 * Target's rq_end_io() function isn't called.
Mike Snitzere5863d92014-12-17 21:08:12 -05001227 * This may be used when the target's map_rq() or clone_and_map_rq() functions fail.
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001228 */
Keith Busch466d89a2014-10-17 17:46:37 -06001229static void dm_kill_unmapped_request(struct request *rq, int error)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001230{
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001231 rq->cmd_flags |= REQ_FAILED;
Keith Busch466d89a2014-10-17 17:46:37 -06001232 dm_complete_request(rq, error);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001233}
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001234
1235/*
Keith Busch466d89a2014-10-17 17:46:37 -06001236 * Called with the clone's queue lock held
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001237 */
1238static void end_clone_request(struct request *clone, int error)
1239{
Keith Busch466d89a2014-10-17 17:46:37 -06001240 struct dm_rq_target_io *tio = clone->end_io_data;
1241
Mike Snitzere5863d92014-12-17 21:08:12 -05001242 if (!clone->q->mq_ops) {
1243 /*
1244 * For just cleaning up the information of the queue in which
1245 * the clone was dispatched.
1246 * The clone is *NOT* freed actually here because it is alloced
1247 * from dm own mempool (REQ_ALLOCED isn't set).
1248 */
1249 __blk_put_request(clone->q, clone);
1250 }
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001251
1252 /*
1253 * Actual request completion is done in a softirq context which doesn't
Keith Busch466d89a2014-10-17 17:46:37 -06001254 * hold the clone's queue lock. Otherwise, deadlock could occur because:
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001255 * - another request may be submitted by the upper level driver
1256 * of the stacking during the completion
1257 * - the submission which requires queue lock may be done
Keith Busch466d89a2014-10-17 17:46:37 -06001258 * against this clone's queue
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001259 */
Keith Busch466d89a2014-10-17 17:46:37 -06001260 dm_complete_request(tio->orig, error);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001261}
1262
Mike Snitzer56a67df2010-08-12 04:14:10 +01001263/*
1264 * Return maximum size of I/O possible at the supplied sector up to the current
1265 * target boundary.
1266 */
1267static sector_t max_io_len_target_boundary(sector_t sector, struct dm_target *ti)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268{
Mike Snitzer56a67df2010-08-12 04:14:10 +01001269 sector_t target_offset = dm_target_offset(ti, sector);
1270
1271 return ti->len - target_offset;
1272}
1273
1274static sector_t max_io_len(sector_t sector, struct dm_target *ti)
1275{
1276 sector_t len = max_io_len_target_boundary(sector, ti);
Mike Snitzer542f9032012-07-27 15:08:00 +01001277 sector_t offset, max_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
1279 /*
Mike Snitzer542f9032012-07-27 15:08:00 +01001280 * Does the target need to split even further?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 */
Mike Snitzer542f9032012-07-27 15:08:00 +01001282 if (ti->max_io_len) {
1283 offset = dm_target_offset(ti, sector);
1284 if (unlikely(ti->max_io_len & (ti->max_io_len - 1)))
1285 max_len = sector_div(offset, ti->max_io_len);
1286 else
1287 max_len = offset & (ti->max_io_len - 1);
1288 max_len = ti->max_io_len - max_len;
1289
1290 if (len > max_len)
1291 len = max_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 }
1293
1294 return len;
1295}
1296
Mike Snitzer542f9032012-07-27 15:08:00 +01001297int dm_set_target_max_io_len(struct dm_target *ti, sector_t len)
1298{
1299 if (len > UINT_MAX) {
1300 DMERR("Specified maximum size of target IO (%llu) exceeds limit (%u)",
1301 (unsigned long long)len, UINT_MAX);
1302 ti->error = "Maximum size of target IO is too large";
1303 return -EINVAL;
1304 }
1305
1306 ti->max_io_len = (uint32_t) len;
1307
1308 return 0;
1309}
1310EXPORT_SYMBOL_GPL(dm_set_target_max_io_len);
1311
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001312/*
1313 * A target may call dm_accept_partial_bio only from the map routine. It is
1314 * allowed for all bio types except REQ_FLUSH.
1315 *
1316 * dm_accept_partial_bio informs the dm that the target only wants to process
1317 * additional n_sectors sectors of the bio and the rest of the data should be
1318 * sent in a next bio.
1319 *
1320 * A diagram that explains the arithmetics:
1321 * +--------------------+---------------+-------+
1322 * | 1 | 2 | 3 |
1323 * +--------------------+---------------+-------+
1324 *
1325 * <-------------- *tio->len_ptr --------------->
1326 * <------- bi_size ------->
1327 * <-- n_sectors -->
1328 *
1329 * Region 1 was already iterated over with bio_advance or similar function.
1330 * (it may be empty if the target doesn't use bio_advance)
1331 * Region 2 is the remaining bio size that the target wants to process.
1332 * (it may be empty if region 1 is non-empty, although there is no reason
1333 * to make it empty)
1334 * The target requires that region 3 is to be sent in the next bio.
1335 *
1336 * If the target wants to receive multiple copies of the bio (via num_*bios, etc),
1337 * the partially processed part (the sum of regions 1+2) must be the same for all
1338 * copies of the bio.
1339 */
1340void dm_accept_partial_bio(struct bio *bio, unsigned n_sectors)
1341{
1342 struct dm_target_io *tio = container_of(bio, struct dm_target_io, clone);
1343 unsigned bi_size = bio->bi_iter.bi_size >> SECTOR_SHIFT;
1344 BUG_ON(bio->bi_rw & REQ_FLUSH);
1345 BUG_ON(bi_size > *tio->len_ptr);
1346 BUG_ON(n_sectors > bi_size);
1347 *tio->len_ptr -= bi_size - n_sectors;
1348 bio->bi_iter.bi_size = n_sectors << SECTOR_SHIFT;
1349}
1350EXPORT_SYMBOL_GPL(dm_accept_partial_bio);
1351
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001352static void __map_bio(struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353{
1354 int r;
Jens Axboe2056a782006-03-23 20:00:26 +01001355 sector_t sector;
Stefan Bader9faf4002006-10-03 01:15:41 -07001356 struct mapped_device *md;
Mikulas Patockadba14162012-10-12 21:02:15 +01001357 struct bio *clone = &tio->clone;
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001358 struct dm_target *ti = tio->ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 clone->bi_end_io = clone_endio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361
1362 /*
1363 * Map the clone. If r == 0 we don't need to do
1364 * anything, the target has assumed ownership of
1365 * this io.
1366 */
1367 atomic_inc(&tio->io->io_count);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001368 sector = clone->bi_iter.bi_sector;
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00001369 r = ti->type->map(ti, clone);
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -08001370 if (r == DM_MAPIO_REMAPPED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 /* the bio has been remapped so dispatch it */
Jens Axboe2056a782006-03-23 20:00:26 +01001372
Mike Snitzerd07335e2010-11-16 12:52:38 +01001373 trace_block_bio_remap(bdev_get_queue(clone->bi_bdev), clone,
1374 tio->io->bio->bi_bdev->bd_dev, sector);
Jens Axboe2056a782006-03-23 20:00:26 +01001375
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 generic_make_request(clone);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001377 } else if (r < 0 || r == DM_MAPIO_REQUEUE) {
1378 /* error the io and bail out, or requeue it if needed */
Stefan Bader9faf4002006-10-03 01:15:41 -07001379 md = tio->io->md;
1380 dec_pending(tio->io, r);
Stefan Bader9faf4002006-10-03 01:15:41 -07001381 free_tio(md, tio);
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -08001382 } else if (r) {
1383 DMWARN("unimplemented target map return value: %d", r);
1384 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 }
1386}
1387
1388struct clone_info {
1389 struct mapped_device *md;
1390 struct dm_table *map;
1391 struct bio *bio;
1392 struct dm_io *io;
1393 sector_t sector;
Mikulas Patockae0d66092014-03-14 18:40:39 -04001394 unsigned sector_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395};
1396
Mikulas Patockae0d66092014-03-14 18:40:39 -04001397static void bio_setup_sector(struct bio *bio, sector_t sector, unsigned len)
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001398{
Kent Overstreet4f024f32013-10-11 15:44:27 -07001399 bio->bi_iter.bi_sector = sector;
1400 bio->bi_iter.bi_size = to_bytes(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401}
1402
1403/*
1404 * Creates a bio that consists of range of complete bvecs.
1405 */
Mikulas Patockadba14162012-10-12 21:02:15 +01001406static void clone_bio(struct dm_target_io *tio, struct bio *bio,
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001407 sector_t sector, unsigned len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408{
Mikulas Patockadba14162012-10-12 21:02:15 +01001409 struct bio *clone = &tio->clone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001411 __bio_clone_fast(clone, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001413 if (bio_integrity(bio))
1414 bio_integrity_clone(clone, bio, GFP_NOIO);
1415
1416 bio_advance(clone, to_bytes(sector - clone->bi_iter.bi_sector));
1417 clone->bi_iter.bi_size = to_bytes(len);
1418
1419 if (bio_integrity(bio))
1420 bio_integrity_trim(clone, 0, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421}
1422
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001423static struct dm_target_io *alloc_tio(struct clone_info *ci,
Junichi Nomura99778272014-10-03 11:55:16 +00001424 struct dm_target *ti,
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001425 unsigned target_bio_nr)
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001426{
Mikulas Patockadba14162012-10-12 21:02:15 +01001427 struct dm_target_io *tio;
1428 struct bio *clone;
1429
Junichi Nomura99778272014-10-03 11:55:16 +00001430 clone = bio_alloc_bioset(GFP_NOIO, 0, ci->md->bs);
Mikulas Patockadba14162012-10-12 21:02:15 +01001431 tio = container_of(clone, struct dm_target_io, clone);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001432
1433 tio->io = ci->io;
1434 tio->ti = ti;
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001435 tio->target_bio_nr = target_bio_nr;
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001436
1437 return tio;
1438}
1439
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001440static void __clone_and_map_simple_bio(struct clone_info *ci,
1441 struct dm_target *ti,
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001442 unsigned target_bio_nr, unsigned *len)
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001443{
Junichi Nomura99778272014-10-03 11:55:16 +00001444 struct dm_target_io *tio = alloc_tio(ci, ti, target_bio_nr);
Mikulas Patockadba14162012-10-12 21:02:15 +01001445 struct bio *clone = &tio->clone;
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001446
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001447 tio->len_ptr = len;
1448
Junichi Nomura99778272014-10-03 11:55:16 +00001449 __bio_clone_fast(clone, ci->bio);
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001450 if (len)
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001451 bio_setup_sector(clone, ci->sector, *len);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001452
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001453 __map_bio(tio);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001454}
1455
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001456static void __send_duplicate_bios(struct clone_info *ci, struct dm_target *ti,
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001457 unsigned num_bios, unsigned *len)
Mike Snitzer06a426c2010-08-12 04:14:09 +01001458{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001459 unsigned target_bio_nr;
Mike Snitzer06a426c2010-08-12 04:14:09 +01001460
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001461 for (target_bio_nr = 0; target_bio_nr < num_bios; target_bio_nr++)
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001462 __clone_and_map_simple_bio(ci, ti, target_bio_nr, len);
Mike Snitzer06a426c2010-08-12 04:14:09 +01001463}
1464
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001465static int __send_empty_flush(struct clone_info *ci)
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001466{
Mike Snitzer06a426c2010-08-12 04:14:09 +01001467 unsigned target_nr = 0;
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001468 struct dm_target *ti;
1469
Mike Snitzerb372d362010-09-08 18:07:01 +02001470 BUG_ON(bio_has_data(ci->bio));
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001471 while ((ti = dm_table_get_target(ci->map, target_nr++)))
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001472 __send_duplicate_bios(ci, ti, ti->num_flush_bios, NULL);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001473
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001474 return 0;
1475}
1476
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001477static void __clone_and_map_data_bio(struct clone_info *ci, struct dm_target *ti,
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001478 sector_t sector, unsigned *len)
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001479{
Mikulas Patockadba14162012-10-12 21:02:15 +01001480 struct bio *bio = ci->bio;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001481 struct dm_target_io *tio;
Alasdair G Kergonb0d8ed42013-03-01 22:45:49 +00001482 unsigned target_bio_nr;
1483 unsigned num_target_bios = 1;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001484
Alasdair G Kergonb0d8ed42013-03-01 22:45:49 +00001485 /*
1486 * Does the target want to receive duplicate copies of the bio?
1487 */
1488 if (bio_data_dir(bio) == WRITE && ti->num_write_bios)
1489 num_target_bios = ti->num_write_bios(ti, bio);
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001490
Alasdair G Kergonb0d8ed42013-03-01 22:45:49 +00001491 for (target_bio_nr = 0; target_bio_nr < num_target_bios; target_bio_nr++) {
Junichi Nomura99778272014-10-03 11:55:16 +00001492 tio = alloc_tio(ci, ti, target_bio_nr);
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001493 tio->len_ptr = len;
1494 clone_bio(tio, bio, sector, *len);
Alasdair G Kergonb0d8ed42013-03-01 22:45:49 +00001495 __map_bio(tio);
1496 }
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001497}
1498
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001499typedef unsigned (*get_num_bios_fn)(struct dm_target *ti);
Mike Snitzer23508a92012-12-21 20:23:37 +00001500
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001501static unsigned get_num_discard_bios(struct dm_target *ti)
Mike Snitzer23508a92012-12-21 20:23:37 +00001502{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001503 return ti->num_discard_bios;
Mike Snitzer23508a92012-12-21 20:23:37 +00001504}
1505
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001506static unsigned get_num_write_same_bios(struct dm_target *ti)
Mike Snitzer23508a92012-12-21 20:23:37 +00001507{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001508 return ti->num_write_same_bios;
Mike Snitzer23508a92012-12-21 20:23:37 +00001509}
1510
1511typedef bool (*is_split_required_fn)(struct dm_target *ti);
1512
1513static bool is_split_required_for_discard(struct dm_target *ti)
1514{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001515 return ti->split_discard_bios;
Mike Snitzer23508a92012-12-21 20:23:37 +00001516}
1517
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001518static int __send_changing_extent_only(struct clone_info *ci,
1519 get_num_bios_fn get_num_bios,
1520 is_split_required_fn is_split_required)
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001521{
1522 struct dm_target *ti;
Mikulas Patockae0d66092014-03-14 18:40:39 -04001523 unsigned len;
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001524 unsigned num_bios;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001525
Mike Snitzera79245b2010-08-12 04:14:24 +01001526 do {
1527 ti = dm_table_find_target(ci->map, ci->sector);
1528 if (!dm_target_is_valid(ti))
1529 return -EIO;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001530
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001531 /*
Mike Snitzer23508a92012-12-21 20:23:37 +00001532 * Even though the device advertised support for this type of
1533 * request, that does not mean every target supports it, and
Mike Snitzer936688d2011-08-02 12:32:01 +01001534 * reconfiguration might also have changed that since the
Mike Snitzera79245b2010-08-12 04:14:24 +01001535 * check was performed.
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001536 */
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001537 num_bios = get_num_bios ? get_num_bios(ti) : 0;
1538 if (!num_bios)
Mike Snitzera79245b2010-08-12 04:14:24 +01001539 return -EOPNOTSUPP;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001540
Mike Snitzer23508a92012-12-21 20:23:37 +00001541 if (is_split_required && !is_split_required(ti))
Mikulas Patockae0d66092014-03-14 18:40:39 -04001542 len = min((sector_t)ci->sector_count, max_io_len_target_boundary(ci->sector, ti));
Mikulas Patocka7acf0272012-07-27 15:08:03 +01001543 else
Mikulas Patockae0d66092014-03-14 18:40:39 -04001544 len = min((sector_t)ci->sector_count, max_io_len(ci->sector, ti));
Mike Snitzer06a426c2010-08-12 04:14:09 +01001545
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001546 __send_duplicate_bios(ci, ti, num_bios, &len);
Mike Snitzera79245b2010-08-12 04:14:24 +01001547
1548 ci->sector += len;
1549 } while (ci->sector_count -= len);
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001550
1551 return 0;
1552}
1553
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001554static int __send_discard(struct clone_info *ci)
Mike Snitzer23508a92012-12-21 20:23:37 +00001555{
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001556 return __send_changing_extent_only(ci, get_num_discard_bios,
1557 is_split_required_for_discard);
Mike Snitzer23508a92012-12-21 20:23:37 +00001558}
1559
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001560static int __send_write_same(struct clone_info *ci)
Mike Snitzer23508a92012-12-21 20:23:37 +00001561{
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001562 return __send_changing_extent_only(ci, get_num_write_same_bios, NULL);
Mike Snitzer23508a92012-12-21 20:23:37 +00001563}
1564
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001565/*
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001566 * Select the correct strategy for processing a non-flush bio.
1567 */
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001568static int __split_and_process_non_flush(struct clone_info *ci)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569{
Mikulas Patockadba14162012-10-12 21:02:15 +01001570 struct bio *bio = ci->bio;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001571 struct dm_target *ti;
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001572 unsigned len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001574 if (unlikely(bio->bi_rw & REQ_DISCARD))
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001575 return __send_discard(ci);
Mike Snitzer23508a92012-12-21 20:23:37 +00001576 else if (unlikely(bio->bi_rw & REQ_WRITE_SAME))
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001577 return __send_write_same(ci);
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001578
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001579 ti = dm_table_find_target(ci->map, ci->sector);
1580 if (!dm_target_is_valid(ti))
1581 return -EIO;
1582
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001583 len = min_t(sector_t, max_io_len(ci->sector, ti), ci->sector_count);
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001584
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001585 __clone_and_map_data_bio(ci, ti, ci->sector, &len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001587 ci->sector += len;
1588 ci->sector_count -= len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001590 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591}
1592
1593/*
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001594 * Entry point to split a bio into clones and submit them to the targets.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 */
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001596static void __split_and_process_bio(struct mapped_device *md,
1597 struct dm_table *map, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598{
1599 struct clone_info ci;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001600 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001602 if (unlikely(!map)) {
Tejun Heo6a8736d2010-09-08 18:07:00 +02001603 bio_io_error(bio);
Mikulas Patockaf0b9a452009-04-02 19:55:38 +01001604 return;
1605 }
Mikulas Patocka692d0eb2009-04-09 00:27:13 +01001606
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001607 ci.map = map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 ci.md = md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 ci.io = alloc_io(md);
1610 ci.io->error = 0;
1611 atomic_set(&ci.io->io_count, 1);
1612 ci.io->bio = bio;
1613 ci.io->md = md;
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +01001614 spin_lock_init(&ci.io->endio_lock);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001615 ci.sector = bio->bi_iter.bi_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -08001617 start_io_acct(ci.io);
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001618
Mike Snitzerb372d362010-09-08 18:07:01 +02001619 if (bio->bi_rw & REQ_FLUSH) {
1620 ci.bio = &ci.md->flush_bio;
1621 ci.sector_count = 0;
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001622 error = __send_empty_flush(&ci);
Mike Snitzerb372d362010-09-08 18:07:01 +02001623 /* dec_pending submits any data associated with flush */
1624 } else {
Tejun Heo6a8736d2010-09-08 18:07:00 +02001625 ci.bio = bio;
Tejun Heod87f4c12010-09-03 11:56:19 +02001626 ci.sector_count = bio_sectors(bio);
Mike Snitzerb372d362010-09-08 18:07:01 +02001627 while (ci.sector_count && !error)
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001628 error = __split_and_process_non_flush(&ci);
Tejun Heod87f4c12010-09-03 11:56:19 +02001629 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
1631 /* drop the extra reference count */
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001632 dec_pending(ci.io, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633}
1634/*-----------------------------------------------------------------
1635 * CRUD END
1636 *---------------------------------------------------------------*/
1637
Milan Brozf6fccb12008-07-21 12:00:37 +01001638static int dm_merge_bvec(struct request_queue *q,
1639 struct bvec_merge_data *bvm,
1640 struct bio_vec *biovec)
1641{
1642 struct mapped_device *md = q->queuedata;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001643 struct dm_table *map = dm_get_live_table_fast(md);
Milan Brozf6fccb12008-07-21 12:00:37 +01001644 struct dm_target *ti;
1645 sector_t max_sectors;
Mikulas Patocka50371082008-10-01 14:39:17 +01001646 int max_size = 0;
Milan Brozf6fccb12008-07-21 12:00:37 +01001647
1648 if (unlikely(!map))
Mikulas Patocka50371082008-10-01 14:39:17 +01001649 goto out;
Milan Brozf6fccb12008-07-21 12:00:37 +01001650
1651 ti = dm_table_find_target(map, bvm->bi_sector);
Mikulas Patockab01cd5a2008-10-01 14:39:24 +01001652 if (!dm_target_is_valid(ti))
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001653 goto out;
Milan Brozf6fccb12008-07-21 12:00:37 +01001654
1655 /*
1656 * Find maximum amount of I/O that won't need splitting
1657 */
Mike Snitzer56a67df2010-08-12 04:14:10 +01001658 max_sectors = min(max_io_len(bvm->bi_sector, ti),
Mike Snitzer148e51b2014-10-09 19:32:22 -04001659 (sector_t) queue_max_sectors(q));
Milan Brozf6fccb12008-07-21 12:00:37 +01001660 max_size = (max_sectors << SECTOR_SHIFT) - bvm->bi_size;
Mike Snitzer148e51b2014-10-09 19:32:22 -04001661 if (unlikely(max_size < 0)) /* this shouldn't _ever_ happen */
Milan Brozf6fccb12008-07-21 12:00:37 +01001662 max_size = 0;
1663
1664 /*
1665 * merge_bvec_fn() returns number of bytes
1666 * it can accept at this offset
1667 * max is precomputed maximal io size
1668 */
1669 if (max_size && ti->type->merge)
1670 max_size = ti->type->merge(ti, bvm, biovec, max_size);
Mikulas Patocka8cbeb672009-06-22 10:12:14 +01001671 /*
1672 * If the target doesn't support merge method and some of the devices
Mike Snitzer148e51b2014-10-09 19:32:22 -04001673 * provided their merge_bvec method (we know this by looking for the
1674 * max_hw_sectors that dm_set_device_limits may set), then we can't
1675 * allow bios with multiple vector entries. So always set max_size
1676 * to 0, and the code below allows just one page.
Mikulas Patocka8cbeb672009-06-22 10:12:14 +01001677 */
1678 else if (queue_max_hw_sectors(q) <= PAGE_SIZE >> 9)
Mikulas Patocka8cbeb672009-06-22 10:12:14 +01001679 max_size = 0;
Milan Brozf6fccb12008-07-21 12:00:37 +01001680
Mikulas Patocka50371082008-10-01 14:39:17 +01001681out:
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001682 dm_put_live_table_fast(md);
Milan Brozf6fccb12008-07-21 12:00:37 +01001683 /*
1684 * Always allow an entire first page
1685 */
1686 if (max_size <= biovec->bv_len && !(bvm->bi_size >> SECTOR_SHIFT))
1687 max_size = biovec->bv_len;
1688
Milan Brozf6fccb12008-07-21 12:00:37 +01001689 return max_size;
1690}
1691
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692/*
1693 * The request function that just remaps the bio built up by
1694 * dm_merge_bvec.
1695 */
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001696static void _dm_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697{
Kevin Corry12f03a42006-02-01 03:04:52 -08001698 int rw = bio_data_dir(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 struct mapped_device *md = q->queuedata;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001700 int srcu_idx;
1701 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001703 map = dm_get_live_table(md, &srcu_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704
Gu Zheng18c0b222014-11-24 11:05:26 +08001705 generic_start_io_acct(rw, bio_sectors(bio), &dm_disk(md)->part0);
Kevin Corry12f03a42006-02-01 03:04:52 -08001706
Tejun Heo6a8736d2010-09-08 18:07:00 +02001707 /* if we're suspended, we have to queue this io for later */
1708 if (unlikely(test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags))) {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001709 dm_put_live_table(md, srcu_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710
Tejun Heo6a8736d2010-09-08 18:07:00 +02001711 if (bio_rw(bio) != READA)
1712 queue_io(md, bio);
1713 else
Alasdair G Kergon54d9a1b2009-04-09 00:27:14 +01001714 bio_io_error(bio);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001715 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 }
1717
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001718 __split_and_process_bio(md, map, bio);
1719 dm_put_live_table(md, srcu_idx);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001720 return;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001721}
1722
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04001723int dm_request_based(struct mapped_device *md)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001724{
1725 return blk_queue_stackable(md->queue);
1726}
1727
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001728static void dm_request(struct request_queue *q, struct bio *bio)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001729{
1730 struct mapped_device *md = q->queuedata;
1731
1732 if (dm_request_based(md))
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001733 blk_queue_bio(q, bio);
1734 else
1735 _dm_request(q, bio);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001736}
1737
Keith Busch466d89a2014-10-17 17:46:37 -06001738static void dm_dispatch_clone_request(struct request *clone, struct request *rq)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001739{
1740 int r;
1741
Keith Busch466d89a2014-10-17 17:46:37 -06001742 if (blk_queue_io_stat(clone->q))
1743 clone->cmd_flags |= REQ_IO_STAT;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001744
Keith Busch466d89a2014-10-17 17:46:37 -06001745 clone->start_time = jiffies;
1746 r = blk_insert_cloned_request(clone->q, clone);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001747 if (r)
Keith Busch466d89a2014-10-17 17:46:37 -06001748 /* must complete clone in terms of original request */
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001749 dm_complete_request(rq, r);
1750}
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001751
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001752static int dm_rq_bio_constructor(struct bio *bio, struct bio *bio_orig,
1753 void *data)
1754{
1755 struct dm_rq_target_io *tio = data;
Kent Overstreet94818742012-09-07 13:44:01 -07001756 struct dm_rq_clone_bio_info *info =
1757 container_of(bio, struct dm_rq_clone_bio_info, clone);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001758
1759 info->orig = bio_orig;
1760 info->tio = tio;
1761 bio->bi_end_io = end_clone_bio;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001762
1763 return 0;
1764}
1765
1766static int setup_clone(struct request *clone, struct request *rq,
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05001767 struct dm_rq_target_io *tio, gfp_t gfp_mask)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001768{
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00001769 int r;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001770
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05001771 r = blk_rq_prep_clone(clone, rq, tio->md->bs, gfp_mask,
Tejun Heo29e40132010-09-08 18:07:00 +02001772 dm_rq_bio_constructor, tio);
1773 if (r)
1774 return r;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001775
Tejun Heo29e40132010-09-08 18:07:00 +02001776 clone->cmd = rq->cmd;
1777 clone->cmd_len = rq->cmd_len;
1778 clone->sense = rq->sense;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001779 clone->end_io = end_clone_request;
1780 clone->end_io_data = tio;
1781
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05001782 tio->clone = clone;
1783
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001784 return 0;
1785}
1786
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001787static struct request *clone_rq(struct request *rq, struct mapped_device *md,
Keith Busch466d89a2014-10-17 17:46:37 -06001788 struct dm_rq_target_io *tio, gfp_t gfp_mask)
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001789{
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05001790 struct request *clone = alloc_clone_request(md, gfp_mask);
1791
1792 if (!clone)
1793 return NULL;
1794
1795 blk_rq_init(NULL, clone);
1796 if (setup_clone(clone, rq, tio, gfp_mask)) {
1797 /* -ENOMEM */
1798 free_clone_request(md, clone);
1799 return NULL;
1800 }
1801
1802 return clone;
1803}
1804
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001805static void map_tio_request(struct kthread_work *work);
1806
Keith Busch466d89a2014-10-17 17:46:37 -06001807static struct dm_rq_target_io *prep_tio(struct request *rq,
1808 struct mapped_device *md, gfp_t gfp_mask)
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001809{
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001810 struct dm_rq_target_io *tio;
Mike Snitzere5863d92014-12-17 21:08:12 -05001811 int srcu_idx;
1812 struct dm_table *table;
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001813
1814 tio = alloc_rq_tio(md, gfp_mask);
1815 if (!tio)
1816 return NULL;
1817
1818 tio->md = md;
1819 tio->ti = NULL;
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05001820 tio->clone = NULL;
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001821 tio->orig = rq;
1822 tio->error = 0;
1823 memset(&tio->info, 0, sizeof(tio->info));
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001824 init_kthread_work(&tio->work, map_tio_request);
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001825
Mike Snitzere5863d92014-12-17 21:08:12 -05001826 table = dm_get_live_table(md, &srcu_idx);
1827 if (!dm_table_mq_request_based(table)) {
1828 if (!clone_rq(rq, md, tio, gfp_mask)) {
1829 dm_put_live_table(md, srcu_idx);
1830 free_rq_tio(tio);
1831 return NULL;
1832 }
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001833 }
Mike Snitzere5863d92014-12-17 21:08:12 -05001834 dm_put_live_table(md, srcu_idx);
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001835
Keith Busch466d89a2014-10-17 17:46:37 -06001836 return tio;
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001837}
1838
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001839/*
1840 * Called with the queue lock held.
1841 */
1842static int dm_prep_fn(struct request_queue *q, struct request *rq)
1843{
1844 struct mapped_device *md = q->queuedata;
Keith Busch466d89a2014-10-17 17:46:37 -06001845 struct dm_rq_target_io *tio;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001846
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001847 if (unlikely(rq->special)) {
1848 DMWARN("Already has something in rq->special.");
1849 return BLKPREP_KILL;
1850 }
1851
Keith Busch466d89a2014-10-17 17:46:37 -06001852 tio = prep_tio(rq, md, GFP_ATOMIC);
1853 if (!tio)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001854 return BLKPREP_DEFER;
1855
Keith Busch466d89a2014-10-17 17:46:37 -06001856 rq->special = tio;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001857 rq->cmd_flags |= REQ_DONTPREP;
1858
1859 return BLKPREP_OK;
1860}
1861
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001862/*
1863 * Returns:
Mike Snitzere5863d92014-12-17 21:08:12 -05001864 * 0 : the request has been processed
1865 * DM_MAPIO_REQUEUE : the original request needs to be requeued
1866 * < 0 : the request was completed due to failure
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001867 */
Keith Busch466d89a2014-10-17 17:46:37 -06001868static int map_request(struct dm_target *ti, struct request *rq,
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001869 struct mapped_device *md)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001870{
Mike Snitzere5863d92014-12-17 21:08:12 -05001871 int r;
Keith Busch466d89a2014-10-17 17:46:37 -06001872 struct dm_rq_target_io *tio = rq->special;
Mike Snitzere5863d92014-12-17 21:08:12 -05001873 struct request *clone = NULL;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001874
Mike Snitzere5863d92014-12-17 21:08:12 -05001875 if (tio->clone) {
1876 clone = tio->clone;
1877 r = ti->type->map_rq(ti, clone, &tio->info);
1878 } else {
1879 r = ti->type->clone_and_map_rq(ti, rq, &tio->info, &clone);
1880 if (r < 0) {
1881 /* The target wants to complete the I/O */
1882 dm_kill_unmapped_request(rq, r);
1883 return r;
1884 }
1885 if (IS_ERR(clone))
1886 return DM_MAPIO_REQUEUE;
1887 if (setup_clone(clone, rq, tio, GFP_KERNEL)) {
1888 /* -ENOMEM */
1889 ti->type->release_clone_rq(clone);
1890 return DM_MAPIO_REQUEUE;
1891 }
1892 }
1893
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001894 switch (r) {
1895 case DM_MAPIO_SUBMITTED:
1896 /* The target has taken the I/O to submit by itself later */
1897 break;
1898 case DM_MAPIO_REMAPPED:
1899 /* The target has remapped the I/O so dispatch it */
Jun'ichi Nomura6db4ccd2009-12-10 23:52:25 +00001900 trace_block_rq_remap(clone->q, clone, disk_devt(dm_disk(md)),
Keith Busch466d89a2014-10-17 17:46:37 -06001901 blk_rq_pos(rq));
1902 dm_dispatch_clone_request(clone, rq);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001903 break;
1904 case DM_MAPIO_REQUEUE:
1905 /* The target wants to requeue the I/O */
1906 dm_requeue_unmapped_request(clone);
1907 break;
1908 default:
1909 if (r > 0) {
1910 DMWARN("unimplemented target map return value: %d", r);
1911 BUG();
1912 }
1913
1914 /* The target wants to complete the I/O */
Keith Busch466d89a2014-10-17 17:46:37 -06001915 dm_kill_unmapped_request(rq, r);
Mike Snitzere5863d92014-12-17 21:08:12 -05001916 return r;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001917 }
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001918
Mike Snitzere5863d92014-12-17 21:08:12 -05001919 return 0;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001920}
1921
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001922static void map_tio_request(struct kthread_work *work)
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001923{
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001924 struct dm_rq_target_io *tio = container_of(work, struct dm_rq_target_io, work);
Mike Snitzere5863d92014-12-17 21:08:12 -05001925 struct request *rq = tio->orig;
1926 struct mapped_device *md = tio->md;
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001927
Mike Snitzere5863d92014-12-17 21:08:12 -05001928 if (map_request(tio->ti, rq, md) == DM_MAPIO_REQUEUE)
1929 dm_requeue_unmapped_original_request(md, rq);
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001930}
1931
Keith Busch466d89a2014-10-17 17:46:37 -06001932static void dm_start_request(struct mapped_device *md, struct request *orig)
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001933{
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001934 blk_start_request(orig);
Keith Busch466d89a2014-10-17 17:46:37 -06001935 atomic_inc(&md->pending[rq_data_dir(orig)]);
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001936
1937 /*
1938 * Hold the md reference here for the in-flight I/O.
1939 * We can't rely on the reference count by device opener,
1940 * because the device may be closed during the request completion
1941 * when all bios are completed.
1942 * See the comment in rq_completed() too.
1943 */
1944 dm_get(md);
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001945}
1946
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001947/*
1948 * q->request_fn for request-based dm.
1949 * Called with the queue lock held.
1950 */
1951static void dm_request_fn(struct request_queue *q)
1952{
1953 struct mapped_device *md = q->queuedata;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001954 int srcu_idx;
1955 struct dm_table *map = dm_get_live_table(md, &srcu_idx);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001956 struct dm_target *ti;
Keith Busch466d89a2014-10-17 17:46:37 -06001957 struct request *rq;
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001958 struct dm_rq_target_io *tio;
Tejun Heo29e40132010-09-08 18:07:00 +02001959 sector_t pos;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001960
1961 /*
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00001962 * For suspend, check blk_queue_stopped() and increment
1963 * ->pending within a single queue_lock not to increment the
1964 * number of in-flight I/Os after the queue is stopped in
1965 * dm_suspend().
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001966 */
Jens Axboe7eaceac2011-03-10 08:52:07 +01001967 while (!blk_queue_stopped(q)) {
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001968 rq = blk_peek_request(q);
1969 if (!rq)
Jens Axboe7eaceac2011-03-10 08:52:07 +01001970 goto delay_and_out;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001971
Tejun Heo29e40132010-09-08 18:07:00 +02001972 /* always use block 0 to find the target for flushes for now */
1973 pos = 0;
1974 if (!(rq->cmd_flags & REQ_FLUSH))
1975 pos = blk_rq_pos(rq);
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00001976
Tejun Heo29e40132010-09-08 18:07:00 +02001977 ti = dm_table_find_target(map, pos);
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001978 if (!dm_target_is_valid(ti)) {
1979 /*
Keith Busch466d89a2014-10-17 17:46:37 -06001980 * Must perform setup, that rq_completed() requires,
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001981 * before calling dm_kill_unmapped_request
1982 */
1983 DMERR_LIMIT("request attempted access beyond the end of device");
Keith Busch466d89a2014-10-17 17:46:37 -06001984 dm_start_request(md, rq);
1985 dm_kill_unmapped_request(rq, -EIO);
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001986 continue;
1987 }
Tejun Heo29e40132010-09-08 18:07:00 +02001988
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001989 if (ti->type->busy && ti->type->busy(ti))
Jens Axboe7eaceac2011-03-10 08:52:07 +01001990 goto delay_and_out;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001991
Keith Busch466d89a2014-10-17 17:46:37 -06001992 dm_start_request(md, rq);
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00001993
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001994 tio = rq->special;
1995 /* Establish tio->ti before queuing work (map_tio_request) */
1996 tio->ti = ti;
1997 queue_kthread_work(&md->kworker, &tio->work);
Kiyoshi Ueda052189a2011-01-13 20:00:00 +00001998 BUG_ON(!irqs_disabled());
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001999 }
2000
2001 goto out;
2002
Jens Axboe7eaceac2011-03-10 08:52:07 +01002003delay_and_out:
2004 blk_delay_queue(q, HZ / 10);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002005out:
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002006 dm_put_live_table(md, srcu_idx);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002007}
2008
2009int dm_underlying_device_busy(struct request_queue *q)
2010{
2011 return blk_lld_busy(q);
2012}
2013EXPORT_SYMBOL_GPL(dm_underlying_device_busy);
2014
2015static int dm_lld_busy(struct request_queue *q)
2016{
2017 int r;
2018 struct mapped_device *md = q->queuedata;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002019 struct dm_table *map = dm_get_live_table_fast(md);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002020
2021 if (!map || test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags))
2022 r = 1;
2023 else
2024 r = dm_table_any_busy_target(map);
2025
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002026 dm_put_live_table_fast(md);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002027
2028 return r;
2029}
2030
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031static int dm_any_congested(void *congested_data, int bdi_bits)
2032{
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00002033 int r = bdi_bits;
2034 struct mapped_device *md = congested_data;
2035 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01002037 if (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002038 map = dm_get_live_table_fast(md);
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00002039 if (map) {
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002040 /*
2041 * Request-based dm cares about only own queue for
2042 * the query about congestion status of request_queue
2043 */
2044 if (dm_request_based(md))
2045 r = md->queue->backing_dev_info.state &
2046 bdi_bits;
2047 else
2048 r = dm_table_any_congested(map, bdi_bits);
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00002049 }
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002050 dm_put_live_table_fast(md);
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00002051 }
2052
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 return r;
2054}
2055
2056/*-----------------------------------------------------------------
2057 * An IDR is used to keep track of allocated minor numbers.
2058 *---------------------------------------------------------------*/
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002059static void free_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060{
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002061 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 idr_remove(&_minor_idr, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002063 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064}
2065
2066/*
2067 * See if the device with a specific minor # is free.
2068 */
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01002069static int specific_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070{
Tejun Heoc9d76be2013-02-27 17:04:26 -08002071 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072
2073 if (minor >= (1 << MINORBITS))
2074 return -EINVAL;
2075
Tejun Heoc9d76be2013-02-27 17:04:26 -08002076 idr_preload(GFP_KERNEL);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002077 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078
Tejun Heoc9d76be2013-02-27 17:04:26 -08002079 r = idr_alloc(&_minor_idr, MINOR_ALLOCED, minor, minor + 1, GFP_NOWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002081 spin_unlock(&_minor_lock);
Tejun Heoc9d76be2013-02-27 17:04:26 -08002082 idr_preload_end();
2083 if (r < 0)
2084 return r == -ENOSPC ? -EBUSY : r;
2085 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086}
2087
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01002088static int next_free_minor(int *minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089{
Tejun Heoc9d76be2013-02-27 17:04:26 -08002090 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091
Tejun Heoc9d76be2013-02-27 17:04:26 -08002092 idr_preload(GFP_KERNEL);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002093 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094
Tejun Heoc9d76be2013-02-27 17:04:26 -08002095 r = idr_alloc(&_minor_idr, MINOR_ALLOCED, 0, 1 << MINORBITS, GFP_NOWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002097 spin_unlock(&_minor_lock);
Tejun Heoc9d76be2013-02-27 17:04:26 -08002098 idr_preload_end();
2099 if (r < 0)
2100 return r;
2101 *minor = r;
2102 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103}
2104
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07002105static const struct block_device_operations dm_blk_dops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106
Mikulas Patocka53d59142009-04-02 19:55:37 +01002107static void dm_wq_work(struct work_struct *work);
2108
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002109static void dm_init_md_queue(struct mapped_device *md)
2110{
2111 /*
2112 * Request-based dm devices cannot be stacked on top of bio-based dm
2113 * devices. The type of this dm device has not been decided yet.
2114 * The type is decided at the first table loading time.
2115 * To prevent problematic device stacking, clear the queue flag
2116 * for request stacking support until then.
2117 *
2118 * This queue is new, so no concurrency on the queue_flags.
2119 */
2120 queue_flag_clear_unlocked(QUEUE_FLAG_STACKABLE, md->queue);
2121
2122 md->queue->queuedata = md;
2123 md->queue->backing_dev_info.congested_fn = dm_any_congested;
2124 md->queue->backing_dev_info.congested_data = md;
2125 blk_queue_make_request(md->queue, dm_request);
2126 blk_queue_bounce_limit(md->queue, BLK_BOUNCE_ANY);
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002127 blk_queue_merge_bvec(md->queue, dm_merge_bvec);
2128}
2129
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130/*
2131 * Allocate and initialise a blank device with a given minor.
2132 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002133static struct mapped_device *alloc_dev(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134{
2135 int r;
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01002136 struct mapped_device *md = kzalloc(sizeof(*md), GFP_KERNEL);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07002137 void *old_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138
2139 if (!md) {
2140 DMWARN("unable to allocate device, out of memory.");
2141 return NULL;
2142 }
2143
Jeff Mahoney10da4f72006-06-26 00:27:25 -07002144 if (!try_module_get(THIS_MODULE))
Milan Broz6ed7ade2008-02-08 02:10:19 +00002145 goto bad_module_get;
Jeff Mahoney10da4f72006-06-26 00:27:25 -07002146
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 /* get a minor number for the dev */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002148 if (minor == DM_ANY_MINOR)
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01002149 r = next_free_minor(&minor);
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002150 else
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01002151 r = specific_minor(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 if (r < 0)
Milan Broz6ed7ade2008-02-08 02:10:19 +00002153 goto bad_minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002155 r = init_srcu_struct(&md->io_barrier);
2156 if (r < 0)
2157 goto bad_io_barrier;
2158
Mike Snitzera5664da2010-08-12 04:14:01 +01002159 md->type = DM_TYPE_NONE;
Daniel Walkere61290a2008-02-08 02:10:08 +00002160 mutex_init(&md->suspend_lock);
Mike Snitzera5664da2010-08-12 04:14:01 +01002161 mutex_init(&md->type_lock);
Benjamin Marzinski86f11522014-08-13 13:53:43 -05002162 mutex_init(&md->table_devices_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01002163 spin_lock_init(&md->deferred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 atomic_set(&md->holders, 1);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -07002165 atomic_set(&md->open_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 atomic_set(&md->event_nr, 0);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002167 atomic_set(&md->uevent_seq, 0);
2168 INIT_LIST_HEAD(&md->uevent_list);
Benjamin Marzinski86f11522014-08-13 13:53:43 -05002169 INIT_LIST_HEAD(&md->table_devices);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002170 spin_lock_init(&md->uevent_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002172 md->queue = blk_alloc_queue(GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 if (!md->queue)
Milan Broz6ed7ade2008-02-08 02:10:19 +00002174 goto bad_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002176 dm_init_md_queue(md);
Stefan Bader9faf4002006-10-03 01:15:41 -07002177
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 md->disk = alloc_disk(1);
2179 if (!md->disk)
Milan Broz6ed7ade2008-02-08 02:10:19 +00002180 goto bad_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02002182 atomic_set(&md->pending[0], 0);
2183 atomic_set(&md->pending[1], 0);
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07002184 init_waitqueue_head(&md->wait);
Mikulas Patocka53d59142009-04-02 19:55:37 +01002185 INIT_WORK(&md->work, dm_wq_work);
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07002186 init_waitqueue_head(&md->eventq);
Mikulas Patocka2995fa72014-01-13 19:37:54 -05002187 init_completion(&md->kobj_holder.completion);
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002188 md->kworker_task = NULL;
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07002189
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 md->disk->major = _major;
2191 md->disk->first_minor = minor;
2192 md->disk->fops = &dm_blk_dops;
2193 md->disk->queue = md->queue;
2194 md->disk->private_data = md;
2195 sprintf(md->disk->disk_name, "dm-%d", minor);
2196 add_disk(md->disk);
Mike Anderson7e51f252006-03-27 01:17:52 -08002197 format_dev_t(md->name, MKDEV(_major, minor));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198
Tejun Heo670368a2013-07-30 08:40:21 -04002199 md->wq = alloc_workqueue("kdmflush", WQ_MEM_RECLAIM, 0);
Milan Broz304f3f62008-02-08 02:11:17 +00002200 if (!md->wq)
2201 goto bad_thread;
2202
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002203 md->bdev = bdget_disk(md->disk, 0);
2204 if (!md->bdev)
2205 goto bad_bdev;
2206
Tejun Heo6a8736d2010-09-08 18:07:00 +02002207 bio_init(&md->flush_bio);
2208 md->flush_bio.bi_bdev = md->bdev;
2209 md->flush_bio.bi_rw = WRITE_FLUSH;
2210
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002211 dm_stats_init(&md->stats);
2212
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07002213 /* Populate the mapping, nobody knows we exist yet */
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002214 spin_lock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07002215 old_md = idr_replace(&_minor_idr, md, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002216 spin_unlock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07002217
2218 BUG_ON(old_md != MINOR_ALLOCED);
2219
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 return md;
2221
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002222bad_bdev:
2223 destroy_workqueue(md->wq);
Milan Broz304f3f62008-02-08 02:11:17 +00002224bad_thread:
Zdenek Kabelac03022c52009-10-16 23:18:15 +01002225 del_gendisk(md->disk);
Milan Broz304f3f62008-02-08 02:11:17 +00002226 put_disk(md->disk);
Milan Broz6ed7ade2008-02-08 02:10:19 +00002227bad_disk:
Al Viro1312f402006-03-12 11:02:03 -05002228 blk_cleanup_queue(md->queue);
Milan Broz6ed7ade2008-02-08 02:10:19 +00002229bad_queue:
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002230 cleanup_srcu_struct(&md->io_barrier);
2231bad_io_barrier:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 free_minor(minor);
Milan Broz6ed7ade2008-02-08 02:10:19 +00002233bad_minor:
Jeff Mahoney10da4f72006-06-26 00:27:25 -07002234 module_put(THIS_MODULE);
Milan Broz6ed7ade2008-02-08 02:10:19 +00002235bad_module_get:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 kfree(md);
2237 return NULL;
2238}
2239
Jun'ichi Nomuraae9da832007-10-19 22:38:43 +01002240static void unlock_fs(struct mapped_device *md);
2241
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242static void free_dev(struct mapped_device *md)
2243{
Tejun Heof331c022008-09-03 09:01:48 +02002244 int minor = MINOR(disk_devt(md->disk));
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08002245
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002246 unlock_fs(md);
Milan Broz304f3f62008-02-08 02:11:17 +00002247 destroy_workqueue(md->wq);
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002248
2249 if (md->kworker_task)
2250 kthread_stop(md->kworker_task);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002251 if (md->io_pool)
2252 mempool_destroy(md->io_pool);
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05002253 if (md->rq_pool)
2254 mempool_destroy(md->rq_pool);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002255 if (md->bs)
2256 bioset_free(md->bs);
Mike Snitzer63a4f062015-03-23 17:01:43 -04002257
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002258 cleanup_srcu_struct(&md->io_barrier);
Benjamin Marzinski86f11522014-08-13 13:53:43 -05002259 free_table_devices(&md->table_devices);
Mike Snitzer63a4f062015-03-23 17:01:43 -04002260 dm_stats_cleanup(&md->stats);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002261
2262 spin_lock(&_minor_lock);
2263 md->disk->private_data = NULL;
2264 spin_unlock(&_minor_lock);
Mike Snitzer63a4f062015-03-23 17:01:43 -04002265 if (blk_get_integrity(md->disk))
2266 blk_integrity_unregister(md->disk);
2267 del_gendisk(md->disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 put_disk(md->disk);
Al Viro1312f402006-03-12 11:02:03 -05002269 blk_cleanup_queue(md->queue);
Mike Snitzer63a4f062015-03-23 17:01:43 -04002270 bdput(md->bdev);
2271 free_minor(minor);
2272
Jeff Mahoney10da4f72006-06-26 00:27:25 -07002273 module_put(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 kfree(md);
2275}
2276
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002277static void __bind_mempools(struct mapped_device *md, struct dm_table *t)
2278{
Mikulas Patockac0820cf2012-12-21 20:23:38 +00002279 struct dm_md_mempools *p = dm_table_get_md_mempools(t);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002280
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00002281 if (md->io_pool && md->bs) {
Jun'ichi Nomura16245bd2013-03-01 22:45:44 +00002282 /* The md already has necessary mempools. */
2283 if (dm_table_get_type(t) == DM_TYPE_BIO_BASED) {
2284 /*
2285 * Reload bioset because front_pad may have changed
2286 * because a different table was loaded.
2287 */
2288 bioset_free(md->bs);
2289 md->bs = p->bs;
2290 p->bs = NULL;
Jun'ichi Nomura16245bd2013-03-01 22:45:44 +00002291 }
Keith Busch466d89a2014-10-17 17:46:37 -06002292 /*
2293 * There's no need to reload with request-based dm
2294 * because the size of front_pad doesn't change.
2295 * Note for future: If you are to reload bioset,
2296 * prep-ed requests in the queue may refer
2297 * to bio from the old bioset, so you must walk
2298 * through the queue to unprep.
2299 */
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002300 goto out;
Mikulas Patockac0820cf2012-12-21 20:23:38 +00002301 }
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002302
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05002303 BUG_ON(!p || md->io_pool || md->rq_pool || md->bs);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002304
2305 md->io_pool = p->io_pool;
2306 p->io_pool = NULL;
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05002307 md->rq_pool = p->rq_pool;
2308 p->rq_pool = NULL;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002309 md->bs = p->bs;
2310 p->bs = NULL;
2311
2312out:
2313 /* mempool bind completed, now no need any mempools in the table */
2314 dm_table_free_md_mempools(t);
2315}
2316
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317/*
2318 * Bind a table to the device.
2319 */
2320static void event_callback(void *context)
2321{
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002322 unsigned long flags;
2323 LIST_HEAD(uevents);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 struct mapped_device *md = (struct mapped_device *) context;
2325
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002326 spin_lock_irqsave(&md->uevent_lock, flags);
2327 list_splice_init(&md->uevent_list, &uevents);
2328 spin_unlock_irqrestore(&md->uevent_lock, flags);
2329
Tejun Heoed9e1982008-08-25 19:56:05 +09002330 dm_send_uevents(&uevents, &disk_to_dev(md->disk)->kobj);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002331
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 atomic_inc(&md->event_nr);
2333 wake_up(&md->eventq);
2334}
2335
Mike Snitzerc2176492011-01-13 19:53:46 +00002336/*
2337 * Protected by md->suspend_lock obtained by dm_swap_table().
2338 */
Alasdair G Kergon4e90188be2005-07-28 21:15:59 -07002339static void __set_size(struct mapped_device *md, sector_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340{
Alasdair G Kergon4e90188be2005-07-28 21:15:59 -07002341 set_capacity(md->disk, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002343 i_size_write(md->bdev->bd_inode, (loff_t)size << SECTOR_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344}
2345
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002346/*
Mikulas Patockad5b9dd02011-08-02 12:32:04 +01002347 * Return 1 if the queue has a compulsory merge_bvec_fn function.
2348 *
2349 * If this function returns 0, then the device is either a non-dm
2350 * device without a merge_bvec_fn, or it is a dm device that is
2351 * able to split any bios it receives that are too big.
2352 */
2353int dm_queue_merge_is_compulsory(struct request_queue *q)
2354{
2355 struct mapped_device *dev_md;
2356
2357 if (!q->merge_bvec_fn)
2358 return 0;
2359
2360 if (q->make_request_fn == dm_request) {
2361 dev_md = q->queuedata;
2362 if (test_bit(DMF_MERGE_IS_OPTIONAL, &dev_md->flags))
2363 return 0;
2364 }
2365
2366 return 1;
2367}
2368
2369static int dm_device_merge_is_compulsory(struct dm_target *ti,
2370 struct dm_dev *dev, sector_t start,
2371 sector_t len, void *data)
2372{
2373 struct block_device *bdev = dev->bdev;
2374 struct request_queue *q = bdev_get_queue(bdev);
2375
2376 return dm_queue_merge_is_compulsory(q);
2377}
2378
2379/*
2380 * Return 1 if it is acceptable to ignore merge_bvec_fn based
2381 * on the properties of the underlying devices.
2382 */
2383static int dm_table_merge_is_optional(struct dm_table *table)
2384{
2385 unsigned i = 0;
2386 struct dm_target *ti;
2387
2388 while (i < dm_table_get_num_targets(table)) {
2389 ti = dm_table_get_target(table, i++);
2390
2391 if (ti->type->iterate_devices &&
2392 ti->type->iterate_devices(ti, dm_device_merge_is_compulsory, NULL))
2393 return 0;
2394 }
2395
2396 return 1;
2397}
2398
2399/*
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002400 * Returns old map, which caller must destroy.
2401 */
2402static struct dm_table *__bind(struct mapped_device *md, struct dm_table *t,
2403 struct queue_limits *limits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404{
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002405 struct dm_table *old_map;
Jens Axboe165125e2007-07-24 09:28:11 +02002406 struct request_queue *q = md->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 sector_t size;
Mikulas Patockad5b9dd02011-08-02 12:32:04 +01002408 int merge_is_optional;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409
2410 size = dm_table_get_size(t);
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08002411
2412 /*
2413 * Wipe any geometry if the size of the table changed.
2414 */
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002415 if (size != dm_get_size(md))
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08002416 memset(&md->geometry, 0, sizeof(md->geometry));
2417
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002418 __set_size(md, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002420 dm_table_event_callback(t, event_callback, md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002421
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002422 /*
2423 * The queue hasn't been stopped yet, if the old table type wasn't
2424 * for request-based during suspension. So stop it to prevent
2425 * I/O mapping before resume.
2426 * This must be done before setting the queue restrictions,
2427 * because request-based dm may be run just after the setting.
2428 */
2429 if (dm_table_request_based(t) && !blk_queue_stopped(q))
2430 stop_queue(q);
2431
2432 __bind_mempools(md, t);
2433
Mikulas Patockad5b9dd02011-08-02 12:32:04 +01002434 merge_is_optional = dm_table_merge_is_optional(t);
2435
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002436 old_map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002437 rcu_assign_pointer(md->map, t);
Alasdair G Kergon36a04562011-10-31 20:19:04 +00002438 md->immutable_target_type = dm_table_get_immutable_target_type(t);
2439
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002440 dm_table_set_restrictions(t, q, limits);
Mikulas Patockad5b9dd02011-08-02 12:32:04 +01002441 if (merge_is_optional)
2442 set_bit(DMF_MERGE_IS_OPTIONAL, &md->flags);
2443 else
2444 clear_bit(DMF_MERGE_IS_OPTIONAL, &md->flags);
Hannes Reinecke41abc4e2014-11-05 14:35:50 +01002445 if (old_map)
2446 dm_sync_table(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002447
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002448 return old_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449}
2450
Alasdair G Kergona7940152009-12-10 23:52:23 +00002451/*
2452 * Returns unbound table for the caller to free.
2453 */
2454static struct dm_table *__unbind(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455{
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002456 struct dm_table *map = rcu_dereference_protected(md->map, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457
2458 if (!map)
Alasdair G Kergona7940152009-12-10 23:52:23 +00002459 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460
2461 dm_table_event_callback(map, NULL, NULL);
Monam Agarwal9cdb8522014-03-23 23:58:27 +05302462 RCU_INIT_POINTER(md->map, NULL);
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002463 dm_sync_table(md);
Alasdair G Kergona7940152009-12-10 23:52:23 +00002464
2465 return map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466}
2467
2468/*
2469 * Constructor for a new device.
2470 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002471int dm_create(int minor, struct mapped_device **result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472{
2473 struct mapped_device *md;
2474
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002475 md = alloc_dev(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 if (!md)
2477 return -ENXIO;
2478
Milan Broz784aae72009-01-06 03:05:12 +00002479 dm_sysfs_init(md);
2480
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 *result = md;
2482 return 0;
2483}
2484
Mike Snitzera5664da2010-08-12 04:14:01 +01002485/*
2486 * Functions to manage md->type.
2487 * All are required to hold md->type_lock.
2488 */
2489void dm_lock_md_type(struct mapped_device *md)
2490{
2491 mutex_lock(&md->type_lock);
2492}
2493
2494void dm_unlock_md_type(struct mapped_device *md)
2495{
2496 mutex_unlock(&md->type_lock);
2497}
2498
2499void dm_set_md_type(struct mapped_device *md, unsigned type)
2500{
Mike Snitzer00c4fc32013-08-27 18:57:03 -04002501 BUG_ON(!mutex_is_locked(&md->type_lock));
Mike Snitzera5664da2010-08-12 04:14:01 +01002502 md->type = type;
2503}
2504
2505unsigned dm_get_md_type(struct mapped_device *md)
2506{
Mike Snitzer00c4fc32013-08-27 18:57:03 -04002507 BUG_ON(!mutex_is_locked(&md->type_lock));
Mike Snitzera5664da2010-08-12 04:14:01 +01002508 return md->type;
2509}
2510
Mike Snitzere5863d92014-12-17 21:08:12 -05002511static bool dm_md_type_request_based(struct mapped_device *md)
2512{
2513 unsigned table_type = dm_get_md_type(md);
2514
2515 return (table_type == DM_TYPE_REQUEST_BASED ||
2516 table_type == DM_TYPE_MQ_REQUEST_BASED);
2517}
2518
Alasdair G Kergon36a04562011-10-31 20:19:04 +00002519struct target_type *dm_get_immutable_target_type(struct mapped_device *md)
2520{
2521 return md->immutable_target_type;
2522}
2523
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002524/*
Mike Snitzerf84cb8a2013-09-19 12:13:58 -04002525 * The queue_limits are only valid as long as you have a reference
2526 * count on 'md'.
2527 */
2528struct queue_limits *dm_get_queue_limits(struct mapped_device *md)
2529{
2530 BUG_ON(!atomic_read(&md->holders));
2531 return &md->queue->limits;
2532}
2533EXPORT_SYMBOL_GPL(dm_get_queue_limits);
2534
2535/*
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002536 * Fully initialize a request-based queue (->elevator, ->request_fn, etc).
2537 */
2538static int dm_init_request_based_queue(struct mapped_device *md)
2539{
2540 struct request_queue *q = NULL;
2541
2542 if (md->queue->elevator)
2543 return 1;
2544
2545 /* Fully initialize the queue */
2546 q = blk_init_allocated_queue(md->queue, dm_request_fn, NULL);
2547 if (!q)
2548 return 0;
2549
2550 md->queue = q;
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002551 dm_init_md_queue(md);
2552 blk_queue_softirq_done(md->queue, dm_softirq_done);
2553 blk_queue_prep_rq(md->queue, dm_prep_fn);
2554 blk_queue_lld_busy(md->queue, dm_lld_busy);
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002555
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002556 /* Also initialize the request-based DM worker thread */
2557 init_kthread_worker(&md->kworker);
2558 md->kworker_task = kthread_run(kthread_worker_fn, &md->kworker,
2559 "kdmwork-%s", dm_device_name(md));
2560
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002561 elv_register_queue(md->queue);
2562
2563 return 1;
2564}
2565
2566/*
2567 * Setup the DM device's queue based on md's type
2568 */
2569int dm_setup_md_queue(struct mapped_device *md)
2570{
Mike Snitzere5863d92014-12-17 21:08:12 -05002571 if (dm_md_type_request_based(md) && !dm_init_request_based_queue(md)) {
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002572 DMWARN("Cannot initialize queue for request-based mapped device");
2573 return -EINVAL;
2574 }
2575
2576 return 0;
2577}
2578
Mikulas Patocka2bec1f42015-02-17 14:30:53 -05002579struct mapped_device *dm_get_md(dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580{
2581 struct mapped_device *md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 unsigned minor = MINOR(dev);
2583
2584 if (MAJOR(dev) != _major || minor >= (1 << MINORBITS))
2585 return NULL;
2586
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002587 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588
2589 md = idr_find(&_minor_idr, minor);
Mikulas Patocka2bec1f42015-02-17 14:30:53 -05002590 if (md) {
2591 if ((md == MINOR_ALLOCED ||
2592 (MINOR(disk_devt(dm_disk(md))) != minor) ||
2593 dm_deleting_md(md) ||
2594 test_bit(DMF_FREEING, &md->flags))) {
2595 md = NULL;
2596 goto out;
2597 }
2598 dm_get(md);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002599 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002601out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002602 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603
David Teigland637842c2006-01-06 00:20:00 -08002604 return md;
2605}
Alasdair G Kergon3cf2e4b2011-10-31 20:19:06 +00002606EXPORT_SYMBOL_GPL(dm_get_md);
David Teiglandd229a952006-01-06 00:20:01 -08002607
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08002608void *dm_get_mdptr(struct mapped_device *md)
David Teigland637842c2006-01-06 00:20:00 -08002609{
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08002610 return md->interface_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611}
2612
2613void dm_set_mdptr(struct mapped_device *md, void *ptr)
2614{
2615 md->interface_ptr = ptr;
2616}
2617
2618void dm_get(struct mapped_device *md)
2619{
2620 atomic_inc(&md->holders);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002621 BUG_ON(test_bit(DMF_FREEING, &md->flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622}
2623
Mikulas Patocka09ee96b2015-02-26 11:41:28 -05002624int dm_hold(struct mapped_device *md)
2625{
2626 spin_lock(&_minor_lock);
2627 if (test_bit(DMF_FREEING, &md->flags)) {
2628 spin_unlock(&_minor_lock);
2629 return -EBUSY;
2630 }
2631 dm_get(md);
2632 spin_unlock(&_minor_lock);
2633 return 0;
2634}
2635EXPORT_SYMBOL_GPL(dm_hold);
2636
Alasdair G Kergon72d94862006-06-26 00:27:35 -07002637const char *dm_device_name(struct mapped_device *md)
2638{
2639 return md->name;
2640}
2641EXPORT_SYMBOL_GPL(dm_device_name);
2642
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002643static void __dm_destroy(struct mapped_device *md, bool wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644{
Mike Anderson1134e5a2006-03-27 01:17:54 -08002645 struct dm_table *map;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002646 int srcu_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002648 might_sleep();
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002649
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002650 map = dm_get_live_table(md, &srcu_idx);
Mike Snitzer63a4f062015-03-23 17:01:43 -04002651
2652 spin_lock(&_minor_lock);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002653 idr_replace(&_minor_idr, MINOR_ALLOCED, MINOR(disk_devt(dm_disk(md))));
2654 set_bit(DMF_FREEING, &md->flags);
2655 spin_unlock(&_minor_lock);
2656
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002657 if (dm_request_based(md))
2658 flush_kthread_worker(&md->kworker);
2659
Mikulas Patockaab7c7bb2015-02-27 14:04:27 -05002660 /*
2661 * Take suspend_lock so that presuspend and postsuspend methods
2662 * do not race with internal suspend.
2663 */
2664 mutex_lock(&md->suspend_lock);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002665 if (!dm_suspended_md(md)) {
2666 dm_table_presuspend_targets(map);
2667 dm_table_postsuspend_targets(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668 }
Mikulas Patockaab7c7bb2015-02-27 14:04:27 -05002669 mutex_unlock(&md->suspend_lock);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002670
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002671 /* dm_put_live_table must be before msleep, otherwise deadlock is possible */
2672 dm_put_live_table(md, srcu_idx);
2673
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002674 /*
2675 * Rare, but there may be I/O requests still going to complete,
2676 * for example. Wait for all references to disappear.
2677 * No one should increment the reference count of the mapped_device,
2678 * after the mapped_device state becomes DMF_FREEING.
2679 */
2680 if (wait)
2681 while (atomic_read(&md->holders))
2682 msleep(1);
2683 else if (atomic_read(&md->holders))
2684 DMWARN("%s: Forcibly removing mapped_device still in use! (%d users)",
2685 dm_device_name(md), atomic_read(&md->holders));
2686
2687 dm_sysfs_exit(md);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002688 dm_table_destroy(__unbind(md));
2689 free_dev(md);
2690}
2691
2692void dm_destroy(struct mapped_device *md)
2693{
2694 __dm_destroy(md, true);
2695}
2696
2697void dm_destroy_immediate(struct mapped_device *md)
2698{
2699 __dm_destroy(md, false);
2700}
2701
2702void dm_put(struct mapped_device *md)
2703{
2704 atomic_dec(&md->holders);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705}
Edward Goggin79eb8852007-05-09 02:32:56 -07002706EXPORT_SYMBOL_GPL(dm_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707
Mikulas Patocka401600d2009-04-02 19:55:38 +01002708static int dm_wait_for_completion(struct mapped_device *md, int interruptible)
Milan Broz46125c12008-02-08 02:10:30 +00002709{
2710 int r = 0;
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002711 DECLARE_WAITQUEUE(wait, current);
2712
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002713 add_wait_queue(&md->wait, &wait);
Milan Broz46125c12008-02-08 02:10:30 +00002714
2715 while (1) {
Mikulas Patocka401600d2009-04-02 19:55:38 +01002716 set_current_state(interruptible);
Milan Broz46125c12008-02-08 02:10:30 +00002717
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00002718 if (!md_in_flight(md))
Milan Broz46125c12008-02-08 02:10:30 +00002719 break;
2720
Mikulas Patocka401600d2009-04-02 19:55:38 +01002721 if (interruptible == TASK_INTERRUPTIBLE &&
2722 signal_pending(current)) {
Milan Broz46125c12008-02-08 02:10:30 +00002723 r = -EINTR;
2724 break;
2725 }
2726
2727 io_schedule();
2728 }
2729 set_current_state(TASK_RUNNING);
2730
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002731 remove_wait_queue(&md->wait, &wait);
2732
Milan Broz46125c12008-02-08 02:10:30 +00002733 return r;
2734}
2735
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736/*
2737 * Process the deferred bios
2738 */
Mikulas Patockaef208582009-04-02 19:55:38 +01002739static void dm_wq_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740{
Mikulas Patockaef208582009-04-02 19:55:38 +01002741 struct mapped_device *md = container_of(work, struct mapped_device,
2742 work);
Milan Broz6d6f10d2008-02-08 02:10:22 +00002743 struct bio *c;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002744 int srcu_idx;
2745 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002747 map = dm_get_live_table(md, &srcu_idx);
Mikulas Patockaef208582009-04-02 19:55:38 +01002748
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002749 while (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002750 spin_lock_irq(&md->deferred_lock);
2751 c = bio_list_pop(&md->deferred);
2752 spin_unlock_irq(&md->deferred_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01002753
Tejun Heo6a8736d2010-09-08 18:07:00 +02002754 if (!c)
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002755 break;
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002756
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002757 if (dm_request_based(md))
2758 generic_make_request(c);
Tejun Heo6a8736d2010-09-08 18:07:00 +02002759 else
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002760 __split_and_process_bio(md, map, c);
Mikulas Patocka022c2612009-04-02 19:55:39 +01002761 }
Milan Broz73d410c2008-02-08 02:10:25 +00002762
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002763 dm_put_live_table(md, srcu_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764}
2765
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002766static void dm_queue_flush(struct mapped_device *md)
Milan Broz304f3f62008-02-08 02:11:17 +00002767{
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002768 clear_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01002769 smp_mb__after_atomic();
Mikulas Patocka53d59142009-04-02 19:55:37 +01002770 queue_work(md->wq, &md->work);
Milan Broz304f3f62008-02-08 02:11:17 +00002771}
2772
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773/*
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002774 * Swap in a new table, returning the old one for the caller to destroy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 */
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002776struct dm_table *dm_swap_table(struct mapped_device *md, struct dm_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777{
Mike Christie87eb5b22013-03-01 22:45:48 +00002778 struct dm_table *live_map = NULL, *map = ERR_PTR(-EINVAL);
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002779 struct queue_limits limits;
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002780 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781
Daniel Walkere61290a2008-02-08 02:10:08 +00002782 mutex_lock(&md->suspend_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783
2784 /* device must be suspended */
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +00002785 if (!dm_suspended_md(md))
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07002786 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787
Mike Snitzer3ae70652012-09-26 23:45:45 +01002788 /*
2789 * If the new table has no data devices, retain the existing limits.
2790 * This helps multipath with queue_if_no_path if all paths disappear,
2791 * then new I/O is queued based on these limits, and then some paths
2792 * reappear.
2793 */
2794 if (dm_table_has_no_data_devices(table)) {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002795 live_map = dm_get_live_table_fast(md);
Mike Snitzer3ae70652012-09-26 23:45:45 +01002796 if (live_map)
2797 limits = md->queue->limits;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002798 dm_put_live_table_fast(md);
Mike Snitzer3ae70652012-09-26 23:45:45 +01002799 }
2800
Mike Christie87eb5b22013-03-01 22:45:48 +00002801 if (!live_map) {
2802 r = dm_calculate_queue_limits(table, &limits);
2803 if (r) {
2804 map = ERR_PTR(r);
2805 goto out;
2806 }
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002807 }
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002808
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002809 map = __bind(md, table, &limits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07002811out:
Daniel Walkere61290a2008-02-08 02:10:08 +00002812 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002813 return map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814}
2815
2816/*
2817 * Functions to lock and unlock any filesystem running on the
2818 * device.
2819 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002820static int lock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821{
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08002822 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823
2824 WARN_ON(md->frozen_sb);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002825
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002826 md->frozen_sb = freeze_bdev(md->bdev);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002827 if (IS_ERR(md->frozen_sb)) {
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002828 r = PTR_ERR(md->frozen_sb);
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08002829 md->frozen_sb = NULL;
2830 return r;
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002831 }
2832
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002833 set_bit(DMF_FROZEN, &md->flags);
2834
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835 return 0;
2836}
2837
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002838static void unlock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839{
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002840 if (!test_bit(DMF_FROZEN, &md->flags))
2841 return;
2842
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002843 thaw_bdev(md->bdev, md->frozen_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844 md->frozen_sb = NULL;
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002845 clear_bit(DMF_FROZEN, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846}
2847
2848/*
Mike Snitzerffcc3932014-10-28 18:34:52 -04002849 * If __dm_suspend returns 0, the device is completely quiescent
2850 * now. There is no request-processing activity. All new requests
2851 * are being added to md->deferred list.
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002852 *
Mike Snitzerffcc3932014-10-28 18:34:52 -04002853 * Caller must hold md->suspend_lock
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002854 */
Mike Snitzerffcc3932014-10-28 18:34:52 -04002855static int __dm_suspend(struct mapped_device *md, struct dm_table *map,
2856 unsigned suspend_flags, int interruptible)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857{
Mike Snitzerffcc3932014-10-28 18:34:52 -04002858 bool do_lockfs = suspend_flags & DM_SUSPEND_LOCKFS_FLAG;
2859 bool noflush = suspend_flags & DM_SUSPEND_NOFLUSH_FLAG;
2860 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002862 /*
2863 * DMF_NOFLUSH_SUSPENDING must be set before presuspend.
2864 * This flag is cleared before dm_suspend returns.
2865 */
2866 if (noflush)
2867 set_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
2868
Mike Snitzerd67ee212014-10-28 20:13:31 -04002869 /*
2870 * This gets reverted if there's an error later and the targets
2871 * provide the .presuspend_undo hook.
2872 */
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002873 dm_table_presuspend_targets(map);
2874
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002875 /*
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002876 * Flush I/O to the device.
2877 * Any I/O submitted after lock_fs() may not be flushed.
2878 * noflush takes precedence over do_lockfs.
2879 * (lock_fs() flushes I/Os and waits for them to complete.)
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002880 */
2881 if (!noflush && do_lockfs) {
2882 r = lock_fs(md);
Mike Snitzerd67ee212014-10-28 20:13:31 -04002883 if (r) {
2884 dm_table_presuspend_undo_targets(map);
Mike Snitzerffcc3932014-10-28 18:34:52 -04002885 return r;
Mike Snitzerd67ee212014-10-28 20:13:31 -04002886 }
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002887 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888
2889 /*
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002890 * Here we must make sure that no processes are submitting requests
2891 * to target drivers i.e. no one may be executing
2892 * __split_and_process_bio. This is called from dm_request and
2893 * dm_wq_work.
2894 *
2895 * To get all processes out of __split_and_process_bio in dm_request,
2896 * we take the write lock. To prevent any process from reentering
Tejun Heo6a8736d2010-09-08 18:07:00 +02002897 * __split_and_process_bio from dm_request and quiesce the thread
2898 * (dm_wq_work), we set BMF_BLOCK_IO_FOR_SUSPEND and call
2899 * flush_workqueue(md->wq).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900 */
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01002901 set_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
Hannes Reinecke41abc4e2014-11-05 14:35:50 +01002902 if (map)
2903 synchronize_srcu(&md->io_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002905 /*
Tejun Heo29e40132010-09-08 18:07:00 +02002906 * Stop md->queue before flushing md->wq in case request-based
2907 * dm defers requests to md->wq from md->queue.
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002908 */
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002909 if (dm_request_based(md)) {
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002910 stop_queue(md->queue);
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002911 flush_kthread_worker(&md->kworker);
2912 }
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002913
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002914 flush_workqueue(md->wq);
2915
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916 /*
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002917 * At this point no more requests are entering target request routines.
2918 * We call dm_wait_for_completion to wait for all existing requests
2919 * to finish.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920 */
Mike Snitzerffcc3932014-10-28 18:34:52 -04002921 r = dm_wait_for_completion(md, interruptible);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922
Milan Broz6d6f10d2008-02-08 02:10:22 +00002923 if (noflush)
Mikulas Patocka022c2612009-04-02 19:55:39 +01002924 clear_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
Hannes Reinecke41abc4e2014-11-05 14:35:50 +01002925 if (map)
2926 synchronize_srcu(&md->io_barrier);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002927
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928 /* were we interrupted ? */
Milan Broz46125c12008-02-08 02:10:30 +00002929 if (r < 0) {
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002930 dm_queue_flush(md);
Milan Broz73d410c2008-02-08 02:10:25 +00002931
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002932 if (dm_request_based(md))
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002933 start_queue(md->queue);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002934
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002935 unlock_fs(md);
Mike Snitzerd67ee212014-10-28 20:13:31 -04002936 dm_table_presuspend_undo_targets(map);
Mike Snitzerffcc3932014-10-28 18:34:52 -04002937 /* pushback list is already flushed, so skip flush */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002938 }
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002939
Mike Snitzerffcc3932014-10-28 18:34:52 -04002940 return r;
2941}
2942
2943/*
2944 * We need to be able to change a mapping table under a mounted
2945 * filesystem. For example we might want to move some data in
2946 * the background. Before the table can be swapped with
2947 * dm_bind_table, dm_suspend must be called to flush any in
2948 * flight bios and ensure that any further io gets deferred.
2949 */
2950/*
2951 * Suspend mechanism in request-based dm.
2952 *
2953 * 1. Flush all I/Os by lock_fs() if needed.
2954 * 2. Stop dispatching any I/O by stopping the request_queue.
2955 * 3. Wait for all in-flight I/Os to be completed or requeued.
2956 *
2957 * To abort suspend, start the request_queue.
2958 */
2959int dm_suspend(struct mapped_device *md, unsigned suspend_flags)
2960{
2961 struct dm_table *map = NULL;
2962 int r = 0;
2963
2964retry:
2965 mutex_lock_nested(&md->suspend_lock, SINGLE_DEPTH_NESTING);
2966
2967 if (dm_suspended_md(md)) {
2968 r = -EINVAL;
2969 goto out_unlock;
2970 }
2971
2972 if (dm_suspended_internally_md(md)) {
2973 /* already internally suspended, wait for internal resume */
2974 mutex_unlock(&md->suspend_lock);
2975 r = wait_on_bit(&md->flags, DMF_SUSPENDED_INTERNALLY, TASK_INTERRUPTIBLE);
2976 if (r)
2977 return r;
2978 goto retry;
2979 }
2980
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002981 map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mike Snitzerffcc3932014-10-28 18:34:52 -04002982
2983 r = __dm_suspend(md, map, suspend_flags, TASK_INTERRUPTIBLE);
2984 if (r)
2985 goto out_unlock;
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002986
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 set_bit(DMF_SUSPENDED, &md->flags);
2988
Kiyoshi Ueda4d4471c2009-12-10 23:52:26 +00002989 dm_table_postsuspend_targets(map);
2990
Alasdair G Kergond2874832006-11-08 17:44:43 -08002991out_unlock:
Daniel Walkere61290a2008-02-08 02:10:08 +00002992 mutex_unlock(&md->suspend_lock);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002993 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994}
2995
Mike Snitzerffcc3932014-10-28 18:34:52 -04002996static int __dm_resume(struct mapped_device *md, struct dm_table *map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997{
Mike Snitzerffcc3932014-10-28 18:34:52 -04002998 if (map) {
2999 int r = dm_table_resume_targets(map);
3000 if (r)
3001 return r;
3002 }
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07003003
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01003004 dm_queue_flush(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07003005
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01003006 /*
3007 * Flushing deferred I/Os must be done after targets are resumed
3008 * so that mapping of targets can work correctly.
3009 * Request-based dm is queueing the deferred I/Os in its request_queue.
3010 */
3011 if (dm_request_based(md))
3012 start_queue(md->queue);
3013
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07003014 unlock_fs(md);
3015
Mike Snitzerffcc3932014-10-28 18:34:52 -04003016 return 0;
3017}
3018
3019int dm_resume(struct mapped_device *md)
3020{
3021 int r = -EINVAL;
3022 struct dm_table *map = NULL;
3023
3024retry:
3025 mutex_lock_nested(&md->suspend_lock, SINGLE_DEPTH_NESTING);
3026
3027 if (!dm_suspended_md(md))
3028 goto out;
3029
3030 if (dm_suspended_internally_md(md)) {
3031 /* already internally suspended, wait for internal resume */
3032 mutex_unlock(&md->suspend_lock);
3033 r = wait_on_bit(&md->flags, DMF_SUSPENDED_INTERNALLY, TASK_INTERRUPTIBLE);
3034 if (r)
3035 return r;
3036 goto retry;
3037 }
3038
Eric Dumazeta12f5d42014-11-23 09:34:29 -08003039 map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mike Snitzerffcc3932014-10-28 18:34:52 -04003040 if (!map || !dm_table_get_size(map))
3041 goto out;
3042
3043 r = __dm_resume(md, map);
3044 if (r)
3045 goto out;
3046
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07003047 clear_bit(DMF_SUSPENDED, &md->flags);
3048
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07003049 r = 0;
3050out:
Daniel Walkere61290a2008-02-08 02:10:08 +00003051 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07003052
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07003053 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054}
3055
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003056/*
3057 * Internal suspend/resume works like userspace-driven suspend. It waits
3058 * until all bios finish and prevents issuing new bios to the target drivers.
3059 * It may be used only from the kernel.
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003060 */
3061
Mike Snitzerffcc3932014-10-28 18:34:52 -04003062static void __dm_internal_suspend(struct mapped_device *md, unsigned suspend_flags)
3063{
3064 struct dm_table *map = NULL;
3065
Mikulas Patocka96b26c82015-01-08 18:52:26 -05003066 if (md->internal_suspend_count++)
Mike Snitzerffcc3932014-10-28 18:34:52 -04003067 return; /* nested internal suspend */
3068
3069 if (dm_suspended_md(md)) {
3070 set_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
3071 return; /* nest suspend */
3072 }
3073
Eric Dumazeta12f5d42014-11-23 09:34:29 -08003074 map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mike Snitzerffcc3932014-10-28 18:34:52 -04003075
3076 /*
3077 * Using TASK_UNINTERRUPTIBLE because only NOFLUSH internal suspend is
3078 * supported. Properly supporting a TASK_INTERRUPTIBLE internal suspend
3079 * would require changing .presuspend to return an error -- avoid this
3080 * until there is a need for more elaborate variants of internal suspend.
3081 */
3082 (void) __dm_suspend(md, map, suspend_flags, TASK_UNINTERRUPTIBLE);
3083
3084 set_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
3085
3086 dm_table_postsuspend_targets(map);
3087}
3088
3089static void __dm_internal_resume(struct mapped_device *md)
3090{
Mikulas Patocka96b26c82015-01-08 18:52:26 -05003091 BUG_ON(!md->internal_suspend_count);
3092
3093 if (--md->internal_suspend_count)
Mike Snitzerffcc3932014-10-28 18:34:52 -04003094 return; /* resume from nested internal suspend */
3095
3096 if (dm_suspended_md(md))
3097 goto done; /* resume from nested suspend */
3098
3099 /*
3100 * NOTE: existing callers don't need to call dm_table_resume_targets
3101 * (which may fail -- so best to avoid it for now by passing NULL map)
3102 */
3103 (void) __dm_resume(md, NULL);
3104
3105done:
3106 clear_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
3107 smp_mb__after_atomic();
3108 wake_up_bit(&md->flags, DMF_SUSPENDED_INTERNALLY);
3109}
3110
3111void dm_internal_suspend_noflush(struct mapped_device *md)
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003112{
3113 mutex_lock(&md->suspend_lock);
Mike Snitzerffcc3932014-10-28 18:34:52 -04003114 __dm_internal_suspend(md, DM_SUSPEND_NOFLUSH_FLAG);
3115 mutex_unlock(&md->suspend_lock);
3116}
3117EXPORT_SYMBOL_GPL(dm_internal_suspend_noflush);
3118
3119void dm_internal_resume(struct mapped_device *md)
3120{
3121 mutex_lock(&md->suspend_lock);
3122 __dm_internal_resume(md);
3123 mutex_unlock(&md->suspend_lock);
3124}
3125EXPORT_SYMBOL_GPL(dm_internal_resume);
3126
3127/*
3128 * Fast variants of internal suspend/resume hold md->suspend_lock,
3129 * which prevents interaction with userspace-driven suspend.
3130 */
3131
3132void dm_internal_suspend_fast(struct mapped_device *md)
3133{
3134 mutex_lock(&md->suspend_lock);
3135 if (dm_suspended_md(md) || dm_suspended_internally_md(md))
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003136 return;
3137
3138 set_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
3139 synchronize_srcu(&md->io_barrier);
3140 flush_workqueue(md->wq);
3141 dm_wait_for_completion(md, TASK_UNINTERRUPTIBLE);
3142}
Mikulas Patockab735fed2015-02-26 11:40:35 -05003143EXPORT_SYMBOL_GPL(dm_internal_suspend_fast);
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003144
Mike Snitzerffcc3932014-10-28 18:34:52 -04003145void dm_internal_resume_fast(struct mapped_device *md)
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003146{
Mike Snitzerffcc3932014-10-28 18:34:52 -04003147 if (dm_suspended_md(md) || dm_suspended_internally_md(md))
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003148 goto done;
3149
3150 dm_queue_flush(md);
3151
3152done:
3153 mutex_unlock(&md->suspend_lock);
3154}
Mikulas Patockab735fed2015-02-26 11:40:35 -05003155EXPORT_SYMBOL_GPL(dm_internal_resume_fast);
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003156
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157/*-----------------------------------------------------------------
3158 * Event notification.
3159 *---------------------------------------------------------------*/
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00003160int dm_kobject_uevent(struct mapped_device *md, enum kobject_action action,
Milan Broz60935eb2009-06-22 10:12:30 +01003161 unsigned cookie)
Alasdair G Kergon69267a32007-12-13 14:15:57 +00003162{
Milan Broz60935eb2009-06-22 10:12:30 +01003163 char udev_cookie[DM_COOKIE_LENGTH];
3164 char *envp[] = { udev_cookie, NULL };
3165
3166 if (!cookie)
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00003167 return kobject_uevent(&disk_to_dev(md->disk)->kobj, action);
Milan Broz60935eb2009-06-22 10:12:30 +01003168 else {
3169 snprintf(udev_cookie, DM_COOKIE_LENGTH, "%s=%u",
3170 DM_COOKIE_ENV_VAR_NAME, cookie);
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00003171 return kobject_uevent_env(&disk_to_dev(md->disk)->kobj,
3172 action, envp);
Milan Broz60935eb2009-06-22 10:12:30 +01003173 }
Alasdair G Kergon69267a32007-12-13 14:15:57 +00003174}
3175
Mike Anderson7a8c3d32007-10-19 22:48:01 +01003176uint32_t dm_next_uevent_seq(struct mapped_device *md)
3177{
3178 return atomic_add_return(1, &md->uevent_seq);
3179}
3180
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181uint32_t dm_get_event_nr(struct mapped_device *md)
3182{
3183 return atomic_read(&md->event_nr);
3184}
3185
3186int dm_wait_event(struct mapped_device *md, int event_nr)
3187{
3188 return wait_event_interruptible(md->eventq,
3189 (event_nr != atomic_read(&md->event_nr)));
3190}
3191
Mike Anderson7a8c3d32007-10-19 22:48:01 +01003192void dm_uevent_add(struct mapped_device *md, struct list_head *elist)
3193{
3194 unsigned long flags;
3195
3196 spin_lock_irqsave(&md->uevent_lock, flags);
3197 list_add(elist, &md->uevent_list);
3198 spin_unlock_irqrestore(&md->uevent_lock, flags);
3199}
3200
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201/*
3202 * The gendisk is only valid as long as you have a reference
3203 * count on 'md'.
3204 */
3205struct gendisk *dm_disk(struct mapped_device *md)
3206{
3207 return md->disk;
3208}
3209
Milan Broz784aae72009-01-06 03:05:12 +00003210struct kobject *dm_kobject(struct mapped_device *md)
3211{
Mikulas Patocka2995fa72014-01-13 19:37:54 -05003212 return &md->kobj_holder.kobj;
Milan Broz784aae72009-01-06 03:05:12 +00003213}
3214
Milan Broz784aae72009-01-06 03:05:12 +00003215struct mapped_device *dm_get_from_kobject(struct kobject *kobj)
3216{
3217 struct mapped_device *md;
3218
Mikulas Patocka2995fa72014-01-13 19:37:54 -05003219 md = container_of(kobj, struct mapped_device, kobj_holder.kobj);
Milan Broz784aae72009-01-06 03:05:12 +00003220
Milan Broz4d89b7b2009-06-22 10:12:11 +01003221 if (test_bit(DMF_FREEING, &md->flags) ||
Mike Anderson432a2122009-12-10 23:52:20 +00003222 dm_deleting_md(md))
Milan Broz4d89b7b2009-06-22 10:12:11 +01003223 return NULL;
3224
Milan Broz784aae72009-01-06 03:05:12 +00003225 dm_get(md);
3226 return md;
3227}
3228
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +00003229int dm_suspended_md(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230{
3231 return test_bit(DMF_SUSPENDED, &md->flags);
3232}
3233
Mike Snitzerffcc3932014-10-28 18:34:52 -04003234int dm_suspended_internally_md(struct mapped_device *md)
3235{
3236 return test_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
3237}
3238
Mikulas Patocka2c140a22013-11-01 18:27:41 -04003239int dm_test_deferred_remove_flag(struct mapped_device *md)
3240{
3241 return test_bit(DMF_DEFERRED_REMOVE, &md->flags);
3242}
3243
Kiyoshi Ueda64dbce52009-12-10 23:52:27 +00003244int dm_suspended(struct dm_target *ti)
3245{
Kiyoshi Uedaecdb2e22010-03-06 02:29:52 +00003246 return dm_suspended_md(dm_table_get_md(ti->table));
Kiyoshi Ueda64dbce52009-12-10 23:52:27 +00003247}
3248EXPORT_SYMBOL_GPL(dm_suspended);
3249
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08003250int dm_noflush_suspending(struct dm_target *ti)
3251{
Kiyoshi Uedaecdb2e22010-03-06 02:29:52 +00003252 return __noflush_suspending(dm_table_get_md(ti->table));
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08003253}
3254EXPORT_SYMBOL_GPL(dm_noflush_suspending);
3255
Mikulas Patockac0820cf2012-12-21 20:23:38 +00003256struct dm_md_mempools *dm_alloc_md_mempools(unsigned type, unsigned integrity, unsigned per_bio_data_size)
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003257{
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003258 struct dm_md_mempools *pools = kzalloc(sizeof(*pools), GFP_KERNEL);
3259 struct kmem_cache *cachep;
Mike Snitzere5863d92014-12-17 21:08:12 -05003260 unsigned int pool_size = 0;
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003261 unsigned int front_pad;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003262
3263 if (!pools)
3264 return NULL;
3265
Mike Snitzere5863d92014-12-17 21:08:12 -05003266 switch (type) {
3267 case DM_TYPE_BIO_BASED:
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003268 cachep = _io_cache;
Mike Snitzere8603132013-09-12 18:06:12 -04003269 pool_size = dm_get_reserved_bio_based_ios();
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003270 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 -05003271 break;
3272 case DM_TYPE_REQUEST_BASED:
Mike Snitzerf4790822013-09-12 18:06:12 -04003273 pool_size = dm_get_reserved_rq_based_ios();
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05003274 pools->rq_pool = mempool_create_slab_pool(pool_size, _rq_cache);
3275 if (!pools->rq_pool)
3276 goto out;
Mike Snitzere5863d92014-12-17 21:08:12 -05003277 /* fall through to setup remaining rq-based pools */
3278 case DM_TYPE_MQ_REQUEST_BASED:
3279 cachep = _rq_tio_cache;
3280 if (!pool_size)
3281 pool_size = dm_get_reserved_rq_based_ios();
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003282 front_pad = offsetof(struct dm_rq_clone_bio_info, clone);
3283 /* per_bio_data_size is not used. See __bind_mempools(). */
3284 WARN_ON(per_bio_data_size != 0);
Mike Snitzere5863d92014-12-17 21:08:12 -05003285 break;
3286 default:
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003287 goto out;
Mike Snitzere5863d92014-12-17 21:08:12 -05003288 }
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003289
Mike Snitzer6cfa5852013-09-12 18:06:11 -04003290 pools->io_pool = mempool_create_slab_pool(pool_size, cachep);
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003291 if (!pools->io_pool)
3292 goto out;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003293
Junichi Nomura3d8aab22014-10-03 11:55:26 +00003294 pools->bs = bioset_create_nobvec(pool_size, front_pad);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003295 if (!pools->bs)
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003296 goto out;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003297
Martin K. Petersena91a2782011-03-17 11:11:05 +01003298 if (integrity && bioset_integrity_create(pools->bs, pool_size))
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003299 goto out;
Martin K. Petersena91a2782011-03-17 11:11:05 +01003300
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003301 return pools;
3302
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003303out:
3304 dm_free_md_mempools(pools);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003305
3306 return NULL;
3307}
3308
3309void dm_free_md_mempools(struct dm_md_mempools *pools)
3310{
3311 if (!pools)
3312 return;
3313
3314 if (pools->io_pool)
3315 mempool_destroy(pools->io_pool);
3316
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05003317 if (pools->rq_pool)
3318 mempool_destroy(pools->rq_pool);
3319
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003320 if (pools->bs)
3321 bioset_free(pools->bs);
3322
3323 kfree(pools);
3324}
3325
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07003326static const struct block_device_operations dm_blk_dops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327 .open = dm_blk_open,
3328 .release = dm_blk_close,
Milan Brozaa129a22006-10-03 01:15:15 -07003329 .ioctl = dm_blk_ioctl,
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08003330 .getgeo = dm_blk_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331 .owner = THIS_MODULE
3332};
3333
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334/*
3335 * module hooks
3336 */
3337module_init(dm_init);
3338module_exit(dm_exit);
3339
3340module_param(major, uint, 0);
3341MODULE_PARM_DESC(major, "The major number of the device mapper");
Mike Snitzerf4790822013-09-12 18:06:12 -04003342
Mike Snitzere8603132013-09-12 18:06:12 -04003343module_param(reserved_bio_based_ios, uint, S_IRUGO | S_IWUSR);
3344MODULE_PARM_DESC(reserved_bio_based_ios, "Reserved IOs in bio-based mempools");
3345
Mike Snitzerf4790822013-09-12 18:06:12 -04003346module_param(reserved_rq_based_ios, uint, S_IRUGO | S_IWUSR);
3347MODULE_PARM_DESC(reserved_rq_based_ios, "Reserved IOs in request-based mempools");
3348
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349MODULE_DESCRIPTION(DM_NAME " driver");
3350MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
3351MODULE_LICENSE("GPL");