blob: 9836324e21186cefed3a40354f2e7190470a27c2 [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>
17#include <linux/buffer_head.h>
18#include <linux/mempool.h>
19#include <linux/slab.h>
20#include <linux/idr.h>
Darrick J. Wong3ac51e72006-03-27 01:17:54 -080021#include <linux/hdreg.h>
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +010022#include <linux/delay.h>
Li Zefan55782132009-06-09 13:43:05 +080023
24#include <trace/events/block.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Alasdair G Kergon72d94862006-06-26 00:27:35 -070026#define DM_MSG_PREFIX "core"
27
Namhyung Kim71a16732011-10-31 20:18:54 +000028#ifdef CONFIG_PRINTK
29/*
30 * ratelimit state to be used in DMXXX_LIMIT().
31 */
32DEFINE_RATELIMIT_STATE(dm_ratelimit_state,
33 DEFAULT_RATELIMIT_INTERVAL,
34 DEFAULT_RATELIMIT_BURST);
35EXPORT_SYMBOL(dm_ratelimit_state);
36#endif
37
Milan Broz60935eb2009-06-22 10:12:30 +010038/*
39 * Cookies are numeric values sent with CHANGE and REMOVE
40 * uevents while resuming, removing or renaming the device.
41 */
42#define DM_COOKIE_ENV_VAR_NAME "DM_COOKIE"
43#define DM_COOKIE_LENGTH 24
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045static const char *_name = DM_NAME;
46
47static unsigned int major = 0;
48static unsigned int _major = 0;
49
Alasdair G Kergond15b7742011-08-02 12:32:01 +010050static DEFINE_IDR(_minor_idr);
51
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -070052static DEFINE_SPINLOCK(_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053/*
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000054 * For bio-based dm.
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 * One of these is allocated per bio.
56 */
57struct dm_io {
58 struct mapped_device *md;
59 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 atomic_t io_count;
Richard Kennedy6ae2fa62008-07-21 12:00:28 +010061 struct bio *bio;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -080062 unsigned long start_time;
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +010063 spinlock_t endio_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064};
65
66/*
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000067 * For bio-based dm.
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 * One of these is allocated per target within a bio. Hopefully
69 * this will be simplified out one day.
70 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +010071struct dm_target_io {
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 struct dm_io *io;
73 struct dm_target *ti;
74 union map_info info;
75};
76
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000077/*
78 * For request-based dm.
79 * One of these is allocated per request.
80 */
81struct dm_rq_target_io {
82 struct mapped_device *md;
83 struct dm_target *ti;
84 struct request *orig, clone;
85 int error;
86 union map_info info;
87};
88
89/*
90 * For request-based dm.
91 * One of these is allocated per bio.
92 */
93struct dm_rq_clone_bio_info {
94 struct bio *orig;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +010095 struct dm_rq_target_io *tio;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000096};
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098union map_info *dm_get_mapinfo(struct bio *bio)
99{
Alasdair G Kergon17b2f662006-06-26 00:27:33 -0700100 if (bio && bio->bi_private)
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100101 return &((struct dm_target_io *)bio->bi_private)->info;
Alasdair G Kergon17b2f662006-06-26 00:27:33 -0700102 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103}
104
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100105union map_info *dm_get_rq_mapinfo(struct request *rq)
106{
107 if (rq && rq->end_io_data)
108 return &((struct dm_rq_target_io *)rq->end_io_data)->info;
109 return NULL;
110}
111EXPORT_SYMBOL_GPL(dm_get_rq_mapinfo);
112
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -0700113#define MINOR_ALLOCED ((void *)-1)
114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115/*
116 * Bits for the md->flags field.
117 */
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +0100118#define DMF_BLOCK_IO_FOR_SUSPEND 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119#define DMF_SUSPENDED 1
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -0800120#define DMF_FROZEN 2
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700121#define DMF_FREEING 3
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700122#define DMF_DELETING 4
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800123#define DMF_NOFLUSH_SUSPENDING 5
Mikulas Patockad5b9dd02011-08-02 12:32:04 +0100124#define DMF_MERGE_IS_OPTIONAL 6
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Milan Broz304f3f62008-02-08 02:11:17 +0000126/*
127 * Work processed by per-device workqueue.
128 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129struct mapped_device {
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700130 struct rw_semaphore io_lock;
Daniel Walkere61290a2008-02-08 02:10:08 +0000131 struct mutex suspend_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 rwlock_t map_lock;
133 atomic_t holders;
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700134 atomic_t open_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136 unsigned long flags;
137
Jens Axboe165125e2007-07-24 09:28:11 +0200138 struct request_queue *queue;
Mike Snitzera5664da2010-08-12 04:14:01 +0100139 unsigned type;
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +0100140 /* Protect queue and type against concurrent access. */
Mike Snitzera5664da2010-08-12 04:14:01 +0100141 struct mutex type_lock;
142
Alasdair G Kergon36a04562011-10-31 20:19:04 +0000143 struct target_type *immutable_target_type;
144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 struct gendisk *disk;
Mike Anderson7e51f252006-03-27 01:17:52 -0800146 char name[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148 void *interface_ptr;
149
150 /*
151 * A list of ios that arrived while we were suspended.
152 */
Nikanth Karthikesan316d3152009-10-06 20:16:55 +0200153 atomic_t pending[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 wait_queue_head_t wait;
Mikulas Patocka53d59142009-04-02 19:55:37 +0100155 struct work_struct work;
Kiyoshi Ueda74859362006-12-08 02:41:02 -0800156 struct bio_list deferred;
Mikulas Patocka022c2612009-04-02 19:55:39 +0100157 spinlock_t deferred_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159 /*
Tejun Heo29e40132010-09-08 18:07:00 +0200160 * Processing queue (flush)
Milan Broz304f3f62008-02-08 02:11:17 +0000161 */
162 struct workqueue_struct *wq;
163
164 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 * The current mapping.
166 */
167 struct dm_table *map;
168
169 /*
170 * io objects are allocated from here.
171 */
172 mempool_t *io_pool;
173 mempool_t *tio_pool;
174
Stefan Bader9faf4002006-10-03 01:15:41 -0700175 struct bio_set *bs;
176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 /*
178 * Event handling.
179 */
180 atomic_t event_nr;
181 wait_queue_head_t eventq;
Mike Anderson7a8c3d32007-10-19 22:48:01 +0100182 atomic_t uevent_seq;
183 struct list_head uevent_list;
184 spinlock_t uevent_lock; /* Protect access to uevent_list */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186 /*
187 * freeze/thaw support require holding onto a super block
188 */
189 struct super_block *frozen_sb;
Mikulas Patockadb8fef42009-06-22 10:12:15 +0100190 struct block_device *bdev;
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800191
192 /* forced geometry settings */
193 struct hd_geometry geometry;
Milan Broz784aae72009-01-06 03:05:12 +0000194
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100195 /* For saving the address of __make_request for request based dm */
196 make_request_fn *saved_make_request_fn;
197
Milan Broz784aae72009-01-06 03:05:12 +0000198 /* sysfs handle */
199 struct kobject kobj;
Mikulas Patocka52b1fd52009-06-22 10:12:21 +0100200
Tejun Heod87f4c12010-09-03 11:56:19 +0200201 /* zero-length flush that will be cloned and submitted to targets */
202 struct bio flush_bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203};
204
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +0100205/*
206 * For mempools pre-allocation at the table loading time.
207 */
208struct dm_md_mempools {
209 mempool_t *io_pool;
210 mempool_t *tio_pool;
211 struct bio_set *bs;
212};
213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214#define MIN_IOS 256
Christoph Lametere18b8902006-12-06 20:33:20 -0800215static struct kmem_cache *_io_cache;
216static struct kmem_cache *_tio_cache;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000217static struct kmem_cache *_rq_tio_cache;
218static struct kmem_cache *_rq_bio_info_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220static int __init local_init(void)
221{
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100222 int r = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 /* allocate a slab for the dm_ios */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100225 _io_cache = KMEM_CACHE(dm_io, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 if (!_io_cache)
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100227 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
229 /* allocate a slab for the target ios */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100230 _tio_cache = KMEM_CACHE(dm_target_io, 0);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100231 if (!_tio_cache)
232 goto out_free_io_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000234 _rq_tio_cache = KMEM_CACHE(dm_rq_target_io, 0);
235 if (!_rq_tio_cache)
236 goto out_free_tio_cache;
237
238 _rq_bio_info_cache = KMEM_CACHE(dm_rq_clone_bio_info, 0);
239 if (!_rq_bio_info_cache)
240 goto out_free_rq_tio_cache;
241
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100242 r = dm_uevent_init();
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100243 if (r)
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000244 goto out_free_rq_bio_info_cache;
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100245
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 _major = major;
247 r = register_blkdev(_major, _name);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100248 if (r < 0)
249 goto out_uevent_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251 if (!_major)
252 _major = r;
253
254 return 0;
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100255
256out_uevent_exit:
257 dm_uevent_exit();
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000258out_free_rq_bio_info_cache:
259 kmem_cache_destroy(_rq_bio_info_cache);
260out_free_rq_tio_cache:
261 kmem_cache_destroy(_rq_tio_cache);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100262out_free_tio_cache:
263 kmem_cache_destroy(_tio_cache);
264out_free_io_cache:
265 kmem_cache_destroy(_io_cache);
266
267 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268}
269
270static void local_exit(void)
271{
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000272 kmem_cache_destroy(_rq_bio_info_cache);
273 kmem_cache_destroy(_rq_tio_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 kmem_cache_destroy(_tio_cache);
275 kmem_cache_destroy(_io_cache);
Akinobu Mita00d59402007-07-17 04:03:46 -0700276 unregister_blkdev(_major, _name);
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100277 dm_uevent_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
279 _major = 0;
280
281 DMINFO("cleaned up");
282}
283
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000284static int (*_inits[])(void) __initdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 local_init,
286 dm_target_init,
287 dm_linear_init,
288 dm_stripe_init,
Mikulas Patocka952b3552009-12-10 23:51:57 +0000289 dm_io_init,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100290 dm_kcopyd_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 dm_interface_init,
292};
293
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000294static void (*_exits[])(void) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 local_exit,
296 dm_target_exit,
297 dm_linear_exit,
298 dm_stripe_exit,
Mikulas Patocka952b3552009-12-10 23:51:57 +0000299 dm_io_exit,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100300 dm_kcopyd_exit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 dm_interface_exit,
302};
303
304static int __init dm_init(void)
305{
306 const int count = ARRAY_SIZE(_inits);
307
308 int r, i;
309
310 for (i = 0; i < count; i++) {
311 r = _inits[i]();
312 if (r)
313 goto bad;
314 }
315
316 return 0;
317
318 bad:
319 while (i--)
320 _exits[i]();
321
322 return r;
323}
324
325static void __exit dm_exit(void)
326{
327 int i = ARRAY_SIZE(_exits);
328
329 while (i--)
330 _exits[i]();
Alasdair G Kergond15b7742011-08-02 12:32:01 +0100331
332 /*
333 * Should be empty by this point.
334 */
335 idr_remove_all(&_minor_idr);
336 idr_destroy(&_minor_idr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337}
338
339/*
340 * Block device functions
341 */
Mike Anderson432a2122009-12-10 23:52:20 +0000342int dm_deleting_md(struct mapped_device *md)
343{
344 return test_bit(DMF_DELETING, &md->flags);
345}
346
Al Virofe5f9f22008-03-02 10:29:31 -0500347static int dm_blk_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348{
349 struct mapped_device *md;
350
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700351 spin_lock(&_minor_lock);
352
Al Virofe5f9f22008-03-02 10:29:31 -0500353 md = bdev->bd_disk->private_data;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700354 if (!md)
355 goto out;
356
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700357 if (test_bit(DMF_FREEING, &md->flags) ||
Mike Anderson432a2122009-12-10 23:52:20 +0000358 dm_deleting_md(md)) {
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700359 md = NULL;
360 goto out;
361 }
362
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 dm_get(md);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700364 atomic_inc(&md->open_count);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700365
366out:
367 spin_unlock(&_minor_lock);
368
369 return md ? 0 : -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370}
371
Al Virofe5f9f22008-03-02 10:29:31 -0500372static int dm_blk_close(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373{
Al Virofe5f9f22008-03-02 10:29:31 -0500374 struct mapped_device *md = disk->private_data;
Arnd Bergmann6e9624b2010-08-07 18:25:34 +0200375
Milan Broz4a1aeb92011-01-13 19:59:48 +0000376 spin_lock(&_minor_lock);
377
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700378 atomic_dec(&md->open_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 dm_put(md);
Milan Broz4a1aeb92011-01-13 19:59:48 +0000380
381 spin_unlock(&_minor_lock);
Arnd Bergmann6e9624b2010-08-07 18:25:34 +0200382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 return 0;
384}
385
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700386int dm_open_count(struct mapped_device *md)
387{
388 return atomic_read(&md->open_count);
389}
390
391/*
392 * Guarantees nothing is using the device before it's deleted.
393 */
394int dm_lock_for_deletion(struct mapped_device *md)
395{
396 int r = 0;
397
398 spin_lock(&_minor_lock);
399
400 if (dm_open_count(md))
401 r = -EBUSY;
402 else
403 set_bit(DMF_DELETING, &md->flags);
404
405 spin_unlock(&_minor_lock);
406
407 return r;
408}
409
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800410static int dm_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
411{
412 struct mapped_device *md = bdev->bd_disk->private_data;
413
414 return dm_get_geometry(md, geo);
415}
416
Al Virofe5f9f22008-03-02 10:29:31 -0500417static int dm_blk_ioctl(struct block_device *bdev, fmode_t mode,
Milan Brozaa129a22006-10-03 01:15:15 -0700418 unsigned int cmd, unsigned long arg)
419{
Al Virofe5f9f22008-03-02 10:29:31 -0500420 struct mapped_device *md = bdev->bd_disk->private_data;
Alasdair G Kergon7c666412009-12-10 23:52:19 +0000421 struct dm_table *map = dm_get_live_table(md);
Milan Brozaa129a22006-10-03 01:15:15 -0700422 struct dm_target *tgt;
423 int r = -ENOTTY;
424
Milan Brozaa129a22006-10-03 01:15:15 -0700425 if (!map || !dm_table_get_size(map))
426 goto out;
427
428 /* We only support devices that have a single target */
429 if (dm_table_get_num_targets(map) != 1)
430 goto out;
431
432 tgt = dm_table_get_target(map, 0);
433
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +0000434 if (dm_suspended_md(md)) {
Milan Brozaa129a22006-10-03 01:15:15 -0700435 r = -EAGAIN;
436 goto out;
437 }
438
439 if (tgt->type->ioctl)
Al Viro647b3d02007-08-28 22:15:59 -0400440 r = tgt->type->ioctl(tgt, cmd, arg);
Milan Brozaa129a22006-10-03 01:15:15 -0700441
442out:
443 dm_table_put(map);
444
Milan Brozaa129a22006-10-03 01:15:15 -0700445 return r;
446}
447
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100448static struct dm_io *alloc_io(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449{
450 return mempool_alloc(md->io_pool, GFP_NOIO);
451}
452
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100453static void free_io(struct mapped_device *md, struct dm_io *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454{
455 mempool_free(io, md->io_pool);
456}
457
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100458static void free_tio(struct mapped_device *md, struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459{
460 mempool_free(tio, md->tio_pool);
461}
462
Kiyoshi Ueda08885642009-12-10 23:52:15 +0000463static struct dm_rq_target_io *alloc_rq_tio(struct mapped_device *md,
464 gfp_t gfp_mask)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100465{
Kiyoshi Ueda08885642009-12-10 23:52:15 +0000466 return mempool_alloc(md->tio_pool, gfp_mask);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100467}
468
469static void free_rq_tio(struct dm_rq_target_io *tio)
470{
471 mempool_free(tio, tio->md->tio_pool);
472}
473
474static struct dm_rq_clone_bio_info *alloc_bio_info(struct mapped_device *md)
475{
476 return mempool_alloc(md->io_pool, GFP_ATOMIC);
477}
478
479static void free_bio_info(struct dm_rq_clone_bio_info *info)
480{
481 mempool_free(info, info->tio->md->io_pool);
482}
483
Kiyoshi Ueda90abb8c2009-12-10 23:52:13 +0000484static int md_in_flight(struct mapped_device *md)
485{
486 return atomic_read(&md->pending[READ]) +
487 atomic_read(&md->pending[WRITE]);
488}
489
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800490static void start_io_acct(struct dm_io *io)
491{
492 struct mapped_device *md = io->md;
Tejun Heoc9959052008-08-25 19:47:21 +0900493 int cpu;
Nikanth Karthikesan316d3152009-10-06 20:16:55 +0200494 int rw = bio_data_dir(io->bio);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800495
496 io->start_time = jiffies;
497
Tejun Heo074a7ac2008-08-25 19:56:14 +0900498 cpu = part_stat_lock();
499 part_round_stats(cpu, &dm_disk(md)->part0);
500 part_stat_unlock();
Shaohua Li1e9bb882011-03-22 08:35:35 +0100501 atomic_set(&dm_disk(md)->part0.in_flight[rw],
502 atomic_inc_return(&md->pending[rw]));
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800503}
504
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000505static void end_io_acct(struct dm_io *io)
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800506{
507 struct mapped_device *md = io->md;
508 struct bio *bio = io->bio;
509 unsigned long duration = jiffies - io->start_time;
Tejun Heoc9959052008-08-25 19:47:21 +0900510 int pending, cpu;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800511 int rw = bio_data_dir(bio);
512
Tejun Heo074a7ac2008-08-25 19:56:14 +0900513 cpu = part_stat_lock();
514 part_round_stats(cpu, &dm_disk(md)->part0);
515 part_stat_add(cpu, &dm_disk(md)->part0, ticks[rw], duration);
516 part_stat_unlock();
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800517
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100518 /*
519 * After this is decremented the bio must not be touched if it is
Tejun Heod87f4c12010-09-03 11:56:19 +0200520 * a flush.
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100521 */
Shaohua Li1e9bb882011-03-22 08:35:35 +0100522 pending = atomic_dec_return(&md->pending[rw]);
523 atomic_set(&dm_disk(md)->part0.in_flight[rw], pending);
Nikanth Karthikesan316d3152009-10-06 20:16:55 +0200524 pending += atomic_read(&md->pending[rw^0x1]);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800525
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000526 /* nudge anyone waiting on suspend queue */
527 if (!pending)
528 wake_up(&md->wait);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800529}
530
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531/*
532 * Add the bio to the list of deferred io.
533 */
Mikulas Patocka92c63902009-04-09 00:27:15 +0100534static void queue_io(struct mapped_device *md, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535{
Kiyoshi Ueda05447422010-09-08 18:07:01 +0200536 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Kiyoshi Ueda05447422010-09-08 18:07:01 +0200538 spin_lock_irqsave(&md->deferred_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 bio_list_add(&md->deferred, bio);
Kiyoshi Ueda05447422010-09-08 18:07:01 +0200540 spin_unlock_irqrestore(&md->deferred_lock, flags);
Tejun Heo6a8736d2010-09-08 18:07:00 +0200541 queue_work(md->wq, &md->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542}
543
544/*
545 * Everyone (including functions in this file), should use this
546 * function to access the md->map field, and make sure they call
547 * dm_table_put() when finished.
548 */
Alasdair G Kergon7c666412009-12-10 23:52:19 +0000549struct dm_table *dm_get_live_table(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550{
551 struct dm_table *t;
Kiyoshi Ueda523d9292009-06-22 10:12:37 +0100552 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Kiyoshi Ueda523d9292009-06-22 10:12:37 +0100554 read_lock_irqsave(&md->map_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 t = md->map;
556 if (t)
557 dm_table_get(t);
Kiyoshi Ueda523d9292009-06-22 10:12:37 +0100558 read_unlock_irqrestore(&md->map_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
560 return t;
561}
562
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800563/*
564 * Get the geometry associated with a dm device
565 */
566int dm_get_geometry(struct mapped_device *md, struct hd_geometry *geo)
567{
568 *geo = md->geometry;
569
570 return 0;
571}
572
573/*
574 * Set the geometry of a device.
575 */
576int dm_set_geometry(struct mapped_device *md, struct hd_geometry *geo)
577{
578 sector_t sz = (sector_t)geo->cylinders * geo->heads * geo->sectors;
579
580 if (geo->start > sz) {
581 DMWARN("Start sector is beyond the geometry limits.");
582 return -EINVAL;
583 }
584
585 md->geometry = *geo;
586
587 return 0;
588}
589
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590/*-----------------------------------------------------------------
591 * CRUD START:
592 * A more elegant soln is in the works that uses the queue
593 * merge fn, unfortunately there are a couple of changes to
594 * the block layer that I want to make for this. So in the
595 * interests of getting something for people to use I give
596 * you this clearly demarcated crap.
597 *---------------------------------------------------------------*/
598
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800599static int __noflush_suspending(struct mapped_device *md)
600{
601 return test_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
602}
603
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604/*
605 * Decrements the number of outstanding ios that a bio has been
606 * cloned into, completing the original io if necc.
607 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800608static void dec_pending(struct dm_io *io, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609{
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800610 unsigned long flags;
Milan Brozb35f8ca2009-03-16 17:44:36 +0000611 int io_error;
612 struct bio *bio;
613 struct mapped_device *md = io->md;
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800614
615 /* Push-back supersedes any I/O errors */
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +0100616 if (unlikely(error)) {
617 spin_lock_irqsave(&io->endio_lock, flags);
618 if (!(io->error > 0 && __noflush_suspending(md)))
619 io->error = error;
620 spin_unlock_irqrestore(&io->endio_lock, flags);
621 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
623 if (atomic_dec_and_test(&io->io_count)) {
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800624 if (io->error == DM_ENDIO_REQUEUE) {
625 /*
626 * Target requested pushing back the I/O.
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800627 */
Mikulas Patocka022c2612009-04-02 19:55:39 +0100628 spin_lock_irqsave(&md->deferred_lock, flags);
Tejun Heo6a8736d2010-09-08 18:07:00 +0200629 if (__noflush_suspending(md))
630 bio_list_add_head(&md->deferred, io->bio);
631 else
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800632 /* noflush suspend was interrupted. */
633 io->error = -EIO;
Mikulas Patocka022c2612009-04-02 19:55:39 +0100634 spin_unlock_irqrestore(&md->deferred_lock, flags);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800635 }
636
Milan Brozb35f8ca2009-03-16 17:44:36 +0000637 io_error = io->error;
638 bio = io->bio;
Tejun Heo6a8736d2010-09-08 18:07:00 +0200639 end_io_acct(io);
640 free_io(md, io);
Jens Axboe2056a782006-03-23 20:00:26 +0100641
Tejun Heo6a8736d2010-09-08 18:07:00 +0200642 if (io_error == DM_ENDIO_REQUEUE)
643 return;
644
Mike Snitzerb372d362010-09-08 18:07:01 +0200645 if ((bio->bi_rw & REQ_FLUSH) && bio->bi_size) {
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100646 /*
Tejun Heo6a8736d2010-09-08 18:07:00 +0200647 * Preflush done for flush with data, reissue
648 * without REQ_FLUSH.
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100649 */
Tejun Heo6a8736d2010-09-08 18:07:00 +0200650 bio->bi_rw &= ~REQ_FLUSH;
651 queue_io(md, bio);
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100652 } else {
Mike Snitzerb372d362010-09-08 18:07:01 +0200653 /* done with normal IO or empty flush */
Jeff Moyerb7908c12011-01-06 20:41:42 +0100654 trace_block_bio_complete(md->queue, bio, io_error);
Mike Snitzerb372d362010-09-08 18:07:01 +0200655 bio_endio(bio, io_error);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800656 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 }
658}
659
NeilBrown6712ecf2007-09-27 12:47:43 +0200660static void clone_endio(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661{
662 int r = 0;
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100663 struct dm_target_io *tio = bio->bi_private;
Milan Brozb35f8ca2009-03-16 17:44:36 +0000664 struct dm_io *io = tio->io;
Stefan Bader9faf4002006-10-03 01:15:41 -0700665 struct mapped_device *md = tio->io->md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 dm_endio_fn endio = tio->ti->type->end_io;
667
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 if (!bio_flagged(bio, BIO_UPTODATE) && !error)
669 error = -EIO;
670
671 if (endio) {
672 r = endio(tio->ti, bio, error, &tio->info);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800673 if (r < 0 || r == DM_ENDIO_REQUEUE)
674 /*
675 * error and requeue request are handled
676 * in dec_pending().
677 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 error = r;
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800679 else if (r == DM_ENDIO_INCOMPLETE)
680 /* The target will handle the io */
NeilBrown6712ecf2007-09-27 12:47:43 +0200681 return;
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800682 else if (r) {
683 DMWARN("unimplemented target endio return value: %d", r);
684 BUG();
685 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 }
687
Stefan Bader9faf4002006-10-03 01:15:41 -0700688 /*
689 * Store md for cleanup instead of tio which is about to get freed.
690 */
691 bio->bi_private = md->bs;
692
Stefan Bader9faf4002006-10-03 01:15:41 -0700693 free_tio(md, tio);
Milan Brozb35f8ca2009-03-16 17:44:36 +0000694 bio_put(bio);
695 dec_pending(io, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696}
697
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100698/*
699 * Partial completion handling for request-based dm
700 */
701static void end_clone_bio(struct bio *clone, int error)
702{
703 struct dm_rq_clone_bio_info *info = clone->bi_private;
704 struct dm_rq_target_io *tio = info->tio;
705 struct bio *bio = info->orig;
706 unsigned int nr_bytes = info->orig->bi_size;
707
708 bio_put(clone);
709
710 if (tio->error)
711 /*
712 * An error has already been detected on the request.
713 * Once error occurred, just let clone->end_io() handle
714 * the remainder.
715 */
716 return;
717 else if (error) {
718 /*
719 * Don't notice the error to the upper layer yet.
720 * The error handling decision is made by the target driver,
721 * when the request is completed.
722 */
723 tio->error = error;
724 return;
725 }
726
727 /*
728 * I/O for the bio successfully completed.
729 * Notice the data completion to the upper layer.
730 */
731
732 /*
733 * bios are processed from the head of the list.
734 * So the completing bio should always be rq->bio.
735 * If it's not, something wrong is happening.
736 */
737 if (tio->orig->bio != bio)
738 DMERR("bio completion is going in the middle of the request");
739
740 /*
741 * Update the original request.
742 * Do not use blk_end_request() here, because it may complete
743 * the original request before the clone, and break the ordering.
744 */
745 blk_update_request(tio->orig, 0, nr_bytes);
746}
747
748/*
749 * Don't touch any member of the md after calling this function because
750 * the md may be freed in dm_put() at the end of this function.
751 * Or do dm_get() before calling this function and dm_put() later.
752 */
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +0000753static void rq_completed(struct mapped_device *md, int rw, int run_queue)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100754{
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +0000755 atomic_dec(&md->pending[rw]);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100756
757 /* nudge anyone waiting on suspend queue */
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +0000758 if (!md_in_flight(md))
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100759 wake_up(&md->wait);
760
761 if (run_queue)
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +0000762 blk_run_queue(md->queue);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100763
764 /*
765 * dm_put() must be at the end of this function. See the comment above
766 */
767 dm_put(md);
768}
769
Kiyoshi Uedaa77e28c2009-09-04 20:40:16 +0100770static void free_rq_clone(struct request *clone)
771{
772 struct dm_rq_target_io *tio = clone->end_io_data;
773
774 blk_rq_unprep_clone(clone);
775 free_rq_tio(tio);
776}
777
Kiyoshi Ueda980691e2009-12-10 23:52:17 +0000778/*
779 * Complete the clone and the original request.
780 * Must be called without queue lock.
781 */
782static void dm_end_request(struct request *clone, int error)
783{
784 int rw = rq_data_dir(clone);
785 struct dm_rq_target_io *tio = clone->end_io_data;
786 struct mapped_device *md = tio->md;
787 struct request *rq = tio->orig;
788
Tejun Heo29e40132010-09-08 18:07:00 +0200789 if (rq->cmd_type == REQ_TYPE_BLOCK_PC) {
Kiyoshi Ueda980691e2009-12-10 23:52:17 +0000790 rq->errors = clone->errors;
791 rq->resid_len = clone->resid_len;
792
793 if (rq->sense)
794 /*
795 * We are using the sense buffer of the original
796 * request.
797 * So setting the length of the sense data is enough.
798 */
799 rq->sense_len = clone->sense_len;
800 }
801
802 free_rq_clone(clone);
Tejun Heo29e40132010-09-08 18:07:00 +0200803 blk_end_request_all(rq, error);
804 rq_completed(md, rw, true);
Kiyoshi Ueda980691e2009-12-10 23:52:17 +0000805}
806
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100807static void dm_unprep_request(struct request *rq)
808{
809 struct request *clone = rq->special;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100810
811 rq->special = NULL;
812 rq->cmd_flags &= ~REQ_DONTPREP;
813
Kiyoshi Uedaa77e28c2009-09-04 20:40:16 +0100814 free_rq_clone(clone);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100815}
816
817/*
818 * Requeue the original request of a clone.
819 */
820void dm_requeue_unmapped_request(struct request *clone)
821{
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +0000822 int rw = rq_data_dir(clone);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100823 struct dm_rq_target_io *tio = clone->end_io_data;
824 struct mapped_device *md = tio->md;
825 struct request *rq = tio->orig;
826 struct request_queue *q = rq->q;
827 unsigned long flags;
828
829 dm_unprep_request(rq);
830
831 spin_lock_irqsave(q->queue_lock, flags);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100832 blk_requeue_request(q, rq);
833 spin_unlock_irqrestore(q->queue_lock, flags);
834
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +0000835 rq_completed(md, rw, 0);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100836}
837EXPORT_SYMBOL_GPL(dm_requeue_unmapped_request);
838
839static void __stop_queue(struct request_queue *q)
840{
841 blk_stop_queue(q);
842}
843
844static void stop_queue(struct request_queue *q)
845{
846 unsigned long flags;
847
848 spin_lock_irqsave(q->queue_lock, flags);
849 __stop_queue(q);
850 spin_unlock_irqrestore(q->queue_lock, flags);
851}
852
853static void __start_queue(struct request_queue *q)
854{
855 if (blk_queue_stopped(q))
856 blk_start_queue(q);
857}
858
859static void start_queue(struct request_queue *q)
860{
861 unsigned long flags;
862
863 spin_lock_irqsave(q->queue_lock, flags);
864 __start_queue(q);
865 spin_unlock_irqrestore(q->queue_lock, flags);
866}
867
Kiyoshi Ueda11a68242009-12-10 23:52:17 +0000868static void dm_done(struct request *clone, int error, bool mapped)
869{
870 int r = error;
871 struct dm_rq_target_io *tio = clone->end_io_data;
872 dm_request_endio_fn rq_end_io = tio->ti->type->rq_end_io;
873
874 if (mapped && rq_end_io)
875 r = rq_end_io(tio->ti, clone, error, &tio->info);
876
877 if (r <= 0)
878 /* The target wants to complete the I/O */
879 dm_end_request(clone, r);
880 else if (r == DM_ENDIO_INCOMPLETE)
881 /* The target will handle the I/O */
882 return;
883 else if (r == DM_ENDIO_REQUEUE)
884 /* The target wants to requeue the I/O */
885 dm_requeue_unmapped_request(clone);
886 else {
887 DMWARN("unimplemented target endio return value: %d", r);
888 BUG();
889 }
890}
891
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100892/*
893 * Request completion handler for request-based dm
894 */
895static void dm_softirq_done(struct request *rq)
896{
Kiyoshi Ueda11a68242009-12-10 23:52:17 +0000897 bool mapped = true;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100898 struct request *clone = rq->completion_data;
899 struct dm_rq_target_io *tio = clone->end_io_data;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100900
Kiyoshi Ueda11a68242009-12-10 23:52:17 +0000901 if (rq->cmd_flags & REQ_FAILED)
902 mapped = false;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100903
Kiyoshi Ueda11a68242009-12-10 23:52:17 +0000904 dm_done(clone, tio->error, mapped);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100905}
906
907/*
908 * Complete the clone and the original request with the error status
909 * through softirq context.
910 */
911static void dm_complete_request(struct request *clone, int error)
912{
913 struct dm_rq_target_io *tio = clone->end_io_data;
914 struct request *rq = tio->orig;
915
916 tio->error = error;
917 rq->completion_data = clone;
918 blk_complete_request(rq);
919}
920
921/*
922 * Complete the not-mapped clone and the original request with the error status
923 * through softirq context.
924 * Target's rq_end_io() function isn't called.
925 * This may be used when the target's map_rq() function fails.
926 */
927void dm_kill_unmapped_request(struct request *clone, int error)
928{
929 struct dm_rq_target_io *tio = clone->end_io_data;
930 struct request *rq = tio->orig;
931
932 rq->cmd_flags |= REQ_FAILED;
933 dm_complete_request(clone, error);
934}
935EXPORT_SYMBOL_GPL(dm_kill_unmapped_request);
936
937/*
938 * Called with the queue lock held
939 */
940static void end_clone_request(struct request *clone, int error)
941{
942 /*
943 * For just cleaning up the information of the queue in which
944 * the clone was dispatched.
945 * The clone is *NOT* freed actually here because it is alloced from
946 * dm own mempool and REQ_ALLOCED isn't set in clone->cmd_flags.
947 */
948 __blk_put_request(clone->q, clone);
949
950 /*
951 * Actual request completion is done in a softirq context which doesn't
952 * hold the queue lock. Otherwise, deadlock could occur because:
953 * - another request may be submitted by the upper level driver
954 * of the stacking during the completion
955 * - the submission which requires queue lock may be done
956 * against this queue
957 */
958 dm_complete_request(clone, error);
959}
960
Mike Snitzer56a67df2010-08-12 04:14:10 +0100961/*
962 * Return maximum size of I/O possible at the supplied sector up to the current
963 * target boundary.
964 */
965static sector_t max_io_len_target_boundary(sector_t sector, struct dm_target *ti)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966{
Mike Snitzer56a67df2010-08-12 04:14:10 +0100967 sector_t target_offset = dm_target_offset(ti, sector);
968
969 return ti->len - target_offset;
970}
971
972static sector_t max_io_len(sector_t sector, struct dm_target *ti)
973{
974 sector_t len = max_io_len_target_boundary(sector, ti);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
976 /*
977 * Does the target need to split even further ?
978 */
979 if (ti->split_io) {
980 sector_t boundary;
Mike Snitzer56a67df2010-08-12 04:14:10 +0100981 sector_t offset = dm_target_offset(ti, sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 boundary = ((offset + ti->split_io) & ~(ti->split_io - 1))
983 - offset;
984 if (len > boundary)
985 len = boundary;
986 }
987
988 return len;
989}
990
991static void __map_bio(struct dm_target *ti, struct bio *clone,
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100992 struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993{
994 int r;
Jens Axboe2056a782006-03-23 20:00:26 +0100995 sector_t sector;
Stefan Bader9faf4002006-10-03 01:15:41 -0700996 struct mapped_device *md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 clone->bi_end_io = clone_endio;
999 clone->bi_private = tio;
1000
1001 /*
1002 * Map the clone. If r == 0 we don't need to do
1003 * anything, the target has assumed ownership of
1004 * this io.
1005 */
1006 atomic_inc(&tio->io->io_count);
Jens Axboe2056a782006-03-23 20:00:26 +01001007 sector = clone->bi_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 r = ti->type->map(ti, clone, &tio->info);
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -08001009 if (r == DM_MAPIO_REMAPPED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 /* the bio has been remapped so dispatch it */
Jens Axboe2056a782006-03-23 20:00:26 +01001011
Mike Snitzerd07335e2010-11-16 12:52:38 +01001012 trace_block_bio_remap(bdev_get_queue(clone->bi_bdev), clone,
1013 tio->io->bio->bi_bdev->bd_dev, sector);
Jens Axboe2056a782006-03-23 20:00:26 +01001014
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 generic_make_request(clone);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001016 } else if (r < 0 || r == DM_MAPIO_REQUEUE) {
1017 /* error the io and bail out, or requeue it if needed */
Stefan Bader9faf4002006-10-03 01:15:41 -07001018 md = tio->io->md;
1019 dec_pending(tio->io, r);
1020 /*
1021 * Store bio_set for cleanup.
1022 */
1023 clone->bi_private = md->bs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 bio_put(clone);
Stefan Bader9faf4002006-10-03 01:15:41 -07001025 free_tio(md, tio);
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -08001026 } else if (r) {
1027 DMWARN("unimplemented target map return value: %d", r);
1028 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 }
1030}
1031
1032struct clone_info {
1033 struct mapped_device *md;
1034 struct dm_table *map;
1035 struct bio *bio;
1036 struct dm_io *io;
1037 sector_t sector;
1038 sector_t sector_count;
1039 unsigned short idx;
1040};
1041
Peter Osterlund36763472005-09-06 15:16:42 -07001042static void dm_bio_destructor(struct bio *bio)
1043{
Stefan Bader9faf4002006-10-03 01:15:41 -07001044 struct bio_set *bs = bio->bi_private;
1045
1046 bio_free(bio, bs);
Peter Osterlund36763472005-09-06 15:16:42 -07001047}
1048
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049/*
Tejun Heod87f4c12010-09-03 11:56:19 +02001050 * Creates a little bio that just does part of a bvec.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 */
1052static struct bio *split_bvec(struct bio *bio, sector_t sector,
1053 unsigned short idx, unsigned int offset,
Stefan Bader9faf4002006-10-03 01:15:41 -07001054 unsigned int len, struct bio_set *bs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055{
1056 struct bio *clone;
1057 struct bio_vec *bv = bio->bi_io_vec + idx;
1058
Stefan Bader9faf4002006-10-03 01:15:41 -07001059 clone = bio_alloc_bioset(GFP_NOIO, 1, bs);
Peter Osterlund36763472005-09-06 15:16:42 -07001060 clone->bi_destructor = dm_bio_destructor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 *clone->bi_io_vec = *bv;
1062
1063 clone->bi_sector = sector;
1064 clone->bi_bdev = bio->bi_bdev;
Tejun Heod87f4c12010-09-03 11:56:19 +02001065 clone->bi_rw = bio->bi_rw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 clone->bi_vcnt = 1;
1067 clone->bi_size = to_bytes(len);
1068 clone->bi_io_vec->bv_offset = offset;
1069 clone->bi_io_vec->bv_len = clone->bi_size;
Martin K. Petersenf3e1d262008-10-21 17:45:04 +01001070 clone->bi_flags |= 1 << BIO_CLONED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
Martin K. Petersen9c470082009-04-09 00:27:12 +01001072 if (bio_integrity(bio)) {
Martin K. Petersen7878cba2009-06-26 15:37:49 +02001073 bio_integrity_clone(clone, bio, GFP_NOIO, bs);
Martin K. Petersen9c470082009-04-09 00:27:12 +01001074 bio_integrity_trim(clone,
1075 bio_sector_offset(bio, idx, offset), len);
1076 }
1077
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 return clone;
1079}
1080
1081/*
1082 * Creates a bio that consists of range of complete bvecs.
1083 */
1084static struct bio *clone_bio(struct bio *bio, sector_t sector,
1085 unsigned short idx, unsigned short bv_count,
Stefan Bader9faf4002006-10-03 01:15:41 -07001086 unsigned int len, struct bio_set *bs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087{
1088 struct bio *clone;
1089
Stefan Bader9faf4002006-10-03 01:15:41 -07001090 clone = bio_alloc_bioset(GFP_NOIO, bio->bi_max_vecs, bs);
1091 __bio_clone(clone, bio);
1092 clone->bi_destructor = dm_bio_destructor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 clone->bi_sector = sector;
1094 clone->bi_idx = idx;
1095 clone->bi_vcnt = idx + bv_count;
1096 clone->bi_size = to_bytes(len);
1097 clone->bi_flags &= ~(1 << BIO_SEG_VALID);
1098
Martin K. Petersen9c470082009-04-09 00:27:12 +01001099 if (bio_integrity(bio)) {
Martin K. Petersen7878cba2009-06-26 15:37:49 +02001100 bio_integrity_clone(clone, bio, GFP_NOIO, bs);
Martin K. Petersen9c470082009-04-09 00:27:12 +01001101
1102 if (idx != bio->bi_idx || clone->bi_size < bio->bi_size)
1103 bio_integrity_trim(clone,
1104 bio_sector_offset(bio, idx, 0), len);
1105 }
1106
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 return clone;
1108}
1109
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001110static struct dm_target_io *alloc_tio(struct clone_info *ci,
1111 struct dm_target *ti)
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001112{
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001113 struct dm_target_io *tio = mempool_alloc(ci->md->tio_pool, GFP_NOIO);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001114
1115 tio->io = ci->io;
1116 tio->ti = ti;
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001117 memset(&tio->info, 0, sizeof(tio->info));
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001118
1119 return tio;
1120}
1121
Mike Snitzer06a426c2010-08-12 04:14:09 +01001122static void __issue_target_request(struct clone_info *ci, struct dm_target *ti,
Mike Snitzera79245b2010-08-12 04:14:24 +01001123 unsigned request_nr, sector_t len)
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001124{
1125 struct dm_target_io *tio = alloc_tio(ci, ti);
1126 struct bio *clone;
1127
Mike Snitzer57cba5d2010-08-12 04:14:04 +01001128 tio->info.target_request_nr = request_nr;
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001129
Mike Snitzer06a426c2010-08-12 04:14:09 +01001130 /*
1131 * Discard requests require the bio's inline iovecs be initialized.
1132 * ci->bio->bi_max_vecs is BIO_INLINE_VECS anyway, for both flush
1133 * and discard, so no need for concern about wasted bvec allocations.
1134 */
1135 clone = bio_alloc_bioset(GFP_NOIO, ci->bio->bi_max_vecs, ci->md->bs);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001136 __bio_clone(clone, ci->bio);
1137 clone->bi_destructor = dm_bio_destructor;
Mike Snitzera79245b2010-08-12 04:14:24 +01001138 if (len) {
1139 clone->bi_sector = ci->sector;
1140 clone->bi_size = to_bytes(len);
1141 }
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001142
1143 __map_bio(ti, clone, tio);
1144}
1145
Mike Snitzer06a426c2010-08-12 04:14:09 +01001146static void __issue_target_requests(struct clone_info *ci, struct dm_target *ti,
Mike Snitzera79245b2010-08-12 04:14:24 +01001147 unsigned num_requests, sector_t len)
Mike Snitzer06a426c2010-08-12 04:14:09 +01001148{
1149 unsigned request_nr;
1150
1151 for (request_nr = 0; request_nr < num_requests; request_nr++)
Mike Snitzera79245b2010-08-12 04:14:24 +01001152 __issue_target_request(ci, ti, request_nr, len);
Mike Snitzer06a426c2010-08-12 04:14:09 +01001153}
1154
Mike Snitzerb372d362010-09-08 18:07:01 +02001155static int __clone_and_map_empty_flush(struct clone_info *ci)
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001156{
Mike Snitzer06a426c2010-08-12 04:14:09 +01001157 unsigned target_nr = 0;
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001158 struct dm_target *ti;
1159
Mike Snitzerb372d362010-09-08 18:07:01 +02001160 BUG_ON(bio_has_data(ci->bio));
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001161 while ((ti = dm_table_get_target(ci->map, target_nr++)))
Mike Snitzera79245b2010-08-12 04:14:24 +01001162 __issue_target_requests(ci, ti, ti->num_flush_requests, 0);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001163
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001164 return 0;
1165}
1166
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001167/*
1168 * Perform all io with a single clone.
1169 */
1170static void __clone_and_map_simple(struct clone_info *ci, struct dm_target *ti)
1171{
1172 struct bio *clone, *bio = ci->bio;
1173 struct dm_target_io *tio;
1174
1175 tio = alloc_tio(ci, ti);
1176 clone = clone_bio(bio, ci->sector, ci->idx,
1177 bio->bi_vcnt - ci->idx, ci->sector_count,
1178 ci->md->bs);
1179 __map_bio(ti, clone, tio);
1180 ci->sector_count = 0;
1181}
1182
1183static int __clone_and_map_discard(struct clone_info *ci)
1184{
1185 struct dm_target *ti;
Mike Snitzera79245b2010-08-12 04:14:24 +01001186 sector_t len;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001187
Mike Snitzera79245b2010-08-12 04:14:24 +01001188 do {
1189 ti = dm_table_find_target(ci->map, ci->sector);
1190 if (!dm_target_is_valid(ti))
1191 return -EIO;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001192
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001193 /*
Mike Snitzera79245b2010-08-12 04:14:24 +01001194 * Even though the device advertised discard support,
Mike Snitzer936688d2011-08-02 12:32:01 +01001195 * that does not mean every target supports it, and
1196 * reconfiguration might also have changed that since the
Mike Snitzera79245b2010-08-12 04:14:24 +01001197 * check was performed.
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001198 */
Mike Snitzera79245b2010-08-12 04:14:24 +01001199 if (!ti->num_discard_requests)
1200 return -EOPNOTSUPP;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001201
Mike Snitzera79245b2010-08-12 04:14:24 +01001202 len = min(ci->sector_count, max_io_len_target_boundary(ci->sector, ti));
Mike Snitzer06a426c2010-08-12 04:14:09 +01001203
Mike Snitzera79245b2010-08-12 04:14:24 +01001204 __issue_target_requests(ci, ti, ti->num_discard_requests, len);
1205
1206 ci->sector += len;
1207 } while (ci->sector_count -= len);
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001208
1209 return 0;
1210}
1211
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001212static int __clone_and_map(struct clone_info *ci)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213{
1214 struct bio *clone, *bio = ci->bio;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001215 struct dm_target *ti;
1216 sector_t len = 0, max;
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001217 struct dm_target_io *tio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001219 if (unlikely(bio->bi_rw & REQ_DISCARD))
1220 return __clone_and_map_discard(ci);
1221
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001222 ti = dm_table_find_target(ci->map, ci->sector);
1223 if (!dm_target_is_valid(ti))
1224 return -EIO;
1225
Mike Snitzer56a67df2010-08-12 04:14:10 +01001226 max = max_io_len(ci->sector, ti);
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001227
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 if (ci->sector_count <= max) {
1229 /*
1230 * Optimise for the simple case where we can do all of
1231 * the remaining io with a single clone.
1232 */
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001233 __clone_and_map_simple(ci, ti);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
1235 } else if (to_sector(bio->bi_io_vec[ci->idx].bv_len) <= max) {
1236 /*
1237 * There are some bvecs that don't span targets.
1238 * Do as many of these as possible.
1239 */
1240 int i;
1241 sector_t remaining = max;
1242 sector_t bv_len;
1243
1244 for (i = ci->idx; remaining && (i < bio->bi_vcnt); i++) {
1245 bv_len = to_sector(bio->bi_io_vec[i].bv_len);
1246
1247 if (bv_len > remaining)
1248 break;
1249
1250 remaining -= bv_len;
1251 len += bv_len;
1252 }
1253
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001254 tio = alloc_tio(ci, ti);
Stefan Bader9faf4002006-10-03 01:15:41 -07001255 clone = clone_bio(bio, ci->sector, ci->idx, i - ci->idx, len,
1256 ci->md->bs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 __map_bio(ti, clone, tio);
1258
1259 ci->sector += len;
1260 ci->sector_count -= len;
1261 ci->idx = i;
1262
1263 } else {
1264 /*
Alasdair G Kergond2044a92006-03-22 00:07:42 -08001265 * Handle a bvec that must be split between two or more targets.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 */
1267 struct bio_vec *bv = bio->bi_io_vec + ci->idx;
Alasdair G Kergond2044a92006-03-22 00:07:42 -08001268 sector_t remaining = to_sector(bv->bv_len);
1269 unsigned int offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
Alasdair G Kergond2044a92006-03-22 00:07:42 -08001271 do {
1272 if (offset) {
1273 ti = dm_table_find_target(ci->map, ci->sector);
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001274 if (!dm_target_is_valid(ti))
1275 return -EIO;
1276
Mike Snitzer56a67df2010-08-12 04:14:10 +01001277 max = max_io_len(ci->sector, ti);
Alasdair G Kergond2044a92006-03-22 00:07:42 -08001278 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
Alasdair G Kergond2044a92006-03-22 00:07:42 -08001280 len = min(remaining, max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001282 tio = alloc_tio(ci, ti);
Alasdair G Kergond2044a92006-03-22 00:07:42 -08001283 clone = split_bvec(bio, ci->sector, ci->idx,
Stefan Bader9faf4002006-10-03 01:15:41 -07001284 bv->bv_offset + offset, len,
1285 ci->md->bs);
Alasdair G Kergond2044a92006-03-22 00:07:42 -08001286
1287 __map_bio(ti, clone, tio);
1288
1289 ci->sector += len;
1290 ci->sector_count -= len;
1291 offset += to_bytes(len);
1292 } while (remaining -= len);
1293
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 ci->idx++;
1295 }
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001296
1297 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298}
1299
1300/*
Mikulas Patocka8a53c282009-04-02 19:55:37 +01001301 * Split the bio into several clones and submit it to targets.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 */
Mikulas Patockaf0b9a452009-04-02 19:55:38 +01001303static void __split_and_process_bio(struct mapped_device *md, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304{
1305 struct clone_info ci;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001306 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
Alasdair G Kergon7c666412009-12-10 23:52:19 +00001308 ci.map = dm_get_live_table(md);
Mikulas Patockaf0b9a452009-04-02 19:55:38 +01001309 if (unlikely(!ci.map)) {
Tejun Heo6a8736d2010-09-08 18:07:00 +02001310 bio_io_error(bio);
Mikulas Patockaf0b9a452009-04-02 19:55:38 +01001311 return;
1312 }
Mikulas Patocka692d0eb2009-04-09 00:27:13 +01001313
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 ci.md = md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 ci.io = alloc_io(md);
1316 ci.io->error = 0;
1317 atomic_set(&ci.io->io_count, 1);
1318 ci.io->bio = bio;
1319 ci.io->md = md;
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +01001320 spin_lock_init(&ci.io->endio_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 ci.sector = bio->bi_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 ci.idx = bio->bi_idx;
1323
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -08001324 start_io_acct(ci.io);
Mike Snitzerb372d362010-09-08 18:07:01 +02001325 if (bio->bi_rw & REQ_FLUSH) {
1326 ci.bio = &ci.md->flush_bio;
1327 ci.sector_count = 0;
1328 error = __clone_and_map_empty_flush(&ci);
1329 /* dec_pending submits any data associated with flush */
1330 } else {
Tejun Heo6a8736d2010-09-08 18:07:00 +02001331 ci.bio = bio;
Tejun Heod87f4c12010-09-03 11:56:19 +02001332 ci.sector_count = bio_sectors(bio);
Mike Snitzerb372d362010-09-08 18:07:01 +02001333 while (ci.sector_count && !error)
Tejun Heod87f4c12010-09-03 11:56:19 +02001334 error = __clone_and_map(&ci);
Tejun Heod87f4c12010-09-03 11:56:19 +02001335 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
1337 /* drop the extra reference count */
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001338 dec_pending(ci.io, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 dm_table_put(ci.map);
1340}
1341/*-----------------------------------------------------------------
1342 * CRUD END
1343 *---------------------------------------------------------------*/
1344
Milan Brozf6fccb12008-07-21 12:00:37 +01001345static int dm_merge_bvec(struct request_queue *q,
1346 struct bvec_merge_data *bvm,
1347 struct bio_vec *biovec)
1348{
1349 struct mapped_device *md = q->queuedata;
Alasdair G Kergon7c666412009-12-10 23:52:19 +00001350 struct dm_table *map = dm_get_live_table(md);
Milan Brozf6fccb12008-07-21 12:00:37 +01001351 struct dm_target *ti;
1352 sector_t max_sectors;
Mikulas Patocka50371082008-10-01 14:39:17 +01001353 int max_size = 0;
Milan Brozf6fccb12008-07-21 12:00:37 +01001354
1355 if (unlikely(!map))
Mikulas Patocka50371082008-10-01 14:39:17 +01001356 goto out;
Milan Brozf6fccb12008-07-21 12:00:37 +01001357
1358 ti = dm_table_find_target(map, bvm->bi_sector);
Mikulas Patockab01cd5a2008-10-01 14:39:24 +01001359 if (!dm_target_is_valid(ti))
1360 goto out_table;
Milan Brozf6fccb12008-07-21 12:00:37 +01001361
1362 /*
1363 * Find maximum amount of I/O that won't need splitting
1364 */
Mike Snitzer56a67df2010-08-12 04:14:10 +01001365 max_sectors = min(max_io_len(bvm->bi_sector, ti),
Milan Brozf6fccb12008-07-21 12:00:37 +01001366 (sector_t) BIO_MAX_SECTORS);
1367 max_size = (max_sectors << SECTOR_SHIFT) - bvm->bi_size;
1368 if (max_size < 0)
1369 max_size = 0;
1370
1371 /*
1372 * merge_bvec_fn() returns number of bytes
1373 * it can accept at this offset
1374 * max is precomputed maximal io size
1375 */
1376 if (max_size && ti->type->merge)
1377 max_size = ti->type->merge(ti, bvm, biovec, max_size);
Mikulas Patocka8cbeb672009-06-22 10:12:14 +01001378 /*
1379 * If the target doesn't support merge method and some of the devices
1380 * provided their merge_bvec method (we know this by looking at
1381 * queue_max_hw_sectors), then we can't allow bios with multiple vector
1382 * entries. So always set max_size to 0, and the code below allows
1383 * just one page.
1384 */
1385 else if (queue_max_hw_sectors(q) <= PAGE_SIZE >> 9)
1386
1387 max_size = 0;
Milan Brozf6fccb12008-07-21 12:00:37 +01001388
Mikulas Patockab01cd5a2008-10-01 14:39:24 +01001389out_table:
Mikulas Patocka50371082008-10-01 14:39:17 +01001390 dm_table_put(map);
1391
1392out:
Milan Brozf6fccb12008-07-21 12:00:37 +01001393 /*
1394 * Always allow an entire first page
1395 */
1396 if (max_size <= biovec->bv_len && !(bvm->bi_size >> SECTOR_SHIFT))
1397 max_size = biovec->bv_len;
1398
Milan Brozf6fccb12008-07-21 12:00:37 +01001399 return max_size;
1400}
1401
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402/*
1403 * The request function that just remaps the bio built up by
1404 * dm_merge_bvec.
1405 */
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001406static int _dm_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407{
Kevin Corry12f03a42006-02-01 03:04:52 -08001408 int rw = bio_data_dir(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 struct mapped_device *md = q->queuedata;
Tejun Heoc9959052008-08-25 19:47:21 +09001410 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001412 down_read(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413
Tejun Heo074a7ac2008-08-25 19:56:14 +09001414 cpu = part_stat_lock();
1415 part_stat_inc(cpu, &dm_disk(md)->part0, ios[rw]);
1416 part_stat_add(cpu, &dm_disk(md)->part0, sectors[rw], bio_sectors(bio));
1417 part_stat_unlock();
Kevin Corry12f03a42006-02-01 03:04:52 -08001418
Tejun Heo6a8736d2010-09-08 18:07:00 +02001419 /* if we're suspended, we have to queue this io for later */
1420 if (unlikely(test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags))) {
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001421 up_read(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422
Tejun Heo6a8736d2010-09-08 18:07:00 +02001423 if (bio_rw(bio) != READA)
1424 queue_io(md, bio);
1425 else
Alasdair G Kergon54d9a1b2009-04-09 00:27:14 +01001426 bio_io_error(bio);
Mikulas Patocka92c63902009-04-09 00:27:15 +01001427 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 }
1429
Mikulas Patockaf0b9a452009-04-02 19:55:38 +01001430 __split_and_process_bio(md, bio);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001431 up_read(&md->io_lock);
Mikulas Patockaf0b9a452009-04-02 19:55:38 +01001432 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433}
1434
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001435static int dm_make_request(struct request_queue *q, struct bio *bio)
1436{
1437 struct mapped_device *md = q->queuedata;
1438
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001439 return md->saved_make_request_fn(q, bio); /* call __make_request() */
1440}
1441
1442static int dm_request_based(struct mapped_device *md)
1443{
1444 return blk_queue_stackable(md->queue);
1445}
1446
1447static int dm_request(struct request_queue *q, struct bio *bio)
1448{
1449 struct mapped_device *md = q->queuedata;
1450
1451 if (dm_request_based(md))
1452 return dm_make_request(q, bio);
1453
1454 return _dm_request(q, bio);
1455}
1456
1457void dm_dispatch_request(struct request *rq)
1458{
1459 int r;
1460
1461 if (blk_queue_io_stat(rq->q))
1462 rq->cmd_flags |= REQ_IO_STAT;
1463
1464 rq->start_time = jiffies;
1465 r = blk_insert_cloned_request(rq->q, rq);
1466 if (r)
1467 dm_complete_request(rq, r);
1468}
1469EXPORT_SYMBOL_GPL(dm_dispatch_request);
1470
1471static void dm_rq_bio_destructor(struct bio *bio)
1472{
1473 struct dm_rq_clone_bio_info *info = bio->bi_private;
1474 struct mapped_device *md = info->tio->md;
1475
1476 free_bio_info(info);
1477 bio_free(bio, md->bs);
1478}
1479
1480static int dm_rq_bio_constructor(struct bio *bio, struct bio *bio_orig,
1481 void *data)
1482{
1483 struct dm_rq_target_io *tio = data;
1484 struct mapped_device *md = tio->md;
1485 struct dm_rq_clone_bio_info *info = alloc_bio_info(md);
1486
1487 if (!info)
1488 return -ENOMEM;
1489
1490 info->orig = bio_orig;
1491 info->tio = tio;
1492 bio->bi_end_io = end_clone_bio;
1493 bio->bi_private = info;
1494 bio->bi_destructor = dm_rq_bio_destructor;
1495
1496 return 0;
1497}
1498
1499static int setup_clone(struct request *clone, struct request *rq,
1500 struct dm_rq_target_io *tio)
1501{
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00001502 int r;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001503
Tejun Heo29e40132010-09-08 18:07:00 +02001504 r = blk_rq_prep_clone(clone, rq, tio->md->bs, GFP_ATOMIC,
1505 dm_rq_bio_constructor, tio);
1506 if (r)
1507 return r;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001508
Tejun Heo29e40132010-09-08 18:07:00 +02001509 clone->cmd = rq->cmd;
1510 clone->cmd_len = rq->cmd_len;
1511 clone->sense = rq->sense;
1512 clone->buffer = rq->buffer;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001513 clone->end_io = end_clone_request;
1514 clone->end_io_data = tio;
1515
1516 return 0;
1517}
1518
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001519static struct request *clone_rq(struct request *rq, struct mapped_device *md,
1520 gfp_t gfp_mask)
1521{
1522 struct request *clone;
1523 struct dm_rq_target_io *tio;
1524
1525 tio = alloc_rq_tio(md, gfp_mask);
1526 if (!tio)
1527 return NULL;
1528
1529 tio->md = md;
1530 tio->ti = NULL;
1531 tio->orig = rq;
1532 tio->error = 0;
1533 memset(&tio->info, 0, sizeof(tio->info));
1534
1535 clone = &tio->clone;
1536 if (setup_clone(clone, rq, tio)) {
1537 /* -ENOMEM */
1538 free_rq_tio(tio);
1539 return NULL;
1540 }
1541
1542 return clone;
1543}
1544
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001545/*
1546 * Called with the queue lock held.
1547 */
1548static int dm_prep_fn(struct request_queue *q, struct request *rq)
1549{
1550 struct mapped_device *md = q->queuedata;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001551 struct request *clone;
1552
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001553 if (unlikely(rq->special)) {
1554 DMWARN("Already has something in rq->special.");
1555 return BLKPREP_KILL;
1556 }
1557
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001558 clone = clone_rq(rq, md, GFP_ATOMIC);
1559 if (!clone)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001560 return BLKPREP_DEFER;
1561
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001562 rq->special = clone;
1563 rq->cmd_flags |= REQ_DONTPREP;
1564
1565 return BLKPREP_OK;
1566}
1567
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001568/*
1569 * Returns:
1570 * 0 : the request has been processed (not requeued)
1571 * !0 : the request has been requeued
1572 */
1573static int map_request(struct dm_target *ti, struct request *clone,
1574 struct mapped_device *md)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001575{
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001576 int r, requeued = 0;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001577 struct dm_rq_target_io *tio = clone->end_io_data;
1578
1579 /*
1580 * Hold the md reference here for the in-flight I/O.
1581 * We can't rely on the reference count by device opener,
1582 * because the device may be closed during the request completion
1583 * when all bios are completed.
1584 * See the comment in rq_completed() too.
1585 */
1586 dm_get(md);
1587
1588 tio->ti = ti;
1589 r = ti->type->map_rq(ti, clone, &tio->info);
1590 switch (r) {
1591 case DM_MAPIO_SUBMITTED:
1592 /* The target has taken the I/O to submit by itself later */
1593 break;
1594 case DM_MAPIO_REMAPPED:
1595 /* The target has remapped the I/O so dispatch it */
Jun'ichi Nomura6db4ccd2009-12-10 23:52:25 +00001596 trace_block_rq_remap(clone->q, clone, disk_devt(dm_disk(md)),
1597 blk_rq_pos(tio->orig));
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001598 dm_dispatch_request(clone);
1599 break;
1600 case DM_MAPIO_REQUEUE:
1601 /* The target wants to requeue the I/O */
1602 dm_requeue_unmapped_request(clone);
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001603 requeued = 1;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001604 break;
1605 default:
1606 if (r > 0) {
1607 DMWARN("unimplemented target map return value: %d", r);
1608 BUG();
1609 }
1610
1611 /* The target wants to complete the I/O */
1612 dm_kill_unmapped_request(clone, r);
1613 break;
1614 }
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001615
1616 return requeued;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001617}
1618
1619/*
1620 * q->request_fn for request-based dm.
1621 * Called with the queue lock held.
1622 */
1623static void dm_request_fn(struct request_queue *q)
1624{
1625 struct mapped_device *md = q->queuedata;
Alasdair G Kergon7c666412009-12-10 23:52:19 +00001626 struct dm_table *map = dm_get_live_table(md);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001627 struct dm_target *ti;
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00001628 struct request *rq, *clone;
Tejun Heo29e40132010-09-08 18:07:00 +02001629 sector_t pos;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001630
1631 /*
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00001632 * For suspend, check blk_queue_stopped() and increment
1633 * ->pending within a single queue_lock not to increment the
1634 * number of in-flight I/Os after the queue is stopped in
1635 * dm_suspend().
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001636 */
Jens Axboe7eaceac2011-03-10 08:52:07 +01001637 while (!blk_queue_stopped(q)) {
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001638 rq = blk_peek_request(q);
1639 if (!rq)
Jens Axboe7eaceac2011-03-10 08:52:07 +01001640 goto delay_and_out;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001641
Tejun Heo29e40132010-09-08 18:07:00 +02001642 /* always use block 0 to find the target for flushes for now */
1643 pos = 0;
1644 if (!(rq->cmd_flags & REQ_FLUSH))
1645 pos = blk_rq_pos(rq);
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00001646
Tejun Heo29e40132010-09-08 18:07:00 +02001647 ti = dm_table_find_target(map, pos);
1648 BUG_ON(!dm_target_is_valid(ti));
1649
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001650 if (ti->type->busy && ti->type->busy(ti))
Jens Axboe7eaceac2011-03-10 08:52:07 +01001651 goto delay_and_out;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001652
1653 blk_start_request(rq);
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00001654 clone = rq->special;
1655 atomic_inc(&md->pending[rq_data_dir(clone)]);
1656
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001657 spin_unlock(q->queue_lock);
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001658 if (map_request(ti, clone, md))
1659 goto requeued;
1660
Kiyoshi Ueda052189a2011-01-13 20:00:00 +00001661 BUG_ON(!irqs_disabled());
1662 spin_lock(q->queue_lock);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001663 }
1664
1665 goto out;
1666
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001667requeued:
Kiyoshi Ueda052189a2011-01-13 20:00:00 +00001668 BUG_ON(!irqs_disabled());
1669 spin_lock(q->queue_lock);
Kiyoshi Ueda9eef87d2010-02-16 18:43:01 +00001670
Jens Axboe7eaceac2011-03-10 08:52:07 +01001671delay_and_out:
1672 blk_delay_queue(q, HZ / 10);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001673out:
1674 dm_table_put(map);
1675
1676 return;
1677}
1678
1679int dm_underlying_device_busy(struct request_queue *q)
1680{
1681 return blk_lld_busy(q);
1682}
1683EXPORT_SYMBOL_GPL(dm_underlying_device_busy);
1684
1685static int dm_lld_busy(struct request_queue *q)
1686{
1687 int r;
1688 struct mapped_device *md = q->queuedata;
Alasdair G Kergon7c666412009-12-10 23:52:19 +00001689 struct dm_table *map = dm_get_live_table(md);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001690
1691 if (!map || test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags))
1692 r = 1;
1693 else
1694 r = dm_table_any_busy_target(map);
1695
1696 dm_table_put(map);
1697
1698 return r;
1699}
1700
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701static int dm_any_congested(void *congested_data, int bdi_bits)
1702{
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00001703 int r = bdi_bits;
1704 struct mapped_device *md = congested_data;
1705 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01001707 if (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
Alasdair G Kergon7c666412009-12-10 23:52:19 +00001708 map = dm_get_live_table(md);
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00001709 if (map) {
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001710 /*
1711 * Request-based dm cares about only own queue for
1712 * the query about congestion status of request_queue
1713 */
1714 if (dm_request_based(md))
1715 r = md->queue->backing_dev_info.state &
1716 bdi_bits;
1717 else
1718 r = dm_table_any_congested(map, bdi_bits);
1719
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00001720 dm_table_put(map);
1721 }
1722 }
1723
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 return r;
1725}
1726
1727/*-----------------------------------------------------------------
1728 * An IDR is used to keep track of allocated minor numbers.
1729 *---------------------------------------------------------------*/
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001730static void free_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731{
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001732 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 idr_remove(&_minor_idr, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001734 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735}
1736
1737/*
1738 * See if the device with a specific minor # is free.
1739 */
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001740static int specific_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741{
1742 int r, m;
1743
1744 if (minor >= (1 << MINORBITS))
1745 return -EINVAL;
1746
Jeff Mahoney62f75c22006-06-26 00:27:21 -07001747 r = idr_pre_get(&_minor_idr, GFP_KERNEL);
1748 if (!r)
1749 return -ENOMEM;
1750
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001751 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752
1753 if (idr_find(&_minor_idr, minor)) {
1754 r = -EBUSY;
1755 goto out;
1756 }
1757
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001758 r = idr_get_new_above(&_minor_idr, MINOR_ALLOCED, minor, &m);
Jeff Mahoney62f75c22006-06-26 00:27:21 -07001759 if (r)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761
1762 if (m != minor) {
1763 idr_remove(&_minor_idr, m);
1764 r = -EBUSY;
1765 goto out;
1766 }
1767
1768out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001769 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 return r;
1771}
1772
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001773static int next_free_minor(int *minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774{
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001775 int r, m;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 r = idr_pre_get(&_minor_idr, GFP_KERNEL);
Jeff Mahoney62f75c22006-06-26 00:27:21 -07001778 if (!r)
1779 return -ENOMEM;
1780
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001781 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001783 r = idr_get_new(&_minor_idr, MINOR_ALLOCED, &m);
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001784 if (r)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786
1787 if (m >= (1 << MINORBITS)) {
1788 idr_remove(&_minor_idr, m);
1789 r = -ENOSPC;
1790 goto out;
1791 }
1792
1793 *minor = m;
1794
1795out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001796 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 return r;
1798}
1799
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07001800static const struct block_device_operations dm_blk_dops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801
Mikulas Patocka53d59142009-04-02 19:55:37 +01001802static void dm_wq_work(struct work_struct *work);
1803
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01001804static void dm_init_md_queue(struct mapped_device *md)
1805{
1806 /*
1807 * Request-based dm devices cannot be stacked on top of bio-based dm
1808 * devices. The type of this dm device has not been decided yet.
1809 * The type is decided at the first table loading time.
1810 * To prevent problematic device stacking, clear the queue flag
1811 * for request stacking support until then.
1812 *
1813 * This queue is new, so no concurrency on the queue_flags.
1814 */
1815 queue_flag_clear_unlocked(QUEUE_FLAG_STACKABLE, md->queue);
1816
1817 md->queue->queuedata = md;
1818 md->queue->backing_dev_info.congested_fn = dm_any_congested;
1819 md->queue->backing_dev_info.congested_data = md;
1820 blk_queue_make_request(md->queue, dm_request);
1821 blk_queue_bounce_limit(md->queue, BLK_BOUNCE_ANY);
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01001822 blk_queue_merge_bvec(md->queue, dm_merge_bvec);
1823}
1824
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825/*
1826 * Allocate and initialise a blank device with a given minor.
1827 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001828static struct mapped_device *alloc_dev(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829{
1830 int r;
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001831 struct mapped_device *md = kzalloc(sizeof(*md), GFP_KERNEL);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001832 void *old_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833
1834 if (!md) {
1835 DMWARN("unable to allocate device, out of memory.");
1836 return NULL;
1837 }
1838
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001839 if (!try_module_get(THIS_MODULE))
Milan Broz6ed7ade2008-02-08 02:10:19 +00001840 goto bad_module_get;
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001841
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 /* get a minor number for the dev */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001843 if (minor == DM_ANY_MINOR)
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001844 r = next_free_minor(&minor);
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001845 else
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001846 r = specific_minor(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 if (r < 0)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001848 goto bad_minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
Mike Snitzera5664da2010-08-12 04:14:01 +01001850 md->type = DM_TYPE_NONE;
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001851 init_rwsem(&md->io_lock);
Daniel Walkere61290a2008-02-08 02:10:08 +00001852 mutex_init(&md->suspend_lock);
Mike Snitzera5664da2010-08-12 04:14:01 +01001853 mutex_init(&md->type_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01001854 spin_lock_init(&md->deferred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 rwlock_init(&md->map_lock);
1856 atomic_set(&md->holders, 1);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -07001857 atomic_set(&md->open_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 atomic_set(&md->event_nr, 0);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001859 atomic_set(&md->uevent_seq, 0);
1860 INIT_LIST_HEAD(&md->uevent_list);
1861 spin_lock_init(&md->uevent_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01001863 md->queue = blk_alloc_queue(GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 if (!md->queue)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001865 goto bad_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01001867 dm_init_md_queue(md);
Stefan Bader9faf4002006-10-03 01:15:41 -07001868
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 md->disk = alloc_disk(1);
1870 if (!md->disk)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001871 goto bad_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001873 atomic_set(&md->pending[0], 0);
1874 atomic_set(&md->pending[1], 0);
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07001875 init_waitqueue_head(&md->wait);
Mikulas Patocka53d59142009-04-02 19:55:37 +01001876 INIT_WORK(&md->work, dm_wq_work);
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07001877 init_waitqueue_head(&md->eventq);
1878
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 md->disk->major = _major;
1880 md->disk->first_minor = minor;
1881 md->disk->fops = &dm_blk_dops;
1882 md->disk->queue = md->queue;
1883 md->disk->private_data = md;
1884 sprintf(md->disk->disk_name, "dm-%d", minor);
1885 add_disk(md->disk);
Mike Anderson7e51f252006-03-27 01:17:52 -08001886 format_dev_t(md->name, MKDEV(_major, minor));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887
Tejun Heo9c4376d2011-01-13 19:59:58 +00001888 md->wq = alloc_workqueue("kdmflush",
1889 WQ_NON_REENTRANT | WQ_MEM_RECLAIM, 0);
Milan Broz304f3f62008-02-08 02:11:17 +00001890 if (!md->wq)
1891 goto bad_thread;
1892
Mikulas Patocka32a926d2009-06-22 10:12:17 +01001893 md->bdev = bdget_disk(md->disk, 0);
1894 if (!md->bdev)
1895 goto bad_bdev;
1896
Tejun Heo6a8736d2010-09-08 18:07:00 +02001897 bio_init(&md->flush_bio);
1898 md->flush_bio.bi_bdev = md->bdev;
1899 md->flush_bio.bi_rw = WRITE_FLUSH;
1900
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001901 /* Populate the mapping, nobody knows we exist yet */
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001902 spin_lock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001903 old_md = idr_replace(&_minor_idr, md, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001904 spin_unlock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001905
1906 BUG_ON(old_md != MINOR_ALLOCED);
1907
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 return md;
1909
Mikulas Patocka32a926d2009-06-22 10:12:17 +01001910bad_bdev:
1911 destroy_workqueue(md->wq);
Milan Broz304f3f62008-02-08 02:11:17 +00001912bad_thread:
Zdenek Kabelac03022c52009-10-16 23:18:15 +01001913 del_gendisk(md->disk);
Milan Broz304f3f62008-02-08 02:11:17 +00001914 put_disk(md->disk);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001915bad_disk:
Al Viro1312f402006-03-12 11:02:03 -05001916 blk_cleanup_queue(md->queue);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001917bad_queue:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 free_minor(minor);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001919bad_minor:
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001920 module_put(THIS_MODULE);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001921bad_module_get:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 kfree(md);
1923 return NULL;
1924}
1925
Jun'ichi Nomuraae9da832007-10-19 22:38:43 +01001926static void unlock_fs(struct mapped_device *md);
1927
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928static void free_dev(struct mapped_device *md)
1929{
Tejun Heof331c022008-09-03 09:01:48 +02001930 int minor = MINOR(disk_devt(md->disk));
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08001931
Mikulas Patocka32a926d2009-06-22 10:12:17 +01001932 unlock_fs(md);
1933 bdput(md->bdev);
Milan Broz304f3f62008-02-08 02:11:17 +00001934 destroy_workqueue(md->wq);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001935 if (md->tio_pool)
1936 mempool_destroy(md->tio_pool);
1937 if (md->io_pool)
1938 mempool_destroy(md->io_pool);
1939 if (md->bs)
1940 bioset_free(md->bs);
Martin K. Petersen9c470082009-04-09 00:27:12 +01001941 blk_integrity_unregister(md->disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 del_gendisk(md->disk);
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08001943 free_minor(minor);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001944
1945 spin_lock(&_minor_lock);
1946 md->disk->private_data = NULL;
1947 spin_unlock(&_minor_lock);
1948
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 put_disk(md->disk);
Al Viro1312f402006-03-12 11:02:03 -05001950 blk_cleanup_queue(md->queue);
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001951 module_put(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 kfree(md);
1953}
1954
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001955static void __bind_mempools(struct mapped_device *md, struct dm_table *t)
1956{
1957 struct dm_md_mempools *p;
1958
1959 if (md->io_pool && md->tio_pool && md->bs)
1960 /* the md already has necessary mempools */
1961 goto out;
1962
1963 p = dm_table_get_md_mempools(t);
1964 BUG_ON(!p || md->io_pool || md->tio_pool || md->bs);
1965
1966 md->io_pool = p->io_pool;
1967 p->io_pool = NULL;
1968 md->tio_pool = p->tio_pool;
1969 p->tio_pool = NULL;
1970 md->bs = p->bs;
1971 p->bs = NULL;
1972
1973out:
1974 /* mempool bind completed, now no need any mempools in the table */
1975 dm_table_free_md_mempools(t);
1976}
1977
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978/*
1979 * Bind a table to the device.
1980 */
1981static void event_callback(void *context)
1982{
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001983 unsigned long flags;
1984 LIST_HEAD(uevents);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 struct mapped_device *md = (struct mapped_device *) context;
1986
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001987 spin_lock_irqsave(&md->uevent_lock, flags);
1988 list_splice_init(&md->uevent_list, &uevents);
1989 spin_unlock_irqrestore(&md->uevent_lock, flags);
1990
Tejun Heoed9e1982008-08-25 19:56:05 +09001991 dm_send_uevents(&uevents, &disk_to_dev(md->disk)->kobj);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001992
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 atomic_inc(&md->event_nr);
1994 wake_up(&md->eventq);
1995}
1996
Mike Snitzerc2176492011-01-13 19:53:46 +00001997/*
1998 * Protected by md->suspend_lock obtained by dm_swap_table().
1999 */
Alasdair G Kergon4e901882005-07-28 21:15:59 -07002000static void __set_size(struct mapped_device *md, sector_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001{
Alasdair G Kergon4e901882005-07-28 21:15:59 -07002002 set_capacity(md->disk, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002004 i_size_write(md->bdev->bd_inode, (loff_t)size << SECTOR_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005}
2006
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002007/*
Mikulas Patockad5b9dd02011-08-02 12:32:04 +01002008 * Return 1 if the queue has a compulsory merge_bvec_fn function.
2009 *
2010 * If this function returns 0, then the device is either a non-dm
2011 * device without a merge_bvec_fn, or it is a dm device that is
2012 * able to split any bios it receives that are too big.
2013 */
2014int dm_queue_merge_is_compulsory(struct request_queue *q)
2015{
2016 struct mapped_device *dev_md;
2017
2018 if (!q->merge_bvec_fn)
2019 return 0;
2020
2021 if (q->make_request_fn == dm_request) {
2022 dev_md = q->queuedata;
2023 if (test_bit(DMF_MERGE_IS_OPTIONAL, &dev_md->flags))
2024 return 0;
2025 }
2026
2027 return 1;
2028}
2029
2030static int dm_device_merge_is_compulsory(struct dm_target *ti,
2031 struct dm_dev *dev, sector_t start,
2032 sector_t len, void *data)
2033{
2034 struct block_device *bdev = dev->bdev;
2035 struct request_queue *q = bdev_get_queue(bdev);
2036
2037 return dm_queue_merge_is_compulsory(q);
2038}
2039
2040/*
2041 * Return 1 if it is acceptable to ignore merge_bvec_fn based
2042 * on the properties of the underlying devices.
2043 */
2044static int dm_table_merge_is_optional(struct dm_table *table)
2045{
2046 unsigned i = 0;
2047 struct dm_target *ti;
2048
2049 while (i < dm_table_get_num_targets(table)) {
2050 ti = dm_table_get_target(table, i++);
2051
2052 if (ti->type->iterate_devices &&
2053 ti->type->iterate_devices(ti, dm_device_merge_is_compulsory, NULL))
2054 return 0;
2055 }
2056
2057 return 1;
2058}
2059
2060/*
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002061 * Returns old map, which caller must destroy.
2062 */
2063static struct dm_table *__bind(struct mapped_device *md, struct dm_table *t,
2064 struct queue_limits *limits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065{
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002066 struct dm_table *old_map;
Jens Axboe165125e2007-07-24 09:28:11 +02002067 struct request_queue *q = md->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 sector_t size;
Kiyoshi Ueda523d9292009-06-22 10:12:37 +01002069 unsigned long flags;
Mikulas Patockad5b9dd02011-08-02 12:32:04 +01002070 int merge_is_optional;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071
2072 size = dm_table_get_size(t);
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08002073
2074 /*
2075 * Wipe any geometry if the size of the table changed.
2076 */
2077 if (size != get_capacity(md->disk))
2078 memset(&md->geometry, 0, sizeof(md->geometry));
2079
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002080 __set_size(md, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002082 dm_table_event_callback(t, event_callback, md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002083
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002084 /*
2085 * The queue hasn't been stopped yet, if the old table type wasn't
2086 * for request-based during suspension. So stop it to prevent
2087 * I/O mapping before resume.
2088 * This must be done before setting the queue restrictions,
2089 * because request-based dm may be run just after the setting.
2090 */
2091 if (dm_table_request_based(t) && !blk_queue_stopped(q))
2092 stop_queue(q);
2093
2094 __bind_mempools(md, t);
2095
Mikulas Patockad5b9dd02011-08-02 12:32:04 +01002096 merge_is_optional = dm_table_merge_is_optional(t);
2097
Kiyoshi Ueda523d9292009-06-22 10:12:37 +01002098 write_lock_irqsave(&md->map_lock, flags);
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002099 old_map = md->map;
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002100 md->map = t;
Alasdair G Kergon36a04562011-10-31 20:19:04 +00002101 md->immutable_target_type = dm_table_get_immutable_target_type(t);
2102
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002103 dm_table_set_restrictions(t, q, limits);
Mikulas Patockad5b9dd02011-08-02 12:32:04 +01002104 if (merge_is_optional)
2105 set_bit(DMF_MERGE_IS_OPTIONAL, &md->flags);
2106 else
2107 clear_bit(DMF_MERGE_IS_OPTIONAL, &md->flags);
Kiyoshi Ueda523d9292009-06-22 10:12:37 +01002108 write_unlock_irqrestore(&md->map_lock, flags);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002109
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002110 return old_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111}
2112
Alasdair G Kergona7940152009-12-10 23:52:23 +00002113/*
2114 * Returns unbound table for the caller to free.
2115 */
2116static struct dm_table *__unbind(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117{
2118 struct dm_table *map = md->map;
Kiyoshi Ueda523d9292009-06-22 10:12:37 +01002119 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120
2121 if (!map)
Alasdair G Kergona7940152009-12-10 23:52:23 +00002122 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123
2124 dm_table_event_callback(map, NULL, NULL);
Kiyoshi Ueda523d9292009-06-22 10:12:37 +01002125 write_lock_irqsave(&md->map_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 md->map = NULL;
Kiyoshi Ueda523d9292009-06-22 10:12:37 +01002127 write_unlock_irqrestore(&md->map_lock, flags);
Alasdair G Kergona7940152009-12-10 23:52:23 +00002128
2129 return map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130}
2131
2132/*
2133 * Constructor for a new device.
2134 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002135int dm_create(int minor, struct mapped_device **result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136{
2137 struct mapped_device *md;
2138
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002139 md = alloc_dev(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 if (!md)
2141 return -ENXIO;
2142
Milan Broz784aae72009-01-06 03:05:12 +00002143 dm_sysfs_init(md);
2144
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 *result = md;
2146 return 0;
2147}
2148
Mike Snitzera5664da2010-08-12 04:14:01 +01002149/*
2150 * Functions to manage md->type.
2151 * All are required to hold md->type_lock.
2152 */
2153void dm_lock_md_type(struct mapped_device *md)
2154{
2155 mutex_lock(&md->type_lock);
2156}
2157
2158void dm_unlock_md_type(struct mapped_device *md)
2159{
2160 mutex_unlock(&md->type_lock);
2161}
2162
2163void dm_set_md_type(struct mapped_device *md, unsigned type)
2164{
2165 md->type = type;
2166}
2167
2168unsigned dm_get_md_type(struct mapped_device *md)
2169{
2170 return md->type;
2171}
2172
Alasdair G Kergon36a04562011-10-31 20:19:04 +00002173struct target_type *dm_get_immutable_target_type(struct mapped_device *md)
2174{
2175 return md->immutable_target_type;
2176}
2177
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002178/*
2179 * Fully initialize a request-based queue (->elevator, ->request_fn, etc).
2180 */
2181static int dm_init_request_based_queue(struct mapped_device *md)
2182{
2183 struct request_queue *q = NULL;
2184
2185 if (md->queue->elevator)
2186 return 1;
2187
2188 /* Fully initialize the queue */
2189 q = blk_init_allocated_queue(md->queue, dm_request_fn, NULL);
2190 if (!q)
2191 return 0;
2192
2193 md->queue = q;
2194 md->saved_make_request_fn = md->queue->make_request_fn;
2195 dm_init_md_queue(md);
2196 blk_queue_softirq_done(md->queue, dm_softirq_done);
2197 blk_queue_prep_rq(md->queue, dm_prep_fn);
2198 blk_queue_lld_busy(md->queue, dm_lld_busy);
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002199
2200 elv_register_queue(md->queue);
2201
2202 return 1;
2203}
2204
2205/*
2206 * Setup the DM device's queue based on md's type
2207 */
2208int dm_setup_md_queue(struct mapped_device *md)
2209{
2210 if ((dm_get_md_type(md) == DM_TYPE_REQUEST_BASED) &&
2211 !dm_init_request_based_queue(md)) {
2212 DMWARN("Cannot initialize queue for request-based mapped device");
2213 return -EINVAL;
2214 }
2215
2216 return 0;
2217}
2218
David Teigland637842c2006-01-06 00:20:00 -08002219static struct mapped_device *dm_find_md(dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220{
2221 struct mapped_device *md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 unsigned minor = MINOR(dev);
2223
2224 if (MAJOR(dev) != _major || minor >= (1 << MINORBITS))
2225 return NULL;
2226
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002227 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228
2229 md = idr_find(&_minor_idr, minor);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002230 if (md && (md == MINOR_ALLOCED ||
Tejun Heof331c022008-09-03 09:01:48 +02002231 (MINOR(disk_devt(dm_disk(md))) != minor) ||
Kiyoshi Uedaabdc5682010-08-12 04:13:54 +01002232 dm_deleting_md(md) ||
Alasdair G Kergon17b2f662006-06-26 00:27:33 -07002233 test_bit(DMF_FREEING, &md->flags))) {
David Teigland637842c2006-01-06 00:20:00 -08002234 md = NULL;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002235 goto out;
2236 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002238out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002239 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240
David Teigland637842c2006-01-06 00:20:00 -08002241 return md;
2242}
2243
David Teiglandd229a952006-01-06 00:20:01 -08002244struct mapped_device *dm_get_md(dev_t dev)
2245{
2246 struct mapped_device *md = dm_find_md(dev);
2247
2248 if (md)
2249 dm_get(md);
2250
2251 return md;
2252}
2253
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08002254void *dm_get_mdptr(struct mapped_device *md)
David Teigland637842c2006-01-06 00:20:00 -08002255{
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08002256 return md->interface_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257}
2258
2259void dm_set_mdptr(struct mapped_device *md, void *ptr)
2260{
2261 md->interface_ptr = ptr;
2262}
2263
2264void dm_get(struct mapped_device *md)
2265{
2266 atomic_inc(&md->holders);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002267 BUG_ON(test_bit(DMF_FREEING, &md->flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268}
2269
Alasdair G Kergon72d94862006-06-26 00:27:35 -07002270const char *dm_device_name(struct mapped_device *md)
2271{
2272 return md->name;
2273}
2274EXPORT_SYMBOL_GPL(dm_device_name);
2275
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002276static void __dm_destroy(struct mapped_device *md, bool wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277{
Mike Anderson1134e5a2006-03-27 01:17:54 -08002278 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002280 might_sleep();
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002281
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002282 spin_lock(&_minor_lock);
2283 map = dm_get_live_table(md);
2284 idr_replace(&_minor_idr, MINOR_ALLOCED, MINOR(disk_devt(dm_disk(md))));
2285 set_bit(DMF_FREEING, &md->flags);
2286 spin_unlock(&_minor_lock);
2287
2288 if (!dm_suspended_md(md)) {
2289 dm_table_presuspend_targets(map);
2290 dm_table_postsuspend_targets(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 }
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002292
2293 /*
2294 * Rare, but there may be I/O requests still going to complete,
2295 * for example. Wait for all references to disappear.
2296 * No one should increment the reference count of the mapped_device,
2297 * after the mapped_device state becomes DMF_FREEING.
2298 */
2299 if (wait)
2300 while (atomic_read(&md->holders))
2301 msleep(1);
2302 else if (atomic_read(&md->holders))
2303 DMWARN("%s: Forcibly removing mapped_device still in use! (%d users)",
2304 dm_device_name(md), atomic_read(&md->holders));
2305
2306 dm_sysfs_exit(md);
2307 dm_table_put(map);
2308 dm_table_destroy(__unbind(md));
2309 free_dev(md);
2310}
2311
2312void dm_destroy(struct mapped_device *md)
2313{
2314 __dm_destroy(md, true);
2315}
2316
2317void dm_destroy_immediate(struct mapped_device *md)
2318{
2319 __dm_destroy(md, false);
2320}
2321
2322void dm_put(struct mapped_device *md)
2323{
2324 atomic_dec(&md->holders);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325}
Edward Goggin79eb8852007-05-09 02:32:56 -07002326EXPORT_SYMBOL_GPL(dm_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327
Mikulas Patocka401600d2009-04-02 19:55:38 +01002328static int dm_wait_for_completion(struct mapped_device *md, int interruptible)
Milan Broz46125c12008-02-08 02:10:30 +00002329{
2330 int r = 0;
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002331 DECLARE_WAITQUEUE(wait, current);
2332
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002333 add_wait_queue(&md->wait, &wait);
Milan Broz46125c12008-02-08 02:10:30 +00002334
2335 while (1) {
Mikulas Patocka401600d2009-04-02 19:55:38 +01002336 set_current_state(interruptible);
Milan Broz46125c12008-02-08 02:10:30 +00002337
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00002338 if (!md_in_flight(md))
Milan Broz46125c12008-02-08 02:10:30 +00002339 break;
2340
Mikulas Patocka401600d2009-04-02 19:55:38 +01002341 if (interruptible == TASK_INTERRUPTIBLE &&
2342 signal_pending(current)) {
Milan Broz46125c12008-02-08 02:10:30 +00002343 r = -EINTR;
2344 break;
2345 }
2346
2347 io_schedule();
2348 }
2349 set_current_state(TASK_RUNNING);
2350
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002351 remove_wait_queue(&md->wait, &wait);
2352
Milan Broz46125c12008-02-08 02:10:30 +00002353 return r;
2354}
2355
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356/*
2357 * Process the deferred bios
2358 */
Mikulas Patockaef208582009-04-02 19:55:38 +01002359static void dm_wq_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360{
Mikulas Patockaef208582009-04-02 19:55:38 +01002361 struct mapped_device *md = container_of(work, struct mapped_device,
2362 work);
Milan Broz6d6f10d2008-02-08 02:10:22 +00002363 struct bio *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364
Tejun Heo6a8736d2010-09-08 18:07:00 +02002365 down_read(&md->io_lock);
Mikulas Patockaef208582009-04-02 19:55:38 +01002366
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002367 while (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002368 spin_lock_irq(&md->deferred_lock);
2369 c = bio_list_pop(&md->deferred);
2370 spin_unlock_irq(&md->deferred_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01002371
Tejun Heo6a8736d2010-09-08 18:07:00 +02002372 if (!c)
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002373 break;
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002374
Tejun Heo6a8736d2010-09-08 18:07:00 +02002375 up_read(&md->io_lock);
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002376
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002377 if (dm_request_based(md))
2378 generic_make_request(c);
Tejun Heo6a8736d2010-09-08 18:07:00 +02002379 else
2380 __split_and_process_bio(md, c);
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002381
Tejun Heo6a8736d2010-09-08 18:07:00 +02002382 down_read(&md->io_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01002383 }
Milan Broz73d410c2008-02-08 02:10:25 +00002384
Tejun Heo6a8736d2010-09-08 18:07:00 +02002385 up_read(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386}
2387
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002388static void dm_queue_flush(struct mapped_device *md)
Milan Broz304f3f62008-02-08 02:11:17 +00002389{
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002390 clear_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
2391 smp_mb__after_clear_bit();
Mikulas Patocka53d59142009-04-02 19:55:37 +01002392 queue_work(md->wq, &md->work);
Milan Broz304f3f62008-02-08 02:11:17 +00002393}
2394
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395/*
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002396 * Swap in a new table, returning the old one for the caller to destroy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 */
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002398struct dm_table *dm_swap_table(struct mapped_device *md, struct dm_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399{
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002400 struct dm_table *map = ERR_PTR(-EINVAL);
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002401 struct queue_limits limits;
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002402 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403
Daniel Walkere61290a2008-02-08 02:10:08 +00002404 mutex_lock(&md->suspend_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405
2406 /* device must be suspended */
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +00002407 if (!dm_suspended_md(md))
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07002408 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002410 r = dm_calculate_queue_limits(table, &limits);
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002411 if (r) {
2412 map = ERR_PTR(r);
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002413 goto out;
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002414 }
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002415
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002416 map = __bind(md, table, &limits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07002418out:
Daniel Walkere61290a2008-02-08 02:10:08 +00002419 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002420 return map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421}
2422
2423/*
2424 * Functions to lock and unlock any filesystem running on the
2425 * device.
2426 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002427static int lock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428{
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08002429 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430
2431 WARN_ON(md->frozen_sb);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002432
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002433 md->frozen_sb = freeze_bdev(md->bdev);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002434 if (IS_ERR(md->frozen_sb)) {
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002435 r = PTR_ERR(md->frozen_sb);
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08002436 md->frozen_sb = NULL;
2437 return r;
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002438 }
2439
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002440 set_bit(DMF_FROZEN, &md->flags);
2441
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 return 0;
2443}
2444
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002445static void unlock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446{
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002447 if (!test_bit(DMF_FROZEN, &md->flags))
2448 return;
2449
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002450 thaw_bdev(md->bdev, md->frozen_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 md->frozen_sb = NULL;
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002452 clear_bit(DMF_FROZEN, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453}
2454
2455/*
2456 * We need to be able to change a mapping table under a mounted
2457 * filesystem. For example we might want to move some data in
2458 * the background. Before the table can be swapped with
2459 * dm_bind_table, dm_suspend must be called to flush any in
2460 * flight bios and ensure that any further io gets deferred.
2461 */
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002462/*
2463 * Suspend mechanism in request-based dm.
2464 *
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002465 * 1. Flush all I/Os by lock_fs() if needed.
2466 * 2. Stop dispatching any I/O by stopping the request_queue.
2467 * 3. Wait for all in-flight I/Os to be completed or requeued.
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002468 *
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002469 * To abort suspend, start the request_queue.
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002470 */
Kiyoshi Uedaa3d77d32006-12-08 02:41:04 -08002471int dm_suspend(struct mapped_device *md, unsigned suspend_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472{
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002473 struct dm_table *map = NULL;
Milan Broz46125c12008-02-08 02:10:30 +00002474 int r = 0;
Kiyoshi Uedaa3d77d32006-12-08 02:41:04 -08002475 int do_lockfs = suspend_flags & DM_SUSPEND_LOCKFS_FLAG ? 1 : 0;
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002476 int noflush = suspend_flags & DM_SUSPEND_NOFLUSH_FLAG ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477
Daniel Walkere61290a2008-02-08 02:10:08 +00002478 mutex_lock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002479
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +00002480 if (dm_suspended_md(md)) {
Milan Broz73d410c2008-02-08 02:10:25 +00002481 r = -EINVAL;
Alasdair G Kergond2874832006-11-08 17:44:43 -08002482 goto out_unlock;
Milan Broz73d410c2008-02-08 02:10:25 +00002483 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484
Alasdair G Kergon7c666412009-12-10 23:52:19 +00002485 map = dm_get_live_table(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002487 /*
2488 * DMF_NOFLUSH_SUSPENDING must be set before presuspend.
2489 * This flag is cleared before dm_suspend returns.
2490 */
2491 if (noflush)
2492 set_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
2493
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002494 /* This does not get reverted if there's an error later. */
2495 dm_table_presuspend_targets(map);
2496
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002497 /*
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002498 * Flush I/O to the device.
2499 * Any I/O submitted after lock_fs() may not be flushed.
2500 * noflush takes precedence over do_lockfs.
2501 * (lock_fs() flushes I/Os and waits for them to complete.)
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002502 */
2503 if (!noflush && do_lockfs) {
2504 r = lock_fs(md);
2505 if (r)
Kiyoshi Uedaf431d962008-10-21 17:45:07 +01002506 goto out;
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002507 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508
2509 /*
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002510 * Here we must make sure that no processes are submitting requests
2511 * to target drivers i.e. no one may be executing
2512 * __split_and_process_bio. This is called from dm_request and
2513 * dm_wq_work.
2514 *
2515 * To get all processes out of __split_and_process_bio in dm_request,
2516 * we take the write lock. To prevent any process from reentering
Tejun Heo6a8736d2010-09-08 18:07:00 +02002517 * __split_and_process_bio from dm_request and quiesce the thread
2518 * (dm_wq_work), we set BMF_BLOCK_IO_FOR_SUSPEND and call
2519 * flush_workqueue(md->wq).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002521 down_write(&md->io_lock);
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01002522 set_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002523 up_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002525 /*
Tejun Heo29e40132010-09-08 18:07:00 +02002526 * Stop md->queue before flushing md->wq in case request-based
2527 * dm defers requests to md->wq from md->queue.
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002528 */
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002529 if (dm_request_based(md))
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002530 stop_queue(md->queue);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002531
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002532 flush_workqueue(md->wq);
2533
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 /*
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002535 * At this point no more requests are entering target request routines.
2536 * We call dm_wait_for_completion to wait for all existing requests
2537 * to finish.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 */
Mikulas Patocka401600d2009-04-02 19:55:38 +01002539 r = dm_wait_for_completion(md, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002541 down_write(&md->io_lock);
Milan Broz6d6f10d2008-02-08 02:10:22 +00002542 if (noflush)
Mikulas Patocka022c2612009-04-02 19:55:39 +01002543 clear_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
Milan Broz94d63512008-02-08 02:10:27 +00002544 up_write(&md->io_lock);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002545
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 /* were we interrupted ? */
Milan Broz46125c12008-02-08 02:10:30 +00002547 if (r < 0) {
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002548 dm_queue_flush(md);
Milan Broz73d410c2008-02-08 02:10:25 +00002549
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002550 if (dm_request_based(md))
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002551 start_queue(md->queue);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002552
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002553 unlock_fs(md);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002554 goto out; /* pushback list is already flushed, so skip flush */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002555 }
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002556
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002557 /*
2558 * If dm_wait_for_completion returned 0, the device is completely
2559 * quiescent now. There is no request-processing activity. All new
2560 * requests are being added to md->deferred list.
2561 */
2562
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563 set_bit(DMF_SUSPENDED, &md->flags);
2564
Kiyoshi Ueda4d4471c2009-12-10 23:52:26 +00002565 dm_table_postsuspend_targets(map);
2566
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002567out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 dm_table_put(map);
Alasdair G Kergond2874832006-11-08 17:44:43 -08002569
2570out_unlock:
Daniel Walkere61290a2008-02-08 02:10:08 +00002571 mutex_unlock(&md->suspend_lock);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002572 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573}
2574
2575int dm_resume(struct mapped_device *md)
2576{
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002577 int r = -EINVAL;
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002578 struct dm_table *map = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579
Daniel Walkere61290a2008-02-08 02:10:08 +00002580 mutex_lock(&md->suspend_lock);
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +00002581 if (!dm_suspended_md(md))
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002582 goto out;
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002583
Alasdair G Kergon7c666412009-12-10 23:52:19 +00002584 map = dm_get_live_table(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002585 if (!map || !dm_table_get_size(map))
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002586 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587
Milan Broz8757b772006-10-03 01:15:36 -07002588 r = dm_table_resume_targets(map);
2589 if (r)
2590 goto out;
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002591
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002592 dm_queue_flush(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002593
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002594 /*
2595 * Flushing deferred I/Os must be done after targets are resumed
2596 * so that mapping of targets can work correctly.
2597 * Request-based dm is queueing the deferred I/Os in its request_queue.
2598 */
2599 if (dm_request_based(md))
2600 start_queue(md->queue);
2601
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002602 unlock_fs(md);
2603
2604 clear_bit(DMF_SUSPENDED, &md->flags);
2605
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002606 r = 0;
2607out:
2608 dm_table_put(map);
Daniel Walkere61290a2008-02-08 02:10:08 +00002609 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002610
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002611 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612}
2613
2614/*-----------------------------------------------------------------
2615 * Event notification.
2616 *---------------------------------------------------------------*/
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00002617int dm_kobject_uevent(struct mapped_device *md, enum kobject_action action,
Milan Broz60935eb2009-06-22 10:12:30 +01002618 unsigned cookie)
Alasdair G Kergon69267a32007-12-13 14:15:57 +00002619{
Milan Broz60935eb2009-06-22 10:12:30 +01002620 char udev_cookie[DM_COOKIE_LENGTH];
2621 char *envp[] = { udev_cookie, NULL };
2622
2623 if (!cookie)
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00002624 return kobject_uevent(&disk_to_dev(md->disk)->kobj, action);
Milan Broz60935eb2009-06-22 10:12:30 +01002625 else {
2626 snprintf(udev_cookie, DM_COOKIE_LENGTH, "%s=%u",
2627 DM_COOKIE_ENV_VAR_NAME, cookie);
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00002628 return kobject_uevent_env(&disk_to_dev(md->disk)->kobj,
2629 action, envp);
Milan Broz60935eb2009-06-22 10:12:30 +01002630 }
Alasdair G Kergon69267a32007-12-13 14:15:57 +00002631}
2632
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002633uint32_t dm_next_uevent_seq(struct mapped_device *md)
2634{
2635 return atomic_add_return(1, &md->uevent_seq);
2636}
2637
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638uint32_t dm_get_event_nr(struct mapped_device *md)
2639{
2640 return atomic_read(&md->event_nr);
2641}
2642
2643int dm_wait_event(struct mapped_device *md, int event_nr)
2644{
2645 return wait_event_interruptible(md->eventq,
2646 (event_nr != atomic_read(&md->event_nr)));
2647}
2648
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002649void dm_uevent_add(struct mapped_device *md, struct list_head *elist)
2650{
2651 unsigned long flags;
2652
2653 spin_lock_irqsave(&md->uevent_lock, flags);
2654 list_add(elist, &md->uevent_list);
2655 spin_unlock_irqrestore(&md->uevent_lock, flags);
2656}
2657
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658/*
2659 * The gendisk is only valid as long as you have a reference
2660 * count on 'md'.
2661 */
2662struct gendisk *dm_disk(struct mapped_device *md)
2663{
2664 return md->disk;
2665}
2666
Milan Broz784aae72009-01-06 03:05:12 +00002667struct kobject *dm_kobject(struct mapped_device *md)
2668{
2669 return &md->kobj;
2670}
2671
2672/*
2673 * struct mapped_device should not be exported outside of dm.c
2674 * so use this check to verify that kobj is part of md structure
2675 */
2676struct mapped_device *dm_get_from_kobject(struct kobject *kobj)
2677{
2678 struct mapped_device *md;
2679
2680 md = container_of(kobj, struct mapped_device, kobj);
2681 if (&md->kobj != kobj)
2682 return NULL;
2683
Milan Broz4d89b7b2009-06-22 10:12:11 +01002684 if (test_bit(DMF_FREEING, &md->flags) ||
Mike Anderson432a2122009-12-10 23:52:20 +00002685 dm_deleting_md(md))
Milan Broz4d89b7b2009-06-22 10:12:11 +01002686 return NULL;
2687
Milan Broz784aae72009-01-06 03:05:12 +00002688 dm_get(md);
2689 return md;
2690}
2691
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +00002692int dm_suspended_md(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693{
2694 return test_bit(DMF_SUSPENDED, &md->flags);
2695}
2696
Kiyoshi Ueda64dbce52009-12-10 23:52:27 +00002697int dm_suspended(struct dm_target *ti)
2698{
Kiyoshi Uedaecdb2e22010-03-06 02:29:52 +00002699 return dm_suspended_md(dm_table_get_md(ti->table));
Kiyoshi Ueda64dbce52009-12-10 23:52:27 +00002700}
2701EXPORT_SYMBOL_GPL(dm_suspended);
2702
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002703int dm_noflush_suspending(struct dm_target *ti)
2704{
Kiyoshi Uedaecdb2e22010-03-06 02:29:52 +00002705 return __noflush_suspending(dm_table_get_md(ti->table));
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002706}
2707EXPORT_SYMBOL_GPL(dm_noflush_suspending);
2708
Martin K. Petersena91a2782011-03-17 11:11:05 +01002709struct dm_md_mempools *dm_alloc_md_mempools(unsigned type, unsigned integrity)
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002710{
2711 struct dm_md_mempools *pools = kmalloc(sizeof(*pools), GFP_KERNEL);
Martin K. Petersena91a2782011-03-17 11:11:05 +01002712 unsigned int pool_size = (type == DM_TYPE_BIO_BASED) ? 16 : MIN_IOS;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002713
2714 if (!pools)
2715 return NULL;
2716
2717 pools->io_pool = (type == DM_TYPE_BIO_BASED) ?
2718 mempool_create_slab_pool(MIN_IOS, _io_cache) :
2719 mempool_create_slab_pool(MIN_IOS, _rq_bio_info_cache);
2720 if (!pools->io_pool)
2721 goto free_pools_and_out;
2722
2723 pools->tio_pool = (type == DM_TYPE_BIO_BASED) ?
2724 mempool_create_slab_pool(MIN_IOS, _tio_cache) :
2725 mempool_create_slab_pool(MIN_IOS, _rq_tio_cache);
2726 if (!pools->tio_pool)
2727 goto free_io_pool_and_out;
2728
Martin K. Petersena91a2782011-03-17 11:11:05 +01002729 pools->bs = bioset_create(pool_size, 0);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002730 if (!pools->bs)
2731 goto free_tio_pool_and_out;
2732
Martin K. Petersena91a2782011-03-17 11:11:05 +01002733 if (integrity && bioset_integrity_create(pools->bs, pool_size))
2734 goto free_bioset_and_out;
2735
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002736 return pools;
2737
Martin K. Petersena91a2782011-03-17 11:11:05 +01002738free_bioset_and_out:
2739 bioset_free(pools->bs);
2740
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002741free_tio_pool_and_out:
2742 mempool_destroy(pools->tio_pool);
2743
2744free_io_pool_and_out:
2745 mempool_destroy(pools->io_pool);
2746
2747free_pools_and_out:
2748 kfree(pools);
2749
2750 return NULL;
2751}
2752
2753void dm_free_md_mempools(struct dm_md_mempools *pools)
2754{
2755 if (!pools)
2756 return;
2757
2758 if (pools->io_pool)
2759 mempool_destroy(pools->io_pool);
2760
2761 if (pools->tio_pool)
2762 mempool_destroy(pools->tio_pool);
2763
2764 if (pools->bs)
2765 bioset_free(pools->bs);
2766
2767 kfree(pools);
2768}
2769
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07002770static const struct block_device_operations dm_blk_dops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 .open = dm_blk_open,
2772 .release = dm_blk_close,
Milan Brozaa129a22006-10-03 01:15:15 -07002773 .ioctl = dm_blk_ioctl,
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08002774 .getgeo = dm_blk_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 .owner = THIS_MODULE
2776};
2777
2778EXPORT_SYMBOL(dm_get_mapinfo);
2779
2780/*
2781 * module hooks
2782 */
2783module_init(dm_init);
2784module_exit(dm_exit);
2785
2786module_param(major, uint, 0);
2787MODULE_PARM_DESC(major, "The major number of the device mapper");
2788MODULE_DESCRIPTION(DM_NAME " driver");
2789MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
2790MODULE_LICENSE("GPL");