blob: 9e39d2b64bf8f3cc4a864e300ff61f5020b67dda [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>
Li Zefan55782132009-06-09 13:43:05 +080022
23#include <trace/events/block.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Alasdair G Kergon72d94862006-06-26 00:27:35 -070025#define DM_MSG_PREFIX "core"
26
Namhyung Kim71a16732011-10-31 20:18:54 +000027#ifdef CONFIG_PRINTK
28/*
29 * ratelimit state to be used in DMXXX_LIMIT().
30 */
31DEFINE_RATELIMIT_STATE(dm_ratelimit_state,
32 DEFAULT_RATELIMIT_INTERVAL,
33 DEFAULT_RATELIMIT_BURST);
34EXPORT_SYMBOL(dm_ratelimit_state);
35#endif
36
Milan Broz60935eb2009-06-22 10:12:30 +010037/*
38 * Cookies are numeric values sent with CHANGE and REMOVE
39 * uevents while resuming, removing or renaming the device.
40 */
41#define DM_COOKIE_ENV_VAR_NAME "DM_COOKIE"
42#define DM_COOKIE_LENGTH 24
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044static const char *_name = DM_NAME;
45
46static unsigned int major = 0;
47static unsigned int _major = 0;
48
Alasdair G Kergond15b7742011-08-02 12:32:01 +010049static DEFINE_IDR(_minor_idr);
50
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -070051static DEFINE_SPINLOCK(_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052/*
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000053 * For bio-based dm.
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 * One of these is allocated per bio.
55 */
56struct dm_io {
57 struct mapped_device *md;
58 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 atomic_t io_count;
Richard Kennedy6ae2fa62008-07-21 12:00:28 +010060 struct bio *bio;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -080061 unsigned long start_time;
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +010062 spinlock_t endio_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063};
64
65/*
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000066 * For request-based dm.
67 * One of these is allocated per request.
68 */
69struct dm_rq_target_io {
70 struct mapped_device *md;
71 struct dm_target *ti;
72 struct request *orig, clone;
73 int error;
74 union map_info info;
75};
76
77/*
Kent Overstreet94818742012-09-07 13:44:01 -070078 * For request-based dm - the bio clones we allocate are embedded in these
79 * structs.
80 *
81 * We allocate these with bio_alloc_bioset, using the front_pad parameter when
82 * the bioset is created - this means the bio has to come at the end of the
83 * struct.
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000084 */
85struct dm_rq_clone_bio_info {
86 struct bio *orig;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +010087 struct dm_rq_target_io *tio;
Kent Overstreet94818742012-09-07 13:44:01 -070088 struct bio clone;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000089};
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091union map_info *dm_get_mapinfo(struct bio *bio)
92{
Alasdair G Kergon17b2f662006-06-26 00:27:33 -070093 if (bio && bio->bi_private)
Alasdair G Kergon028867a2007-07-12 17:26:32 +010094 return &((struct dm_target_io *)bio->bi_private)->info;
Alasdair G Kergon17b2f662006-06-26 00:27:33 -070095 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096}
97
Kiyoshi Uedacec47e32009-06-22 10:12:35 +010098union map_info *dm_get_rq_mapinfo(struct request *rq)
99{
100 if (rq && rq->end_io_data)
101 return &((struct dm_rq_target_io *)rq->end_io_data)->info;
102 return NULL;
103}
104EXPORT_SYMBOL_GPL(dm_get_rq_mapinfo);
105
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -0700106#define MINOR_ALLOCED ((void *)-1)
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108/*
109 * Bits for the md->flags field.
110 */
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +0100111#define DMF_BLOCK_IO_FOR_SUSPEND 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112#define DMF_SUSPENDED 1
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -0800113#define DMF_FROZEN 2
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700114#define DMF_FREEING 3
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700115#define DMF_DELETING 4
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800116#define DMF_NOFLUSH_SUSPENDING 5
Mikulas Patockad5b9dd02011-08-02 12:32:04 +0100117#define DMF_MERGE_IS_OPTIONAL 6
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Milan Broz304f3f62008-02-08 02:11:17 +0000119/*
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100120 * A dummy definition to make RCU happy.
121 * struct dm_table should never be dereferenced in this file.
122 */
123struct dm_table {
124 int undefined__;
125};
126
127/*
Milan Broz304f3f62008-02-08 02:11:17 +0000128 * Work processed by per-device workqueue.
129 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130struct mapped_device {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100131 struct srcu_struct io_barrier;
Daniel Walkere61290a2008-02-08 02:10:08 +0000132 struct mutex suspend_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 atomic_t holders;
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700134 atomic_t open_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Mikulas Patocka2a7faeb2013-07-10 23:41:18 +0100136 /*
137 * The current mapping.
138 * Use dm_get_live_table{_fast} or take suspend_lock for
139 * dereference.
140 */
141 struct dm_table *map;
142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 unsigned long flags;
144
Jens Axboe165125e2007-07-24 09:28:11 +0200145 struct request_queue *queue;
Mike Snitzera5664da2010-08-12 04:14:01 +0100146 unsigned type;
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +0100147 /* Protect queue and type against concurrent access. */
Mike Snitzera5664da2010-08-12 04:14:01 +0100148 struct mutex type_lock;
149
Alasdair G Kergon36a04562011-10-31 20:19:04 +0000150 struct target_type *immutable_target_type;
151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 struct gendisk *disk;
Mike Anderson7e51f252006-03-27 01:17:52 -0800153 char name[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155 void *interface_ptr;
156
157 /*
158 * A list of ios that arrived while we were suspended.
159 */
Nikanth Karthikesan316d3152009-10-06 20:16:55 +0200160 atomic_t pending[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 wait_queue_head_t wait;
Mikulas Patocka53d59142009-04-02 19:55:37 +0100162 struct work_struct work;
Kiyoshi Ueda74859362006-12-08 02:41:02 -0800163 struct bio_list deferred;
Mikulas Patocka022c2612009-04-02 19:55:39 +0100164 spinlock_t deferred_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166 /*
Tejun Heo29e40132010-09-08 18:07:00 +0200167 * Processing queue (flush)
Milan Broz304f3f62008-02-08 02:11:17 +0000168 */
169 struct workqueue_struct *wq;
170
171 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 * io objects are allocated from here.
173 */
174 mempool_t *io_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Stefan Bader9faf4002006-10-03 01:15:41 -0700176 struct bio_set *bs;
177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 /*
179 * Event handling.
180 */
181 atomic_t event_nr;
182 wait_queue_head_t eventq;
Mike Anderson7a8c3d32007-10-19 22:48:01 +0100183 atomic_t uevent_seq;
184 struct list_head uevent_list;
185 spinlock_t uevent_lock; /* Protect access to uevent_list */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187 /*
188 * freeze/thaw support require holding onto a super block
189 */
190 struct super_block *frozen_sb;
Mikulas Patockadb8fef42009-06-22 10:12:15 +0100191 struct block_device *bdev;
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800192
193 /* forced geometry settings */
194 struct hd_geometry geometry;
Milan Broz784aae72009-01-06 03:05:12 +0000195
196 /* sysfs handle */
197 struct kobject kobj;
Mikulas Patocka52b1fd52009-06-22 10:12:21 +0100198
Tejun Heod87f4c12010-09-03 11:56:19 +0200199 /* zero-length flush that will be cloned and submitted to targets */
200 struct bio flush_bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201};
202
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +0100203/*
204 * For mempools pre-allocation at the table loading time.
205 */
206struct dm_md_mempools {
207 mempool_t *io_pool;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +0100208 struct bio_set *bs;
209};
210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211#define MIN_IOS 256
Christoph Lametere18b8902006-12-06 20:33:20 -0800212static struct kmem_cache *_io_cache;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000213static struct kmem_cache *_rq_tio_cache;
Kent Overstreet94818742012-09-07 13:44:01 -0700214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215static int __init local_init(void)
216{
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100217 int r = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 /* allocate a slab for the dm_ios */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100220 _io_cache = KMEM_CACHE(dm_io, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 if (!_io_cache)
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100222 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000224 _rq_tio_cache = KMEM_CACHE(dm_rq_target_io, 0);
225 if (!_rq_tio_cache)
Mikulas Patockadba14162012-10-12 21:02:15 +0100226 goto out_free_io_cache;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000227
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100228 r = dm_uevent_init();
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100229 if (r)
Jun'ichi Nomura23e50832013-03-01 22:45:48 +0000230 goto out_free_rq_tio_cache;
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 _major = major;
233 r = register_blkdev(_major, _name);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100234 if (r < 0)
235 goto out_uevent_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
237 if (!_major)
238 _major = r;
239
240 return 0;
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100241
242out_uevent_exit:
243 dm_uevent_exit();
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000244out_free_rq_tio_cache:
245 kmem_cache_destroy(_rq_tio_cache);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100246out_free_io_cache:
247 kmem_cache_destroy(_io_cache);
248
249 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250}
251
252static void local_exit(void)
253{
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000254 kmem_cache_destroy(_rq_tio_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 kmem_cache_destroy(_io_cache);
Akinobu Mita00d59402007-07-17 04:03:46 -0700256 unregister_blkdev(_major, _name);
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100257 dm_uevent_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259 _major = 0;
260
261 DMINFO("cleaned up");
262}
263
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000264static int (*_inits[])(void) __initdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 local_init,
266 dm_target_init,
267 dm_linear_init,
268 dm_stripe_init,
Mikulas Patocka952b3552009-12-10 23:51:57 +0000269 dm_io_init,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100270 dm_kcopyd_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 dm_interface_init,
272};
273
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000274static void (*_exits[])(void) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 local_exit,
276 dm_target_exit,
277 dm_linear_exit,
278 dm_stripe_exit,
Mikulas Patocka952b3552009-12-10 23:51:57 +0000279 dm_io_exit,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100280 dm_kcopyd_exit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 dm_interface_exit,
282};
283
284static int __init dm_init(void)
285{
286 const int count = ARRAY_SIZE(_inits);
287
288 int r, i;
289
290 for (i = 0; i < count; i++) {
291 r = _inits[i]();
292 if (r)
293 goto bad;
294 }
295
296 return 0;
297
298 bad:
299 while (i--)
300 _exits[i]();
301
302 return r;
303}
304
305static void __exit dm_exit(void)
306{
307 int i = ARRAY_SIZE(_exits);
308
309 while (i--)
310 _exits[i]();
Alasdair G Kergond15b7742011-08-02 12:32:01 +0100311
312 /*
313 * Should be empty by this point.
314 */
Alasdair G Kergond15b7742011-08-02 12:32:01 +0100315 idr_destroy(&_minor_idr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316}
317
318/*
319 * Block device functions
320 */
Mike Anderson432a2122009-12-10 23:52:20 +0000321int dm_deleting_md(struct mapped_device *md)
322{
323 return test_bit(DMF_DELETING, &md->flags);
324}
325
Al Virofe5f9f22008-03-02 10:29:31 -0500326static int dm_blk_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327{
328 struct mapped_device *md;
329
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700330 spin_lock(&_minor_lock);
331
Al Virofe5f9f22008-03-02 10:29:31 -0500332 md = bdev->bd_disk->private_data;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700333 if (!md)
334 goto out;
335
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700336 if (test_bit(DMF_FREEING, &md->flags) ||
Mike Anderson432a2122009-12-10 23:52:20 +0000337 dm_deleting_md(md)) {
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700338 md = NULL;
339 goto out;
340 }
341
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 dm_get(md);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700343 atomic_inc(&md->open_count);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700344
345out:
346 spin_unlock(&_minor_lock);
347
348 return md ? 0 : -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349}
350
Al Virodb2a1442013-05-05 21:52:57 -0400351static void dm_blk_close(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
Al Virofe5f9f22008-03-02 10:29:31 -0500353 struct mapped_device *md = disk->private_data;
Arnd Bergmann6e9624b2010-08-07 18:25:34 +0200354
Milan Broz4a1aeb92011-01-13 19:59:48 +0000355 spin_lock(&_minor_lock);
356
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700357 atomic_dec(&md->open_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 dm_put(md);
Milan Broz4a1aeb92011-01-13 19:59:48 +0000359
360 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361}
362
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700363int dm_open_count(struct mapped_device *md)
364{
365 return atomic_read(&md->open_count);
366}
367
368/*
369 * Guarantees nothing is using the device before it's deleted.
370 */
371int dm_lock_for_deletion(struct mapped_device *md)
372{
373 int r = 0;
374
375 spin_lock(&_minor_lock);
376
377 if (dm_open_count(md))
378 r = -EBUSY;
379 else
380 set_bit(DMF_DELETING, &md->flags);
381
382 spin_unlock(&_minor_lock);
383
384 return r;
385}
386
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800387static int dm_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
388{
389 struct mapped_device *md = bdev->bd_disk->private_data;
390
391 return dm_get_geometry(md, geo);
392}
393
Al Virofe5f9f22008-03-02 10:29:31 -0500394static int dm_blk_ioctl(struct block_device *bdev, fmode_t mode,
Milan Brozaa129a22006-10-03 01:15:15 -0700395 unsigned int cmd, unsigned long arg)
396{
Al Virofe5f9f22008-03-02 10:29:31 -0500397 struct mapped_device *md = bdev->bd_disk->private_data;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100398 int srcu_idx;
Hannes Reinecke6c182cd2013-07-10 23:41:15 +0100399 struct dm_table *map;
Milan Brozaa129a22006-10-03 01:15:15 -0700400 struct dm_target *tgt;
401 int r = -ENOTTY;
402
Hannes Reinecke6c182cd2013-07-10 23:41:15 +0100403retry:
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100404 map = dm_get_live_table(md, &srcu_idx);
405
Milan Brozaa129a22006-10-03 01:15:15 -0700406 if (!map || !dm_table_get_size(map))
407 goto out;
408
409 /* We only support devices that have a single target */
410 if (dm_table_get_num_targets(map) != 1)
411 goto out;
412
413 tgt = dm_table_get_target(map, 0);
414
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +0000415 if (dm_suspended_md(md)) {
Milan Brozaa129a22006-10-03 01:15:15 -0700416 r = -EAGAIN;
417 goto out;
418 }
419
420 if (tgt->type->ioctl)
Al Viro647b3d02007-08-28 22:15:59 -0400421 r = tgt->type->ioctl(tgt, cmd, arg);
Milan Brozaa129a22006-10-03 01:15:15 -0700422
423out:
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100424 dm_put_live_table(md, srcu_idx);
Milan Brozaa129a22006-10-03 01:15:15 -0700425
Hannes Reinecke6c182cd2013-07-10 23:41:15 +0100426 if (r == -ENOTCONN) {
427 msleep(10);
428 goto retry;
429 }
430
Milan Brozaa129a22006-10-03 01:15:15 -0700431 return r;
432}
433
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100434static struct dm_io *alloc_io(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435{
436 return mempool_alloc(md->io_pool, GFP_NOIO);
437}
438
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100439static void free_io(struct mapped_device *md, struct dm_io *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440{
441 mempool_free(io, md->io_pool);
442}
443
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100444static void free_tio(struct mapped_device *md, struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
Mikulas Patockadba14162012-10-12 21:02:15 +0100446 bio_put(&tio->clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447}
448
Kiyoshi Ueda08885642009-12-10 23:52:15 +0000449static struct dm_rq_target_io *alloc_rq_tio(struct mapped_device *md,
450 gfp_t gfp_mask)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100451{
Jun'ichi Nomura5f015202013-03-01 22:45:48 +0000452 return mempool_alloc(md->io_pool, gfp_mask);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100453}
454
455static void free_rq_tio(struct dm_rq_target_io *tio)
456{
Jun'ichi Nomura5f015202013-03-01 22:45:48 +0000457 mempool_free(tio, tio->md->io_pool);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100458}
459
Kiyoshi Ueda90abb8c2009-12-10 23:52:13 +0000460static int md_in_flight(struct mapped_device *md)
461{
462 return atomic_read(&md->pending[READ]) +
463 atomic_read(&md->pending[WRITE]);
464}
465
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800466static void start_io_acct(struct dm_io *io)
467{
468 struct mapped_device *md = io->md;
Tejun Heoc9959052008-08-25 19:47:21 +0900469 int cpu;
Nikanth Karthikesan316d3152009-10-06 20:16:55 +0200470 int rw = bio_data_dir(io->bio);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800471
472 io->start_time = jiffies;
473
Tejun Heo074a7ac2008-08-25 19:56:14 +0900474 cpu = part_stat_lock();
475 part_round_stats(cpu, &dm_disk(md)->part0);
476 part_stat_unlock();
Shaohua Li1e9bb882011-03-22 08:35:35 +0100477 atomic_set(&dm_disk(md)->part0.in_flight[rw],
478 atomic_inc_return(&md->pending[rw]));
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800479}
480
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000481static void end_io_acct(struct dm_io *io)
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800482{
483 struct mapped_device *md = io->md;
484 struct bio *bio = io->bio;
485 unsigned long duration = jiffies - io->start_time;
Tejun Heoc9959052008-08-25 19:47:21 +0900486 int pending, cpu;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800487 int rw = bio_data_dir(bio);
488
Tejun Heo074a7ac2008-08-25 19:56:14 +0900489 cpu = part_stat_lock();
490 part_round_stats(cpu, &dm_disk(md)->part0);
491 part_stat_add(cpu, &dm_disk(md)->part0, ticks[rw], duration);
492 part_stat_unlock();
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800493
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100494 /*
495 * After this is decremented the bio must not be touched if it is
Tejun Heod87f4c12010-09-03 11:56:19 +0200496 * a flush.
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100497 */
Shaohua Li1e9bb882011-03-22 08:35:35 +0100498 pending = atomic_dec_return(&md->pending[rw]);
499 atomic_set(&dm_disk(md)->part0.in_flight[rw], pending);
Nikanth Karthikesan316d3152009-10-06 20:16:55 +0200500 pending += atomic_read(&md->pending[rw^0x1]);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800501
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000502 /* nudge anyone waiting on suspend queue */
503 if (!pending)
504 wake_up(&md->wait);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800505}
506
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507/*
508 * Add the bio to the list of deferred io.
509 */
Mikulas Patocka92c63902009-04-09 00:27:15 +0100510static void queue_io(struct mapped_device *md, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511{
Kiyoshi Ueda054474202010-09-08 18:07:01 +0200512 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Kiyoshi Ueda054474202010-09-08 18:07:01 +0200514 spin_lock_irqsave(&md->deferred_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 bio_list_add(&md->deferred, bio);
Kiyoshi Ueda054474202010-09-08 18:07:01 +0200516 spin_unlock_irqrestore(&md->deferred_lock, flags);
Tejun Heo6a8736d2010-09-08 18:07:00 +0200517 queue_work(md->wq, &md->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518}
519
520/*
521 * Everyone (including functions in this file), should use this
522 * function to access the md->map field, and make sure they call
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100523 * dm_put_live_table() when finished.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 */
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100525struct dm_table *dm_get_live_table(struct mapped_device *md, int *srcu_idx) __acquires(md->io_barrier)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526{
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100527 *srcu_idx = srcu_read_lock(&md->io_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100529 return srcu_dereference(md->map, &md->io_barrier);
530}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100532void dm_put_live_table(struct mapped_device *md, int srcu_idx) __releases(md->io_barrier)
533{
534 srcu_read_unlock(&md->io_barrier, srcu_idx);
535}
536
537void dm_sync_table(struct mapped_device *md)
538{
539 synchronize_srcu(&md->io_barrier);
540 synchronize_rcu_expedited();
541}
542
543/*
544 * A fast alternative to dm_get_live_table/dm_put_live_table.
545 * The caller must not block between these two functions.
546 */
547static struct dm_table *dm_get_live_table_fast(struct mapped_device *md) __acquires(RCU)
548{
549 rcu_read_lock();
550 return rcu_dereference(md->map);
551}
552
553static void dm_put_live_table_fast(struct mapped_device *md) __releases(RCU)
554{
555 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556}
557
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800558/*
559 * Get the geometry associated with a dm device
560 */
561int dm_get_geometry(struct mapped_device *md, struct hd_geometry *geo)
562{
563 *geo = md->geometry;
564
565 return 0;
566}
567
568/*
569 * Set the geometry of a device.
570 */
571int dm_set_geometry(struct mapped_device *md, struct hd_geometry *geo)
572{
573 sector_t sz = (sector_t)geo->cylinders * geo->heads * geo->sectors;
574
575 if (geo->start > sz) {
576 DMWARN("Start sector is beyond the geometry limits.");
577 return -EINVAL;
578 }
579
580 md->geometry = *geo;
581
582 return 0;
583}
584
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585/*-----------------------------------------------------------------
586 * CRUD START:
587 * A more elegant soln is in the works that uses the queue
588 * merge fn, unfortunately there are a couple of changes to
589 * the block layer that I want to make for this. So in the
590 * interests of getting something for people to use I give
591 * you this clearly demarcated crap.
592 *---------------------------------------------------------------*/
593
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800594static int __noflush_suspending(struct mapped_device *md)
595{
596 return test_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
597}
598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599/*
600 * Decrements the number of outstanding ios that a bio has been
601 * cloned into, completing the original io if necc.
602 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800603static void dec_pending(struct dm_io *io, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604{
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800605 unsigned long flags;
Milan Brozb35f8ca2009-03-16 17:44:36 +0000606 int io_error;
607 struct bio *bio;
608 struct mapped_device *md = io->md;
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800609
610 /* Push-back supersedes any I/O errors */
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +0100611 if (unlikely(error)) {
612 spin_lock_irqsave(&io->endio_lock, flags);
613 if (!(io->error > 0 && __noflush_suspending(md)))
614 io->error = error;
615 spin_unlock_irqrestore(&io->endio_lock, flags);
616 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
618 if (atomic_dec_and_test(&io->io_count)) {
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800619 if (io->error == DM_ENDIO_REQUEUE) {
620 /*
621 * Target requested pushing back the I/O.
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800622 */
Mikulas Patocka022c2612009-04-02 19:55:39 +0100623 spin_lock_irqsave(&md->deferred_lock, flags);
Tejun Heo6a8736d2010-09-08 18:07:00 +0200624 if (__noflush_suspending(md))
625 bio_list_add_head(&md->deferred, io->bio);
626 else
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800627 /* noflush suspend was interrupted. */
628 io->error = -EIO;
Mikulas Patocka022c2612009-04-02 19:55:39 +0100629 spin_unlock_irqrestore(&md->deferred_lock, flags);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800630 }
631
Milan Brozb35f8ca2009-03-16 17:44:36 +0000632 io_error = io->error;
633 bio = io->bio;
Tejun Heo6a8736d2010-09-08 18:07:00 +0200634 end_io_acct(io);
635 free_io(md, io);
Jens Axboe2056a782006-03-23 20:00:26 +0100636
Tejun Heo6a8736d2010-09-08 18:07:00 +0200637 if (io_error == DM_ENDIO_REQUEUE)
638 return;
639
Mike Snitzerb372d362010-09-08 18:07:01 +0200640 if ((bio->bi_rw & REQ_FLUSH) && bio->bi_size) {
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100641 /*
Tejun Heo6a8736d2010-09-08 18:07:00 +0200642 * Preflush done for flush with data, reissue
643 * without REQ_FLUSH.
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100644 */
Tejun Heo6a8736d2010-09-08 18:07:00 +0200645 bio->bi_rw &= ~REQ_FLUSH;
646 queue_io(md, bio);
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100647 } else {
Mike Snitzerb372d362010-09-08 18:07:01 +0200648 /* done with normal IO or empty flush */
Linus Torvalds0a82a8d2013-04-18 09:00:26 -0700649 trace_block_bio_complete(md->queue, bio, io_error);
Mike Snitzerb372d362010-09-08 18:07:01 +0200650 bio_endio(bio, io_error);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800651 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 }
653}
654
NeilBrown6712ecf2007-09-27 12:47:43 +0200655static void clone_endio(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656{
657 int r = 0;
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100658 struct dm_target_io *tio = bio->bi_private;
Milan Brozb35f8ca2009-03-16 17:44:36 +0000659 struct dm_io *io = tio->io;
Stefan Bader9faf4002006-10-03 01:15:41 -0700660 struct mapped_device *md = tio->io->md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 dm_endio_fn endio = tio->ti->type->end_io;
662
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 if (!bio_flagged(bio, BIO_UPTODATE) && !error)
664 error = -EIO;
665
666 if (endio) {
Mikulas Patocka7de3ee52012-12-21 20:23:41 +0000667 r = endio(tio->ti, bio, error);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800668 if (r < 0 || r == DM_ENDIO_REQUEUE)
669 /*
670 * error and requeue request are handled
671 * in dec_pending().
672 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 error = r;
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800674 else if (r == DM_ENDIO_INCOMPLETE)
675 /* The target will handle the io */
NeilBrown6712ecf2007-09-27 12:47:43 +0200676 return;
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800677 else if (r) {
678 DMWARN("unimplemented target endio return value: %d", r);
679 BUG();
680 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 }
682
Stefan Bader9faf4002006-10-03 01:15:41 -0700683 free_tio(md, tio);
Milan Brozb35f8ca2009-03-16 17:44:36 +0000684 dec_pending(io, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685}
686
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100687/*
688 * Partial completion handling for request-based dm
689 */
690static void end_clone_bio(struct bio *clone, int error)
691{
692 struct dm_rq_clone_bio_info *info = clone->bi_private;
693 struct dm_rq_target_io *tio = info->tio;
694 struct bio *bio = info->orig;
695 unsigned int nr_bytes = info->orig->bi_size;
696
697 bio_put(clone);
698
699 if (tio->error)
700 /*
701 * An error has already been detected on the request.
702 * Once error occurred, just let clone->end_io() handle
703 * the remainder.
704 */
705 return;
706 else if (error) {
707 /*
708 * Don't notice the error to the upper layer yet.
709 * The error handling decision is made by the target driver,
710 * when the request is completed.
711 */
712 tio->error = error;
713 return;
714 }
715
716 /*
717 * I/O for the bio successfully completed.
718 * Notice the data completion to the upper layer.
719 */
720
721 /*
722 * bios are processed from the head of the list.
723 * So the completing bio should always be rq->bio.
724 * If it's not, something wrong is happening.
725 */
726 if (tio->orig->bio != bio)
727 DMERR("bio completion is going in the middle of the request");
728
729 /*
730 * Update the original request.
731 * Do not use blk_end_request() here, because it may complete
732 * the original request before the clone, and break the ordering.
733 */
734 blk_update_request(tio->orig, 0, nr_bytes);
735}
736
737/*
738 * Don't touch any member of the md after calling this function because
739 * the md may be freed in dm_put() at the end of this function.
740 * Or do dm_get() before calling this function and dm_put() later.
741 */
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +0000742static void rq_completed(struct mapped_device *md, int rw, int run_queue)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100743{
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +0000744 atomic_dec(&md->pending[rw]);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100745
746 /* nudge anyone waiting on suspend queue */
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +0000747 if (!md_in_flight(md))
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100748 wake_up(&md->wait);
749
Jens Axboea8c32a52012-11-06 12:24:26 +0100750 /*
751 * Run this off this callpath, as drivers could invoke end_io while
752 * inside their request_fn (and holding the queue lock). Calling
753 * back into ->request_fn() could deadlock attempting to grab the
754 * queue lock again.
755 */
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100756 if (run_queue)
Jens Axboea8c32a52012-11-06 12:24:26 +0100757 blk_run_queue_async(md->queue);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100758
759 /*
760 * dm_put() must be at the end of this function. See the comment above
761 */
762 dm_put(md);
763}
764
Kiyoshi Uedaa77e28c2009-09-04 20:40:16 +0100765static void free_rq_clone(struct request *clone)
766{
767 struct dm_rq_target_io *tio = clone->end_io_data;
768
769 blk_rq_unprep_clone(clone);
770 free_rq_tio(tio);
771}
772
Kiyoshi Ueda980691e2009-12-10 23:52:17 +0000773/*
774 * Complete the clone and the original request.
775 * Must be called without queue lock.
776 */
777static void dm_end_request(struct request *clone, int error)
778{
779 int rw = rq_data_dir(clone);
780 struct dm_rq_target_io *tio = clone->end_io_data;
781 struct mapped_device *md = tio->md;
782 struct request *rq = tio->orig;
783
Tejun Heo29e40132010-09-08 18:07:00 +0200784 if (rq->cmd_type == REQ_TYPE_BLOCK_PC) {
Kiyoshi Ueda980691e2009-12-10 23:52:17 +0000785 rq->errors = clone->errors;
786 rq->resid_len = clone->resid_len;
787
788 if (rq->sense)
789 /*
790 * We are using the sense buffer of the original
791 * request.
792 * So setting the length of the sense data is enough.
793 */
794 rq->sense_len = clone->sense_len;
795 }
796
797 free_rq_clone(clone);
Tejun Heo29e40132010-09-08 18:07:00 +0200798 blk_end_request_all(rq, error);
799 rq_completed(md, rw, true);
Kiyoshi Ueda980691e2009-12-10 23:52:17 +0000800}
801
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100802static void dm_unprep_request(struct request *rq)
803{
804 struct request *clone = rq->special;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100805
806 rq->special = NULL;
807 rq->cmd_flags &= ~REQ_DONTPREP;
808
Kiyoshi Uedaa77e28c2009-09-04 20:40:16 +0100809 free_rq_clone(clone);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100810}
811
812/*
813 * Requeue the original request of a clone.
814 */
815void dm_requeue_unmapped_request(struct request *clone)
816{
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +0000817 int rw = rq_data_dir(clone);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100818 struct dm_rq_target_io *tio = clone->end_io_data;
819 struct mapped_device *md = tio->md;
820 struct request *rq = tio->orig;
821 struct request_queue *q = rq->q;
822 unsigned long flags;
823
824 dm_unprep_request(rq);
825
826 spin_lock_irqsave(q->queue_lock, flags);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100827 blk_requeue_request(q, rq);
828 spin_unlock_irqrestore(q->queue_lock, flags);
829
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +0000830 rq_completed(md, rw, 0);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100831}
832EXPORT_SYMBOL_GPL(dm_requeue_unmapped_request);
833
834static void __stop_queue(struct request_queue *q)
835{
836 blk_stop_queue(q);
837}
838
839static void stop_queue(struct request_queue *q)
840{
841 unsigned long flags;
842
843 spin_lock_irqsave(q->queue_lock, flags);
844 __stop_queue(q);
845 spin_unlock_irqrestore(q->queue_lock, flags);
846}
847
848static void __start_queue(struct request_queue *q)
849{
850 if (blk_queue_stopped(q))
851 blk_start_queue(q);
852}
853
854static void start_queue(struct request_queue *q)
855{
856 unsigned long flags;
857
858 spin_lock_irqsave(q->queue_lock, flags);
859 __start_queue(q);
860 spin_unlock_irqrestore(q->queue_lock, flags);
861}
862
Kiyoshi Ueda11a68242009-12-10 23:52:17 +0000863static void dm_done(struct request *clone, int error, bool mapped)
864{
865 int r = error;
866 struct dm_rq_target_io *tio = clone->end_io_data;
Mike Snitzerba1cbad2012-09-26 23:45:42 +0100867 dm_request_endio_fn rq_end_io = NULL;
Kiyoshi Ueda11a68242009-12-10 23:52:17 +0000868
Mike Snitzerba1cbad2012-09-26 23:45:42 +0100869 if (tio->ti) {
870 rq_end_io = tio->ti->type->rq_end_io;
871
872 if (mapped && rq_end_io)
873 r = rq_end_io(tio->ti, clone, error, &tio->info);
874 }
Kiyoshi Ueda11a68242009-12-10 23:52:17 +0000875
876 if (r <= 0)
877 /* The target wants to complete the I/O */
878 dm_end_request(clone, r);
879 else if (r == DM_ENDIO_INCOMPLETE)
880 /* The target will handle the I/O */
881 return;
882 else if (r == DM_ENDIO_REQUEUE)
883 /* The target wants to requeue the I/O */
884 dm_requeue_unmapped_request(clone);
885 else {
886 DMWARN("unimplemented target endio return value: %d", r);
887 BUG();
888 }
889}
890
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100891/*
892 * Request completion handler for request-based dm
893 */
894static void dm_softirq_done(struct request *rq)
895{
Kiyoshi Ueda11a68242009-12-10 23:52:17 +0000896 bool mapped = true;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100897 struct request *clone = rq->completion_data;
898 struct dm_rq_target_io *tio = clone->end_io_data;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100899
Kiyoshi Ueda11a68242009-12-10 23:52:17 +0000900 if (rq->cmd_flags & REQ_FAILED)
901 mapped = false;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100902
Kiyoshi Ueda11a68242009-12-10 23:52:17 +0000903 dm_done(clone, tio->error, mapped);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100904}
905
906/*
907 * Complete the clone and the original request with the error status
908 * through softirq context.
909 */
910static void dm_complete_request(struct request *clone, int error)
911{
912 struct dm_rq_target_io *tio = clone->end_io_data;
913 struct request *rq = tio->orig;
914
915 tio->error = error;
916 rq->completion_data = clone;
917 blk_complete_request(rq);
918}
919
920/*
921 * Complete the not-mapped clone and the original request with the error status
922 * through softirq context.
923 * Target's rq_end_io() function isn't called.
924 * This may be used when the target's map_rq() function fails.
925 */
926void dm_kill_unmapped_request(struct request *clone, int error)
927{
928 struct dm_rq_target_io *tio = clone->end_io_data;
929 struct request *rq = tio->orig;
930
931 rq->cmd_flags |= REQ_FAILED;
932 dm_complete_request(clone, error);
933}
934EXPORT_SYMBOL_GPL(dm_kill_unmapped_request);
935
936/*
937 * Called with the queue lock held
938 */
939static void end_clone_request(struct request *clone, int error)
940{
941 /*
942 * For just cleaning up the information of the queue in which
943 * the clone was dispatched.
944 * The clone is *NOT* freed actually here because it is alloced from
945 * dm own mempool and REQ_ALLOCED isn't set in clone->cmd_flags.
946 */
947 __blk_put_request(clone->q, clone);
948
949 /*
950 * Actual request completion is done in a softirq context which doesn't
951 * hold the queue lock. Otherwise, deadlock could occur because:
952 * - another request may be submitted by the upper level driver
953 * of the stacking during the completion
954 * - the submission which requires queue lock may be done
955 * against this queue
956 */
957 dm_complete_request(clone, error);
958}
959
Mike Snitzer56a67df2010-08-12 04:14:10 +0100960/*
961 * Return maximum size of I/O possible at the supplied sector up to the current
962 * target boundary.
963 */
964static sector_t max_io_len_target_boundary(sector_t sector, struct dm_target *ti)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965{
Mike Snitzer56a67df2010-08-12 04:14:10 +0100966 sector_t target_offset = dm_target_offset(ti, sector);
967
968 return ti->len - target_offset;
969}
970
971static sector_t max_io_len(sector_t sector, struct dm_target *ti)
972{
973 sector_t len = max_io_len_target_boundary(sector, ti);
Mike Snitzer542f9032012-07-27 15:08:00 +0100974 sector_t offset, max_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
976 /*
Mike Snitzer542f9032012-07-27 15:08:00 +0100977 * Does the target need to split even further?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 */
Mike Snitzer542f9032012-07-27 15:08:00 +0100979 if (ti->max_io_len) {
980 offset = dm_target_offset(ti, sector);
981 if (unlikely(ti->max_io_len & (ti->max_io_len - 1)))
982 max_len = sector_div(offset, ti->max_io_len);
983 else
984 max_len = offset & (ti->max_io_len - 1);
985 max_len = ti->max_io_len - max_len;
986
987 if (len > max_len)
988 len = max_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 }
990
991 return len;
992}
993
Mike Snitzer542f9032012-07-27 15:08:00 +0100994int dm_set_target_max_io_len(struct dm_target *ti, sector_t len)
995{
996 if (len > UINT_MAX) {
997 DMERR("Specified maximum size of target IO (%llu) exceeds limit (%u)",
998 (unsigned long long)len, UINT_MAX);
999 ti->error = "Maximum size of target IO is too large";
1000 return -EINVAL;
1001 }
1002
1003 ti->max_io_len = (uint32_t) len;
1004
1005 return 0;
1006}
1007EXPORT_SYMBOL_GPL(dm_set_target_max_io_len);
1008
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001009static void __map_bio(struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010{
1011 int r;
Jens Axboe2056a782006-03-23 20:00:26 +01001012 sector_t sector;
Stefan Bader9faf4002006-10-03 01:15:41 -07001013 struct mapped_device *md;
Mikulas Patockadba14162012-10-12 21:02:15 +01001014 struct bio *clone = &tio->clone;
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001015 struct dm_target *ti = tio->ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 clone->bi_end_io = clone_endio;
1018 clone->bi_private = tio;
1019
1020 /*
1021 * Map the clone. If r == 0 we don't need to do
1022 * anything, the target has assumed ownership of
1023 * this io.
1024 */
1025 atomic_inc(&tio->io->io_count);
Jens Axboe2056a782006-03-23 20:00:26 +01001026 sector = clone->bi_sector;
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00001027 r = ti->type->map(ti, clone);
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -08001028 if (r == DM_MAPIO_REMAPPED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 /* the bio has been remapped so dispatch it */
Jens Axboe2056a782006-03-23 20:00:26 +01001030
Mike Snitzerd07335e2010-11-16 12:52:38 +01001031 trace_block_bio_remap(bdev_get_queue(clone->bi_bdev), clone,
1032 tio->io->bio->bi_bdev->bd_dev, sector);
Jens Axboe2056a782006-03-23 20:00:26 +01001033
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 generic_make_request(clone);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001035 } else if (r < 0 || r == DM_MAPIO_REQUEUE) {
1036 /* error the io and bail out, or requeue it if needed */
Stefan Bader9faf4002006-10-03 01:15:41 -07001037 md = tio->io->md;
1038 dec_pending(tio->io, r);
Stefan Bader9faf4002006-10-03 01:15:41 -07001039 free_tio(md, tio);
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -08001040 } else if (r) {
1041 DMWARN("unimplemented target map return value: %d", r);
1042 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 }
1044}
1045
1046struct clone_info {
1047 struct mapped_device *md;
1048 struct dm_table *map;
1049 struct bio *bio;
1050 struct dm_io *io;
1051 sector_t sector;
1052 sector_t sector_count;
1053 unsigned short idx;
1054};
1055
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001056static void bio_setup_sector(struct bio *bio, sector_t sector, sector_t len)
1057{
1058 bio->bi_sector = sector;
1059 bio->bi_size = to_bytes(len);
1060}
1061
1062static void bio_setup_bv(struct bio *bio, unsigned short idx, unsigned short bv_count)
1063{
1064 bio->bi_idx = idx;
1065 bio->bi_vcnt = idx + bv_count;
1066 bio->bi_flags &= ~(1 << BIO_SEG_VALID);
1067}
1068
1069static void clone_bio_integrity(struct bio *bio, struct bio *clone,
1070 unsigned short idx, unsigned len, unsigned offset,
1071 unsigned trim)
1072{
1073 if (!bio_integrity(bio))
1074 return;
1075
1076 bio_integrity_clone(clone, bio, GFP_NOIO);
1077
1078 if (trim)
1079 bio_integrity_trim(clone, bio_sector_offset(bio, idx, offset), len);
1080}
1081
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082/*
Tejun Heod87f4c12010-09-03 11:56:19 +02001083 * Creates a little bio that just does part of a bvec.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 */
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001085static void clone_split_bio(struct dm_target_io *tio, struct bio *bio,
1086 sector_t sector, unsigned short idx,
1087 unsigned offset, unsigned len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088{
Mikulas Patockadba14162012-10-12 21:02:15 +01001089 struct bio *clone = &tio->clone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 struct bio_vec *bv = bio->bi_io_vec + idx;
1091
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 *clone->bi_io_vec = *bv;
1093
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001094 bio_setup_sector(clone, sector, len);
1095
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 clone->bi_bdev = bio->bi_bdev;
Tejun Heod87f4c12010-09-03 11:56:19 +02001097 clone->bi_rw = bio->bi_rw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 clone->bi_vcnt = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 clone->bi_io_vec->bv_offset = offset;
1100 clone->bi_io_vec->bv_len = clone->bi_size;
Martin K. Petersenf3e1d262008-10-21 17:45:04 +01001101 clone->bi_flags |= 1 << BIO_CLONED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001103 clone_bio_integrity(bio, clone, idx, len, offset, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104}
1105
1106/*
1107 * Creates a bio that consists of range of complete bvecs.
1108 */
Mikulas Patockadba14162012-10-12 21:02:15 +01001109static void clone_bio(struct dm_target_io *tio, struct bio *bio,
1110 sector_t sector, unsigned short idx,
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001111 unsigned short bv_count, unsigned len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112{
Mikulas Patockadba14162012-10-12 21:02:15 +01001113 struct bio *clone = &tio->clone;
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001114 unsigned trim = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
Stefan Bader9faf4002006-10-03 01:15:41 -07001116 __bio_clone(clone, bio);
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001117 bio_setup_sector(clone, sector, len);
1118 bio_setup_bv(clone, idx, bv_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001120 if (idx != bio->bi_idx || clone->bi_size < bio->bi_size)
1121 trim = 1;
1122 clone_bio_integrity(bio, clone, idx, len, 0, trim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123}
1124
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001125static struct dm_target_io *alloc_tio(struct clone_info *ci,
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001126 struct dm_target *ti, int nr_iovecs,
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001127 unsigned target_bio_nr)
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001128{
Mikulas Patockadba14162012-10-12 21:02:15 +01001129 struct dm_target_io *tio;
1130 struct bio *clone;
1131
1132 clone = bio_alloc_bioset(GFP_NOIO, nr_iovecs, ci->md->bs);
1133 tio = container_of(clone, struct dm_target_io, clone);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001134
1135 tio->io = ci->io;
1136 tio->ti = ti;
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001137 memset(&tio->info, 0, sizeof(tio->info));
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001138 tio->target_bio_nr = target_bio_nr;
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001139
1140 return tio;
1141}
1142
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001143static void __clone_and_map_simple_bio(struct clone_info *ci,
1144 struct dm_target *ti,
1145 unsigned target_bio_nr, sector_t len)
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001146{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001147 struct dm_target_io *tio = alloc_tio(ci, ti, ci->bio->bi_max_vecs, target_bio_nr);
Mikulas Patockadba14162012-10-12 21:02:15 +01001148 struct bio *clone = &tio->clone;
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001149
Mike Snitzer06a426c2010-08-12 04:14:09 +01001150 /*
1151 * Discard requests require the bio's inline iovecs be initialized.
1152 * ci->bio->bi_max_vecs is BIO_INLINE_VECS anyway, for both flush
1153 * and discard, so no need for concern about wasted bvec allocations.
1154 */
Mikulas Patockadba14162012-10-12 21:02:15 +01001155 __bio_clone(clone, ci->bio);
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001156 if (len)
1157 bio_setup_sector(clone, ci->sector, len);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001158
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001159 __map_bio(tio);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001160}
1161
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001162static void __send_duplicate_bios(struct clone_info *ci, struct dm_target *ti,
1163 unsigned num_bios, sector_t len)
Mike Snitzer06a426c2010-08-12 04:14:09 +01001164{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001165 unsigned target_bio_nr;
Mike Snitzer06a426c2010-08-12 04:14:09 +01001166
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001167 for (target_bio_nr = 0; target_bio_nr < num_bios; target_bio_nr++)
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001168 __clone_and_map_simple_bio(ci, ti, target_bio_nr, len);
Mike Snitzer06a426c2010-08-12 04:14:09 +01001169}
1170
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001171static int __send_empty_flush(struct clone_info *ci)
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001172{
Mike Snitzer06a426c2010-08-12 04:14:09 +01001173 unsigned target_nr = 0;
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001174 struct dm_target *ti;
1175
Mike Snitzerb372d362010-09-08 18:07:01 +02001176 BUG_ON(bio_has_data(ci->bio));
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001177 while ((ti = dm_table_get_target(ci->map, target_nr++)))
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001178 __send_duplicate_bios(ci, ti, ti->num_flush_bios, 0);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001179
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001180 return 0;
1181}
1182
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001183static void __clone_and_map_data_bio(struct clone_info *ci, struct dm_target *ti,
1184 sector_t sector, int nr_iovecs,
1185 unsigned short idx, unsigned short bv_count,
1186 unsigned offset, unsigned len,
1187 unsigned split_bvec)
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001188{
Mikulas Patockadba14162012-10-12 21:02:15 +01001189 struct bio *bio = ci->bio;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001190 struct dm_target_io *tio;
Alasdair G Kergonb0d8ed42013-03-01 22:45:49 +00001191 unsigned target_bio_nr;
1192 unsigned num_target_bios = 1;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001193
Alasdair G Kergonb0d8ed42013-03-01 22:45:49 +00001194 /*
1195 * Does the target want to receive duplicate copies of the bio?
1196 */
1197 if (bio_data_dir(bio) == WRITE && ti->num_write_bios)
1198 num_target_bios = ti->num_write_bios(ti, bio);
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001199
Alasdair G Kergonb0d8ed42013-03-01 22:45:49 +00001200 for (target_bio_nr = 0; target_bio_nr < num_target_bios; target_bio_nr++) {
1201 tio = alloc_tio(ci, ti, nr_iovecs, target_bio_nr);
1202 if (split_bvec)
1203 clone_split_bio(tio, bio, sector, idx, offset, len);
1204 else
1205 clone_bio(tio, bio, sector, idx, bv_count, len);
1206 __map_bio(tio);
1207 }
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001208}
1209
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001210typedef unsigned (*get_num_bios_fn)(struct dm_target *ti);
Mike Snitzer23508a92012-12-21 20:23:37 +00001211
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001212static unsigned get_num_discard_bios(struct dm_target *ti)
Mike Snitzer23508a92012-12-21 20:23:37 +00001213{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001214 return ti->num_discard_bios;
Mike Snitzer23508a92012-12-21 20:23:37 +00001215}
1216
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001217static unsigned get_num_write_same_bios(struct dm_target *ti)
Mike Snitzer23508a92012-12-21 20:23:37 +00001218{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001219 return ti->num_write_same_bios;
Mike Snitzer23508a92012-12-21 20:23:37 +00001220}
1221
1222typedef bool (*is_split_required_fn)(struct dm_target *ti);
1223
1224static bool is_split_required_for_discard(struct dm_target *ti)
1225{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001226 return ti->split_discard_bios;
Mike Snitzer23508a92012-12-21 20:23:37 +00001227}
1228
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001229static int __send_changing_extent_only(struct clone_info *ci,
1230 get_num_bios_fn get_num_bios,
1231 is_split_required_fn is_split_required)
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001232{
1233 struct dm_target *ti;
Mike Snitzera79245b2010-08-12 04:14:24 +01001234 sector_t len;
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001235 unsigned num_bios;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001236
Mike Snitzera79245b2010-08-12 04:14:24 +01001237 do {
1238 ti = dm_table_find_target(ci->map, ci->sector);
1239 if (!dm_target_is_valid(ti))
1240 return -EIO;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001241
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001242 /*
Mike Snitzer23508a92012-12-21 20:23:37 +00001243 * Even though the device advertised support for this type of
1244 * request, that does not mean every target supports it, and
Mike Snitzer936688d2011-08-02 12:32:01 +01001245 * reconfiguration might also have changed that since the
Mike Snitzera79245b2010-08-12 04:14:24 +01001246 * check was performed.
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001247 */
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001248 num_bios = get_num_bios ? get_num_bios(ti) : 0;
1249 if (!num_bios)
Mike Snitzera79245b2010-08-12 04:14:24 +01001250 return -EOPNOTSUPP;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001251
Mike Snitzer23508a92012-12-21 20:23:37 +00001252 if (is_split_required && !is_split_required(ti))
Mikulas Patocka7acf0272012-07-27 15:08:03 +01001253 len = min(ci->sector_count, max_io_len_target_boundary(ci->sector, ti));
1254 else
1255 len = min(ci->sector_count, max_io_len(ci->sector, ti));
Mike Snitzer06a426c2010-08-12 04:14:09 +01001256
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001257 __send_duplicate_bios(ci, ti, num_bios, len);
Mike Snitzera79245b2010-08-12 04:14:24 +01001258
1259 ci->sector += len;
1260 } while (ci->sector_count -= len);
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001261
1262 return 0;
1263}
1264
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001265static int __send_discard(struct clone_info *ci)
Mike Snitzer23508a92012-12-21 20:23:37 +00001266{
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001267 return __send_changing_extent_only(ci, get_num_discard_bios,
1268 is_split_required_for_discard);
Mike Snitzer23508a92012-12-21 20:23:37 +00001269}
1270
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001271static int __send_write_same(struct clone_info *ci)
Mike Snitzer23508a92012-12-21 20:23:37 +00001272{
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001273 return __send_changing_extent_only(ci, get_num_write_same_bios, NULL);
Mike Snitzer23508a92012-12-21 20:23:37 +00001274}
1275
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001276/*
1277 * Find maximum number of sectors / bvecs we can process with a single bio.
1278 */
1279static sector_t __len_within_target(struct clone_info *ci, sector_t max, int *idx)
1280{
1281 struct bio *bio = ci->bio;
1282 sector_t bv_len, total_len = 0;
1283
1284 for (*idx = ci->idx; max && (*idx < bio->bi_vcnt); (*idx)++) {
1285 bv_len = to_sector(bio->bi_io_vec[*idx].bv_len);
1286
1287 if (bv_len > max)
1288 break;
1289
1290 max -= bv_len;
1291 total_len += bv_len;
1292 }
1293
1294 return total_len;
1295}
1296
1297static int __split_bvec_across_targets(struct clone_info *ci,
1298 struct dm_target *ti, sector_t max)
1299{
1300 struct bio *bio = ci->bio;
1301 struct bio_vec *bv = bio->bi_io_vec + ci->idx;
1302 sector_t remaining = to_sector(bv->bv_len);
1303 unsigned offset = 0;
1304 sector_t len;
1305
1306 do {
1307 if (offset) {
1308 ti = dm_table_find_target(ci->map, ci->sector);
1309 if (!dm_target_is_valid(ti))
1310 return -EIO;
1311
1312 max = max_io_len(ci->sector, ti);
1313 }
1314
1315 len = min(remaining, max);
1316
1317 __clone_and_map_data_bio(ci, ti, ci->sector, 1, ci->idx, 0,
1318 bv->bv_offset + offset, len, 1);
1319
1320 ci->sector += len;
1321 ci->sector_count -= len;
1322 offset += to_bytes(len);
1323 } while (remaining -= len);
1324
1325 ci->idx++;
1326
1327 return 0;
1328}
1329
1330/*
1331 * Select the correct strategy for processing a non-flush bio.
1332 */
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001333static int __split_and_process_non_flush(struct clone_info *ci)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334{
Mikulas Patockadba14162012-10-12 21:02:15 +01001335 struct bio *bio = ci->bio;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001336 struct dm_target *ti;
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001337 sector_t len, max;
1338 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001340 if (unlikely(bio->bi_rw & REQ_DISCARD))
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001341 return __send_discard(ci);
Mike Snitzer23508a92012-12-21 20:23:37 +00001342 else if (unlikely(bio->bi_rw & REQ_WRITE_SAME))
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001343 return __send_write_same(ci);
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001344
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001345 ti = dm_table_find_target(ci->map, ci->sector);
1346 if (!dm_target_is_valid(ti))
1347 return -EIO;
1348
Mike Snitzer56a67df2010-08-12 04:14:10 +01001349 max = max_io_len(ci->sector, ti);
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001350
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001351 /*
1352 * Optimise for the simple case where we can do all of
1353 * the remaining io with a single clone.
1354 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 if (ci->sector_count <= max) {
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001356 __clone_and_map_data_bio(ci, ti, ci->sector, bio->bi_max_vecs,
1357 ci->idx, bio->bi_vcnt - ci->idx, 0,
1358 ci->sector_count, 0);
1359 ci->sector_count = 0;
1360 return 0;
1361 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001363 /*
1364 * There are some bvecs that don't span targets.
1365 * Do as many of these as possible.
1366 */
1367 if (to_sector(bio->bi_io_vec[ci->idx].bv_len) <= max) {
1368 len = __len_within_target(ci, max, &idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001370 __clone_and_map_data_bio(ci, ti, ci->sector, bio->bi_max_vecs,
1371 ci->idx, idx - ci->idx, 0, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
1373 ci->sector += len;
1374 ci->sector_count -= len;
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001375 ci->idx = idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001377 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 }
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001379
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001380 /*
1381 * Handle a bvec that must be split between two or more targets.
1382 */
1383 return __split_bvec_across_targets(ci, ti, max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384}
1385
1386/*
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001387 * Entry point to split a bio into clones and submit them to the targets.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 */
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001389static void __split_and_process_bio(struct mapped_device *md,
1390 struct dm_table *map, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391{
1392 struct clone_info ci;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001393 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001395 if (unlikely(!map)) {
Tejun Heo6a8736d2010-09-08 18:07:00 +02001396 bio_io_error(bio);
Mikulas Patockaf0b9a452009-04-02 19:55:38 +01001397 return;
1398 }
Mikulas Patocka692d0eb2009-04-09 00:27:13 +01001399
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001400 ci.map = map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 ci.md = md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 ci.io = alloc_io(md);
1403 ci.io->error = 0;
1404 atomic_set(&ci.io->io_count, 1);
1405 ci.io->bio = bio;
1406 ci.io->md = md;
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +01001407 spin_lock_init(&ci.io->endio_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 ci.sector = bio->bi_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 ci.idx = bio->bi_idx;
1410
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -08001411 start_io_acct(ci.io);
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001412
Mike Snitzerb372d362010-09-08 18:07:01 +02001413 if (bio->bi_rw & REQ_FLUSH) {
1414 ci.bio = &ci.md->flush_bio;
1415 ci.sector_count = 0;
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001416 error = __send_empty_flush(&ci);
Mike Snitzerb372d362010-09-08 18:07:01 +02001417 /* dec_pending submits any data associated with flush */
1418 } else {
Tejun Heo6a8736d2010-09-08 18:07:00 +02001419 ci.bio = bio;
Tejun Heod87f4c12010-09-03 11:56:19 +02001420 ci.sector_count = bio_sectors(bio);
Mike Snitzerb372d362010-09-08 18:07:01 +02001421 while (ci.sector_count && !error)
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001422 error = __split_and_process_non_flush(&ci);
Tejun Heod87f4c12010-09-03 11:56:19 +02001423 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
1425 /* drop the extra reference count */
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001426 dec_pending(ci.io, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427}
1428/*-----------------------------------------------------------------
1429 * CRUD END
1430 *---------------------------------------------------------------*/
1431
Milan Brozf6fccb12008-07-21 12:00:37 +01001432static int dm_merge_bvec(struct request_queue *q,
1433 struct bvec_merge_data *bvm,
1434 struct bio_vec *biovec)
1435{
1436 struct mapped_device *md = q->queuedata;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001437 struct dm_table *map = dm_get_live_table_fast(md);
Milan Brozf6fccb12008-07-21 12:00:37 +01001438 struct dm_target *ti;
1439 sector_t max_sectors;
Mikulas Patocka50371082008-10-01 14:39:17 +01001440 int max_size = 0;
Milan Brozf6fccb12008-07-21 12:00:37 +01001441
1442 if (unlikely(!map))
Mikulas Patocka50371082008-10-01 14:39:17 +01001443 goto out;
Milan Brozf6fccb12008-07-21 12:00:37 +01001444
1445 ti = dm_table_find_target(map, bvm->bi_sector);
Mikulas Patockab01cd5a2008-10-01 14:39:24 +01001446 if (!dm_target_is_valid(ti))
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001447 goto out;
Milan Brozf6fccb12008-07-21 12:00:37 +01001448
1449 /*
1450 * Find maximum amount of I/O that won't need splitting
1451 */
Mike Snitzer56a67df2010-08-12 04:14:10 +01001452 max_sectors = min(max_io_len(bvm->bi_sector, ti),
Milan Brozf6fccb12008-07-21 12:00:37 +01001453 (sector_t) BIO_MAX_SECTORS);
1454 max_size = (max_sectors << SECTOR_SHIFT) - bvm->bi_size;
1455 if (max_size < 0)
1456 max_size = 0;
1457
1458 /*
1459 * merge_bvec_fn() returns number of bytes
1460 * it can accept at this offset
1461 * max is precomputed maximal io size
1462 */
1463 if (max_size && ti->type->merge)
1464 max_size = ti->type->merge(ti, bvm, biovec, max_size);
Mikulas Patocka8cbeb672009-06-22 10:12:14 +01001465 /*
1466 * If the target doesn't support merge method and some of the devices
1467 * provided their merge_bvec method (we know this by looking at
1468 * queue_max_hw_sectors), then we can't allow bios with multiple vector
1469 * entries. So always set max_size to 0, and the code below allows
1470 * just one page.
1471 */
1472 else if (queue_max_hw_sectors(q) <= PAGE_SIZE >> 9)
1473
1474 max_size = 0;
Milan Brozf6fccb12008-07-21 12:00:37 +01001475
Mikulas Patocka50371082008-10-01 14:39:17 +01001476out:
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001477 dm_put_live_table_fast(md);
Milan Brozf6fccb12008-07-21 12:00:37 +01001478 /*
1479 * Always allow an entire first page
1480 */
1481 if (max_size <= biovec->bv_len && !(bvm->bi_size >> SECTOR_SHIFT))
1482 max_size = biovec->bv_len;
1483
Milan Brozf6fccb12008-07-21 12:00:37 +01001484 return max_size;
1485}
1486
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487/*
1488 * The request function that just remaps the bio built up by
1489 * dm_merge_bvec.
1490 */
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001491static void _dm_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492{
Kevin Corry12f03a42006-02-01 03:04:52 -08001493 int rw = bio_data_dir(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 struct mapped_device *md = q->queuedata;
Tejun Heoc9959052008-08-25 19:47:21 +09001495 int cpu;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001496 int srcu_idx;
1497 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001499 map = dm_get_live_table(md, &srcu_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500
Tejun Heo074a7ac2008-08-25 19:56:14 +09001501 cpu = part_stat_lock();
1502 part_stat_inc(cpu, &dm_disk(md)->part0, ios[rw]);
1503 part_stat_add(cpu, &dm_disk(md)->part0, sectors[rw], bio_sectors(bio));
1504 part_stat_unlock();
Kevin Corry12f03a42006-02-01 03:04:52 -08001505
Tejun Heo6a8736d2010-09-08 18:07:00 +02001506 /* if we're suspended, we have to queue this io for later */
1507 if (unlikely(test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags))) {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001508 dm_put_live_table(md, srcu_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
Tejun Heo6a8736d2010-09-08 18:07:00 +02001510 if (bio_rw(bio) != READA)
1511 queue_io(md, bio);
1512 else
Alasdair G Kergon54d9a1b2009-04-09 00:27:14 +01001513 bio_io_error(bio);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001514 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 }
1516
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001517 __split_and_process_bio(md, map, bio);
1518 dm_put_live_table(md, srcu_idx);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001519 return;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001520}
1521
1522static int dm_request_based(struct mapped_device *md)
1523{
1524 return blk_queue_stackable(md->queue);
1525}
1526
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001527static void dm_request(struct request_queue *q, struct bio *bio)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001528{
1529 struct mapped_device *md = q->queuedata;
1530
1531 if (dm_request_based(md))
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02001532 blk_queue_bio(q, bio);
1533 else
1534 _dm_request(q, bio);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001535}
1536
1537void dm_dispatch_request(struct request *rq)
1538{
1539 int r;
1540
1541 if (blk_queue_io_stat(rq->q))
1542 rq->cmd_flags |= REQ_IO_STAT;
1543
1544 rq->start_time = jiffies;
1545 r = blk_insert_cloned_request(rq->q, rq);
1546 if (r)
1547 dm_complete_request(rq, r);
1548}
1549EXPORT_SYMBOL_GPL(dm_dispatch_request);
1550
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001551static int dm_rq_bio_constructor(struct bio *bio, struct bio *bio_orig,
1552 void *data)
1553{
1554 struct dm_rq_target_io *tio = data;
Kent Overstreet94818742012-09-07 13:44:01 -07001555 struct dm_rq_clone_bio_info *info =
1556 container_of(bio, struct dm_rq_clone_bio_info, clone);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001557
1558 info->orig = bio_orig;
1559 info->tio = tio;
1560 bio->bi_end_io = end_clone_bio;
1561 bio->bi_private = info;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001562
1563 return 0;
1564}
1565
1566static int setup_clone(struct request *clone, struct request *rq,
1567 struct dm_rq_target_io *tio)
1568{
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00001569 int r;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001570
Tejun Heo29e40132010-09-08 18:07:00 +02001571 r = blk_rq_prep_clone(clone, rq, tio->md->bs, GFP_ATOMIC,
1572 dm_rq_bio_constructor, tio);
1573 if (r)
1574 return r;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001575
Tejun Heo29e40132010-09-08 18:07:00 +02001576 clone->cmd = rq->cmd;
1577 clone->cmd_len = rq->cmd_len;
1578 clone->sense = rq->sense;
1579 clone->buffer = rq->buffer;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001580 clone->end_io = end_clone_request;
1581 clone->end_io_data = tio;
1582
1583 return 0;
1584}
1585
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001586static struct request *clone_rq(struct request *rq, struct mapped_device *md,
1587 gfp_t gfp_mask)
1588{
1589 struct request *clone;
1590 struct dm_rq_target_io *tio;
1591
1592 tio = alloc_rq_tio(md, gfp_mask);
1593 if (!tio)
1594 return NULL;
1595
1596 tio->md = md;
1597 tio->ti = NULL;
1598 tio->orig = rq;
1599 tio->error = 0;
1600 memset(&tio->info, 0, sizeof(tio->info));
1601
1602 clone = &tio->clone;
1603 if (setup_clone(clone, rq, tio)) {
1604 /* -ENOMEM */
1605 free_rq_tio(tio);
1606 return NULL;
1607 }
1608
1609 return clone;
1610}
1611
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001612/*
1613 * Called with the queue lock held.
1614 */
1615static int dm_prep_fn(struct request_queue *q, struct request *rq)
1616{
1617 struct mapped_device *md = q->queuedata;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001618 struct request *clone;
1619
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001620 if (unlikely(rq->special)) {
1621 DMWARN("Already has something in rq->special.");
1622 return BLKPREP_KILL;
1623 }
1624
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001625 clone = clone_rq(rq, md, GFP_ATOMIC);
1626 if (!clone)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001627 return BLKPREP_DEFER;
1628
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001629 rq->special = clone;
1630 rq->cmd_flags |= REQ_DONTPREP;
1631
1632 return BLKPREP_OK;
1633}
1634
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001635/*
1636 * Returns:
1637 * 0 : the request has been processed (not requeued)
1638 * !0 : the request has been requeued
1639 */
1640static int map_request(struct dm_target *ti, struct request *clone,
1641 struct mapped_device *md)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001642{
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001643 int r, requeued = 0;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001644 struct dm_rq_target_io *tio = clone->end_io_data;
1645
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001646 tio->ti = ti;
1647 r = ti->type->map_rq(ti, clone, &tio->info);
1648 switch (r) {
1649 case DM_MAPIO_SUBMITTED:
1650 /* The target has taken the I/O to submit by itself later */
1651 break;
1652 case DM_MAPIO_REMAPPED:
1653 /* The target has remapped the I/O so dispatch it */
Jun'ichi Nomura6db4ccd2009-12-10 23:52:25 +00001654 trace_block_rq_remap(clone->q, clone, disk_devt(dm_disk(md)),
1655 blk_rq_pos(tio->orig));
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001656 dm_dispatch_request(clone);
1657 break;
1658 case DM_MAPIO_REQUEUE:
1659 /* The target wants to requeue the I/O */
1660 dm_requeue_unmapped_request(clone);
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001661 requeued = 1;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001662 break;
1663 default:
1664 if (r > 0) {
1665 DMWARN("unimplemented target map return value: %d", r);
1666 BUG();
1667 }
1668
1669 /* The target wants to complete the I/O */
1670 dm_kill_unmapped_request(clone, r);
1671 break;
1672 }
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001673
1674 return requeued;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001675}
1676
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001677static struct request *dm_start_request(struct mapped_device *md, struct request *orig)
1678{
1679 struct request *clone;
1680
1681 blk_start_request(orig);
1682 clone = orig->special;
1683 atomic_inc(&md->pending[rq_data_dir(clone)]);
1684
1685 /*
1686 * Hold the md reference here for the in-flight I/O.
1687 * We can't rely on the reference count by device opener,
1688 * because the device may be closed during the request completion
1689 * when all bios are completed.
1690 * See the comment in rq_completed() too.
1691 */
1692 dm_get(md);
1693
1694 return clone;
1695}
1696
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001697/*
1698 * q->request_fn for request-based dm.
1699 * Called with the queue lock held.
1700 */
1701static void dm_request_fn(struct request_queue *q)
1702{
1703 struct mapped_device *md = q->queuedata;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001704 int srcu_idx;
1705 struct dm_table *map = dm_get_live_table(md, &srcu_idx);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001706 struct dm_target *ti;
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00001707 struct request *rq, *clone;
Tejun Heo29e40132010-09-08 18:07:00 +02001708 sector_t pos;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001709
1710 /*
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00001711 * For suspend, check blk_queue_stopped() and increment
1712 * ->pending within a single queue_lock not to increment the
1713 * number of in-flight I/Os after the queue is stopped in
1714 * dm_suspend().
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001715 */
Jens Axboe7eaceac2011-03-10 08:52:07 +01001716 while (!blk_queue_stopped(q)) {
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001717 rq = blk_peek_request(q);
1718 if (!rq)
Jens Axboe7eaceac2011-03-10 08:52:07 +01001719 goto delay_and_out;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001720
Tejun Heo29e40132010-09-08 18:07:00 +02001721 /* always use block 0 to find the target for flushes for now */
1722 pos = 0;
1723 if (!(rq->cmd_flags & REQ_FLUSH))
1724 pos = blk_rq_pos(rq);
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00001725
Tejun Heo29e40132010-09-08 18:07:00 +02001726 ti = dm_table_find_target(map, pos);
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001727 if (!dm_target_is_valid(ti)) {
1728 /*
1729 * Must perform setup, that dm_done() requires,
1730 * before calling dm_kill_unmapped_request
1731 */
1732 DMERR_LIMIT("request attempted access beyond the end of device");
1733 clone = dm_start_request(md, rq);
1734 dm_kill_unmapped_request(clone, -EIO);
1735 continue;
1736 }
Tejun Heo29e40132010-09-08 18:07:00 +02001737
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001738 if (ti->type->busy && ti->type->busy(ti))
Jens Axboe7eaceac2011-03-10 08:52:07 +01001739 goto delay_and_out;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001740
Mike Snitzerba1cbad2012-09-26 23:45:42 +01001741 clone = dm_start_request(md, rq);
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00001742
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001743 spin_unlock(q->queue_lock);
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001744 if (map_request(ti, clone, md))
1745 goto requeued;
1746
Kiyoshi Ueda052189a2011-01-13 20:00:00 +00001747 BUG_ON(!irqs_disabled());
1748 spin_lock(q->queue_lock);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001749 }
1750
1751 goto out;
1752
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001753requeued:
Kiyoshi Ueda052189a2011-01-13 20:00:00 +00001754 BUG_ON(!irqs_disabled());
1755 spin_lock(q->queue_lock);
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001756
Jens Axboe7eaceac2011-03-10 08:52:07 +01001757delay_and_out:
1758 blk_delay_queue(q, HZ / 10);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001759out:
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001760 dm_put_live_table(md, srcu_idx);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001761}
1762
1763int dm_underlying_device_busy(struct request_queue *q)
1764{
1765 return blk_lld_busy(q);
1766}
1767EXPORT_SYMBOL_GPL(dm_underlying_device_busy);
1768
1769static int dm_lld_busy(struct request_queue *q)
1770{
1771 int r;
1772 struct mapped_device *md = q->queuedata;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001773 struct dm_table *map = dm_get_live_table_fast(md);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001774
1775 if (!map || test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags))
1776 r = 1;
1777 else
1778 r = dm_table_any_busy_target(map);
1779
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001780 dm_put_live_table_fast(md);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001781
1782 return r;
1783}
1784
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785static int dm_any_congested(void *congested_data, int bdi_bits)
1786{
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00001787 int r = bdi_bits;
1788 struct mapped_device *md = congested_data;
1789 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01001791 if (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001792 map = dm_get_live_table_fast(md);
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00001793 if (map) {
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001794 /*
1795 * Request-based dm cares about only own queue for
1796 * the query about congestion status of request_queue
1797 */
1798 if (dm_request_based(md))
1799 r = md->queue->backing_dev_info.state &
1800 bdi_bits;
1801 else
1802 r = dm_table_any_congested(map, bdi_bits);
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00001803 }
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001804 dm_put_live_table_fast(md);
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00001805 }
1806
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 return r;
1808}
1809
1810/*-----------------------------------------------------------------
1811 * An IDR is used to keep track of allocated minor numbers.
1812 *---------------------------------------------------------------*/
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001813static void free_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814{
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001815 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 idr_remove(&_minor_idr, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001817 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818}
1819
1820/*
1821 * See if the device with a specific minor # is free.
1822 */
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001823static int specific_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824{
Tejun Heoc9d76be2013-02-27 17:04:26 -08001825 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826
1827 if (minor >= (1 << MINORBITS))
1828 return -EINVAL;
1829
Tejun Heoc9d76be2013-02-27 17:04:26 -08001830 idr_preload(GFP_KERNEL);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001831 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832
Tejun Heoc9d76be2013-02-27 17:04:26 -08001833 r = idr_alloc(&_minor_idr, MINOR_ALLOCED, minor, minor + 1, GFP_NOWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001835 spin_unlock(&_minor_lock);
Tejun Heoc9d76be2013-02-27 17:04:26 -08001836 idr_preload_end();
1837 if (r < 0)
1838 return r == -ENOSPC ? -EBUSY : r;
1839 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840}
1841
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001842static int next_free_minor(int *minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843{
Tejun Heoc9d76be2013-02-27 17:04:26 -08001844 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845
Tejun Heoc9d76be2013-02-27 17:04:26 -08001846 idr_preload(GFP_KERNEL);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001847 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848
Tejun Heoc9d76be2013-02-27 17:04:26 -08001849 r = idr_alloc(&_minor_idr, MINOR_ALLOCED, 0, 1 << MINORBITS, GFP_NOWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001851 spin_unlock(&_minor_lock);
Tejun Heoc9d76be2013-02-27 17:04:26 -08001852 idr_preload_end();
1853 if (r < 0)
1854 return r;
1855 *minor = r;
1856 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857}
1858
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07001859static const struct block_device_operations dm_blk_dops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860
Mikulas Patocka53d59142009-04-02 19:55:37 +01001861static void dm_wq_work(struct work_struct *work);
1862
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01001863static void dm_init_md_queue(struct mapped_device *md)
1864{
1865 /*
1866 * Request-based dm devices cannot be stacked on top of bio-based dm
1867 * devices. The type of this dm device has not been decided yet.
1868 * The type is decided at the first table loading time.
1869 * To prevent problematic device stacking, clear the queue flag
1870 * for request stacking support until then.
1871 *
1872 * This queue is new, so no concurrency on the queue_flags.
1873 */
1874 queue_flag_clear_unlocked(QUEUE_FLAG_STACKABLE, md->queue);
1875
1876 md->queue->queuedata = md;
1877 md->queue->backing_dev_info.congested_fn = dm_any_congested;
1878 md->queue->backing_dev_info.congested_data = md;
1879 blk_queue_make_request(md->queue, dm_request);
1880 blk_queue_bounce_limit(md->queue, BLK_BOUNCE_ANY);
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01001881 blk_queue_merge_bvec(md->queue, dm_merge_bvec);
1882}
1883
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884/*
1885 * Allocate and initialise a blank device with a given minor.
1886 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001887static struct mapped_device *alloc_dev(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888{
1889 int r;
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001890 struct mapped_device *md = kzalloc(sizeof(*md), GFP_KERNEL);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001891 void *old_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892
1893 if (!md) {
1894 DMWARN("unable to allocate device, out of memory.");
1895 return NULL;
1896 }
1897
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001898 if (!try_module_get(THIS_MODULE))
Milan Broz6ed7ade2008-02-08 02:10:19 +00001899 goto bad_module_get;
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001900
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 /* get a minor number for the dev */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001902 if (minor == DM_ANY_MINOR)
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001903 r = next_free_minor(&minor);
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001904 else
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001905 r = specific_minor(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 if (r < 0)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001907 goto bad_minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001909 r = init_srcu_struct(&md->io_barrier);
1910 if (r < 0)
1911 goto bad_io_barrier;
1912
Mike Snitzera5664da2010-08-12 04:14:01 +01001913 md->type = DM_TYPE_NONE;
Daniel Walkere61290a2008-02-08 02:10:08 +00001914 mutex_init(&md->suspend_lock);
Mike Snitzera5664da2010-08-12 04:14:01 +01001915 mutex_init(&md->type_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01001916 spin_lock_init(&md->deferred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 atomic_set(&md->holders, 1);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -07001918 atomic_set(&md->open_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 atomic_set(&md->event_nr, 0);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001920 atomic_set(&md->uevent_seq, 0);
1921 INIT_LIST_HEAD(&md->uevent_list);
1922 spin_lock_init(&md->uevent_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01001924 md->queue = blk_alloc_queue(GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 if (!md->queue)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001926 goto bad_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01001928 dm_init_md_queue(md);
Stefan Bader9faf4002006-10-03 01:15:41 -07001929
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 md->disk = alloc_disk(1);
1931 if (!md->disk)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001932 goto bad_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001934 atomic_set(&md->pending[0], 0);
1935 atomic_set(&md->pending[1], 0);
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07001936 init_waitqueue_head(&md->wait);
Mikulas Patocka53d59142009-04-02 19:55:37 +01001937 INIT_WORK(&md->work, dm_wq_work);
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07001938 init_waitqueue_head(&md->eventq);
1939
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 md->disk->major = _major;
1941 md->disk->first_minor = minor;
1942 md->disk->fops = &dm_blk_dops;
1943 md->disk->queue = md->queue;
1944 md->disk->private_data = md;
1945 sprintf(md->disk->disk_name, "dm-%d", minor);
1946 add_disk(md->disk);
Mike Anderson7e51f252006-03-27 01:17:52 -08001947 format_dev_t(md->name, MKDEV(_major, minor));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948
Tejun Heo9c4376d2011-01-13 19:59:58 +00001949 md->wq = alloc_workqueue("kdmflush",
1950 WQ_NON_REENTRANT | WQ_MEM_RECLAIM, 0);
Milan Broz304f3f62008-02-08 02:11:17 +00001951 if (!md->wq)
1952 goto bad_thread;
1953
Mikulas Patocka32a926d2009-06-22 10:12:17 +01001954 md->bdev = bdget_disk(md->disk, 0);
1955 if (!md->bdev)
1956 goto bad_bdev;
1957
Tejun Heo6a8736d2010-09-08 18:07:00 +02001958 bio_init(&md->flush_bio);
1959 md->flush_bio.bi_bdev = md->bdev;
1960 md->flush_bio.bi_rw = WRITE_FLUSH;
1961
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001962 /* Populate the mapping, nobody knows we exist yet */
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001963 spin_lock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001964 old_md = idr_replace(&_minor_idr, md, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001965 spin_unlock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001966
1967 BUG_ON(old_md != MINOR_ALLOCED);
1968
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 return md;
1970
Mikulas Patocka32a926d2009-06-22 10:12:17 +01001971bad_bdev:
1972 destroy_workqueue(md->wq);
Milan Broz304f3f62008-02-08 02:11:17 +00001973bad_thread:
Zdenek Kabelac03022c52009-10-16 23:18:15 +01001974 del_gendisk(md->disk);
Milan Broz304f3f62008-02-08 02:11:17 +00001975 put_disk(md->disk);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001976bad_disk:
Al Viro1312f402006-03-12 11:02:03 -05001977 blk_cleanup_queue(md->queue);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001978bad_queue:
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001979 cleanup_srcu_struct(&md->io_barrier);
1980bad_io_barrier:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 free_minor(minor);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001982bad_minor:
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001983 module_put(THIS_MODULE);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001984bad_module_get:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 kfree(md);
1986 return NULL;
1987}
1988
Jun'ichi Nomuraae9da832007-10-19 22:38:43 +01001989static void unlock_fs(struct mapped_device *md);
1990
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991static void free_dev(struct mapped_device *md)
1992{
Tejun Heof331c022008-09-03 09:01:48 +02001993 int minor = MINOR(disk_devt(md->disk));
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08001994
Mikulas Patocka32a926d2009-06-22 10:12:17 +01001995 unlock_fs(md);
1996 bdput(md->bdev);
Milan Broz304f3f62008-02-08 02:11:17 +00001997 destroy_workqueue(md->wq);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001998 if (md->io_pool)
1999 mempool_destroy(md->io_pool);
2000 if (md->bs)
2001 bioset_free(md->bs);
Martin K. Petersen9c470082009-04-09 00:27:12 +01002002 blk_integrity_unregister(md->disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 del_gendisk(md->disk);
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002004 cleanup_srcu_struct(&md->io_barrier);
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08002005 free_minor(minor);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002006
2007 spin_lock(&_minor_lock);
2008 md->disk->private_data = NULL;
2009 spin_unlock(&_minor_lock);
2010
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 put_disk(md->disk);
Al Viro1312f402006-03-12 11:02:03 -05002012 blk_cleanup_queue(md->queue);
Jeff Mahoney10da4f72006-06-26 00:27:25 -07002013 module_put(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 kfree(md);
2015}
2016
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002017static void __bind_mempools(struct mapped_device *md, struct dm_table *t)
2018{
Mikulas Patockac0820cf2012-12-21 20:23:38 +00002019 struct dm_md_mempools *p = dm_table_get_md_mempools(t);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002020
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00002021 if (md->io_pool && md->bs) {
Jun'ichi Nomura16245bd2013-03-01 22:45:44 +00002022 /* The md already has necessary mempools. */
2023 if (dm_table_get_type(t) == DM_TYPE_BIO_BASED) {
2024 /*
2025 * Reload bioset because front_pad may have changed
2026 * because a different table was loaded.
2027 */
2028 bioset_free(md->bs);
2029 md->bs = p->bs;
2030 p->bs = NULL;
2031 } else if (dm_table_get_type(t) == DM_TYPE_REQUEST_BASED) {
Jun'ichi Nomura16245bd2013-03-01 22:45:44 +00002032 /*
2033 * There's no need to reload with request-based dm
2034 * because the size of front_pad doesn't change.
2035 * Note for future: If you are to reload bioset,
2036 * prep-ed requests in the queue may refer
2037 * to bio from the old bioset, so you must walk
2038 * through the queue to unprep.
2039 */
2040 }
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002041 goto out;
Mikulas Patockac0820cf2012-12-21 20:23:38 +00002042 }
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002043
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00002044 BUG_ON(!p || md->io_pool || md->bs);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002045
2046 md->io_pool = p->io_pool;
2047 p->io_pool = NULL;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002048 md->bs = p->bs;
2049 p->bs = NULL;
2050
2051out:
2052 /* mempool bind completed, now no need any mempools in the table */
2053 dm_table_free_md_mempools(t);
2054}
2055
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056/*
2057 * Bind a table to the device.
2058 */
2059static void event_callback(void *context)
2060{
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002061 unsigned long flags;
2062 LIST_HEAD(uevents);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 struct mapped_device *md = (struct mapped_device *) context;
2064
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002065 spin_lock_irqsave(&md->uevent_lock, flags);
2066 list_splice_init(&md->uevent_list, &uevents);
2067 spin_unlock_irqrestore(&md->uevent_lock, flags);
2068
Tejun Heoed9e1982008-08-25 19:56:05 +09002069 dm_send_uevents(&uevents, &disk_to_dev(md->disk)->kobj);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002070
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 atomic_inc(&md->event_nr);
2072 wake_up(&md->eventq);
2073}
2074
Mike Snitzerc2176492011-01-13 19:53:46 +00002075/*
2076 * Protected by md->suspend_lock obtained by dm_swap_table().
2077 */
Alasdair G Kergon4e90188be2005-07-28 21:15:59 -07002078static void __set_size(struct mapped_device *md, sector_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079{
Alasdair G Kergon4e90188be2005-07-28 21:15:59 -07002080 set_capacity(md->disk, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002082 i_size_write(md->bdev->bd_inode, (loff_t)size << SECTOR_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083}
2084
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002085/*
Mikulas Patockad5b9dd02011-08-02 12:32:04 +01002086 * Return 1 if the queue has a compulsory merge_bvec_fn function.
2087 *
2088 * If this function returns 0, then the device is either a non-dm
2089 * device without a merge_bvec_fn, or it is a dm device that is
2090 * able to split any bios it receives that are too big.
2091 */
2092int dm_queue_merge_is_compulsory(struct request_queue *q)
2093{
2094 struct mapped_device *dev_md;
2095
2096 if (!q->merge_bvec_fn)
2097 return 0;
2098
2099 if (q->make_request_fn == dm_request) {
2100 dev_md = q->queuedata;
2101 if (test_bit(DMF_MERGE_IS_OPTIONAL, &dev_md->flags))
2102 return 0;
2103 }
2104
2105 return 1;
2106}
2107
2108static int dm_device_merge_is_compulsory(struct dm_target *ti,
2109 struct dm_dev *dev, sector_t start,
2110 sector_t len, void *data)
2111{
2112 struct block_device *bdev = dev->bdev;
2113 struct request_queue *q = bdev_get_queue(bdev);
2114
2115 return dm_queue_merge_is_compulsory(q);
2116}
2117
2118/*
2119 * Return 1 if it is acceptable to ignore merge_bvec_fn based
2120 * on the properties of the underlying devices.
2121 */
2122static int dm_table_merge_is_optional(struct dm_table *table)
2123{
2124 unsigned i = 0;
2125 struct dm_target *ti;
2126
2127 while (i < dm_table_get_num_targets(table)) {
2128 ti = dm_table_get_target(table, i++);
2129
2130 if (ti->type->iterate_devices &&
2131 ti->type->iterate_devices(ti, dm_device_merge_is_compulsory, NULL))
2132 return 0;
2133 }
2134
2135 return 1;
2136}
2137
2138/*
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002139 * Returns old map, which caller must destroy.
2140 */
2141static struct dm_table *__bind(struct mapped_device *md, struct dm_table *t,
2142 struct queue_limits *limits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143{
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002144 struct dm_table *old_map;
Jens Axboe165125e2007-07-24 09:28:11 +02002145 struct request_queue *q = md->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 sector_t size;
Mikulas Patockad5b9dd02011-08-02 12:32:04 +01002147 int merge_is_optional;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148
2149 size = dm_table_get_size(t);
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08002150
2151 /*
2152 * Wipe any geometry if the size of the table changed.
2153 */
2154 if (size != get_capacity(md->disk))
2155 memset(&md->geometry, 0, sizeof(md->geometry));
2156
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002157 __set_size(md, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002159 dm_table_event_callback(t, event_callback, md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002160
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002161 /*
2162 * The queue hasn't been stopped yet, if the old table type wasn't
2163 * for request-based during suspension. So stop it to prevent
2164 * I/O mapping before resume.
2165 * This must be done before setting the queue restrictions,
2166 * because request-based dm may be run just after the setting.
2167 */
2168 if (dm_table_request_based(t) && !blk_queue_stopped(q))
2169 stop_queue(q);
2170
2171 __bind_mempools(md, t);
2172
Mikulas Patockad5b9dd02011-08-02 12:32:04 +01002173 merge_is_optional = dm_table_merge_is_optional(t);
2174
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002175 old_map = md->map;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002176 rcu_assign_pointer(md->map, t);
Alasdair G Kergon36a04562011-10-31 20:19:04 +00002177 md->immutable_target_type = dm_table_get_immutable_target_type(t);
2178
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002179 dm_table_set_restrictions(t, q, limits);
Mikulas Patockad5b9dd02011-08-02 12:32:04 +01002180 if (merge_is_optional)
2181 set_bit(DMF_MERGE_IS_OPTIONAL, &md->flags);
2182 else
2183 clear_bit(DMF_MERGE_IS_OPTIONAL, &md->flags);
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002184 dm_sync_table(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002185
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002186 return old_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187}
2188
Alasdair G Kergona7940152009-12-10 23:52:23 +00002189/*
2190 * Returns unbound table for the caller to free.
2191 */
2192static struct dm_table *__unbind(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193{
2194 struct dm_table *map = md->map;
2195
2196 if (!map)
Alasdair G Kergona7940152009-12-10 23:52:23 +00002197 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198
2199 dm_table_event_callback(map, NULL, NULL);
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002200 rcu_assign_pointer(md->map, NULL);
2201 dm_sync_table(md);
Alasdair G Kergona7940152009-12-10 23:52:23 +00002202
2203 return map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204}
2205
2206/*
2207 * Constructor for a new device.
2208 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002209int dm_create(int minor, struct mapped_device **result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210{
2211 struct mapped_device *md;
2212
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002213 md = alloc_dev(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 if (!md)
2215 return -ENXIO;
2216
Milan Broz784aae72009-01-06 03:05:12 +00002217 dm_sysfs_init(md);
2218
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 *result = md;
2220 return 0;
2221}
2222
Mike Snitzera5664da2010-08-12 04:14:01 +01002223/*
2224 * Functions to manage md->type.
2225 * All are required to hold md->type_lock.
2226 */
2227void dm_lock_md_type(struct mapped_device *md)
2228{
2229 mutex_lock(&md->type_lock);
2230}
2231
2232void dm_unlock_md_type(struct mapped_device *md)
2233{
2234 mutex_unlock(&md->type_lock);
2235}
2236
2237void dm_set_md_type(struct mapped_device *md, unsigned type)
2238{
2239 md->type = type;
2240}
2241
2242unsigned dm_get_md_type(struct mapped_device *md)
2243{
2244 return md->type;
2245}
2246
Alasdair G Kergon36a04562011-10-31 20:19:04 +00002247struct target_type *dm_get_immutable_target_type(struct mapped_device *md)
2248{
2249 return md->immutable_target_type;
2250}
2251
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002252/*
2253 * Fully initialize a request-based queue (->elevator, ->request_fn, etc).
2254 */
2255static int dm_init_request_based_queue(struct mapped_device *md)
2256{
2257 struct request_queue *q = NULL;
2258
2259 if (md->queue->elevator)
2260 return 1;
2261
2262 /* Fully initialize the queue */
2263 q = blk_init_allocated_queue(md->queue, dm_request_fn, NULL);
2264 if (!q)
2265 return 0;
2266
2267 md->queue = q;
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002268 dm_init_md_queue(md);
2269 blk_queue_softirq_done(md->queue, dm_softirq_done);
2270 blk_queue_prep_rq(md->queue, dm_prep_fn);
2271 blk_queue_lld_busy(md->queue, dm_lld_busy);
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002272
2273 elv_register_queue(md->queue);
2274
2275 return 1;
2276}
2277
2278/*
2279 * Setup the DM device's queue based on md's type
2280 */
2281int dm_setup_md_queue(struct mapped_device *md)
2282{
2283 if ((dm_get_md_type(md) == DM_TYPE_REQUEST_BASED) &&
2284 !dm_init_request_based_queue(md)) {
2285 DMWARN("Cannot initialize queue for request-based mapped device");
2286 return -EINVAL;
2287 }
2288
2289 return 0;
2290}
2291
David Teigland637842c2006-01-06 00:20:00 -08002292static struct mapped_device *dm_find_md(dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293{
2294 struct mapped_device *md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 unsigned minor = MINOR(dev);
2296
2297 if (MAJOR(dev) != _major || minor >= (1 << MINORBITS))
2298 return NULL;
2299
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002300 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301
2302 md = idr_find(&_minor_idr, minor);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002303 if (md && (md == MINOR_ALLOCED ||
Tejun Heof331c022008-09-03 09:01:48 +02002304 (MINOR(disk_devt(dm_disk(md))) != minor) ||
Kiyoshi Uedaabdc5682010-08-12 04:13:54 +01002305 dm_deleting_md(md) ||
Alasdair G Kergon17b2f662006-06-26 00:27:33 -07002306 test_bit(DMF_FREEING, &md->flags))) {
David Teigland637842c2006-01-06 00:20:00 -08002307 md = NULL;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002308 goto out;
2309 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002311out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002312 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313
David Teigland637842c2006-01-06 00:20:00 -08002314 return md;
2315}
2316
David Teiglandd229a952006-01-06 00:20:01 -08002317struct mapped_device *dm_get_md(dev_t dev)
2318{
2319 struct mapped_device *md = dm_find_md(dev);
2320
2321 if (md)
2322 dm_get(md);
2323
2324 return md;
2325}
Alasdair G Kergon3cf2e4b2011-10-31 20:19:06 +00002326EXPORT_SYMBOL_GPL(dm_get_md);
David Teiglandd229a952006-01-06 00:20:01 -08002327
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08002328void *dm_get_mdptr(struct mapped_device *md)
David Teigland637842c2006-01-06 00:20:00 -08002329{
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08002330 return md->interface_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331}
2332
2333void dm_set_mdptr(struct mapped_device *md, void *ptr)
2334{
2335 md->interface_ptr = ptr;
2336}
2337
2338void dm_get(struct mapped_device *md)
2339{
2340 atomic_inc(&md->holders);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002341 BUG_ON(test_bit(DMF_FREEING, &md->flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342}
2343
Alasdair G Kergon72d94862006-06-26 00:27:35 -07002344const char *dm_device_name(struct mapped_device *md)
2345{
2346 return md->name;
2347}
2348EXPORT_SYMBOL_GPL(dm_device_name);
2349
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002350static void __dm_destroy(struct mapped_device *md, bool wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351{
Mike Anderson1134e5a2006-03-27 01:17:54 -08002352 struct dm_table *map;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002353 int srcu_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002355 might_sleep();
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002356
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002357 spin_lock(&_minor_lock);
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002358 map = dm_get_live_table(md, &srcu_idx);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002359 idr_replace(&_minor_idr, MINOR_ALLOCED, MINOR(disk_devt(dm_disk(md))));
2360 set_bit(DMF_FREEING, &md->flags);
2361 spin_unlock(&_minor_lock);
2362
2363 if (!dm_suspended_md(md)) {
2364 dm_table_presuspend_targets(map);
2365 dm_table_postsuspend_targets(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 }
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002367
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002368 /* dm_put_live_table must be before msleep, otherwise deadlock is possible */
2369 dm_put_live_table(md, srcu_idx);
2370
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002371 /*
2372 * Rare, but there may be I/O requests still going to complete,
2373 * for example. Wait for all references to disappear.
2374 * No one should increment the reference count of the mapped_device,
2375 * after the mapped_device state becomes DMF_FREEING.
2376 */
2377 if (wait)
2378 while (atomic_read(&md->holders))
2379 msleep(1);
2380 else if (atomic_read(&md->holders))
2381 DMWARN("%s: Forcibly removing mapped_device still in use! (%d users)",
2382 dm_device_name(md), atomic_read(&md->holders));
2383
2384 dm_sysfs_exit(md);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002385 dm_table_destroy(__unbind(md));
2386 free_dev(md);
2387}
2388
2389void dm_destroy(struct mapped_device *md)
2390{
2391 __dm_destroy(md, true);
2392}
2393
2394void dm_destroy_immediate(struct mapped_device *md)
2395{
2396 __dm_destroy(md, false);
2397}
2398
2399void dm_put(struct mapped_device *md)
2400{
2401 atomic_dec(&md->holders);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402}
Edward Goggin79eb8852007-05-09 02:32:56 -07002403EXPORT_SYMBOL_GPL(dm_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404
Mikulas Patocka401600d2009-04-02 19:55:38 +01002405static int dm_wait_for_completion(struct mapped_device *md, int interruptible)
Milan Broz46125c12008-02-08 02:10:30 +00002406{
2407 int r = 0;
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002408 DECLARE_WAITQUEUE(wait, current);
2409
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002410 add_wait_queue(&md->wait, &wait);
Milan Broz46125c12008-02-08 02:10:30 +00002411
2412 while (1) {
Mikulas Patocka401600d2009-04-02 19:55:38 +01002413 set_current_state(interruptible);
Milan Broz46125c12008-02-08 02:10:30 +00002414
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00002415 if (!md_in_flight(md))
Milan Broz46125c12008-02-08 02:10:30 +00002416 break;
2417
Mikulas Patocka401600d2009-04-02 19:55:38 +01002418 if (interruptible == TASK_INTERRUPTIBLE &&
2419 signal_pending(current)) {
Milan Broz46125c12008-02-08 02:10:30 +00002420 r = -EINTR;
2421 break;
2422 }
2423
2424 io_schedule();
2425 }
2426 set_current_state(TASK_RUNNING);
2427
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002428 remove_wait_queue(&md->wait, &wait);
2429
Milan Broz46125c12008-02-08 02:10:30 +00002430 return r;
2431}
2432
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433/*
2434 * Process the deferred bios
2435 */
Mikulas Patockaef208582009-04-02 19:55:38 +01002436static void dm_wq_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437{
Mikulas Patockaef208582009-04-02 19:55:38 +01002438 struct mapped_device *md = container_of(work, struct mapped_device,
2439 work);
Milan Broz6d6f10d2008-02-08 02:10:22 +00002440 struct bio *c;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002441 int srcu_idx;
2442 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002444 map = dm_get_live_table(md, &srcu_idx);
Mikulas Patockaef208582009-04-02 19:55:38 +01002445
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002446 while (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002447 spin_lock_irq(&md->deferred_lock);
2448 c = bio_list_pop(&md->deferred);
2449 spin_unlock_irq(&md->deferred_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01002450
Tejun Heo6a8736d2010-09-08 18:07:00 +02002451 if (!c)
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002452 break;
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002453
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002454 if (dm_request_based(md))
2455 generic_make_request(c);
Tejun Heo6a8736d2010-09-08 18:07:00 +02002456 else
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002457 __split_and_process_bio(md, map, c);
Mikulas Patocka022c2612009-04-02 19:55:39 +01002458 }
Milan Broz73d410c2008-02-08 02:10:25 +00002459
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002460 dm_put_live_table(md, srcu_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461}
2462
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002463static void dm_queue_flush(struct mapped_device *md)
Milan Broz304f3f62008-02-08 02:11:17 +00002464{
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002465 clear_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
2466 smp_mb__after_clear_bit();
Mikulas Patocka53d59142009-04-02 19:55:37 +01002467 queue_work(md->wq, &md->work);
Milan Broz304f3f62008-02-08 02:11:17 +00002468}
2469
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470/*
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002471 * Swap in a new table, returning the old one for the caller to destroy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 */
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002473struct dm_table *dm_swap_table(struct mapped_device *md, struct dm_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474{
Mike Christie87eb5b22013-03-01 22:45:48 +00002475 struct dm_table *live_map = NULL, *map = ERR_PTR(-EINVAL);
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002476 struct queue_limits limits;
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002477 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478
Daniel Walkere61290a2008-02-08 02:10:08 +00002479 mutex_lock(&md->suspend_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480
2481 /* device must be suspended */
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +00002482 if (!dm_suspended_md(md))
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07002483 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484
Mike Snitzer3ae70652012-09-26 23:45:45 +01002485 /*
2486 * If the new table has no data devices, retain the existing limits.
2487 * This helps multipath with queue_if_no_path if all paths disappear,
2488 * then new I/O is queued based on these limits, and then some paths
2489 * reappear.
2490 */
2491 if (dm_table_has_no_data_devices(table)) {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002492 live_map = dm_get_live_table_fast(md);
Mike Snitzer3ae70652012-09-26 23:45:45 +01002493 if (live_map)
2494 limits = md->queue->limits;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002495 dm_put_live_table_fast(md);
Mike Snitzer3ae70652012-09-26 23:45:45 +01002496 }
2497
Mike Christie87eb5b22013-03-01 22:45:48 +00002498 if (!live_map) {
2499 r = dm_calculate_queue_limits(table, &limits);
2500 if (r) {
2501 map = ERR_PTR(r);
2502 goto out;
2503 }
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002504 }
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002505
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002506 map = __bind(md, table, &limits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07002508out:
Daniel Walkere61290a2008-02-08 02:10:08 +00002509 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002510 return map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511}
2512
2513/*
2514 * Functions to lock and unlock any filesystem running on the
2515 * device.
2516 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002517static int lock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518{
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08002519 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520
2521 WARN_ON(md->frozen_sb);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002522
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002523 md->frozen_sb = freeze_bdev(md->bdev);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002524 if (IS_ERR(md->frozen_sb)) {
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002525 r = PTR_ERR(md->frozen_sb);
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08002526 md->frozen_sb = NULL;
2527 return r;
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002528 }
2529
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002530 set_bit(DMF_FROZEN, &md->flags);
2531
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 return 0;
2533}
2534
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002535static void unlock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536{
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002537 if (!test_bit(DMF_FROZEN, &md->flags))
2538 return;
2539
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002540 thaw_bdev(md->bdev, md->frozen_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 md->frozen_sb = NULL;
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002542 clear_bit(DMF_FROZEN, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543}
2544
2545/*
2546 * We need to be able to change a mapping table under a mounted
2547 * filesystem. For example we might want to move some data in
2548 * the background. Before the table can be swapped with
2549 * dm_bind_table, dm_suspend must be called to flush any in
2550 * flight bios and ensure that any further io gets deferred.
2551 */
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002552/*
2553 * Suspend mechanism in request-based dm.
2554 *
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002555 * 1. Flush all I/Os by lock_fs() if needed.
2556 * 2. Stop dispatching any I/O by stopping the request_queue.
2557 * 3. Wait for all in-flight I/Os to be completed or requeued.
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002558 *
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002559 * To abort suspend, start the request_queue.
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002560 */
Kiyoshi Uedaa3d77d32006-12-08 02:41:04 -08002561int dm_suspend(struct mapped_device *md, unsigned suspend_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562{
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002563 struct dm_table *map = NULL;
Milan Broz46125c12008-02-08 02:10:30 +00002564 int r = 0;
Kiyoshi Uedaa3d77d32006-12-08 02:41:04 -08002565 int do_lockfs = suspend_flags & DM_SUSPEND_LOCKFS_FLAG ? 1 : 0;
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002566 int noflush = suspend_flags & DM_SUSPEND_NOFLUSH_FLAG ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567
Daniel Walkere61290a2008-02-08 02:10:08 +00002568 mutex_lock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002569
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +00002570 if (dm_suspended_md(md)) {
Milan Broz73d410c2008-02-08 02:10:25 +00002571 r = -EINVAL;
Alasdair G Kergond2874832006-11-08 17:44:43 -08002572 goto out_unlock;
Milan Broz73d410c2008-02-08 02:10:25 +00002573 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002575 map = md->map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002577 /*
2578 * DMF_NOFLUSH_SUSPENDING must be set before presuspend.
2579 * This flag is cleared before dm_suspend returns.
2580 */
2581 if (noflush)
2582 set_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
2583
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002584 /* This does not get reverted if there's an error later. */
2585 dm_table_presuspend_targets(map);
2586
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002587 /*
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002588 * Flush I/O to the device.
2589 * Any I/O submitted after lock_fs() may not be flushed.
2590 * noflush takes precedence over do_lockfs.
2591 * (lock_fs() flushes I/Os and waits for them to complete.)
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002592 */
2593 if (!noflush && do_lockfs) {
2594 r = lock_fs(md);
2595 if (r)
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002596 goto out_unlock;
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002597 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598
2599 /*
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002600 * Here we must make sure that no processes are submitting requests
2601 * to target drivers i.e. no one may be executing
2602 * __split_and_process_bio. This is called from dm_request and
2603 * dm_wq_work.
2604 *
2605 * To get all processes out of __split_and_process_bio in dm_request,
2606 * we take the write lock. To prevent any process from reentering
Tejun Heo6a8736d2010-09-08 18:07:00 +02002607 * __split_and_process_bio from dm_request and quiesce the thread
2608 * (dm_wq_work), we set BMF_BLOCK_IO_FOR_SUSPEND and call
2609 * flush_workqueue(md->wq).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 */
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01002611 set_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002612 synchronize_srcu(&md->io_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002614 /*
Tejun Heo29e40132010-09-08 18:07:00 +02002615 * Stop md->queue before flushing md->wq in case request-based
2616 * dm defers requests to md->wq from md->queue.
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002617 */
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002618 if (dm_request_based(md))
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002619 stop_queue(md->queue);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002620
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002621 flush_workqueue(md->wq);
2622
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623 /*
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002624 * At this point no more requests are entering target request routines.
2625 * We call dm_wait_for_completion to wait for all existing requests
2626 * to finish.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 */
Mikulas Patocka401600d2009-04-02 19:55:38 +01002628 r = dm_wait_for_completion(md, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629
Milan Broz6d6f10d2008-02-08 02:10:22 +00002630 if (noflush)
Mikulas Patocka022c2612009-04-02 19:55:39 +01002631 clear_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002632 synchronize_srcu(&md->io_barrier);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002633
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 /* were we interrupted ? */
Milan Broz46125c12008-02-08 02:10:30 +00002635 if (r < 0) {
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002636 dm_queue_flush(md);
Milan Broz73d410c2008-02-08 02:10:25 +00002637
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002638 if (dm_request_based(md))
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002639 start_queue(md->queue);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002640
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002641 unlock_fs(md);
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002642 goto out_unlock; /* pushback list is already flushed, so skip flush */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002643 }
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002644
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002645 /*
2646 * If dm_wait_for_completion returned 0, the device is completely
2647 * quiescent now. There is no request-processing activity. All new
2648 * requests are being added to md->deferred list.
2649 */
2650
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651 set_bit(DMF_SUSPENDED, &md->flags);
2652
Kiyoshi Ueda4d4471c2009-12-10 23:52:26 +00002653 dm_table_postsuspend_targets(map);
2654
Alasdair G Kergond2874832006-11-08 17:44:43 -08002655out_unlock:
Daniel Walkere61290a2008-02-08 02:10:08 +00002656 mutex_unlock(&md->suspend_lock);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002657 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658}
2659
2660int dm_resume(struct mapped_device *md)
2661{
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002662 int r = -EINVAL;
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002663 struct dm_table *map = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664
Daniel Walkere61290a2008-02-08 02:10:08 +00002665 mutex_lock(&md->suspend_lock);
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +00002666 if (!dm_suspended_md(md))
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002667 goto out;
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002668
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002669 map = md->map;
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002670 if (!map || !dm_table_get_size(map))
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002671 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672
Milan Broz8757b772006-10-03 01:15:36 -07002673 r = dm_table_resume_targets(map);
2674 if (r)
2675 goto out;
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002676
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002677 dm_queue_flush(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002678
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002679 /*
2680 * Flushing deferred I/Os must be done after targets are resumed
2681 * so that mapping of targets can work correctly.
2682 * Request-based dm is queueing the deferred I/Os in its request_queue.
2683 */
2684 if (dm_request_based(md))
2685 start_queue(md->queue);
2686
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002687 unlock_fs(md);
2688
2689 clear_bit(DMF_SUSPENDED, &md->flags);
2690
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002691 r = 0;
2692out:
Daniel Walkere61290a2008-02-08 02:10:08 +00002693 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002694
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002695 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696}
2697
2698/*-----------------------------------------------------------------
2699 * Event notification.
2700 *---------------------------------------------------------------*/
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00002701int dm_kobject_uevent(struct mapped_device *md, enum kobject_action action,
Milan Broz60935eb2009-06-22 10:12:30 +01002702 unsigned cookie)
Alasdair G Kergon69267a32007-12-13 14:15:57 +00002703{
Milan Broz60935eb2009-06-22 10:12:30 +01002704 char udev_cookie[DM_COOKIE_LENGTH];
2705 char *envp[] = { udev_cookie, NULL };
2706
2707 if (!cookie)
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00002708 return kobject_uevent(&disk_to_dev(md->disk)->kobj, action);
Milan Broz60935eb2009-06-22 10:12:30 +01002709 else {
2710 snprintf(udev_cookie, DM_COOKIE_LENGTH, "%s=%u",
2711 DM_COOKIE_ENV_VAR_NAME, cookie);
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00002712 return kobject_uevent_env(&disk_to_dev(md->disk)->kobj,
2713 action, envp);
Milan Broz60935eb2009-06-22 10:12:30 +01002714 }
Alasdair G Kergon69267a32007-12-13 14:15:57 +00002715}
2716
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002717uint32_t dm_next_uevent_seq(struct mapped_device *md)
2718{
2719 return atomic_add_return(1, &md->uevent_seq);
2720}
2721
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722uint32_t dm_get_event_nr(struct mapped_device *md)
2723{
2724 return atomic_read(&md->event_nr);
2725}
2726
2727int dm_wait_event(struct mapped_device *md, int event_nr)
2728{
2729 return wait_event_interruptible(md->eventq,
2730 (event_nr != atomic_read(&md->event_nr)));
2731}
2732
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002733void dm_uevent_add(struct mapped_device *md, struct list_head *elist)
2734{
2735 unsigned long flags;
2736
2737 spin_lock_irqsave(&md->uevent_lock, flags);
2738 list_add(elist, &md->uevent_list);
2739 spin_unlock_irqrestore(&md->uevent_lock, flags);
2740}
2741
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742/*
2743 * The gendisk is only valid as long as you have a reference
2744 * count on 'md'.
2745 */
2746struct gendisk *dm_disk(struct mapped_device *md)
2747{
2748 return md->disk;
2749}
2750
Milan Broz784aae72009-01-06 03:05:12 +00002751struct kobject *dm_kobject(struct mapped_device *md)
2752{
2753 return &md->kobj;
2754}
2755
2756/*
2757 * struct mapped_device should not be exported outside of dm.c
2758 * so use this check to verify that kobj is part of md structure
2759 */
2760struct mapped_device *dm_get_from_kobject(struct kobject *kobj)
2761{
2762 struct mapped_device *md;
2763
2764 md = container_of(kobj, struct mapped_device, kobj);
2765 if (&md->kobj != kobj)
2766 return NULL;
2767
Milan Broz4d89b7b2009-06-22 10:12:11 +01002768 if (test_bit(DMF_FREEING, &md->flags) ||
Mike Anderson432a2122009-12-10 23:52:20 +00002769 dm_deleting_md(md))
Milan Broz4d89b7b2009-06-22 10:12:11 +01002770 return NULL;
2771
Milan Broz784aae72009-01-06 03:05:12 +00002772 dm_get(md);
2773 return md;
2774}
2775
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +00002776int dm_suspended_md(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777{
2778 return test_bit(DMF_SUSPENDED, &md->flags);
2779}
2780
Kiyoshi Ueda64dbce52009-12-10 23:52:27 +00002781int dm_suspended(struct dm_target *ti)
2782{
Kiyoshi Uedaecdb2e22010-03-06 02:29:52 +00002783 return dm_suspended_md(dm_table_get_md(ti->table));
Kiyoshi Ueda64dbce52009-12-10 23:52:27 +00002784}
2785EXPORT_SYMBOL_GPL(dm_suspended);
2786
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002787int dm_noflush_suspending(struct dm_target *ti)
2788{
Kiyoshi Uedaecdb2e22010-03-06 02:29:52 +00002789 return __noflush_suspending(dm_table_get_md(ti->table));
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002790}
2791EXPORT_SYMBOL_GPL(dm_noflush_suspending);
2792
Mikulas Patockac0820cf2012-12-21 20:23:38 +00002793struct dm_md_mempools *dm_alloc_md_mempools(unsigned type, unsigned integrity, unsigned per_bio_data_size)
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002794{
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00002795 struct dm_md_mempools *pools = kzalloc(sizeof(*pools), GFP_KERNEL);
2796 struct kmem_cache *cachep;
2797 unsigned int pool_size;
2798 unsigned int front_pad;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002799
2800 if (!pools)
2801 return NULL;
2802
Jun'ichi Nomura23e50832013-03-01 22:45:48 +00002803 if (type == DM_TYPE_BIO_BASED) {
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00002804 cachep = _io_cache;
2805 pool_size = 16;
2806 front_pad = roundup(per_bio_data_size, __alignof__(struct dm_target_io)) + offsetof(struct dm_target_io, clone);
2807 } else if (type == DM_TYPE_REQUEST_BASED) {
2808 cachep = _rq_tio_cache;
2809 pool_size = MIN_IOS;
2810 front_pad = offsetof(struct dm_rq_clone_bio_info, clone);
2811 /* per_bio_data_size is not used. See __bind_mempools(). */
2812 WARN_ON(per_bio_data_size != 0);
2813 } else
2814 goto out;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002815
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00002816 pools->io_pool = mempool_create_slab_pool(MIN_IOS, cachep);
2817 if (!pools->io_pool)
2818 goto out;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002819
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00002820 pools->bs = bioset_create(pool_size, front_pad);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002821 if (!pools->bs)
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00002822 goto out;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002823
Martin K. Petersena91a2782011-03-17 11:11:05 +01002824 if (integrity && bioset_integrity_create(pools->bs, pool_size))
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00002825 goto out;
Martin K. Petersena91a2782011-03-17 11:11:05 +01002826
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002827 return pools;
2828
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00002829out:
2830 dm_free_md_mempools(pools);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002831
2832 return NULL;
2833}
2834
2835void dm_free_md_mempools(struct dm_md_mempools *pools)
2836{
2837 if (!pools)
2838 return;
2839
2840 if (pools->io_pool)
2841 mempool_destroy(pools->io_pool);
2842
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002843 if (pools->bs)
2844 bioset_free(pools->bs);
2845
2846 kfree(pools);
2847}
2848
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07002849static const struct block_device_operations dm_blk_dops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850 .open = dm_blk_open,
2851 .release = dm_blk_close,
Milan Brozaa129a22006-10-03 01:15:15 -07002852 .ioctl = dm_blk_ioctl,
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08002853 .getgeo = dm_blk_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854 .owner = THIS_MODULE
2855};
2856
2857EXPORT_SYMBOL(dm_get_mapinfo);
2858
2859/*
2860 * module hooks
2861 */
2862module_init(dm_init);
2863module_exit(dm_exit);
2864
2865module_param(major, uint, 0);
2866MODULE_PARM_DESC(major, "The major number of the device mapper");
2867MODULE_DESCRIPTION(DM_NAME " driver");
2868MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
2869MODULE_LICENSE("GPL");