blob: 549b815999a1e082da40b2a59039c499e1766ee5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2001, 2002 Sistina Software (UK) Limited.
Milan Broz784aae72009-01-06 03:05:12 +00003 * Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * This file is released under the GPL.
6 */
7
8#include "dm.h"
Mike Anderson51e5b2b2007-10-19 22:48:00 +01009#include "dm-uevent.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
11#include <linux/init.h>
12#include <linux/module.h>
Arjan van de Ven48c9c272006-03-27 01:18:20 -080013#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/moduleparam.h>
15#include <linux/blkpg.h>
16#include <linux/bio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/mempool.h>
18#include <linux/slab.h>
19#include <linux/idr.h>
Darrick J. Wong3ac51e72006-03-27 01:17:54 -080020#include <linux/hdreg.h>
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +010021#include <linux/delay.h>
Mike Snitzerffcc3932014-10-28 18:34:52 -040022#include <linux/wait.h>
Keith Busch2eb6e1e2014-10-17 17:46:36 -060023#include <linux/kthread.h>
Li Zefan55782132009-06-09 13:43:05 +080024
25#include <trace/events/block.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Alasdair G Kergon72d94862006-06-26 00:27:35 -070027#define DM_MSG_PREFIX "core"
28
Namhyung Kim71a16732011-10-31 20:18:54 +000029#ifdef CONFIG_PRINTK
30/*
31 * ratelimit state to be used in DMXXX_LIMIT().
32 */
33DEFINE_RATELIMIT_STATE(dm_ratelimit_state,
34 DEFAULT_RATELIMIT_INTERVAL,
35 DEFAULT_RATELIMIT_BURST);
36EXPORT_SYMBOL(dm_ratelimit_state);
37#endif
38
Milan Broz60935eb2009-06-22 10:12:30 +010039/*
40 * Cookies are numeric values sent with CHANGE and REMOVE
41 * uevents while resuming, removing or renaming the device.
42 */
43#define DM_COOKIE_ENV_VAR_NAME "DM_COOKIE"
44#define DM_COOKIE_LENGTH 24
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046static const char *_name = DM_NAME;
47
48static unsigned int major = 0;
49static unsigned int _major = 0;
50
Alasdair G Kergond15b7742011-08-02 12:32:01 +010051static DEFINE_IDR(_minor_idr);
52
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -070053static DEFINE_SPINLOCK(_minor_lock);
Mikulas Patocka2c140a22013-11-01 18:27:41 -040054
55static void do_deferred_remove(struct work_struct *w);
56
57static DECLARE_WORK(deferred_remove_work, do_deferred_remove);
58
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -040059static struct workqueue_struct *deferred_remove_workqueue;
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061/*
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000062 * For bio-based dm.
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 * One of these is allocated per bio.
64 */
65struct dm_io {
66 struct mapped_device *md;
67 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 atomic_t io_count;
Richard Kennedy6ae2fa62008-07-21 12:00:28 +010069 struct bio *bio;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -080070 unsigned long start_time;
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +010071 spinlock_t endio_lock;
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -040072 struct dm_stats_aux stats_aux;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073};
74
75/*
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000076 * For request-based dm.
77 * One of these is allocated per request.
78 */
79struct dm_rq_target_io {
80 struct mapped_device *md;
81 struct dm_target *ti;
Mike Snitzer1ae49ea2014-12-05 17:11:05 -050082 struct request *orig, *clone;
Keith Busch2eb6e1e2014-10-17 17:46:36 -060083 struct kthread_work work;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000084 int error;
85 union map_info info;
86};
87
88/*
Kent Overstreet94818742012-09-07 13:44:01 -070089 * For request-based dm - the bio clones we allocate are embedded in these
90 * structs.
91 *
92 * We allocate these with bio_alloc_bioset, using the front_pad parameter when
93 * the bioset is created - this means the bio has to come at the end of the
94 * struct.
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000095 */
96struct dm_rq_clone_bio_info {
97 struct bio *orig;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +010098 struct dm_rq_target_io *tio;
Kent Overstreet94818742012-09-07 13:44:01 -070099 struct bio clone;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000100};
101
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100102union map_info *dm_get_rq_mapinfo(struct request *rq)
103{
104 if (rq && rq->end_io_data)
105 return &((struct dm_rq_target_io *)rq->end_io_data)->info;
106 return NULL;
107}
108EXPORT_SYMBOL_GPL(dm_get_rq_mapinfo);
109
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -0700110#define MINOR_ALLOCED ((void *)-1)
111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112/*
113 * Bits for the md->flags field.
114 */
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +0100115#define DMF_BLOCK_IO_FOR_SUSPEND 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116#define DMF_SUSPENDED 1
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -0800117#define DMF_FROZEN 2
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700118#define DMF_FREEING 3
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700119#define DMF_DELETING 4
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800120#define DMF_NOFLUSH_SUSPENDING 5
Mikulas Patockad5b9dd02011-08-02 12:32:04 +0100121#define DMF_MERGE_IS_OPTIONAL 6
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400122#define DMF_DEFERRED_REMOVE 7
Mike Snitzerffcc3932014-10-28 18:34:52 -0400123#define DMF_SUSPENDED_INTERNALLY 8
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Milan Broz304f3f62008-02-08 02:11:17 +0000125/*
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100126 * A dummy definition to make RCU happy.
127 * struct dm_table should never be dereferenced in this file.
128 */
129struct dm_table {
130 int undefined__;
131};
132
133/*
Milan Broz304f3f62008-02-08 02:11:17 +0000134 * Work processed by per-device workqueue.
135 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136struct mapped_device {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100137 struct srcu_struct io_barrier;
Daniel Walkere61290a2008-02-08 02:10:08 +0000138 struct mutex suspend_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 atomic_t holders;
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700140 atomic_t open_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Mikulas Patocka2a7faeb12013-07-10 23:41:18 +0100142 /*
143 * The current mapping.
144 * Use dm_get_live_table{_fast} or take suspend_lock for
145 * dereference.
146 */
Pranith Kumar6fa99522014-10-28 15:09:57 -0700147 struct dm_table __rcu *map;
Mikulas Patocka2a7faeb12013-07-10 23:41:18 +0100148
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500149 struct list_head table_devices;
150 struct mutex table_devices_lock;
151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 unsigned long flags;
153
Jens Axboe165125e2007-07-24 09:28:11 +0200154 struct request_queue *queue;
Mike Snitzera5664da2010-08-12 04:14:01 +0100155 unsigned type;
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +0100156 /* Protect queue and type against concurrent access. */
Mike Snitzera5664da2010-08-12 04:14:01 +0100157 struct mutex type_lock;
158
Alasdair G Kergon36a04562011-10-31 20:19:04 +0000159 struct target_type *immutable_target_type;
160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 struct gendisk *disk;
Mike Anderson7e51f252006-03-27 01:17:52 -0800162 char name[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164 void *interface_ptr;
165
166 /*
167 * A list of ios that arrived while we were suspended.
168 */
Nikanth Karthikesan316d3152009-10-06 20:16:55 +0200169 atomic_t pending[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 wait_queue_head_t wait;
Mikulas Patocka53d59142009-04-02 19:55:37 +0100171 struct work_struct work;
Kiyoshi Ueda74859362006-12-08 02:41:02 -0800172 struct bio_list deferred;
Mikulas Patocka022c2612009-04-02 19:55:39 +0100173 spinlock_t deferred_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
175 /*
Tejun Heo29e40132010-09-08 18:07:00 +0200176 * Processing queue (flush)
Milan Broz304f3f62008-02-08 02:11:17 +0000177 */
178 struct workqueue_struct *wq;
179
180 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 * io objects are allocated from here.
182 */
183 mempool_t *io_pool;
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500184 mempool_t *rq_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Stefan Bader9faf4002006-10-03 01:15:41 -0700186 struct bio_set *bs;
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 /*
189 * Event handling.
190 */
191 atomic_t event_nr;
192 wait_queue_head_t eventq;
Mike Anderson7a8c3d32007-10-19 22:48:01 +0100193 atomic_t uevent_seq;
194 struct list_head uevent_list;
195 spinlock_t uevent_lock; /* Protect access to uevent_list */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197 /*
198 * freeze/thaw support require holding onto a super block
199 */
200 struct super_block *frozen_sb;
Mikulas Patockadb8fef42009-06-22 10:12:15 +0100201 struct block_device *bdev;
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800202
203 /* forced geometry settings */
204 struct hd_geometry geometry;
Milan Broz784aae72009-01-06 03:05:12 +0000205
Mikulas Patocka2995fa72014-01-13 19:37:54 -0500206 /* kobject and completion */
207 struct dm_kobject_holder kobj_holder;
Mikulas Patockabe35f482014-01-06 23:01:22 -0500208
Tejun Heod87f4c12010-09-03 11:56:19 +0200209 /* zero-length flush that will be cloned and submitted to targets */
210 struct bio flush_bio;
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400211
212 struct dm_stats stats;
Keith Busch2eb6e1e2014-10-17 17:46:36 -0600213
214 struct kthread_worker kworker;
215 struct task_struct *kworker_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216};
217
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +0100218/*
219 * For mempools pre-allocation at the table loading time.
220 */
221struct dm_md_mempools {
222 mempool_t *io_pool;
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500223 mempool_t *rq_pool;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +0100224 struct bio_set *bs;
225};
226
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500227struct table_device {
228 struct list_head list;
229 atomic_t count;
230 struct dm_dev dm_dev;
231};
232
Mike Snitzer6cfa5852013-09-12 18:06:11 -0400233#define RESERVED_BIO_BASED_IOS 16
234#define RESERVED_REQUEST_BASED_IOS 256
Mike Snitzerf4790822013-09-12 18:06:12 -0400235#define RESERVED_MAX_IOS 1024
Christoph Lametere18b8902006-12-06 20:33:20 -0800236static struct kmem_cache *_io_cache;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000237static struct kmem_cache *_rq_tio_cache;
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500238static struct kmem_cache *_rq_cache;
Kent Overstreet94818742012-09-07 13:44:01 -0700239
Mike Snitzerf4790822013-09-12 18:06:12 -0400240/*
Mike Snitzere8603132013-09-12 18:06:12 -0400241 * Bio-based DM's mempools' reserved IOs set by the user.
242 */
243static unsigned reserved_bio_based_ios = RESERVED_BIO_BASED_IOS;
244
245/*
Mike Snitzerf4790822013-09-12 18:06:12 -0400246 * Request-based DM's mempools' reserved IOs set by the user.
247 */
248static unsigned reserved_rq_based_ios = RESERVED_REQUEST_BASED_IOS;
249
250static unsigned __dm_get_reserved_ios(unsigned *reserved_ios,
251 unsigned def, unsigned max)
252{
253 unsigned ios = ACCESS_ONCE(*reserved_ios);
254 unsigned modified_ios = 0;
255
256 if (!ios)
257 modified_ios = def;
258 else if (ios > max)
259 modified_ios = max;
260
261 if (modified_ios) {
262 (void)cmpxchg(reserved_ios, ios, modified_ios);
263 ios = modified_ios;
264 }
265
266 return ios;
267}
268
Mike Snitzere8603132013-09-12 18:06:12 -0400269unsigned dm_get_reserved_bio_based_ios(void)
270{
271 return __dm_get_reserved_ios(&reserved_bio_based_ios,
272 RESERVED_BIO_BASED_IOS, RESERVED_MAX_IOS);
273}
274EXPORT_SYMBOL_GPL(dm_get_reserved_bio_based_ios);
275
Mike Snitzerf4790822013-09-12 18:06:12 -0400276unsigned dm_get_reserved_rq_based_ios(void)
277{
278 return __dm_get_reserved_ios(&reserved_rq_based_ios,
279 RESERVED_REQUEST_BASED_IOS, RESERVED_MAX_IOS);
280}
281EXPORT_SYMBOL_GPL(dm_get_reserved_rq_based_ios);
282
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283static int __init local_init(void)
284{
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100285 int r = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 /* allocate a slab for the dm_ios */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100288 _io_cache = KMEM_CACHE(dm_io, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 if (!_io_cache)
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100290 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000292 _rq_tio_cache = KMEM_CACHE(dm_rq_target_io, 0);
293 if (!_rq_tio_cache)
Mikulas Patockadba14162012-10-12 21:02:15 +0100294 goto out_free_io_cache;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000295
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500296 _rq_cache = kmem_cache_create("dm_clone_request", sizeof(struct request),
297 __alignof__(struct request), 0, NULL);
298 if (!_rq_cache)
299 goto out_free_rq_tio_cache;
300
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100301 r = dm_uevent_init();
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100302 if (r)
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500303 goto out_free_rq_cache;
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100304
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400305 deferred_remove_workqueue = alloc_workqueue("kdmremove", WQ_UNBOUND, 1);
306 if (!deferred_remove_workqueue) {
307 r = -ENOMEM;
308 goto out_uevent_exit;
309 }
310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 _major = major;
312 r = register_blkdev(_major, _name);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100313 if (r < 0)
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400314 goto out_free_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
316 if (!_major)
317 _major = r;
318
319 return 0;
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100320
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400321out_free_workqueue:
322 destroy_workqueue(deferred_remove_workqueue);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100323out_uevent_exit:
324 dm_uevent_exit();
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500325out_free_rq_cache:
326 kmem_cache_destroy(_rq_cache);
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000327out_free_rq_tio_cache:
328 kmem_cache_destroy(_rq_tio_cache);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100329out_free_io_cache:
330 kmem_cache_destroy(_io_cache);
331
332 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333}
334
335static void local_exit(void)
336{
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400337 flush_scheduled_work();
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400338 destroy_workqueue(deferred_remove_workqueue);
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400339
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500340 kmem_cache_destroy(_rq_cache);
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000341 kmem_cache_destroy(_rq_tio_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 kmem_cache_destroy(_io_cache);
Akinobu Mita00d59402007-07-17 04:03:46 -0700343 unregister_blkdev(_major, _name);
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100344 dm_uevent_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
346 _major = 0;
347
348 DMINFO("cleaned up");
349}
350
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000351static int (*_inits[])(void) __initdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 local_init,
353 dm_target_init,
354 dm_linear_init,
355 dm_stripe_init,
Mikulas Patocka952b3552009-12-10 23:51:57 +0000356 dm_io_init,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100357 dm_kcopyd_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 dm_interface_init,
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400359 dm_statistics_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360};
361
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000362static void (*_exits[])(void) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 local_exit,
364 dm_target_exit,
365 dm_linear_exit,
366 dm_stripe_exit,
Mikulas Patocka952b3552009-12-10 23:51:57 +0000367 dm_io_exit,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100368 dm_kcopyd_exit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 dm_interface_exit,
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400370 dm_statistics_exit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371};
372
373static int __init dm_init(void)
374{
375 const int count = ARRAY_SIZE(_inits);
376
377 int r, i;
378
379 for (i = 0; i < count; i++) {
380 r = _inits[i]();
381 if (r)
382 goto bad;
383 }
384
385 return 0;
386
387 bad:
388 while (i--)
389 _exits[i]();
390
391 return r;
392}
393
394static void __exit dm_exit(void)
395{
396 int i = ARRAY_SIZE(_exits);
397
398 while (i--)
399 _exits[i]();
Alasdair G Kergond15b7742011-08-02 12:32:01 +0100400
401 /*
402 * Should be empty by this point.
403 */
Alasdair G Kergond15b7742011-08-02 12:32:01 +0100404 idr_destroy(&_minor_idr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405}
406
407/*
408 * Block device functions
409 */
Mike Anderson432a2122009-12-10 23:52:20 +0000410int dm_deleting_md(struct mapped_device *md)
411{
412 return test_bit(DMF_DELETING, &md->flags);
413}
414
Al Virofe5f9f22008-03-02 10:29:31 -0500415static int dm_blk_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416{
417 struct mapped_device *md;
418
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700419 spin_lock(&_minor_lock);
420
Al Virofe5f9f22008-03-02 10:29:31 -0500421 md = bdev->bd_disk->private_data;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700422 if (!md)
423 goto out;
424
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700425 if (test_bit(DMF_FREEING, &md->flags) ||
Mike Anderson432a2122009-12-10 23:52:20 +0000426 dm_deleting_md(md)) {
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700427 md = NULL;
428 goto out;
429 }
430
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 dm_get(md);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700432 atomic_inc(&md->open_count);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700433
434out:
435 spin_unlock(&_minor_lock);
436
437 return md ? 0 : -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438}
439
Al Virodb2a1442013-05-05 21:52:57 -0400440static void dm_blk_close(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441{
Al Virofe5f9f22008-03-02 10:29:31 -0500442 struct mapped_device *md = disk->private_data;
Arnd Bergmann6e9624b2010-08-07 18:25:34 +0200443
Milan Broz4a1aeb92011-01-13 19:59:48 +0000444 spin_lock(&_minor_lock);
445
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400446 if (atomic_dec_and_test(&md->open_count) &&
447 (test_bit(DMF_DEFERRED_REMOVE, &md->flags)))
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400448 queue_work(deferred_remove_workqueue, &deferred_remove_work);
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400449
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 dm_put(md);
Milan Broz4a1aeb92011-01-13 19:59:48 +0000451
452 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453}
454
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700455int dm_open_count(struct mapped_device *md)
456{
457 return atomic_read(&md->open_count);
458}
459
460/*
461 * Guarantees nothing is using the device before it's deleted.
462 */
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400463int dm_lock_for_deletion(struct mapped_device *md, bool mark_deferred, bool only_deferred)
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700464{
465 int r = 0;
466
467 spin_lock(&_minor_lock);
468
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400469 if (dm_open_count(md)) {
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700470 r = -EBUSY;
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400471 if (mark_deferred)
472 set_bit(DMF_DEFERRED_REMOVE, &md->flags);
473 } else if (only_deferred && !test_bit(DMF_DEFERRED_REMOVE, &md->flags))
474 r = -EEXIST;
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700475 else
476 set_bit(DMF_DELETING, &md->flags);
477
478 spin_unlock(&_minor_lock);
479
480 return r;
481}
482
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400483int dm_cancel_deferred_remove(struct mapped_device *md)
484{
485 int r = 0;
486
487 spin_lock(&_minor_lock);
488
489 if (test_bit(DMF_DELETING, &md->flags))
490 r = -EBUSY;
491 else
492 clear_bit(DMF_DEFERRED_REMOVE, &md->flags);
493
494 spin_unlock(&_minor_lock);
495
496 return r;
497}
498
499static void do_deferred_remove(struct work_struct *w)
500{
501 dm_deferred_remove();
502}
503
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400504sector_t dm_get_size(struct mapped_device *md)
505{
506 return get_capacity(md->disk);
507}
508
Mike Snitzer9974fa22014-02-28 15:33:43 +0100509struct request_queue *dm_get_md_queue(struct mapped_device *md)
510{
511 return md->queue;
512}
513
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400514struct dm_stats *dm_get_stats(struct mapped_device *md)
515{
516 return &md->stats;
517}
518
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800519static int dm_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
520{
521 struct mapped_device *md = bdev->bd_disk->private_data;
522
523 return dm_get_geometry(md, geo);
524}
525
Al Virofe5f9f22008-03-02 10:29:31 -0500526static int dm_blk_ioctl(struct block_device *bdev, fmode_t mode,
Milan Brozaa129a22006-10-03 01:15:15 -0700527 unsigned int cmd, unsigned long arg)
528{
Al Virofe5f9f22008-03-02 10:29:31 -0500529 struct mapped_device *md = bdev->bd_disk->private_data;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100530 int srcu_idx;
Hannes Reinecke6c182cd2013-07-10 23:41:15 +0100531 struct dm_table *map;
Milan Brozaa129a22006-10-03 01:15:15 -0700532 struct dm_target *tgt;
533 int r = -ENOTTY;
534
Hannes Reinecke6c182cd2013-07-10 23:41:15 +0100535retry:
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100536 map = dm_get_live_table(md, &srcu_idx);
537
Milan Brozaa129a22006-10-03 01:15:15 -0700538 if (!map || !dm_table_get_size(map))
539 goto out;
540
541 /* We only support devices that have a single target */
542 if (dm_table_get_num_targets(map) != 1)
543 goto out;
544
545 tgt = dm_table_get_target(map, 0);
Mike Snitzer4d341d82014-11-16 14:21:47 -0500546 if (!tgt->type->ioctl)
547 goto out;
Milan Brozaa129a22006-10-03 01:15:15 -0700548
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +0000549 if (dm_suspended_md(md)) {
Milan Brozaa129a22006-10-03 01:15:15 -0700550 r = -EAGAIN;
551 goto out;
552 }
553
Mike Snitzer4d341d82014-11-16 14:21:47 -0500554 r = tgt->type->ioctl(tgt, cmd, arg);
Milan Brozaa129a22006-10-03 01:15:15 -0700555
556out:
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100557 dm_put_live_table(md, srcu_idx);
Milan Brozaa129a22006-10-03 01:15:15 -0700558
Hannes Reinecke6c182cd2013-07-10 23:41:15 +0100559 if (r == -ENOTCONN) {
560 msleep(10);
561 goto retry;
562 }
563
Milan Brozaa129a22006-10-03 01:15:15 -0700564 return r;
565}
566
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100567static struct dm_io *alloc_io(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568{
569 return mempool_alloc(md->io_pool, GFP_NOIO);
570}
571
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100572static void free_io(struct mapped_device *md, struct dm_io *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573{
574 mempool_free(io, md->io_pool);
575}
576
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100577static void free_tio(struct mapped_device *md, struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578{
Mikulas Patockadba14162012-10-12 21:02:15 +0100579 bio_put(&tio->clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580}
581
Kiyoshi Ueda08885642009-12-10 23:52:15 +0000582static struct dm_rq_target_io *alloc_rq_tio(struct mapped_device *md,
583 gfp_t gfp_mask)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100584{
Jun'ichi Nomura5f015202013-03-01 22:45:48 +0000585 return mempool_alloc(md->io_pool, gfp_mask);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100586}
587
588static void free_rq_tio(struct dm_rq_target_io *tio)
589{
Jun'ichi Nomura5f015202013-03-01 22:45:48 +0000590 mempool_free(tio, tio->md->io_pool);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100591}
592
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500593static struct request *alloc_clone_request(struct mapped_device *md,
594 gfp_t gfp_mask)
595{
596 return mempool_alloc(md->rq_pool, gfp_mask);
597}
598
599static void free_clone_request(struct mapped_device *md, struct request *rq)
600{
601 mempool_free(rq, md->rq_pool);
602}
603
Kiyoshi Ueda90abb8c2009-12-10 23:52:13 +0000604static int md_in_flight(struct mapped_device *md)
605{
606 return atomic_read(&md->pending[READ]) +
607 atomic_read(&md->pending[WRITE]);
608}
609
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800610static void start_io_acct(struct dm_io *io)
611{
612 struct mapped_device *md = io->md;
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400613 struct bio *bio = io->bio;
Tejun Heoc9959052008-08-25 19:47:21 +0900614 int cpu;
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400615 int rw = bio_data_dir(bio);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800616
617 io->start_time = jiffies;
618
Tejun Heo074a7ac2008-08-25 19:56:14 +0900619 cpu = part_stat_lock();
620 part_round_stats(cpu, &dm_disk(md)->part0);
621 part_stat_unlock();
Shaohua Li1e9bb882011-03-22 08:35:35 +0100622 atomic_set(&dm_disk(md)->part0.in_flight[rw],
623 atomic_inc_return(&md->pending[rw]));
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400624
625 if (unlikely(dm_stats_used(&md->stats)))
Kent Overstreet4f024f32013-10-11 15:44:27 -0700626 dm_stats_account_io(&md->stats, bio->bi_rw, bio->bi_iter.bi_sector,
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400627 bio_sectors(bio), false, 0, &io->stats_aux);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800628}
629
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000630static void end_io_acct(struct dm_io *io)
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800631{
632 struct mapped_device *md = io->md;
633 struct bio *bio = io->bio;
634 unsigned long duration = jiffies - io->start_time;
Gu Zheng18c0b222014-11-24 11:05:26 +0800635 int pending;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800636 int rw = bio_data_dir(bio);
637
Gu Zheng18c0b222014-11-24 11:05:26 +0800638 generic_end_io_acct(rw, &dm_disk(md)->part0, io->start_time);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800639
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400640 if (unlikely(dm_stats_used(&md->stats)))
Kent Overstreet4f024f32013-10-11 15:44:27 -0700641 dm_stats_account_io(&md->stats, bio->bi_rw, bio->bi_iter.bi_sector,
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400642 bio_sectors(bio), true, duration, &io->stats_aux);
643
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100644 /*
645 * After this is decremented the bio must not be touched if it is
Tejun Heod87f4c12010-09-03 11:56:19 +0200646 * a flush.
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100647 */
Shaohua Li1e9bb882011-03-22 08:35:35 +0100648 pending = atomic_dec_return(&md->pending[rw]);
649 atomic_set(&dm_disk(md)->part0.in_flight[rw], pending);
Nikanth Karthikesan316d3152009-10-06 20:16:55 +0200650 pending += atomic_read(&md->pending[rw^0x1]);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800651
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000652 /* nudge anyone waiting on suspend queue */
653 if (!pending)
654 wake_up(&md->wait);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800655}
656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657/*
658 * Add the bio to the list of deferred io.
659 */
Mikulas Patocka92c63902009-04-09 00:27:15 +0100660static void queue_io(struct mapped_device *md, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661{
Kiyoshi Ueda054474202010-09-08 18:07:01 +0200662 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Kiyoshi Ueda054474202010-09-08 18:07:01 +0200664 spin_lock_irqsave(&md->deferred_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 bio_list_add(&md->deferred, bio);
Kiyoshi Ueda054474202010-09-08 18:07:01 +0200666 spin_unlock_irqrestore(&md->deferred_lock, flags);
Tejun Heo6a8736d2010-09-08 18:07:00 +0200667 queue_work(md->wq, &md->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668}
669
670/*
671 * Everyone (including functions in this file), should use this
672 * function to access the md->map field, and make sure they call
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100673 * dm_put_live_table() when finished.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 */
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100675struct dm_table *dm_get_live_table(struct mapped_device *md, int *srcu_idx) __acquires(md->io_barrier)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676{
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100677 *srcu_idx = srcu_read_lock(&md->io_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100679 return srcu_dereference(md->map, &md->io_barrier);
680}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100682void dm_put_live_table(struct mapped_device *md, int srcu_idx) __releases(md->io_barrier)
683{
684 srcu_read_unlock(&md->io_barrier, srcu_idx);
685}
686
687void dm_sync_table(struct mapped_device *md)
688{
689 synchronize_srcu(&md->io_barrier);
690 synchronize_rcu_expedited();
691}
692
693/*
694 * A fast alternative to dm_get_live_table/dm_put_live_table.
695 * The caller must not block between these two functions.
696 */
697static struct dm_table *dm_get_live_table_fast(struct mapped_device *md) __acquires(RCU)
698{
699 rcu_read_lock();
700 return rcu_dereference(md->map);
701}
702
703static void dm_put_live_table_fast(struct mapped_device *md) __releases(RCU)
704{
705 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706}
707
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800708/*
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500709 * Open a table device so we can use it as a map destination.
710 */
711static int open_table_device(struct table_device *td, dev_t dev,
712 struct mapped_device *md)
713{
714 static char *_claim_ptr = "I belong to device-mapper";
715 struct block_device *bdev;
716
717 int r;
718
719 BUG_ON(td->dm_dev.bdev);
720
721 bdev = blkdev_get_by_dev(dev, td->dm_dev.mode | FMODE_EXCL, _claim_ptr);
722 if (IS_ERR(bdev))
723 return PTR_ERR(bdev);
724
725 r = bd_link_disk_holder(bdev, dm_disk(md));
726 if (r) {
727 blkdev_put(bdev, td->dm_dev.mode | FMODE_EXCL);
728 return r;
729 }
730
731 td->dm_dev.bdev = bdev;
732 return 0;
733}
734
735/*
736 * Close a table device that we've been using.
737 */
738static void close_table_device(struct table_device *td, struct mapped_device *md)
739{
740 if (!td->dm_dev.bdev)
741 return;
742
743 bd_unlink_disk_holder(td->dm_dev.bdev, dm_disk(md));
744 blkdev_put(td->dm_dev.bdev, td->dm_dev.mode | FMODE_EXCL);
745 td->dm_dev.bdev = NULL;
746}
747
748static struct table_device *find_table_device(struct list_head *l, dev_t dev,
749 fmode_t mode) {
750 struct table_device *td;
751
752 list_for_each_entry(td, l, list)
753 if (td->dm_dev.bdev->bd_dev == dev && td->dm_dev.mode == mode)
754 return td;
755
756 return NULL;
757}
758
759int dm_get_table_device(struct mapped_device *md, dev_t dev, fmode_t mode,
760 struct dm_dev **result) {
761 int r;
762 struct table_device *td;
763
764 mutex_lock(&md->table_devices_lock);
765 td = find_table_device(&md->table_devices, dev, mode);
766 if (!td) {
767 td = kmalloc(sizeof(*td), GFP_KERNEL);
768 if (!td) {
769 mutex_unlock(&md->table_devices_lock);
770 return -ENOMEM;
771 }
772
773 td->dm_dev.mode = mode;
774 td->dm_dev.bdev = NULL;
775
776 if ((r = open_table_device(td, dev, md))) {
777 mutex_unlock(&md->table_devices_lock);
778 kfree(td);
779 return r;
780 }
781
782 format_dev_t(td->dm_dev.name, dev);
783
784 atomic_set(&td->count, 0);
785 list_add(&td->list, &md->table_devices);
786 }
787 atomic_inc(&td->count);
788 mutex_unlock(&md->table_devices_lock);
789
790 *result = &td->dm_dev;
791 return 0;
792}
793EXPORT_SYMBOL_GPL(dm_get_table_device);
794
795void dm_put_table_device(struct mapped_device *md, struct dm_dev *d)
796{
797 struct table_device *td = container_of(d, struct table_device, dm_dev);
798
799 mutex_lock(&md->table_devices_lock);
800 if (atomic_dec_and_test(&td->count)) {
801 close_table_device(td, md);
802 list_del(&td->list);
803 kfree(td);
804 }
805 mutex_unlock(&md->table_devices_lock);
806}
807EXPORT_SYMBOL(dm_put_table_device);
808
809static void free_table_devices(struct list_head *devices)
810{
811 struct list_head *tmp, *next;
812
813 list_for_each_safe(tmp, next, devices) {
814 struct table_device *td = list_entry(tmp, struct table_device, list);
815
816 DMWARN("dm_destroy: %s still exists with %d references",
817 td->dm_dev.name, atomic_read(&td->count));
818 kfree(td);
819 }
820}
821
822/*
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800823 * Get the geometry associated with a dm device
824 */
825int dm_get_geometry(struct mapped_device *md, struct hd_geometry *geo)
826{
827 *geo = md->geometry;
828
829 return 0;
830}
831
832/*
833 * Set the geometry of a device.
834 */
835int dm_set_geometry(struct mapped_device *md, struct hd_geometry *geo)
836{
837 sector_t sz = (sector_t)geo->cylinders * geo->heads * geo->sectors;
838
839 if (geo->start > sz) {
840 DMWARN("Start sector is beyond the geometry limits.");
841 return -EINVAL;
842 }
843
844 md->geometry = *geo;
845
846 return 0;
847}
848
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849/*-----------------------------------------------------------------
850 * CRUD START:
851 * A more elegant soln is in the works that uses the queue
852 * merge fn, unfortunately there are a couple of changes to
853 * the block layer that I want to make for this. So in the
854 * interests of getting something for people to use I give
855 * you this clearly demarcated crap.
856 *---------------------------------------------------------------*/
857
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800858static int __noflush_suspending(struct mapped_device *md)
859{
860 return test_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
861}
862
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863/*
864 * Decrements the number of outstanding ios that a bio has been
865 * cloned into, completing the original io if necc.
866 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800867static void dec_pending(struct dm_io *io, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868{
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800869 unsigned long flags;
Milan Brozb35f8ca2009-03-16 17:44:36 +0000870 int io_error;
871 struct bio *bio;
872 struct mapped_device *md = io->md;
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800873
874 /* Push-back supersedes any I/O errors */
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +0100875 if (unlikely(error)) {
876 spin_lock_irqsave(&io->endio_lock, flags);
877 if (!(io->error > 0 && __noflush_suspending(md)))
878 io->error = error;
879 spin_unlock_irqrestore(&io->endio_lock, flags);
880 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
882 if (atomic_dec_and_test(&io->io_count)) {
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800883 if (io->error == DM_ENDIO_REQUEUE) {
884 /*
885 * Target requested pushing back the I/O.
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800886 */
Mikulas Patocka022c2612009-04-02 19:55:39 +0100887 spin_lock_irqsave(&md->deferred_lock, flags);
Tejun Heo6a8736d2010-09-08 18:07:00 +0200888 if (__noflush_suspending(md))
889 bio_list_add_head(&md->deferred, io->bio);
890 else
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800891 /* noflush suspend was interrupted. */
892 io->error = -EIO;
Mikulas Patocka022c2612009-04-02 19:55:39 +0100893 spin_unlock_irqrestore(&md->deferred_lock, flags);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800894 }
895
Milan Brozb35f8ca2009-03-16 17:44:36 +0000896 io_error = io->error;
897 bio = io->bio;
Tejun Heo6a8736d2010-09-08 18:07:00 +0200898 end_io_acct(io);
899 free_io(md, io);
Jens Axboe2056a782006-03-23 20:00:26 +0100900
Tejun Heo6a8736d2010-09-08 18:07:00 +0200901 if (io_error == DM_ENDIO_REQUEUE)
902 return;
903
Kent Overstreet4f024f32013-10-11 15:44:27 -0700904 if ((bio->bi_rw & REQ_FLUSH) && bio->bi_iter.bi_size) {
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100905 /*
Tejun Heo6a8736d2010-09-08 18:07:00 +0200906 * Preflush done for flush with data, reissue
907 * without REQ_FLUSH.
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100908 */
Tejun Heo6a8736d2010-09-08 18:07:00 +0200909 bio->bi_rw &= ~REQ_FLUSH;
910 queue_io(md, bio);
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100911 } else {
Mike Snitzerb372d362010-09-08 18:07:01 +0200912 /* done with normal IO or empty flush */
Linus Torvalds0a82a8d2013-04-18 09:00:26 -0700913 trace_block_bio_complete(md->queue, bio, io_error);
Mike Snitzerb372d362010-09-08 18:07:01 +0200914 bio_endio(bio, io_error);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800915 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 }
917}
918
Mike Snitzer7eee4ae2014-06-02 15:50:06 -0400919static void disable_write_same(struct mapped_device *md)
920{
921 struct queue_limits *limits = dm_get_queue_limits(md);
922
923 /* device doesn't really support WRITE SAME, disable it */
924 limits->max_write_same_sectors = 0;
925}
926
NeilBrown6712ecf2007-09-27 12:47:43 +0200927static void clone_endio(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928{
zhendong chen5164bec2014-12-17 14:37:04 +0800929 int r = error;
Mikulas Patockabfc6d412014-03-04 18:24:49 -0500930 struct dm_target_io *tio = container_of(bio, struct dm_target_io, clone);
Milan Brozb35f8ca2009-03-16 17:44:36 +0000931 struct dm_io *io = tio->io;
Stefan Bader9faf4002006-10-03 01:15:41 -0700932 struct mapped_device *md = tio->io->md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 dm_endio_fn endio = tio->ti->type->end_io;
934
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 if (!bio_flagged(bio, BIO_UPTODATE) && !error)
936 error = -EIO;
937
938 if (endio) {
Mikulas Patocka7de3ee52012-12-21 20:23:41 +0000939 r = endio(tio->ti, bio, error);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800940 if (r < 0 || r == DM_ENDIO_REQUEUE)
941 /*
942 * error and requeue request are handled
943 * in dec_pending().
944 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 error = r;
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800946 else if (r == DM_ENDIO_INCOMPLETE)
947 /* The target will handle the io */
NeilBrown6712ecf2007-09-27 12:47:43 +0200948 return;
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800949 else if (r) {
950 DMWARN("unimplemented target endio return value: %d", r);
951 BUG();
952 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 }
954
Mike Snitzer7eee4ae2014-06-02 15:50:06 -0400955 if (unlikely(r == -EREMOTEIO && (bio->bi_rw & REQ_WRITE_SAME) &&
956 !bdev_get_queue(bio->bi_bdev)->limits.max_write_same_sectors))
957 disable_write_same(md);
958
Stefan Bader9faf4002006-10-03 01:15:41 -0700959 free_tio(md, tio);
Milan Brozb35f8ca2009-03-16 17:44:36 +0000960 dec_pending(io, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961}
962
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100963/*
964 * Partial completion handling for request-based dm
965 */
966static void end_clone_bio(struct bio *clone, int error)
967{
Mikulas Patockabfc6d412014-03-04 18:24:49 -0500968 struct dm_rq_clone_bio_info *info =
969 container_of(clone, struct dm_rq_clone_bio_info, clone);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100970 struct dm_rq_target_io *tio = info->tio;
971 struct bio *bio = info->orig;
Kent Overstreet4f024f32013-10-11 15:44:27 -0700972 unsigned int nr_bytes = info->orig->bi_iter.bi_size;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100973
974 bio_put(clone);
975
976 if (tio->error)
977 /*
978 * An error has already been detected on the request.
979 * Once error occurred, just let clone->end_io() handle
980 * the remainder.
981 */
982 return;
983 else if (error) {
984 /*
985 * Don't notice the error to the upper layer yet.
986 * The error handling decision is made by the target driver,
987 * when the request is completed.
988 */
989 tio->error = error;
990 return;
991 }
992
993 /*
994 * I/O for the bio successfully completed.
995 * Notice the data completion to the upper layer.
996 */
997
998 /*
999 * bios are processed from the head of the list.
1000 * So the completing bio should always be rq->bio.
1001 * If it's not, something wrong is happening.
1002 */
1003 if (tio->orig->bio != bio)
1004 DMERR("bio completion is going in the middle of the request");
1005
1006 /*
1007 * Update the original request.
1008 * Do not use blk_end_request() here, because it may complete
1009 * the original request before the clone, and break the ordering.
1010 */
1011 blk_update_request(tio->orig, 0, nr_bytes);
1012}
1013
1014/*
1015 * Don't touch any member of the md after calling this function because
1016 * the md may be freed in dm_put() at the end of this function.
1017 * Or do dm_get() before calling this function and dm_put() later.
1018 */
Keith Busch466d89a2014-10-17 17:46:37 -06001019static void rq_completed(struct mapped_device *md, int rw, bool run_queue)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001020{
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00001021 atomic_dec(&md->pending[rw]);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001022
1023 /* nudge anyone waiting on suspend queue */
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00001024 if (!md_in_flight(md))
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001025 wake_up(&md->wait);
1026
Jens Axboea8c32a52012-11-06 12:24:26 +01001027 /*
1028 * Run this off this callpath, as drivers could invoke end_io while
1029 * inside their request_fn (and holding the queue lock). Calling
1030 * back into ->request_fn() could deadlock attempting to grab the
1031 * queue lock again.
1032 */
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001033 if (run_queue)
Jens Axboea8c32a52012-11-06 12:24:26 +01001034 blk_run_queue_async(md->queue);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001035
1036 /*
1037 * dm_put() must be at the end of this function. See the comment above
1038 */
1039 dm_put(md);
1040}
1041
Kiyoshi Uedaa77e28c2009-09-04 20:40:16 +01001042static void free_rq_clone(struct request *clone)
1043{
1044 struct dm_rq_target_io *tio = clone->end_io_data;
1045
1046 blk_rq_unprep_clone(clone);
Mike Snitzere5863d92014-12-17 21:08:12 -05001047 if (clone->q && clone->q->mq_ops)
1048 tio->ti->type->release_clone_rq(clone);
1049 else
1050 free_clone_request(tio->md, clone);
Kiyoshi Uedaa77e28c2009-09-04 20:40:16 +01001051 free_rq_tio(tio);
1052}
1053
Kiyoshi Ueda980691e2009-12-10 23:52:17 +00001054/*
1055 * Complete the clone and the original request.
Keith Busch466d89a2014-10-17 17:46:37 -06001056 * Must be called without clone's queue lock held,
1057 * see end_clone_request() for more details.
Kiyoshi Ueda980691e2009-12-10 23:52:17 +00001058 */
1059static void dm_end_request(struct request *clone, int error)
1060{
1061 int rw = rq_data_dir(clone);
1062 struct dm_rq_target_io *tio = clone->end_io_data;
1063 struct mapped_device *md = tio->md;
1064 struct request *rq = tio->orig;
1065
Tejun Heo29e40132010-09-08 18:07:00 +02001066 if (rq->cmd_type == REQ_TYPE_BLOCK_PC) {
Kiyoshi Ueda980691e2009-12-10 23:52:17 +00001067 rq->errors = clone->errors;
1068 rq->resid_len = clone->resid_len;
1069
1070 if (rq->sense)
1071 /*
1072 * We are using the sense buffer of the original
1073 * request.
1074 * So setting the length of the sense data is enough.
1075 */
1076 rq->sense_len = clone->sense_len;
1077 }
1078
1079 free_rq_clone(clone);
Tejun Heo29e40132010-09-08 18:07:00 +02001080 blk_end_request_all(rq, error);
1081 rq_completed(md, rw, true);
Kiyoshi Ueda980691e2009-12-10 23:52:17 +00001082}
1083
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001084static void dm_unprep_request(struct request *rq)
1085{
Keith Busch466d89a2014-10-17 17:46:37 -06001086 struct dm_rq_target_io *tio = rq->special;
1087 struct request *clone = tio->clone;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001088
1089 rq->special = NULL;
1090 rq->cmd_flags &= ~REQ_DONTPREP;
1091
Mike Snitzere5863d92014-12-17 21:08:12 -05001092 if (clone)
1093 free_rq_clone(clone);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001094}
1095
1096/*
1097 * Requeue the original request of a clone.
1098 */
Keith Busch466d89a2014-10-17 17:46:37 -06001099static void dm_requeue_unmapped_original_request(struct mapped_device *md,
1100 struct request *rq)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001101{
Keith Busch466d89a2014-10-17 17:46:37 -06001102 int rw = rq_data_dir(rq);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001103 struct request_queue *q = rq->q;
1104 unsigned long flags;
1105
1106 dm_unprep_request(rq);
1107
1108 spin_lock_irqsave(q->queue_lock, flags);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001109 blk_requeue_request(q, rq);
1110 spin_unlock_irqrestore(q->queue_lock, flags);
1111
Keith Busch466d89a2014-10-17 17:46:37 -06001112 rq_completed(md, rw, false);
1113}
1114
1115static void dm_requeue_unmapped_request(struct request *clone)
1116{
1117 struct dm_rq_target_io *tio = clone->end_io_data;
1118
1119 dm_requeue_unmapped_original_request(tio->md, tio->orig);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001120}
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001121
1122static void __stop_queue(struct request_queue *q)
1123{
1124 blk_stop_queue(q);
1125}
1126
1127static void stop_queue(struct request_queue *q)
1128{
1129 unsigned long flags;
1130
1131 spin_lock_irqsave(q->queue_lock, flags);
1132 __stop_queue(q);
1133 spin_unlock_irqrestore(q->queue_lock, flags);
1134}
1135
1136static void __start_queue(struct request_queue *q)
1137{
1138 if (blk_queue_stopped(q))
1139 blk_start_queue(q);
1140}
1141
1142static void start_queue(struct request_queue *q)
1143{
1144 unsigned long flags;
1145
1146 spin_lock_irqsave(q->queue_lock, flags);
1147 __start_queue(q);
1148 spin_unlock_irqrestore(q->queue_lock, flags);
1149}
1150
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001151static void dm_done(struct request *clone, int error, bool mapped)
1152{
1153 int r = error;
1154 struct dm_rq_target_io *tio = clone->end_io_data;
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001155 dm_request_endio_fn rq_end_io = NULL;
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001156
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001157 if (tio->ti) {
1158 rq_end_io = tio->ti->type->rq_end_io;
1159
1160 if (mapped && rq_end_io)
1161 r = rq_end_io(tio->ti, clone, error, &tio->info);
1162 }
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001163
Mike Snitzer7eee4ae2014-06-02 15:50:06 -04001164 if (unlikely(r == -EREMOTEIO && (clone->cmd_flags & REQ_WRITE_SAME) &&
1165 !clone->q->limits.max_write_same_sectors))
1166 disable_write_same(tio->md);
1167
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001168 if (r <= 0)
1169 /* The target wants to complete the I/O */
1170 dm_end_request(clone, r);
1171 else if (r == DM_ENDIO_INCOMPLETE)
1172 /* The target will handle the I/O */
1173 return;
1174 else if (r == DM_ENDIO_REQUEUE)
1175 /* The target wants to requeue the I/O */
1176 dm_requeue_unmapped_request(clone);
1177 else {
1178 DMWARN("unimplemented target endio return value: %d", r);
1179 BUG();
1180 }
1181}
1182
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001183/*
1184 * Request completion handler for request-based dm
1185 */
1186static void dm_softirq_done(struct request *rq)
1187{
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001188 bool mapped = true;
Keith Busch466d89a2014-10-17 17:46:37 -06001189 struct dm_rq_target_io *tio = rq->special;
1190 struct request *clone = tio->clone;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001191
Mike Snitzere5863d92014-12-17 21:08:12 -05001192 if (!clone) {
1193 blk_end_request_all(rq, tio->error);
1194 rq_completed(tio->md, rq_data_dir(rq), false);
1195 free_rq_tio(tio);
1196 return;
1197 }
1198
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001199 if (rq->cmd_flags & REQ_FAILED)
1200 mapped = false;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001201
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001202 dm_done(clone, tio->error, mapped);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001203}
1204
1205/*
1206 * Complete the clone and the original request with the error status
1207 * through softirq context.
1208 */
Keith Busch466d89a2014-10-17 17:46:37 -06001209static void dm_complete_request(struct request *rq, int error)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001210{
Keith Busch466d89a2014-10-17 17:46:37 -06001211 struct dm_rq_target_io *tio = rq->special;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001212
1213 tio->error = error;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001214 blk_complete_request(rq);
1215}
1216
1217/*
1218 * Complete the not-mapped clone and the original request with the error status
1219 * through softirq context.
1220 * Target's rq_end_io() function isn't called.
Mike Snitzere5863d92014-12-17 21:08:12 -05001221 * This may be used when the target's map_rq() or clone_and_map_rq() functions fail.
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001222 */
Keith Busch466d89a2014-10-17 17:46:37 -06001223static void dm_kill_unmapped_request(struct request *rq, int error)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001224{
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001225 rq->cmd_flags |= REQ_FAILED;
Keith Busch466d89a2014-10-17 17:46:37 -06001226 dm_complete_request(rq, error);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001227}
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001228
1229/*
Keith Busch466d89a2014-10-17 17:46:37 -06001230 * Called with the clone's queue lock held
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001231 */
1232static void end_clone_request(struct request *clone, int error)
1233{
Keith Busch466d89a2014-10-17 17:46:37 -06001234 struct dm_rq_target_io *tio = clone->end_io_data;
1235
Mike Snitzere5863d92014-12-17 21:08:12 -05001236 if (!clone->q->mq_ops) {
1237 /*
1238 * For just cleaning up the information of the queue in which
1239 * the clone was dispatched.
1240 * The clone is *NOT* freed actually here because it is alloced
1241 * from dm own mempool (REQ_ALLOCED isn't set).
1242 */
1243 __blk_put_request(clone->q, clone);
1244 }
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001245
1246 /*
1247 * Actual request completion is done in a softirq context which doesn't
Keith Busch466d89a2014-10-17 17:46:37 -06001248 * hold the clone's queue lock. Otherwise, deadlock could occur because:
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001249 * - another request may be submitted by the upper level driver
1250 * of the stacking during the completion
1251 * - the submission which requires queue lock may be done
Keith Busch466d89a2014-10-17 17:46:37 -06001252 * against this clone's queue
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001253 */
Keith Busch466d89a2014-10-17 17:46:37 -06001254 dm_complete_request(tio->orig, error);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001255}
1256
Mike Snitzer56a67df2010-08-12 04:14:10 +01001257/*
1258 * Return maximum size of I/O possible at the supplied sector up to the current
1259 * target boundary.
1260 */
1261static sector_t max_io_len_target_boundary(sector_t sector, struct dm_target *ti)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262{
Mike Snitzer56a67df2010-08-12 04:14:10 +01001263 sector_t target_offset = dm_target_offset(ti, sector);
1264
1265 return ti->len - target_offset;
1266}
1267
1268static sector_t max_io_len(sector_t sector, struct dm_target *ti)
1269{
1270 sector_t len = max_io_len_target_boundary(sector, ti);
Mike Snitzer542f9032012-07-27 15:08:00 +01001271 sector_t offset, max_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
1273 /*
Mike Snitzer542f9032012-07-27 15:08:00 +01001274 * Does the target need to split even further?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 */
Mike Snitzer542f9032012-07-27 15:08:00 +01001276 if (ti->max_io_len) {
1277 offset = dm_target_offset(ti, sector);
1278 if (unlikely(ti->max_io_len & (ti->max_io_len - 1)))
1279 max_len = sector_div(offset, ti->max_io_len);
1280 else
1281 max_len = offset & (ti->max_io_len - 1);
1282 max_len = ti->max_io_len - max_len;
1283
1284 if (len > max_len)
1285 len = max_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 }
1287
1288 return len;
1289}
1290
Mike Snitzer542f9032012-07-27 15:08:00 +01001291int dm_set_target_max_io_len(struct dm_target *ti, sector_t len)
1292{
1293 if (len > UINT_MAX) {
1294 DMERR("Specified maximum size of target IO (%llu) exceeds limit (%u)",
1295 (unsigned long long)len, UINT_MAX);
1296 ti->error = "Maximum size of target IO is too large";
1297 return -EINVAL;
1298 }
1299
1300 ti->max_io_len = (uint32_t) len;
1301
1302 return 0;
1303}
1304EXPORT_SYMBOL_GPL(dm_set_target_max_io_len);
1305
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001306/*
1307 * A target may call dm_accept_partial_bio only from the map routine. It is
1308 * allowed for all bio types except REQ_FLUSH.
1309 *
1310 * dm_accept_partial_bio informs the dm that the target only wants to process
1311 * additional n_sectors sectors of the bio and the rest of the data should be
1312 * sent in a next bio.
1313 *
1314 * A diagram that explains the arithmetics:
1315 * +--------------------+---------------+-------+
1316 * | 1 | 2 | 3 |
1317 * +--------------------+---------------+-------+
1318 *
1319 * <-------------- *tio->len_ptr --------------->
1320 * <------- bi_size ------->
1321 * <-- n_sectors -->
1322 *
1323 * Region 1 was already iterated over with bio_advance or similar function.
1324 * (it may be empty if the target doesn't use bio_advance)
1325 * Region 2 is the remaining bio size that the target wants to process.
1326 * (it may be empty if region 1 is non-empty, although there is no reason
1327 * to make it empty)
1328 * The target requires that region 3 is to be sent in the next bio.
1329 *
1330 * If the target wants to receive multiple copies of the bio (via num_*bios, etc),
1331 * the partially processed part (the sum of regions 1+2) must be the same for all
1332 * copies of the bio.
1333 */
1334void dm_accept_partial_bio(struct bio *bio, unsigned n_sectors)
1335{
1336 struct dm_target_io *tio = container_of(bio, struct dm_target_io, clone);
1337 unsigned bi_size = bio->bi_iter.bi_size >> SECTOR_SHIFT;
1338 BUG_ON(bio->bi_rw & REQ_FLUSH);
1339 BUG_ON(bi_size > *tio->len_ptr);
1340 BUG_ON(n_sectors > bi_size);
1341 *tio->len_ptr -= bi_size - n_sectors;
1342 bio->bi_iter.bi_size = n_sectors << SECTOR_SHIFT;
1343}
1344EXPORT_SYMBOL_GPL(dm_accept_partial_bio);
1345
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001346static void __map_bio(struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347{
1348 int r;
Jens Axboe2056a782006-03-23 20:00:26 +01001349 sector_t sector;
Stefan Bader9faf4002006-10-03 01:15:41 -07001350 struct mapped_device *md;
Mikulas Patockadba14162012-10-12 21:02:15 +01001351 struct bio *clone = &tio->clone;
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001352 struct dm_target *ti = tio->ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 clone->bi_end_io = clone_endio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355
1356 /*
1357 * Map the clone. If r == 0 we don't need to do
1358 * anything, the target has assumed ownership of
1359 * this io.
1360 */
1361 atomic_inc(&tio->io->io_count);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001362 sector = clone->bi_iter.bi_sector;
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00001363 r = ti->type->map(ti, clone);
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -08001364 if (r == DM_MAPIO_REMAPPED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 /* the bio has been remapped so dispatch it */
Jens Axboe2056a782006-03-23 20:00:26 +01001366
Mike Snitzerd07335e2010-11-16 12:52:38 +01001367 trace_block_bio_remap(bdev_get_queue(clone->bi_bdev), clone,
1368 tio->io->bio->bi_bdev->bd_dev, sector);
Jens Axboe2056a782006-03-23 20:00:26 +01001369
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 generic_make_request(clone);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001371 } else if (r < 0 || r == DM_MAPIO_REQUEUE) {
1372 /* error the io and bail out, or requeue it if needed */
Stefan Bader9faf4002006-10-03 01:15:41 -07001373 md = tio->io->md;
1374 dec_pending(tio->io, r);
Stefan Bader9faf4002006-10-03 01:15:41 -07001375 free_tio(md, tio);
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -08001376 } else if (r) {
1377 DMWARN("unimplemented target map return value: %d", r);
1378 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 }
1380}
1381
1382struct clone_info {
1383 struct mapped_device *md;
1384 struct dm_table *map;
1385 struct bio *bio;
1386 struct dm_io *io;
1387 sector_t sector;
Mikulas Patockae0d66092014-03-14 18:40:39 -04001388 unsigned sector_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389};
1390
Mikulas Patockae0d66092014-03-14 18:40:39 -04001391static void bio_setup_sector(struct bio *bio, sector_t sector, unsigned len)
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001392{
Kent Overstreet4f024f32013-10-11 15:44:27 -07001393 bio->bi_iter.bi_sector = sector;
1394 bio->bi_iter.bi_size = to_bytes(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395}
1396
1397/*
1398 * Creates a bio that consists of range of complete bvecs.
1399 */
Mikulas Patockadba14162012-10-12 21:02:15 +01001400static void clone_bio(struct dm_target_io *tio, struct bio *bio,
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001401 sector_t sector, unsigned len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402{
Mikulas Patockadba14162012-10-12 21:02:15 +01001403 struct bio *clone = &tio->clone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001405 __bio_clone_fast(clone, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001407 if (bio_integrity(bio))
1408 bio_integrity_clone(clone, bio, GFP_NOIO);
1409
1410 bio_advance(clone, to_bytes(sector - clone->bi_iter.bi_sector));
1411 clone->bi_iter.bi_size = to_bytes(len);
1412
1413 if (bio_integrity(bio))
1414 bio_integrity_trim(clone, 0, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415}
1416
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001417static struct dm_target_io *alloc_tio(struct clone_info *ci,
Junichi Nomura99778272014-10-03 11:55:16 +00001418 struct dm_target *ti,
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001419 unsigned target_bio_nr)
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001420{
Mikulas Patockadba14162012-10-12 21:02:15 +01001421 struct dm_target_io *tio;
1422 struct bio *clone;
1423
Junichi Nomura99778272014-10-03 11:55:16 +00001424 clone = bio_alloc_bioset(GFP_NOIO, 0, ci->md->bs);
Mikulas Patockadba14162012-10-12 21:02:15 +01001425 tio = container_of(clone, struct dm_target_io, clone);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001426
1427 tio->io = ci->io;
1428 tio->ti = ti;
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001429 tio->target_bio_nr = target_bio_nr;
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001430
1431 return tio;
1432}
1433
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001434static void __clone_and_map_simple_bio(struct clone_info *ci,
1435 struct dm_target *ti,
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001436 unsigned target_bio_nr, unsigned *len)
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001437{
Junichi Nomura99778272014-10-03 11:55:16 +00001438 struct dm_target_io *tio = alloc_tio(ci, ti, target_bio_nr);
Mikulas Patockadba14162012-10-12 21:02:15 +01001439 struct bio *clone = &tio->clone;
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001440
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001441 tio->len_ptr = len;
1442
Junichi Nomura99778272014-10-03 11:55:16 +00001443 __bio_clone_fast(clone, ci->bio);
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001444 if (len)
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001445 bio_setup_sector(clone, ci->sector, *len);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001446
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001447 __map_bio(tio);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001448}
1449
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001450static void __send_duplicate_bios(struct clone_info *ci, struct dm_target *ti,
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001451 unsigned num_bios, unsigned *len)
Mike Snitzer06a426c2010-08-12 04:14:09 +01001452{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001453 unsigned target_bio_nr;
Mike Snitzer06a426c2010-08-12 04:14:09 +01001454
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001455 for (target_bio_nr = 0; target_bio_nr < num_bios; target_bio_nr++)
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001456 __clone_and_map_simple_bio(ci, ti, target_bio_nr, len);
Mike Snitzer06a426c2010-08-12 04:14:09 +01001457}
1458
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001459static int __send_empty_flush(struct clone_info *ci)
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001460{
Mike Snitzer06a426c2010-08-12 04:14:09 +01001461 unsigned target_nr = 0;
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001462 struct dm_target *ti;
1463
Mike Snitzerb372d362010-09-08 18:07:01 +02001464 BUG_ON(bio_has_data(ci->bio));
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001465 while ((ti = dm_table_get_target(ci->map, target_nr++)))
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001466 __send_duplicate_bios(ci, ti, ti->num_flush_bios, NULL);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001467
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001468 return 0;
1469}
1470
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001471static void __clone_and_map_data_bio(struct clone_info *ci, struct dm_target *ti,
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001472 sector_t sector, unsigned *len)
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001473{
Mikulas Patockadba14162012-10-12 21:02:15 +01001474 struct bio *bio = ci->bio;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001475 struct dm_target_io *tio;
Alasdair G Kergonb0d8ed42013-03-01 22:45:49 +00001476 unsigned target_bio_nr;
1477 unsigned num_target_bios = 1;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001478
Alasdair G Kergonb0d8ed42013-03-01 22:45:49 +00001479 /*
1480 * Does the target want to receive duplicate copies of the bio?
1481 */
1482 if (bio_data_dir(bio) == WRITE && ti->num_write_bios)
1483 num_target_bios = ti->num_write_bios(ti, bio);
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001484
Alasdair G Kergonb0d8ed42013-03-01 22:45:49 +00001485 for (target_bio_nr = 0; target_bio_nr < num_target_bios; target_bio_nr++) {
Junichi Nomura99778272014-10-03 11:55:16 +00001486 tio = alloc_tio(ci, ti, target_bio_nr);
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001487 tio->len_ptr = len;
1488 clone_bio(tio, bio, sector, *len);
Alasdair G Kergonb0d8ed42013-03-01 22:45:49 +00001489 __map_bio(tio);
1490 }
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001491}
1492
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001493typedef unsigned (*get_num_bios_fn)(struct dm_target *ti);
Mike Snitzer23508a92012-12-21 20:23:37 +00001494
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001495static unsigned get_num_discard_bios(struct dm_target *ti)
Mike Snitzer23508a92012-12-21 20:23:37 +00001496{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001497 return ti->num_discard_bios;
Mike Snitzer23508a92012-12-21 20:23:37 +00001498}
1499
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001500static unsigned get_num_write_same_bios(struct dm_target *ti)
Mike Snitzer23508a92012-12-21 20:23:37 +00001501{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001502 return ti->num_write_same_bios;
Mike Snitzer23508a92012-12-21 20:23:37 +00001503}
1504
1505typedef bool (*is_split_required_fn)(struct dm_target *ti);
1506
1507static bool is_split_required_for_discard(struct dm_target *ti)
1508{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001509 return ti->split_discard_bios;
Mike Snitzer23508a92012-12-21 20:23:37 +00001510}
1511
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001512static int __send_changing_extent_only(struct clone_info *ci,
1513 get_num_bios_fn get_num_bios,
1514 is_split_required_fn is_split_required)
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001515{
1516 struct dm_target *ti;
Mikulas Patockae0d66092014-03-14 18:40:39 -04001517 unsigned len;
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001518 unsigned num_bios;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001519
Mike Snitzera79245b2010-08-12 04:14:24 +01001520 do {
1521 ti = dm_table_find_target(ci->map, ci->sector);
1522 if (!dm_target_is_valid(ti))
1523 return -EIO;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001524
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001525 /*
Mike Snitzer23508a92012-12-21 20:23:37 +00001526 * Even though the device advertised support for this type of
1527 * request, that does not mean every target supports it, and
Mike Snitzer936688d2011-08-02 12:32:01 +01001528 * reconfiguration might also have changed that since the
Mike Snitzera79245b2010-08-12 04:14:24 +01001529 * check was performed.
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001530 */
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001531 num_bios = get_num_bios ? get_num_bios(ti) : 0;
1532 if (!num_bios)
Mike Snitzera79245b2010-08-12 04:14:24 +01001533 return -EOPNOTSUPP;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001534
Mike Snitzer23508a92012-12-21 20:23:37 +00001535 if (is_split_required && !is_split_required(ti))
Mikulas Patockae0d66092014-03-14 18:40:39 -04001536 len = min((sector_t)ci->sector_count, max_io_len_target_boundary(ci->sector, ti));
Mikulas Patocka7acf0272012-07-27 15:08:03 +01001537 else
Mikulas Patockae0d66092014-03-14 18:40:39 -04001538 len = min((sector_t)ci->sector_count, max_io_len(ci->sector, ti));
Mike Snitzer06a426c2010-08-12 04:14:09 +01001539
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001540 __send_duplicate_bios(ci, ti, num_bios, &len);
Mike Snitzera79245b2010-08-12 04:14:24 +01001541
1542 ci->sector += len;
1543 } while (ci->sector_count -= len);
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001544
1545 return 0;
1546}
1547
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001548static int __send_discard(struct clone_info *ci)
Mike Snitzer23508a92012-12-21 20:23:37 +00001549{
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001550 return __send_changing_extent_only(ci, get_num_discard_bios,
1551 is_split_required_for_discard);
Mike Snitzer23508a92012-12-21 20:23:37 +00001552}
1553
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001554static int __send_write_same(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_write_same_bios, NULL);
Mike Snitzer23508a92012-12-21 20:23:37 +00001557}
1558
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001559/*
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001560 * Select the correct strategy for processing a non-flush bio.
1561 */
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001562static int __split_and_process_non_flush(struct clone_info *ci)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563{
Mikulas Patockadba14162012-10-12 21:02:15 +01001564 struct bio *bio = ci->bio;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001565 struct dm_target *ti;
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001566 unsigned len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001568 if (unlikely(bio->bi_rw & REQ_DISCARD))
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001569 return __send_discard(ci);
Mike Snitzer23508a92012-12-21 20:23:37 +00001570 else if (unlikely(bio->bi_rw & REQ_WRITE_SAME))
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001571 return __send_write_same(ci);
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001572
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001573 ti = dm_table_find_target(ci->map, ci->sector);
1574 if (!dm_target_is_valid(ti))
1575 return -EIO;
1576
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001577 len = min_t(sector_t, max_io_len(ci->sector, ti), ci->sector_count);
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001578
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001579 __clone_and_map_data_bio(ci, ti, ci->sector, &len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001581 ci->sector += len;
1582 ci->sector_count -= len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001584 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585}
1586
1587/*
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001588 * Entry point to split a bio into clones and submit them to the targets.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 */
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001590static void __split_and_process_bio(struct mapped_device *md,
1591 struct dm_table *map, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592{
1593 struct clone_info ci;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001594 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001596 if (unlikely(!map)) {
Tejun Heo6a8736d2010-09-08 18:07:00 +02001597 bio_io_error(bio);
Mikulas Patockaf0b9a452009-04-02 19:55:38 +01001598 return;
1599 }
Mikulas Patocka692d0eb2009-04-09 00:27:13 +01001600
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001601 ci.map = map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 ci.md = md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 ci.io = alloc_io(md);
1604 ci.io->error = 0;
1605 atomic_set(&ci.io->io_count, 1);
1606 ci.io->bio = bio;
1607 ci.io->md = md;
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +01001608 spin_lock_init(&ci.io->endio_lock);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001609 ci.sector = bio->bi_iter.bi_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -08001611 start_io_acct(ci.io);
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001612
Mike Snitzerb372d362010-09-08 18:07:01 +02001613 if (bio->bi_rw & REQ_FLUSH) {
1614 ci.bio = &ci.md->flush_bio;
1615 ci.sector_count = 0;
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001616 error = __send_empty_flush(&ci);
Mike Snitzerb372d362010-09-08 18:07:01 +02001617 /* dec_pending submits any data associated with flush */
1618 } else {
Tejun Heo6a8736d2010-09-08 18:07:00 +02001619 ci.bio = bio;
Tejun Heod87f4c12010-09-03 11:56:19 +02001620 ci.sector_count = bio_sectors(bio);
Mike Snitzerb372d362010-09-08 18:07:01 +02001621 while (ci.sector_count && !error)
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001622 error = __split_and_process_non_flush(&ci);
Tejun Heod87f4c12010-09-03 11:56:19 +02001623 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624
1625 /* drop the extra reference count */
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001626 dec_pending(ci.io, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627}
1628/*-----------------------------------------------------------------
1629 * CRUD END
1630 *---------------------------------------------------------------*/
1631
Milan Brozf6fccb12008-07-21 12:00:37 +01001632static int dm_merge_bvec(struct request_queue *q,
1633 struct bvec_merge_data *bvm,
1634 struct bio_vec *biovec)
1635{
1636 struct mapped_device *md = q->queuedata;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001637 struct dm_table *map = dm_get_live_table_fast(md);
Milan Brozf6fccb12008-07-21 12:00:37 +01001638 struct dm_target *ti;
1639 sector_t max_sectors;
Mikulas Patocka50371082008-10-01 14:39:17 +01001640 int max_size = 0;
Milan Brozf6fccb12008-07-21 12:00:37 +01001641
1642 if (unlikely(!map))
Mikulas Patocka50371082008-10-01 14:39:17 +01001643 goto out;
Milan Brozf6fccb12008-07-21 12:00:37 +01001644
1645 ti = dm_table_find_target(map, bvm->bi_sector);
Mikulas Patockab01cd5a2008-10-01 14:39:24 +01001646 if (!dm_target_is_valid(ti))
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001647 goto out;
Milan Brozf6fccb12008-07-21 12:00:37 +01001648
1649 /*
1650 * Find maximum amount of I/O that won't need splitting
1651 */
Mike Snitzer56a67df2010-08-12 04:14:10 +01001652 max_sectors = min(max_io_len(bvm->bi_sector, ti),
Mike Snitzer148e51b2014-10-09 19:32:22 -04001653 (sector_t) queue_max_sectors(q));
Milan Brozf6fccb12008-07-21 12:00:37 +01001654 max_size = (max_sectors << SECTOR_SHIFT) - bvm->bi_size;
Mike Snitzer148e51b2014-10-09 19:32:22 -04001655 if (unlikely(max_size < 0)) /* this shouldn't _ever_ happen */
Milan Brozf6fccb12008-07-21 12:00:37 +01001656 max_size = 0;
1657
1658 /*
1659 * merge_bvec_fn() returns number of bytes
1660 * it can accept at this offset
1661 * max is precomputed maximal io size
1662 */
1663 if (max_size && ti->type->merge)
1664 max_size = ti->type->merge(ti, bvm, biovec, max_size);
Mikulas Patocka8cbeb672009-06-22 10:12:14 +01001665 /*
1666 * If the target doesn't support merge method and some of the devices
Mike Snitzer148e51b2014-10-09 19:32:22 -04001667 * provided their merge_bvec method (we know this by looking for the
1668 * max_hw_sectors that dm_set_device_limits may set), then we can't
1669 * allow bios with multiple vector entries. So always set max_size
1670 * to 0, and the code below allows just one page.
Mikulas Patocka8cbeb672009-06-22 10:12:14 +01001671 */
1672 else if (queue_max_hw_sectors(q) <= PAGE_SIZE >> 9)
Mikulas Patocka8cbeb672009-06-22 10:12:14 +01001673 max_size = 0;
Milan Brozf6fccb12008-07-21 12:00:37 +01001674
Mikulas Patocka50371082008-10-01 14:39:17 +01001675out:
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001676 dm_put_live_table_fast(md);
Milan Brozf6fccb12008-07-21 12:00:37 +01001677 /*
1678 * Always allow an entire first page
1679 */
1680 if (max_size <= biovec->bv_len && !(bvm->bi_size >> SECTOR_SHIFT))
1681 max_size = biovec->bv_len;
1682
Milan Brozf6fccb12008-07-21 12:00:37 +01001683 return max_size;
1684}
1685
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686/*
1687 * The request function that just remaps the bio built up by
1688 * dm_merge_bvec.
1689 */
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001690static void _dm_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691{
Kevin Corry12f03a42006-02-01 03:04:52 -08001692 int rw = bio_data_dir(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 struct mapped_device *md = q->queuedata;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001694 int srcu_idx;
1695 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001697 map = dm_get_live_table(md, &srcu_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698
Gu Zheng18c0b222014-11-24 11:05:26 +08001699 generic_start_io_acct(rw, bio_sectors(bio), &dm_disk(md)->part0);
Kevin Corry12f03a42006-02-01 03:04:52 -08001700
Tejun Heo6a8736d2010-09-08 18:07:00 +02001701 /* if we're suspended, we have to queue this io for later */
1702 if (unlikely(test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags))) {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001703 dm_put_live_table(md, srcu_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704
Tejun Heo6a8736d2010-09-08 18:07:00 +02001705 if (bio_rw(bio) != READA)
1706 queue_io(md, bio);
1707 else
Alasdair G Kergon54d9a1b2009-04-09 00:27:14 +01001708 bio_io_error(bio);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001709 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 }
1711
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001712 __split_and_process_bio(md, map, bio);
1713 dm_put_live_table(md, srcu_idx);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001714 return;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001715}
1716
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04001717int dm_request_based(struct mapped_device *md)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001718{
1719 return blk_queue_stackable(md->queue);
1720}
1721
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001722static void dm_request(struct request_queue *q, struct bio *bio)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001723{
1724 struct mapped_device *md = q->queuedata;
1725
1726 if (dm_request_based(md))
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001727 blk_queue_bio(q, bio);
1728 else
1729 _dm_request(q, bio);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001730}
1731
Keith Busch466d89a2014-10-17 17:46:37 -06001732static void dm_dispatch_clone_request(struct request *clone, struct request *rq)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001733{
1734 int r;
1735
Keith Busch466d89a2014-10-17 17:46:37 -06001736 if (blk_queue_io_stat(clone->q))
1737 clone->cmd_flags |= REQ_IO_STAT;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001738
Keith Busch466d89a2014-10-17 17:46:37 -06001739 clone->start_time = jiffies;
1740 r = blk_insert_cloned_request(clone->q, clone);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001741 if (r)
Keith Busch466d89a2014-10-17 17:46:37 -06001742 /* must complete clone in terms of original request */
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001743 dm_complete_request(rq, r);
1744}
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001745
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001746static int dm_rq_bio_constructor(struct bio *bio, struct bio *bio_orig,
1747 void *data)
1748{
1749 struct dm_rq_target_io *tio = data;
Kent Overstreet94818742012-09-07 13:44:01 -07001750 struct dm_rq_clone_bio_info *info =
1751 container_of(bio, struct dm_rq_clone_bio_info, clone);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001752
1753 info->orig = bio_orig;
1754 info->tio = tio;
1755 bio->bi_end_io = end_clone_bio;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001756
1757 return 0;
1758}
1759
1760static int setup_clone(struct request *clone, struct request *rq,
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05001761 struct dm_rq_target_io *tio, gfp_t gfp_mask)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001762{
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00001763 int r;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001764
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05001765 r = blk_rq_prep_clone(clone, rq, tio->md->bs, gfp_mask,
Tejun Heo29e40132010-09-08 18:07:00 +02001766 dm_rq_bio_constructor, tio);
1767 if (r)
1768 return r;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001769
Tejun Heo29e40132010-09-08 18:07:00 +02001770 clone->cmd = rq->cmd;
1771 clone->cmd_len = rq->cmd_len;
1772 clone->sense = rq->sense;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001773 clone->end_io = end_clone_request;
1774 clone->end_io_data = tio;
1775
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05001776 tio->clone = clone;
1777
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001778 return 0;
1779}
1780
Keith Busch466d89a2014-10-17 17:46:37 -06001781static struct request *clone_rq(struct request *rq, struct mapped_device *md,
1782 struct dm_rq_target_io *tio, gfp_t gfp_mask)
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05001783{
1784 struct request *clone = alloc_clone_request(md, gfp_mask);
1785
1786 if (!clone)
1787 return NULL;
1788
1789 blk_rq_init(NULL, clone);
1790 if (setup_clone(clone, rq, tio, gfp_mask)) {
1791 /* -ENOMEM */
1792 free_clone_request(md, clone);
1793 return NULL;
1794 }
1795
1796 return clone;
1797}
1798
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001799static void map_tio_request(struct kthread_work *work);
1800
Keith Busch466d89a2014-10-17 17:46:37 -06001801static struct dm_rq_target_io *prep_tio(struct request *rq,
1802 struct mapped_device *md, gfp_t gfp_mask)
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001803{
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001804 struct dm_rq_target_io *tio;
Mike Snitzere5863d92014-12-17 21:08:12 -05001805 int srcu_idx;
1806 struct dm_table *table;
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001807
1808 tio = alloc_rq_tio(md, gfp_mask);
1809 if (!tio)
1810 return NULL;
1811
1812 tio->md = md;
1813 tio->ti = NULL;
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05001814 tio->clone = NULL;
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001815 tio->orig = rq;
1816 tio->error = 0;
1817 memset(&tio->info, 0, sizeof(tio->info));
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001818 init_kthread_work(&tio->work, map_tio_request);
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001819
Mike Snitzere5863d92014-12-17 21:08:12 -05001820 table = dm_get_live_table(md, &srcu_idx);
1821 if (!dm_table_mq_request_based(table)) {
1822 if (!clone_rq(rq, md, tio, gfp_mask)) {
1823 dm_put_live_table(md, srcu_idx);
1824 free_rq_tio(tio);
1825 return NULL;
1826 }
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001827 }
Mike Snitzere5863d92014-12-17 21:08:12 -05001828 dm_put_live_table(md, srcu_idx);
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001829
Keith Busch466d89a2014-10-17 17:46:37 -06001830 return tio;
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001831}
1832
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001833/*
1834 * Called with the queue lock held.
1835 */
1836static int dm_prep_fn(struct request_queue *q, struct request *rq)
1837{
1838 struct mapped_device *md = q->queuedata;
Keith Busch466d89a2014-10-17 17:46:37 -06001839 struct dm_rq_target_io *tio;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001840
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001841 if (unlikely(rq->special)) {
1842 DMWARN("Already has something in rq->special.");
1843 return BLKPREP_KILL;
1844 }
1845
Keith Busch466d89a2014-10-17 17:46:37 -06001846 tio = prep_tio(rq, md, GFP_ATOMIC);
1847 if (!tio)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001848 return BLKPREP_DEFER;
1849
Keith Busch466d89a2014-10-17 17:46:37 -06001850 rq->special = tio;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001851 rq->cmd_flags |= REQ_DONTPREP;
1852
1853 return BLKPREP_OK;
1854}
1855
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001856/*
1857 * Returns:
Mike Snitzere5863d92014-12-17 21:08:12 -05001858 * 0 : the request has been processed
1859 * DM_MAPIO_REQUEUE : the original request needs to be requeued
1860 * < 0 : the request was completed due to failure
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001861 */
Keith Busch466d89a2014-10-17 17:46:37 -06001862static int map_request(struct dm_target *ti, struct request *rq,
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001863 struct mapped_device *md)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001864{
Mike Snitzere5863d92014-12-17 21:08:12 -05001865 int r;
Keith Busch466d89a2014-10-17 17:46:37 -06001866 struct dm_rq_target_io *tio = rq->special;
Mike Snitzere5863d92014-12-17 21:08:12 -05001867 struct request *clone = NULL;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001868
Mike Snitzere5863d92014-12-17 21:08:12 -05001869 if (tio->clone) {
1870 clone = tio->clone;
1871 r = ti->type->map_rq(ti, clone, &tio->info);
1872 } else {
1873 r = ti->type->clone_and_map_rq(ti, rq, &tio->info, &clone);
1874 if (r < 0) {
1875 /* The target wants to complete the I/O */
1876 dm_kill_unmapped_request(rq, r);
1877 return r;
1878 }
1879 if (IS_ERR(clone))
1880 return DM_MAPIO_REQUEUE;
1881 if (setup_clone(clone, rq, tio, GFP_KERNEL)) {
1882 /* -ENOMEM */
1883 ti->type->release_clone_rq(clone);
1884 return DM_MAPIO_REQUEUE;
1885 }
1886 }
1887
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001888 switch (r) {
1889 case DM_MAPIO_SUBMITTED:
1890 /* The target has taken the I/O to submit by itself later */
1891 break;
1892 case DM_MAPIO_REMAPPED:
1893 /* The target has remapped the I/O so dispatch it */
Jun'ichi Nomura6db4ccd2009-12-10 23:52:25 +00001894 trace_block_rq_remap(clone->q, clone, disk_devt(dm_disk(md)),
Keith Busch466d89a2014-10-17 17:46:37 -06001895 blk_rq_pos(rq));
1896 dm_dispatch_clone_request(clone, rq);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001897 break;
1898 case DM_MAPIO_REQUEUE:
1899 /* The target wants to requeue the I/O */
1900 dm_requeue_unmapped_request(clone);
1901 break;
1902 default:
1903 if (r > 0) {
1904 DMWARN("unimplemented target map return value: %d", r);
1905 BUG();
1906 }
1907
1908 /* The target wants to complete the I/O */
Keith Busch466d89a2014-10-17 17:46:37 -06001909 dm_kill_unmapped_request(rq, r);
Mike Snitzere5863d92014-12-17 21:08:12 -05001910 return r;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001911 }
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001912
Mike Snitzere5863d92014-12-17 21:08:12 -05001913 return 0;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001914}
1915
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001916static void map_tio_request(struct kthread_work *work)
1917{
1918 struct dm_rq_target_io *tio = container_of(work, struct dm_rq_target_io, work);
Mike Snitzere5863d92014-12-17 21:08:12 -05001919 struct request *rq = tio->orig;
1920 struct mapped_device *md = tio->md;
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001921
Mike Snitzere5863d92014-12-17 21:08:12 -05001922 if (map_request(tio->ti, rq, md) == DM_MAPIO_REQUEUE)
1923 dm_requeue_unmapped_original_request(md, rq);
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001924}
1925
Keith Busch466d89a2014-10-17 17:46:37 -06001926static void dm_start_request(struct mapped_device *md, struct request *orig)
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001927{
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001928 blk_start_request(orig);
Keith Busch466d89a2014-10-17 17:46:37 -06001929 atomic_inc(&md->pending[rq_data_dir(orig)]);
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001930
1931 /*
1932 * Hold the md reference here for the in-flight I/O.
1933 * We can't rely on the reference count by device opener,
1934 * because the device may be closed during the request completion
1935 * when all bios are completed.
1936 * See the comment in rq_completed() too.
1937 */
1938 dm_get(md);
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001939}
1940
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001941/*
1942 * q->request_fn for request-based dm.
1943 * Called with the queue lock held.
1944 */
1945static void dm_request_fn(struct request_queue *q)
1946{
1947 struct mapped_device *md = q->queuedata;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001948 int srcu_idx;
1949 struct dm_table *map = dm_get_live_table(md, &srcu_idx);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001950 struct dm_target *ti;
Keith Busch466d89a2014-10-17 17:46:37 -06001951 struct request *rq;
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001952 struct dm_rq_target_io *tio;
Tejun Heo29e40132010-09-08 18:07:00 +02001953 sector_t pos;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001954
1955 /*
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00001956 * For suspend, check blk_queue_stopped() and increment
1957 * ->pending within a single queue_lock not to increment the
1958 * number of in-flight I/Os after the queue is stopped in
1959 * dm_suspend().
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001960 */
Jens Axboe7eaceac2011-03-10 08:52:07 +01001961 while (!blk_queue_stopped(q)) {
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001962 rq = blk_peek_request(q);
1963 if (!rq)
Jens Axboe7eaceac2011-03-10 08:52:07 +01001964 goto delay_and_out;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001965
Tejun Heo29e40132010-09-08 18:07:00 +02001966 /* always use block 0 to find the target for flushes for now */
1967 pos = 0;
1968 if (!(rq->cmd_flags & REQ_FLUSH))
1969 pos = blk_rq_pos(rq);
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00001970
Tejun Heo29e40132010-09-08 18:07:00 +02001971 ti = dm_table_find_target(map, pos);
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001972 if (!dm_target_is_valid(ti)) {
1973 /*
Keith Busch466d89a2014-10-17 17:46:37 -06001974 * Must perform setup, that rq_completed() requires,
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001975 * before calling dm_kill_unmapped_request
1976 */
1977 DMERR_LIMIT("request attempted access beyond the end of device");
Keith Busch466d89a2014-10-17 17:46:37 -06001978 dm_start_request(md, rq);
1979 dm_kill_unmapped_request(rq, -EIO);
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001980 continue;
1981 }
Tejun Heo29e40132010-09-08 18:07:00 +02001982
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001983 if (ti->type->busy && ti->type->busy(ti))
Jens Axboe7eaceac2011-03-10 08:52:07 +01001984 goto delay_and_out;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001985
Keith Busch466d89a2014-10-17 17:46:37 -06001986 dm_start_request(md, rq);
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00001987
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001988 tio = rq->special;
1989 /* Establish tio->ti before queuing work (map_tio_request) */
1990 tio->ti = ti;
1991 queue_kthread_work(&md->kworker, &tio->work);
Kiyoshi Ueda052189a2011-01-13 20:00:00 +00001992 BUG_ON(!irqs_disabled());
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001993 }
1994
1995 goto out;
1996
Jens Axboe7eaceac2011-03-10 08:52:07 +01001997delay_and_out:
1998 blk_delay_queue(q, HZ / 10);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001999out:
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002000 dm_put_live_table(md, srcu_idx);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002001}
2002
2003int dm_underlying_device_busy(struct request_queue *q)
2004{
2005 return blk_lld_busy(q);
2006}
2007EXPORT_SYMBOL_GPL(dm_underlying_device_busy);
2008
2009static int dm_lld_busy(struct request_queue *q)
2010{
2011 int r;
2012 struct mapped_device *md = q->queuedata;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002013 struct dm_table *map = dm_get_live_table_fast(md);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002014
2015 if (!map || test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags))
2016 r = 1;
2017 else
2018 r = dm_table_any_busy_target(map);
2019
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002020 dm_put_live_table_fast(md);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002021
2022 return r;
2023}
2024
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025static int dm_any_congested(void *congested_data, int bdi_bits)
2026{
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00002027 int r = bdi_bits;
2028 struct mapped_device *md = congested_data;
2029 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01002031 if (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002032 map = dm_get_live_table_fast(md);
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00002033 if (map) {
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002034 /*
2035 * Request-based dm cares about only own queue for
2036 * the query about congestion status of request_queue
2037 */
2038 if (dm_request_based(md))
2039 r = md->queue->backing_dev_info.state &
2040 bdi_bits;
2041 else
2042 r = dm_table_any_congested(map, bdi_bits);
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00002043 }
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002044 dm_put_live_table_fast(md);
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00002045 }
2046
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 return r;
2048}
2049
2050/*-----------------------------------------------------------------
2051 * An IDR is used to keep track of allocated minor numbers.
2052 *---------------------------------------------------------------*/
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002053static void free_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054{
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002055 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 idr_remove(&_minor_idr, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002057 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058}
2059
2060/*
2061 * See if the device with a specific minor # is free.
2062 */
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01002063static int specific_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064{
Tejun Heoc9d76be2013-02-27 17:04:26 -08002065 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066
2067 if (minor >= (1 << MINORBITS))
2068 return -EINVAL;
2069
Tejun Heoc9d76be2013-02-27 17:04:26 -08002070 idr_preload(GFP_KERNEL);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002071 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072
Tejun Heoc9d76be2013-02-27 17:04:26 -08002073 r = idr_alloc(&_minor_idr, MINOR_ALLOCED, minor, minor + 1, GFP_NOWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002075 spin_unlock(&_minor_lock);
Tejun Heoc9d76be2013-02-27 17:04:26 -08002076 idr_preload_end();
2077 if (r < 0)
2078 return r == -ENOSPC ? -EBUSY : r;
2079 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080}
2081
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01002082static int next_free_minor(int *minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083{
Tejun Heoc9d76be2013-02-27 17:04:26 -08002084 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085
Tejun Heoc9d76be2013-02-27 17:04:26 -08002086 idr_preload(GFP_KERNEL);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002087 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088
Tejun Heoc9d76be2013-02-27 17:04:26 -08002089 r = idr_alloc(&_minor_idr, MINOR_ALLOCED, 0, 1 << MINORBITS, GFP_NOWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002091 spin_unlock(&_minor_lock);
Tejun Heoc9d76be2013-02-27 17:04:26 -08002092 idr_preload_end();
2093 if (r < 0)
2094 return r;
2095 *minor = r;
2096 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097}
2098
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07002099static const struct block_device_operations dm_blk_dops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100
Mikulas Patocka53d59142009-04-02 19:55:37 +01002101static void dm_wq_work(struct work_struct *work);
2102
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002103static void dm_init_md_queue(struct mapped_device *md)
2104{
2105 /*
2106 * Request-based dm devices cannot be stacked on top of bio-based dm
2107 * devices. The type of this dm device has not been decided yet.
2108 * The type is decided at the first table loading time.
2109 * To prevent problematic device stacking, clear the queue flag
2110 * for request stacking support until then.
2111 *
2112 * This queue is new, so no concurrency on the queue_flags.
2113 */
2114 queue_flag_clear_unlocked(QUEUE_FLAG_STACKABLE, md->queue);
2115
2116 md->queue->queuedata = md;
2117 md->queue->backing_dev_info.congested_fn = dm_any_congested;
2118 md->queue->backing_dev_info.congested_data = md;
2119 blk_queue_make_request(md->queue, dm_request);
2120 blk_queue_bounce_limit(md->queue, BLK_BOUNCE_ANY);
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002121 blk_queue_merge_bvec(md->queue, dm_merge_bvec);
2122}
2123
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124/*
2125 * Allocate and initialise a blank device with a given minor.
2126 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002127static struct mapped_device *alloc_dev(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128{
2129 int r;
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01002130 struct mapped_device *md = kzalloc(sizeof(*md), GFP_KERNEL);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07002131 void *old_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132
2133 if (!md) {
2134 DMWARN("unable to allocate device, out of memory.");
2135 return NULL;
2136 }
2137
Jeff Mahoney10da4f72006-06-26 00:27:25 -07002138 if (!try_module_get(THIS_MODULE))
Milan Broz6ed7ade2008-02-08 02:10:19 +00002139 goto bad_module_get;
Jeff Mahoney10da4f72006-06-26 00:27:25 -07002140
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 /* get a minor number for the dev */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002142 if (minor == DM_ANY_MINOR)
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01002143 r = next_free_minor(&minor);
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002144 else
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01002145 r = specific_minor(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 if (r < 0)
Milan Broz6ed7ade2008-02-08 02:10:19 +00002147 goto bad_minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002149 r = init_srcu_struct(&md->io_barrier);
2150 if (r < 0)
2151 goto bad_io_barrier;
2152
Mike Snitzera5664da2010-08-12 04:14:01 +01002153 md->type = DM_TYPE_NONE;
Daniel Walkere61290a2008-02-08 02:10:08 +00002154 mutex_init(&md->suspend_lock);
Mike Snitzera5664da2010-08-12 04:14:01 +01002155 mutex_init(&md->type_lock);
Benjamin Marzinski86f11522014-08-13 13:53:43 -05002156 mutex_init(&md->table_devices_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01002157 spin_lock_init(&md->deferred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 atomic_set(&md->holders, 1);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -07002159 atomic_set(&md->open_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 atomic_set(&md->event_nr, 0);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002161 atomic_set(&md->uevent_seq, 0);
2162 INIT_LIST_HEAD(&md->uevent_list);
Benjamin Marzinski86f11522014-08-13 13:53:43 -05002163 INIT_LIST_HEAD(&md->table_devices);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002164 spin_lock_init(&md->uevent_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002166 md->queue = blk_alloc_queue(GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 if (!md->queue)
Milan Broz6ed7ade2008-02-08 02:10:19 +00002168 goto bad_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002170 dm_init_md_queue(md);
Stefan Bader9faf4002006-10-03 01:15:41 -07002171
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 md->disk = alloc_disk(1);
2173 if (!md->disk)
Milan Broz6ed7ade2008-02-08 02:10:19 +00002174 goto bad_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02002176 atomic_set(&md->pending[0], 0);
2177 atomic_set(&md->pending[1], 0);
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07002178 init_waitqueue_head(&md->wait);
Mikulas Patocka53d59142009-04-02 19:55:37 +01002179 INIT_WORK(&md->work, dm_wq_work);
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07002180 init_waitqueue_head(&md->eventq);
Mikulas Patocka2995fa72014-01-13 19:37:54 -05002181 init_completion(&md->kobj_holder.completion);
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002182 md->kworker_task = NULL;
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07002183
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 md->disk->major = _major;
2185 md->disk->first_minor = minor;
2186 md->disk->fops = &dm_blk_dops;
2187 md->disk->queue = md->queue;
2188 md->disk->private_data = md;
2189 sprintf(md->disk->disk_name, "dm-%d", minor);
2190 add_disk(md->disk);
Mike Anderson7e51f252006-03-27 01:17:52 -08002191 format_dev_t(md->name, MKDEV(_major, minor));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192
Tejun Heo670368a2013-07-30 08:40:21 -04002193 md->wq = alloc_workqueue("kdmflush", WQ_MEM_RECLAIM, 0);
Milan Broz304f3f62008-02-08 02:11:17 +00002194 if (!md->wq)
2195 goto bad_thread;
2196
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002197 md->bdev = bdget_disk(md->disk, 0);
2198 if (!md->bdev)
2199 goto bad_bdev;
2200
Tejun Heo6a8736d2010-09-08 18:07:00 +02002201 bio_init(&md->flush_bio);
2202 md->flush_bio.bi_bdev = md->bdev;
2203 md->flush_bio.bi_rw = WRITE_FLUSH;
2204
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002205 dm_stats_init(&md->stats);
2206
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07002207 /* Populate the mapping, nobody knows we exist yet */
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002208 spin_lock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07002209 old_md = idr_replace(&_minor_idr, md, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002210 spin_unlock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07002211
2212 BUG_ON(old_md != MINOR_ALLOCED);
2213
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 return md;
2215
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002216bad_bdev:
2217 destroy_workqueue(md->wq);
Milan Broz304f3f62008-02-08 02:11:17 +00002218bad_thread:
Zdenek Kabelac03022c52009-10-16 23:18:15 +01002219 del_gendisk(md->disk);
Milan Broz304f3f62008-02-08 02:11:17 +00002220 put_disk(md->disk);
Milan Broz6ed7ade2008-02-08 02:10:19 +00002221bad_disk:
Al Viro1312f402006-03-12 11:02:03 -05002222 blk_cleanup_queue(md->queue);
Milan Broz6ed7ade2008-02-08 02:10:19 +00002223bad_queue:
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002224 cleanup_srcu_struct(&md->io_barrier);
2225bad_io_barrier:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 free_minor(minor);
Milan Broz6ed7ade2008-02-08 02:10:19 +00002227bad_minor:
Jeff Mahoney10da4f72006-06-26 00:27:25 -07002228 module_put(THIS_MODULE);
Milan Broz6ed7ade2008-02-08 02:10:19 +00002229bad_module_get:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 kfree(md);
2231 return NULL;
2232}
2233
Jun'ichi Nomuraae9da832007-10-19 22:38:43 +01002234static void unlock_fs(struct mapped_device *md);
2235
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236static void free_dev(struct mapped_device *md)
2237{
Tejun Heof331c022008-09-03 09:01:48 +02002238 int minor = MINOR(disk_devt(md->disk));
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08002239
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002240 unlock_fs(md);
2241 bdput(md->bdev);
Milan Broz304f3f62008-02-08 02:11:17 +00002242 destroy_workqueue(md->wq);
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002243
2244 if (md->kworker_task)
2245 kthread_stop(md->kworker_task);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002246 if (md->io_pool)
2247 mempool_destroy(md->io_pool);
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05002248 if (md->rq_pool)
2249 mempool_destroy(md->rq_pool);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002250 if (md->bs)
2251 bioset_free(md->bs);
Martin K. Petersen9c470082009-04-09 00:27:12 +01002252 blk_integrity_unregister(md->disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 del_gendisk(md->disk);
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002254 cleanup_srcu_struct(&md->io_barrier);
Benjamin Marzinski86f11522014-08-13 13:53:43 -05002255 free_table_devices(&md->table_devices);
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08002256 free_minor(minor);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002257
2258 spin_lock(&_minor_lock);
2259 md->disk->private_data = NULL;
2260 spin_unlock(&_minor_lock);
2261
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 put_disk(md->disk);
Al Viro1312f402006-03-12 11:02:03 -05002263 blk_cleanup_queue(md->queue);
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002264 dm_stats_cleanup(&md->stats);
Jeff Mahoney10da4f72006-06-26 00:27:25 -07002265 module_put(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 kfree(md);
2267}
2268
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002269static void __bind_mempools(struct mapped_device *md, struct dm_table *t)
2270{
Mikulas Patockac0820cf2012-12-21 20:23:38 +00002271 struct dm_md_mempools *p = dm_table_get_md_mempools(t);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002272
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00002273 if (md->io_pool && md->bs) {
Jun'ichi Nomura16245bd2013-03-01 22:45:44 +00002274 /* The md already has necessary mempools. */
2275 if (dm_table_get_type(t) == DM_TYPE_BIO_BASED) {
2276 /*
2277 * Reload bioset because front_pad may have changed
2278 * because a different table was loaded.
2279 */
2280 bioset_free(md->bs);
2281 md->bs = p->bs;
2282 p->bs = NULL;
Jun'ichi Nomura16245bd2013-03-01 22:45:44 +00002283 }
Keith Busch466d89a2014-10-17 17:46:37 -06002284 /*
2285 * There's no need to reload with request-based dm
2286 * because the size of front_pad doesn't change.
2287 * Note for future: If you are to reload bioset,
2288 * prep-ed requests in the queue may refer
2289 * to bio from the old bioset, so you must walk
2290 * through the queue to unprep.
2291 */
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002292 goto out;
Mikulas Patockac0820cf2012-12-21 20:23:38 +00002293 }
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002294
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05002295 BUG_ON(!p || md->io_pool || md->rq_pool || md->bs);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002296
2297 md->io_pool = p->io_pool;
2298 p->io_pool = NULL;
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05002299 md->rq_pool = p->rq_pool;
2300 p->rq_pool = NULL;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002301 md->bs = p->bs;
2302 p->bs = NULL;
2303
2304out:
2305 /* mempool bind completed, now no need any mempools in the table */
2306 dm_table_free_md_mempools(t);
2307}
2308
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309/*
2310 * Bind a table to the device.
2311 */
2312static void event_callback(void *context)
2313{
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002314 unsigned long flags;
2315 LIST_HEAD(uevents);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 struct mapped_device *md = (struct mapped_device *) context;
2317
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002318 spin_lock_irqsave(&md->uevent_lock, flags);
2319 list_splice_init(&md->uevent_list, &uevents);
2320 spin_unlock_irqrestore(&md->uevent_lock, flags);
2321
Tejun Heoed9e1982008-08-25 19:56:05 +09002322 dm_send_uevents(&uevents, &disk_to_dev(md->disk)->kobj);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002323
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 atomic_inc(&md->event_nr);
2325 wake_up(&md->eventq);
2326}
2327
Mike Snitzerc2176492011-01-13 19:53:46 +00002328/*
2329 * Protected by md->suspend_lock obtained by dm_swap_table().
2330 */
Alasdair G Kergon4e90188be2005-07-28 21:15:59 -07002331static void __set_size(struct mapped_device *md, sector_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332{
Alasdair G Kergon4e90188be2005-07-28 21:15:59 -07002333 set_capacity(md->disk, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002335 i_size_write(md->bdev->bd_inode, (loff_t)size << SECTOR_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336}
2337
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002338/*
Mikulas Patockad5b9dd02011-08-02 12:32:04 +01002339 * Return 1 if the queue has a compulsory merge_bvec_fn function.
2340 *
2341 * If this function returns 0, then the device is either a non-dm
2342 * device without a merge_bvec_fn, or it is a dm device that is
2343 * able to split any bios it receives that are too big.
2344 */
2345int dm_queue_merge_is_compulsory(struct request_queue *q)
2346{
2347 struct mapped_device *dev_md;
2348
2349 if (!q->merge_bvec_fn)
2350 return 0;
2351
2352 if (q->make_request_fn == dm_request) {
2353 dev_md = q->queuedata;
2354 if (test_bit(DMF_MERGE_IS_OPTIONAL, &dev_md->flags))
2355 return 0;
2356 }
2357
2358 return 1;
2359}
2360
2361static int dm_device_merge_is_compulsory(struct dm_target *ti,
2362 struct dm_dev *dev, sector_t start,
2363 sector_t len, void *data)
2364{
2365 struct block_device *bdev = dev->bdev;
2366 struct request_queue *q = bdev_get_queue(bdev);
2367
2368 return dm_queue_merge_is_compulsory(q);
2369}
2370
2371/*
2372 * Return 1 if it is acceptable to ignore merge_bvec_fn based
2373 * on the properties of the underlying devices.
2374 */
2375static int dm_table_merge_is_optional(struct dm_table *table)
2376{
2377 unsigned i = 0;
2378 struct dm_target *ti;
2379
2380 while (i < dm_table_get_num_targets(table)) {
2381 ti = dm_table_get_target(table, i++);
2382
2383 if (ti->type->iterate_devices &&
2384 ti->type->iterate_devices(ti, dm_device_merge_is_compulsory, NULL))
2385 return 0;
2386 }
2387
2388 return 1;
2389}
2390
2391/*
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002392 * Returns old map, which caller must destroy.
2393 */
2394static struct dm_table *__bind(struct mapped_device *md, struct dm_table *t,
2395 struct queue_limits *limits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396{
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002397 struct dm_table *old_map;
Jens Axboe165125e2007-07-24 09:28:11 +02002398 struct request_queue *q = md->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 sector_t size;
Mikulas Patockad5b9dd02011-08-02 12:32:04 +01002400 int merge_is_optional;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401
2402 size = dm_table_get_size(t);
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08002403
2404 /*
2405 * Wipe any geometry if the size of the table changed.
2406 */
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002407 if (size != dm_get_size(md))
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08002408 memset(&md->geometry, 0, sizeof(md->geometry));
2409
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002410 __set_size(md, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002412 dm_table_event_callback(t, event_callback, md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002413
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002414 /*
2415 * The queue hasn't been stopped yet, if the old table type wasn't
2416 * for request-based during suspension. So stop it to prevent
2417 * I/O mapping before resume.
2418 * This must be done before setting the queue restrictions,
2419 * because request-based dm may be run just after the setting.
2420 */
2421 if (dm_table_request_based(t) && !blk_queue_stopped(q))
2422 stop_queue(q);
2423
2424 __bind_mempools(md, t);
2425
Mikulas Patockad5b9dd02011-08-02 12:32:04 +01002426 merge_is_optional = dm_table_merge_is_optional(t);
2427
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002428 old_map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002429 rcu_assign_pointer(md->map, t);
Alasdair G Kergon36a04562011-10-31 20:19:04 +00002430 md->immutable_target_type = dm_table_get_immutable_target_type(t);
2431
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002432 dm_table_set_restrictions(t, q, limits);
Mikulas Patockad5b9dd02011-08-02 12:32:04 +01002433 if (merge_is_optional)
2434 set_bit(DMF_MERGE_IS_OPTIONAL, &md->flags);
2435 else
2436 clear_bit(DMF_MERGE_IS_OPTIONAL, &md->flags);
Hannes Reinecke41abc4e2014-11-05 14:35:50 +01002437 if (old_map)
2438 dm_sync_table(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002439
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002440 return old_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441}
2442
Alasdair G Kergona7940152009-12-10 23:52:23 +00002443/*
2444 * Returns unbound table for the caller to free.
2445 */
2446static struct dm_table *__unbind(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447{
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002448 struct dm_table *map = rcu_dereference_protected(md->map, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449
2450 if (!map)
Alasdair G Kergona7940152009-12-10 23:52:23 +00002451 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452
2453 dm_table_event_callback(map, NULL, NULL);
Monam Agarwal9cdb8522014-03-23 23:58:27 +05302454 RCU_INIT_POINTER(md->map, NULL);
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002455 dm_sync_table(md);
Alasdair G Kergona7940152009-12-10 23:52:23 +00002456
2457 return map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458}
2459
2460/*
2461 * Constructor for a new device.
2462 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002463int dm_create(int minor, struct mapped_device **result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464{
2465 struct mapped_device *md;
2466
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002467 md = alloc_dev(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 if (!md)
2469 return -ENXIO;
2470
Milan Broz784aae72009-01-06 03:05:12 +00002471 dm_sysfs_init(md);
2472
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 *result = md;
2474 return 0;
2475}
2476
Mike Snitzera5664da2010-08-12 04:14:01 +01002477/*
2478 * Functions to manage md->type.
2479 * All are required to hold md->type_lock.
2480 */
2481void dm_lock_md_type(struct mapped_device *md)
2482{
2483 mutex_lock(&md->type_lock);
2484}
2485
2486void dm_unlock_md_type(struct mapped_device *md)
2487{
2488 mutex_unlock(&md->type_lock);
2489}
2490
2491void dm_set_md_type(struct mapped_device *md, unsigned type)
2492{
Mike Snitzer00c4fc32013-08-27 18:57:03 -04002493 BUG_ON(!mutex_is_locked(&md->type_lock));
Mike Snitzera5664da2010-08-12 04:14:01 +01002494 md->type = type;
2495}
2496
2497unsigned dm_get_md_type(struct mapped_device *md)
2498{
Mike Snitzer00c4fc32013-08-27 18:57:03 -04002499 BUG_ON(!mutex_is_locked(&md->type_lock));
Mike Snitzera5664da2010-08-12 04:14:01 +01002500 return md->type;
2501}
2502
Mike Snitzere5863d92014-12-17 21:08:12 -05002503static bool dm_md_type_request_based(struct mapped_device *md)
2504{
2505 unsigned table_type = dm_get_md_type(md);
2506
2507 return (table_type == DM_TYPE_REQUEST_BASED ||
2508 table_type == DM_TYPE_MQ_REQUEST_BASED);
2509}
2510
Alasdair G Kergon36a04562011-10-31 20:19:04 +00002511struct target_type *dm_get_immutable_target_type(struct mapped_device *md)
2512{
2513 return md->immutable_target_type;
2514}
2515
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002516/*
Mike Snitzerf84cb8a2013-09-19 12:13:58 -04002517 * The queue_limits are only valid as long as you have a reference
2518 * count on 'md'.
2519 */
2520struct queue_limits *dm_get_queue_limits(struct mapped_device *md)
2521{
2522 BUG_ON(!atomic_read(&md->holders));
2523 return &md->queue->limits;
2524}
2525EXPORT_SYMBOL_GPL(dm_get_queue_limits);
2526
2527/*
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002528 * Fully initialize a request-based queue (->elevator, ->request_fn, etc).
2529 */
2530static int dm_init_request_based_queue(struct mapped_device *md)
2531{
2532 struct request_queue *q = NULL;
2533
2534 if (md->queue->elevator)
2535 return 1;
2536
2537 /* Fully initialize the queue */
2538 q = blk_init_allocated_queue(md->queue, dm_request_fn, NULL);
2539 if (!q)
2540 return 0;
2541
2542 md->queue = q;
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002543 dm_init_md_queue(md);
2544 blk_queue_softirq_done(md->queue, dm_softirq_done);
2545 blk_queue_prep_rq(md->queue, dm_prep_fn);
2546 blk_queue_lld_busy(md->queue, dm_lld_busy);
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002547
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002548 /* Also initialize the request-based DM worker thread */
2549 init_kthread_worker(&md->kworker);
2550 md->kworker_task = kthread_run(kthread_worker_fn, &md->kworker,
2551 "kdmwork-%s", dm_device_name(md));
2552
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002553 elv_register_queue(md->queue);
2554
2555 return 1;
2556}
2557
2558/*
2559 * Setup the DM device's queue based on md's type
2560 */
2561int dm_setup_md_queue(struct mapped_device *md)
2562{
Mike Snitzere5863d92014-12-17 21:08:12 -05002563 if (dm_md_type_request_based(md) && !dm_init_request_based_queue(md)) {
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002564 DMWARN("Cannot initialize queue for request-based mapped device");
2565 return -EINVAL;
2566 }
2567
2568 return 0;
2569}
2570
David Teigland637842c2006-01-06 00:20:00 -08002571static struct mapped_device *dm_find_md(dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572{
2573 struct mapped_device *md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574 unsigned minor = MINOR(dev);
2575
2576 if (MAJOR(dev) != _major || minor >= (1 << MINORBITS))
2577 return NULL;
2578
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002579 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580
2581 md = idr_find(&_minor_idr, minor);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002582 if (md && (md == MINOR_ALLOCED ||
Tejun Heof331c022008-09-03 09:01:48 +02002583 (MINOR(disk_devt(dm_disk(md))) != minor) ||
Kiyoshi Uedaabdc5682010-08-12 04:13:54 +01002584 dm_deleting_md(md) ||
Alasdair G Kergon17b2f662006-06-26 00:27:33 -07002585 test_bit(DMF_FREEING, &md->flags))) {
David Teigland637842c2006-01-06 00:20:00 -08002586 md = NULL;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002587 goto out;
2588 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002590out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002591 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592
David Teigland637842c2006-01-06 00:20:00 -08002593 return md;
2594}
2595
David Teiglandd229a952006-01-06 00:20:01 -08002596struct mapped_device *dm_get_md(dev_t dev)
2597{
2598 struct mapped_device *md = dm_find_md(dev);
2599
2600 if (md)
2601 dm_get(md);
2602
2603 return md;
2604}
Alasdair G Kergon3cf2e4b2011-10-31 20:19:06 +00002605EXPORT_SYMBOL_GPL(dm_get_md);
David Teiglandd229a952006-01-06 00:20:01 -08002606
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08002607void *dm_get_mdptr(struct mapped_device *md)
David Teigland637842c2006-01-06 00:20:00 -08002608{
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08002609 return md->interface_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610}
2611
2612void dm_set_mdptr(struct mapped_device *md, void *ptr)
2613{
2614 md->interface_ptr = ptr;
2615}
2616
2617void dm_get(struct mapped_device *md)
2618{
2619 atomic_inc(&md->holders);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002620 BUG_ON(test_bit(DMF_FREEING, &md->flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621}
2622
Alasdair G Kergon72d94862006-06-26 00:27:35 -07002623const char *dm_device_name(struct mapped_device *md)
2624{
2625 return md->name;
2626}
2627EXPORT_SYMBOL_GPL(dm_device_name);
2628
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002629static void __dm_destroy(struct mapped_device *md, bool wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630{
Mike Anderson1134e5a2006-03-27 01:17:54 -08002631 struct dm_table *map;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002632 int srcu_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002634 might_sleep();
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002635
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002636 spin_lock(&_minor_lock);
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002637 map = dm_get_live_table(md, &srcu_idx);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002638 idr_replace(&_minor_idr, MINOR_ALLOCED, MINOR(disk_devt(dm_disk(md))));
2639 set_bit(DMF_FREEING, &md->flags);
2640 spin_unlock(&_minor_lock);
2641
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002642 if (dm_request_based(md))
2643 flush_kthread_worker(&md->kworker);
2644
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002645 if (!dm_suspended_md(md)) {
2646 dm_table_presuspend_targets(map);
2647 dm_table_postsuspend_targets(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648 }
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002649
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002650 /* dm_put_live_table must be before msleep, otherwise deadlock is possible */
2651 dm_put_live_table(md, srcu_idx);
2652
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002653 /*
2654 * Rare, but there may be I/O requests still going to complete,
2655 * for example. Wait for all references to disappear.
2656 * No one should increment the reference count of the mapped_device,
2657 * after the mapped_device state becomes DMF_FREEING.
2658 */
2659 if (wait)
2660 while (atomic_read(&md->holders))
2661 msleep(1);
2662 else if (atomic_read(&md->holders))
2663 DMWARN("%s: Forcibly removing mapped_device still in use! (%d users)",
2664 dm_device_name(md), atomic_read(&md->holders));
2665
2666 dm_sysfs_exit(md);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002667 dm_table_destroy(__unbind(md));
2668 free_dev(md);
2669}
2670
2671void dm_destroy(struct mapped_device *md)
2672{
2673 __dm_destroy(md, true);
2674}
2675
2676void dm_destroy_immediate(struct mapped_device *md)
2677{
2678 __dm_destroy(md, false);
2679}
2680
2681void dm_put(struct mapped_device *md)
2682{
2683 atomic_dec(&md->holders);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684}
Edward Goggin79eb8852007-05-09 02:32:56 -07002685EXPORT_SYMBOL_GPL(dm_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686
Mikulas Patocka401600d2009-04-02 19:55:38 +01002687static int dm_wait_for_completion(struct mapped_device *md, int interruptible)
Milan Broz46125c12008-02-08 02:10:30 +00002688{
2689 int r = 0;
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002690 DECLARE_WAITQUEUE(wait, current);
2691
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002692 add_wait_queue(&md->wait, &wait);
Milan Broz46125c12008-02-08 02:10:30 +00002693
2694 while (1) {
Mikulas Patocka401600d2009-04-02 19:55:38 +01002695 set_current_state(interruptible);
Milan Broz46125c12008-02-08 02:10:30 +00002696
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00002697 if (!md_in_flight(md))
Milan Broz46125c12008-02-08 02:10:30 +00002698 break;
2699
Mikulas Patocka401600d2009-04-02 19:55:38 +01002700 if (interruptible == TASK_INTERRUPTIBLE &&
2701 signal_pending(current)) {
Milan Broz46125c12008-02-08 02:10:30 +00002702 r = -EINTR;
2703 break;
2704 }
2705
2706 io_schedule();
2707 }
2708 set_current_state(TASK_RUNNING);
2709
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002710 remove_wait_queue(&md->wait, &wait);
2711
Milan Broz46125c12008-02-08 02:10:30 +00002712 return r;
2713}
2714
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715/*
2716 * Process the deferred bios
2717 */
Mikulas Patockaef208582009-04-02 19:55:38 +01002718static void dm_wq_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719{
Mikulas Patockaef208582009-04-02 19:55:38 +01002720 struct mapped_device *md = container_of(work, struct mapped_device,
2721 work);
Milan Broz6d6f10d2008-02-08 02:10:22 +00002722 struct bio *c;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002723 int srcu_idx;
2724 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002726 map = dm_get_live_table(md, &srcu_idx);
Mikulas Patockaef208582009-04-02 19:55:38 +01002727
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002728 while (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002729 spin_lock_irq(&md->deferred_lock);
2730 c = bio_list_pop(&md->deferred);
2731 spin_unlock_irq(&md->deferred_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01002732
Tejun Heo6a8736d2010-09-08 18:07:00 +02002733 if (!c)
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002734 break;
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002735
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002736 if (dm_request_based(md))
2737 generic_make_request(c);
Tejun Heo6a8736d2010-09-08 18:07:00 +02002738 else
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002739 __split_and_process_bio(md, map, c);
Mikulas Patocka022c2612009-04-02 19:55:39 +01002740 }
Milan Broz73d410c2008-02-08 02:10:25 +00002741
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002742 dm_put_live_table(md, srcu_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743}
2744
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002745static void dm_queue_flush(struct mapped_device *md)
Milan Broz304f3f62008-02-08 02:11:17 +00002746{
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002747 clear_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01002748 smp_mb__after_atomic();
Mikulas Patocka53d59142009-04-02 19:55:37 +01002749 queue_work(md->wq, &md->work);
Milan Broz304f3f62008-02-08 02:11:17 +00002750}
2751
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752/*
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002753 * Swap in a new table, returning the old one for the caller to destroy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 */
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002755struct dm_table *dm_swap_table(struct mapped_device *md, struct dm_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756{
Mike Christie87eb5b22013-03-01 22:45:48 +00002757 struct dm_table *live_map = NULL, *map = ERR_PTR(-EINVAL);
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002758 struct queue_limits limits;
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002759 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760
Daniel Walkere61290a2008-02-08 02:10:08 +00002761 mutex_lock(&md->suspend_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762
2763 /* device must be suspended */
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +00002764 if (!dm_suspended_md(md))
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07002765 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766
Mike Snitzer3ae70652012-09-26 23:45:45 +01002767 /*
2768 * If the new table has no data devices, retain the existing limits.
2769 * This helps multipath with queue_if_no_path if all paths disappear,
2770 * then new I/O is queued based on these limits, and then some paths
2771 * reappear.
2772 */
2773 if (dm_table_has_no_data_devices(table)) {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002774 live_map = dm_get_live_table_fast(md);
Mike Snitzer3ae70652012-09-26 23:45:45 +01002775 if (live_map)
2776 limits = md->queue->limits;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002777 dm_put_live_table_fast(md);
Mike Snitzer3ae70652012-09-26 23:45:45 +01002778 }
2779
Mike Christie87eb5b22013-03-01 22:45:48 +00002780 if (!live_map) {
2781 r = dm_calculate_queue_limits(table, &limits);
2782 if (r) {
2783 map = ERR_PTR(r);
2784 goto out;
2785 }
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002786 }
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002787
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002788 map = __bind(md, table, &limits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07002790out:
Daniel Walkere61290a2008-02-08 02:10:08 +00002791 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002792 return map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793}
2794
2795/*
2796 * Functions to lock and unlock any filesystem running on the
2797 * device.
2798 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002799static int lock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800{
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08002801 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802
2803 WARN_ON(md->frozen_sb);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002804
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002805 md->frozen_sb = freeze_bdev(md->bdev);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002806 if (IS_ERR(md->frozen_sb)) {
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002807 r = PTR_ERR(md->frozen_sb);
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08002808 md->frozen_sb = NULL;
2809 return r;
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002810 }
2811
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002812 set_bit(DMF_FROZEN, &md->flags);
2813
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814 return 0;
2815}
2816
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002817static void unlock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818{
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002819 if (!test_bit(DMF_FROZEN, &md->flags))
2820 return;
2821
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002822 thaw_bdev(md->bdev, md->frozen_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 md->frozen_sb = NULL;
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002824 clear_bit(DMF_FROZEN, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825}
2826
2827/*
Mike Snitzerffcc3932014-10-28 18:34:52 -04002828 * If __dm_suspend returns 0, the device is completely quiescent
2829 * now. There is no request-processing activity. All new requests
2830 * are being added to md->deferred list.
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002831 *
Mike Snitzerffcc3932014-10-28 18:34:52 -04002832 * Caller must hold md->suspend_lock
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002833 */
Mike Snitzerffcc3932014-10-28 18:34:52 -04002834static int __dm_suspend(struct mapped_device *md, struct dm_table *map,
2835 unsigned suspend_flags, int interruptible)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836{
Mike Snitzerffcc3932014-10-28 18:34:52 -04002837 bool do_lockfs = suspend_flags & DM_SUSPEND_LOCKFS_FLAG;
2838 bool noflush = suspend_flags & DM_SUSPEND_NOFLUSH_FLAG;
2839 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002841 /*
2842 * DMF_NOFLUSH_SUSPENDING must be set before presuspend.
2843 * This flag is cleared before dm_suspend returns.
2844 */
2845 if (noflush)
2846 set_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
2847
Mike Snitzerd67ee212014-10-28 20:13:31 -04002848 /*
2849 * This gets reverted if there's an error later and the targets
2850 * provide the .presuspend_undo hook.
2851 */
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002852 dm_table_presuspend_targets(map);
2853
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002854 /*
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002855 * Flush I/O to the device.
2856 * Any I/O submitted after lock_fs() may not be flushed.
2857 * noflush takes precedence over do_lockfs.
2858 * (lock_fs() flushes I/Os and waits for them to complete.)
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002859 */
2860 if (!noflush && do_lockfs) {
2861 r = lock_fs(md);
Mike Snitzerd67ee212014-10-28 20:13:31 -04002862 if (r) {
2863 dm_table_presuspend_undo_targets(map);
Mike Snitzerffcc3932014-10-28 18:34:52 -04002864 return r;
Mike Snitzerd67ee212014-10-28 20:13:31 -04002865 }
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002866 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867
2868 /*
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002869 * Here we must make sure that no processes are submitting requests
2870 * to target drivers i.e. no one may be executing
2871 * __split_and_process_bio. This is called from dm_request and
2872 * dm_wq_work.
2873 *
2874 * To get all processes out of __split_and_process_bio in dm_request,
2875 * we take the write lock. To prevent any process from reentering
Tejun Heo6a8736d2010-09-08 18:07:00 +02002876 * __split_and_process_bio from dm_request and quiesce the thread
2877 * (dm_wq_work), we set BMF_BLOCK_IO_FOR_SUSPEND and call
2878 * flush_workqueue(md->wq).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879 */
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01002880 set_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
Hannes Reinecke41abc4e2014-11-05 14:35:50 +01002881 if (map)
2882 synchronize_srcu(&md->io_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002884 /*
Tejun Heo29e40132010-09-08 18:07:00 +02002885 * Stop md->queue before flushing md->wq in case request-based
2886 * dm defers requests to md->wq from md->queue.
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002887 */
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002888 if (dm_request_based(md)) {
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002889 stop_queue(md->queue);
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002890 flush_kthread_worker(&md->kworker);
2891 }
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002892
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002893 flush_workqueue(md->wq);
2894
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 /*
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002896 * At this point no more requests are entering target request routines.
2897 * We call dm_wait_for_completion to wait for all existing requests
2898 * to finish.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899 */
Mike Snitzerffcc3932014-10-28 18:34:52 -04002900 r = dm_wait_for_completion(md, interruptible);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901
Milan Broz6d6f10d2008-02-08 02:10:22 +00002902 if (noflush)
Mikulas Patocka022c2612009-04-02 19:55:39 +01002903 clear_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
Hannes Reinecke41abc4e2014-11-05 14:35:50 +01002904 if (map)
2905 synchronize_srcu(&md->io_barrier);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002906
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 /* were we interrupted ? */
Milan Broz46125c12008-02-08 02:10:30 +00002908 if (r < 0) {
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002909 dm_queue_flush(md);
Milan Broz73d410c2008-02-08 02:10:25 +00002910
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002911 if (dm_request_based(md))
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002912 start_queue(md->queue);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002913
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002914 unlock_fs(md);
Mike Snitzerd67ee212014-10-28 20:13:31 -04002915 dm_table_presuspend_undo_targets(map);
Mike Snitzerffcc3932014-10-28 18:34:52 -04002916 /* pushback list is already flushed, so skip flush */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002917 }
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002918
Mike Snitzerffcc3932014-10-28 18:34:52 -04002919 return r;
2920}
2921
2922/*
2923 * We need to be able to change a mapping table under a mounted
2924 * filesystem. For example we might want to move some data in
2925 * the background. Before the table can be swapped with
2926 * dm_bind_table, dm_suspend must be called to flush any in
2927 * flight bios and ensure that any further io gets deferred.
2928 */
2929/*
2930 * Suspend mechanism in request-based dm.
2931 *
2932 * 1. Flush all I/Os by lock_fs() if needed.
2933 * 2. Stop dispatching any I/O by stopping the request_queue.
2934 * 3. Wait for all in-flight I/Os to be completed or requeued.
2935 *
2936 * To abort suspend, start the request_queue.
2937 */
2938int dm_suspend(struct mapped_device *md, unsigned suspend_flags)
2939{
2940 struct dm_table *map = NULL;
2941 int r = 0;
2942
2943retry:
2944 mutex_lock_nested(&md->suspend_lock, SINGLE_DEPTH_NESTING);
2945
2946 if (dm_suspended_md(md)) {
2947 r = -EINVAL;
2948 goto out_unlock;
2949 }
2950
2951 if (dm_suspended_internally_md(md)) {
2952 /* already internally suspended, wait for internal resume */
2953 mutex_unlock(&md->suspend_lock);
2954 r = wait_on_bit(&md->flags, DMF_SUSPENDED_INTERNALLY, TASK_INTERRUPTIBLE);
2955 if (r)
2956 return r;
2957 goto retry;
2958 }
2959
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002960 map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mike Snitzerffcc3932014-10-28 18:34:52 -04002961
2962 r = __dm_suspend(md, map, suspend_flags, TASK_INTERRUPTIBLE);
2963 if (r)
2964 goto out_unlock;
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002965
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966 set_bit(DMF_SUSPENDED, &md->flags);
2967
Kiyoshi Ueda4d4471c2009-12-10 23:52:26 +00002968 dm_table_postsuspend_targets(map);
2969
Alasdair G Kergond2874832006-11-08 17:44:43 -08002970out_unlock:
Daniel Walkere61290a2008-02-08 02:10:08 +00002971 mutex_unlock(&md->suspend_lock);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002972 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973}
2974
Mike Snitzerffcc3932014-10-28 18:34:52 -04002975static int __dm_resume(struct mapped_device *md, struct dm_table *map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976{
Mike Snitzerffcc3932014-10-28 18:34:52 -04002977 if (map) {
2978 int r = dm_table_resume_targets(map);
2979 if (r)
2980 return r;
2981 }
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002982
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002983 dm_queue_flush(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002984
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002985 /*
2986 * Flushing deferred I/Os must be done after targets are resumed
2987 * so that mapping of targets can work correctly.
2988 * Request-based dm is queueing the deferred I/Os in its request_queue.
2989 */
2990 if (dm_request_based(md))
2991 start_queue(md->queue);
2992
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002993 unlock_fs(md);
2994
Mike Snitzerffcc3932014-10-28 18:34:52 -04002995 return 0;
2996}
2997
2998int dm_resume(struct mapped_device *md)
2999{
3000 int r = -EINVAL;
3001 struct dm_table *map = NULL;
3002
3003retry:
3004 mutex_lock_nested(&md->suspend_lock, SINGLE_DEPTH_NESTING);
3005
3006 if (!dm_suspended_md(md))
3007 goto out;
3008
3009 if (dm_suspended_internally_md(md)) {
3010 /* already internally suspended, wait for internal resume */
3011 mutex_unlock(&md->suspend_lock);
3012 r = wait_on_bit(&md->flags, DMF_SUSPENDED_INTERNALLY, TASK_INTERRUPTIBLE);
3013 if (r)
3014 return r;
3015 goto retry;
3016 }
3017
Eric Dumazeta12f5d42014-11-23 09:34:29 -08003018 map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mike Snitzerffcc3932014-10-28 18:34:52 -04003019 if (!map || !dm_table_get_size(map))
3020 goto out;
3021
3022 r = __dm_resume(md, map);
3023 if (r)
3024 goto out;
3025
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07003026 clear_bit(DMF_SUSPENDED, &md->flags);
3027
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07003028 r = 0;
3029out:
Daniel Walkere61290a2008-02-08 02:10:08 +00003030 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07003031
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07003032 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033}
3034
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003035/*
3036 * Internal suspend/resume works like userspace-driven suspend. It waits
3037 * until all bios finish and prevents issuing new bios to the target drivers.
3038 * It may be used only from the kernel.
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003039 */
3040
Mike Snitzerffcc3932014-10-28 18:34:52 -04003041static void __dm_internal_suspend(struct mapped_device *md, unsigned suspend_flags)
3042{
3043 struct dm_table *map = NULL;
3044
3045 if (dm_suspended_internally_md(md))
3046 return; /* nested internal suspend */
3047
3048 if (dm_suspended_md(md)) {
3049 set_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
3050 return; /* nest suspend */
3051 }
3052
Eric Dumazeta12f5d42014-11-23 09:34:29 -08003053 map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mike Snitzerffcc3932014-10-28 18:34:52 -04003054
3055 /*
3056 * Using TASK_UNINTERRUPTIBLE because only NOFLUSH internal suspend is
3057 * supported. Properly supporting a TASK_INTERRUPTIBLE internal suspend
3058 * would require changing .presuspend to return an error -- avoid this
3059 * until there is a need for more elaborate variants of internal suspend.
3060 */
3061 (void) __dm_suspend(md, map, suspend_flags, TASK_UNINTERRUPTIBLE);
3062
3063 set_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
3064
3065 dm_table_postsuspend_targets(map);
3066}
3067
3068static void __dm_internal_resume(struct mapped_device *md)
3069{
3070 if (!dm_suspended_internally_md(md))
3071 return; /* resume from nested internal suspend */
3072
3073 if (dm_suspended_md(md))
3074 goto done; /* resume from nested suspend */
3075
3076 /*
3077 * NOTE: existing callers don't need to call dm_table_resume_targets
3078 * (which may fail -- so best to avoid it for now by passing NULL map)
3079 */
3080 (void) __dm_resume(md, NULL);
3081
3082done:
3083 clear_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
3084 smp_mb__after_atomic();
3085 wake_up_bit(&md->flags, DMF_SUSPENDED_INTERNALLY);
3086}
3087
3088void dm_internal_suspend_noflush(struct mapped_device *md)
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003089{
3090 mutex_lock(&md->suspend_lock);
Mike Snitzerffcc3932014-10-28 18:34:52 -04003091 __dm_internal_suspend(md, DM_SUSPEND_NOFLUSH_FLAG);
3092 mutex_unlock(&md->suspend_lock);
3093}
3094EXPORT_SYMBOL_GPL(dm_internal_suspend_noflush);
3095
3096void dm_internal_resume(struct mapped_device *md)
3097{
3098 mutex_lock(&md->suspend_lock);
3099 __dm_internal_resume(md);
3100 mutex_unlock(&md->suspend_lock);
3101}
3102EXPORT_SYMBOL_GPL(dm_internal_resume);
3103
3104/*
3105 * Fast variants of internal suspend/resume hold md->suspend_lock,
3106 * which prevents interaction with userspace-driven suspend.
3107 */
3108
3109void dm_internal_suspend_fast(struct mapped_device *md)
3110{
3111 mutex_lock(&md->suspend_lock);
3112 if (dm_suspended_md(md) || dm_suspended_internally_md(md))
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003113 return;
3114
3115 set_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
3116 synchronize_srcu(&md->io_barrier);
3117 flush_workqueue(md->wq);
3118 dm_wait_for_completion(md, TASK_UNINTERRUPTIBLE);
3119}
3120
Mike Snitzerffcc3932014-10-28 18:34:52 -04003121void dm_internal_resume_fast(struct mapped_device *md)
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003122{
Mike Snitzerffcc3932014-10-28 18:34:52 -04003123 if (dm_suspended_md(md) || dm_suspended_internally_md(md))
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003124 goto done;
3125
3126 dm_queue_flush(md);
3127
3128done:
3129 mutex_unlock(&md->suspend_lock);
3130}
3131
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132/*-----------------------------------------------------------------
3133 * Event notification.
3134 *---------------------------------------------------------------*/
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00003135int dm_kobject_uevent(struct mapped_device *md, enum kobject_action action,
Milan Broz60935eb2009-06-22 10:12:30 +01003136 unsigned cookie)
Alasdair G Kergon69267a32007-12-13 14:15:57 +00003137{
Milan Broz60935eb2009-06-22 10:12:30 +01003138 char udev_cookie[DM_COOKIE_LENGTH];
3139 char *envp[] = { udev_cookie, NULL };
3140
3141 if (!cookie)
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00003142 return kobject_uevent(&disk_to_dev(md->disk)->kobj, action);
Milan Broz60935eb2009-06-22 10:12:30 +01003143 else {
3144 snprintf(udev_cookie, DM_COOKIE_LENGTH, "%s=%u",
3145 DM_COOKIE_ENV_VAR_NAME, cookie);
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00003146 return kobject_uevent_env(&disk_to_dev(md->disk)->kobj,
3147 action, envp);
Milan Broz60935eb2009-06-22 10:12:30 +01003148 }
Alasdair G Kergon69267a32007-12-13 14:15:57 +00003149}
3150
Mike Anderson7a8c3d32007-10-19 22:48:01 +01003151uint32_t dm_next_uevent_seq(struct mapped_device *md)
3152{
3153 return atomic_add_return(1, &md->uevent_seq);
3154}
3155
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156uint32_t dm_get_event_nr(struct mapped_device *md)
3157{
3158 return atomic_read(&md->event_nr);
3159}
3160
3161int dm_wait_event(struct mapped_device *md, int event_nr)
3162{
3163 return wait_event_interruptible(md->eventq,
3164 (event_nr != atomic_read(&md->event_nr)));
3165}
3166
Mike Anderson7a8c3d32007-10-19 22:48:01 +01003167void dm_uevent_add(struct mapped_device *md, struct list_head *elist)
3168{
3169 unsigned long flags;
3170
3171 spin_lock_irqsave(&md->uevent_lock, flags);
3172 list_add(elist, &md->uevent_list);
3173 spin_unlock_irqrestore(&md->uevent_lock, flags);
3174}
3175
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176/*
3177 * The gendisk is only valid as long as you have a reference
3178 * count on 'md'.
3179 */
3180struct gendisk *dm_disk(struct mapped_device *md)
3181{
3182 return md->disk;
3183}
3184
Milan Broz784aae72009-01-06 03:05:12 +00003185struct kobject *dm_kobject(struct mapped_device *md)
3186{
Mikulas Patocka2995fa72014-01-13 19:37:54 -05003187 return &md->kobj_holder.kobj;
Milan Broz784aae72009-01-06 03:05:12 +00003188}
3189
Milan Broz784aae72009-01-06 03:05:12 +00003190struct mapped_device *dm_get_from_kobject(struct kobject *kobj)
3191{
3192 struct mapped_device *md;
3193
Mikulas Patocka2995fa72014-01-13 19:37:54 -05003194 md = container_of(kobj, struct mapped_device, kobj_holder.kobj);
Milan Broz784aae72009-01-06 03:05:12 +00003195
Milan Broz4d89b7b2009-06-22 10:12:11 +01003196 if (test_bit(DMF_FREEING, &md->flags) ||
Mike Anderson432a2122009-12-10 23:52:20 +00003197 dm_deleting_md(md))
Milan Broz4d89b7b2009-06-22 10:12:11 +01003198 return NULL;
3199
Milan Broz784aae72009-01-06 03:05:12 +00003200 dm_get(md);
3201 return md;
3202}
3203
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +00003204int dm_suspended_md(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205{
3206 return test_bit(DMF_SUSPENDED, &md->flags);
3207}
3208
Mike Snitzerffcc3932014-10-28 18:34:52 -04003209int dm_suspended_internally_md(struct mapped_device *md)
3210{
3211 return test_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
3212}
3213
Mikulas Patocka2c140a22013-11-01 18:27:41 -04003214int dm_test_deferred_remove_flag(struct mapped_device *md)
3215{
3216 return test_bit(DMF_DEFERRED_REMOVE, &md->flags);
3217}
3218
Kiyoshi Ueda64dbce52009-12-10 23:52:27 +00003219int dm_suspended(struct dm_target *ti)
3220{
Kiyoshi Uedaecdb2e22010-03-06 02:29:52 +00003221 return dm_suspended_md(dm_table_get_md(ti->table));
Kiyoshi Ueda64dbce52009-12-10 23:52:27 +00003222}
3223EXPORT_SYMBOL_GPL(dm_suspended);
3224
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08003225int dm_noflush_suspending(struct dm_target *ti)
3226{
Kiyoshi Uedaecdb2e22010-03-06 02:29:52 +00003227 return __noflush_suspending(dm_table_get_md(ti->table));
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08003228}
3229EXPORT_SYMBOL_GPL(dm_noflush_suspending);
3230
Mikulas Patockac0820cf2012-12-21 20:23:38 +00003231struct dm_md_mempools *dm_alloc_md_mempools(unsigned type, unsigned integrity, unsigned per_bio_data_size)
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003232{
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003233 struct dm_md_mempools *pools = kzalloc(sizeof(*pools), GFP_KERNEL);
3234 struct kmem_cache *cachep;
Mike Snitzere5863d92014-12-17 21:08:12 -05003235 unsigned int pool_size = 0;
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003236 unsigned int front_pad;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003237
3238 if (!pools)
3239 return NULL;
3240
Mike Snitzere5863d92014-12-17 21:08:12 -05003241 switch (type) {
3242 case DM_TYPE_BIO_BASED:
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003243 cachep = _io_cache;
Mike Snitzere8603132013-09-12 18:06:12 -04003244 pool_size = dm_get_reserved_bio_based_ios();
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003245 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 -05003246 break;
3247 case DM_TYPE_REQUEST_BASED:
Mike Snitzerf4790822013-09-12 18:06:12 -04003248 pool_size = dm_get_reserved_rq_based_ios();
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05003249 pools->rq_pool = mempool_create_slab_pool(pool_size, _rq_cache);
3250 if (!pools->rq_pool)
3251 goto out;
Mike Snitzere5863d92014-12-17 21:08:12 -05003252 /* fall through to setup remaining rq-based pools */
3253 case DM_TYPE_MQ_REQUEST_BASED:
3254 cachep = _rq_tio_cache;
3255 if (!pool_size)
3256 pool_size = dm_get_reserved_rq_based_ios();
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003257 front_pad = offsetof(struct dm_rq_clone_bio_info, clone);
3258 /* per_bio_data_size is not used. See __bind_mempools(). */
3259 WARN_ON(per_bio_data_size != 0);
Mike Snitzere5863d92014-12-17 21:08:12 -05003260 break;
3261 default:
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003262 goto out;
Mike Snitzere5863d92014-12-17 21:08:12 -05003263 }
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003264
Mike Snitzer6cfa5852013-09-12 18:06:11 -04003265 pools->io_pool = mempool_create_slab_pool(pool_size, cachep);
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003266 if (!pools->io_pool)
3267 goto out;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003268
Junichi Nomura3d8aab22014-10-03 11:55:26 +00003269 pools->bs = bioset_create_nobvec(pool_size, front_pad);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003270 if (!pools->bs)
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003271 goto out;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003272
Martin K. Petersena91a2782011-03-17 11:11:05 +01003273 if (integrity && bioset_integrity_create(pools->bs, pool_size))
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003274 goto out;
Martin K. Petersena91a2782011-03-17 11:11:05 +01003275
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003276 return pools;
3277
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003278out:
3279 dm_free_md_mempools(pools);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003280
3281 return NULL;
3282}
3283
3284void dm_free_md_mempools(struct dm_md_mempools *pools)
3285{
3286 if (!pools)
3287 return;
3288
3289 if (pools->io_pool)
3290 mempool_destroy(pools->io_pool);
3291
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05003292 if (pools->rq_pool)
3293 mempool_destroy(pools->rq_pool);
3294
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003295 if (pools->bs)
3296 bioset_free(pools->bs);
3297
3298 kfree(pools);
3299}
3300
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07003301static const struct block_device_operations dm_blk_dops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302 .open = dm_blk_open,
3303 .release = dm_blk_close,
Milan Brozaa129a22006-10-03 01:15:15 -07003304 .ioctl = dm_blk_ioctl,
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08003305 .getgeo = dm_blk_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306 .owner = THIS_MODULE
3307};
3308
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309/*
3310 * module hooks
3311 */
3312module_init(dm_init);
3313module_exit(dm_exit);
3314
3315module_param(major, uint, 0);
3316MODULE_PARM_DESC(major, "The major number of the device mapper");
Mike Snitzerf4790822013-09-12 18:06:12 -04003317
Mike Snitzere8603132013-09-12 18:06:12 -04003318module_param(reserved_bio_based_ios, uint, S_IRUGO | S_IWUSR);
3319MODULE_PARM_DESC(reserved_bio_based_ios, "Reserved IOs in bio-based mempools");
3320
Mike Snitzerf4790822013-09-12 18:06:12 -04003321module_param(reserved_rq_based_ios, uint, S_IRUGO | S_IWUSR);
3322MODULE_PARM_DESC(reserved_rq_based_ios, "Reserved IOs in request-based mempools");
3323
Linus Torvalds1da177e2005-04-16 15:20:36 -07003324MODULE_DESCRIPTION(DM_NAME " driver");
3325MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
3326MODULE_LICENSE("GPL");