blob: 2caf5b374649afaecff37a5ab5153d7ccc5ec437 [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>
Li Zefan55782132009-06-09 13:43:05 +080023
24#include <trace/events/block.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Alasdair G Kergon72d94862006-06-26 00:27:35 -070026#define DM_MSG_PREFIX "core"
27
Namhyung Kim71a16732011-10-31 20:18:54 +000028#ifdef CONFIG_PRINTK
29/*
30 * ratelimit state to be used in DMXXX_LIMIT().
31 */
32DEFINE_RATELIMIT_STATE(dm_ratelimit_state,
33 DEFAULT_RATELIMIT_INTERVAL,
34 DEFAULT_RATELIMIT_BURST);
35EXPORT_SYMBOL(dm_ratelimit_state);
36#endif
37
Milan Broz60935eb2009-06-22 10:12:30 +010038/*
39 * Cookies are numeric values sent with CHANGE and REMOVE
40 * uevents while resuming, removing or renaming the device.
41 */
42#define DM_COOKIE_ENV_VAR_NAME "DM_COOKIE"
43#define DM_COOKIE_LENGTH 24
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045static const char *_name = DM_NAME;
46
47static unsigned int major = 0;
48static unsigned int _major = 0;
49
Alasdair G Kergond15b7742011-08-02 12:32:01 +010050static DEFINE_IDR(_minor_idr);
51
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -070052static DEFINE_SPINLOCK(_minor_lock);
Mikulas Patocka2c140a22013-11-01 18:27:41 -040053
54static void do_deferred_remove(struct work_struct *w);
55
56static DECLARE_WORK(deferred_remove_work, do_deferred_remove);
57
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -040058static struct workqueue_struct *deferred_remove_workqueue;
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060/*
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000061 * For bio-based dm.
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 * One of these is allocated per bio.
63 */
64struct dm_io {
65 struct mapped_device *md;
66 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 atomic_t io_count;
Richard Kennedy6ae2fa62008-07-21 12:00:28 +010068 struct bio *bio;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -080069 unsigned long start_time;
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +010070 spinlock_t endio_lock;
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -040071 struct dm_stats_aux stats_aux;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072};
73
74/*
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000075 * For request-based dm.
76 * One of these is allocated per request.
77 */
78struct dm_rq_target_io {
79 struct mapped_device *md;
80 struct dm_target *ti;
81 struct request *orig, clone;
82 int error;
83 union map_info info;
84};
85
86/*
Kent Overstreet94818742012-09-07 13:44:01 -070087 * For request-based dm - the bio clones we allocate are embedded in these
88 * structs.
89 *
90 * We allocate these with bio_alloc_bioset, using the front_pad parameter when
91 * the bioset is created - this means the bio has to come at the end of the
92 * struct.
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000093 */
94struct dm_rq_clone_bio_info {
95 struct bio *orig;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +010096 struct dm_rq_target_io *tio;
Kent Overstreet94818742012-09-07 13:44:01 -070097 struct bio clone;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000098};
99
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100100union map_info *dm_get_rq_mapinfo(struct request *rq)
101{
102 if (rq && rq->end_io_data)
103 return &((struct dm_rq_target_io *)rq->end_io_data)->info;
104 return NULL;
105}
106EXPORT_SYMBOL_GPL(dm_get_rq_mapinfo);
107
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -0700108#define MINOR_ALLOCED ((void *)-1)
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110/*
111 * Bits for the md->flags field.
112 */
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +0100113#define DMF_BLOCK_IO_FOR_SUSPEND 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114#define DMF_SUSPENDED 1
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -0800115#define DMF_FROZEN 2
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700116#define DMF_FREEING 3
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700117#define DMF_DELETING 4
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800118#define DMF_NOFLUSH_SUSPENDING 5
Mikulas Patockad5b9dd02011-08-02 12:32:04 +0100119#define DMF_MERGE_IS_OPTIONAL 6
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400120#define DMF_DEFERRED_REMOVE 7
Mike Snitzerffcc3932014-10-28 18:34:52 -0400121#define DMF_SUSPENDED_INTERNALLY 8
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Milan Broz304f3f62008-02-08 02:11:17 +0000123/*
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100124 * A dummy definition to make RCU happy.
125 * struct dm_table should never be dereferenced in this file.
126 */
127struct dm_table {
128 int undefined__;
129};
130
131/*
Milan Broz304f3f62008-02-08 02:11:17 +0000132 * Work processed by per-device workqueue.
133 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134struct mapped_device {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100135 struct srcu_struct io_barrier;
Daniel Walkere61290a2008-02-08 02:10:08 +0000136 struct mutex suspend_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 atomic_t holders;
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700138 atomic_t open_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Mikulas Patocka2a7faeb12013-07-10 23:41:18 +0100140 /*
141 * The current mapping.
142 * Use dm_get_live_table{_fast} or take suspend_lock for
143 * dereference.
144 */
Pranith Kumar6fa99522014-10-28 15:09:57 -0700145 struct dm_table __rcu *map;
Mikulas Patocka2a7faeb12013-07-10 23:41:18 +0100146
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500147 struct list_head table_devices;
148 struct mutex table_devices_lock;
149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 unsigned long flags;
151
Jens Axboe165125e2007-07-24 09:28:11 +0200152 struct request_queue *queue;
Mike Snitzera5664da2010-08-12 04:14:01 +0100153 unsigned type;
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +0100154 /* Protect queue and type against concurrent access. */
Mike Snitzera5664da2010-08-12 04:14:01 +0100155 struct mutex type_lock;
156
Alasdair G Kergon36a04562011-10-31 20:19:04 +0000157 struct target_type *immutable_target_type;
158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 struct gendisk *disk;
Mike Anderson7e51f252006-03-27 01:17:52 -0800160 char name[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162 void *interface_ptr;
163
164 /*
165 * A list of ios that arrived while we were suspended.
166 */
Nikanth Karthikesan316d3152009-10-06 20:16:55 +0200167 atomic_t pending[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 wait_queue_head_t wait;
Mikulas Patocka53d59142009-04-02 19:55:37 +0100169 struct work_struct work;
Kiyoshi Ueda74859362006-12-08 02:41:02 -0800170 struct bio_list deferred;
Mikulas Patocka022c2612009-04-02 19:55:39 +0100171 spinlock_t deferred_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173 /*
Tejun Heo29e40132010-09-08 18:07:00 +0200174 * Processing queue (flush)
Milan Broz304f3f62008-02-08 02:11:17 +0000175 */
176 struct workqueue_struct *wq;
177
178 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 * io objects are allocated from here.
180 */
181 mempool_t *io_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Stefan Bader9faf4002006-10-03 01:15:41 -0700183 struct bio_set *bs;
184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 /*
186 * Event handling.
187 */
188 atomic_t event_nr;
189 wait_queue_head_t eventq;
Mike Anderson7a8c3d32007-10-19 22:48:01 +0100190 atomic_t uevent_seq;
191 struct list_head uevent_list;
192 spinlock_t uevent_lock; /* Protect access to uevent_list */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194 /*
195 * freeze/thaw support require holding onto a super block
196 */
197 struct super_block *frozen_sb;
Mikulas Patockadb8fef42009-06-22 10:12:15 +0100198 struct block_device *bdev;
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800199
200 /* forced geometry settings */
201 struct hd_geometry geometry;
Milan Broz784aae72009-01-06 03:05:12 +0000202
Mikulas Patocka2995fa72014-01-13 19:37:54 -0500203 /* kobject and completion */
204 struct dm_kobject_holder kobj_holder;
Mikulas Patockabe35f482014-01-06 23:01:22 -0500205
Tejun Heod87f4c12010-09-03 11:56:19 +0200206 /* zero-length flush that will be cloned and submitted to targets */
207 struct bio flush_bio;
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400208
Mikulas Patocka96b26c82015-01-08 18:52:26 -0500209 /* the number of internal suspends */
210 unsigned internal_suspend_count;
211
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400212 struct dm_stats stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213};
214
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +0100215/*
216 * For mempools pre-allocation at the table loading time.
217 */
218struct dm_md_mempools {
219 mempool_t *io_pool;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +0100220 struct bio_set *bs;
221};
222
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500223struct table_device {
224 struct list_head list;
225 atomic_t count;
226 struct dm_dev dm_dev;
227};
228
Mike Snitzer6cfa5852013-09-12 18:06:11 -0400229#define RESERVED_BIO_BASED_IOS 16
230#define RESERVED_REQUEST_BASED_IOS 256
Mike Snitzerf4790822013-09-12 18:06:12 -0400231#define RESERVED_MAX_IOS 1024
Christoph Lametere18b8902006-12-06 20:33:20 -0800232static struct kmem_cache *_io_cache;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000233static struct kmem_cache *_rq_tio_cache;
Kent Overstreet94818742012-09-07 13:44:01 -0700234
Mike Snitzerf4790822013-09-12 18:06:12 -0400235/*
Mike Snitzere8603132013-09-12 18:06:12 -0400236 * Bio-based DM's mempools' reserved IOs set by the user.
237 */
238static unsigned reserved_bio_based_ios = RESERVED_BIO_BASED_IOS;
239
240/*
Mike Snitzerf4790822013-09-12 18:06:12 -0400241 * Request-based DM's mempools' reserved IOs set by the user.
242 */
243static unsigned reserved_rq_based_ios = RESERVED_REQUEST_BASED_IOS;
244
245static unsigned __dm_get_reserved_ios(unsigned *reserved_ios,
246 unsigned def, unsigned max)
247{
248 unsigned ios = ACCESS_ONCE(*reserved_ios);
249 unsigned modified_ios = 0;
250
251 if (!ios)
252 modified_ios = def;
253 else if (ios > max)
254 modified_ios = max;
255
256 if (modified_ios) {
257 (void)cmpxchg(reserved_ios, ios, modified_ios);
258 ios = modified_ios;
259 }
260
261 return ios;
262}
263
Mike Snitzere8603132013-09-12 18:06:12 -0400264unsigned dm_get_reserved_bio_based_ios(void)
265{
266 return __dm_get_reserved_ios(&reserved_bio_based_ios,
267 RESERVED_BIO_BASED_IOS, RESERVED_MAX_IOS);
268}
269EXPORT_SYMBOL_GPL(dm_get_reserved_bio_based_ios);
270
Mike Snitzerf4790822013-09-12 18:06:12 -0400271unsigned dm_get_reserved_rq_based_ios(void)
272{
273 return __dm_get_reserved_ios(&reserved_rq_based_ios,
274 RESERVED_REQUEST_BASED_IOS, RESERVED_MAX_IOS);
275}
276EXPORT_SYMBOL_GPL(dm_get_reserved_rq_based_ios);
277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278static int __init local_init(void)
279{
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100280 int r = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 /* allocate a slab for the dm_ios */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100283 _io_cache = KMEM_CACHE(dm_io, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 if (!_io_cache)
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100285 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000287 _rq_tio_cache = KMEM_CACHE(dm_rq_target_io, 0);
288 if (!_rq_tio_cache)
Mikulas Patockadba14162012-10-12 21:02:15 +0100289 goto out_free_io_cache;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000290
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100291 r = dm_uevent_init();
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100292 if (r)
Jun'ichi Nomura23e50832013-03-01 22:45:48 +0000293 goto out_free_rq_tio_cache;
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100294
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400295 deferred_remove_workqueue = alloc_workqueue("kdmremove", WQ_UNBOUND, 1);
296 if (!deferred_remove_workqueue) {
297 r = -ENOMEM;
298 goto out_uevent_exit;
299 }
300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 _major = major;
302 r = register_blkdev(_major, _name);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100303 if (r < 0)
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400304 goto out_free_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
306 if (!_major)
307 _major = r;
308
309 return 0;
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100310
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400311out_free_workqueue:
312 destroy_workqueue(deferred_remove_workqueue);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100313out_uevent_exit:
314 dm_uevent_exit();
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000315out_free_rq_tio_cache:
316 kmem_cache_destroy(_rq_tio_cache);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100317out_free_io_cache:
318 kmem_cache_destroy(_io_cache);
319
320 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321}
322
323static void local_exit(void)
324{
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400325 flush_scheduled_work();
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400326 destroy_workqueue(deferred_remove_workqueue);
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400327
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000328 kmem_cache_destroy(_rq_tio_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 kmem_cache_destroy(_io_cache);
Akinobu Mita00d59402007-07-17 04:03:46 -0700330 unregister_blkdev(_major, _name);
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100331 dm_uevent_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
333 _major = 0;
334
335 DMINFO("cleaned up");
336}
337
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000338static int (*_inits[])(void) __initdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 local_init,
340 dm_target_init,
341 dm_linear_init,
342 dm_stripe_init,
Mikulas Patocka952b3552009-12-10 23:51:57 +0000343 dm_io_init,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100344 dm_kcopyd_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 dm_interface_init,
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400346 dm_statistics_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347};
348
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000349static void (*_exits[])(void) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 local_exit,
351 dm_target_exit,
352 dm_linear_exit,
353 dm_stripe_exit,
Mikulas Patocka952b3552009-12-10 23:51:57 +0000354 dm_io_exit,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100355 dm_kcopyd_exit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 dm_interface_exit,
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400357 dm_statistics_exit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358};
359
360static int __init dm_init(void)
361{
362 const int count = ARRAY_SIZE(_inits);
363
364 int r, i;
365
366 for (i = 0; i < count; i++) {
367 r = _inits[i]();
368 if (r)
369 goto bad;
370 }
371
372 return 0;
373
374 bad:
375 while (i--)
376 _exits[i]();
377
378 return r;
379}
380
381static void __exit dm_exit(void)
382{
383 int i = ARRAY_SIZE(_exits);
384
385 while (i--)
386 _exits[i]();
Alasdair G Kergond15b7742011-08-02 12:32:01 +0100387
388 /*
389 * Should be empty by this point.
390 */
Alasdair G Kergond15b7742011-08-02 12:32:01 +0100391 idr_destroy(&_minor_idr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392}
393
394/*
395 * Block device functions
396 */
Mike Anderson432a2122009-12-10 23:52:20 +0000397int dm_deleting_md(struct mapped_device *md)
398{
399 return test_bit(DMF_DELETING, &md->flags);
400}
401
Al Virofe5f9f22008-03-02 10:29:31 -0500402static int dm_blk_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403{
404 struct mapped_device *md;
405
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700406 spin_lock(&_minor_lock);
407
Al Virofe5f9f22008-03-02 10:29:31 -0500408 md = bdev->bd_disk->private_data;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700409 if (!md)
410 goto out;
411
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700412 if (test_bit(DMF_FREEING, &md->flags) ||
Mike Anderson432a2122009-12-10 23:52:20 +0000413 dm_deleting_md(md)) {
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700414 md = NULL;
415 goto out;
416 }
417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 dm_get(md);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700419 atomic_inc(&md->open_count);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700420
421out:
422 spin_unlock(&_minor_lock);
423
424 return md ? 0 : -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425}
426
Al Virodb2a1442013-05-05 21:52:57 -0400427static void dm_blk_close(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{
Al Virofe5f9f22008-03-02 10:29:31 -0500429 struct mapped_device *md = disk->private_data;
Arnd Bergmann6e9624b2010-08-07 18:25:34 +0200430
Milan Broz4a1aeb92011-01-13 19:59:48 +0000431 spin_lock(&_minor_lock);
432
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400433 if (atomic_dec_and_test(&md->open_count) &&
434 (test_bit(DMF_DEFERRED_REMOVE, &md->flags)))
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400435 queue_work(deferred_remove_workqueue, &deferred_remove_work);
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400436
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 dm_put(md);
Milan Broz4a1aeb92011-01-13 19:59:48 +0000438
439 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440}
441
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700442int dm_open_count(struct mapped_device *md)
443{
444 return atomic_read(&md->open_count);
445}
446
447/*
448 * Guarantees nothing is using the device before it's deleted.
449 */
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400450int dm_lock_for_deletion(struct mapped_device *md, bool mark_deferred, bool only_deferred)
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700451{
452 int r = 0;
453
454 spin_lock(&_minor_lock);
455
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400456 if (dm_open_count(md)) {
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700457 r = -EBUSY;
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400458 if (mark_deferred)
459 set_bit(DMF_DEFERRED_REMOVE, &md->flags);
460 } else if (only_deferred && !test_bit(DMF_DEFERRED_REMOVE, &md->flags))
461 r = -EEXIST;
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700462 else
463 set_bit(DMF_DELETING, &md->flags);
464
465 spin_unlock(&_minor_lock);
466
467 return r;
468}
469
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400470int dm_cancel_deferred_remove(struct mapped_device *md)
471{
472 int r = 0;
473
474 spin_lock(&_minor_lock);
475
476 if (test_bit(DMF_DELETING, &md->flags))
477 r = -EBUSY;
478 else
479 clear_bit(DMF_DEFERRED_REMOVE, &md->flags);
480
481 spin_unlock(&_minor_lock);
482
483 return r;
484}
485
486static void do_deferred_remove(struct work_struct *w)
487{
488 dm_deferred_remove();
489}
490
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400491sector_t dm_get_size(struct mapped_device *md)
492{
493 return get_capacity(md->disk);
494}
495
Mike Snitzer9974fa22014-02-28 15:33:43 +0100496struct request_queue *dm_get_md_queue(struct mapped_device *md)
497{
498 return md->queue;
499}
500
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400501struct dm_stats *dm_get_stats(struct mapped_device *md)
502{
503 return &md->stats;
504}
505
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800506static int dm_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
507{
508 struct mapped_device *md = bdev->bd_disk->private_data;
509
510 return dm_get_geometry(md, geo);
511}
512
Al Virofe5f9f22008-03-02 10:29:31 -0500513static int dm_blk_ioctl(struct block_device *bdev, fmode_t mode,
Milan Brozaa129a22006-10-03 01:15:15 -0700514 unsigned int cmd, unsigned long arg)
515{
Al Virofe5f9f22008-03-02 10:29:31 -0500516 struct mapped_device *md = bdev->bd_disk->private_data;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100517 int srcu_idx;
Hannes Reinecke6c182cd2013-07-10 23:41:15 +0100518 struct dm_table *map;
Milan Brozaa129a22006-10-03 01:15:15 -0700519 struct dm_target *tgt;
520 int r = -ENOTTY;
521
Hannes Reinecke6c182cd2013-07-10 23:41:15 +0100522retry:
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100523 map = dm_get_live_table(md, &srcu_idx);
524
Milan Brozaa129a22006-10-03 01:15:15 -0700525 if (!map || !dm_table_get_size(map))
526 goto out;
527
528 /* We only support devices that have a single target */
529 if (dm_table_get_num_targets(map) != 1)
530 goto out;
531
532 tgt = dm_table_get_target(map, 0);
Mike Snitzer4d341d82014-11-16 14:21:47 -0500533 if (!tgt->type->ioctl)
534 goto out;
Milan Brozaa129a22006-10-03 01:15:15 -0700535
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +0000536 if (dm_suspended_md(md)) {
Milan Brozaa129a22006-10-03 01:15:15 -0700537 r = -EAGAIN;
538 goto out;
539 }
540
Mike Snitzer4d341d82014-11-16 14:21:47 -0500541 r = tgt->type->ioctl(tgt, cmd, arg);
Milan Brozaa129a22006-10-03 01:15:15 -0700542
543out:
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100544 dm_put_live_table(md, srcu_idx);
Milan Brozaa129a22006-10-03 01:15:15 -0700545
Hannes Reinecke6c182cd2013-07-10 23:41:15 +0100546 if (r == -ENOTCONN) {
547 msleep(10);
548 goto retry;
549 }
550
Milan Brozaa129a22006-10-03 01:15:15 -0700551 return r;
552}
553
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100554static struct dm_io *alloc_io(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555{
556 return mempool_alloc(md->io_pool, GFP_NOIO);
557}
558
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100559static void free_io(struct mapped_device *md, struct dm_io *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560{
561 mempool_free(io, md->io_pool);
562}
563
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100564static void free_tio(struct mapped_device *md, struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565{
Mikulas Patockadba14162012-10-12 21:02:15 +0100566 bio_put(&tio->clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567}
568
Kiyoshi Ueda08885642009-12-10 23:52:15 +0000569static struct dm_rq_target_io *alloc_rq_tio(struct mapped_device *md,
570 gfp_t gfp_mask)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100571{
Jun'ichi Nomura5f015202013-03-01 22:45:48 +0000572 return mempool_alloc(md->io_pool, gfp_mask);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100573}
574
575static void free_rq_tio(struct dm_rq_target_io *tio)
576{
Jun'ichi Nomura5f015202013-03-01 22:45:48 +0000577 mempool_free(tio, tio->md->io_pool);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100578}
579
Kiyoshi Ueda90abb8c2009-12-10 23:52:13 +0000580static int md_in_flight(struct mapped_device *md)
581{
582 return atomic_read(&md->pending[READ]) +
583 atomic_read(&md->pending[WRITE]);
584}
585
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800586static void start_io_acct(struct dm_io *io)
587{
588 struct mapped_device *md = io->md;
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400589 struct bio *bio = io->bio;
Tejun Heoc9959052008-08-25 19:47:21 +0900590 int cpu;
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400591 int rw = bio_data_dir(bio);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800592
593 io->start_time = jiffies;
594
Tejun Heo074a7ac2008-08-25 19:56:14 +0900595 cpu = part_stat_lock();
596 part_round_stats(cpu, &dm_disk(md)->part0);
597 part_stat_unlock();
Shaohua Li1e9bb882011-03-22 08:35:35 +0100598 atomic_set(&dm_disk(md)->part0.in_flight[rw],
599 atomic_inc_return(&md->pending[rw]));
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400600
601 if (unlikely(dm_stats_used(&md->stats)))
Kent Overstreet4f024f32013-10-11 15:44:27 -0700602 dm_stats_account_io(&md->stats, bio->bi_rw, bio->bi_iter.bi_sector,
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400603 bio_sectors(bio), false, 0, &io->stats_aux);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800604}
605
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000606static void end_io_acct(struct dm_io *io)
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800607{
608 struct mapped_device *md = io->md;
609 struct bio *bio = io->bio;
610 unsigned long duration = jiffies - io->start_time;
Gu Zheng18c0b222014-11-24 11:05:26 +0800611 int pending;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800612 int rw = bio_data_dir(bio);
613
Gu Zheng18c0b222014-11-24 11:05:26 +0800614 generic_end_io_acct(rw, &dm_disk(md)->part0, io->start_time);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800615
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400616 if (unlikely(dm_stats_used(&md->stats)))
Kent Overstreet4f024f32013-10-11 15:44:27 -0700617 dm_stats_account_io(&md->stats, bio->bi_rw, bio->bi_iter.bi_sector,
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400618 bio_sectors(bio), true, duration, &io->stats_aux);
619
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100620 /*
621 * After this is decremented the bio must not be touched if it is
Tejun Heod87f4c12010-09-03 11:56:19 +0200622 * a flush.
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100623 */
Shaohua Li1e9bb882011-03-22 08:35:35 +0100624 pending = atomic_dec_return(&md->pending[rw]);
625 atomic_set(&dm_disk(md)->part0.in_flight[rw], pending);
Nikanth Karthikesan316d3152009-10-06 20:16:55 +0200626 pending += atomic_read(&md->pending[rw^0x1]);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800627
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000628 /* nudge anyone waiting on suspend queue */
629 if (!pending)
630 wake_up(&md->wait);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800631}
632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633/*
634 * Add the bio to the list of deferred io.
635 */
Mikulas Patocka92c63902009-04-09 00:27:15 +0100636static void queue_io(struct mapped_device *md, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637{
Kiyoshi Ueda054474202010-09-08 18:07:01 +0200638 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
Kiyoshi Ueda054474202010-09-08 18:07:01 +0200640 spin_lock_irqsave(&md->deferred_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 bio_list_add(&md->deferred, bio);
Kiyoshi Ueda054474202010-09-08 18:07:01 +0200642 spin_unlock_irqrestore(&md->deferred_lock, flags);
Tejun Heo6a8736d2010-09-08 18:07:00 +0200643 queue_work(md->wq, &md->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644}
645
646/*
647 * Everyone (including functions in this file), should use this
648 * function to access the md->map field, and make sure they call
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100649 * dm_put_live_table() when finished.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 */
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100651struct dm_table *dm_get_live_table(struct mapped_device *md, int *srcu_idx) __acquires(md->io_barrier)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652{
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100653 *srcu_idx = srcu_read_lock(&md->io_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100655 return srcu_dereference(md->map, &md->io_barrier);
656}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100658void dm_put_live_table(struct mapped_device *md, int srcu_idx) __releases(md->io_barrier)
659{
660 srcu_read_unlock(&md->io_barrier, srcu_idx);
661}
662
663void dm_sync_table(struct mapped_device *md)
664{
665 synchronize_srcu(&md->io_barrier);
666 synchronize_rcu_expedited();
667}
668
669/*
670 * A fast alternative to dm_get_live_table/dm_put_live_table.
671 * The caller must not block between these two functions.
672 */
673static struct dm_table *dm_get_live_table_fast(struct mapped_device *md) __acquires(RCU)
674{
675 rcu_read_lock();
676 return rcu_dereference(md->map);
677}
678
679static void dm_put_live_table_fast(struct mapped_device *md) __releases(RCU)
680{
681 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682}
683
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800684/*
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500685 * Open a table device so we can use it as a map destination.
686 */
687static int open_table_device(struct table_device *td, dev_t dev,
688 struct mapped_device *md)
689{
690 static char *_claim_ptr = "I belong to device-mapper";
691 struct block_device *bdev;
692
693 int r;
694
695 BUG_ON(td->dm_dev.bdev);
696
697 bdev = blkdev_get_by_dev(dev, td->dm_dev.mode | FMODE_EXCL, _claim_ptr);
698 if (IS_ERR(bdev))
699 return PTR_ERR(bdev);
700
701 r = bd_link_disk_holder(bdev, dm_disk(md));
702 if (r) {
703 blkdev_put(bdev, td->dm_dev.mode | FMODE_EXCL);
704 return r;
705 }
706
707 td->dm_dev.bdev = bdev;
708 return 0;
709}
710
711/*
712 * Close a table device that we've been using.
713 */
714static void close_table_device(struct table_device *td, struct mapped_device *md)
715{
716 if (!td->dm_dev.bdev)
717 return;
718
719 bd_unlink_disk_holder(td->dm_dev.bdev, dm_disk(md));
720 blkdev_put(td->dm_dev.bdev, td->dm_dev.mode | FMODE_EXCL);
721 td->dm_dev.bdev = NULL;
722}
723
724static struct table_device *find_table_device(struct list_head *l, dev_t dev,
725 fmode_t mode) {
726 struct table_device *td;
727
728 list_for_each_entry(td, l, list)
729 if (td->dm_dev.bdev->bd_dev == dev && td->dm_dev.mode == mode)
730 return td;
731
732 return NULL;
733}
734
735int dm_get_table_device(struct mapped_device *md, dev_t dev, fmode_t mode,
736 struct dm_dev **result) {
737 int r;
738 struct table_device *td;
739
740 mutex_lock(&md->table_devices_lock);
741 td = find_table_device(&md->table_devices, dev, mode);
742 if (!td) {
743 td = kmalloc(sizeof(*td), GFP_KERNEL);
744 if (!td) {
745 mutex_unlock(&md->table_devices_lock);
746 return -ENOMEM;
747 }
748
749 td->dm_dev.mode = mode;
750 td->dm_dev.bdev = NULL;
751
752 if ((r = open_table_device(td, dev, md))) {
753 mutex_unlock(&md->table_devices_lock);
754 kfree(td);
755 return r;
756 }
757
758 format_dev_t(td->dm_dev.name, dev);
759
760 atomic_set(&td->count, 0);
761 list_add(&td->list, &md->table_devices);
762 }
763 atomic_inc(&td->count);
764 mutex_unlock(&md->table_devices_lock);
765
766 *result = &td->dm_dev;
767 return 0;
768}
769EXPORT_SYMBOL_GPL(dm_get_table_device);
770
771void dm_put_table_device(struct mapped_device *md, struct dm_dev *d)
772{
773 struct table_device *td = container_of(d, struct table_device, dm_dev);
774
775 mutex_lock(&md->table_devices_lock);
776 if (atomic_dec_and_test(&td->count)) {
777 close_table_device(td, md);
778 list_del(&td->list);
779 kfree(td);
780 }
781 mutex_unlock(&md->table_devices_lock);
782}
783EXPORT_SYMBOL(dm_put_table_device);
784
785static void free_table_devices(struct list_head *devices)
786{
787 struct list_head *tmp, *next;
788
789 list_for_each_safe(tmp, next, devices) {
790 struct table_device *td = list_entry(tmp, struct table_device, list);
791
792 DMWARN("dm_destroy: %s still exists with %d references",
793 td->dm_dev.name, atomic_read(&td->count));
794 kfree(td);
795 }
796}
797
798/*
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800799 * Get the geometry associated with a dm device
800 */
801int dm_get_geometry(struct mapped_device *md, struct hd_geometry *geo)
802{
803 *geo = md->geometry;
804
805 return 0;
806}
807
808/*
809 * Set the geometry of a device.
810 */
811int dm_set_geometry(struct mapped_device *md, struct hd_geometry *geo)
812{
813 sector_t sz = (sector_t)geo->cylinders * geo->heads * geo->sectors;
814
815 if (geo->start > sz) {
816 DMWARN("Start sector is beyond the geometry limits.");
817 return -EINVAL;
818 }
819
820 md->geometry = *geo;
821
822 return 0;
823}
824
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825/*-----------------------------------------------------------------
826 * CRUD START:
827 * A more elegant soln is in the works that uses the queue
828 * merge fn, unfortunately there are a couple of changes to
829 * the block layer that I want to make for this. So in the
830 * interests of getting something for people to use I give
831 * you this clearly demarcated crap.
832 *---------------------------------------------------------------*/
833
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800834static int __noflush_suspending(struct mapped_device *md)
835{
836 return test_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
837}
838
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839/*
840 * Decrements the number of outstanding ios that a bio has been
841 * cloned into, completing the original io if necc.
842 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800843static void dec_pending(struct dm_io *io, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844{
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800845 unsigned long flags;
Milan Brozb35f8ca2009-03-16 17:44:36 +0000846 int io_error;
847 struct bio *bio;
848 struct mapped_device *md = io->md;
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800849
850 /* Push-back supersedes any I/O errors */
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +0100851 if (unlikely(error)) {
852 spin_lock_irqsave(&io->endio_lock, flags);
853 if (!(io->error > 0 && __noflush_suspending(md)))
854 io->error = error;
855 spin_unlock_irqrestore(&io->endio_lock, flags);
856 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
858 if (atomic_dec_and_test(&io->io_count)) {
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800859 if (io->error == DM_ENDIO_REQUEUE) {
860 /*
861 * Target requested pushing back the I/O.
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800862 */
Mikulas Patocka022c2612009-04-02 19:55:39 +0100863 spin_lock_irqsave(&md->deferred_lock, flags);
Tejun Heo6a8736d2010-09-08 18:07:00 +0200864 if (__noflush_suspending(md))
865 bio_list_add_head(&md->deferred, io->bio);
866 else
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800867 /* noflush suspend was interrupted. */
868 io->error = -EIO;
Mikulas Patocka022c2612009-04-02 19:55:39 +0100869 spin_unlock_irqrestore(&md->deferred_lock, flags);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800870 }
871
Milan Brozb35f8ca2009-03-16 17:44:36 +0000872 io_error = io->error;
873 bio = io->bio;
Tejun Heo6a8736d2010-09-08 18:07:00 +0200874 end_io_acct(io);
875 free_io(md, io);
Jens Axboe2056a782006-03-23 20:00:26 +0100876
Tejun Heo6a8736d2010-09-08 18:07:00 +0200877 if (io_error == DM_ENDIO_REQUEUE)
878 return;
879
Kent Overstreet4f024f32013-10-11 15:44:27 -0700880 if ((bio->bi_rw & REQ_FLUSH) && bio->bi_iter.bi_size) {
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100881 /*
Tejun Heo6a8736d2010-09-08 18:07:00 +0200882 * Preflush done for flush with data, reissue
883 * without REQ_FLUSH.
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100884 */
Tejun Heo6a8736d2010-09-08 18:07:00 +0200885 bio->bi_rw &= ~REQ_FLUSH;
886 queue_io(md, bio);
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100887 } else {
Mike Snitzerb372d362010-09-08 18:07:01 +0200888 /* done with normal IO or empty flush */
Linus Torvalds0a82a8d2013-04-18 09:00:26 -0700889 trace_block_bio_complete(md->queue, bio, io_error);
Mike Snitzerb372d362010-09-08 18:07:01 +0200890 bio_endio(bio, io_error);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800891 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 }
893}
894
Mike Snitzer7eee4ae2014-06-02 15:50:06 -0400895static void disable_write_same(struct mapped_device *md)
896{
897 struct queue_limits *limits = dm_get_queue_limits(md);
898
899 /* device doesn't really support WRITE SAME, disable it */
900 limits->max_write_same_sectors = 0;
901}
902
NeilBrown6712ecf2007-09-27 12:47:43 +0200903static void clone_endio(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904{
zhendong chen5164bec2014-12-17 14:37:04 +0800905 int r = error;
Mikulas Patockabfc6d412014-03-04 18:24:49 -0500906 struct dm_target_io *tio = container_of(bio, struct dm_target_io, clone);
Milan Brozb35f8ca2009-03-16 17:44:36 +0000907 struct dm_io *io = tio->io;
Stefan Bader9faf4002006-10-03 01:15:41 -0700908 struct mapped_device *md = tio->io->md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 dm_endio_fn endio = tio->ti->type->end_io;
910
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 if (!bio_flagged(bio, BIO_UPTODATE) && !error)
912 error = -EIO;
913
914 if (endio) {
Mikulas Patocka7de3ee52012-12-21 20:23:41 +0000915 r = endio(tio->ti, bio, error);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800916 if (r < 0 || r == DM_ENDIO_REQUEUE)
917 /*
918 * error and requeue request are handled
919 * in dec_pending().
920 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 error = r;
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800922 else if (r == DM_ENDIO_INCOMPLETE)
923 /* The target will handle the io */
NeilBrown6712ecf2007-09-27 12:47:43 +0200924 return;
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800925 else if (r) {
926 DMWARN("unimplemented target endio return value: %d", r);
927 BUG();
928 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 }
930
Mike Snitzer7eee4ae2014-06-02 15:50:06 -0400931 if (unlikely(r == -EREMOTEIO && (bio->bi_rw & REQ_WRITE_SAME) &&
932 !bdev_get_queue(bio->bi_bdev)->limits.max_write_same_sectors))
933 disable_write_same(md);
934
Stefan Bader9faf4002006-10-03 01:15:41 -0700935 free_tio(md, tio);
Milan Brozb35f8ca2009-03-16 17:44:36 +0000936 dec_pending(io, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937}
938
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100939/*
940 * Partial completion handling for request-based dm
941 */
942static void end_clone_bio(struct bio *clone, int error)
943{
Mikulas Patockabfc6d412014-03-04 18:24:49 -0500944 struct dm_rq_clone_bio_info *info =
945 container_of(clone, struct dm_rq_clone_bio_info, clone);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100946 struct dm_rq_target_io *tio = info->tio;
947 struct bio *bio = info->orig;
Kent Overstreet4f024f32013-10-11 15:44:27 -0700948 unsigned int nr_bytes = info->orig->bi_iter.bi_size;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100949
950 bio_put(clone);
951
952 if (tio->error)
953 /*
954 * An error has already been detected on the request.
955 * Once error occurred, just let clone->end_io() handle
956 * the remainder.
957 */
958 return;
959 else if (error) {
960 /*
961 * Don't notice the error to the upper layer yet.
962 * The error handling decision is made by the target driver,
963 * when the request is completed.
964 */
965 tio->error = error;
966 return;
967 }
968
969 /*
970 * I/O for the bio successfully completed.
971 * Notice the data completion to the upper layer.
972 */
973
974 /*
975 * bios are processed from the head of the list.
976 * So the completing bio should always be rq->bio.
977 * If it's not, something wrong is happening.
978 */
979 if (tio->orig->bio != bio)
980 DMERR("bio completion is going in the middle of the request");
981
982 /*
983 * Update the original request.
984 * Do not use blk_end_request() here, because it may complete
985 * the original request before the clone, and break the ordering.
986 */
987 blk_update_request(tio->orig, 0, nr_bytes);
988}
989
990/*
991 * Don't touch any member of the md after calling this function because
992 * the md may be freed in dm_put() at the end of this function.
993 * Or do dm_get() before calling this function and dm_put() later.
994 */
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +0000995static void rq_completed(struct mapped_device *md, int rw, int run_queue)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100996{
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +0000997 atomic_dec(&md->pending[rw]);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100998
999 /* nudge anyone waiting on suspend queue */
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00001000 if (!md_in_flight(md))
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001001 wake_up(&md->wait);
1002
Jens Axboea8c32a52012-11-06 12:24:26 +01001003 /*
1004 * Run this off this callpath, as drivers could invoke end_io while
1005 * inside their request_fn (and holding the queue lock). Calling
1006 * back into ->request_fn() could deadlock attempting to grab the
1007 * queue lock again.
1008 */
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001009 if (run_queue)
Jens Axboea8c32a52012-11-06 12:24:26 +01001010 blk_run_queue_async(md->queue);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001011
1012 /*
1013 * dm_put() must be at the end of this function. See the comment above
1014 */
1015 dm_put(md);
1016}
1017
Kiyoshi Uedaa77e28c2009-09-04 20:40:16 +01001018static void free_rq_clone(struct request *clone)
1019{
1020 struct dm_rq_target_io *tio = clone->end_io_data;
1021
1022 blk_rq_unprep_clone(clone);
1023 free_rq_tio(tio);
1024}
1025
Kiyoshi Ueda980691e2009-12-10 23:52:17 +00001026/*
1027 * Complete the clone and the original request.
1028 * Must be called without queue lock.
1029 */
1030static void dm_end_request(struct request *clone, int error)
1031{
1032 int rw = rq_data_dir(clone);
1033 struct dm_rq_target_io *tio = clone->end_io_data;
1034 struct mapped_device *md = tio->md;
1035 struct request *rq = tio->orig;
1036
Tejun Heo29e40132010-09-08 18:07:00 +02001037 if (rq->cmd_type == REQ_TYPE_BLOCK_PC) {
Kiyoshi Ueda980691e2009-12-10 23:52:17 +00001038 rq->errors = clone->errors;
1039 rq->resid_len = clone->resid_len;
1040
1041 if (rq->sense)
1042 /*
1043 * We are using the sense buffer of the original
1044 * request.
1045 * So setting the length of the sense data is enough.
1046 */
1047 rq->sense_len = clone->sense_len;
1048 }
1049
1050 free_rq_clone(clone);
Tejun Heo29e40132010-09-08 18:07:00 +02001051 blk_end_request_all(rq, error);
1052 rq_completed(md, rw, true);
Kiyoshi Ueda980691e2009-12-10 23:52:17 +00001053}
1054
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001055static void dm_unprep_request(struct request *rq)
1056{
1057 struct request *clone = rq->special;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001058
1059 rq->special = NULL;
1060 rq->cmd_flags &= ~REQ_DONTPREP;
1061
Kiyoshi Uedaa77e28c2009-09-04 20:40:16 +01001062 free_rq_clone(clone);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001063}
1064
1065/*
1066 * Requeue the original request of a clone.
1067 */
1068void dm_requeue_unmapped_request(struct request *clone)
1069{
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00001070 int rw = rq_data_dir(clone);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001071 struct dm_rq_target_io *tio = clone->end_io_data;
1072 struct mapped_device *md = tio->md;
1073 struct request *rq = tio->orig;
1074 struct request_queue *q = rq->q;
1075 unsigned long flags;
1076
1077 dm_unprep_request(rq);
1078
1079 spin_lock_irqsave(q->queue_lock, flags);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001080 blk_requeue_request(q, rq);
1081 spin_unlock_irqrestore(q->queue_lock, flags);
1082
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00001083 rq_completed(md, rw, 0);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001084}
1085EXPORT_SYMBOL_GPL(dm_requeue_unmapped_request);
1086
1087static void __stop_queue(struct request_queue *q)
1088{
1089 blk_stop_queue(q);
1090}
1091
1092static void stop_queue(struct request_queue *q)
1093{
1094 unsigned long flags;
1095
1096 spin_lock_irqsave(q->queue_lock, flags);
1097 __stop_queue(q);
1098 spin_unlock_irqrestore(q->queue_lock, flags);
1099}
1100
1101static void __start_queue(struct request_queue *q)
1102{
1103 if (blk_queue_stopped(q))
1104 blk_start_queue(q);
1105}
1106
1107static void start_queue(struct request_queue *q)
1108{
1109 unsigned long flags;
1110
1111 spin_lock_irqsave(q->queue_lock, flags);
1112 __start_queue(q);
1113 spin_unlock_irqrestore(q->queue_lock, flags);
1114}
1115
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001116static void dm_done(struct request *clone, int error, bool mapped)
1117{
1118 int r = error;
1119 struct dm_rq_target_io *tio = clone->end_io_data;
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001120 dm_request_endio_fn rq_end_io = NULL;
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001121
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001122 if (tio->ti) {
1123 rq_end_io = tio->ti->type->rq_end_io;
1124
1125 if (mapped && rq_end_io)
1126 r = rq_end_io(tio->ti, clone, error, &tio->info);
1127 }
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001128
Mike Snitzer7eee4ae2014-06-02 15:50:06 -04001129 if (unlikely(r == -EREMOTEIO && (clone->cmd_flags & REQ_WRITE_SAME) &&
1130 !clone->q->limits.max_write_same_sectors))
1131 disable_write_same(tio->md);
1132
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001133 if (r <= 0)
1134 /* The target wants to complete the I/O */
1135 dm_end_request(clone, r);
1136 else if (r == DM_ENDIO_INCOMPLETE)
1137 /* The target will handle the I/O */
1138 return;
1139 else if (r == DM_ENDIO_REQUEUE)
1140 /* The target wants to requeue the I/O */
1141 dm_requeue_unmapped_request(clone);
1142 else {
1143 DMWARN("unimplemented target endio return value: %d", r);
1144 BUG();
1145 }
1146}
1147
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001148/*
1149 * Request completion handler for request-based dm
1150 */
1151static void dm_softirq_done(struct request *rq)
1152{
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001153 bool mapped = true;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001154 struct request *clone = rq->completion_data;
1155 struct dm_rq_target_io *tio = clone->end_io_data;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001156
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001157 if (rq->cmd_flags & REQ_FAILED)
1158 mapped = false;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001159
Kiyoshi Ueda11a68242009-12-10 23:52:17 +00001160 dm_done(clone, tio->error, mapped);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001161}
1162
1163/*
1164 * Complete the clone and the original request with the error status
1165 * through softirq context.
1166 */
1167static void dm_complete_request(struct request *clone, int error)
1168{
1169 struct dm_rq_target_io *tio = clone->end_io_data;
1170 struct request *rq = tio->orig;
1171
1172 tio->error = error;
1173 rq->completion_data = clone;
1174 blk_complete_request(rq);
1175}
1176
1177/*
1178 * Complete the not-mapped clone and the original request with the error status
1179 * through softirq context.
1180 * Target's rq_end_io() function isn't called.
1181 * This may be used when the target's map_rq() function fails.
1182 */
1183void dm_kill_unmapped_request(struct request *clone, int error)
1184{
1185 struct dm_rq_target_io *tio = clone->end_io_data;
1186 struct request *rq = tio->orig;
1187
1188 rq->cmd_flags |= REQ_FAILED;
1189 dm_complete_request(clone, error);
1190}
1191EXPORT_SYMBOL_GPL(dm_kill_unmapped_request);
1192
1193/*
1194 * Called with the queue lock held
1195 */
1196static void end_clone_request(struct request *clone, int error)
1197{
1198 /*
1199 * For just cleaning up the information of the queue in which
1200 * the clone was dispatched.
1201 * The clone is *NOT* freed actually here because it is alloced from
1202 * dm own mempool and REQ_ALLOCED isn't set in clone->cmd_flags.
1203 */
1204 __blk_put_request(clone->q, clone);
1205
1206 /*
1207 * Actual request completion is done in a softirq context which doesn't
1208 * hold the queue lock. Otherwise, deadlock could occur because:
1209 * - another request may be submitted by the upper level driver
1210 * of the stacking during the completion
1211 * - the submission which requires queue lock may be done
1212 * against this queue
1213 */
1214 dm_complete_request(clone, error);
1215}
1216
Mike Snitzer56a67df2010-08-12 04:14:10 +01001217/*
1218 * Return maximum size of I/O possible at the supplied sector up to the current
1219 * target boundary.
1220 */
1221static sector_t max_io_len_target_boundary(sector_t sector, struct dm_target *ti)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222{
Mike Snitzer56a67df2010-08-12 04:14:10 +01001223 sector_t target_offset = dm_target_offset(ti, sector);
1224
1225 return ti->len - target_offset;
1226}
1227
1228static sector_t max_io_len(sector_t sector, struct dm_target *ti)
1229{
1230 sector_t len = max_io_len_target_boundary(sector, ti);
Mike Snitzer542f9032012-07-27 15:08:00 +01001231 sector_t offset, max_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
1233 /*
Mike Snitzer542f9032012-07-27 15:08:00 +01001234 * Does the target need to split even further?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 */
Mike Snitzer542f9032012-07-27 15:08:00 +01001236 if (ti->max_io_len) {
1237 offset = dm_target_offset(ti, sector);
1238 if (unlikely(ti->max_io_len & (ti->max_io_len - 1)))
1239 max_len = sector_div(offset, ti->max_io_len);
1240 else
1241 max_len = offset & (ti->max_io_len - 1);
1242 max_len = ti->max_io_len - max_len;
1243
1244 if (len > max_len)
1245 len = max_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 }
1247
1248 return len;
1249}
1250
Mike Snitzer542f9032012-07-27 15:08:00 +01001251int dm_set_target_max_io_len(struct dm_target *ti, sector_t len)
1252{
1253 if (len > UINT_MAX) {
1254 DMERR("Specified maximum size of target IO (%llu) exceeds limit (%u)",
1255 (unsigned long long)len, UINT_MAX);
1256 ti->error = "Maximum size of target IO is too large";
1257 return -EINVAL;
1258 }
1259
1260 ti->max_io_len = (uint32_t) len;
1261
1262 return 0;
1263}
1264EXPORT_SYMBOL_GPL(dm_set_target_max_io_len);
1265
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001266/*
1267 * A target may call dm_accept_partial_bio only from the map routine. It is
1268 * allowed for all bio types except REQ_FLUSH.
1269 *
1270 * dm_accept_partial_bio informs the dm that the target only wants to process
1271 * additional n_sectors sectors of the bio and the rest of the data should be
1272 * sent in a next bio.
1273 *
1274 * A diagram that explains the arithmetics:
1275 * +--------------------+---------------+-------+
1276 * | 1 | 2 | 3 |
1277 * +--------------------+---------------+-------+
1278 *
1279 * <-------------- *tio->len_ptr --------------->
1280 * <------- bi_size ------->
1281 * <-- n_sectors -->
1282 *
1283 * Region 1 was already iterated over with bio_advance or similar function.
1284 * (it may be empty if the target doesn't use bio_advance)
1285 * Region 2 is the remaining bio size that the target wants to process.
1286 * (it may be empty if region 1 is non-empty, although there is no reason
1287 * to make it empty)
1288 * The target requires that region 3 is to be sent in the next bio.
1289 *
1290 * If the target wants to receive multiple copies of the bio (via num_*bios, etc),
1291 * the partially processed part (the sum of regions 1+2) must be the same for all
1292 * copies of the bio.
1293 */
1294void dm_accept_partial_bio(struct bio *bio, unsigned n_sectors)
1295{
1296 struct dm_target_io *tio = container_of(bio, struct dm_target_io, clone);
1297 unsigned bi_size = bio->bi_iter.bi_size >> SECTOR_SHIFT;
1298 BUG_ON(bio->bi_rw & REQ_FLUSH);
1299 BUG_ON(bi_size > *tio->len_ptr);
1300 BUG_ON(n_sectors > bi_size);
1301 *tio->len_ptr -= bi_size - n_sectors;
1302 bio->bi_iter.bi_size = n_sectors << SECTOR_SHIFT;
1303}
1304EXPORT_SYMBOL_GPL(dm_accept_partial_bio);
1305
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001306static void __map_bio(struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307{
1308 int r;
Jens Axboe2056a782006-03-23 20:00:26 +01001309 sector_t sector;
Stefan Bader9faf4002006-10-03 01:15:41 -07001310 struct mapped_device *md;
Mikulas Patockadba14162012-10-12 21:02:15 +01001311 struct bio *clone = &tio->clone;
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001312 struct dm_target *ti = tio->ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 clone->bi_end_io = clone_endio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
1316 /*
1317 * Map the clone. If r == 0 we don't need to do
1318 * anything, the target has assumed ownership of
1319 * this io.
1320 */
1321 atomic_inc(&tio->io->io_count);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001322 sector = clone->bi_iter.bi_sector;
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00001323 r = ti->type->map(ti, clone);
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -08001324 if (r == DM_MAPIO_REMAPPED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 /* the bio has been remapped so dispatch it */
Jens Axboe2056a782006-03-23 20:00:26 +01001326
Mike Snitzerd07335e2010-11-16 12:52:38 +01001327 trace_block_bio_remap(bdev_get_queue(clone->bi_bdev), clone,
1328 tio->io->bio->bi_bdev->bd_dev, sector);
Jens Axboe2056a782006-03-23 20:00:26 +01001329
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 generic_make_request(clone);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001331 } else if (r < 0 || r == DM_MAPIO_REQUEUE) {
1332 /* error the io and bail out, or requeue it if needed */
Stefan Bader9faf4002006-10-03 01:15:41 -07001333 md = tio->io->md;
1334 dec_pending(tio->io, r);
Stefan Bader9faf4002006-10-03 01:15:41 -07001335 free_tio(md, tio);
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -08001336 } else if (r) {
1337 DMWARN("unimplemented target map return value: %d", r);
1338 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 }
1340}
1341
1342struct clone_info {
1343 struct mapped_device *md;
1344 struct dm_table *map;
1345 struct bio *bio;
1346 struct dm_io *io;
1347 sector_t sector;
Mikulas Patockae0d66092014-03-14 18:40:39 -04001348 unsigned sector_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349};
1350
Mikulas Patockae0d66092014-03-14 18:40:39 -04001351static void bio_setup_sector(struct bio *bio, sector_t sector, unsigned len)
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001352{
Kent Overstreet4f024f32013-10-11 15:44:27 -07001353 bio->bi_iter.bi_sector = sector;
1354 bio->bi_iter.bi_size = to_bytes(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355}
1356
1357/*
1358 * Creates a bio that consists of range of complete bvecs.
1359 */
Mikulas Patockadba14162012-10-12 21:02:15 +01001360static void clone_bio(struct dm_target_io *tio, struct bio *bio,
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001361 sector_t sector, unsigned len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362{
Mikulas Patockadba14162012-10-12 21:02:15 +01001363 struct bio *clone = &tio->clone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001365 __bio_clone_fast(clone, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001367 if (bio_integrity(bio))
1368 bio_integrity_clone(clone, bio, GFP_NOIO);
1369
1370 bio_advance(clone, to_bytes(sector - clone->bi_iter.bi_sector));
1371 clone->bi_iter.bi_size = to_bytes(len);
1372
1373 if (bio_integrity(bio))
1374 bio_integrity_trim(clone, 0, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375}
1376
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001377static struct dm_target_io *alloc_tio(struct clone_info *ci,
Junichi Nomura99778272014-10-03 11:55:16 +00001378 struct dm_target *ti,
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001379 unsigned target_bio_nr)
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001380{
Mikulas Patockadba14162012-10-12 21:02:15 +01001381 struct dm_target_io *tio;
1382 struct bio *clone;
1383
Junichi Nomura99778272014-10-03 11:55:16 +00001384 clone = bio_alloc_bioset(GFP_NOIO, 0, ci->md->bs);
Mikulas Patockadba14162012-10-12 21:02:15 +01001385 tio = container_of(clone, struct dm_target_io, clone);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001386
1387 tio->io = ci->io;
1388 tio->ti = ti;
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001389 tio->target_bio_nr = target_bio_nr;
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001390
1391 return tio;
1392}
1393
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001394static void __clone_and_map_simple_bio(struct clone_info *ci,
1395 struct dm_target *ti,
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001396 unsigned target_bio_nr, unsigned *len)
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001397{
Junichi Nomura99778272014-10-03 11:55:16 +00001398 struct dm_target_io *tio = alloc_tio(ci, ti, target_bio_nr);
Mikulas Patockadba14162012-10-12 21:02:15 +01001399 struct bio *clone = &tio->clone;
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001400
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001401 tio->len_ptr = len;
1402
Junichi Nomura99778272014-10-03 11:55:16 +00001403 __bio_clone_fast(clone, ci->bio);
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001404 if (len)
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001405 bio_setup_sector(clone, ci->sector, *len);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001406
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001407 __map_bio(tio);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001408}
1409
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001410static void __send_duplicate_bios(struct clone_info *ci, struct dm_target *ti,
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001411 unsigned num_bios, unsigned *len)
Mike Snitzer06a426c2010-08-12 04:14:09 +01001412{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001413 unsigned target_bio_nr;
Mike Snitzer06a426c2010-08-12 04:14:09 +01001414
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001415 for (target_bio_nr = 0; target_bio_nr < num_bios; target_bio_nr++)
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001416 __clone_and_map_simple_bio(ci, ti, target_bio_nr, len);
Mike Snitzer06a426c2010-08-12 04:14:09 +01001417}
1418
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001419static int __send_empty_flush(struct clone_info *ci)
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001420{
Mike Snitzer06a426c2010-08-12 04:14:09 +01001421 unsigned target_nr = 0;
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001422 struct dm_target *ti;
1423
Mike Snitzerb372d362010-09-08 18:07:01 +02001424 BUG_ON(bio_has_data(ci->bio));
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001425 while ((ti = dm_table_get_target(ci->map, target_nr++)))
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001426 __send_duplicate_bios(ci, ti, ti->num_flush_bios, NULL);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001427
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001428 return 0;
1429}
1430
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001431static void __clone_and_map_data_bio(struct clone_info *ci, struct dm_target *ti,
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001432 sector_t sector, unsigned *len)
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001433{
Mikulas Patockadba14162012-10-12 21:02:15 +01001434 struct bio *bio = ci->bio;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001435 struct dm_target_io *tio;
Alasdair G Kergonb0d8ed42013-03-01 22:45:49 +00001436 unsigned target_bio_nr;
1437 unsigned num_target_bios = 1;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001438
Alasdair G Kergonb0d8ed42013-03-01 22:45:49 +00001439 /*
1440 * Does the target want to receive duplicate copies of the bio?
1441 */
1442 if (bio_data_dir(bio) == WRITE && ti->num_write_bios)
1443 num_target_bios = ti->num_write_bios(ti, bio);
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001444
Alasdair G Kergonb0d8ed42013-03-01 22:45:49 +00001445 for (target_bio_nr = 0; target_bio_nr < num_target_bios; target_bio_nr++) {
Junichi Nomura99778272014-10-03 11:55:16 +00001446 tio = alloc_tio(ci, ti, target_bio_nr);
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001447 tio->len_ptr = len;
1448 clone_bio(tio, bio, sector, *len);
Alasdair G Kergonb0d8ed42013-03-01 22:45:49 +00001449 __map_bio(tio);
1450 }
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001451}
1452
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001453typedef unsigned (*get_num_bios_fn)(struct dm_target *ti);
Mike Snitzer23508a92012-12-21 20:23:37 +00001454
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001455static unsigned get_num_discard_bios(struct dm_target *ti)
Mike Snitzer23508a92012-12-21 20:23:37 +00001456{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001457 return ti->num_discard_bios;
Mike Snitzer23508a92012-12-21 20:23:37 +00001458}
1459
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001460static unsigned get_num_write_same_bios(struct dm_target *ti)
Mike Snitzer23508a92012-12-21 20:23:37 +00001461{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001462 return ti->num_write_same_bios;
Mike Snitzer23508a92012-12-21 20:23:37 +00001463}
1464
1465typedef bool (*is_split_required_fn)(struct dm_target *ti);
1466
1467static bool is_split_required_for_discard(struct dm_target *ti)
1468{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001469 return ti->split_discard_bios;
Mike Snitzer23508a92012-12-21 20:23:37 +00001470}
1471
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001472static int __send_changing_extent_only(struct clone_info *ci,
1473 get_num_bios_fn get_num_bios,
1474 is_split_required_fn is_split_required)
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001475{
1476 struct dm_target *ti;
Mikulas Patockae0d66092014-03-14 18:40:39 -04001477 unsigned len;
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001478 unsigned num_bios;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001479
Mike Snitzera79245b2010-08-12 04:14:24 +01001480 do {
1481 ti = dm_table_find_target(ci->map, ci->sector);
1482 if (!dm_target_is_valid(ti))
1483 return -EIO;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001484
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001485 /*
Mike Snitzer23508a92012-12-21 20:23:37 +00001486 * Even though the device advertised support for this type of
1487 * request, that does not mean every target supports it, and
Mike Snitzer936688d2011-08-02 12:32:01 +01001488 * reconfiguration might also have changed that since the
Mike Snitzera79245b2010-08-12 04:14:24 +01001489 * check was performed.
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001490 */
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001491 num_bios = get_num_bios ? get_num_bios(ti) : 0;
1492 if (!num_bios)
Mike Snitzera79245b2010-08-12 04:14:24 +01001493 return -EOPNOTSUPP;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001494
Mike Snitzer23508a92012-12-21 20:23:37 +00001495 if (is_split_required && !is_split_required(ti))
Mikulas Patockae0d66092014-03-14 18:40:39 -04001496 len = min((sector_t)ci->sector_count, max_io_len_target_boundary(ci->sector, ti));
Mikulas Patocka7acf0272012-07-27 15:08:03 +01001497 else
Mikulas Patockae0d66092014-03-14 18:40:39 -04001498 len = min((sector_t)ci->sector_count, max_io_len(ci->sector, ti));
Mike Snitzer06a426c2010-08-12 04:14:09 +01001499
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001500 __send_duplicate_bios(ci, ti, num_bios, &len);
Mike Snitzera79245b2010-08-12 04:14:24 +01001501
1502 ci->sector += len;
1503 } while (ci->sector_count -= len);
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001504
1505 return 0;
1506}
1507
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001508static int __send_discard(struct clone_info *ci)
Mike Snitzer23508a92012-12-21 20:23:37 +00001509{
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001510 return __send_changing_extent_only(ci, get_num_discard_bios,
1511 is_split_required_for_discard);
Mike Snitzer23508a92012-12-21 20:23:37 +00001512}
1513
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001514static int __send_write_same(struct clone_info *ci)
Mike Snitzer23508a92012-12-21 20:23:37 +00001515{
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001516 return __send_changing_extent_only(ci, get_num_write_same_bios, NULL);
Mike Snitzer23508a92012-12-21 20:23:37 +00001517}
1518
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001519/*
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001520 * Select the correct strategy for processing a non-flush bio.
1521 */
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001522static int __split_and_process_non_flush(struct clone_info *ci)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523{
Mikulas Patockadba14162012-10-12 21:02:15 +01001524 struct bio *bio = ci->bio;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001525 struct dm_target *ti;
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001526 unsigned len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001528 if (unlikely(bio->bi_rw & REQ_DISCARD))
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001529 return __send_discard(ci);
Mike Snitzer23508a92012-12-21 20:23:37 +00001530 else if (unlikely(bio->bi_rw & REQ_WRITE_SAME))
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001531 return __send_write_same(ci);
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001532
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001533 ti = dm_table_find_target(ci->map, ci->sector);
1534 if (!dm_target_is_valid(ti))
1535 return -EIO;
1536
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001537 len = min_t(sector_t, max_io_len(ci->sector, ti), ci->sector_count);
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001538
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001539 __clone_and_map_data_bio(ci, ti, ci->sector, &len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001541 ci->sector += len;
1542 ci->sector_count -= len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001544 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545}
1546
1547/*
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001548 * Entry point to split a bio into clones and submit them to the targets.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 */
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001550static void __split_and_process_bio(struct mapped_device *md,
1551 struct dm_table *map, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552{
1553 struct clone_info ci;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001554 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001556 if (unlikely(!map)) {
Tejun Heo6a8736d2010-09-08 18:07:00 +02001557 bio_io_error(bio);
Mikulas Patockaf0b9a452009-04-02 19:55:38 +01001558 return;
1559 }
Mikulas Patocka692d0eb2009-04-09 00:27:13 +01001560
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001561 ci.map = map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 ci.md = md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 ci.io = alloc_io(md);
1564 ci.io->error = 0;
1565 atomic_set(&ci.io->io_count, 1);
1566 ci.io->bio = bio;
1567 ci.io->md = md;
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +01001568 spin_lock_init(&ci.io->endio_lock);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001569 ci.sector = bio->bi_iter.bi_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -08001571 start_io_acct(ci.io);
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001572
Mike Snitzerb372d362010-09-08 18:07:01 +02001573 if (bio->bi_rw & REQ_FLUSH) {
1574 ci.bio = &ci.md->flush_bio;
1575 ci.sector_count = 0;
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001576 error = __send_empty_flush(&ci);
Mike Snitzerb372d362010-09-08 18:07:01 +02001577 /* dec_pending submits any data associated with flush */
1578 } else {
Tejun Heo6a8736d2010-09-08 18:07:00 +02001579 ci.bio = bio;
Tejun Heod87f4c12010-09-03 11:56:19 +02001580 ci.sector_count = bio_sectors(bio);
Mike Snitzerb372d362010-09-08 18:07:01 +02001581 while (ci.sector_count && !error)
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001582 error = __split_and_process_non_flush(&ci);
Tejun Heod87f4c12010-09-03 11:56:19 +02001583 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584
1585 /* drop the extra reference count */
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001586 dec_pending(ci.io, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587}
1588/*-----------------------------------------------------------------
1589 * CRUD END
1590 *---------------------------------------------------------------*/
1591
Milan Brozf6fccb12008-07-21 12:00:37 +01001592static int dm_merge_bvec(struct request_queue *q,
1593 struct bvec_merge_data *bvm,
1594 struct bio_vec *biovec)
1595{
1596 struct mapped_device *md = q->queuedata;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001597 struct dm_table *map = dm_get_live_table_fast(md);
Milan Brozf6fccb12008-07-21 12:00:37 +01001598 struct dm_target *ti;
1599 sector_t max_sectors;
Mikulas Patocka50371082008-10-01 14:39:17 +01001600 int max_size = 0;
Milan Brozf6fccb12008-07-21 12:00:37 +01001601
1602 if (unlikely(!map))
Mikulas Patocka50371082008-10-01 14:39:17 +01001603 goto out;
Milan Brozf6fccb12008-07-21 12:00:37 +01001604
1605 ti = dm_table_find_target(map, bvm->bi_sector);
Mikulas Patockab01cd5a2008-10-01 14:39:24 +01001606 if (!dm_target_is_valid(ti))
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001607 goto out;
Milan Brozf6fccb12008-07-21 12:00:37 +01001608
1609 /*
1610 * Find maximum amount of I/O that won't need splitting
1611 */
Mike Snitzer56a67df2010-08-12 04:14:10 +01001612 max_sectors = min(max_io_len(bvm->bi_sector, ti),
Mike Snitzer148e51b2014-10-09 19:32:22 -04001613 (sector_t) queue_max_sectors(q));
Milan Brozf6fccb12008-07-21 12:00:37 +01001614 max_size = (max_sectors << SECTOR_SHIFT) - bvm->bi_size;
Mike Snitzer148e51b2014-10-09 19:32:22 -04001615 if (unlikely(max_size < 0)) /* this shouldn't _ever_ happen */
Milan Brozf6fccb12008-07-21 12:00:37 +01001616 max_size = 0;
1617
1618 /*
1619 * merge_bvec_fn() returns number of bytes
1620 * it can accept at this offset
1621 * max is precomputed maximal io size
1622 */
1623 if (max_size && ti->type->merge)
1624 max_size = ti->type->merge(ti, bvm, biovec, max_size);
Mikulas Patocka8cbeb672009-06-22 10:12:14 +01001625 /*
1626 * If the target doesn't support merge method and some of the devices
Mike Snitzer148e51b2014-10-09 19:32:22 -04001627 * provided their merge_bvec method (we know this by looking for the
1628 * max_hw_sectors that dm_set_device_limits may set), then we can't
1629 * allow bios with multiple vector entries. So always set max_size
1630 * to 0, and the code below allows just one page.
Mikulas Patocka8cbeb672009-06-22 10:12:14 +01001631 */
1632 else if (queue_max_hw_sectors(q) <= PAGE_SIZE >> 9)
Mikulas Patocka8cbeb672009-06-22 10:12:14 +01001633 max_size = 0;
Milan Brozf6fccb12008-07-21 12:00:37 +01001634
Mikulas Patocka50371082008-10-01 14:39:17 +01001635out:
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001636 dm_put_live_table_fast(md);
Milan Brozf6fccb12008-07-21 12:00:37 +01001637 /*
1638 * Always allow an entire first page
1639 */
1640 if (max_size <= biovec->bv_len && !(bvm->bi_size >> SECTOR_SHIFT))
1641 max_size = biovec->bv_len;
1642
Milan Brozf6fccb12008-07-21 12:00:37 +01001643 return max_size;
1644}
1645
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646/*
1647 * The request function that just remaps the bio built up by
1648 * dm_merge_bvec.
1649 */
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001650static void _dm_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651{
Kevin Corry12f03a42006-02-01 03:04:52 -08001652 int rw = bio_data_dir(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 struct mapped_device *md = q->queuedata;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001654 int srcu_idx;
1655 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001657 map = dm_get_live_table(md, &srcu_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658
Gu Zheng18c0b222014-11-24 11:05:26 +08001659 generic_start_io_acct(rw, bio_sectors(bio), &dm_disk(md)->part0);
Kevin Corry12f03a42006-02-01 03:04:52 -08001660
Tejun Heo6a8736d2010-09-08 18:07:00 +02001661 /* if we're suspended, we have to queue this io for later */
1662 if (unlikely(test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags))) {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001663 dm_put_live_table(md, srcu_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664
Tejun Heo6a8736d2010-09-08 18:07:00 +02001665 if (bio_rw(bio) != READA)
1666 queue_io(md, bio);
1667 else
Alasdair G Kergon54d9a1b2009-04-09 00:27:14 +01001668 bio_io_error(bio);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001669 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 }
1671
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001672 __split_and_process_bio(md, map, bio);
1673 dm_put_live_table(md, srcu_idx);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001674 return;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001675}
1676
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04001677int dm_request_based(struct mapped_device *md)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001678{
1679 return blk_queue_stackable(md->queue);
1680}
1681
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001682static void dm_request(struct request_queue *q, struct bio *bio)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001683{
1684 struct mapped_device *md = q->queuedata;
1685
1686 if (dm_request_based(md))
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001687 blk_queue_bio(q, bio);
1688 else
1689 _dm_request(q, bio);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001690}
1691
1692void dm_dispatch_request(struct request *rq)
1693{
1694 int r;
1695
1696 if (blk_queue_io_stat(rq->q))
1697 rq->cmd_flags |= REQ_IO_STAT;
1698
1699 rq->start_time = jiffies;
1700 r = blk_insert_cloned_request(rq->q, rq);
1701 if (r)
1702 dm_complete_request(rq, r);
1703}
1704EXPORT_SYMBOL_GPL(dm_dispatch_request);
1705
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001706static int dm_rq_bio_constructor(struct bio *bio, struct bio *bio_orig,
1707 void *data)
1708{
1709 struct dm_rq_target_io *tio = data;
Kent Overstreet94818742012-09-07 13:44:01 -07001710 struct dm_rq_clone_bio_info *info =
1711 container_of(bio, struct dm_rq_clone_bio_info, clone);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001712
1713 info->orig = bio_orig;
1714 info->tio = tio;
1715 bio->bi_end_io = end_clone_bio;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001716
1717 return 0;
1718}
1719
1720static int setup_clone(struct request *clone, struct request *rq,
1721 struct dm_rq_target_io *tio)
1722{
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00001723 int r;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001724
Tejun Heo29e40132010-09-08 18:07:00 +02001725 r = blk_rq_prep_clone(clone, rq, tio->md->bs, GFP_ATOMIC,
1726 dm_rq_bio_constructor, tio);
1727 if (r)
1728 return r;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001729
Tejun Heo29e40132010-09-08 18:07:00 +02001730 clone->cmd = rq->cmd;
1731 clone->cmd_len = rq->cmd_len;
1732 clone->sense = rq->sense;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001733 clone->end_io = end_clone_request;
1734 clone->end_io_data = tio;
1735
1736 return 0;
1737}
1738
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001739static struct request *clone_rq(struct request *rq, struct mapped_device *md,
1740 gfp_t gfp_mask)
1741{
1742 struct request *clone;
1743 struct dm_rq_target_io *tio;
1744
1745 tio = alloc_rq_tio(md, gfp_mask);
1746 if (!tio)
1747 return NULL;
1748
1749 tio->md = md;
1750 tio->ti = NULL;
1751 tio->orig = rq;
1752 tio->error = 0;
1753 memset(&tio->info, 0, sizeof(tio->info));
1754
1755 clone = &tio->clone;
1756 if (setup_clone(clone, rq, tio)) {
1757 /* -ENOMEM */
1758 free_rq_tio(tio);
1759 return NULL;
1760 }
1761
1762 return clone;
1763}
1764
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001765/*
1766 * Called with the queue lock held.
1767 */
1768static int dm_prep_fn(struct request_queue *q, struct request *rq)
1769{
1770 struct mapped_device *md = q->queuedata;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001771 struct request *clone;
1772
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001773 if (unlikely(rq->special)) {
1774 DMWARN("Already has something in rq->special.");
1775 return BLKPREP_KILL;
1776 }
1777
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001778 clone = clone_rq(rq, md, GFP_ATOMIC);
1779 if (!clone)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001780 return BLKPREP_DEFER;
1781
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001782 rq->special = clone;
1783 rq->cmd_flags |= REQ_DONTPREP;
1784
1785 return BLKPREP_OK;
1786}
1787
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001788/*
1789 * Returns:
1790 * 0 : the request has been processed (not requeued)
1791 * !0 : the request has been requeued
1792 */
1793static int map_request(struct dm_target *ti, struct request *clone,
1794 struct mapped_device *md)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001795{
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001796 int r, requeued = 0;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001797 struct dm_rq_target_io *tio = clone->end_io_data;
1798
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001799 tio->ti = ti;
1800 r = ti->type->map_rq(ti, clone, &tio->info);
1801 switch (r) {
1802 case DM_MAPIO_SUBMITTED:
1803 /* The target has taken the I/O to submit by itself later */
1804 break;
1805 case DM_MAPIO_REMAPPED:
1806 /* The target has remapped the I/O so dispatch it */
Jun'ichi Nomura6db4ccd2009-12-10 23:52:25 +00001807 trace_block_rq_remap(clone->q, clone, disk_devt(dm_disk(md)),
1808 blk_rq_pos(tio->orig));
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001809 dm_dispatch_request(clone);
1810 break;
1811 case DM_MAPIO_REQUEUE:
1812 /* The target wants to requeue the I/O */
1813 dm_requeue_unmapped_request(clone);
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001814 requeued = 1;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001815 break;
1816 default:
1817 if (r > 0) {
1818 DMWARN("unimplemented target map return value: %d", r);
1819 BUG();
1820 }
1821
1822 /* The target wants to complete the I/O */
1823 dm_kill_unmapped_request(clone, r);
1824 break;
1825 }
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001826
1827 return requeued;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001828}
1829
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001830static struct request *dm_start_request(struct mapped_device *md, struct request *orig)
1831{
1832 struct request *clone;
1833
1834 blk_start_request(orig);
1835 clone = orig->special;
1836 atomic_inc(&md->pending[rq_data_dir(clone)]);
1837
1838 /*
1839 * Hold the md reference here for the in-flight I/O.
1840 * We can't rely on the reference count by device opener,
1841 * because the device may be closed during the request completion
1842 * when all bios are completed.
1843 * See the comment in rq_completed() too.
1844 */
1845 dm_get(md);
1846
1847 return clone;
1848}
1849
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001850/*
1851 * q->request_fn for request-based dm.
1852 * Called with the queue lock held.
1853 */
1854static void dm_request_fn(struct request_queue *q)
1855{
1856 struct mapped_device *md = q->queuedata;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001857 int srcu_idx;
1858 struct dm_table *map = dm_get_live_table(md, &srcu_idx);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001859 struct dm_target *ti;
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00001860 struct request *rq, *clone;
Tejun Heo29e40132010-09-08 18:07:00 +02001861 sector_t pos;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001862
1863 /*
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00001864 * For suspend, check blk_queue_stopped() and increment
1865 * ->pending within a single queue_lock not to increment the
1866 * number of in-flight I/Os after the queue is stopped in
1867 * dm_suspend().
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001868 */
Jens Axboe7eaceac2011-03-10 08:52:07 +01001869 while (!blk_queue_stopped(q)) {
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001870 rq = blk_peek_request(q);
1871 if (!rq)
Jens Axboe7eaceac2011-03-10 08:52:07 +01001872 goto delay_and_out;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001873
Tejun Heo29e40132010-09-08 18:07:00 +02001874 /* always use block 0 to find the target for flushes for now */
1875 pos = 0;
1876 if (!(rq->cmd_flags & REQ_FLUSH))
1877 pos = blk_rq_pos(rq);
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00001878
Tejun Heo29e40132010-09-08 18:07:00 +02001879 ti = dm_table_find_target(map, pos);
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001880 if (!dm_target_is_valid(ti)) {
1881 /*
1882 * Must perform setup, that dm_done() requires,
1883 * before calling dm_kill_unmapped_request
1884 */
1885 DMERR_LIMIT("request attempted access beyond the end of device");
1886 clone = dm_start_request(md, rq);
1887 dm_kill_unmapped_request(clone, -EIO);
1888 continue;
1889 }
Tejun Heo29e40132010-09-08 18:07:00 +02001890
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001891 if (ti->type->busy && ti->type->busy(ti))
Jens Axboe7eaceac2011-03-10 08:52:07 +01001892 goto delay_and_out;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001893
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001894 clone = dm_start_request(md, rq);
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00001895
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001896 spin_unlock(q->queue_lock);
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001897 if (map_request(ti, clone, md))
1898 goto requeued;
1899
Kiyoshi Ueda052189a2011-01-13 20:00:00 +00001900 BUG_ON(!irqs_disabled());
1901 spin_lock(q->queue_lock);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001902 }
1903
1904 goto out;
1905
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001906requeued:
Kiyoshi Ueda052189a2011-01-13 20:00:00 +00001907 BUG_ON(!irqs_disabled());
1908 spin_lock(q->queue_lock);
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001909
Jens Axboe7eaceac2011-03-10 08:52:07 +01001910delay_and_out:
1911 blk_delay_queue(q, HZ / 10);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001912out:
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001913 dm_put_live_table(md, srcu_idx);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001914}
1915
1916int dm_underlying_device_busy(struct request_queue *q)
1917{
1918 return blk_lld_busy(q);
1919}
1920EXPORT_SYMBOL_GPL(dm_underlying_device_busy);
1921
1922static int dm_lld_busy(struct request_queue *q)
1923{
1924 int r;
1925 struct mapped_device *md = q->queuedata;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001926 struct dm_table *map = dm_get_live_table_fast(md);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001927
1928 if (!map || test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags))
1929 r = 1;
1930 else
1931 r = dm_table_any_busy_target(map);
1932
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001933 dm_put_live_table_fast(md);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001934
1935 return r;
1936}
1937
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938static int dm_any_congested(void *congested_data, int bdi_bits)
1939{
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00001940 int r = bdi_bits;
1941 struct mapped_device *md = congested_data;
1942 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01001944 if (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001945 map = dm_get_live_table_fast(md);
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00001946 if (map) {
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001947 /*
1948 * Request-based dm cares about only own queue for
1949 * the query about congestion status of request_queue
1950 */
1951 if (dm_request_based(md))
1952 r = md->queue->backing_dev_info.state &
1953 bdi_bits;
1954 else
1955 r = dm_table_any_congested(map, bdi_bits);
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00001956 }
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001957 dm_put_live_table_fast(md);
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00001958 }
1959
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 return r;
1961}
1962
1963/*-----------------------------------------------------------------
1964 * An IDR is used to keep track of allocated minor numbers.
1965 *---------------------------------------------------------------*/
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001966static void free_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967{
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001968 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 idr_remove(&_minor_idr, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001970 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971}
1972
1973/*
1974 * See if the device with a specific minor # is free.
1975 */
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001976static int specific_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977{
Tejun Heoc9d76be2013-02-27 17:04:26 -08001978 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979
1980 if (minor >= (1 << MINORBITS))
1981 return -EINVAL;
1982
Tejun Heoc9d76be2013-02-27 17:04:26 -08001983 idr_preload(GFP_KERNEL);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001984 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985
Tejun Heoc9d76be2013-02-27 17:04:26 -08001986 r = idr_alloc(&_minor_idr, MINOR_ALLOCED, minor, minor + 1, GFP_NOWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001988 spin_unlock(&_minor_lock);
Tejun Heoc9d76be2013-02-27 17:04:26 -08001989 idr_preload_end();
1990 if (r < 0)
1991 return r == -ENOSPC ? -EBUSY : r;
1992 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993}
1994
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001995static int next_free_minor(int *minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996{
Tejun Heoc9d76be2013-02-27 17:04:26 -08001997 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998
Tejun Heoc9d76be2013-02-27 17:04:26 -08001999 idr_preload(GFP_KERNEL);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002000 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001
Tejun Heoc9d76be2013-02-27 17:04:26 -08002002 r = idr_alloc(&_minor_idr, MINOR_ALLOCED, 0, 1 << MINORBITS, GFP_NOWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002004 spin_unlock(&_minor_lock);
Tejun Heoc9d76be2013-02-27 17:04:26 -08002005 idr_preload_end();
2006 if (r < 0)
2007 return r;
2008 *minor = r;
2009 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010}
2011
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07002012static const struct block_device_operations dm_blk_dops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013
Mikulas Patocka53d59142009-04-02 19:55:37 +01002014static void dm_wq_work(struct work_struct *work);
2015
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002016static void dm_init_md_queue(struct mapped_device *md)
2017{
2018 /*
2019 * Request-based dm devices cannot be stacked on top of bio-based dm
2020 * devices. The type of this dm device has not been decided yet.
2021 * The type is decided at the first table loading time.
2022 * To prevent problematic device stacking, clear the queue flag
2023 * for request stacking support until then.
2024 *
2025 * This queue is new, so no concurrency on the queue_flags.
2026 */
2027 queue_flag_clear_unlocked(QUEUE_FLAG_STACKABLE, md->queue);
2028
2029 md->queue->queuedata = md;
2030 md->queue->backing_dev_info.congested_fn = dm_any_congested;
2031 md->queue->backing_dev_info.congested_data = md;
2032 blk_queue_make_request(md->queue, dm_request);
2033 blk_queue_bounce_limit(md->queue, BLK_BOUNCE_ANY);
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002034 blk_queue_merge_bvec(md->queue, dm_merge_bvec);
2035}
2036
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037/*
2038 * Allocate and initialise a blank device with a given minor.
2039 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002040static struct mapped_device *alloc_dev(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041{
2042 int r;
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01002043 struct mapped_device *md = kzalloc(sizeof(*md), GFP_KERNEL);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07002044 void *old_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045
2046 if (!md) {
2047 DMWARN("unable to allocate device, out of memory.");
2048 return NULL;
2049 }
2050
Jeff Mahoney10da4f72006-06-26 00:27:25 -07002051 if (!try_module_get(THIS_MODULE))
Milan Broz6ed7ade2008-02-08 02:10:19 +00002052 goto bad_module_get;
Jeff Mahoney10da4f72006-06-26 00:27:25 -07002053
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 /* get a minor number for the dev */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002055 if (minor == DM_ANY_MINOR)
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01002056 r = next_free_minor(&minor);
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002057 else
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01002058 r = specific_minor(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 if (r < 0)
Milan Broz6ed7ade2008-02-08 02:10:19 +00002060 goto bad_minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002062 r = init_srcu_struct(&md->io_barrier);
2063 if (r < 0)
2064 goto bad_io_barrier;
2065
Mike Snitzera5664da2010-08-12 04:14:01 +01002066 md->type = DM_TYPE_NONE;
Daniel Walkere61290a2008-02-08 02:10:08 +00002067 mutex_init(&md->suspend_lock);
Mike Snitzera5664da2010-08-12 04:14:01 +01002068 mutex_init(&md->type_lock);
Benjamin Marzinski86f11522014-08-13 13:53:43 -05002069 mutex_init(&md->table_devices_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01002070 spin_lock_init(&md->deferred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 atomic_set(&md->holders, 1);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -07002072 atomic_set(&md->open_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 atomic_set(&md->event_nr, 0);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002074 atomic_set(&md->uevent_seq, 0);
2075 INIT_LIST_HEAD(&md->uevent_list);
Benjamin Marzinski86f11522014-08-13 13:53:43 -05002076 INIT_LIST_HEAD(&md->table_devices);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002077 spin_lock_init(&md->uevent_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002079 md->queue = blk_alloc_queue(GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 if (!md->queue)
Milan Broz6ed7ade2008-02-08 02:10:19 +00002081 goto bad_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002083 dm_init_md_queue(md);
Stefan Bader9faf4002006-10-03 01:15:41 -07002084
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 md->disk = alloc_disk(1);
2086 if (!md->disk)
Milan Broz6ed7ade2008-02-08 02:10:19 +00002087 goto bad_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02002089 atomic_set(&md->pending[0], 0);
2090 atomic_set(&md->pending[1], 0);
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07002091 init_waitqueue_head(&md->wait);
Mikulas Patocka53d59142009-04-02 19:55:37 +01002092 INIT_WORK(&md->work, dm_wq_work);
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07002093 init_waitqueue_head(&md->eventq);
Mikulas Patocka2995fa72014-01-13 19:37:54 -05002094 init_completion(&md->kobj_holder.completion);
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07002095
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 md->disk->major = _major;
2097 md->disk->first_minor = minor;
2098 md->disk->fops = &dm_blk_dops;
2099 md->disk->queue = md->queue;
2100 md->disk->private_data = md;
2101 sprintf(md->disk->disk_name, "dm-%d", minor);
2102 add_disk(md->disk);
Mike Anderson7e51f252006-03-27 01:17:52 -08002103 format_dev_t(md->name, MKDEV(_major, minor));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
Tejun Heo670368a2013-07-30 08:40:21 -04002105 md->wq = alloc_workqueue("kdmflush", WQ_MEM_RECLAIM, 0);
Milan Broz304f3f62008-02-08 02:11:17 +00002106 if (!md->wq)
2107 goto bad_thread;
2108
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002109 md->bdev = bdget_disk(md->disk, 0);
2110 if (!md->bdev)
2111 goto bad_bdev;
2112
Tejun Heo6a8736d2010-09-08 18:07:00 +02002113 bio_init(&md->flush_bio);
2114 md->flush_bio.bi_bdev = md->bdev;
2115 md->flush_bio.bi_rw = WRITE_FLUSH;
2116
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002117 dm_stats_init(&md->stats);
2118
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07002119 /* Populate the mapping, nobody knows we exist yet */
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002120 spin_lock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07002121 old_md = idr_replace(&_minor_idr, md, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002122 spin_unlock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07002123
2124 BUG_ON(old_md != MINOR_ALLOCED);
2125
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 return md;
2127
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002128bad_bdev:
2129 destroy_workqueue(md->wq);
Milan Broz304f3f62008-02-08 02:11:17 +00002130bad_thread:
Zdenek Kabelac03022c52009-10-16 23:18:15 +01002131 del_gendisk(md->disk);
Milan Broz304f3f62008-02-08 02:11:17 +00002132 put_disk(md->disk);
Milan Broz6ed7ade2008-02-08 02:10:19 +00002133bad_disk:
Al Viro1312f402006-03-12 11:02:03 -05002134 blk_cleanup_queue(md->queue);
Milan Broz6ed7ade2008-02-08 02:10:19 +00002135bad_queue:
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002136 cleanup_srcu_struct(&md->io_barrier);
2137bad_io_barrier:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 free_minor(minor);
Milan Broz6ed7ade2008-02-08 02:10:19 +00002139bad_minor:
Jeff Mahoney10da4f72006-06-26 00:27:25 -07002140 module_put(THIS_MODULE);
Milan Broz6ed7ade2008-02-08 02:10:19 +00002141bad_module_get:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 kfree(md);
2143 return NULL;
2144}
2145
Jun'ichi Nomuraae9da832007-10-19 22:38:43 +01002146static void unlock_fs(struct mapped_device *md);
2147
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148static void free_dev(struct mapped_device *md)
2149{
Tejun Heof331c022008-09-03 09:01:48 +02002150 int minor = MINOR(disk_devt(md->disk));
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08002151
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002152 unlock_fs(md);
2153 bdput(md->bdev);
Milan Broz304f3f62008-02-08 02:11:17 +00002154 destroy_workqueue(md->wq);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002155 if (md->io_pool)
2156 mempool_destroy(md->io_pool);
2157 if (md->bs)
2158 bioset_free(md->bs);
Martin K. Petersen9c470082009-04-09 00:27:12 +01002159 blk_integrity_unregister(md->disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 del_gendisk(md->disk);
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002161 cleanup_srcu_struct(&md->io_barrier);
Benjamin Marzinski86f11522014-08-13 13:53:43 -05002162 free_table_devices(&md->table_devices);
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08002163 free_minor(minor);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002164
2165 spin_lock(&_minor_lock);
2166 md->disk->private_data = NULL;
2167 spin_unlock(&_minor_lock);
2168
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 put_disk(md->disk);
Al Viro1312f402006-03-12 11:02:03 -05002170 blk_cleanup_queue(md->queue);
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002171 dm_stats_cleanup(&md->stats);
Jeff Mahoney10da4f72006-06-26 00:27:25 -07002172 module_put(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 kfree(md);
2174}
2175
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002176static void __bind_mempools(struct mapped_device *md, struct dm_table *t)
2177{
Mikulas Patockac0820cf2012-12-21 20:23:38 +00002178 struct dm_md_mempools *p = dm_table_get_md_mempools(t);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002179
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00002180 if (md->io_pool && md->bs) {
Jun'ichi Nomura16245bd2013-03-01 22:45:44 +00002181 /* The md already has necessary mempools. */
2182 if (dm_table_get_type(t) == DM_TYPE_BIO_BASED) {
2183 /*
2184 * Reload bioset because front_pad may have changed
2185 * because a different table was loaded.
2186 */
2187 bioset_free(md->bs);
2188 md->bs = p->bs;
2189 p->bs = NULL;
2190 } else if (dm_table_get_type(t) == DM_TYPE_REQUEST_BASED) {
Jun'ichi Nomura16245bd2013-03-01 22:45:44 +00002191 /*
2192 * There's no need to reload with request-based dm
2193 * because the size of front_pad doesn't change.
2194 * Note for future: If you are to reload bioset,
2195 * prep-ed requests in the queue may refer
2196 * to bio from the old bioset, so you must walk
2197 * through the queue to unprep.
2198 */
2199 }
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002200 goto out;
Mikulas Patockac0820cf2012-12-21 20:23:38 +00002201 }
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002202
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00002203 BUG_ON(!p || md->io_pool || md->bs);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002204
2205 md->io_pool = p->io_pool;
2206 p->io_pool = NULL;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002207 md->bs = p->bs;
2208 p->bs = NULL;
2209
2210out:
2211 /* mempool bind completed, now no need any mempools in the table */
2212 dm_table_free_md_mempools(t);
2213}
2214
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215/*
2216 * Bind a table to the device.
2217 */
2218static void event_callback(void *context)
2219{
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002220 unsigned long flags;
2221 LIST_HEAD(uevents);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 struct mapped_device *md = (struct mapped_device *) context;
2223
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002224 spin_lock_irqsave(&md->uevent_lock, flags);
2225 list_splice_init(&md->uevent_list, &uevents);
2226 spin_unlock_irqrestore(&md->uevent_lock, flags);
2227
Tejun Heoed9e1982008-08-25 19:56:05 +09002228 dm_send_uevents(&uevents, &disk_to_dev(md->disk)->kobj);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002229
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 atomic_inc(&md->event_nr);
2231 wake_up(&md->eventq);
2232}
2233
Mike Snitzerc2176492011-01-13 19:53:46 +00002234/*
2235 * Protected by md->suspend_lock obtained by dm_swap_table().
2236 */
Alasdair G Kergon4e90188be2005-07-28 21:15:59 -07002237static void __set_size(struct mapped_device *md, sector_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238{
Alasdair G Kergon4e90188be2005-07-28 21:15:59 -07002239 set_capacity(md->disk, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002241 i_size_write(md->bdev->bd_inode, (loff_t)size << SECTOR_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242}
2243
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002244/*
Mikulas Patockad5b9dd02011-08-02 12:32:04 +01002245 * Return 1 if the queue has a compulsory merge_bvec_fn function.
2246 *
2247 * If this function returns 0, then the device is either a non-dm
2248 * device without a merge_bvec_fn, or it is a dm device that is
2249 * able to split any bios it receives that are too big.
2250 */
2251int dm_queue_merge_is_compulsory(struct request_queue *q)
2252{
2253 struct mapped_device *dev_md;
2254
2255 if (!q->merge_bvec_fn)
2256 return 0;
2257
2258 if (q->make_request_fn == dm_request) {
2259 dev_md = q->queuedata;
2260 if (test_bit(DMF_MERGE_IS_OPTIONAL, &dev_md->flags))
2261 return 0;
2262 }
2263
2264 return 1;
2265}
2266
2267static int dm_device_merge_is_compulsory(struct dm_target *ti,
2268 struct dm_dev *dev, sector_t start,
2269 sector_t len, void *data)
2270{
2271 struct block_device *bdev = dev->bdev;
2272 struct request_queue *q = bdev_get_queue(bdev);
2273
2274 return dm_queue_merge_is_compulsory(q);
2275}
2276
2277/*
2278 * Return 1 if it is acceptable to ignore merge_bvec_fn based
2279 * on the properties of the underlying devices.
2280 */
2281static int dm_table_merge_is_optional(struct dm_table *table)
2282{
2283 unsigned i = 0;
2284 struct dm_target *ti;
2285
2286 while (i < dm_table_get_num_targets(table)) {
2287 ti = dm_table_get_target(table, i++);
2288
2289 if (ti->type->iterate_devices &&
2290 ti->type->iterate_devices(ti, dm_device_merge_is_compulsory, NULL))
2291 return 0;
2292 }
2293
2294 return 1;
2295}
2296
2297/*
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002298 * Returns old map, which caller must destroy.
2299 */
2300static struct dm_table *__bind(struct mapped_device *md, struct dm_table *t,
2301 struct queue_limits *limits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302{
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002303 struct dm_table *old_map;
Jens Axboe165125e2007-07-24 09:28:11 +02002304 struct request_queue *q = md->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 sector_t size;
Mikulas Patockad5b9dd02011-08-02 12:32:04 +01002306 int merge_is_optional;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307
2308 size = dm_table_get_size(t);
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08002309
2310 /*
2311 * Wipe any geometry if the size of the table changed.
2312 */
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002313 if (size != dm_get_size(md))
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08002314 memset(&md->geometry, 0, sizeof(md->geometry));
2315
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002316 __set_size(md, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002318 dm_table_event_callback(t, event_callback, md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002319
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002320 /*
2321 * The queue hasn't been stopped yet, if the old table type wasn't
2322 * for request-based during suspension. So stop it to prevent
2323 * I/O mapping before resume.
2324 * This must be done before setting the queue restrictions,
2325 * because request-based dm may be run just after the setting.
2326 */
2327 if (dm_table_request_based(t) && !blk_queue_stopped(q))
2328 stop_queue(q);
2329
2330 __bind_mempools(md, t);
2331
Mikulas Patockad5b9dd02011-08-02 12:32:04 +01002332 merge_is_optional = dm_table_merge_is_optional(t);
2333
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002334 old_map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002335 rcu_assign_pointer(md->map, t);
Alasdair G Kergon36a04562011-10-31 20:19:04 +00002336 md->immutable_target_type = dm_table_get_immutable_target_type(t);
2337
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002338 dm_table_set_restrictions(t, q, limits);
Mikulas Patockad5b9dd02011-08-02 12:32:04 +01002339 if (merge_is_optional)
2340 set_bit(DMF_MERGE_IS_OPTIONAL, &md->flags);
2341 else
2342 clear_bit(DMF_MERGE_IS_OPTIONAL, &md->flags);
Hannes Reinecke41abc4e2014-11-05 14:35:50 +01002343 if (old_map)
2344 dm_sync_table(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002345
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002346 return old_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347}
2348
Alasdair G Kergona7940152009-12-10 23:52:23 +00002349/*
2350 * Returns unbound table for the caller to free.
2351 */
2352static struct dm_table *__unbind(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353{
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002354 struct dm_table *map = rcu_dereference_protected(md->map, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355
2356 if (!map)
Alasdair G Kergona7940152009-12-10 23:52:23 +00002357 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358
2359 dm_table_event_callback(map, NULL, NULL);
Monam Agarwal9cdb8522014-03-23 23:58:27 +05302360 RCU_INIT_POINTER(md->map, NULL);
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002361 dm_sync_table(md);
Alasdair G Kergona7940152009-12-10 23:52:23 +00002362
2363 return map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364}
2365
2366/*
2367 * Constructor for a new device.
2368 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002369int dm_create(int minor, struct mapped_device **result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370{
2371 struct mapped_device *md;
2372
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002373 md = alloc_dev(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 if (!md)
2375 return -ENXIO;
2376
Milan Broz784aae72009-01-06 03:05:12 +00002377 dm_sysfs_init(md);
2378
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 *result = md;
2380 return 0;
2381}
2382
Mike Snitzera5664da2010-08-12 04:14:01 +01002383/*
2384 * Functions to manage md->type.
2385 * All are required to hold md->type_lock.
2386 */
2387void dm_lock_md_type(struct mapped_device *md)
2388{
2389 mutex_lock(&md->type_lock);
2390}
2391
2392void dm_unlock_md_type(struct mapped_device *md)
2393{
2394 mutex_unlock(&md->type_lock);
2395}
2396
2397void dm_set_md_type(struct mapped_device *md, unsigned type)
2398{
Mike Snitzer00c4fc32013-08-27 18:57:03 -04002399 BUG_ON(!mutex_is_locked(&md->type_lock));
Mike Snitzera5664da2010-08-12 04:14:01 +01002400 md->type = type;
2401}
2402
2403unsigned dm_get_md_type(struct mapped_device *md)
2404{
Mike Snitzer00c4fc32013-08-27 18:57:03 -04002405 BUG_ON(!mutex_is_locked(&md->type_lock));
Mike Snitzera5664da2010-08-12 04:14:01 +01002406 return md->type;
2407}
2408
Alasdair G Kergon36a04562011-10-31 20:19:04 +00002409struct target_type *dm_get_immutable_target_type(struct mapped_device *md)
2410{
2411 return md->immutable_target_type;
2412}
2413
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002414/*
Mike Snitzerf84cb8a2013-09-19 12:13:58 -04002415 * The queue_limits are only valid as long as you have a reference
2416 * count on 'md'.
2417 */
2418struct queue_limits *dm_get_queue_limits(struct mapped_device *md)
2419{
2420 BUG_ON(!atomic_read(&md->holders));
2421 return &md->queue->limits;
2422}
2423EXPORT_SYMBOL_GPL(dm_get_queue_limits);
2424
2425/*
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002426 * Fully initialize a request-based queue (->elevator, ->request_fn, etc).
2427 */
2428static int dm_init_request_based_queue(struct mapped_device *md)
2429{
2430 struct request_queue *q = NULL;
2431
2432 if (md->queue->elevator)
2433 return 1;
2434
2435 /* Fully initialize the queue */
2436 q = blk_init_allocated_queue(md->queue, dm_request_fn, NULL);
2437 if (!q)
2438 return 0;
2439
2440 md->queue = q;
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002441 dm_init_md_queue(md);
2442 blk_queue_softirq_done(md->queue, dm_softirq_done);
2443 blk_queue_prep_rq(md->queue, dm_prep_fn);
2444 blk_queue_lld_busy(md->queue, dm_lld_busy);
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002445
2446 elv_register_queue(md->queue);
2447
2448 return 1;
2449}
2450
2451/*
2452 * Setup the DM device's queue based on md's type
2453 */
2454int dm_setup_md_queue(struct mapped_device *md)
2455{
2456 if ((dm_get_md_type(md) == DM_TYPE_REQUEST_BASED) &&
2457 !dm_init_request_based_queue(md)) {
2458 DMWARN("Cannot initialize queue for request-based mapped device");
2459 return -EINVAL;
2460 }
2461
2462 return 0;
2463}
2464
David Teigland637842c2006-01-06 00:20:00 -08002465static struct mapped_device *dm_find_md(dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466{
2467 struct mapped_device *md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 unsigned minor = MINOR(dev);
2469
2470 if (MAJOR(dev) != _major || minor >= (1 << MINORBITS))
2471 return NULL;
2472
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002473 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474
2475 md = idr_find(&_minor_idr, minor);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002476 if (md && (md == MINOR_ALLOCED ||
Tejun Heof331c022008-09-03 09:01:48 +02002477 (MINOR(disk_devt(dm_disk(md))) != minor) ||
Kiyoshi Uedaabdc5682010-08-12 04:13:54 +01002478 dm_deleting_md(md) ||
Alasdair G Kergon17b2f662006-06-26 00:27:33 -07002479 test_bit(DMF_FREEING, &md->flags))) {
David Teigland637842c2006-01-06 00:20:00 -08002480 md = NULL;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002481 goto out;
2482 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002484out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002485 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486
David Teigland637842c2006-01-06 00:20:00 -08002487 return md;
2488}
2489
David Teiglandd229a952006-01-06 00:20:01 -08002490struct mapped_device *dm_get_md(dev_t dev)
2491{
2492 struct mapped_device *md = dm_find_md(dev);
2493
2494 if (md)
2495 dm_get(md);
2496
2497 return md;
2498}
Alasdair G Kergon3cf2e4b2011-10-31 20:19:06 +00002499EXPORT_SYMBOL_GPL(dm_get_md);
David Teiglandd229a952006-01-06 00:20:01 -08002500
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08002501void *dm_get_mdptr(struct mapped_device *md)
David Teigland637842c2006-01-06 00:20:00 -08002502{
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08002503 return md->interface_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504}
2505
2506void dm_set_mdptr(struct mapped_device *md, void *ptr)
2507{
2508 md->interface_ptr = ptr;
2509}
2510
2511void dm_get(struct mapped_device *md)
2512{
2513 atomic_inc(&md->holders);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002514 BUG_ON(test_bit(DMF_FREEING, &md->flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515}
2516
Alasdair G Kergon72d94862006-06-26 00:27:35 -07002517const char *dm_device_name(struct mapped_device *md)
2518{
2519 return md->name;
2520}
2521EXPORT_SYMBOL_GPL(dm_device_name);
2522
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002523static void __dm_destroy(struct mapped_device *md, bool wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524{
Mike Anderson1134e5a2006-03-27 01:17:54 -08002525 struct dm_table *map;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002526 int srcu_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002528 might_sleep();
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002529
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002530 spin_lock(&_minor_lock);
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002531 map = dm_get_live_table(md, &srcu_idx);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002532 idr_replace(&_minor_idr, MINOR_ALLOCED, MINOR(disk_devt(dm_disk(md))));
2533 set_bit(DMF_FREEING, &md->flags);
2534 spin_unlock(&_minor_lock);
2535
2536 if (!dm_suspended_md(md)) {
2537 dm_table_presuspend_targets(map);
2538 dm_table_postsuspend_targets(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539 }
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002540
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002541 /* dm_put_live_table must be before msleep, otherwise deadlock is possible */
2542 dm_put_live_table(md, srcu_idx);
2543
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002544 /*
2545 * Rare, but there may be I/O requests still going to complete,
2546 * for example. Wait for all references to disappear.
2547 * No one should increment the reference count of the mapped_device,
2548 * after the mapped_device state becomes DMF_FREEING.
2549 */
2550 if (wait)
2551 while (atomic_read(&md->holders))
2552 msleep(1);
2553 else if (atomic_read(&md->holders))
2554 DMWARN("%s: Forcibly removing mapped_device still in use! (%d users)",
2555 dm_device_name(md), atomic_read(&md->holders));
2556
2557 dm_sysfs_exit(md);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002558 dm_table_destroy(__unbind(md));
2559 free_dev(md);
2560}
2561
2562void dm_destroy(struct mapped_device *md)
2563{
2564 __dm_destroy(md, true);
2565}
2566
2567void dm_destroy_immediate(struct mapped_device *md)
2568{
2569 __dm_destroy(md, false);
2570}
2571
2572void dm_put(struct mapped_device *md)
2573{
2574 atomic_dec(&md->holders);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575}
Edward Goggin79eb8852007-05-09 02:32:56 -07002576EXPORT_SYMBOL_GPL(dm_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577
Mikulas Patocka401600d2009-04-02 19:55:38 +01002578static int dm_wait_for_completion(struct mapped_device *md, int interruptible)
Milan Broz46125c12008-02-08 02:10:30 +00002579{
2580 int r = 0;
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002581 DECLARE_WAITQUEUE(wait, current);
2582
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002583 add_wait_queue(&md->wait, &wait);
Milan Broz46125c12008-02-08 02:10:30 +00002584
2585 while (1) {
Mikulas Patocka401600d2009-04-02 19:55:38 +01002586 set_current_state(interruptible);
Milan Broz46125c12008-02-08 02:10:30 +00002587
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00002588 if (!md_in_flight(md))
Milan Broz46125c12008-02-08 02:10:30 +00002589 break;
2590
Mikulas Patocka401600d2009-04-02 19:55:38 +01002591 if (interruptible == TASK_INTERRUPTIBLE &&
2592 signal_pending(current)) {
Milan Broz46125c12008-02-08 02:10:30 +00002593 r = -EINTR;
2594 break;
2595 }
2596
2597 io_schedule();
2598 }
2599 set_current_state(TASK_RUNNING);
2600
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002601 remove_wait_queue(&md->wait, &wait);
2602
Milan Broz46125c12008-02-08 02:10:30 +00002603 return r;
2604}
2605
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606/*
2607 * Process the deferred bios
2608 */
Mikulas Patockaef208582009-04-02 19:55:38 +01002609static void dm_wq_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610{
Mikulas Patockaef208582009-04-02 19:55:38 +01002611 struct mapped_device *md = container_of(work, struct mapped_device,
2612 work);
Milan Broz6d6f10d2008-02-08 02:10:22 +00002613 struct bio *c;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002614 int srcu_idx;
2615 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002617 map = dm_get_live_table(md, &srcu_idx);
Mikulas Patockaef208582009-04-02 19:55:38 +01002618
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002619 while (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002620 spin_lock_irq(&md->deferred_lock);
2621 c = bio_list_pop(&md->deferred);
2622 spin_unlock_irq(&md->deferred_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01002623
Tejun Heo6a8736d2010-09-08 18:07:00 +02002624 if (!c)
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002625 break;
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002626
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002627 if (dm_request_based(md))
2628 generic_make_request(c);
Tejun Heo6a8736d2010-09-08 18:07:00 +02002629 else
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002630 __split_and_process_bio(md, map, c);
Mikulas Patocka022c2612009-04-02 19:55:39 +01002631 }
Milan Broz73d410c2008-02-08 02:10:25 +00002632
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002633 dm_put_live_table(md, srcu_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634}
2635
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002636static void dm_queue_flush(struct mapped_device *md)
Milan Broz304f3f62008-02-08 02:11:17 +00002637{
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002638 clear_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01002639 smp_mb__after_atomic();
Mikulas Patocka53d59142009-04-02 19:55:37 +01002640 queue_work(md->wq, &md->work);
Milan Broz304f3f62008-02-08 02:11:17 +00002641}
2642
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643/*
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002644 * Swap in a new table, returning the old one for the caller to destroy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 */
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002646struct dm_table *dm_swap_table(struct mapped_device *md, struct dm_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647{
Mike Christie87eb5b22013-03-01 22:45:48 +00002648 struct dm_table *live_map = NULL, *map = ERR_PTR(-EINVAL);
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002649 struct queue_limits limits;
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002650 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651
Daniel Walkere61290a2008-02-08 02:10:08 +00002652 mutex_lock(&md->suspend_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653
2654 /* device must be suspended */
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +00002655 if (!dm_suspended_md(md))
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07002656 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657
Mike Snitzer3ae70652012-09-26 23:45:45 +01002658 /*
2659 * If the new table has no data devices, retain the existing limits.
2660 * This helps multipath with queue_if_no_path if all paths disappear,
2661 * then new I/O is queued based on these limits, and then some paths
2662 * reappear.
2663 */
2664 if (dm_table_has_no_data_devices(table)) {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002665 live_map = dm_get_live_table_fast(md);
Mike Snitzer3ae70652012-09-26 23:45:45 +01002666 if (live_map)
2667 limits = md->queue->limits;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002668 dm_put_live_table_fast(md);
Mike Snitzer3ae70652012-09-26 23:45:45 +01002669 }
2670
Mike Christie87eb5b22013-03-01 22:45:48 +00002671 if (!live_map) {
2672 r = dm_calculate_queue_limits(table, &limits);
2673 if (r) {
2674 map = ERR_PTR(r);
2675 goto out;
2676 }
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002677 }
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002678
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002679 map = __bind(md, table, &limits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07002681out:
Daniel Walkere61290a2008-02-08 02:10:08 +00002682 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002683 return map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684}
2685
2686/*
2687 * Functions to lock and unlock any filesystem running on the
2688 * device.
2689 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002690static int lock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691{
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08002692 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693
2694 WARN_ON(md->frozen_sb);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002695
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002696 md->frozen_sb = freeze_bdev(md->bdev);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002697 if (IS_ERR(md->frozen_sb)) {
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002698 r = PTR_ERR(md->frozen_sb);
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08002699 md->frozen_sb = NULL;
2700 return r;
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002701 }
2702
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002703 set_bit(DMF_FROZEN, &md->flags);
2704
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 return 0;
2706}
2707
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002708static void unlock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709{
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002710 if (!test_bit(DMF_FROZEN, &md->flags))
2711 return;
2712
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002713 thaw_bdev(md->bdev, md->frozen_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 md->frozen_sb = NULL;
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002715 clear_bit(DMF_FROZEN, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716}
2717
2718/*
Mike Snitzerffcc3932014-10-28 18:34:52 -04002719 * If __dm_suspend returns 0, the device is completely quiescent
2720 * now. There is no request-processing activity. All new requests
2721 * are being added to md->deferred list.
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002722 *
Mike Snitzerffcc3932014-10-28 18:34:52 -04002723 * Caller must hold md->suspend_lock
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002724 */
Mike Snitzerffcc3932014-10-28 18:34:52 -04002725static int __dm_suspend(struct mapped_device *md, struct dm_table *map,
2726 unsigned suspend_flags, int interruptible)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727{
Mike Snitzerffcc3932014-10-28 18:34:52 -04002728 bool do_lockfs = suspend_flags & DM_SUSPEND_LOCKFS_FLAG;
2729 bool noflush = suspend_flags & DM_SUSPEND_NOFLUSH_FLAG;
2730 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002732 /*
2733 * DMF_NOFLUSH_SUSPENDING must be set before presuspend.
2734 * This flag is cleared before dm_suspend returns.
2735 */
2736 if (noflush)
2737 set_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
2738
Mike Snitzerd67ee212014-10-28 20:13:31 -04002739 /*
2740 * This gets reverted if there's an error later and the targets
2741 * provide the .presuspend_undo hook.
2742 */
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002743 dm_table_presuspend_targets(map);
2744
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002745 /*
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002746 * Flush I/O to the device.
2747 * Any I/O submitted after lock_fs() may not be flushed.
2748 * noflush takes precedence over do_lockfs.
2749 * (lock_fs() flushes I/Os and waits for them to complete.)
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002750 */
2751 if (!noflush && do_lockfs) {
2752 r = lock_fs(md);
Mike Snitzerd67ee212014-10-28 20:13:31 -04002753 if (r) {
2754 dm_table_presuspend_undo_targets(map);
Mike Snitzerffcc3932014-10-28 18:34:52 -04002755 return r;
Mike Snitzerd67ee212014-10-28 20:13:31 -04002756 }
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002757 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758
2759 /*
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002760 * Here we must make sure that no processes are submitting requests
2761 * to target drivers i.e. no one may be executing
2762 * __split_and_process_bio. This is called from dm_request and
2763 * dm_wq_work.
2764 *
2765 * To get all processes out of __split_and_process_bio in dm_request,
2766 * we take the write lock. To prevent any process from reentering
Tejun Heo6a8736d2010-09-08 18:07:00 +02002767 * __split_and_process_bio from dm_request and quiesce the thread
2768 * (dm_wq_work), we set BMF_BLOCK_IO_FOR_SUSPEND and call
2769 * flush_workqueue(md->wq).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 */
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01002771 set_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
Hannes Reinecke41abc4e2014-11-05 14:35:50 +01002772 if (map)
2773 synchronize_srcu(&md->io_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002775 /*
Tejun Heo29e40132010-09-08 18:07:00 +02002776 * Stop md->queue before flushing md->wq in case request-based
2777 * dm defers requests to md->wq from md->queue.
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002778 */
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002779 if (dm_request_based(md))
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002780 stop_queue(md->queue);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002781
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002782 flush_workqueue(md->wq);
2783
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784 /*
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002785 * At this point no more requests are entering target request routines.
2786 * We call dm_wait_for_completion to wait for all existing requests
2787 * to finish.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 */
Mike Snitzerffcc3932014-10-28 18:34:52 -04002789 r = dm_wait_for_completion(md, interruptible);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790
Milan Broz6d6f10d2008-02-08 02:10:22 +00002791 if (noflush)
Mikulas Patocka022c2612009-04-02 19:55:39 +01002792 clear_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
Hannes Reinecke41abc4e2014-11-05 14:35:50 +01002793 if (map)
2794 synchronize_srcu(&md->io_barrier);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002795
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796 /* were we interrupted ? */
Milan Broz46125c12008-02-08 02:10:30 +00002797 if (r < 0) {
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002798 dm_queue_flush(md);
Milan Broz73d410c2008-02-08 02:10:25 +00002799
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002800 if (dm_request_based(md))
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002801 start_queue(md->queue);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002802
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002803 unlock_fs(md);
Mike Snitzerd67ee212014-10-28 20:13:31 -04002804 dm_table_presuspend_undo_targets(map);
Mike Snitzerffcc3932014-10-28 18:34:52 -04002805 /* pushback list is already flushed, so skip flush */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002806 }
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002807
Mike Snitzerffcc3932014-10-28 18:34:52 -04002808 return r;
2809}
2810
2811/*
2812 * We need to be able to change a mapping table under a mounted
2813 * filesystem. For example we might want to move some data in
2814 * the background. Before the table can be swapped with
2815 * dm_bind_table, dm_suspend must be called to flush any in
2816 * flight bios and ensure that any further io gets deferred.
2817 */
2818/*
2819 * Suspend mechanism in request-based dm.
2820 *
2821 * 1. Flush all I/Os by lock_fs() if needed.
2822 * 2. Stop dispatching any I/O by stopping the request_queue.
2823 * 3. Wait for all in-flight I/Os to be completed or requeued.
2824 *
2825 * To abort suspend, start the request_queue.
2826 */
2827int dm_suspend(struct mapped_device *md, unsigned suspend_flags)
2828{
2829 struct dm_table *map = NULL;
2830 int r = 0;
2831
2832retry:
2833 mutex_lock_nested(&md->suspend_lock, SINGLE_DEPTH_NESTING);
2834
2835 if (dm_suspended_md(md)) {
2836 r = -EINVAL;
2837 goto out_unlock;
2838 }
2839
2840 if (dm_suspended_internally_md(md)) {
2841 /* already internally suspended, wait for internal resume */
2842 mutex_unlock(&md->suspend_lock);
2843 r = wait_on_bit(&md->flags, DMF_SUSPENDED_INTERNALLY, TASK_INTERRUPTIBLE);
2844 if (r)
2845 return r;
2846 goto retry;
2847 }
2848
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002849 map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mike Snitzerffcc3932014-10-28 18:34:52 -04002850
2851 r = __dm_suspend(md, map, suspend_flags, TASK_INTERRUPTIBLE);
2852 if (r)
2853 goto out_unlock;
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002854
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855 set_bit(DMF_SUSPENDED, &md->flags);
2856
Kiyoshi Ueda4d4471c2009-12-10 23:52:26 +00002857 dm_table_postsuspend_targets(map);
2858
Alasdair G Kergond2874832006-11-08 17:44:43 -08002859out_unlock:
Daniel Walkere61290a2008-02-08 02:10:08 +00002860 mutex_unlock(&md->suspend_lock);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002861 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862}
2863
Mike Snitzerffcc3932014-10-28 18:34:52 -04002864static int __dm_resume(struct mapped_device *md, struct dm_table *map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865{
Mike Snitzerffcc3932014-10-28 18:34:52 -04002866 if (map) {
2867 int r = dm_table_resume_targets(map);
2868 if (r)
2869 return r;
2870 }
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002871
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002872 dm_queue_flush(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002873
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002874 /*
2875 * Flushing deferred I/Os must be done after targets are resumed
2876 * so that mapping of targets can work correctly.
2877 * Request-based dm is queueing the deferred I/Os in its request_queue.
2878 */
2879 if (dm_request_based(md))
2880 start_queue(md->queue);
2881
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002882 unlock_fs(md);
2883
Mike Snitzerffcc3932014-10-28 18:34:52 -04002884 return 0;
2885}
2886
2887int dm_resume(struct mapped_device *md)
2888{
2889 int r = -EINVAL;
2890 struct dm_table *map = NULL;
2891
2892retry:
2893 mutex_lock_nested(&md->suspend_lock, SINGLE_DEPTH_NESTING);
2894
2895 if (!dm_suspended_md(md))
2896 goto out;
2897
2898 if (dm_suspended_internally_md(md)) {
2899 /* already internally suspended, wait for internal resume */
2900 mutex_unlock(&md->suspend_lock);
2901 r = wait_on_bit(&md->flags, DMF_SUSPENDED_INTERNALLY, TASK_INTERRUPTIBLE);
2902 if (r)
2903 return r;
2904 goto retry;
2905 }
2906
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002907 map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mike Snitzerffcc3932014-10-28 18:34:52 -04002908 if (!map || !dm_table_get_size(map))
2909 goto out;
2910
2911 r = __dm_resume(md, map);
2912 if (r)
2913 goto out;
2914
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002915 clear_bit(DMF_SUSPENDED, &md->flags);
2916
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002917 r = 0;
2918out:
Daniel Walkere61290a2008-02-08 02:10:08 +00002919 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002920
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002921 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922}
2923
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002924/*
2925 * Internal suspend/resume works like userspace-driven suspend. It waits
2926 * until all bios finish and prevents issuing new bios to the target drivers.
2927 * It may be used only from the kernel.
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002928 */
2929
Mike Snitzerffcc3932014-10-28 18:34:52 -04002930static void __dm_internal_suspend(struct mapped_device *md, unsigned suspend_flags)
2931{
2932 struct dm_table *map = NULL;
2933
Mikulas Patocka96b26c82015-01-08 18:52:26 -05002934 if (md->internal_suspend_count++)
Mike Snitzerffcc3932014-10-28 18:34:52 -04002935 return; /* nested internal suspend */
2936
2937 if (dm_suspended_md(md)) {
2938 set_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
2939 return; /* nest suspend */
2940 }
2941
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002942 map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mike Snitzerffcc3932014-10-28 18:34:52 -04002943
2944 /*
2945 * Using TASK_UNINTERRUPTIBLE because only NOFLUSH internal suspend is
2946 * supported. Properly supporting a TASK_INTERRUPTIBLE internal suspend
2947 * would require changing .presuspend to return an error -- avoid this
2948 * until there is a need for more elaborate variants of internal suspend.
2949 */
2950 (void) __dm_suspend(md, map, suspend_flags, TASK_UNINTERRUPTIBLE);
2951
2952 set_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
2953
2954 dm_table_postsuspend_targets(map);
2955}
2956
2957static void __dm_internal_resume(struct mapped_device *md)
2958{
Mikulas Patocka96b26c82015-01-08 18:52:26 -05002959 BUG_ON(!md->internal_suspend_count);
2960
2961 if (--md->internal_suspend_count)
Mike Snitzerffcc3932014-10-28 18:34:52 -04002962 return; /* resume from nested internal suspend */
2963
2964 if (dm_suspended_md(md))
2965 goto done; /* resume from nested suspend */
2966
2967 /*
2968 * NOTE: existing callers don't need to call dm_table_resume_targets
2969 * (which may fail -- so best to avoid it for now by passing NULL map)
2970 */
2971 (void) __dm_resume(md, NULL);
2972
2973done:
2974 clear_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
2975 smp_mb__after_atomic();
2976 wake_up_bit(&md->flags, DMF_SUSPENDED_INTERNALLY);
2977}
2978
2979void dm_internal_suspend_noflush(struct mapped_device *md)
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002980{
2981 mutex_lock(&md->suspend_lock);
Mike Snitzerffcc3932014-10-28 18:34:52 -04002982 __dm_internal_suspend(md, DM_SUSPEND_NOFLUSH_FLAG);
2983 mutex_unlock(&md->suspend_lock);
2984}
2985EXPORT_SYMBOL_GPL(dm_internal_suspend_noflush);
2986
2987void dm_internal_resume(struct mapped_device *md)
2988{
2989 mutex_lock(&md->suspend_lock);
2990 __dm_internal_resume(md);
2991 mutex_unlock(&md->suspend_lock);
2992}
2993EXPORT_SYMBOL_GPL(dm_internal_resume);
2994
2995/*
2996 * Fast variants of internal suspend/resume hold md->suspend_lock,
2997 * which prevents interaction with userspace-driven suspend.
2998 */
2999
3000void dm_internal_suspend_fast(struct mapped_device *md)
3001{
3002 mutex_lock(&md->suspend_lock);
3003 if (dm_suspended_md(md) || dm_suspended_internally_md(md))
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003004 return;
3005
3006 set_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
3007 synchronize_srcu(&md->io_barrier);
3008 flush_workqueue(md->wq);
3009 dm_wait_for_completion(md, TASK_UNINTERRUPTIBLE);
3010}
3011
Mike Snitzerffcc3932014-10-28 18:34:52 -04003012void dm_internal_resume_fast(struct mapped_device *md)
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003013{
Mike Snitzerffcc3932014-10-28 18:34:52 -04003014 if (dm_suspended_md(md) || dm_suspended_internally_md(md))
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04003015 goto done;
3016
3017 dm_queue_flush(md);
3018
3019done:
3020 mutex_unlock(&md->suspend_lock);
3021}
3022
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023/*-----------------------------------------------------------------
3024 * Event notification.
3025 *---------------------------------------------------------------*/
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00003026int dm_kobject_uevent(struct mapped_device *md, enum kobject_action action,
Milan Broz60935eb2009-06-22 10:12:30 +01003027 unsigned cookie)
Alasdair G Kergon69267a32007-12-13 14:15:57 +00003028{
Milan Broz60935eb2009-06-22 10:12:30 +01003029 char udev_cookie[DM_COOKIE_LENGTH];
3030 char *envp[] = { udev_cookie, NULL };
3031
3032 if (!cookie)
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00003033 return kobject_uevent(&disk_to_dev(md->disk)->kobj, action);
Milan Broz60935eb2009-06-22 10:12:30 +01003034 else {
3035 snprintf(udev_cookie, DM_COOKIE_LENGTH, "%s=%u",
3036 DM_COOKIE_ENV_VAR_NAME, cookie);
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00003037 return kobject_uevent_env(&disk_to_dev(md->disk)->kobj,
3038 action, envp);
Milan Broz60935eb2009-06-22 10:12:30 +01003039 }
Alasdair G Kergon69267a32007-12-13 14:15:57 +00003040}
3041
Mike Anderson7a8c3d32007-10-19 22:48:01 +01003042uint32_t dm_next_uevent_seq(struct mapped_device *md)
3043{
3044 return atomic_add_return(1, &md->uevent_seq);
3045}
3046
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047uint32_t dm_get_event_nr(struct mapped_device *md)
3048{
3049 return atomic_read(&md->event_nr);
3050}
3051
3052int dm_wait_event(struct mapped_device *md, int event_nr)
3053{
3054 return wait_event_interruptible(md->eventq,
3055 (event_nr != atomic_read(&md->event_nr)));
3056}
3057
Mike Anderson7a8c3d32007-10-19 22:48:01 +01003058void dm_uevent_add(struct mapped_device *md, struct list_head *elist)
3059{
3060 unsigned long flags;
3061
3062 spin_lock_irqsave(&md->uevent_lock, flags);
3063 list_add(elist, &md->uevent_list);
3064 spin_unlock_irqrestore(&md->uevent_lock, flags);
3065}
3066
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067/*
3068 * The gendisk is only valid as long as you have a reference
3069 * count on 'md'.
3070 */
3071struct gendisk *dm_disk(struct mapped_device *md)
3072{
3073 return md->disk;
3074}
3075
Milan Broz784aae72009-01-06 03:05:12 +00003076struct kobject *dm_kobject(struct mapped_device *md)
3077{
Mikulas Patocka2995fa72014-01-13 19:37:54 -05003078 return &md->kobj_holder.kobj;
Milan Broz784aae72009-01-06 03:05:12 +00003079}
3080
Milan Broz784aae72009-01-06 03:05:12 +00003081struct mapped_device *dm_get_from_kobject(struct kobject *kobj)
3082{
3083 struct mapped_device *md;
3084
Mikulas Patocka2995fa72014-01-13 19:37:54 -05003085 md = container_of(kobj, struct mapped_device, kobj_holder.kobj);
Milan Broz784aae72009-01-06 03:05:12 +00003086
Milan Broz4d89b7b2009-06-22 10:12:11 +01003087 if (test_bit(DMF_FREEING, &md->flags) ||
Mike Anderson432a2122009-12-10 23:52:20 +00003088 dm_deleting_md(md))
Milan Broz4d89b7b2009-06-22 10:12:11 +01003089 return NULL;
3090
Milan Broz784aae72009-01-06 03:05:12 +00003091 dm_get(md);
3092 return md;
3093}
3094
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +00003095int dm_suspended_md(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096{
3097 return test_bit(DMF_SUSPENDED, &md->flags);
3098}
3099
Mike Snitzerffcc3932014-10-28 18:34:52 -04003100int dm_suspended_internally_md(struct mapped_device *md)
3101{
3102 return test_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
3103}
3104
Mikulas Patocka2c140a22013-11-01 18:27:41 -04003105int dm_test_deferred_remove_flag(struct mapped_device *md)
3106{
3107 return test_bit(DMF_DEFERRED_REMOVE, &md->flags);
3108}
3109
Kiyoshi Ueda64dbce52009-12-10 23:52:27 +00003110int dm_suspended(struct dm_target *ti)
3111{
Kiyoshi Uedaecdb2e22010-03-06 02:29:52 +00003112 return dm_suspended_md(dm_table_get_md(ti->table));
Kiyoshi Ueda64dbce52009-12-10 23:52:27 +00003113}
3114EXPORT_SYMBOL_GPL(dm_suspended);
3115
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08003116int dm_noflush_suspending(struct dm_target *ti)
3117{
Kiyoshi Uedaecdb2e22010-03-06 02:29:52 +00003118 return __noflush_suspending(dm_table_get_md(ti->table));
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08003119}
3120EXPORT_SYMBOL_GPL(dm_noflush_suspending);
3121
Mikulas Patockac0820cf2012-12-21 20:23:38 +00003122struct dm_md_mempools *dm_alloc_md_mempools(unsigned type, unsigned integrity, unsigned per_bio_data_size)
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003123{
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003124 struct dm_md_mempools *pools = kzalloc(sizeof(*pools), GFP_KERNEL);
3125 struct kmem_cache *cachep;
3126 unsigned int pool_size;
3127 unsigned int front_pad;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003128
3129 if (!pools)
3130 return NULL;
3131
Jun'ichi Nomura23e50832013-03-01 22:45:48 +00003132 if (type == DM_TYPE_BIO_BASED) {
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003133 cachep = _io_cache;
Mike Snitzere8603132013-09-12 18:06:12 -04003134 pool_size = dm_get_reserved_bio_based_ios();
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003135 front_pad = roundup(per_bio_data_size, __alignof__(struct dm_target_io)) + offsetof(struct dm_target_io, clone);
3136 } else if (type == DM_TYPE_REQUEST_BASED) {
3137 cachep = _rq_tio_cache;
Mike Snitzerf4790822013-09-12 18:06:12 -04003138 pool_size = dm_get_reserved_rq_based_ios();
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003139 front_pad = offsetof(struct dm_rq_clone_bio_info, clone);
3140 /* per_bio_data_size is not used. See __bind_mempools(). */
3141 WARN_ON(per_bio_data_size != 0);
3142 } else
3143 goto out;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003144
Mike Snitzer6cfa5852013-09-12 18:06:11 -04003145 pools->io_pool = mempool_create_slab_pool(pool_size, cachep);
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003146 if (!pools->io_pool)
3147 goto out;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003148
Junichi Nomura3d8aab22014-10-03 11:55:26 +00003149 pools->bs = bioset_create_nobvec(pool_size, front_pad);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003150 if (!pools->bs)
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003151 goto out;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003152
Martin K. Petersena91a2782011-03-17 11:11:05 +01003153 if (integrity && bioset_integrity_create(pools->bs, pool_size))
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003154 goto out;
Martin K. Petersena91a2782011-03-17 11:11:05 +01003155
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003156 return pools;
3157
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003158out:
3159 dm_free_md_mempools(pools);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003160
3161 return NULL;
3162}
3163
3164void dm_free_md_mempools(struct dm_md_mempools *pools)
3165{
3166 if (!pools)
3167 return;
3168
3169 if (pools->io_pool)
3170 mempool_destroy(pools->io_pool);
3171
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003172 if (pools->bs)
3173 bioset_free(pools->bs);
3174
3175 kfree(pools);
3176}
3177
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07003178static const struct block_device_operations dm_blk_dops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179 .open = dm_blk_open,
3180 .release = dm_blk_close,
Milan Brozaa129a22006-10-03 01:15:15 -07003181 .ioctl = dm_blk_ioctl,
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08003182 .getgeo = dm_blk_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183 .owner = THIS_MODULE
3184};
3185
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186/*
3187 * module hooks
3188 */
3189module_init(dm_init);
3190module_exit(dm_exit);
3191
3192module_param(major, uint, 0);
3193MODULE_PARM_DESC(major, "The major number of the device mapper");
Mike Snitzerf4790822013-09-12 18:06:12 -04003194
Mike Snitzere8603132013-09-12 18:06:12 -04003195module_param(reserved_bio_based_ios, uint, S_IRUGO | S_IWUSR);
3196MODULE_PARM_DESC(reserved_bio_based_ios, "Reserved IOs in bio-based mempools");
3197
Mike Snitzerf4790822013-09-12 18:06:12 -04003198module_param(reserved_rq_based_ios, uint, S_IRUGO | S_IWUSR);
3199MODULE_PARM_DESC(reserved_rq_based_ios, "Reserved IOs in request-based mempools");
3200
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201MODULE_DESCRIPTION(DM_NAME " driver");
3202MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
3203MODULE_LICENSE("GPL");