blob: 821a5dd6a8d1b8c022a5dfe49f9206e0d4831273 [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>
Li Zefan55782132009-06-09 13:43:05 +080022
23#include <trace/events/block.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Alasdair G Kergon72d94862006-06-26 00:27:35 -070025#define DM_MSG_PREFIX "core"
26
Milan Broz60935eb2009-06-22 10:12:30 +010027/*
28 * Cookies are numeric values sent with CHANGE and REMOVE
29 * uevents while resuming, removing or renaming the device.
30 */
31#define DM_COOKIE_ENV_VAR_NAME "DM_COOKIE"
32#define DM_COOKIE_LENGTH 24
33
Linus Torvalds1da177e2005-04-16 15:20:36 -070034static const char *_name = DM_NAME;
35
36static unsigned int major = 0;
37static unsigned int _major = 0;
38
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -070039static DEFINE_SPINLOCK(_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040/*
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000041 * For bio-based dm.
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 * One of these is allocated per bio.
43 */
44struct dm_io {
45 struct mapped_device *md;
46 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 atomic_t io_count;
Richard Kennedy6ae2fa62008-07-21 12:00:28 +010048 struct bio *bio;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -080049 unsigned long start_time;
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +010050 spinlock_t endio_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051};
52
53/*
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 target within a bio. Hopefully
56 * this will be simplified out one day.
57 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +010058struct dm_target_io {
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 struct dm_io *io;
60 struct dm_target *ti;
61 union map_info info;
62};
63
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000064/*
65 * For request-based dm.
66 * One of these is allocated per request.
67 */
68struct dm_rq_target_io {
69 struct mapped_device *md;
70 struct dm_target *ti;
71 struct request *orig, clone;
72 int error;
73 union map_info info;
74};
75
76/*
77 * For request-based dm.
78 * One of these is allocated per bio.
79 */
80struct dm_rq_clone_bio_info {
81 struct bio *orig;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +010082 struct dm_rq_target_io *tio;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000083};
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085union map_info *dm_get_mapinfo(struct bio *bio)
86{
Alasdair G Kergon17b2f662006-06-26 00:27:33 -070087 if (bio && bio->bi_private)
Alasdair G Kergon028867a2007-07-12 17:26:32 +010088 return &((struct dm_target_io *)bio->bi_private)->info;
Alasdair G Kergon17b2f662006-06-26 00:27:33 -070089 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090}
91
Kiyoshi Uedacec47e32009-06-22 10:12:35 +010092union map_info *dm_get_rq_mapinfo(struct request *rq)
93{
94 if (rq && rq->end_io_data)
95 return &((struct dm_rq_target_io *)rq->end_io_data)->info;
96 return NULL;
97}
98EXPORT_SYMBOL_GPL(dm_get_rq_mapinfo);
99
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -0700100#define MINOR_ALLOCED ((void *)-1)
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102/*
103 * Bits for the md->flags field.
104 */
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +0100105#define DMF_BLOCK_IO_FOR_SUSPEND 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106#define DMF_SUSPENDED 1
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -0800107#define DMF_FROZEN 2
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700108#define DMF_FREEING 3
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700109#define DMF_DELETING 4
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800110#define DMF_NOFLUSH_SUSPENDING 5
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +0100111#define DMF_QUEUE_IO_TO_THREAD 6
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Milan Broz304f3f62008-02-08 02:11:17 +0000113/*
114 * Work processed by per-device workqueue.
115 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116struct mapped_device {
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700117 struct rw_semaphore io_lock;
Daniel Walkere61290a2008-02-08 02:10:08 +0000118 struct mutex suspend_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 rwlock_t map_lock;
120 atomic_t holders;
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700121 atomic_t open_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123 unsigned long flags;
124
Jens Axboe165125e2007-07-24 09:28:11 +0200125 struct request_queue *queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 struct gendisk *disk;
Mike Anderson7e51f252006-03-27 01:17:52 -0800127 char name[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129 void *interface_ptr;
130
131 /*
132 * A list of ios that arrived while we were suspended.
133 */
Nikanth Karthikesan316d3152009-10-06 20:16:55 +0200134 atomic_t pending[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 wait_queue_head_t wait;
Mikulas Patocka53d59142009-04-02 19:55:37 +0100136 struct work_struct work;
Kiyoshi Ueda74859362006-12-08 02:41:02 -0800137 struct bio_list deferred;
Mikulas Patocka022c2612009-04-02 19:55:39 +0100138 spinlock_t deferred_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
140 /*
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100141 * An error from the barrier request currently being processed.
142 */
143 int barrier_error;
144
145 /*
Milan Broz304f3f62008-02-08 02:11:17 +0000146 * Processing queue (flush/barriers)
147 */
148 struct workqueue_struct *wq;
149
150 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 * The current mapping.
152 */
153 struct dm_table *map;
154
155 /*
156 * io objects are allocated from here.
157 */
158 mempool_t *io_pool;
159 mempool_t *tio_pool;
160
Stefan Bader9faf4002006-10-03 01:15:41 -0700161 struct bio_set *bs;
162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 /*
164 * Event handling.
165 */
166 atomic_t event_nr;
167 wait_queue_head_t eventq;
Mike Anderson7a8c3d32007-10-19 22:48:01 +0100168 atomic_t uevent_seq;
169 struct list_head uevent_list;
170 spinlock_t uevent_lock; /* Protect access to uevent_list */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172 /*
173 * freeze/thaw support require holding onto a super block
174 */
175 struct super_block *frozen_sb;
Mikulas Patockadb8fef42009-06-22 10:12:15 +0100176 struct block_device *bdev;
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800177
178 /* forced geometry settings */
179 struct hd_geometry geometry;
Milan Broz784aae72009-01-06 03:05:12 +0000180
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100181 /* For saving the address of __make_request for request based dm */
182 make_request_fn *saved_make_request_fn;
183
Milan Broz784aae72009-01-06 03:05:12 +0000184 /* sysfs handle */
185 struct kobject kobj;
Mikulas Patocka52b1fd52009-06-22 10:12:21 +0100186
187 /* zero-length barrier that will be cloned and submitted to targets */
188 struct bio barrier_bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189};
190
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +0100191/*
192 * For mempools pre-allocation at the table loading time.
193 */
194struct dm_md_mempools {
195 mempool_t *io_pool;
196 mempool_t *tio_pool;
197 struct bio_set *bs;
198};
199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200#define MIN_IOS 256
Christoph Lametere18b8902006-12-06 20:33:20 -0800201static struct kmem_cache *_io_cache;
202static struct kmem_cache *_tio_cache;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000203static struct kmem_cache *_rq_tio_cache;
204static struct kmem_cache *_rq_bio_info_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206static int __init local_init(void)
207{
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100208 int r = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 /* allocate a slab for the dm_ios */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100211 _io_cache = KMEM_CACHE(dm_io, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 if (!_io_cache)
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100213 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
215 /* allocate a slab for the target ios */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100216 _tio_cache = KMEM_CACHE(dm_target_io, 0);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100217 if (!_tio_cache)
218 goto out_free_io_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000220 _rq_tio_cache = KMEM_CACHE(dm_rq_target_io, 0);
221 if (!_rq_tio_cache)
222 goto out_free_tio_cache;
223
224 _rq_bio_info_cache = KMEM_CACHE(dm_rq_clone_bio_info, 0);
225 if (!_rq_bio_info_cache)
226 goto out_free_rq_tio_cache;
227
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100228 r = dm_uevent_init();
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100229 if (r)
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000230 goto out_free_rq_bio_info_cache;
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 _major = major;
233 r = register_blkdev(_major, _name);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100234 if (r < 0)
235 goto out_uevent_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
237 if (!_major)
238 _major = r;
239
240 return 0;
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100241
242out_uevent_exit:
243 dm_uevent_exit();
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000244out_free_rq_bio_info_cache:
245 kmem_cache_destroy(_rq_bio_info_cache);
246out_free_rq_tio_cache:
247 kmem_cache_destroy(_rq_tio_cache);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100248out_free_tio_cache:
249 kmem_cache_destroy(_tio_cache);
250out_free_io_cache:
251 kmem_cache_destroy(_io_cache);
252
253 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254}
255
256static void local_exit(void)
257{
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000258 kmem_cache_destroy(_rq_bio_info_cache);
259 kmem_cache_destroy(_rq_tio_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 kmem_cache_destroy(_tio_cache);
261 kmem_cache_destroy(_io_cache);
Akinobu Mita00d59402007-07-17 04:03:46 -0700262 unregister_blkdev(_major, _name);
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100263 dm_uevent_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
265 _major = 0;
266
267 DMINFO("cleaned up");
268}
269
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000270static int (*_inits[])(void) __initdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 local_init,
272 dm_target_init,
273 dm_linear_init,
274 dm_stripe_init,
Mikulas Patocka952b3552009-12-10 23:51:57 +0000275 dm_io_init,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100276 dm_kcopyd_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 dm_interface_init,
278};
279
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000280static void (*_exits[])(void) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 local_exit,
282 dm_target_exit,
283 dm_linear_exit,
284 dm_stripe_exit,
Mikulas Patocka952b3552009-12-10 23:51:57 +0000285 dm_io_exit,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100286 dm_kcopyd_exit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 dm_interface_exit,
288};
289
290static int __init dm_init(void)
291{
292 const int count = ARRAY_SIZE(_inits);
293
294 int r, i;
295
296 for (i = 0; i < count; i++) {
297 r = _inits[i]();
298 if (r)
299 goto bad;
300 }
301
302 return 0;
303
304 bad:
305 while (i--)
306 _exits[i]();
307
308 return r;
309}
310
311static void __exit dm_exit(void)
312{
313 int i = ARRAY_SIZE(_exits);
314
315 while (i--)
316 _exits[i]();
317}
318
319/*
320 * Block device functions
321 */
Al Virofe5f9f22008-03-02 10:29:31 -0500322static int dm_blk_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323{
324 struct mapped_device *md;
325
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700326 spin_lock(&_minor_lock);
327
Al Virofe5f9f22008-03-02 10:29:31 -0500328 md = bdev->bd_disk->private_data;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700329 if (!md)
330 goto out;
331
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700332 if (test_bit(DMF_FREEING, &md->flags) ||
333 test_bit(DMF_DELETING, &md->flags)) {
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700334 md = NULL;
335 goto out;
336 }
337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 dm_get(md);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700339 atomic_inc(&md->open_count);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700340
341out:
342 spin_unlock(&_minor_lock);
343
344 return md ? 0 : -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345}
346
Al Virofe5f9f22008-03-02 10:29:31 -0500347static int dm_blk_close(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348{
Al Virofe5f9f22008-03-02 10:29:31 -0500349 struct mapped_device *md = disk->private_data;
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700350 atomic_dec(&md->open_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 dm_put(md);
352 return 0;
353}
354
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700355int dm_open_count(struct mapped_device *md)
356{
357 return atomic_read(&md->open_count);
358}
359
360/*
361 * Guarantees nothing is using the device before it's deleted.
362 */
363int dm_lock_for_deletion(struct mapped_device *md)
364{
365 int r = 0;
366
367 spin_lock(&_minor_lock);
368
369 if (dm_open_count(md))
370 r = -EBUSY;
371 else
372 set_bit(DMF_DELETING, &md->flags);
373
374 spin_unlock(&_minor_lock);
375
376 return r;
377}
378
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800379static int dm_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
380{
381 struct mapped_device *md = bdev->bd_disk->private_data;
382
383 return dm_get_geometry(md, geo);
384}
385
Al Virofe5f9f22008-03-02 10:29:31 -0500386static int dm_blk_ioctl(struct block_device *bdev, fmode_t mode,
Milan Brozaa129a22006-10-03 01:15:15 -0700387 unsigned int cmd, unsigned long arg)
388{
Al Virofe5f9f22008-03-02 10:29:31 -0500389 struct mapped_device *md = bdev->bd_disk->private_data;
390 struct dm_table *map = dm_get_table(md);
Milan Brozaa129a22006-10-03 01:15:15 -0700391 struct dm_target *tgt;
392 int r = -ENOTTY;
393
Milan Brozaa129a22006-10-03 01:15:15 -0700394 if (!map || !dm_table_get_size(map))
395 goto out;
396
397 /* We only support devices that have a single target */
398 if (dm_table_get_num_targets(map) != 1)
399 goto out;
400
401 tgt = dm_table_get_target(map, 0);
402
403 if (dm_suspended(md)) {
404 r = -EAGAIN;
405 goto out;
406 }
407
408 if (tgt->type->ioctl)
Al Viro647b3d02007-08-28 22:15:59 -0400409 r = tgt->type->ioctl(tgt, cmd, arg);
Milan Brozaa129a22006-10-03 01:15:15 -0700410
411out:
412 dm_table_put(map);
413
Milan Brozaa129a22006-10-03 01:15:15 -0700414 return r;
415}
416
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100417static struct dm_io *alloc_io(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418{
419 return mempool_alloc(md->io_pool, GFP_NOIO);
420}
421
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100422static void free_io(struct mapped_device *md, struct dm_io *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423{
424 mempool_free(io, md->io_pool);
425}
426
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100427static void free_tio(struct mapped_device *md, struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{
429 mempool_free(tio, md->tio_pool);
430}
431
Kiyoshi Ueda08885642009-12-10 23:52:15 +0000432static struct dm_rq_target_io *alloc_rq_tio(struct mapped_device *md,
433 gfp_t gfp_mask)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100434{
Kiyoshi Ueda08885642009-12-10 23:52:15 +0000435 return mempool_alloc(md->tio_pool, gfp_mask);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100436}
437
438static void free_rq_tio(struct dm_rq_target_io *tio)
439{
440 mempool_free(tio, tio->md->tio_pool);
441}
442
443static struct dm_rq_clone_bio_info *alloc_bio_info(struct mapped_device *md)
444{
445 return mempool_alloc(md->io_pool, GFP_ATOMIC);
446}
447
448static void free_bio_info(struct dm_rq_clone_bio_info *info)
449{
450 mempool_free(info, info->tio->md->io_pool);
451}
452
Kiyoshi Ueda90abb8c2009-12-10 23:52:13 +0000453static int md_in_flight(struct mapped_device *md)
454{
455 return atomic_read(&md->pending[READ]) +
456 atomic_read(&md->pending[WRITE]);
457}
458
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800459static void start_io_acct(struct dm_io *io)
460{
461 struct mapped_device *md = io->md;
Tejun Heoc9959052008-08-25 19:47:21 +0900462 int cpu;
Nikanth Karthikesan316d3152009-10-06 20:16:55 +0200463 int rw = bio_data_dir(io->bio);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800464
465 io->start_time = jiffies;
466
Tejun Heo074a7ac2008-08-25 19:56:14 +0900467 cpu = part_stat_lock();
468 part_round_stats(cpu, &dm_disk(md)->part0);
469 part_stat_unlock();
Nikanth Karthikesan316d3152009-10-06 20:16:55 +0200470 dm_disk(md)->part0.in_flight[rw] = atomic_inc_return(&md->pending[rw]);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800471}
472
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000473static void end_io_acct(struct dm_io *io)
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800474{
475 struct mapped_device *md = io->md;
476 struct bio *bio = io->bio;
477 unsigned long duration = jiffies - io->start_time;
Tejun Heoc9959052008-08-25 19:47:21 +0900478 int pending, cpu;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800479 int rw = bio_data_dir(bio);
480
Tejun Heo074a7ac2008-08-25 19:56:14 +0900481 cpu = part_stat_lock();
482 part_round_stats(cpu, &dm_disk(md)->part0);
483 part_stat_add(cpu, &dm_disk(md)->part0, ticks[rw], duration);
484 part_stat_unlock();
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800485
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100486 /*
487 * After this is decremented the bio must not be touched if it is
488 * a barrier.
489 */
Nikanth Karthikesan316d3152009-10-06 20:16:55 +0200490 dm_disk(md)->part0.in_flight[rw] = pending =
491 atomic_dec_return(&md->pending[rw]);
492 pending += atomic_read(&md->pending[rw^0x1]);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800493
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000494 /* nudge anyone waiting on suspend queue */
495 if (!pending)
496 wake_up(&md->wait);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800497}
498
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499/*
500 * Add the bio to the list of deferred io.
501 */
Mikulas Patocka92c63902009-04-09 00:27:15 +0100502static void queue_io(struct mapped_device *md, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503{
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700504 down_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
Mikulas Patocka022c2612009-04-02 19:55:39 +0100506 spin_lock_irq(&md->deferred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 bio_list_add(&md->deferred, bio);
Mikulas Patocka022c2612009-04-02 19:55:39 +0100508 spin_unlock_irq(&md->deferred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Mikulas Patocka92c63902009-04-09 00:27:15 +0100510 if (!test_and_set_bit(DMF_QUEUE_IO_TO_THREAD, &md->flags))
511 queue_work(md->wq, &md->work);
512
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700513 up_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514}
515
516/*
517 * Everyone (including functions in this file), should use this
518 * function to access the md->map field, and make sure they call
519 * dm_table_put() when finished.
520 */
521struct dm_table *dm_get_table(struct mapped_device *md)
522{
523 struct dm_table *t;
Kiyoshi Ueda523d9292009-06-22 10:12:37 +0100524 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
Kiyoshi Ueda523d9292009-06-22 10:12:37 +0100526 read_lock_irqsave(&md->map_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 t = md->map;
528 if (t)
529 dm_table_get(t);
Kiyoshi Ueda523d9292009-06-22 10:12:37 +0100530 read_unlock_irqrestore(&md->map_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
532 return t;
533}
534
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800535/*
536 * Get the geometry associated with a dm device
537 */
538int dm_get_geometry(struct mapped_device *md, struct hd_geometry *geo)
539{
540 *geo = md->geometry;
541
542 return 0;
543}
544
545/*
546 * Set the geometry of a device.
547 */
548int dm_set_geometry(struct mapped_device *md, struct hd_geometry *geo)
549{
550 sector_t sz = (sector_t)geo->cylinders * geo->heads * geo->sectors;
551
552 if (geo->start > sz) {
553 DMWARN("Start sector is beyond the geometry limits.");
554 return -EINVAL;
555 }
556
557 md->geometry = *geo;
558
559 return 0;
560}
561
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562/*-----------------------------------------------------------------
563 * CRUD START:
564 * A more elegant soln is in the works that uses the queue
565 * merge fn, unfortunately there are a couple of changes to
566 * the block layer that I want to make for this. So in the
567 * interests of getting something for people to use I give
568 * you this clearly demarcated crap.
569 *---------------------------------------------------------------*/
570
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800571static int __noflush_suspending(struct mapped_device *md)
572{
573 return test_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
574}
575
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576/*
577 * Decrements the number of outstanding ios that a bio has been
578 * cloned into, completing the original io if necc.
579 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800580static void dec_pending(struct dm_io *io, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581{
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800582 unsigned long flags;
Milan Brozb35f8ca2009-03-16 17:44:36 +0000583 int io_error;
584 struct bio *bio;
585 struct mapped_device *md = io->md;
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800586
587 /* Push-back supersedes any I/O errors */
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +0100588 if (unlikely(error)) {
589 spin_lock_irqsave(&io->endio_lock, flags);
590 if (!(io->error > 0 && __noflush_suspending(md)))
591 io->error = error;
592 spin_unlock_irqrestore(&io->endio_lock, flags);
593 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
595 if (atomic_dec_and_test(&io->io_count)) {
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800596 if (io->error == DM_ENDIO_REQUEUE) {
597 /*
598 * Target requested pushing back the I/O.
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800599 */
Mikulas Patocka022c2612009-04-02 19:55:39 +0100600 spin_lock_irqsave(&md->deferred_lock, flags);
Mikulas Patocka2761e952009-06-22 10:12:18 +0100601 if (__noflush_suspending(md)) {
Jens Axboe1f98a132009-09-11 14:32:04 +0200602 if (!bio_rw_flagged(io->bio, BIO_RW_BARRIER))
Mikulas Patocka2761e952009-06-22 10:12:18 +0100603 bio_list_add_head(&md->deferred,
604 io->bio);
605 } else
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800606 /* noflush suspend was interrupted. */
607 io->error = -EIO;
Mikulas Patocka022c2612009-04-02 19:55:39 +0100608 spin_unlock_irqrestore(&md->deferred_lock, flags);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800609 }
610
Milan Brozb35f8ca2009-03-16 17:44:36 +0000611 io_error = io->error;
612 bio = io->bio;
Jens Axboe2056a782006-03-23 20:00:26 +0100613
Jens Axboe1f98a132009-09-11 14:32:04 +0200614 if (bio_rw_flagged(bio, BIO_RW_BARRIER)) {
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100615 /*
616 * There can be just one barrier request so we use
617 * a per-device variable for error reporting.
618 * Note that you can't touch the bio after end_io_acct
619 */
Mikulas Patockafdb95722009-06-22 10:12:19 +0100620 if (!md->barrier_error && io_error != -EOPNOTSUPP)
Mikulas Patocka5aa27812009-06-22 10:12:18 +0100621 md->barrier_error = io_error;
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100622 end_io_acct(io);
623 } else {
624 end_io_acct(io);
Milan Brozb35f8ca2009-03-16 17:44:36 +0000625
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100626 if (io_error != DM_ENDIO_REQUEUE) {
627 trace_block_bio_complete(md->queue, bio);
Milan Brozb35f8ca2009-03-16 17:44:36 +0000628
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100629 bio_endio(bio, io_error);
630 }
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800631 }
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100632
633 free_io(md, io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 }
635}
636
NeilBrown6712ecf2007-09-27 12:47:43 +0200637static void clone_endio(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638{
639 int r = 0;
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100640 struct dm_target_io *tio = bio->bi_private;
Milan Brozb35f8ca2009-03-16 17:44:36 +0000641 struct dm_io *io = tio->io;
Stefan Bader9faf4002006-10-03 01:15:41 -0700642 struct mapped_device *md = tio->io->md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 dm_endio_fn endio = tio->ti->type->end_io;
644
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 if (!bio_flagged(bio, BIO_UPTODATE) && !error)
646 error = -EIO;
647
648 if (endio) {
649 r = endio(tio->ti, bio, error, &tio->info);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800650 if (r < 0 || r == DM_ENDIO_REQUEUE)
651 /*
652 * error and requeue request are handled
653 * in dec_pending().
654 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 error = r;
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800656 else if (r == DM_ENDIO_INCOMPLETE)
657 /* The target will handle the io */
NeilBrown6712ecf2007-09-27 12:47:43 +0200658 return;
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800659 else if (r) {
660 DMWARN("unimplemented target endio return value: %d", r);
661 BUG();
662 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 }
664
Stefan Bader9faf4002006-10-03 01:15:41 -0700665 /*
666 * Store md for cleanup instead of tio which is about to get freed.
667 */
668 bio->bi_private = md->bs;
669
Stefan Bader9faf4002006-10-03 01:15:41 -0700670 free_tio(md, tio);
Milan Brozb35f8ca2009-03-16 17:44:36 +0000671 bio_put(bio);
672 dec_pending(io, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673}
674
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100675/*
676 * Partial completion handling for request-based dm
677 */
678static void end_clone_bio(struct bio *clone, int error)
679{
680 struct dm_rq_clone_bio_info *info = clone->bi_private;
681 struct dm_rq_target_io *tio = info->tio;
682 struct bio *bio = info->orig;
683 unsigned int nr_bytes = info->orig->bi_size;
684
685 bio_put(clone);
686
687 if (tio->error)
688 /*
689 * An error has already been detected on the request.
690 * Once error occurred, just let clone->end_io() handle
691 * the remainder.
692 */
693 return;
694 else if (error) {
695 /*
696 * Don't notice the error to the upper layer yet.
697 * The error handling decision is made by the target driver,
698 * when the request is completed.
699 */
700 tio->error = error;
701 return;
702 }
703
704 /*
705 * I/O for the bio successfully completed.
706 * Notice the data completion to the upper layer.
707 */
708
709 /*
710 * bios are processed from the head of the list.
711 * So the completing bio should always be rq->bio.
712 * If it's not, something wrong is happening.
713 */
714 if (tio->orig->bio != bio)
715 DMERR("bio completion is going in the middle of the request");
716
717 /*
718 * Update the original request.
719 * Do not use blk_end_request() here, because it may complete
720 * the original request before the clone, and break the ordering.
721 */
722 blk_update_request(tio->orig, 0, nr_bytes);
723}
724
725/*
726 * Don't touch any member of the md after calling this function because
727 * the md may be freed in dm_put() at the end of this function.
728 * Or do dm_get() before calling this function and dm_put() later.
729 */
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +0000730static void rq_completed(struct mapped_device *md, int rw, int run_queue)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100731{
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +0000732 atomic_dec(&md->pending[rw]);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100733
734 /* nudge anyone waiting on suspend queue */
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +0000735 if (!md_in_flight(md))
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100736 wake_up(&md->wait);
737
738 if (run_queue)
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +0000739 blk_run_queue(md->queue);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100740
741 /*
742 * dm_put() must be at the end of this function. See the comment above
743 */
744 dm_put(md);
745}
746
Kiyoshi Uedaa77e28c2009-09-04 20:40:16 +0100747static void free_rq_clone(struct request *clone)
748{
749 struct dm_rq_target_io *tio = clone->end_io_data;
750
751 blk_rq_unprep_clone(clone);
752 free_rq_tio(tio);
753}
754
Kiyoshi Ueda980691e2009-12-10 23:52:17 +0000755/*
756 * Complete the clone and the original request.
757 * Must be called without queue lock.
758 */
759static void dm_end_request(struct request *clone, int error)
760{
761 int rw = rq_data_dir(clone);
762 struct dm_rq_target_io *tio = clone->end_io_data;
763 struct mapped_device *md = tio->md;
764 struct request *rq = tio->orig;
765
766 if (blk_pc_request(rq)) {
767 rq->errors = clone->errors;
768 rq->resid_len = clone->resid_len;
769
770 if (rq->sense)
771 /*
772 * We are using the sense buffer of the original
773 * request.
774 * So setting the length of the sense data is enough.
775 */
776 rq->sense_len = clone->sense_len;
777 }
778
779 free_rq_clone(clone);
780
781 blk_end_request_all(rq, error);
782
783 rq_completed(md, rw, 1);
784}
785
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100786static void dm_unprep_request(struct request *rq)
787{
788 struct request *clone = rq->special;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100789
790 rq->special = NULL;
791 rq->cmd_flags &= ~REQ_DONTPREP;
792
Kiyoshi Uedaa77e28c2009-09-04 20:40:16 +0100793 free_rq_clone(clone);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100794}
795
796/*
797 * Requeue the original request of a clone.
798 */
799void dm_requeue_unmapped_request(struct request *clone)
800{
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +0000801 int rw = rq_data_dir(clone);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100802 struct dm_rq_target_io *tio = clone->end_io_data;
803 struct mapped_device *md = tio->md;
804 struct request *rq = tio->orig;
805 struct request_queue *q = rq->q;
806 unsigned long flags;
807
808 dm_unprep_request(rq);
809
810 spin_lock_irqsave(q->queue_lock, flags);
811 if (elv_queue_empty(q))
812 blk_plug_device(q);
813 blk_requeue_request(q, rq);
814 spin_unlock_irqrestore(q->queue_lock, flags);
815
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +0000816 rq_completed(md, rw, 0);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100817}
818EXPORT_SYMBOL_GPL(dm_requeue_unmapped_request);
819
820static void __stop_queue(struct request_queue *q)
821{
822 blk_stop_queue(q);
823}
824
825static void stop_queue(struct request_queue *q)
826{
827 unsigned long flags;
828
829 spin_lock_irqsave(q->queue_lock, flags);
830 __stop_queue(q);
831 spin_unlock_irqrestore(q->queue_lock, flags);
832}
833
834static void __start_queue(struct request_queue *q)
835{
836 if (blk_queue_stopped(q))
837 blk_start_queue(q);
838}
839
840static void start_queue(struct request_queue *q)
841{
842 unsigned long flags;
843
844 spin_lock_irqsave(q->queue_lock, flags);
845 __start_queue(q);
846 spin_unlock_irqrestore(q->queue_lock, flags);
847}
848
Kiyoshi Ueda11a68242009-12-10 23:52:17 +0000849static void dm_done(struct request *clone, int error, bool mapped)
850{
851 int r = error;
852 struct dm_rq_target_io *tio = clone->end_io_data;
853 dm_request_endio_fn rq_end_io = tio->ti->type->rq_end_io;
854
855 if (mapped && rq_end_io)
856 r = rq_end_io(tio->ti, clone, error, &tio->info);
857
858 if (r <= 0)
859 /* The target wants to complete the I/O */
860 dm_end_request(clone, r);
861 else if (r == DM_ENDIO_INCOMPLETE)
862 /* The target will handle the I/O */
863 return;
864 else if (r == DM_ENDIO_REQUEUE)
865 /* The target wants to requeue the I/O */
866 dm_requeue_unmapped_request(clone);
867 else {
868 DMWARN("unimplemented target endio return value: %d", r);
869 BUG();
870 }
871}
872
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100873/*
874 * Request completion handler for request-based dm
875 */
876static void dm_softirq_done(struct request *rq)
877{
Kiyoshi Ueda11a68242009-12-10 23:52:17 +0000878 bool mapped = true;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100879 struct request *clone = rq->completion_data;
880 struct dm_rq_target_io *tio = clone->end_io_data;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100881
Kiyoshi Ueda11a68242009-12-10 23:52:17 +0000882 if (rq->cmd_flags & REQ_FAILED)
883 mapped = false;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100884
Kiyoshi Ueda11a68242009-12-10 23:52:17 +0000885 dm_done(clone, tio->error, mapped);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100886}
887
888/*
889 * Complete the clone and the original request with the error status
890 * through softirq context.
891 */
892static void dm_complete_request(struct request *clone, int error)
893{
894 struct dm_rq_target_io *tio = clone->end_io_data;
895 struct request *rq = tio->orig;
896
897 tio->error = error;
898 rq->completion_data = clone;
899 blk_complete_request(rq);
900}
901
902/*
903 * Complete the not-mapped clone and the original request with the error status
904 * through softirq context.
905 * Target's rq_end_io() function isn't called.
906 * This may be used when the target's map_rq() function fails.
907 */
908void dm_kill_unmapped_request(struct request *clone, int error)
909{
910 struct dm_rq_target_io *tio = clone->end_io_data;
911 struct request *rq = tio->orig;
912
913 rq->cmd_flags |= REQ_FAILED;
914 dm_complete_request(clone, error);
915}
916EXPORT_SYMBOL_GPL(dm_kill_unmapped_request);
917
918/*
919 * Called with the queue lock held
920 */
921static void end_clone_request(struct request *clone, int error)
922{
923 /*
924 * For just cleaning up the information of the queue in which
925 * the clone was dispatched.
926 * The clone is *NOT* freed actually here because it is alloced from
927 * dm own mempool and REQ_ALLOCED isn't set in clone->cmd_flags.
928 */
929 __blk_put_request(clone->q, clone);
930
931 /*
932 * Actual request completion is done in a softirq context which doesn't
933 * hold the queue lock. Otherwise, deadlock could occur because:
934 * - another request may be submitted by the upper level driver
935 * of the stacking during the completion
936 * - the submission which requires queue lock may be done
937 * against this queue
938 */
939 dm_complete_request(clone, error);
940}
941
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942static sector_t max_io_len(struct mapped_device *md,
943 sector_t sector, struct dm_target *ti)
944{
945 sector_t offset = sector - ti->begin;
946 sector_t len = ti->len - offset;
947
948 /*
949 * Does the target need to split even further ?
950 */
951 if (ti->split_io) {
952 sector_t boundary;
953 boundary = ((offset + ti->split_io) & ~(ti->split_io - 1))
954 - offset;
955 if (len > boundary)
956 len = boundary;
957 }
958
959 return len;
960}
961
962static void __map_bio(struct dm_target *ti, struct bio *clone,
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100963 struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964{
965 int r;
Jens Axboe2056a782006-03-23 20:00:26 +0100966 sector_t sector;
Stefan Bader9faf4002006-10-03 01:15:41 -0700967 struct mapped_device *md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 clone->bi_end_io = clone_endio;
970 clone->bi_private = tio;
971
972 /*
973 * Map the clone. If r == 0 we don't need to do
974 * anything, the target has assumed ownership of
975 * this io.
976 */
977 atomic_inc(&tio->io->io_count);
Jens Axboe2056a782006-03-23 20:00:26 +0100978 sector = clone->bi_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 r = ti->type->map(ti, clone, &tio->info);
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800980 if (r == DM_MAPIO_REMAPPED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 /* the bio has been remapped so dispatch it */
Jens Axboe2056a782006-03-23 20:00:26 +0100982
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100983 trace_block_remap(bdev_get_queue(clone->bi_bdev), clone,
Alan D. Brunelle22a7c312009-05-04 16:35:08 -0400984 tio->io->bio->bi_bdev->bd_dev, sector);
Jens Axboe2056a782006-03-23 20:00:26 +0100985
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 generic_make_request(clone);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800987 } else if (r < 0 || r == DM_MAPIO_REQUEUE) {
988 /* error the io and bail out, or requeue it if needed */
Stefan Bader9faf4002006-10-03 01:15:41 -0700989 md = tio->io->md;
990 dec_pending(tio->io, r);
991 /*
992 * Store bio_set for cleanup.
993 */
994 clone->bi_private = md->bs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 bio_put(clone);
Stefan Bader9faf4002006-10-03 01:15:41 -0700996 free_tio(md, tio);
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800997 } else if (r) {
998 DMWARN("unimplemented target map return value: %d", r);
999 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 }
1001}
1002
1003struct clone_info {
1004 struct mapped_device *md;
1005 struct dm_table *map;
1006 struct bio *bio;
1007 struct dm_io *io;
1008 sector_t sector;
1009 sector_t sector_count;
1010 unsigned short idx;
1011};
1012
Peter Osterlund36763472005-09-06 15:16:42 -07001013static void dm_bio_destructor(struct bio *bio)
1014{
Stefan Bader9faf4002006-10-03 01:15:41 -07001015 struct bio_set *bs = bio->bi_private;
1016
1017 bio_free(bio, bs);
Peter Osterlund36763472005-09-06 15:16:42 -07001018}
1019
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020/*
1021 * Creates a little bio that is just does part of a bvec.
1022 */
1023static struct bio *split_bvec(struct bio *bio, sector_t sector,
1024 unsigned short idx, unsigned int offset,
Stefan Bader9faf4002006-10-03 01:15:41 -07001025 unsigned int len, struct bio_set *bs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026{
1027 struct bio *clone;
1028 struct bio_vec *bv = bio->bi_io_vec + idx;
1029
Stefan Bader9faf4002006-10-03 01:15:41 -07001030 clone = bio_alloc_bioset(GFP_NOIO, 1, bs);
Peter Osterlund36763472005-09-06 15:16:42 -07001031 clone->bi_destructor = dm_bio_destructor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 *clone->bi_io_vec = *bv;
1033
1034 clone->bi_sector = sector;
1035 clone->bi_bdev = bio->bi_bdev;
Mikulas Patockaaf7e4662009-04-09 00:27:16 +01001036 clone->bi_rw = bio->bi_rw & ~(1 << BIO_RW_BARRIER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 clone->bi_vcnt = 1;
1038 clone->bi_size = to_bytes(len);
1039 clone->bi_io_vec->bv_offset = offset;
1040 clone->bi_io_vec->bv_len = clone->bi_size;
Martin K. Petersenf3e1d262008-10-21 17:45:04 +01001041 clone->bi_flags |= 1 << BIO_CLONED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042
Martin K. Petersen9c470082009-04-09 00:27:12 +01001043 if (bio_integrity(bio)) {
Martin K. Petersen7878cba2009-06-26 15:37:49 +02001044 bio_integrity_clone(clone, bio, GFP_NOIO, bs);
Martin K. Petersen9c470082009-04-09 00:27:12 +01001045 bio_integrity_trim(clone,
1046 bio_sector_offset(bio, idx, offset), len);
1047 }
1048
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 return clone;
1050}
1051
1052/*
1053 * Creates a bio that consists of range of complete bvecs.
1054 */
1055static struct bio *clone_bio(struct bio *bio, sector_t sector,
1056 unsigned short idx, unsigned short bv_count,
Stefan Bader9faf4002006-10-03 01:15:41 -07001057 unsigned int len, struct bio_set *bs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058{
1059 struct bio *clone;
1060
Stefan Bader9faf4002006-10-03 01:15:41 -07001061 clone = bio_alloc_bioset(GFP_NOIO, bio->bi_max_vecs, bs);
1062 __bio_clone(clone, bio);
Mikulas Patockaaf7e4662009-04-09 00:27:16 +01001063 clone->bi_rw &= ~(1 << BIO_RW_BARRIER);
Stefan Bader9faf4002006-10-03 01:15:41 -07001064 clone->bi_destructor = dm_bio_destructor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 clone->bi_sector = sector;
1066 clone->bi_idx = idx;
1067 clone->bi_vcnt = idx + bv_count;
1068 clone->bi_size = to_bytes(len);
1069 clone->bi_flags &= ~(1 << BIO_SEG_VALID);
1070
Martin K. Petersen9c470082009-04-09 00:27:12 +01001071 if (bio_integrity(bio)) {
Martin K. Petersen7878cba2009-06-26 15:37:49 +02001072 bio_integrity_clone(clone, bio, GFP_NOIO, bs);
Martin K. Petersen9c470082009-04-09 00:27:12 +01001073
1074 if (idx != bio->bi_idx || clone->bi_size < bio->bi_size)
1075 bio_integrity_trim(clone,
1076 bio_sector_offset(bio, idx, 0), len);
1077 }
1078
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 return clone;
1080}
1081
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001082static struct dm_target_io *alloc_tio(struct clone_info *ci,
1083 struct dm_target *ti)
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001084{
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001085 struct dm_target_io *tio = mempool_alloc(ci->md->tio_pool, GFP_NOIO);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001086
1087 tio->io = ci->io;
1088 tio->ti = ti;
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001089 memset(&tio->info, 0, sizeof(tio->info));
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001090
1091 return tio;
1092}
1093
1094static void __flush_target(struct clone_info *ci, struct dm_target *ti,
1095 unsigned flush_nr)
1096{
1097 struct dm_target_io *tio = alloc_tio(ci, ti);
1098 struct bio *clone;
1099
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001100 tio->info.flush_request = flush_nr;
1101
1102 clone = bio_alloc_bioset(GFP_NOIO, 0, ci->md->bs);
1103 __bio_clone(clone, ci->bio);
1104 clone->bi_destructor = dm_bio_destructor;
1105
1106 __map_bio(ti, clone, tio);
1107}
1108
1109static int __clone_and_map_empty_barrier(struct clone_info *ci)
1110{
1111 unsigned target_nr = 0, flush_nr;
1112 struct dm_target *ti;
1113
1114 while ((ti = dm_table_get_target(ci->map, target_nr++)))
1115 for (flush_nr = 0; flush_nr < ti->num_flush_requests;
1116 flush_nr++)
1117 __flush_target(ci, ti, flush_nr);
1118
1119 ci->sector_count = 0;
1120
1121 return 0;
1122}
1123
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001124static int __clone_and_map(struct clone_info *ci)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125{
1126 struct bio *clone, *bio = ci->bio;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001127 struct dm_target *ti;
1128 sector_t len = 0, max;
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001129 struct dm_target_io *tio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001131 if (unlikely(bio_empty_barrier(bio)))
1132 return __clone_and_map_empty_barrier(ci);
1133
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001134 ti = dm_table_find_target(ci->map, ci->sector);
1135 if (!dm_target_is_valid(ti))
1136 return -EIO;
1137
1138 max = max_io_len(ci->md, ci->sector, ti);
1139
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 /*
1141 * Allocate a target io object.
1142 */
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001143 tio = alloc_tio(ci, ti);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
1145 if (ci->sector_count <= max) {
1146 /*
1147 * Optimise for the simple case where we can do all of
1148 * the remaining io with a single clone.
1149 */
1150 clone = clone_bio(bio, ci->sector, ci->idx,
Stefan Bader9faf4002006-10-03 01:15:41 -07001151 bio->bi_vcnt - ci->idx, ci->sector_count,
1152 ci->md->bs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 __map_bio(ti, clone, tio);
1154 ci->sector_count = 0;
1155
1156 } else if (to_sector(bio->bi_io_vec[ci->idx].bv_len) <= max) {
1157 /*
1158 * There are some bvecs that don't span targets.
1159 * Do as many of these as possible.
1160 */
1161 int i;
1162 sector_t remaining = max;
1163 sector_t bv_len;
1164
1165 for (i = ci->idx; remaining && (i < bio->bi_vcnt); i++) {
1166 bv_len = to_sector(bio->bi_io_vec[i].bv_len);
1167
1168 if (bv_len > remaining)
1169 break;
1170
1171 remaining -= bv_len;
1172 len += bv_len;
1173 }
1174
Stefan Bader9faf4002006-10-03 01:15:41 -07001175 clone = clone_bio(bio, ci->sector, ci->idx, i - ci->idx, len,
1176 ci->md->bs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 __map_bio(ti, clone, tio);
1178
1179 ci->sector += len;
1180 ci->sector_count -= len;
1181 ci->idx = i;
1182
1183 } else {
1184 /*
Alasdair G Kergond2044a92006-03-22 00:07:42 -08001185 * Handle a bvec that must be split between two or more targets.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 */
1187 struct bio_vec *bv = bio->bi_io_vec + ci->idx;
Alasdair G Kergond2044a92006-03-22 00:07:42 -08001188 sector_t remaining = to_sector(bv->bv_len);
1189 unsigned int offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
Alasdair G Kergond2044a92006-03-22 00:07:42 -08001191 do {
1192 if (offset) {
1193 ti = dm_table_find_target(ci->map, ci->sector);
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001194 if (!dm_target_is_valid(ti))
1195 return -EIO;
1196
Alasdair G Kergond2044a92006-03-22 00:07:42 -08001197 max = max_io_len(ci->md, ci->sector, ti);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001199 tio = alloc_tio(ci, ti);
Alasdair G Kergond2044a92006-03-22 00:07:42 -08001200 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
Alasdair G Kergond2044a92006-03-22 00:07:42 -08001202 len = min(remaining, max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203
Alasdair G Kergond2044a92006-03-22 00:07:42 -08001204 clone = split_bvec(bio, ci->sector, ci->idx,
Stefan Bader9faf4002006-10-03 01:15:41 -07001205 bv->bv_offset + offset, len,
1206 ci->md->bs);
Alasdair G Kergond2044a92006-03-22 00:07:42 -08001207
1208 __map_bio(ti, clone, tio);
1209
1210 ci->sector += len;
1211 ci->sector_count -= len;
1212 offset += to_bytes(len);
1213 } while (remaining -= len);
1214
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 ci->idx++;
1216 }
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001217
1218 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219}
1220
1221/*
Mikulas Patocka8a53c282009-04-02 19:55:37 +01001222 * Split the bio into several clones and submit it to targets.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 */
Mikulas Patockaf0b9a452009-04-02 19:55:38 +01001224static void __split_and_process_bio(struct mapped_device *md, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225{
1226 struct clone_info ci;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001227 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
1229 ci.map = dm_get_table(md);
Mikulas Patockaf0b9a452009-04-02 19:55:38 +01001230 if (unlikely(!ci.map)) {
Jens Axboe1f98a132009-09-11 14:32:04 +02001231 if (!bio_rw_flagged(bio, BIO_RW_BARRIER))
Mikulas Patockaaf7e4662009-04-09 00:27:16 +01001232 bio_io_error(bio);
1233 else
Mikulas Patocka5aa27812009-06-22 10:12:18 +01001234 if (!md->barrier_error)
1235 md->barrier_error = -EIO;
Mikulas Patockaf0b9a452009-04-02 19:55:38 +01001236 return;
1237 }
Mikulas Patocka692d0eb2009-04-09 00:27:13 +01001238
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 ci.md = md;
1240 ci.bio = bio;
1241 ci.io = alloc_io(md);
1242 ci.io->error = 0;
1243 atomic_set(&ci.io->io_count, 1);
1244 ci.io->bio = bio;
1245 ci.io->md = md;
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +01001246 spin_lock_init(&ci.io->endio_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 ci.sector = bio->bi_sector;
1248 ci.sector_count = bio_sectors(bio);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001249 if (unlikely(bio_empty_barrier(bio)))
1250 ci.sector_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 ci.idx = bio->bi_idx;
1252
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -08001253 start_io_acct(ci.io);
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001254 while (ci.sector_count && !error)
1255 error = __clone_and_map(&ci);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
1257 /* drop the extra reference count */
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001258 dec_pending(ci.io, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 dm_table_put(ci.map);
1260}
1261/*-----------------------------------------------------------------
1262 * CRUD END
1263 *---------------------------------------------------------------*/
1264
Milan Brozf6fccb12008-07-21 12:00:37 +01001265static int dm_merge_bvec(struct request_queue *q,
1266 struct bvec_merge_data *bvm,
1267 struct bio_vec *biovec)
1268{
1269 struct mapped_device *md = q->queuedata;
1270 struct dm_table *map = dm_get_table(md);
1271 struct dm_target *ti;
1272 sector_t max_sectors;
Mikulas Patocka50371082008-10-01 14:39:17 +01001273 int max_size = 0;
Milan Brozf6fccb12008-07-21 12:00:37 +01001274
1275 if (unlikely(!map))
Mikulas Patocka50371082008-10-01 14:39:17 +01001276 goto out;
Milan Brozf6fccb12008-07-21 12:00:37 +01001277
1278 ti = dm_table_find_target(map, bvm->bi_sector);
Mikulas Patockab01cd5a2008-10-01 14:39:24 +01001279 if (!dm_target_is_valid(ti))
1280 goto out_table;
Milan Brozf6fccb12008-07-21 12:00:37 +01001281
1282 /*
1283 * Find maximum amount of I/O that won't need splitting
1284 */
1285 max_sectors = min(max_io_len(md, bvm->bi_sector, ti),
1286 (sector_t) BIO_MAX_SECTORS);
1287 max_size = (max_sectors << SECTOR_SHIFT) - bvm->bi_size;
1288 if (max_size < 0)
1289 max_size = 0;
1290
1291 /*
1292 * merge_bvec_fn() returns number of bytes
1293 * it can accept at this offset
1294 * max is precomputed maximal io size
1295 */
1296 if (max_size && ti->type->merge)
1297 max_size = ti->type->merge(ti, bvm, biovec, max_size);
Mikulas Patocka8cbeb672009-06-22 10:12:14 +01001298 /*
1299 * If the target doesn't support merge method and some of the devices
1300 * provided their merge_bvec method (we know this by looking at
1301 * queue_max_hw_sectors), then we can't allow bios with multiple vector
1302 * entries. So always set max_size to 0, and the code below allows
1303 * just one page.
1304 */
1305 else if (queue_max_hw_sectors(q) <= PAGE_SIZE >> 9)
1306
1307 max_size = 0;
Milan Brozf6fccb12008-07-21 12:00:37 +01001308
Mikulas Patockab01cd5a2008-10-01 14:39:24 +01001309out_table:
Mikulas Patocka50371082008-10-01 14:39:17 +01001310 dm_table_put(map);
1311
1312out:
Milan Brozf6fccb12008-07-21 12:00:37 +01001313 /*
1314 * Always allow an entire first page
1315 */
1316 if (max_size <= biovec->bv_len && !(bvm->bi_size >> SECTOR_SHIFT))
1317 max_size = biovec->bv_len;
1318
Milan Brozf6fccb12008-07-21 12:00:37 +01001319 return max_size;
1320}
1321
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322/*
1323 * The request function that just remaps the bio built up by
1324 * dm_merge_bvec.
1325 */
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001326static int _dm_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327{
Kevin Corry12f03a42006-02-01 03:04:52 -08001328 int rw = bio_data_dir(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 struct mapped_device *md = q->queuedata;
Tejun Heoc9959052008-08-25 19:47:21 +09001330 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001332 down_read(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
Tejun Heo074a7ac2008-08-25 19:56:14 +09001334 cpu = part_stat_lock();
1335 part_stat_inc(cpu, &dm_disk(md)->part0, ios[rw]);
1336 part_stat_add(cpu, &dm_disk(md)->part0, sectors[rw], bio_sectors(bio));
1337 part_stat_unlock();
Kevin Corry12f03a42006-02-01 03:04:52 -08001338
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 /*
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01001340 * If we're suspended or the thread is processing barriers
1341 * we have to queue this io for later.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 */
Mikulas Patockaaf7e4662009-04-09 00:27:16 +01001343 if (unlikely(test_bit(DMF_QUEUE_IO_TO_THREAD, &md->flags)) ||
Jens Axboe1f98a132009-09-11 14:32:04 +02001344 unlikely(bio_rw_flagged(bio, BIO_RW_BARRIER))) {
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001345 up_read(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
Alasdair G Kergon54d9a1b2009-04-09 00:27:14 +01001347 if (unlikely(test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) &&
1348 bio_rw(bio) == READA) {
1349 bio_io_error(bio);
1350 return 0;
1351 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352
Mikulas Patocka92c63902009-04-09 00:27:15 +01001353 queue_io(md, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
Mikulas Patocka92c63902009-04-09 00:27:15 +01001355 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 }
1357
Mikulas Patockaf0b9a452009-04-02 19:55:38 +01001358 __split_and_process_bio(md, bio);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001359 up_read(&md->io_lock);
Mikulas Patockaf0b9a452009-04-02 19:55:38 +01001360 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361}
1362
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001363static int dm_make_request(struct request_queue *q, struct bio *bio)
1364{
1365 struct mapped_device *md = q->queuedata;
1366
Jens Axboe1f98a132009-09-11 14:32:04 +02001367 if (unlikely(bio_rw_flagged(bio, BIO_RW_BARRIER))) {
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001368 bio_endio(bio, -EOPNOTSUPP);
1369 return 0;
1370 }
1371
1372 return md->saved_make_request_fn(q, bio); /* call __make_request() */
1373}
1374
1375static int dm_request_based(struct mapped_device *md)
1376{
1377 return blk_queue_stackable(md->queue);
1378}
1379
1380static int dm_request(struct request_queue *q, struct bio *bio)
1381{
1382 struct mapped_device *md = q->queuedata;
1383
1384 if (dm_request_based(md))
1385 return dm_make_request(q, bio);
1386
1387 return _dm_request(q, bio);
1388}
1389
1390void dm_dispatch_request(struct request *rq)
1391{
1392 int r;
1393
1394 if (blk_queue_io_stat(rq->q))
1395 rq->cmd_flags |= REQ_IO_STAT;
1396
1397 rq->start_time = jiffies;
1398 r = blk_insert_cloned_request(rq->q, rq);
1399 if (r)
1400 dm_complete_request(rq, r);
1401}
1402EXPORT_SYMBOL_GPL(dm_dispatch_request);
1403
1404static void dm_rq_bio_destructor(struct bio *bio)
1405{
1406 struct dm_rq_clone_bio_info *info = bio->bi_private;
1407 struct mapped_device *md = info->tio->md;
1408
1409 free_bio_info(info);
1410 bio_free(bio, md->bs);
1411}
1412
1413static int dm_rq_bio_constructor(struct bio *bio, struct bio *bio_orig,
1414 void *data)
1415{
1416 struct dm_rq_target_io *tio = data;
1417 struct mapped_device *md = tio->md;
1418 struct dm_rq_clone_bio_info *info = alloc_bio_info(md);
1419
1420 if (!info)
1421 return -ENOMEM;
1422
1423 info->orig = bio_orig;
1424 info->tio = tio;
1425 bio->bi_end_io = end_clone_bio;
1426 bio->bi_private = info;
1427 bio->bi_destructor = dm_rq_bio_destructor;
1428
1429 return 0;
1430}
1431
1432static int setup_clone(struct request *clone, struct request *rq,
1433 struct dm_rq_target_io *tio)
1434{
1435 int r = blk_rq_prep_clone(clone, rq, tio->md->bs, GFP_ATOMIC,
1436 dm_rq_bio_constructor, tio);
1437
1438 if (r)
1439 return r;
1440
1441 clone->cmd = rq->cmd;
1442 clone->cmd_len = rq->cmd_len;
1443 clone->sense = rq->sense;
1444 clone->buffer = rq->buffer;
1445 clone->end_io = end_clone_request;
1446 clone->end_io_data = tio;
1447
1448 return 0;
1449}
1450
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001451static struct request *clone_rq(struct request *rq, struct mapped_device *md,
1452 gfp_t gfp_mask)
1453{
1454 struct request *clone;
1455 struct dm_rq_target_io *tio;
1456
1457 tio = alloc_rq_tio(md, gfp_mask);
1458 if (!tio)
1459 return NULL;
1460
1461 tio->md = md;
1462 tio->ti = NULL;
1463 tio->orig = rq;
1464 tio->error = 0;
1465 memset(&tio->info, 0, sizeof(tio->info));
1466
1467 clone = &tio->clone;
1468 if (setup_clone(clone, rq, tio)) {
1469 /* -ENOMEM */
1470 free_rq_tio(tio);
1471 return NULL;
1472 }
1473
1474 return clone;
1475}
1476
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001477/*
1478 * Called with the queue lock held.
1479 */
1480static int dm_prep_fn(struct request_queue *q, struct request *rq)
1481{
1482 struct mapped_device *md = q->queuedata;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001483 struct request *clone;
1484
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001485 if (unlikely(rq->special)) {
1486 DMWARN("Already has something in rq->special.");
1487 return BLKPREP_KILL;
1488 }
1489
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001490 clone = clone_rq(rq, md, GFP_ATOMIC);
1491 if (!clone)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001492 return BLKPREP_DEFER;
1493
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001494 rq->special = clone;
1495 rq->cmd_flags |= REQ_DONTPREP;
1496
1497 return BLKPREP_OK;
1498}
1499
Kiyoshi Ueda598de402009-12-10 23:52:14 +00001500static void map_request(struct dm_target *ti, struct request *clone,
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001501 struct mapped_device *md)
1502{
1503 int r;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001504 struct dm_rq_target_io *tio = clone->end_io_data;
1505
1506 /*
1507 * Hold the md reference here for the in-flight I/O.
1508 * We can't rely on the reference count by device opener,
1509 * because the device may be closed during the request completion
1510 * when all bios are completed.
1511 * See the comment in rq_completed() too.
1512 */
1513 dm_get(md);
1514
1515 tio->ti = ti;
1516 r = ti->type->map_rq(ti, clone, &tio->info);
1517 switch (r) {
1518 case DM_MAPIO_SUBMITTED:
1519 /* The target has taken the I/O to submit by itself later */
1520 break;
1521 case DM_MAPIO_REMAPPED:
1522 /* The target has remapped the I/O so dispatch it */
1523 dm_dispatch_request(clone);
1524 break;
1525 case DM_MAPIO_REQUEUE:
1526 /* The target wants to requeue the I/O */
1527 dm_requeue_unmapped_request(clone);
1528 break;
1529 default:
1530 if (r > 0) {
1531 DMWARN("unimplemented target map return value: %d", r);
1532 BUG();
1533 }
1534
1535 /* The target wants to complete the I/O */
1536 dm_kill_unmapped_request(clone, r);
1537 break;
1538 }
1539}
1540
1541/*
1542 * q->request_fn for request-based dm.
1543 * Called with the queue lock held.
1544 */
1545static void dm_request_fn(struct request_queue *q)
1546{
1547 struct mapped_device *md = q->queuedata;
1548 struct dm_table *map = dm_get_table(md);
1549 struct dm_target *ti;
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00001550 struct request *rq, *clone;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001551
1552 /*
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00001553 * For suspend, check blk_queue_stopped() and increment
1554 * ->pending within a single queue_lock not to increment the
1555 * number of in-flight I/Os after the queue is stopped in
1556 * dm_suspend().
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001557 */
1558 while (!blk_queue_plugged(q) && !blk_queue_stopped(q)) {
1559 rq = blk_peek_request(q);
1560 if (!rq)
1561 goto plug_and_out;
1562
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001563 ti = dm_table_find_target(map, blk_rq_pos(rq));
1564 if (ti->type->busy && ti->type->busy(ti))
1565 goto plug_and_out;
1566
1567 blk_start_request(rq);
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00001568 clone = rq->special;
1569 atomic_inc(&md->pending[rq_data_dir(clone)]);
1570
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001571 spin_unlock(q->queue_lock);
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00001572 map_request(ti, clone, md);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001573 spin_lock_irq(q->queue_lock);
1574 }
1575
1576 goto out;
1577
1578plug_and_out:
1579 if (!elv_queue_empty(q))
1580 /* Some requests still remain, retry later */
1581 blk_plug_device(q);
1582
1583out:
1584 dm_table_put(map);
1585
1586 return;
1587}
1588
1589int dm_underlying_device_busy(struct request_queue *q)
1590{
1591 return blk_lld_busy(q);
1592}
1593EXPORT_SYMBOL_GPL(dm_underlying_device_busy);
1594
1595static int dm_lld_busy(struct request_queue *q)
1596{
1597 int r;
1598 struct mapped_device *md = q->queuedata;
1599 struct dm_table *map = dm_get_table(md);
1600
1601 if (!map || test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags))
1602 r = 1;
1603 else
1604 r = dm_table_any_busy_target(map);
1605
1606 dm_table_put(map);
1607
1608 return r;
1609}
1610
Jens Axboe165125e2007-07-24 09:28:11 +02001611static void dm_unplug_all(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612{
1613 struct mapped_device *md = q->queuedata;
1614 struct dm_table *map = dm_get_table(md);
1615
1616 if (map) {
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001617 if (dm_request_based(md))
1618 generic_unplug_device(q);
1619
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 dm_table_unplug_all(map);
1621 dm_table_put(map);
1622 }
1623}
1624
1625static int dm_any_congested(void *congested_data, int bdi_bits)
1626{
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00001627 int r = bdi_bits;
1628 struct mapped_device *md = congested_data;
1629 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01001631 if (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00001632 map = dm_get_table(md);
1633 if (map) {
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001634 /*
1635 * Request-based dm cares about only own queue for
1636 * the query about congestion status of request_queue
1637 */
1638 if (dm_request_based(md))
1639 r = md->queue->backing_dev_info.state &
1640 bdi_bits;
1641 else
1642 r = dm_table_any_congested(map, bdi_bits);
1643
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00001644 dm_table_put(map);
1645 }
1646 }
1647
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 return r;
1649}
1650
1651/*-----------------------------------------------------------------
1652 * An IDR is used to keep track of allocated minor numbers.
1653 *---------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654static DEFINE_IDR(_minor_idr);
1655
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001656static void free_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657{
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001658 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 idr_remove(&_minor_idr, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001660 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661}
1662
1663/*
1664 * See if the device with a specific minor # is free.
1665 */
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001666static int specific_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667{
1668 int r, m;
1669
1670 if (minor >= (1 << MINORBITS))
1671 return -EINVAL;
1672
Jeff Mahoney62f75c22006-06-26 00:27:21 -07001673 r = idr_pre_get(&_minor_idr, GFP_KERNEL);
1674 if (!r)
1675 return -ENOMEM;
1676
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001677 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678
1679 if (idr_find(&_minor_idr, minor)) {
1680 r = -EBUSY;
1681 goto out;
1682 }
1683
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001684 r = idr_get_new_above(&_minor_idr, MINOR_ALLOCED, minor, &m);
Jeff Mahoney62f75c22006-06-26 00:27:21 -07001685 if (r)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687
1688 if (m != minor) {
1689 idr_remove(&_minor_idr, m);
1690 r = -EBUSY;
1691 goto out;
1692 }
1693
1694out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001695 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 return r;
1697}
1698
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001699static int next_free_minor(int *minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700{
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001701 int r, m;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 r = idr_pre_get(&_minor_idr, GFP_KERNEL);
Jeff Mahoney62f75c22006-06-26 00:27:21 -07001704 if (!r)
1705 return -ENOMEM;
1706
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001707 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001709 r = idr_get_new(&_minor_idr, MINOR_ALLOCED, &m);
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001710 if (r)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712
1713 if (m >= (1 << MINORBITS)) {
1714 idr_remove(&_minor_idr, m);
1715 r = -ENOSPC;
1716 goto out;
1717 }
1718
1719 *minor = m;
1720
1721out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001722 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 return r;
1724}
1725
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07001726static const struct block_device_operations dm_blk_dops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727
Mikulas Patocka53d59142009-04-02 19:55:37 +01001728static void dm_wq_work(struct work_struct *work);
1729
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730/*
1731 * Allocate and initialise a blank device with a given minor.
1732 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001733static struct mapped_device *alloc_dev(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734{
1735 int r;
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001736 struct mapped_device *md = kzalloc(sizeof(*md), GFP_KERNEL);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001737 void *old_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
1739 if (!md) {
1740 DMWARN("unable to allocate device, out of memory.");
1741 return NULL;
1742 }
1743
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001744 if (!try_module_get(THIS_MODULE))
Milan Broz6ed7ade2008-02-08 02:10:19 +00001745 goto bad_module_get;
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001746
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 /* get a minor number for the dev */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001748 if (minor == DM_ANY_MINOR)
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001749 r = next_free_minor(&minor);
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001750 else
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001751 r = specific_minor(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 if (r < 0)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001753 goto bad_minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001755 init_rwsem(&md->io_lock);
Daniel Walkere61290a2008-02-08 02:10:08 +00001756 mutex_init(&md->suspend_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01001757 spin_lock_init(&md->deferred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 rwlock_init(&md->map_lock);
1759 atomic_set(&md->holders, 1);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -07001760 atomic_set(&md->open_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 atomic_set(&md->event_nr, 0);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001762 atomic_set(&md->uevent_seq, 0);
1763 INIT_LIST_HEAD(&md->uevent_list);
1764 spin_lock_init(&md->uevent_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001766 md->queue = blk_init_queue(dm_request_fn, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 if (!md->queue)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001768 goto bad_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001770 /*
1771 * Request-based dm devices cannot be stacked on top of bio-based dm
1772 * devices. The type of this dm device has not been decided yet,
1773 * although we initialized the queue using blk_init_queue().
1774 * The type is decided at the first table loading time.
1775 * To prevent problematic device stacking, clear the queue flag
1776 * for request stacking support until then.
1777 *
1778 * This queue is new, so no concurrency on the queue_flags.
1779 */
1780 queue_flag_clear_unlocked(QUEUE_FLAG_STACKABLE, md->queue);
1781 md->saved_make_request_fn = md->queue->make_request_fn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 md->queue->queuedata = md;
1783 md->queue->backing_dev_info.congested_fn = dm_any_congested;
1784 md->queue->backing_dev_info.congested_data = md;
1785 blk_queue_make_request(md->queue, dm_request);
Jens Axboedaef2652006-01-10 10:48:02 +01001786 blk_queue_bounce_limit(md->queue, BLK_BOUNCE_ANY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 md->queue->unplug_fn = dm_unplug_all;
Milan Brozf6fccb12008-07-21 12:00:37 +01001788 blk_queue_merge_bvec(md->queue, dm_merge_bvec);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001789 blk_queue_softirq_done(md->queue, dm_softirq_done);
1790 blk_queue_prep_rq(md->queue, dm_prep_fn);
1791 blk_queue_lld_busy(md->queue, dm_lld_busy);
Stefan Bader9faf4002006-10-03 01:15:41 -07001792
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 md->disk = alloc_disk(1);
1794 if (!md->disk)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001795 goto bad_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001797 atomic_set(&md->pending[0], 0);
1798 atomic_set(&md->pending[1], 0);
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07001799 init_waitqueue_head(&md->wait);
Mikulas Patocka53d59142009-04-02 19:55:37 +01001800 INIT_WORK(&md->work, dm_wq_work);
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07001801 init_waitqueue_head(&md->eventq);
1802
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 md->disk->major = _major;
1804 md->disk->first_minor = minor;
1805 md->disk->fops = &dm_blk_dops;
1806 md->disk->queue = md->queue;
1807 md->disk->private_data = md;
1808 sprintf(md->disk->disk_name, "dm-%d", minor);
1809 add_disk(md->disk);
Mike Anderson7e51f252006-03-27 01:17:52 -08001810 format_dev_t(md->name, MKDEV(_major, minor));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811
Milan Broz304f3f62008-02-08 02:11:17 +00001812 md->wq = create_singlethread_workqueue("kdmflush");
1813 if (!md->wq)
1814 goto bad_thread;
1815
Mikulas Patocka32a926d2009-06-22 10:12:17 +01001816 md->bdev = bdget_disk(md->disk, 0);
1817 if (!md->bdev)
1818 goto bad_bdev;
1819
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001820 /* Populate the mapping, nobody knows we exist yet */
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001821 spin_lock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001822 old_md = idr_replace(&_minor_idr, md, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001823 spin_unlock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001824
1825 BUG_ON(old_md != MINOR_ALLOCED);
1826
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 return md;
1828
Mikulas Patocka32a926d2009-06-22 10:12:17 +01001829bad_bdev:
1830 destroy_workqueue(md->wq);
Milan Broz304f3f62008-02-08 02:11:17 +00001831bad_thread:
Zdenek Kabelac03022c52009-10-16 23:18:15 +01001832 del_gendisk(md->disk);
Milan Broz304f3f62008-02-08 02:11:17 +00001833 put_disk(md->disk);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001834bad_disk:
Al Viro1312f402006-03-12 11:02:03 -05001835 blk_cleanup_queue(md->queue);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001836bad_queue:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 free_minor(minor);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001838bad_minor:
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001839 module_put(THIS_MODULE);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001840bad_module_get:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 kfree(md);
1842 return NULL;
1843}
1844
Jun'ichi Nomuraae9da832007-10-19 22:38:43 +01001845static void unlock_fs(struct mapped_device *md);
1846
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847static void free_dev(struct mapped_device *md)
1848{
Tejun Heof331c022008-09-03 09:01:48 +02001849 int minor = MINOR(disk_devt(md->disk));
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08001850
Mikulas Patocka32a926d2009-06-22 10:12:17 +01001851 unlock_fs(md);
1852 bdput(md->bdev);
Milan Broz304f3f62008-02-08 02:11:17 +00001853 destroy_workqueue(md->wq);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001854 if (md->tio_pool)
1855 mempool_destroy(md->tio_pool);
1856 if (md->io_pool)
1857 mempool_destroy(md->io_pool);
1858 if (md->bs)
1859 bioset_free(md->bs);
Martin K. Petersen9c470082009-04-09 00:27:12 +01001860 blk_integrity_unregister(md->disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 del_gendisk(md->disk);
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08001862 free_minor(minor);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001863
1864 spin_lock(&_minor_lock);
1865 md->disk->private_data = NULL;
1866 spin_unlock(&_minor_lock);
1867
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 put_disk(md->disk);
Al Viro1312f402006-03-12 11:02:03 -05001869 blk_cleanup_queue(md->queue);
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001870 module_put(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 kfree(md);
1872}
1873
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001874static void __bind_mempools(struct mapped_device *md, struct dm_table *t)
1875{
1876 struct dm_md_mempools *p;
1877
1878 if (md->io_pool && md->tio_pool && md->bs)
1879 /* the md already has necessary mempools */
1880 goto out;
1881
1882 p = dm_table_get_md_mempools(t);
1883 BUG_ON(!p || md->io_pool || md->tio_pool || md->bs);
1884
1885 md->io_pool = p->io_pool;
1886 p->io_pool = NULL;
1887 md->tio_pool = p->tio_pool;
1888 p->tio_pool = NULL;
1889 md->bs = p->bs;
1890 p->bs = NULL;
1891
1892out:
1893 /* mempool bind completed, now no need any mempools in the table */
1894 dm_table_free_md_mempools(t);
1895}
1896
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897/*
1898 * Bind a table to the device.
1899 */
1900static void event_callback(void *context)
1901{
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001902 unsigned long flags;
1903 LIST_HEAD(uevents);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 struct mapped_device *md = (struct mapped_device *) context;
1905
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001906 spin_lock_irqsave(&md->uevent_lock, flags);
1907 list_splice_init(&md->uevent_list, &uevents);
1908 spin_unlock_irqrestore(&md->uevent_lock, flags);
1909
Tejun Heoed9e1982008-08-25 19:56:05 +09001910 dm_send_uevents(&uevents, &disk_to_dev(md->disk)->kobj);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001911
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 atomic_inc(&md->event_nr);
1913 wake_up(&md->eventq);
1914}
1915
Alasdair G Kergon4e901882005-07-28 21:15:59 -07001916static void __set_size(struct mapped_device *md, sector_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917{
Alasdair G Kergon4e901882005-07-28 21:15:59 -07001918 set_capacity(md->disk, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919
Mikulas Patockadb8fef42009-06-22 10:12:15 +01001920 mutex_lock(&md->bdev->bd_inode->i_mutex);
1921 i_size_write(md->bdev->bd_inode, (loff_t)size << SECTOR_SHIFT);
1922 mutex_unlock(&md->bdev->bd_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923}
1924
Mike Snitzer754c5fc2009-06-22 10:12:34 +01001925static int __bind(struct mapped_device *md, struct dm_table *t,
1926 struct queue_limits *limits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927{
Jens Axboe165125e2007-07-24 09:28:11 +02001928 struct request_queue *q = md->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 sector_t size;
Kiyoshi Ueda523d9292009-06-22 10:12:37 +01001930 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931
1932 size = dm_table_get_size(t);
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08001933
1934 /*
1935 * Wipe any geometry if the size of the table changed.
1936 */
1937 if (size != get_capacity(md->disk))
1938 memset(&md->geometry, 0, sizeof(md->geometry));
1939
Mikulas Patocka32a926d2009-06-22 10:12:17 +01001940 __set_size(md, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941
Mikulas Patockad5816872009-01-06 03:05:10 +00001942 if (!size) {
1943 dm_table_destroy(t);
1944 return 0;
1945 }
1946
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001947 dm_table_event_callback(t, event_callback, md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001948
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001949 /*
1950 * The queue hasn't been stopped yet, if the old table type wasn't
1951 * for request-based during suspension. So stop it to prevent
1952 * I/O mapping before resume.
1953 * This must be done before setting the queue restrictions,
1954 * because request-based dm may be run just after the setting.
1955 */
1956 if (dm_table_request_based(t) && !blk_queue_stopped(q))
1957 stop_queue(q);
1958
1959 __bind_mempools(md, t);
1960
Kiyoshi Ueda523d9292009-06-22 10:12:37 +01001961 write_lock_irqsave(&md->map_lock, flags);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001962 md->map = t;
Mike Snitzer754c5fc2009-06-22 10:12:34 +01001963 dm_table_set_restrictions(t, q, limits);
Kiyoshi Ueda523d9292009-06-22 10:12:37 +01001964 write_unlock_irqrestore(&md->map_lock, flags);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001965
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 return 0;
1967}
1968
1969static void __unbind(struct mapped_device *md)
1970{
1971 struct dm_table *map = md->map;
Kiyoshi Ueda523d9292009-06-22 10:12:37 +01001972 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973
1974 if (!map)
1975 return;
1976
1977 dm_table_event_callback(map, NULL, NULL);
Kiyoshi Ueda523d9292009-06-22 10:12:37 +01001978 write_lock_irqsave(&md->map_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 md->map = NULL;
Kiyoshi Ueda523d9292009-06-22 10:12:37 +01001980 write_unlock_irqrestore(&md->map_lock, flags);
Mikulas Patockad5816872009-01-06 03:05:10 +00001981 dm_table_destroy(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982}
1983
1984/*
1985 * Constructor for a new device.
1986 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001987int dm_create(int minor, struct mapped_device **result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988{
1989 struct mapped_device *md;
1990
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001991 md = alloc_dev(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 if (!md)
1993 return -ENXIO;
1994
Milan Broz784aae72009-01-06 03:05:12 +00001995 dm_sysfs_init(md);
1996
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 *result = md;
1998 return 0;
1999}
2000
David Teigland637842c2006-01-06 00:20:00 -08002001static struct mapped_device *dm_find_md(dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002{
2003 struct mapped_device *md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 unsigned minor = MINOR(dev);
2005
2006 if (MAJOR(dev) != _major || minor >= (1 << MINORBITS))
2007 return NULL;
2008
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002009 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010
2011 md = idr_find(&_minor_idr, minor);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002012 if (md && (md == MINOR_ALLOCED ||
Tejun Heof331c022008-09-03 09:01:48 +02002013 (MINOR(disk_devt(dm_disk(md))) != minor) ||
Alasdair G Kergon17b2f662006-06-26 00:27:33 -07002014 test_bit(DMF_FREEING, &md->flags))) {
David Teigland637842c2006-01-06 00:20:00 -08002015 md = NULL;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002016 goto out;
2017 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002019out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002020 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021
David Teigland637842c2006-01-06 00:20:00 -08002022 return md;
2023}
2024
David Teiglandd229a952006-01-06 00:20:01 -08002025struct mapped_device *dm_get_md(dev_t dev)
2026{
2027 struct mapped_device *md = dm_find_md(dev);
2028
2029 if (md)
2030 dm_get(md);
2031
2032 return md;
2033}
2034
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08002035void *dm_get_mdptr(struct mapped_device *md)
David Teigland637842c2006-01-06 00:20:00 -08002036{
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08002037 return md->interface_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038}
2039
2040void dm_set_mdptr(struct mapped_device *md, void *ptr)
2041{
2042 md->interface_ptr = ptr;
2043}
2044
2045void dm_get(struct mapped_device *md)
2046{
2047 atomic_inc(&md->holders);
2048}
2049
Alasdair G Kergon72d94862006-06-26 00:27:35 -07002050const char *dm_device_name(struct mapped_device *md)
2051{
2052 return md->name;
2053}
2054EXPORT_SYMBOL_GPL(dm_device_name);
2055
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056void dm_put(struct mapped_device *md)
2057{
Mike Anderson1134e5a2006-03-27 01:17:54 -08002058 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002060 BUG_ON(test_bit(DMF_FREEING, &md->flags));
2061
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002062 if (atomic_dec_and_lock(&md->holders, &_minor_lock)) {
Mike Anderson1134e5a2006-03-27 01:17:54 -08002063 map = dm_get_table(md);
Tejun Heof331c022008-09-03 09:01:48 +02002064 idr_replace(&_minor_idr, MINOR_ALLOCED,
2065 MINOR(disk_devt(dm_disk(md))));
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002066 set_bit(DMF_FREEING, &md->flags);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002067 spin_unlock(&_minor_lock);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002068 if (!dm_suspended(md)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 dm_table_presuspend_targets(map);
2070 dm_table_postsuspend_targets(map);
2071 }
Milan Broz784aae72009-01-06 03:05:12 +00002072 dm_sysfs_exit(md);
Mike Anderson1134e5a2006-03-27 01:17:54 -08002073 dm_table_put(map);
Mikulas Patockaa1b51e92009-01-06 03:04:53 +00002074 __unbind(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 free_dev(md);
2076 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077}
Edward Goggin79eb8852007-05-09 02:32:56 -07002078EXPORT_SYMBOL_GPL(dm_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079
Mikulas Patocka401600d2009-04-02 19:55:38 +01002080static int dm_wait_for_completion(struct mapped_device *md, int interruptible)
Milan Broz46125c12008-02-08 02:10:30 +00002081{
2082 int r = 0;
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002083 DECLARE_WAITQUEUE(wait, current);
2084
2085 dm_unplug_all(md->queue);
2086
2087 add_wait_queue(&md->wait, &wait);
Milan Broz46125c12008-02-08 02:10:30 +00002088
2089 while (1) {
Mikulas Patocka401600d2009-04-02 19:55:38 +01002090 set_current_state(interruptible);
Milan Broz46125c12008-02-08 02:10:30 +00002091
2092 smp_mb();
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00002093 if (!md_in_flight(md))
Milan Broz46125c12008-02-08 02:10:30 +00002094 break;
2095
Mikulas Patocka401600d2009-04-02 19:55:38 +01002096 if (interruptible == TASK_INTERRUPTIBLE &&
2097 signal_pending(current)) {
Milan Broz46125c12008-02-08 02:10:30 +00002098 r = -EINTR;
2099 break;
2100 }
2101
2102 io_schedule();
2103 }
2104 set_current_state(TASK_RUNNING);
2105
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002106 remove_wait_queue(&md->wait, &wait);
2107
Milan Broz46125c12008-02-08 02:10:30 +00002108 return r;
2109}
2110
Mikulas Patocka531fe962009-06-22 10:12:17 +01002111static void dm_flush(struct mapped_device *md)
Mikulas Patockaaf7e4662009-04-09 00:27:16 +01002112{
2113 dm_wait_for_completion(md, TASK_UNINTERRUPTIBLE);
Mikulas Patocka52b1fd52009-06-22 10:12:21 +01002114
2115 bio_init(&md->barrier_bio);
2116 md->barrier_bio.bi_bdev = md->bdev;
2117 md->barrier_bio.bi_rw = WRITE_BARRIER;
2118 __split_and_process_bio(md, &md->barrier_bio);
2119
2120 dm_wait_for_completion(md, TASK_UNINTERRUPTIBLE);
Mikulas Patockaaf7e4662009-04-09 00:27:16 +01002121}
2122
2123static void process_barrier(struct mapped_device *md, struct bio *bio)
2124{
Mikulas Patocka5aa27812009-06-22 10:12:18 +01002125 md->barrier_error = 0;
2126
Mikulas Patocka531fe962009-06-22 10:12:17 +01002127 dm_flush(md);
Mikulas Patockaaf7e4662009-04-09 00:27:16 +01002128
Mikulas Patocka5aa27812009-06-22 10:12:18 +01002129 if (!bio_empty_barrier(bio)) {
2130 __split_and_process_bio(md, bio);
2131 dm_flush(md);
Mikulas Patockaaf7e4662009-04-09 00:27:16 +01002132 }
2133
Mikulas Patockaaf7e4662009-04-09 00:27:16 +01002134 if (md->barrier_error != DM_ENDIO_REQUEUE)
Mikulas Patocka531fe962009-06-22 10:12:17 +01002135 bio_endio(bio, md->barrier_error);
Mikulas Patocka2761e952009-06-22 10:12:18 +01002136 else {
2137 spin_lock_irq(&md->deferred_lock);
2138 bio_list_add_head(&md->deferred, bio);
2139 spin_unlock_irq(&md->deferred_lock);
2140 }
Mikulas Patockaaf7e4662009-04-09 00:27:16 +01002141}
2142
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143/*
2144 * Process the deferred bios
2145 */
Mikulas Patockaef208582009-04-02 19:55:38 +01002146static void dm_wq_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147{
Mikulas Patockaef208582009-04-02 19:55:38 +01002148 struct mapped_device *md = container_of(work, struct mapped_device,
2149 work);
Milan Broz6d6f10d2008-02-08 02:10:22 +00002150 struct bio *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151
Mikulas Patockaef208582009-04-02 19:55:38 +01002152 down_write(&md->io_lock);
2153
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002154 while (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002155 spin_lock_irq(&md->deferred_lock);
2156 c = bio_list_pop(&md->deferred);
2157 spin_unlock_irq(&md->deferred_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01002158
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002159 if (!c) {
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01002160 clear_bit(DMF_QUEUE_IO_TO_THREAD, &md->flags);
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002161 break;
2162 }
2163
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002164 up_write(&md->io_lock);
2165
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002166 if (dm_request_based(md))
2167 generic_make_request(c);
2168 else {
Jens Axboe1f98a132009-09-11 14:32:04 +02002169 if (bio_rw_flagged(c, BIO_RW_BARRIER))
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002170 process_barrier(md, c);
2171 else
2172 __split_and_process_bio(md, c);
2173 }
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002174
2175 down_write(&md->io_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01002176 }
Milan Broz73d410c2008-02-08 02:10:25 +00002177
Mikulas Patockaef208582009-04-02 19:55:38 +01002178 up_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179}
2180
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002181static void dm_queue_flush(struct mapped_device *md)
Milan Broz304f3f62008-02-08 02:11:17 +00002182{
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002183 clear_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
2184 smp_mb__after_clear_bit();
Mikulas Patocka53d59142009-04-02 19:55:37 +01002185 queue_work(md->wq, &md->work);
Milan Broz304f3f62008-02-08 02:11:17 +00002186}
2187
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188/*
2189 * Swap in a new table (destroying old one).
2190 */
2191int dm_swap_table(struct mapped_device *md, struct dm_table *table)
2192{
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002193 struct queue_limits limits;
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07002194 int r = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195
Daniel Walkere61290a2008-02-08 02:10:08 +00002196 mutex_lock(&md->suspend_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197
2198 /* device must be suspended */
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002199 if (!dm_suspended(md))
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07002200 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002202 r = dm_calculate_queue_limits(table, &limits);
2203 if (r)
2204 goto out;
2205
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002206 /* cannot change the device type, once a table is bound */
2207 if (md->map &&
2208 (dm_table_get_type(md->map) != dm_table_get_type(table))) {
2209 DMWARN("can't change the device type after a table is bound");
2210 goto out;
2211 }
2212
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 __unbind(md);
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002214 r = __bind(md, table, &limits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07002216out:
Daniel Walkere61290a2008-02-08 02:10:08 +00002217 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07002218 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219}
2220
2221/*
2222 * Functions to lock and unlock any filesystem running on the
2223 * device.
2224 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002225static int lock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226{
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08002227 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228
2229 WARN_ON(md->frozen_sb);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002230
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002231 md->frozen_sb = freeze_bdev(md->bdev);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002232 if (IS_ERR(md->frozen_sb)) {
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002233 r = PTR_ERR(md->frozen_sb);
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08002234 md->frozen_sb = NULL;
2235 return r;
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002236 }
2237
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002238 set_bit(DMF_FROZEN, &md->flags);
2239
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 return 0;
2241}
2242
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002243static void unlock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244{
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002245 if (!test_bit(DMF_FROZEN, &md->flags))
2246 return;
2247
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002248 thaw_bdev(md->bdev, md->frozen_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 md->frozen_sb = NULL;
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002250 clear_bit(DMF_FROZEN, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251}
2252
2253/*
2254 * We need to be able to change a mapping table under a mounted
2255 * filesystem. For example we might want to move some data in
2256 * the background. Before the table can be swapped with
2257 * dm_bind_table, dm_suspend must be called to flush any in
2258 * flight bios and ensure that any further io gets deferred.
2259 */
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002260/*
2261 * Suspend mechanism in request-based dm.
2262 *
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002263 * 1. Flush all I/Os by lock_fs() if needed.
2264 * 2. Stop dispatching any I/O by stopping the request_queue.
2265 * 3. Wait for all in-flight I/Os to be completed or requeued.
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002266 *
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002267 * To abort suspend, start the request_queue.
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002268 */
Kiyoshi Uedaa3d77d32006-12-08 02:41:04 -08002269int dm_suspend(struct mapped_device *md, unsigned suspend_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270{
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002271 struct dm_table *map = NULL;
Milan Broz46125c12008-02-08 02:10:30 +00002272 int r = 0;
Kiyoshi Uedaa3d77d32006-12-08 02:41:04 -08002273 int do_lockfs = suspend_flags & DM_SUSPEND_LOCKFS_FLAG ? 1 : 0;
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002274 int noflush = suspend_flags & DM_SUSPEND_NOFLUSH_FLAG ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275
Daniel Walkere61290a2008-02-08 02:10:08 +00002276 mutex_lock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002277
Milan Broz73d410c2008-02-08 02:10:25 +00002278 if (dm_suspended(md)) {
2279 r = -EINVAL;
Alasdair G Kergond2874832006-11-08 17:44:43 -08002280 goto out_unlock;
Milan Broz73d410c2008-02-08 02:10:25 +00002281 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282
2283 map = dm_get_table(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002285 /*
2286 * DMF_NOFLUSH_SUSPENDING must be set before presuspend.
2287 * This flag is cleared before dm_suspend returns.
2288 */
2289 if (noflush)
2290 set_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
2291
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002292 /* This does not get reverted if there's an error later. */
2293 dm_table_presuspend_targets(map);
2294
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002295 /*
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002296 * Flush I/O to the device.
2297 * Any I/O submitted after lock_fs() may not be flushed.
2298 * noflush takes precedence over do_lockfs.
2299 * (lock_fs() flushes I/Os and waits for them to complete.)
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002300 */
2301 if (!noflush && do_lockfs) {
2302 r = lock_fs(md);
2303 if (r)
Kiyoshi Uedaf431d962008-10-21 17:45:07 +01002304 goto out;
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002305 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306
2307 /*
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002308 * Here we must make sure that no processes are submitting requests
2309 * to target drivers i.e. no one may be executing
2310 * __split_and_process_bio. This is called from dm_request and
2311 * dm_wq_work.
2312 *
2313 * To get all processes out of __split_and_process_bio in dm_request,
2314 * we take the write lock. To prevent any process from reentering
2315 * __split_and_process_bio from dm_request, we set
2316 * DMF_QUEUE_IO_TO_THREAD.
2317 *
2318 * To quiesce the thread (dm_wq_work), we set DMF_BLOCK_IO_FOR_SUSPEND
2319 * and call flush_workqueue(md->wq). flush_workqueue will wait until
2320 * dm_wq_work exits and DMF_BLOCK_IO_FOR_SUSPEND will prevent any
2321 * further calls to __split_and_process_bio from dm_wq_work.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002323 down_write(&md->io_lock);
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01002324 set_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
2325 set_bit(DMF_QUEUE_IO_TO_THREAD, &md->flags);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002326 up_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002328 flush_workqueue(md->wq);
2329
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002330 if (dm_request_based(md))
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002331 stop_queue(md->queue);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002332
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 /*
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002334 * At this point no more requests are entering target request routines.
2335 * We call dm_wait_for_completion to wait for all existing requests
2336 * to finish.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 */
Mikulas Patocka401600d2009-04-02 19:55:38 +01002338 r = dm_wait_for_completion(md, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002340 down_write(&md->io_lock);
Milan Broz6d6f10d2008-02-08 02:10:22 +00002341 if (noflush)
Mikulas Patocka022c2612009-04-02 19:55:39 +01002342 clear_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
Milan Broz94d63512008-02-08 02:10:27 +00002343 up_write(&md->io_lock);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002344
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 /* were we interrupted ? */
Milan Broz46125c12008-02-08 02:10:30 +00002346 if (r < 0) {
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002347 dm_queue_flush(md);
Milan Broz73d410c2008-02-08 02:10:25 +00002348
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002349 if (dm_request_based(md))
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002350 start_queue(md->queue);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002351
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002352 unlock_fs(md);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002353 goto out; /* pushback list is already flushed, so skip flush */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002354 }
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002355
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002356 /*
2357 * If dm_wait_for_completion returned 0, the device is completely
2358 * quiescent now. There is no request-processing activity. All new
2359 * requests are being added to md->deferred list.
2360 */
2361
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002362 dm_table_postsuspend_targets(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363
2364 set_bit(DMF_SUSPENDED, &md->flags);
2365
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002366out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 dm_table_put(map);
Alasdair G Kergond2874832006-11-08 17:44:43 -08002368
2369out_unlock:
Daniel Walkere61290a2008-02-08 02:10:08 +00002370 mutex_unlock(&md->suspend_lock);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002371 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372}
2373
2374int dm_resume(struct mapped_device *md)
2375{
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002376 int r = -EINVAL;
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002377 struct dm_table *map = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378
Daniel Walkere61290a2008-02-08 02:10:08 +00002379 mutex_lock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002380 if (!dm_suspended(md))
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002381 goto out;
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002382
2383 map = dm_get_table(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002384 if (!map || !dm_table_get_size(map))
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002385 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386
Milan Broz8757b772006-10-03 01:15:36 -07002387 r = dm_table_resume_targets(map);
2388 if (r)
2389 goto out;
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002390
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002391 dm_queue_flush(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002392
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002393 /*
2394 * Flushing deferred I/Os must be done after targets are resumed
2395 * so that mapping of targets can work correctly.
2396 * Request-based dm is queueing the deferred I/Os in its request_queue.
2397 */
2398 if (dm_request_based(md))
2399 start_queue(md->queue);
2400
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002401 unlock_fs(md);
2402
2403 clear_bit(DMF_SUSPENDED, &md->flags);
2404
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 dm_table_unplug_all(map);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002406 r = 0;
2407out:
2408 dm_table_put(map);
Daniel Walkere61290a2008-02-08 02:10:08 +00002409 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002410
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002411 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412}
2413
2414/*-----------------------------------------------------------------
2415 * Event notification.
2416 *---------------------------------------------------------------*/
Milan Broz60935eb2009-06-22 10:12:30 +01002417void dm_kobject_uevent(struct mapped_device *md, enum kobject_action action,
2418 unsigned cookie)
Alasdair G Kergon69267a32007-12-13 14:15:57 +00002419{
Milan Broz60935eb2009-06-22 10:12:30 +01002420 char udev_cookie[DM_COOKIE_LENGTH];
2421 char *envp[] = { udev_cookie, NULL };
2422
2423 if (!cookie)
2424 kobject_uevent(&disk_to_dev(md->disk)->kobj, action);
2425 else {
2426 snprintf(udev_cookie, DM_COOKIE_LENGTH, "%s=%u",
2427 DM_COOKIE_ENV_VAR_NAME, cookie);
2428 kobject_uevent_env(&disk_to_dev(md->disk)->kobj, action, envp);
2429 }
Alasdair G Kergon69267a32007-12-13 14:15:57 +00002430}
2431
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002432uint32_t dm_next_uevent_seq(struct mapped_device *md)
2433{
2434 return atomic_add_return(1, &md->uevent_seq);
2435}
2436
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437uint32_t dm_get_event_nr(struct mapped_device *md)
2438{
2439 return atomic_read(&md->event_nr);
2440}
2441
2442int dm_wait_event(struct mapped_device *md, int event_nr)
2443{
2444 return wait_event_interruptible(md->eventq,
2445 (event_nr != atomic_read(&md->event_nr)));
2446}
2447
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002448void dm_uevent_add(struct mapped_device *md, struct list_head *elist)
2449{
2450 unsigned long flags;
2451
2452 spin_lock_irqsave(&md->uevent_lock, flags);
2453 list_add(elist, &md->uevent_list);
2454 spin_unlock_irqrestore(&md->uevent_lock, flags);
2455}
2456
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457/*
2458 * The gendisk is only valid as long as you have a reference
2459 * count on 'md'.
2460 */
2461struct gendisk *dm_disk(struct mapped_device *md)
2462{
2463 return md->disk;
2464}
2465
Milan Broz784aae72009-01-06 03:05:12 +00002466struct kobject *dm_kobject(struct mapped_device *md)
2467{
2468 return &md->kobj;
2469}
2470
2471/*
2472 * struct mapped_device should not be exported outside of dm.c
2473 * so use this check to verify that kobj is part of md structure
2474 */
2475struct mapped_device *dm_get_from_kobject(struct kobject *kobj)
2476{
2477 struct mapped_device *md;
2478
2479 md = container_of(kobj, struct mapped_device, kobj);
2480 if (&md->kobj != kobj)
2481 return NULL;
2482
Milan Broz4d89b7b2009-06-22 10:12:11 +01002483 if (test_bit(DMF_FREEING, &md->flags) ||
2484 test_bit(DMF_DELETING, &md->flags))
2485 return NULL;
2486
Milan Broz784aae72009-01-06 03:05:12 +00002487 dm_get(md);
2488 return md;
2489}
2490
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491int dm_suspended(struct mapped_device *md)
2492{
2493 return test_bit(DMF_SUSPENDED, &md->flags);
2494}
2495
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002496int dm_noflush_suspending(struct dm_target *ti)
2497{
2498 struct mapped_device *md = dm_table_get_md(ti->table);
2499 int r = __noflush_suspending(md);
2500
2501 dm_put(md);
2502
2503 return r;
2504}
2505EXPORT_SYMBOL_GPL(dm_noflush_suspending);
2506
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002507struct dm_md_mempools *dm_alloc_md_mempools(unsigned type)
2508{
2509 struct dm_md_mempools *pools = kmalloc(sizeof(*pools), GFP_KERNEL);
2510
2511 if (!pools)
2512 return NULL;
2513
2514 pools->io_pool = (type == DM_TYPE_BIO_BASED) ?
2515 mempool_create_slab_pool(MIN_IOS, _io_cache) :
2516 mempool_create_slab_pool(MIN_IOS, _rq_bio_info_cache);
2517 if (!pools->io_pool)
2518 goto free_pools_and_out;
2519
2520 pools->tio_pool = (type == DM_TYPE_BIO_BASED) ?
2521 mempool_create_slab_pool(MIN_IOS, _tio_cache) :
2522 mempool_create_slab_pool(MIN_IOS, _rq_tio_cache);
2523 if (!pools->tio_pool)
2524 goto free_io_pool_and_out;
2525
2526 pools->bs = (type == DM_TYPE_BIO_BASED) ?
2527 bioset_create(16, 0) : bioset_create(MIN_IOS, 0);
2528 if (!pools->bs)
2529 goto free_tio_pool_and_out;
2530
2531 return pools;
2532
2533free_tio_pool_and_out:
2534 mempool_destroy(pools->tio_pool);
2535
2536free_io_pool_and_out:
2537 mempool_destroy(pools->io_pool);
2538
2539free_pools_and_out:
2540 kfree(pools);
2541
2542 return NULL;
2543}
2544
2545void dm_free_md_mempools(struct dm_md_mempools *pools)
2546{
2547 if (!pools)
2548 return;
2549
2550 if (pools->io_pool)
2551 mempool_destroy(pools->io_pool);
2552
2553 if (pools->tio_pool)
2554 mempool_destroy(pools->tio_pool);
2555
2556 if (pools->bs)
2557 bioset_free(pools->bs);
2558
2559 kfree(pools);
2560}
2561
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07002562static const struct block_device_operations dm_blk_dops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563 .open = dm_blk_open,
2564 .release = dm_blk_close,
Milan Brozaa129a22006-10-03 01:15:15 -07002565 .ioctl = dm_blk_ioctl,
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08002566 .getgeo = dm_blk_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 .owner = THIS_MODULE
2568};
2569
2570EXPORT_SYMBOL(dm_get_mapinfo);
2571
2572/*
2573 * module hooks
2574 */
2575module_init(dm_init);
2576module_exit(dm_exit);
2577
2578module_param(major, uint, 0);
2579MODULE_PARM_DESC(major, "The major number of the device mapper");
2580MODULE_DESCRIPTION(DM_NAME " driver");
2581MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
2582MODULE_LICENSE("GPL");