blob: 634b1daab2d46b482d20885c209c14a80f284d20 [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 */
730static void rq_completed(struct mapped_device *md, int run_queue)
731{
732 int wakeup_waiters = 0;
733 struct request_queue *q = md->queue;
734 unsigned long flags;
735
736 spin_lock_irqsave(q->queue_lock, flags);
737 if (!queue_in_flight(q))
738 wakeup_waiters = 1;
739 spin_unlock_irqrestore(q->queue_lock, flags);
740
741 /* nudge anyone waiting on suspend queue */
742 if (wakeup_waiters)
743 wake_up(&md->wait);
744
745 if (run_queue)
746 blk_run_queue(q);
747
748 /*
749 * dm_put() must be at the end of this function. See the comment above
750 */
751 dm_put(md);
752}
753
Kiyoshi Uedaa77e28c2009-09-04 20:40:16 +0100754static void free_rq_clone(struct request *clone)
755{
756 struct dm_rq_target_io *tio = clone->end_io_data;
757
758 blk_rq_unprep_clone(clone);
759 free_rq_tio(tio);
760}
761
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100762static void dm_unprep_request(struct request *rq)
763{
764 struct request *clone = rq->special;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100765
766 rq->special = NULL;
767 rq->cmd_flags &= ~REQ_DONTPREP;
768
Kiyoshi Uedaa77e28c2009-09-04 20:40:16 +0100769 free_rq_clone(clone);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100770}
771
772/*
773 * Requeue the original request of a clone.
774 */
775void dm_requeue_unmapped_request(struct request *clone)
776{
777 struct dm_rq_target_io *tio = clone->end_io_data;
778 struct mapped_device *md = tio->md;
779 struct request *rq = tio->orig;
780 struct request_queue *q = rq->q;
781 unsigned long flags;
782
783 dm_unprep_request(rq);
784
785 spin_lock_irqsave(q->queue_lock, flags);
786 if (elv_queue_empty(q))
787 blk_plug_device(q);
788 blk_requeue_request(q, rq);
789 spin_unlock_irqrestore(q->queue_lock, flags);
790
791 rq_completed(md, 0);
792}
793EXPORT_SYMBOL_GPL(dm_requeue_unmapped_request);
794
795static void __stop_queue(struct request_queue *q)
796{
797 blk_stop_queue(q);
798}
799
800static void stop_queue(struct request_queue *q)
801{
802 unsigned long flags;
803
804 spin_lock_irqsave(q->queue_lock, flags);
805 __stop_queue(q);
806 spin_unlock_irqrestore(q->queue_lock, flags);
807}
808
809static void __start_queue(struct request_queue *q)
810{
811 if (blk_queue_stopped(q))
812 blk_start_queue(q);
813}
814
815static void start_queue(struct request_queue *q)
816{
817 unsigned long flags;
818
819 spin_lock_irqsave(q->queue_lock, flags);
820 __start_queue(q);
821 spin_unlock_irqrestore(q->queue_lock, flags);
822}
823
824/*
825 * Complete the clone and the original request.
826 * Must be called without queue lock.
827 */
828static void dm_end_request(struct request *clone, int error)
829{
830 struct dm_rq_target_io *tio = clone->end_io_data;
831 struct mapped_device *md = tio->md;
832 struct request *rq = tio->orig;
833
834 if (blk_pc_request(rq)) {
835 rq->errors = clone->errors;
836 rq->resid_len = clone->resid_len;
837
838 if (rq->sense)
839 /*
840 * We are using the sense buffer of the original
841 * request.
842 * So setting the length of the sense data is enough.
843 */
844 rq->sense_len = clone->sense_len;
845 }
846
Kiyoshi Uedaa77e28c2009-09-04 20:40:16 +0100847 free_rq_clone(clone);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100848
849 blk_end_request_all(rq, error);
850
851 rq_completed(md, 1);
852}
853
854/*
855 * Request completion handler for request-based dm
856 */
857static void dm_softirq_done(struct request *rq)
858{
859 struct request *clone = rq->completion_data;
860 struct dm_rq_target_io *tio = clone->end_io_data;
861 dm_request_endio_fn rq_end_io = tio->ti->type->rq_end_io;
862 int error = tio->error;
863
864 if (!(rq->cmd_flags & REQ_FAILED) && rq_end_io)
865 error = rq_end_io(tio->ti, clone, error, &tio->info);
866
867 if (error <= 0)
868 /* The target wants to complete the I/O */
869 dm_end_request(clone, error);
870 else if (error == DM_ENDIO_INCOMPLETE)
871 /* The target will handle the I/O */
872 return;
873 else if (error == DM_ENDIO_REQUEUE)
874 /* The target wants to requeue the I/O */
875 dm_requeue_unmapped_request(clone);
876 else {
877 DMWARN("unimplemented target endio return value: %d", error);
878 BUG();
879 }
880}
881
882/*
883 * Complete the clone and the original request with the error status
884 * through softirq context.
885 */
886static void dm_complete_request(struct request *clone, int error)
887{
888 struct dm_rq_target_io *tio = clone->end_io_data;
889 struct request *rq = tio->orig;
890
891 tio->error = error;
892 rq->completion_data = clone;
893 blk_complete_request(rq);
894}
895
896/*
897 * Complete the not-mapped clone and the original request with the error status
898 * through softirq context.
899 * Target's rq_end_io() function isn't called.
900 * This may be used when the target's map_rq() function fails.
901 */
902void dm_kill_unmapped_request(struct request *clone, int error)
903{
904 struct dm_rq_target_io *tio = clone->end_io_data;
905 struct request *rq = tio->orig;
906
907 rq->cmd_flags |= REQ_FAILED;
908 dm_complete_request(clone, error);
909}
910EXPORT_SYMBOL_GPL(dm_kill_unmapped_request);
911
912/*
913 * Called with the queue lock held
914 */
915static void end_clone_request(struct request *clone, int error)
916{
917 /*
918 * For just cleaning up the information of the queue in which
919 * the clone was dispatched.
920 * The clone is *NOT* freed actually here because it is alloced from
921 * dm own mempool and REQ_ALLOCED isn't set in clone->cmd_flags.
922 */
923 __blk_put_request(clone->q, clone);
924
925 /*
926 * Actual request completion is done in a softirq context which doesn't
927 * hold the queue lock. Otherwise, deadlock could occur because:
928 * - another request may be submitted by the upper level driver
929 * of the stacking during the completion
930 * - the submission which requires queue lock may be done
931 * against this queue
932 */
933 dm_complete_request(clone, error);
934}
935
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936static sector_t max_io_len(struct mapped_device *md,
937 sector_t sector, struct dm_target *ti)
938{
939 sector_t offset = sector - ti->begin;
940 sector_t len = ti->len - offset;
941
942 /*
943 * Does the target need to split even further ?
944 */
945 if (ti->split_io) {
946 sector_t boundary;
947 boundary = ((offset + ti->split_io) & ~(ti->split_io - 1))
948 - offset;
949 if (len > boundary)
950 len = boundary;
951 }
952
953 return len;
954}
955
956static void __map_bio(struct dm_target *ti, struct bio *clone,
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100957 struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958{
959 int r;
Jens Axboe2056a782006-03-23 20:00:26 +0100960 sector_t sector;
Stefan Bader9faf4002006-10-03 01:15:41 -0700961 struct mapped_device *md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 clone->bi_end_io = clone_endio;
964 clone->bi_private = tio;
965
966 /*
967 * Map the clone. If r == 0 we don't need to do
968 * anything, the target has assumed ownership of
969 * this io.
970 */
971 atomic_inc(&tio->io->io_count);
Jens Axboe2056a782006-03-23 20:00:26 +0100972 sector = clone->bi_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 r = ti->type->map(ti, clone, &tio->info);
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800974 if (r == DM_MAPIO_REMAPPED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 /* the bio has been remapped so dispatch it */
Jens Axboe2056a782006-03-23 20:00:26 +0100976
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100977 trace_block_remap(bdev_get_queue(clone->bi_bdev), clone,
Alan D. Brunelle22a7c312009-05-04 16:35:08 -0400978 tio->io->bio->bi_bdev->bd_dev, sector);
Jens Axboe2056a782006-03-23 20:00:26 +0100979
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 generic_make_request(clone);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800981 } else if (r < 0 || r == DM_MAPIO_REQUEUE) {
982 /* error the io and bail out, or requeue it if needed */
Stefan Bader9faf4002006-10-03 01:15:41 -0700983 md = tio->io->md;
984 dec_pending(tio->io, r);
985 /*
986 * Store bio_set for cleanup.
987 */
988 clone->bi_private = md->bs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 bio_put(clone);
Stefan Bader9faf4002006-10-03 01:15:41 -0700990 free_tio(md, tio);
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800991 } else if (r) {
992 DMWARN("unimplemented target map return value: %d", r);
993 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 }
995}
996
997struct clone_info {
998 struct mapped_device *md;
999 struct dm_table *map;
1000 struct bio *bio;
1001 struct dm_io *io;
1002 sector_t sector;
1003 sector_t sector_count;
1004 unsigned short idx;
1005};
1006
Peter Osterlund36763472005-09-06 15:16:42 -07001007static void dm_bio_destructor(struct bio *bio)
1008{
Stefan Bader9faf4002006-10-03 01:15:41 -07001009 struct bio_set *bs = bio->bi_private;
1010
1011 bio_free(bio, bs);
Peter Osterlund36763472005-09-06 15:16:42 -07001012}
1013
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014/*
1015 * Creates a little bio that is just does part of a bvec.
1016 */
1017static struct bio *split_bvec(struct bio *bio, sector_t sector,
1018 unsigned short idx, unsigned int offset,
Stefan Bader9faf4002006-10-03 01:15:41 -07001019 unsigned int len, struct bio_set *bs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020{
1021 struct bio *clone;
1022 struct bio_vec *bv = bio->bi_io_vec + idx;
1023
Stefan Bader9faf4002006-10-03 01:15:41 -07001024 clone = bio_alloc_bioset(GFP_NOIO, 1, bs);
Peter Osterlund36763472005-09-06 15:16:42 -07001025 clone->bi_destructor = dm_bio_destructor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 *clone->bi_io_vec = *bv;
1027
1028 clone->bi_sector = sector;
1029 clone->bi_bdev = bio->bi_bdev;
Mikulas Patockaaf7e4662009-04-09 00:27:16 +01001030 clone->bi_rw = bio->bi_rw & ~(1 << BIO_RW_BARRIER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 clone->bi_vcnt = 1;
1032 clone->bi_size = to_bytes(len);
1033 clone->bi_io_vec->bv_offset = offset;
1034 clone->bi_io_vec->bv_len = clone->bi_size;
Martin K. Petersenf3e1d262008-10-21 17:45:04 +01001035 clone->bi_flags |= 1 << BIO_CLONED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
Martin K. Petersen9c470082009-04-09 00:27:12 +01001037 if (bio_integrity(bio)) {
Martin K. Petersen7878cba2009-06-26 15:37:49 +02001038 bio_integrity_clone(clone, bio, GFP_NOIO, bs);
Martin K. Petersen9c470082009-04-09 00:27:12 +01001039 bio_integrity_trim(clone,
1040 bio_sector_offset(bio, idx, offset), len);
1041 }
1042
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 return clone;
1044}
1045
1046/*
1047 * Creates a bio that consists of range of complete bvecs.
1048 */
1049static struct bio *clone_bio(struct bio *bio, sector_t sector,
1050 unsigned short idx, unsigned short bv_count,
Stefan Bader9faf4002006-10-03 01:15:41 -07001051 unsigned int len, struct bio_set *bs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052{
1053 struct bio *clone;
1054
Stefan Bader9faf4002006-10-03 01:15:41 -07001055 clone = bio_alloc_bioset(GFP_NOIO, bio->bi_max_vecs, bs);
1056 __bio_clone(clone, bio);
Mikulas Patockaaf7e4662009-04-09 00:27:16 +01001057 clone->bi_rw &= ~(1 << BIO_RW_BARRIER);
Stefan Bader9faf4002006-10-03 01:15:41 -07001058 clone->bi_destructor = dm_bio_destructor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 clone->bi_sector = sector;
1060 clone->bi_idx = idx;
1061 clone->bi_vcnt = idx + bv_count;
1062 clone->bi_size = to_bytes(len);
1063 clone->bi_flags &= ~(1 << BIO_SEG_VALID);
1064
Martin K. Petersen9c470082009-04-09 00:27:12 +01001065 if (bio_integrity(bio)) {
Martin K. Petersen7878cba2009-06-26 15:37:49 +02001066 bio_integrity_clone(clone, bio, GFP_NOIO, bs);
Martin K. Petersen9c470082009-04-09 00:27:12 +01001067
1068 if (idx != bio->bi_idx || clone->bi_size < bio->bi_size)
1069 bio_integrity_trim(clone,
1070 bio_sector_offset(bio, idx, 0), len);
1071 }
1072
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 return clone;
1074}
1075
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001076static struct dm_target_io *alloc_tio(struct clone_info *ci,
1077 struct dm_target *ti)
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001078{
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001079 struct dm_target_io *tio = mempool_alloc(ci->md->tio_pool, GFP_NOIO);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001080
1081 tio->io = ci->io;
1082 tio->ti = ti;
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001083 memset(&tio->info, 0, sizeof(tio->info));
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001084
1085 return tio;
1086}
1087
1088static void __flush_target(struct clone_info *ci, struct dm_target *ti,
1089 unsigned flush_nr)
1090{
1091 struct dm_target_io *tio = alloc_tio(ci, ti);
1092 struct bio *clone;
1093
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001094 tio->info.flush_request = flush_nr;
1095
1096 clone = bio_alloc_bioset(GFP_NOIO, 0, ci->md->bs);
1097 __bio_clone(clone, ci->bio);
1098 clone->bi_destructor = dm_bio_destructor;
1099
1100 __map_bio(ti, clone, tio);
1101}
1102
1103static int __clone_and_map_empty_barrier(struct clone_info *ci)
1104{
1105 unsigned target_nr = 0, flush_nr;
1106 struct dm_target *ti;
1107
1108 while ((ti = dm_table_get_target(ci->map, target_nr++)))
1109 for (flush_nr = 0; flush_nr < ti->num_flush_requests;
1110 flush_nr++)
1111 __flush_target(ci, ti, flush_nr);
1112
1113 ci->sector_count = 0;
1114
1115 return 0;
1116}
1117
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001118static int __clone_and_map(struct clone_info *ci)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119{
1120 struct bio *clone, *bio = ci->bio;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001121 struct dm_target *ti;
1122 sector_t len = 0, max;
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001123 struct dm_target_io *tio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001125 if (unlikely(bio_empty_barrier(bio)))
1126 return __clone_and_map_empty_barrier(ci);
1127
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001128 ti = dm_table_find_target(ci->map, ci->sector);
1129 if (!dm_target_is_valid(ti))
1130 return -EIO;
1131
1132 max = max_io_len(ci->md, ci->sector, ti);
1133
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 /*
1135 * Allocate a target io object.
1136 */
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001137 tio = alloc_tio(ci, ti);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
1139 if (ci->sector_count <= max) {
1140 /*
1141 * Optimise for the simple case where we can do all of
1142 * the remaining io with a single clone.
1143 */
1144 clone = clone_bio(bio, ci->sector, ci->idx,
Stefan Bader9faf4002006-10-03 01:15:41 -07001145 bio->bi_vcnt - ci->idx, ci->sector_count,
1146 ci->md->bs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 __map_bio(ti, clone, tio);
1148 ci->sector_count = 0;
1149
1150 } else if (to_sector(bio->bi_io_vec[ci->idx].bv_len) <= max) {
1151 /*
1152 * There are some bvecs that don't span targets.
1153 * Do as many of these as possible.
1154 */
1155 int i;
1156 sector_t remaining = max;
1157 sector_t bv_len;
1158
1159 for (i = ci->idx; remaining && (i < bio->bi_vcnt); i++) {
1160 bv_len = to_sector(bio->bi_io_vec[i].bv_len);
1161
1162 if (bv_len > remaining)
1163 break;
1164
1165 remaining -= bv_len;
1166 len += bv_len;
1167 }
1168
Stefan Bader9faf4002006-10-03 01:15:41 -07001169 clone = clone_bio(bio, ci->sector, ci->idx, i - ci->idx, len,
1170 ci->md->bs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 __map_bio(ti, clone, tio);
1172
1173 ci->sector += len;
1174 ci->sector_count -= len;
1175 ci->idx = i;
1176
1177 } else {
1178 /*
Alasdair G Kergond2044a92006-03-22 00:07:42 -08001179 * Handle a bvec that must be split between two or more targets.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 */
1181 struct bio_vec *bv = bio->bi_io_vec + ci->idx;
Alasdair G Kergond2044a92006-03-22 00:07:42 -08001182 sector_t remaining = to_sector(bv->bv_len);
1183 unsigned int offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
Alasdair G Kergond2044a92006-03-22 00:07:42 -08001185 do {
1186 if (offset) {
1187 ti = dm_table_find_target(ci->map, ci->sector);
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001188 if (!dm_target_is_valid(ti))
1189 return -EIO;
1190
Alasdair G Kergond2044a92006-03-22 00:07:42 -08001191 max = max_io_len(ci->md, ci->sector, ti);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001193 tio = alloc_tio(ci, ti);
Alasdair G Kergond2044a92006-03-22 00:07:42 -08001194 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195
Alasdair G Kergond2044a92006-03-22 00:07:42 -08001196 len = min(remaining, max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197
Alasdair G Kergond2044a92006-03-22 00:07:42 -08001198 clone = split_bvec(bio, ci->sector, ci->idx,
Stefan Bader9faf4002006-10-03 01:15:41 -07001199 bv->bv_offset + offset, len,
1200 ci->md->bs);
Alasdair G Kergond2044a92006-03-22 00:07:42 -08001201
1202 __map_bio(ti, clone, tio);
1203
1204 ci->sector += len;
1205 ci->sector_count -= len;
1206 offset += to_bytes(len);
1207 } while (remaining -= len);
1208
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 ci->idx++;
1210 }
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001211
1212 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213}
1214
1215/*
Mikulas Patocka8a53c282009-04-02 19:55:37 +01001216 * Split the bio into several clones and submit it to targets.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 */
Mikulas Patockaf0b9a452009-04-02 19:55:38 +01001218static void __split_and_process_bio(struct mapped_device *md, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219{
1220 struct clone_info ci;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001221 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
1223 ci.map = dm_get_table(md);
Mikulas Patockaf0b9a452009-04-02 19:55:38 +01001224 if (unlikely(!ci.map)) {
Jens Axboe1f98a132009-09-11 14:32:04 +02001225 if (!bio_rw_flagged(bio, BIO_RW_BARRIER))
Mikulas Patockaaf7e4662009-04-09 00:27:16 +01001226 bio_io_error(bio);
1227 else
Mikulas Patocka5aa27812009-06-22 10:12:18 +01001228 if (!md->barrier_error)
1229 md->barrier_error = -EIO;
Mikulas Patockaf0b9a452009-04-02 19:55:38 +01001230 return;
1231 }
Mikulas Patocka692d0eb2009-04-09 00:27:13 +01001232
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 ci.md = md;
1234 ci.bio = bio;
1235 ci.io = alloc_io(md);
1236 ci.io->error = 0;
1237 atomic_set(&ci.io->io_count, 1);
1238 ci.io->bio = bio;
1239 ci.io->md = md;
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +01001240 spin_lock_init(&ci.io->endio_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 ci.sector = bio->bi_sector;
1242 ci.sector_count = bio_sectors(bio);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001243 if (unlikely(bio_empty_barrier(bio)))
1244 ci.sector_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 ci.idx = bio->bi_idx;
1246
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -08001247 start_io_acct(ci.io);
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001248 while (ci.sector_count && !error)
1249 error = __clone_and_map(&ci);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
1251 /* drop the extra reference count */
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001252 dec_pending(ci.io, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 dm_table_put(ci.map);
1254}
1255/*-----------------------------------------------------------------
1256 * CRUD END
1257 *---------------------------------------------------------------*/
1258
Milan Brozf6fccb12008-07-21 12:00:37 +01001259static int dm_merge_bvec(struct request_queue *q,
1260 struct bvec_merge_data *bvm,
1261 struct bio_vec *biovec)
1262{
1263 struct mapped_device *md = q->queuedata;
1264 struct dm_table *map = dm_get_table(md);
1265 struct dm_target *ti;
1266 sector_t max_sectors;
Mikulas Patocka50371082008-10-01 14:39:17 +01001267 int max_size = 0;
Milan Brozf6fccb12008-07-21 12:00:37 +01001268
1269 if (unlikely(!map))
Mikulas Patocka50371082008-10-01 14:39:17 +01001270 goto out;
Milan Brozf6fccb12008-07-21 12:00:37 +01001271
1272 ti = dm_table_find_target(map, bvm->bi_sector);
Mikulas Patockab01cd5a2008-10-01 14:39:24 +01001273 if (!dm_target_is_valid(ti))
1274 goto out_table;
Milan Brozf6fccb12008-07-21 12:00:37 +01001275
1276 /*
1277 * Find maximum amount of I/O that won't need splitting
1278 */
1279 max_sectors = min(max_io_len(md, bvm->bi_sector, ti),
1280 (sector_t) BIO_MAX_SECTORS);
1281 max_size = (max_sectors << SECTOR_SHIFT) - bvm->bi_size;
1282 if (max_size < 0)
1283 max_size = 0;
1284
1285 /*
1286 * merge_bvec_fn() returns number of bytes
1287 * it can accept at this offset
1288 * max is precomputed maximal io size
1289 */
1290 if (max_size && ti->type->merge)
1291 max_size = ti->type->merge(ti, bvm, biovec, max_size);
Mikulas Patocka8cbeb672009-06-22 10:12:14 +01001292 /*
1293 * If the target doesn't support merge method and some of the devices
1294 * provided their merge_bvec method (we know this by looking at
1295 * queue_max_hw_sectors), then we can't allow bios with multiple vector
1296 * entries. So always set max_size to 0, and the code below allows
1297 * just one page.
1298 */
1299 else if (queue_max_hw_sectors(q) <= PAGE_SIZE >> 9)
1300
1301 max_size = 0;
Milan Brozf6fccb12008-07-21 12:00:37 +01001302
Mikulas Patockab01cd5a2008-10-01 14:39:24 +01001303out_table:
Mikulas Patocka50371082008-10-01 14:39:17 +01001304 dm_table_put(map);
1305
1306out:
Milan Brozf6fccb12008-07-21 12:00:37 +01001307 /*
1308 * Always allow an entire first page
1309 */
1310 if (max_size <= biovec->bv_len && !(bvm->bi_size >> SECTOR_SHIFT))
1311 max_size = biovec->bv_len;
1312
Milan Brozf6fccb12008-07-21 12:00:37 +01001313 return max_size;
1314}
1315
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316/*
1317 * The request function that just remaps the bio built up by
1318 * dm_merge_bvec.
1319 */
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001320static int _dm_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321{
Kevin Corry12f03a42006-02-01 03:04:52 -08001322 int rw = bio_data_dir(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 struct mapped_device *md = q->queuedata;
Tejun Heoc9959052008-08-25 19:47:21 +09001324 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001326 down_read(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
Tejun Heo074a7ac2008-08-25 19:56:14 +09001328 cpu = part_stat_lock();
1329 part_stat_inc(cpu, &dm_disk(md)->part0, ios[rw]);
1330 part_stat_add(cpu, &dm_disk(md)->part0, sectors[rw], bio_sectors(bio));
1331 part_stat_unlock();
Kevin Corry12f03a42006-02-01 03:04:52 -08001332
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 /*
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01001334 * If we're suspended or the thread is processing barriers
1335 * we have to queue this io for later.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 */
Mikulas Patockaaf7e4662009-04-09 00:27:16 +01001337 if (unlikely(test_bit(DMF_QUEUE_IO_TO_THREAD, &md->flags)) ||
Jens Axboe1f98a132009-09-11 14:32:04 +02001338 unlikely(bio_rw_flagged(bio, BIO_RW_BARRIER))) {
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001339 up_read(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
Alasdair G Kergon54d9a1b2009-04-09 00:27:14 +01001341 if (unlikely(test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) &&
1342 bio_rw(bio) == READA) {
1343 bio_io_error(bio);
1344 return 0;
1345 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
Mikulas Patocka92c63902009-04-09 00:27:15 +01001347 queue_io(md, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
Mikulas Patocka92c63902009-04-09 00:27:15 +01001349 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 }
1351
Mikulas Patockaf0b9a452009-04-02 19:55:38 +01001352 __split_and_process_bio(md, bio);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001353 up_read(&md->io_lock);
Mikulas Patockaf0b9a452009-04-02 19:55:38 +01001354 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355}
1356
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001357static int dm_make_request(struct request_queue *q, struct bio *bio)
1358{
1359 struct mapped_device *md = q->queuedata;
1360
Jens Axboe1f98a132009-09-11 14:32:04 +02001361 if (unlikely(bio_rw_flagged(bio, BIO_RW_BARRIER))) {
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001362 bio_endio(bio, -EOPNOTSUPP);
1363 return 0;
1364 }
1365
1366 return md->saved_make_request_fn(q, bio); /* call __make_request() */
1367}
1368
1369static int dm_request_based(struct mapped_device *md)
1370{
1371 return blk_queue_stackable(md->queue);
1372}
1373
1374static int dm_request(struct request_queue *q, struct bio *bio)
1375{
1376 struct mapped_device *md = q->queuedata;
1377
1378 if (dm_request_based(md))
1379 return dm_make_request(q, bio);
1380
1381 return _dm_request(q, bio);
1382}
1383
1384void dm_dispatch_request(struct request *rq)
1385{
1386 int r;
1387
1388 if (blk_queue_io_stat(rq->q))
1389 rq->cmd_flags |= REQ_IO_STAT;
1390
1391 rq->start_time = jiffies;
1392 r = blk_insert_cloned_request(rq->q, rq);
1393 if (r)
1394 dm_complete_request(rq, r);
1395}
1396EXPORT_SYMBOL_GPL(dm_dispatch_request);
1397
1398static void dm_rq_bio_destructor(struct bio *bio)
1399{
1400 struct dm_rq_clone_bio_info *info = bio->bi_private;
1401 struct mapped_device *md = info->tio->md;
1402
1403 free_bio_info(info);
1404 bio_free(bio, md->bs);
1405}
1406
1407static int dm_rq_bio_constructor(struct bio *bio, struct bio *bio_orig,
1408 void *data)
1409{
1410 struct dm_rq_target_io *tio = data;
1411 struct mapped_device *md = tio->md;
1412 struct dm_rq_clone_bio_info *info = alloc_bio_info(md);
1413
1414 if (!info)
1415 return -ENOMEM;
1416
1417 info->orig = bio_orig;
1418 info->tio = tio;
1419 bio->bi_end_io = end_clone_bio;
1420 bio->bi_private = info;
1421 bio->bi_destructor = dm_rq_bio_destructor;
1422
1423 return 0;
1424}
1425
1426static int setup_clone(struct request *clone, struct request *rq,
1427 struct dm_rq_target_io *tio)
1428{
1429 int r = blk_rq_prep_clone(clone, rq, tio->md->bs, GFP_ATOMIC,
1430 dm_rq_bio_constructor, tio);
1431
1432 if (r)
1433 return r;
1434
1435 clone->cmd = rq->cmd;
1436 clone->cmd_len = rq->cmd_len;
1437 clone->sense = rq->sense;
1438 clone->buffer = rq->buffer;
1439 clone->end_io = end_clone_request;
1440 clone->end_io_data = tio;
1441
1442 return 0;
1443}
1444
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001445static struct request *clone_rq(struct request *rq, struct mapped_device *md,
1446 gfp_t gfp_mask)
1447{
1448 struct request *clone;
1449 struct dm_rq_target_io *tio;
1450
1451 tio = alloc_rq_tio(md, gfp_mask);
1452 if (!tio)
1453 return NULL;
1454
1455 tio->md = md;
1456 tio->ti = NULL;
1457 tio->orig = rq;
1458 tio->error = 0;
1459 memset(&tio->info, 0, sizeof(tio->info));
1460
1461 clone = &tio->clone;
1462 if (setup_clone(clone, rq, tio)) {
1463 /* -ENOMEM */
1464 free_rq_tio(tio);
1465 return NULL;
1466 }
1467
1468 return clone;
1469}
1470
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001471/*
1472 * Called with the queue lock held.
1473 */
1474static int dm_prep_fn(struct request_queue *q, struct request *rq)
1475{
1476 struct mapped_device *md = q->queuedata;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001477 struct request *clone;
1478
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001479 if (unlikely(rq->special)) {
1480 DMWARN("Already has something in rq->special.");
1481 return BLKPREP_KILL;
1482 }
1483
Kiyoshi Ueda6facdaf2009-12-10 23:52:15 +00001484 clone = clone_rq(rq, md, GFP_ATOMIC);
1485 if (!clone)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001486 return BLKPREP_DEFER;
1487
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001488 rq->special = clone;
1489 rq->cmd_flags |= REQ_DONTPREP;
1490
1491 return BLKPREP_OK;
1492}
1493
Kiyoshi Ueda598de402009-12-10 23:52:14 +00001494static void map_request(struct dm_target *ti, struct request *clone,
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001495 struct mapped_device *md)
1496{
1497 int r;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001498 struct dm_rq_target_io *tio = clone->end_io_data;
1499
1500 /*
1501 * Hold the md reference here for the in-flight I/O.
1502 * We can't rely on the reference count by device opener,
1503 * because the device may be closed during the request completion
1504 * when all bios are completed.
1505 * See the comment in rq_completed() too.
1506 */
1507 dm_get(md);
1508
1509 tio->ti = ti;
1510 r = ti->type->map_rq(ti, clone, &tio->info);
1511 switch (r) {
1512 case DM_MAPIO_SUBMITTED:
1513 /* The target has taken the I/O to submit by itself later */
1514 break;
1515 case DM_MAPIO_REMAPPED:
1516 /* The target has remapped the I/O so dispatch it */
1517 dm_dispatch_request(clone);
1518 break;
1519 case DM_MAPIO_REQUEUE:
1520 /* The target wants to requeue the I/O */
1521 dm_requeue_unmapped_request(clone);
1522 break;
1523 default:
1524 if (r > 0) {
1525 DMWARN("unimplemented target map return value: %d", r);
1526 BUG();
1527 }
1528
1529 /* The target wants to complete the I/O */
1530 dm_kill_unmapped_request(clone, r);
1531 break;
1532 }
1533}
1534
1535/*
1536 * q->request_fn for request-based dm.
1537 * Called with the queue lock held.
1538 */
1539static void dm_request_fn(struct request_queue *q)
1540{
1541 struct mapped_device *md = q->queuedata;
1542 struct dm_table *map = dm_get_table(md);
1543 struct dm_target *ti;
1544 struct request *rq;
1545
1546 /*
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00001547 * For suspend, check blk_queue_stopped() and don't increment
1548 * the number of in-flight I/Os after the queue is stopped
1549 * in dm_suspend().
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001550 */
1551 while (!blk_queue_plugged(q) && !blk_queue_stopped(q)) {
1552 rq = blk_peek_request(q);
1553 if (!rq)
1554 goto plug_and_out;
1555
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001556 ti = dm_table_find_target(map, blk_rq_pos(rq));
1557 if (ti->type->busy && ti->type->busy(ti))
1558 goto plug_and_out;
1559
1560 blk_start_request(rq);
1561 spin_unlock(q->queue_lock);
Kiyoshi Ueda598de402009-12-10 23:52:14 +00001562 map_request(ti, rq->special, md);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001563 spin_lock_irq(q->queue_lock);
1564 }
1565
1566 goto out;
1567
1568plug_and_out:
1569 if (!elv_queue_empty(q))
1570 /* Some requests still remain, retry later */
1571 blk_plug_device(q);
1572
1573out:
1574 dm_table_put(map);
1575
1576 return;
1577}
1578
1579int dm_underlying_device_busy(struct request_queue *q)
1580{
1581 return blk_lld_busy(q);
1582}
1583EXPORT_SYMBOL_GPL(dm_underlying_device_busy);
1584
1585static int dm_lld_busy(struct request_queue *q)
1586{
1587 int r;
1588 struct mapped_device *md = q->queuedata;
1589 struct dm_table *map = dm_get_table(md);
1590
1591 if (!map || test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags))
1592 r = 1;
1593 else
1594 r = dm_table_any_busy_target(map);
1595
1596 dm_table_put(map);
1597
1598 return r;
1599}
1600
Jens Axboe165125e2007-07-24 09:28:11 +02001601static void dm_unplug_all(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602{
1603 struct mapped_device *md = q->queuedata;
1604 struct dm_table *map = dm_get_table(md);
1605
1606 if (map) {
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001607 if (dm_request_based(md))
1608 generic_unplug_device(q);
1609
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 dm_table_unplug_all(map);
1611 dm_table_put(map);
1612 }
1613}
1614
1615static int dm_any_congested(void *congested_data, int bdi_bits)
1616{
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00001617 int r = bdi_bits;
1618 struct mapped_device *md = congested_data;
1619 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01001621 if (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00001622 map = dm_get_table(md);
1623 if (map) {
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001624 /*
1625 * Request-based dm cares about only own queue for
1626 * the query about congestion status of request_queue
1627 */
1628 if (dm_request_based(md))
1629 r = md->queue->backing_dev_info.state &
1630 bdi_bits;
1631 else
1632 r = dm_table_any_congested(map, bdi_bits);
1633
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00001634 dm_table_put(map);
1635 }
1636 }
1637
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 return r;
1639}
1640
1641/*-----------------------------------------------------------------
1642 * An IDR is used to keep track of allocated minor numbers.
1643 *---------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644static DEFINE_IDR(_minor_idr);
1645
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001646static void free_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647{
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001648 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 idr_remove(&_minor_idr, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001650 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651}
1652
1653/*
1654 * See if the device with a specific minor # is free.
1655 */
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001656static int specific_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657{
1658 int r, m;
1659
1660 if (minor >= (1 << MINORBITS))
1661 return -EINVAL;
1662
Jeff Mahoney62f75c22006-06-26 00:27:21 -07001663 r = idr_pre_get(&_minor_idr, GFP_KERNEL);
1664 if (!r)
1665 return -ENOMEM;
1666
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001667 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668
1669 if (idr_find(&_minor_idr, minor)) {
1670 r = -EBUSY;
1671 goto out;
1672 }
1673
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001674 r = idr_get_new_above(&_minor_idr, MINOR_ALLOCED, minor, &m);
Jeff Mahoney62f75c22006-06-26 00:27:21 -07001675 if (r)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677
1678 if (m != minor) {
1679 idr_remove(&_minor_idr, m);
1680 r = -EBUSY;
1681 goto out;
1682 }
1683
1684out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001685 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 return r;
1687}
1688
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001689static int next_free_minor(int *minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690{
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001691 int r, m;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 r = idr_pre_get(&_minor_idr, GFP_KERNEL);
Jeff Mahoney62f75c22006-06-26 00:27:21 -07001694 if (!r)
1695 return -ENOMEM;
1696
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001697 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001699 r = idr_get_new(&_minor_idr, MINOR_ALLOCED, &m);
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001700 if (r)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702
1703 if (m >= (1 << MINORBITS)) {
1704 idr_remove(&_minor_idr, m);
1705 r = -ENOSPC;
1706 goto out;
1707 }
1708
1709 *minor = m;
1710
1711out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001712 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 return r;
1714}
1715
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07001716static const struct block_device_operations dm_blk_dops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717
Mikulas Patocka53d59142009-04-02 19:55:37 +01001718static void dm_wq_work(struct work_struct *work);
1719
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720/*
1721 * Allocate and initialise a blank device with a given minor.
1722 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001723static struct mapped_device *alloc_dev(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724{
1725 int r;
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001726 struct mapped_device *md = kzalloc(sizeof(*md), GFP_KERNEL);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001727 void *old_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728
1729 if (!md) {
1730 DMWARN("unable to allocate device, out of memory.");
1731 return NULL;
1732 }
1733
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001734 if (!try_module_get(THIS_MODULE))
Milan Broz6ed7ade2008-02-08 02:10:19 +00001735 goto bad_module_get;
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001736
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 /* get a minor number for the dev */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001738 if (minor == DM_ANY_MINOR)
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001739 r = next_free_minor(&minor);
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001740 else
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001741 r = specific_minor(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 if (r < 0)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001743 goto bad_minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001745 init_rwsem(&md->io_lock);
Daniel Walkere61290a2008-02-08 02:10:08 +00001746 mutex_init(&md->suspend_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01001747 spin_lock_init(&md->deferred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 rwlock_init(&md->map_lock);
1749 atomic_set(&md->holders, 1);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -07001750 atomic_set(&md->open_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 atomic_set(&md->event_nr, 0);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001752 atomic_set(&md->uevent_seq, 0);
1753 INIT_LIST_HEAD(&md->uevent_list);
1754 spin_lock_init(&md->uevent_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001756 md->queue = blk_init_queue(dm_request_fn, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 if (!md->queue)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001758 goto bad_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001760 /*
1761 * Request-based dm devices cannot be stacked on top of bio-based dm
1762 * devices. The type of this dm device has not been decided yet,
1763 * although we initialized the queue using blk_init_queue().
1764 * The type is decided at the first table loading time.
1765 * To prevent problematic device stacking, clear the queue flag
1766 * for request stacking support until then.
1767 *
1768 * This queue is new, so no concurrency on the queue_flags.
1769 */
1770 queue_flag_clear_unlocked(QUEUE_FLAG_STACKABLE, md->queue);
1771 md->saved_make_request_fn = md->queue->make_request_fn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 md->queue->queuedata = md;
1773 md->queue->backing_dev_info.congested_fn = dm_any_congested;
1774 md->queue->backing_dev_info.congested_data = md;
1775 blk_queue_make_request(md->queue, dm_request);
Jens Axboedaef2652006-01-10 10:48:02 +01001776 blk_queue_bounce_limit(md->queue, BLK_BOUNCE_ANY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 md->queue->unplug_fn = dm_unplug_all;
Milan Brozf6fccb12008-07-21 12:00:37 +01001778 blk_queue_merge_bvec(md->queue, dm_merge_bvec);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001779 blk_queue_softirq_done(md->queue, dm_softirq_done);
1780 blk_queue_prep_rq(md->queue, dm_prep_fn);
1781 blk_queue_lld_busy(md->queue, dm_lld_busy);
Stefan Bader9faf4002006-10-03 01:15:41 -07001782
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 md->disk = alloc_disk(1);
1784 if (!md->disk)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001785 goto bad_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001787 atomic_set(&md->pending[0], 0);
1788 atomic_set(&md->pending[1], 0);
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07001789 init_waitqueue_head(&md->wait);
Mikulas Patocka53d59142009-04-02 19:55:37 +01001790 INIT_WORK(&md->work, dm_wq_work);
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07001791 init_waitqueue_head(&md->eventq);
1792
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 md->disk->major = _major;
1794 md->disk->first_minor = minor;
1795 md->disk->fops = &dm_blk_dops;
1796 md->disk->queue = md->queue;
1797 md->disk->private_data = md;
1798 sprintf(md->disk->disk_name, "dm-%d", minor);
1799 add_disk(md->disk);
Mike Anderson7e51f252006-03-27 01:17:52 -08001800 format_dev_t(md->name, MKDEV(_major, minor));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801
Milan Broz304f3f62008-02-08 02:11:17 +00001802 md->wq = create_singlethread_workqueue("kdmflush");
1803 if (!md->wq)
1804 goto bad_thread;
1805
Mikulas Patocka32a926d2009-06-22 10:12:17 +01001806 md->bdev = bdget_disk(md->disk, 0);
1807 if (!md->bdev)
1808 goto bad_bdev;
1809
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001810 /* Populate the mapping, nobody knows we exist yet */
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001811 spin_lock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001812 old_md = idr_replace(&_minor_idr, md, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001813 spin_unlock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001814
1815 BUG_ON(old_md != MINOR_ALLOCED);
1816
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 return md;
1818
Mikulas Patocka32a926d2009-06-22 10:12:17 +01001819bad_bdev:
1820 destroy_workqueue(md->wq);
Milan Broz304f3f62008-02-08 02:11:17 +00001821bad_thread:
Zdenek Kabelac03022c52009-10-16 23:18:15 +01001822 del_gendisk(md->disk);
Milan Broz304f3f62008-02-08 02:11:17 +00001823 put_disk(md->disk);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001824bad_disk:
Al Viro1312f402006-03-12 11:02:03 -05001825 blk_cleanup_queue(md->queue);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001826bad_queue:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 free_minor(minor);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001828bad_minor:
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001829 module_put(THIS_MODULE);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001830bad_module_get:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 kfree(md);
1832 return NULL;
1833}
1834
Jun'ichi Nomuraae9da832007-10-19 22:38:43 +01001835static void unlock_fs(struct mapped_device *md);
1836
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837static void free_dev(struct mapped_device *md)
1838{
Tejun Heof331c022008-09-03 09:01:48 +02001839 int minor = MINOR(disk_devt(md->disk));
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08001840
Mikulas Patocka32a926d2009-06-22 10:12:17 +01001841 unlock_fs(md);
1842 bdput(md->bdev);
Milan Broz304f3f62008-02-08 02:11:17 +00001843 destroy_workqueue(md->wq);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001844 if (md->tio_pool)
1845 mempool_destroy(md->tio_pool);
1846 if (md->io_pool)
1847 mempool_destroy(md->io_pool);
1848 if (md->bs)
1849 bioset_free(md->bs);
Martin K. Petersen9c470082009-04-09 00:27:12 +01001850 blk_integrity_unregister(md->disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 del_gendisk(md->disk);
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08001852 free_minor(minor);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001853
1854 spin_lock(&_minor_lock);
1855 md->disk->private_data = NULL;
1856 spin_unlock(&_minor_lock);
1857
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 put_disk(md->disk);
Al Viro1312f402006-03-12 11:02:03 -05001859 blk_cleanup_queue(md->queue);
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001860 module_put(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 kfree(md);
1862}
1863
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001864static void __bind_mempools(struct mapped_device *md, struct dm_table *t)
1865{
1866 struct dm_md_mempools *p;
1867
1868 if (md->io_pool && md->tio_pool && md->bs)
1869 /* the md already has necessary mempools */
1870 goto out;
1871
1872 p = dm_table_get_md_mempools(t);
1873 BUG_ON(!p || md->io_pool || md->tio_pool || md->bs);
1874
1875 md->io_pool = p->io_pool;
1876 p->io_pool = NULL;
1877 md->tio_pool = p->tio_pool;
1878 p->tio_pool = NULL;
1879 md->bs = p->bs;
1880 p->bs = NULL;
1881
1882out:
1883 /* mempool bind completed, now no need any mempools in the table */
1884 dm_table_free_md_mempools(t);
1885}
1886
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887/*
1888 * Bind a table to the device.
1889 */
1890static void event_callback(void *context)
1891{
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001892 unsigned long flags;
1893 LIST_HEAD(uevents);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 struct mapped_device *md = (struct mapped_device *) context;
1895
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001896 spin_lock_irqsave(&md->uevent_lock, flags);
1897 list_splice_init(&md->uevent_list, &uevents);
1898 spin_unlock_irqrestore(&md->uevent_lock, flags);
1899
Tejun Heoed9e1982008-08-25 19:56:05 +09001900 dm_send_uevents(&uevents, &disk_to_dev(md->disk)->kobj);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001901
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 atomic_inc(&md->event_nr);
1903 wake_up(&md->eventq);
1904}
1905
Alasdair G Kergon4e901882005-07-28 21:15:59 -07001906static void __set_size(struct mapped_device *md, sector_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907{
Alasdair G Kergon4e901882005-07-28 21:15:59 -07001908 set_capacity(md->disk, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909
Mikulas Patockadb8fef42009-06-22 10:12:15 +01001910 mutex_lock(&md->bdev->bd_inode->i_mutex);
1911 i_size_write(md->bdev->bd_inode, (loff_t)size << SECTOR_SHIFT);
1912 mutex_unlock(&md->bdev->bd_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913}
1914
Mike Snitzer754c5fc2009-06-22 10:12:34 +01001915static int __bind(struct mapped_device *md, struct dm_table *t,
1916 struct queue_limits *limits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917{
Jens Axboe165125e2007-07-24 09:28:11 +02001918 struct request_queue *q = md->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 sector_t size;
Kiyoshi Ueda523d9292009-06-22 10:12:37 +01001920 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921
1922 size = dm_table_get_size(t);
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08001923
1924 /*
1925 * Wipe any geometry if the size of the table changed.
1926 */
1927 if (size != get_capacity(md->disk))
1928 memset(&md->geometry, 0, sizeof(md->geometry));
1929
Mikulas Patocka32a926d2009-06-22 10:12:17 +01001930 __set_size(md, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931
Mikulas Patockad5816872009-01-06 03:05:10 +00001932 if (!size) {
1933 dm_table_destroy(t);
1934 return 0;
1935 }
1936
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001937 dm_table_event_callback(t, event_callback, md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001938
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001939 /*
1940 * The queue hasn't been stopped yet, if the old table type wasn't
1941 * for request-based during suspension. So stop it to prevent
1942 * I/O mapping before resume.
1943 * This must be done before setting the queue restrictions,
1944 * because request-based dm may be run just after the setting.
1945 */
1946 if (dm_table_request_based(t) && !blk_queue_stopped(q))
1947 stop_queue(q);
1948
1949 __bind_mempools(md, t);
1950
Kiyoshi Ueda523d9292009-06-22 10:12:37 +01001951 write_lock_irqsave(&md->map_lock, flags);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001952 md->map = t;
Mike Snitzer754c5fc2009-06-22 10:12:34 +01001953 dm_table_set_restrictions(t, q, limits);
Kiyoshi Ueda523d9292009-06-22 10:12:37 +01001954 write_unlock_irqrestore(&md->map_lock, flags);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001955
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 return 0;
1957}
1958
1959static void __unbind(struct mapped_device *md)
1960{
1961 struct dm_table *map = md->map;
Kiyoshi Ueda523d9292009-06-22 10:12:37 +01001962 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963
1964 if (!map)
1965 return;
1966
1967 dm_table_event_callback(map, NULL, NULL);
Kiyoshi Ueda523d9292009-06-22 10:12:37 +01001968 write_lock_irqsave(&md->map_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 md->map = NULL;
Kiyoshi Ueda523d9292009-06-22 10:12:37 +01001970 write_unlock_irqrestore(&md->map_lock, flags);
Mikulas Patockad5816872009-01-06 03:05:10 +00001971 dm_table_destroy(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972}
1973
1974/*
1975 * Constructor for a new device.
1976 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001977int dm_create(int minor, struct mapped_device **result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978{
1979 struct mapped_device *md;
1980
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001981 md = alloc_dev(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 if (!md)
1983 return -ENXIO;
1984
Milan Broz784aae72009-01-06 03:05:12 +00001985 dm_sysfs_init(md);
1986
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 *result = md;
1988 return 0;
1989}
1990
David Teigland637842c2006-01-06 00:20:00 -08001991static struct mapped_device *dm_find_md(dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992{
1993 struct mapped_device *md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 unsigned minor = MINOR(dev);
1995
1996 if (MAJOR(dev) != _major || minor >= (1 << MINORBITS))
1997 return NULL;
1998
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001999 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000
2001 md = idr_find(&_minor_idr, minor);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002002 if (md && (md == MINOR_ALLOCED ||
Tejun Heof331c022008-09-03 09:01:48 +02002003 (MINOR(disk_devt(dm_disk(md))) != minor) ||
Alasdair G Kergon17b2f662006-06-26 00:27:33 -07002004 test_bit(DMF_FREEING, &md->flags))) {
David Teigland637842c2006-01-06 00:20:00 -08002005 md = NULL;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002006 goto out;
2007 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002009out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002010 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011
David Teigland637842c2006-01-06 00:20:00 -08002012 return md;
2013}
2014
David Teiglandd229a952006-01-06 00:20:01 -08002015struct mapped_device *dm_get_md(dev_t dev)
2016{
2017 struct mapped_device *md = dm_find_md(dev);
2018
2019 if (md)
2020 dm_get(md);
2021
2022 return md;
2023}
2024
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08002025void *dm_get_mdptr(struct mapped_device *md)
David Teigland637842c2006-01-06 00:20:00 -08002026{
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08002027 return md->interface_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028}
2029
2030void dm_set_mdptr(struct mapped_device *md, void *ptr)
2031{
2032 md->interface_ptr = ptr;
2033}
2034
2035void dm_get(struct mapped_device *md)
2036{
2037 atomic_inc(&md->holders);
2038}
2039
Alasdair G Kergon72d94862006-06-26 00:27:35 -07002040const char *dm_device_name(struct mapped_device *md)
2041{
2042 return md->name;
2043}
2044EXPORT_SYMBOL_GPL(dm_device_name);
2045
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046void dm_put(struct mapped_device *md)
2047{
Mike Anderson1134e5a2006-03-27 01:17:54 -08002048 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002050 BUG_ON(test_bit(DMF_FREEING, &md->flags));
2051
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002052 if (atomic_dec_and_lock(&md->holders, &_minor_lock)) {
Mike Anderson1134e5a2006-03-27 01:17:54 -08002053 map = dm_get_table(md);
Tejun Heof331c022008-09-03 09:01:48 +02002054 idr_replace(&_minor_idr, MINOR_ALLOCED,
2055 MINOR(disk_devt(dm_disk(md))));
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002056 set_bit(DMF_FREEING, &md->flags);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002057 spin_unlock(&_minor_lock);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002058 if (!dm_suspended(md)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 dm_table_presuspend_targets(map);
2060 dm_table_postsuspend_targets(map);
2061 }
Milan Broz784aae72009-01-06 03:05:12 +00002062 dm_sysfs_exit(md);
Mike Anderson1134e5a2006-03-27 01:17:54 -08002063 dm_table_put(map);
Mikulas Patockaa1b51e92009-01-06 03:04:53 +00002064 __unbind(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 free_dev(md);
2066 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067}
Edward Goggin79eb8852007-05-09 02:32:56 -07002068EXPORT_SYMBOL_GPL(dm_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069
Mikulas Patocka401600d2009-04-02 19:55:38 +01002070static int dm_wait_for_completion(struct mapped_device *md, int interruptible)
Milan Broz46125c12008-02-08 02:10:30 +00002071{
2072 int r = 0;
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002073 DECLARE_WAITQUEUE(wait, current);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002074 struct request_queue *q = md->queue;
2075 unsigned long flags;
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002076
2077 dm_unplug_all(md->queue);
2078
2079 add_wait_queue(&md->wait, &wait);
Milan Broz46125c12008-02-08 02:10:30 +00002080
2081 while (1) {
Mikulas Patocka401600d2009-04-02 19:55:38 +01002082 set_current_state(interruptible);
Milan Broz46125c12008-02-08 02:10:30 +00002083
2084 smp_mb();
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002085 if (dm_request_based(md)) {
2086 spin_lock_irqsave(q->queue_lock, flags);
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002087 if (!queue_in_flight(q)) {
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002088 spin_unlock_irqrestore(q->queue_lock, flags);
2089 break;
2090 }
2091 spin_unlock_irqrestore(q->queue_lock, flags);
Kiyoshi Ueda90abb8c2009-12-10 23:52:13 +00002092 } else if (!md_in_flight(md))
Milan Broz46125c12008-02-08 02:10:30 +00002093 break;
2094
Mikulas Patocka401600d2009-04-02 19:55:38 +01002095 if (interruptible == TASK_INTERRUPTIBLE &&
2096 signal_pending(current)) {
Milan Broz46125c12008-02-08 02:10:30 +00002097 r = -EINTR;
2098 break;
2099 }
2100
2101 io_schedule();
2102 }
2103 set_current_state(TASK_RUNNING);
2104
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002105 remove_wait_queue(&md->wait, &wait);
2106
Milan Broz46125c12008-02-08 02:10:30 +00002107 return r;
2108}
2109
Mikulas Patocka531fe962009-06-22 10:12:17 +01002110static void dm_flush(struct mapped_device *md)
Mikulas Patockaaf7e4662009-04-09 00:27:16 +01002111{
2112 dm_wait_for_completion(md, TASK_UNINTERRUPTIBLE);
Mikulas Patocka52b1fd52009-06-22 10:12:21 +01002113
2114 bio_init(&md->barrier_bio);
2115 md->barrier_bio.bi_bdev = md->bdev;
2116 md->barrier_bio.bi_rw = WRITE_BARRIER;
2117 __split_and_process_bio(md, &md->barrier_bio);
2118
2119 dm_wait_for_completion(md, TASK_UNINTERRUPTIBLE);
Mikulas Patockaaf7e4662009-04-09 00:27:16 +01002120}
2121
2122static void process_barrier(struct mapped_device *md, struct bio *bio)
2123{
Mikulas Patocka5aa27812009-06-22 10:12:18 +01002124 md->barrier_error = 0;
2125
Mikulas Patocka531fe962009-06-22 10:12:17 +01002126 dm_flush(md);
Mikulas Patockaaf7e4662009-04-09 00:27:16 +01002127
Mikulas Patocka5aa27812009-06-22 10:12:18 +01002128 if (!bio_empty_barrier(bio)) {
2129 __split_and_process_bio(md, bio);
2130 dm_flush(md);
Mikulas Patockaaf7e4662009-04-09 00:27:16 +01002131 }
2132
Mikulas Patockaaf7e4662009-04-09 00:27:16 +01002133 if (md->barrier_error != DM_ENDIO_REQUEUE)
Mikulas Patocka531fe962009-06-22 10:12:17 +01002134 bio_endio(bio, md->barrier_error);
Mikulas Patocka2761e952009-06-22 10:12:18 +01002135 else {
2136 spin_lock_irq(&md->deferred_lock);
2137 bio_list_add_head(&md->deferred, bio);
2138 spin_unlock_irq(&md->deferred_lock);
2139 }
Mikulas Patockaaf7e4662009-04-09 00:27:16 +01002140}
2141
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142/*
2143 * Process the deferred bios
2144 */
Mikulas Patockaef208582009-04-02 19:55:38 +01002145static void dm_wq_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146{
Mikulas Patockaef208582009-04-02 19:55:38 +01002147 struct mapped_device *md = container_of(work, struct mapped_device,
2148 work);
Milan Broz6d6f10d2008-02-08 02:10:22 +00002149 struct bio *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150
Mikulas Patockaef208582009-04-02 19:55:38 +01002151 down_write(&md->io_lock);
2152
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002153 while (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002154 spin_lock_irq(&md->deferred_lock);
2155 c = bio_list_pop(&md->deferred);
2156 spin_unlock_irq(&md->deferred_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01002157
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002158 if (!c) {
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01002159 clear_bit(DMF_QUEUE_IO_TO_THREAD, &md->flags);
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002160 break;
2161 }
2162
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002163 up_write(&md->io_lock);
2164
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002165 if (dm_request_based(md))
2166 generic_make_request(c);
2167 else {
Jens Axboe1f98a132009-09-11 14:32:04 +02002168 if (bio_rw_flagged(c, BIO_RW_BARRIER))
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002169 process_barrier(md, c);
2170 else
2171 __split_and_process_bio(md, c);
2172 }
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002173
2174 down_write(&md->io_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01002175 }
Milan Broz73d410c2008-02-08 02:10:25 +00002176
Mikulas Patockaef208582009-04-02 19:55:38 +01002177 up_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178}
2179
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002180static void dm_queue_flush(struct mapped_device *md)
Milan Broz304f3f62008-02-08 02:11:17 +00002181{
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002182 clear_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
2183 smp_mb__after_clear_bit();
Mikulas Patocka53d59142009-04-02 19:55:37 +01002184 queue_work(md->wq, &md->work);
Milan Broz304f3f62008-02-08 02:11:17 +00002185}
2186
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187/*
2188 * Swap in a new table (destroying old one).
2189 */
2190int dm_swap_table(struct mapped_device *md, struct dm_table *table)
2191{
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002192 struct queue_limits limits;
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07002193 int r = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194
Daniel Walkere61290a2008-02-08 02:10:08 +00002195 mutex_lock(&md->suspend_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196
2197 /* device must be suspended */
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002198 if (!dm_suspended(md))
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07002199 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002201 r = dm_calculate_queue_limits(table, &limits);
2202 if (r)
2203 goto out;
2204
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002205 /* cannot change the device type, once a table is bound */
2206 if (md->map &&
2207 (dm_table_get_type(md->map) != dm_table_get_type(table))) {
2208 DMWARN("can't change the device type after a table is bound");
2209 goto out;
2210 }
2211
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 __unbind(md);
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002213 r = __bind(md, table, &limits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07002215out:
Daniel Walkere61290a2008-02-08 02:10:08 +00002216 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07002217 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218}
2219
2220/*
2221 * Functions to lock and unlock any filesystem running on the
2222 * device.
2223 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002224static int lock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225{
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08002226 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227
2228 WARN_ON(md->frozen_sb);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002229
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002230 md->frozen_sb = freeze_bdev(md->bdev);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002231 if (IS_ERR(md->frozen_sb)) {
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002232 r = PTR_ERR(md->frozen_sb);
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08002233 md->frozen_sb = NULL;
2234 return r;
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002235 }
2236
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002237 set_bit(DMF_FROZEN, &md->flags);
2238
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 return 0;
2240}
2241
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002242static void unlock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243{
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002244 if (!test_bit(DMF_FROZEN, &md->flags))
2245 return;
2246
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002247 thaw_bdev(md->bdev, md->frozen_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 md->frozen_sb = NULL;
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002249 clear_bit(DMF_FROZEN, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250}
2251
2252/*
2253 * We need to be able to change a mapping table under a mounted
2254 * filesystem. For example we might want to move some data in
2255 * the background. Before the table can be swapped with
2256 * dm_bind_table, dm_suspend must be called to flush any in
2257 * flight bios and ensure that any further io gets deferred.
2258 */
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002259/*
2260 * Suspend mechanism in request-based dm.
2261 *
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002262 * 1. Flush all I/Os by lock_fs() if needed.
2263 * 2. Stop dispatching any I/O by stopping the request_queue.
2264 * 3. Wait for all in-flight I/Os to be completed or requeued.
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002265 *
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002266 * To abort suspend, start the request_queue.
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002267 */
Kiyoshi Uedaa3d77d32006-12-08 02:41:04 -08002268int dm_suspend(struct mapped_device *md, unsigned suspend_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269{
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002270 struct dm_table *map = NULL;
Milan Broz46125c12008-02-08 02:10:30 +00002271 int r = 0;
Kiyoshi Uedaa3d77d32006-12-08 02:41:04 -08002272 int do_lockfs = suspend_flags & DM_SUSPEND_LOCKFS_FLAG ? 1 : 0;
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002273 int noflush = suspend_flags & DM_SUSPEND_NOFLUSH_FLAG ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274
Daniel Walkere61290a2008-02-08 02:10:08 +00002275 mutex_lock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002276
Milan Broz73d410c2008-02-08 02:10:25 +00002277 if (dm_suspended(md)) {
2278 r = -EINVAL;
Alasdair G Kergond2874832006-11-08 17:44:43 -08002279 goto out_unlock;
Milan Broz73d410c2008-02-08 02:10:25 +00002280 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281
2282 map = dm_get_table(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002284 /*
2285 * DMF_NOFLUSH_SUSPENDING must be set before presuspend.
2286 * This flag is cleared before dm_suspend returns.
2287 */
2288 if (noflush)
2289 set_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
2290
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002291 /* This does not get reverted if there's an error later. */
2292 dm_table_presuspend_targets(map);
2293
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002294 /*
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002295 * Flush I/O to the device.
2296 * Any I/O submitted after lock_fs() may not be flushed.
2297 * noflush takes precedence over do_lockfs.
2298 * (lock_fs() flushes I/Os and waits for them to complete.)
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002299 */
2300 if (!noflush && do_lockfs) {
2301 r = lock_fs(md);
2302 if (r)
Kiyoshi Uedaf431d962008-10-21 17:45:07 +01002303 goto out;
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002304 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305
2306 /*
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002307 * Here we must make sure that no processes are submitting requests
2308 * to target drivers i.e. no one may be executing
2309 * __split_and_process_bio. This is called from dm_request and
2310 * dm_wq_work.
2311 *
2312 * To get all processes out of __split_and_process_bio in dm_request,
2313 * we take the write lock. To prevent any process from reentering
2314 * __split_and_process_bio from dm_request, we set
2315 * DMF_QUEUE_IO_TO_THREAD.
2316 *
2317 * To quiesce the thread (dm_wq_work), we set DMF_BLOCK_IO_FOR_SUSPEND
2318 * and call flush_workqueue(md->wq). flush_workqueue will wait until
2319 * dm_wq_work exits and DMF_BLOCK_IO_FOR_SUSPEND will prevent any
2320 * further calls to __split_and_process_bio from dm_wq_work.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002322 down_write(&md->io_lock);
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01002323 set_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
2324 set_bit(DMF_QUEUE_IO_TO_THREAD, &md->flags);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002325 up_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002327 flush_workqueue(md->wq);
2328
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002329 if (dm_request_based(md))
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002330 stop_queue(md->queue);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002331
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 /*
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002333 * At this point no more requests are entering target request routines.
2334 * We call dm_wait_for_completion to wait for all existing requests
2335 * to finish.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 */
Mikulas Patocka401600d2009-04-02 19:55:38 +01002337 r = dm_wait_for_completion(md, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002339 down_write(&md->io_lock);
Milan Broz6d6f10d2008-02-08 02:10:22 +00002340 if (noflush)
Mikulas Patocka022c2612009-04-02 19:55:39 +01002341 clear_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
Milan Broz94d63512008-02-08 02:10:27 +00002342 up_write(&md->io_lock);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002343
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344 /* were we interrupted ? */
Milan Broz46125c12008-02-08 02:10:30 +00002345 if (r < 0) {
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002346 dm_queue_flush(md);
Milan Broz73d410c2008-02-08 02:10:25 +00002347
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002348 if (dm_request_based(md))
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002349 start_queue(md->queue);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002350
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002351 unlock_fs(md);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002352 goto out; /* pushback list is already flushed, so skip flush */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002353 }
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002354
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002355 /*
2356 * If dm_wait_for_completion returned 0, the device is completely
2357 * quiescent now. There is no request-processing activity. All new
2358 * requests are being added to md->deferred list.
2359 */
2360
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002361 dm_table_postsuspend_targets(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362
2363 set_bit(DMF_SUSPENDED, &md->flags);
2364
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002365out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 dm_table_put(map);
Alasdair G Kergond2874832006-11-08 17:44:43 -08002367
2368out_unlock:
Daniel Walkere61290a2008-02-08 02:10:08 +00002369 mutex_unlock(&md->suspend_lock);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002370 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371}
2372
2373int dm_resume(struct mapped_device *md)
2374{
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002375 int r = -EINVAL;
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002376 struct dm_table *map = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377
Daniel Walkere61290a2008-02-08 02:10:08 +00002378 mutex_lock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002379 if (!dm_suspended(md))
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002380 goto out;
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002381
2382 map = dm_get_table(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002383 if (!map || !dm_table_get_size(map))
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002384 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385
Milan Broz8757b772006-10-03 01:15:36 -07002386 r = dm_table_resume_targets(map);
2387 if (r)
2388 goto out;
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002389
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002390 dm_queue_flush(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002391
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002392 /*
2393 * Flushing deferred I/Os must be done after targets are resumed
2394 * so that mapping of targets can work correctly.
2395 * Request-based dm is queueing the deferred I/Os in its request_queue.
2396 */
2397 if (dm_request_based(md))
2398 start_queue(md->queue);
2399
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002400 unlock_fs(md);
2401
2402 clear_bit(DMF_SUSPENDED, &md->flags);
2403
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404 dm_table_unplug_all(map);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002405 r = 0;
2406out:
2407 dm_table_put(map);
Daniel Walkere61290a2008-02-08 02:10:08 +00002408 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002409
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002410 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411}
2412
2413/*-----------------------------------------------------------------
2414 * Event notification.
2415 *---------------------------------------------------------------*/
Milan Broz60935eb2009-06-22 10:12:30 +01002416void dm_kobject_uevent(struct mapped_device *md, enum kobject_action action,
2417 unsigned cookie)
Alasdair G Kergon69267a32007-12-13 14:15:57 +00002418{
Milan Broz60935eb2009-06-22 10:12:30 +01002419 char udev_cookie[DM_COOKIE_LENGTH];
2420 char *envp[] = { udev_cookie, NULL };
2421
2422 if (!cookie)
2423 kobject_uevent(&disk_to_dev(md->disk)->kobj, action);
2424 else {
2425 snprintf(udev_cookie, DM_COOKIE_LENGTH, "%s=%u",
2426 DM_COOKIE_ENV_VAR_NAME, cookie);
2427 kobject_uevent_env(&disk_to_dev(md->disk)->kobj, action, envp);
2428 }
Alasdair G Kergon69267a32007-12-13 14:15:57 +00002429}
2430
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002431uint32_t dm_next_uevent_seq(struct mapped_device *md)
2432{
2433 return atomic_add_return(1, &md->uevent_seq);
2434}
2435
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436uint32_t dm_get_event_nr(struct mapped_device *md)
2437{
2438 return atomic_read(&md->event_nr);
2439}
2440
2441int dm_wait_event(struct mapped_device *md, int event_nr)
2442{
2443 return wait_event_interruptible(md->eventq,
2444 (event_nr != atomic_read(&md->event_nr)));
2445}
2446
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002447void dm_uevent_add(struct mapped_device *md, struct list_head *elist)
2448{
2449 unsigned long flags;
2450
2451 spin_lock_irqsave(&md->uevent_lock, flags);
2452 list_add(elist, &md->uevent_list);
2453 spin_unlock_irqrestore(&md->uevent_lock, flags);
2454}
2455
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456/*
2457 * The gendisk is only valid as long as you have a reference
2458 * count on 'md'.
2459 */
2460struct gendisk *dm_disk(struct mapped_device *md)
2461{
2462 return md->disk;
2463}
2464
Milan Broz784aae72009-01-06 03:05:12 +00002465struct kobject *dm_kobject(struct mapped_device *md)
2466{
2467 return &md->kobj;
2468}
2469
2470/*
2471 * struct mapped_device should not be exported outside of dm.c
2472 * so use this check to verify that kobj is part of md structure
2473 */
2474struct mapped_device *dm_get_from_kobject(struct kobject *kobj)
2475{
2476 struct mapped_device *md;
2477
2478 md = container_of(kobj, struct mapped_device, kobj);
2479 if (&md->kobj != kobj)
2480 return NULL;
2481
Milan Broz4d89b7b2009-06-22 10:12:11 +01002482 if (test_bit(DMF_FREEING, &md->flags) ||
2483 test_bit(DMF_DELETING, &md->flags))
2484 return NULL;
2485
Milan Broz784aae72009-01-06 03:05:12 +00002486 dm_get(md);
2487 return md;
2488}
2489
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490int dm_suspended(struct mapped_device *md)
2491{
2492 return test_bit(DMF_SUSPENDED, &md->flags);
2493}
2494
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002495int dm_noflush_suspending(struct dm_target *ti)
2496{
2497 struct mapped_device *md = dm_table_get_md(ti->table);
2498 int r = __noflush_suspending(md);
2499
2500 dm_put(md);
2501
2502 return r;
2503}
2504EXPORT_SYMBOL_GPL(dm_noflush_suspending);
2505
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002506struct dm_md_mempools *dm_alloc_md_mempools(unsigned type)
2507{
2508 struct dm_md_mempools *pools = kmalloc(sizeof(*pools), GFP_KERNEL);
2509
2510 if (!pools)
2511 return NULL;
2512
2513 pools->io_pool = (type == DM_TYPE_BIO_BASED) ?
2514 mempool_create_slab_pool(MIN_IOS, _io_cache) :
2515 mempool_create_slab_pool(MIN_IOS, _rq_bio_info_cache);
2516 if (!pools->io_pool)
2517 goto free_pools_and_out;
2518
2519 pools->tio_pool = (type == DM_TYPE_BIO_BASED) ?
2520 mempool_create_slab_pool(MIN_IOS, _tio_cache) :
2521 mempool_create_slab_pool(MIN_IOS, _rq_tio_cache);
2522 if (!pools->tio_pool)
2523 goto free_io_pool_and_out;
2524
2525 pools->bs = (type == DM_TYPE_BIO_BASED) ?
2526 bioset_create(16, 0) : bioset_create(MIN_IOS, 0);
2527 if (!pools->bs)
2528 goto free_tio_pool_and_out;
2529
2530 return pools;
2531
2532free_tio_pool_and_out:
2533 mempool_destroy(pools->tio_pool);
2534
2535free_io_pool_and_out:
2536 mempool_destroy(pools->io_pool);
2537
2538free_pools_and_out:
2539 kfree(pools);
2540
2541 return NULL;
2542}
2543
2544void dm_free_md_mempools(struct dm_md_mempools *pools)
2545{
2546 if (!pools)
2547 return;
2548
2549 if (pools->io_pool)
2550 mempool_destroy(pools->io_pool);
2551
2552 if (pools->tio_pool)
2553 mempool_destroy(pools->tio_pool);
2554
2555 if (pools->bs)
2556 bioset_free(pools->bs);
2557
2558 kfree(pools);
2559}
2560
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07002561static const struct block_device_operations dm_blk_dops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 .open = dm_blk_open,
2563 .release = dm_blk_close,
Milan Brozaa129a22006-10-03 01:15:15 -07002564 .ioctl = dm_blk_ioctl,
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08002565 .getgeo = dm_blk_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566 .owner = THIS_MODULE
2567};
2568
2569EXPORT_SYMBOL(dm_get_mapinfo);
2570
2571/*
2572 * module hooks
2573 */
2574module_init(dm_init);
2575module_exit(dm_exit);
2576
2577module_param(major, uint, 0);
2578MODULE_PARM_DESC(major, "The major number of the device mapper");
2579MODULE_DESCRIPTION(DM_NAME " driver");
2580MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
2581MODULE_LICENSE("GPL");