blob: ab3b5d84df65c58c8bdae4ec1a2f39913b5df00b [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"
9#include "dm-bio-list.h"
Mike Anderson51e5b2b2007-10-19 22:48:00 +010010#include "dm-uevent.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
12#include <linux/init.h>
13#include <linux/module.h>
Arjan van de Ven48c9c272006-03-27 01:18:20 -080014#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/moduleparam.h>
16#include <linux/blkpg.h>
17#include <linux/bio.h>
18#include <linux/buffer_head.h>
19#include <linux/mempool.h>
20#include <linux/slab.h>
21#include <linux/idr.h>
Darrick J. Wong3ac51e72006-03-27 01:17:54 -080022#include <linux/hdreg.h>
Jens Axboe2056a782006-03-23 20:00:26 +010023#include <linux/blktrace_api.h>
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +010024#include <trace/block.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Alasdair G Kergon72d94862006-06-26 00:27:35 -070026#define DM_MSG_PREFIX "core"
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028static const char *_name = DM_NAME;
29
30static unsigned int major = 0;
31static unsigned int _major = 0;
32
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -070033static DEFINE_SPINLOCK(_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070034/*
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000035 * For bio-based dm.
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 * One of these is allocated per bio.
37 */
38struct dm_io {
39 struct mapped_device *md;
40 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 atomic_t io_count;
Richard Kennedy6ae2fa62008-07-21 12:00:28 +010042 struct bio *bio;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -080043 unsigned long start_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044};
45
46/*
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000047 * For bio-based dm.
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 * One of these is allocated per target within a bio. Hopefully
49 * this will be simplified out one day.
50 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +010051struct dm_target_io {
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 struct dm_io *io;
53 struct dm_target *ti;
54 union map_info info;
55};
56
Ingo Molnar0bfc2452008-11-26 11:59:56 +010057DEFINE_TRACE(block_bio_complete);
58
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000059/*
60 * For request-based dm.
61 * One of these is allocated per request.
62 */
63struct dm_rq_target_io {
64 struct mapped_device *md;
65 struct dm_target *ti;
66 struct request *orig, clone;
67 int error;
68 union map_info info;
69};
70
71/*
72 * For request-based dm.
73 * One of these is allocated per bio.
74 */
75struct dm_rq_clone_bio_info {
76 struct bio *orig;
77 struct request *rq;
78};
79
Linus Torvalds1da177e2005-04-16 15:20:36 -070080union map_info *dm_get_mapinfo(struct bio *bio)
81{
Alasdair G Kergon17b2f662006-06-26 00:27:33 -070082 if (bio && bio->bi_private)
Alasdair G Kergon028867a2007-07-12 17:26:32 +010083 return &((struct dm_target_io *)bio->bi_private)->info;
Alasdair G Kergon17b2f662006-06-26 00:27:33 -070084 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085}
86
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -070087#define MINOR_ALLOCED ((void *)-1)
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089/*
90 * Bits for the md->flags field.
91 */
92#define DMF_BLOCK_IO 0
93#define DMF_SUSPENDED 1
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -080094#define DMF_FROZEN 2
Jeff Mahoneyfba9f902006-06-26 00:27:23 -070095#define DMF_FREEING 3
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -070096#define DMF_DELETING 4
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -080097#define DMF_NOFLUSH_SUSPENDING 5
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Milan Broz304f3f62008-02-08 02:11:17 +000099/*
100 * Work processed by per-device workqueue.
101 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102struct mapped_device {
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700103 struct rw_semaphore io_lock;
Daniel Walkere61290a2008-02-08 02:10:08 +0000104 struct mutex suspend_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 rwlock_t map_lock;
106 atomic_t holders;
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700107 atomic_t open_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109 unsigned long flags;
110
Jens Axboe165125e2007-07-24 09:28:11 +0200111 struct request_queue *queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 struct gendisk *disk;
Mike Anderson7e51f252006-03-27 01:17:52 -0800113 char name[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115 void *interface_ptr;
116
117 /*
118 * A list of ios that arrived while we were suspended.
119 */
120 atomic_t pending;
121 wait_queue_head_t wait;
Mikulas Patocka53d59142009-04-02 19:55:37 +0100122 struct work_struct work;
Kiyoshi Ueda74859362006-12-08 02:41:02 -0800123 struct bio_list deferred;
Mikulas Patocka022c2612009-04-02 19:55:39 +0100124 spinlock_t deferred_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126 /*
Milan Broz304f3f62008-02-08 02:11:17 +0000127 * Processing queue (flush/barriers)
128 */
129 struct workqueue_struct *wq;
130
131 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 * The current mapping.
133 */
134 struct dm_table *map;
135
136 /*
137 * io objects are allocated from here.
138 */
139 mempool_t *io_pool;
140 mempool_t *tio_pool;
141
Stefan Bader9faf4002006-10-03 01:15:41 -0700142 struct bio_set *bs;
143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 /*
145 * Event handling.
146 */
147 atomic_t event_nr;
148 wait_queue_head_t eventq;
Mike Anderson7a8c3d32007-10-19 22:48:01 +0100149 atomic_t uevent_seq;
150 struct list_head uevent_list;
151 spinlock_t uevent_lock; /* Protect access to uevent_list */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
153 /*
154 * freeze/thaw support require holding onto a super block
155 */
156 struct super_block *frozen_sb;
Alasdair G Kergone39e2e92006-01-06 00:20:05 -0800157 struct block_device *suspended_bdev;
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800158
159 /* forced geometry settings */
160 struct hd_geometry geometry;
Milan Broz784aae72009-01-06 03:05:12 +0000161
162 /* sysfs handle */
163 struct kobject kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164};
165
166#define MIN_IOS 256
Christoph Lametere18b8902006-12-06 20:33:20 -0800167static struct kmem_cache *_io_cache;
168static struct kmem_cache *_tio_cache;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000169static struct kmem_cache *_rq_tio_cache;
170static struct kmem_cache *_rq_bio_info_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172static int __init local_init(void)
173{
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100174 int r = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 /* allocate a slab for the dm_ios */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100177 _io_cache = KMEM_CACHE(dm_io, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 if (!_io_cache)
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100179 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
181 /* allocate a slab for the target ios */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100182 _tio_cache = KMEM_CACHE(dm_target_io, 0);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100183 if (!_tio_cache)
184 goto out_free_io_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000186 _rq_tio_cache = KMEM_CACHE(dm_rq_target_io, 0);
187 if (!_rq_tio_cache)
188 goto out_free_tio_cache;
189
190 _rq_bio_info_cache = KMEM_CACHE(dm_rq_clone_bio_info, 0);
191 if (!_rq_bio_info_cache)
192 goto out_free_rq_tio_cache;
193
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100194 r = dm_uevent_init();
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100195 if (r)
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000196 goto out_free_rq_bio_info_cache;
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 _major = major;
199 r = register_blkdev(_major, _name);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100200 if (r < 0)
201 goto out_uevent_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
203 if (!_major)
204 _major = r;
205
206 return 0;
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100207
208out_uevent_exit:
209 dm_uevent_exit();
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000210out_free_rq_bio_info_cache:
211 kmem_cache_destroy(_rq_bio_info_cache);
212out_free_rq_tio_cache:
213 kmem_cache_destroy(_rq_tio_cache);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100214out_free_tio_cache:
215 kmem_cache_destroy(_tio_cache);
216out_free_io_cache:
217 kmem_cache_destroy(_io_cache);
218
219 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220}
221
222static void local_exit(void)
223{
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000224 kmem_cache_destroy(_rq_bio_info_cache);
225 kmem_cache_destroy(_rq_tio_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 kmem_cache_destroy(_tio_cache);
227 kmem_cache_destroy(_io_cache);
Akinobu Mita00d59402007-07-17 04:03:46 -0700228 unregister_blkdev(_major, _name);
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100229 dm_uevent_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
231 _major = 0;
232
233 DMINFO("cleaned up");
234}
235
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000236static int (*_inits[])(void) __initdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 local_init,
238 dm_target_init,
239 dm_linear_init,
240 dm_stripe_init,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100241 dm_kcopyd_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 dm_interface_init,
243};
244
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000245static void (*_exits[])(void) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 local_exit,
247 dm_target_exit,
248 dm_linear_exit,
249 dm_stripe_exit,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100250 dm_kcopyd_exit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 dm_interface_exit,
252};
253
254static int __init dm_init(void)
255{
256 const int count = ARRAY_SIZE(_inits);
257
258 int r, i;
259
260 for (i = 0; i < count; i++) {
261 r = _inits[i]();
262 if (r)
263 goto bad;
264 }
265
266 return 0;
267
268 bad:
269 while (i--)
270 _exits[i]();
271
272 return r;
273}
274
275static void __exit dm_exit(void)
276{
277 int i = ARRAY_SIZE(_exits);
278
279 while (i--)
280 _exits[i]();
281}
282
283/*
284 * Block device functions
285 */
Al Virofe5f9f22008-03-02 10:29:31 -0500286static int dm_blk_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287{
288 struct mapped_device *md;
289
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700290 spin_lock(&_minor_lock);
291
Al Virofe5f9f22008-03-02 10:29:31 -0500292 md = bdev->bd_disk->private_data;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700293 if (!md)
294 goto out;
295
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700296 if (test_bit(DMF_FREEING, &md->flags) ||
297 test_bit(DMF_DELETING, &md->flags)) {
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700298 md = NULL;
299 goto out;
300 }
301
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 dm_get(md);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700303 atomic_inc(&md->open_count);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700304
305out:
306 spin_unlock(&_minor_lock);
307
308 return md ? 0 : -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309}
310
Al Virofe5f9f22008-03-02 10:29:31 -0500311static int dm_blk_close(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312{
Al Virofe5f9f22008-03-02 10:29:31 -0500313 struct mapped_device *md = disk->private_data;
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700314 atomic_dec(&md->open_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 dm_put(md);
316 return 0;
317}
318
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700319int dm_open_count(struct mapped_device *md)
320{
321 return atomic_read(&md->open_count);
322}
323
324/*
325 * Guarantees nothing is using the device before it's deleted.
326 */
327int dm_lock_for_deletion(struct mapped_device *md)
328{
329 int r = 0;
330
331 spin_lock(&_minor_lock);
332
333 if (dm_open_count(md))
334 r = -EBUSY;
335 else
336 set_bit(DMF_DELETING, &md->flags);
337
338 spin_unlock(&_minor_lock);
339
340 return r;
341}
342
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800343static int dm_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
344{
345 struct mapped_device *md = bdev->bd_disk->private_data;
346
347 return dm_get_geometry(md, geo);
348}
349
Al Virofe5f9f22008-03-02 10:29:31 -0500350static int dm_blk_ioctl(struct block_device *bdev, fmode_t mode,
Milan Brozaa129a22006-10-03 01:15:15 -0700351 unsigned int cmd, unsigned long arg)
352{
Al Virofe5f9f22008-03-02 10:29:31 -0500353 struct mapped_device *md = bdev->bd_disk->private_data;
354 struct dm_table *map = dm_get_table(md);
Milan Brozaa129a22006-10-03 01:15:15 -0700355 struct dm_target *tgt;
356 int r = -ENOTTY;
357
Milan Brozaa129a22006-10-03 01:15:15 -0700358 if (!map || !dm_table_get_size(map))
359 goto out;
360
361 /* We only support devices that have a single target */
362 if (dm_table_get_num_targets(map) != 1)
363 goto out;
364
365 tgt = dm_table_get_target(map, 0);
366
367 if (dm_suspended(md)) {
368 r = -EAGAIN;
369 goto out;
370 }
371
372 if (tgt->type->ioctl)
Al Viro647b3d02007-08-28 22:15:59 -0400373 r = tgt->type->ioctl(tgt, cmd, arg);
Milan Brozaa129a22006-10-03 01:15:15 -0700374
375out:
376 dm_table_put(map);
377
Milan Brozaa129a22006-10-03 01:15:15 -0700378 return r;
379}
380
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100381static struct dm_io *alloc_io(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
383 return mempool_alloc(md->io_pool, GFP_NOIO);
384}
385
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100386static void free_io(struct mapped_device *md, struct dm_io *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387{
388 mempool_free(io, md->io_pool);
389}
390
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100391static struct dm_target_io *alloc_tio(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392{
393 return mempool_alloc(md->tio_pool, GFP_NOIO);
394}
395
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100396static void free_tio(struct mapped_device *md, struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397{
398 mempool_free(tio, md->tio_pool);
399}
400
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800401static void start_io_acct(struct dm_io *io)
402{
403 struct mapped_device *md = io->md;
Tejun Heoc9959052008-08-25 19:47:21 +0900404 int cpu;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800405
406 io->start_time = jiffies;
407
Tejun Heo074a7ac2008-08-25 19:56:14 +0900408 cpu = part_stat_lock();
409 part_round_stats(cpu, &dm_disk(md)->part0);
410 part_stat_unlock();
411 dm_disk(md)->part0.in_flight = atomic_inc_return(&md->pending);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800412}
413
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000414static void end_io_acct(struct dm_io *io)
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800415{
416 struct mapped_device *md = io->md;
417 struct bio *bio = io->bio;
418 unsigned long duration = jiffies - io->start_time;
Tejun Heoc9959052008-08-25 19:47:21 +0900419 int pending, cpu;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800420 int rw = bio_data_dir(bio);
421
Tejun Heo074a7ac2008-08-25 19:56:14 +0900422 cpu = part_stat_lock();
423 part_round_stats(cpu, &dm_disk(md)->part0);
424 part_stat_add(cpu, &dm_disk(md)->part0, ticks[rw], duration);
425 part_stat_unlock();
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800426
Tejun Heo074a7ac2008-08-25 19:56:14 +0900427 dm_disk(md)->part0.in_flight = pending =
428 atomic_dec_return(&md->pending);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800429
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000430 /* nudge anyone waiting on suspend queue */
431 if (!pending)
432 wake_up(&md->wait);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800433}
434
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435/*
436 * Add the bio to the list of deferred io.
437 */
438static int queue_io(struct mapped_device *md, struct bio *bio)
439{
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700440 down_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
442 if (!test_bit(DMF_BLOCK_IO, &md->flags)) {
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700443 up_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 return 1;
445 }
446
Mikulas Patocka022c2612009-04-02 19:55:39 +0100447 spin_lock_irq(&md->deferred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 bio_list_add(&md->deferred, bio);
Mikulas Patocka022c2612009-04-02 19:55:39 +0100449 spin_unlock_irq(&md->deferred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700451 up_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 return 0; /* deferred successfully */
453}
454
455/*
456 * Everyone (including functions in this file), should use this
457 * function to access the md->map field, and make sure they call
458 * dm_table_put() when finished.
459 */
460struct dm_table *dm_get_table(struct mapped_device *md)
461{
462 struct dm_table *t;
463
464 read_lock(&md->map_lock);
465 t = md->map;
466 if (t)
467 dm_table_get(t);
468 read_unlock(&md->map_lock);
469
470 return t;
471}
472
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800473/*
474 * Get the geometry associated with a dm device
475 */
476int dm_get_geometry(struct mapped_device *md, struct hd_geometry *geo)
477{
478 *geo = md->geometry;
479
480 return 0;
481}
482
483/*
484 * Set the geometry of a device.
485 */
486int dm_set_geometry(struct mapped_device *md, struct hd_geometry *geo)
487{
488 sector_t sz = (sector_t)geo->cylinders * geo->heads * geo->sectors;
489
490 if (geo->start > sz) {
491 DMWARN("Start sector is beyond the geometry limits.");
492 return -EINVAL;
493 }
494
495 md->geometry = *geo;
496
497 return 0;
498}
499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500/*-----------------------------------------------------------------
501 * CRUD START:
502 * A more elegant soln is in the works that uses the queue
503 * merge fn, unfortunately there are a couple of changes to
504 * the block layer that I want to make for this. So in the
505 * interests of getting something for people to use I give
506 * you this clearly demarcated crap.
507 *---------------------------------------------------------------*/
508
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800509static int __noflush_suspending(struct mapped_device *md)
510{
511 return test_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
512}
513
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514/*
515 * Decrements the number of outstanding ios that a bio has been
516 * cloned into, completing the original io if necc.
517 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800518static void dec_pending(struct dm_io *io, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519{
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800520 unsigned long flags;
Milan Brozb35f8ca2009-03-16 17:44:36 +0000521 int io_error;
522 struct bio *bio;
523 struct mapped_device *md = io->md;
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800524
525 /* Push-back supersedes any I/O errors */
Milan Brozb35f8ca2009-03-16 17:44:36 +0000526 if (error && !(io->error > 0 && __noflush_suspending(md)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 io->error = error;
528
529 if (atomic_dec_and_test(&io->io_count)) {
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800530 if (io->error == DM_ENDIO_REQUEUE) {
531 /*
532 * Target requested pushing back the I/O.
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800533 */
Mikulas Patocka022c2612009-04-02 19:55:39 +0100534 spin_lock_irqsave(&md->deferred_lock, flags);
Milan Brozb35f8ca2009-03-16 17:44:36 +0000535 if (__noflush_suspending(md))
Mikulas Patocka022c2612009-04-02 19:55:39 +0100536 bio_list_add(&md->deferred, io->bio);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800537 else
538 /* noflush suspend was interrupted. */
539 io->error = -EIO;
Mikulas Patocka022c2612009-04-02 19:55:39 +0100540 spin_unlock_irqrestore(&md->deferred_lock, flags);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800541 }
542
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000543 end_io_acct(io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Milan Brozb35f8ca2009-03-16 17:44:36 +0000545 io_error = io->error;
546 bio = io->bio;
Jens Axboe2056a782006-03-23 20:00:26 +0100547
Milan Brozb35f8ca2009-03-16 17:44:36 +0000548 free_io(md, io);
549
550 if (io_error != DM_ENDIO_REQUEUE) {
551 trace_block_bio_complete(md->queue, bio);
552
553 bio_endio(bio, io_error);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800554 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 }
556}
557
NeilBrown6712ecf2007-09-27 12:47:43 +0200558static void clone_endio(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559{
560 int r = 0;
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100561 struct dm_target_io *tio = bio->bi_private;
Milan Brozb35f8ca2009-03-16 17:44:36 +0000562 struct dm_io *io = tio->io;
Stefan Bader9faf4002006-10-03 01:15:41 -0700563 struct mapped_device *md = tio->io->md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 dm_endio_fn endio = tio->ti->type->end_io;
565
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 if (!bio_flagged(bio, BIO_UPTODATE) && !error)
567 error = -EIO;
568
569 if (endio) {
570 r = endio(tio->ti, bio, error, &tio->info);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800571 if (r < 0 || r == DM_ENDIO_REQUEUE)
572 /*
573 * error and requeue request are handled
574 * in dec_pending().
575 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 error = r;
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800577 else if (r == DM_ENDIO_INCOMPLETE)
578 /* The target will handle the io */
NeilBrown6712ecf2007-09-27 12:47:43 +0200579 return;
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800580 else if (r) {
581 DMWARN("unimplemented target endio return value: %d", r);
582 BUG();
583 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 }
585
Stefan Bader9faf4002006-10-03 01:15:41 -0700586 /*
587 * Store md for cleanup instead of tio which is about to get freed.
588 */
589 bio->bi_private = md->bs;
590
Stefan Bader9faf4002006-10-03 01:15:41 -0700591 free_tio(md, tio);
Milan Brozb35f8ca2009-03-16 17:44:36 +0000592 bio_put(bio);
593 dec_pending(io, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594}
595
596static sector_t max_io_len(struct mapped_device *md,
597 sector_t sector, struct dm_target *ti)
598{
599 sector_t offset = sector - ti->begin;
600 sector_t len = ti->len - offset;
601
602 /*
603 * Does the target need to split even further ?
604 */
605 if (ti->split_io) {
606 sector_t boundary;
607 boundary = ((offset + ti->split_io) & ~(ti->split_io - 1))
608 - offset;
609 if (len > boundary)
610 len = boundary;
611 }
612
613 return len;
614}
615
616static void __map_bio(struct dm_target *ti, struct bio *clone,
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100617 struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618{
619 int r;
Jens Axboe2056a782006-03-23 20:00:26 +0100620 sector_t sector;
Stefan Bader9faf4002006-10-03 01:15:41 -0700621 struct mapped_device *md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
623 /*
624 * Sanity checks.
625 */
626 BUG_ON(!clone->bi_size);
627
628 clone->bi_end_io = clone_endio;
629 clone->bi_private = tio;
630
631 /*
632 * Map the clone. If r == 0 we don't need to do
633 * anything, the target has assumed ownership of
634 * this io.
635 */
636 atomic_inc(&tio->io->io_count);
Jens Axboe2056a782006-03-23 20:00:26 +0100637 sector = clone->bi_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 r = ti->type->map(ti, clone, &tio->info);
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800639 if (r == DM_MAPIO_REMAPPED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 /* the bio has been remapped so dispatch it */
Jens Axboe2056a782006-03-23 20:00:26 +0100641
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100642 trace_block_remap(bdev_get_queue(clone->bi_bdev), clone,
Alan D. Brunellec7149d62007-08-07 15:30:23 +0200643 tio->io->bio->bi_bdev->bd_dev,
644 clone->bi_sector, sector);
Jens Axboe2056a782006-03-23 20:00:26 +0100645
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 generic_make_request(clone);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800647 } else if (r < 0 || r == DM_MAPIO_REQUEUE) {
648 /* error the io and bail out, or requeue it if needed */
Stefan Bader9faf4002006-10-03 01:15:41 -0700649 md = tio->io->md;
650 dec_pending(tio->io, r);
651 /*
652 * Store bio_set for cleanup.
653 */
654 clone->bi_private = md->bs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 bio_put(clone);
Stefan Bader9faf4002006-10-03 01:15:41 -0700656 free_tio(md, tio);
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800657 } else if (r) {
658 DMWARN("unimplemented target map return value: %d", r);
659 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 }
661}
662
663struct clone_info {
664 struct mapped_device *md;
665 struct dm_table *map;
666 struct bio *bio;
667 struct dm_io *io;
668 sector_t sector;
669 sector_t sector_count;
670 unsigned short idx;
671};
672
Peter Osterlund36763472005-09-06 15:16:42 -0700673static void dm_bio_destructor(struct bio *bio)
674{
Stefan Bader9faf4002006-10-03 01:15:41 -0700675 struct bio_set *bs = bio->bi_private;
676
677 bio_free(bio, bs);
Peter Osterlund36763472005-09-06 15:16:42 -0700678}
679
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680/*
681 * Creates a little bio that is just does part of a bvec.
682 */
683static struct bio *split_bvec(struct bio *bio, sector_t sector,
684 unsigned short idx, unsigned int offset,
Stefan Bader9faf4002006-10-03 01:15:41 -0700685 unsigned int len, struct bio_set *bs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686{
687 struct bio *clone;
688 struct bio_vec *bv = bio->bi_io_vec + idx;
689
Stefan Bader9faf4002006-10-03 01:15:41 -0700690 clone = bio_alloc_bioset(GFP_NOIO, 1, bs);
Peter Osterlund36763472005-09-06 15:16:42 -0700691 clone->bi_destructor = dm_bio_destructor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 *clone->bi_io_vec = *bv;
693
694 clone->bi_sector = sector;
695 clone->bi_bdev = bio->bi_bdev;
696 clone->bi_rw = bio->bi_rw;
697 clone->bi_vcnt = 1;
698 clone->bi_size = to_bytes(len);
699 clone->bi_io_vec->bv_offset = offset;
700 clone->bi_io_vec->bv_len = clone->bi_size;
Martin K. Petersenf3e1d262008-10-21 17:45:04 +0100701 clone->bi_flags |= 1 << BIO_CLONED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
Martin K. Petersen9c470082009-04-09 00:27:12 +0100703 if (bio_integrity(bio)) {
704 bio_integrity_clone(clone, bio, GFP_NOIO);
705 bio_integrity_trim(clone,
706 bio_sector_offset(bio, idx, offset), len);
707 }
708
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 return clone;
710}
711
712/*
713 * Creates a bio that consists of range of complete bvecs.
714 */
715static struct bio *clone_bio(struct bio *bio, sector_t sector,
716 unsigned short idx, unsigned short bv_count,
Stefan Bader9faf4002006-10-03 01:15:41 -0700717 unsigned int len, struct bio_set *bs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718{
719 struct bio *clone;
720
Stefan Bader9faf4002006-10-03 01:15:41 -0700721 clone = bio_alloc_bioset(GFP_NOIO, bio->bi_max_vecs, bs);
722 __bio_clone(clone, bio);
723 clone->bi_destructor = dm_bio_destructor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 clone->bi_sector = sector;
725 clone->bi_idx = idx;
726 clone->bi_vcnt = idx + bv_count;
727 clone->bi_size = to_bytes(len);
728 clone->bi_flags &= ~(1 << BIO_SEG_VALID);
729
Martin K. Petersen9c470082009-04-09 00:27:12 +0100730 if (bio_integrity(bio)) {
731 bio_integrity_clone(clone, bio, GFP_NOIO);
732
733 if (idx != bio->bi_idx || clone->bi_size < bio->bi_size)
734 bio_integrity_trim(clone,
735 bio_sector_offset(bio, idx, 0), len);
736 }
737
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 return clone;
739}
740
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000741static int __clone_and_map(struct clone_info *ci)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742{
743 struct bio *clone, *bio = ci->bio;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000744 struct dm_target *ti;
745 sector_t len = 0, max;
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100746 struct dm_target_io *tio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000748 ti = dm_table_find_target(ci->map, ci->sector);
749 if (!dm_target_is_valid(ti))
750 return -EIO;
751
752 max = max_io_len(ci->md, ci->sector, ti);
753
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 /*
755 * Allocate a target io object.
756 */
757 tio = alloc_tio(ci->md);
758 tio->io = ci->io;
759 tio->ti = ti;
760 memset(&tio->info, 0, sizeof(tio->info));
761
762 if (ci->sector_count <= max) {
763 /*
764 * Optimise for the simple case where we can do all of
765 * the remaining io with a single clone.
766 */
767 clone = clone_bio(bio, ci->sector, ci->idx,
Stefan Bader9faf4002006-10-03 01:15:41 -0700768 bio->bi_vcnt - ci->idx, ci->sector_count,
769 ci->md->bs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 __map_bio(ti, clone, tio);
771 ci->sector_count = 0;
772
773 } else if (to_sector(bio->bi_io_vec[ci->idx].bv_len) <= max) {
774 /*
775 * There are some bvecs that don't span targets.
776 * Do as many of these as possible.
777 */
778 int i;
779 sector_t remaining = max;
780 sector_t bv_len;
781
782 for (i = ci->idx; remaining && (i < bio->bi_vcnt); i++) {
783 bv_len = to_sector(bio->bi_io_vec[i].bv_len);
784
785 if (bv_len > remaining)
786 break;
787
788 remaining -= bv_len;
789 len += bv_len;
790 }
791
Stefan Bader9faf4002006-10-03 01:15:41 -0700792 clone = clone_bio(bio, ci->sector, ci->idx, i - ci->idx, len,
793 ci->md->bs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 __map_bio(ti, clone, tio);
795
796 ci->sector += len;
797 ci->sector_count -= len;
798 ci->idx = i;
799
800 } else {
801 /*
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800802 * Handle a bvec that must be split between two or more targets.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 */
804 struct bio_vec *bv = bio->bi_io_vec + ci->idx;
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800805 sector_t remaining = to_sector(bv->bv_len);
806 unsigned int offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800808 do {
809 if (offset) {
810 ti = dm_table_find_target(ci->map, ci->sector);
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000811 if (!dm_target_is_valid(ti))
812 return -EIO;
813
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800814 max = max_io_len(ci->md, ci->sector, ti);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800816 tio = alloc_tio(ci->md);
817 tio->io = ci->io;
818 tio->ti = ti;
819 memset(&tio->info, 0, sizeof(tio->info));
820 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800822 len = min(remaining, max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800824 clone = split_bvec(bio, ci->sector, ci->idx,
Stefan Bader9faf4002006-10-03 01:15:41 -0700825 bv->bv_offset + offset, len,
826 ci->md->bs);
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800827
828 __map_bio(ti, clone, tio);
829
830 ci->sector += len;
831 ci->sector_count -= len;
832 offset += to_bytes(len);
833 } while (remaining -= len);
834
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 ci->idx++;
836 }
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000837
838 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839}
840
841/*
Mikulas Patocka8a53c282009-04-02 19:55:37 +0100842 * Split the bio into several clones and submit it to targets.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 */
Mikulas Patockaf0b9a452009-04-02 19:55:38 +0100844static void __split_and_process_bio(struct mapped_device *md, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845{
846 struct clone_info ci;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000847 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
849 ci.map = dm_get_table(md);
Mikulas Patockaf0b9a452009-04-02 19:55:38 +0100850 if (unlikely(!ci.map)) {
851 bio_io_error(bio);
852 return;
853 }
Mikulas Patocka692d0eb2009-04-09 00:27:13 +0100854
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 ci.md = md;
856 ci.bio = bio;
857 ci.io = alloc_io(md);
858 ci.io->error = 0;
859 atomic_set(&ci.io->io_count, 1);
860 ci.io->bio = bio;
861 ci.io->md = md;
862 ci.sector = bio->bi_sector;
863 ci.sector_count = bio_sectors(bio);
864 ci.idx = bio->bi_idx;
865
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800866 start_io_acct(ci.io);
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000867 while (ci.sector_count && !error)
868 error = __clone_and_map(&ci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
870 /* drop the extra reference count */
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000871 dec_pending(ci.io, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 dm_table_put(ci.map);
873}
874/*-----------------------------------------------------------------
875 * CRUD END
876 *---------------------------------------------------------------*/
877
Milan Brozf6fccb12008-07-21 12:00:37 +0100878static int dm_merge_bvec(struct request_queue *q,
879 struct bvec_merge_data *bvm,
880 struct bio_vec *biovec)
881{
882 struct mapped_device *md = q->queuedata;
883 struct dm_table *map = dm_get_table(md);
884 struct dm_target *ti;
885 sector_t max_sectors;
Mikulas Patocka50371082008-10-01 14:39:17 +0100886 int max_size = 0;
Milan Brozf6fccb12008-07-21 12:00:37 +0100887
888 if (unlikely(!map))
Mikulas Patocka50371082008-10-01 14:39:17 +0100889 goto out;
Milan Brozf6fccb12008-07-21 12:00:37 +0100890
891 ti = dm_table_find_target(map, bvm->bi_sector);
Mikulas Patockab01cd5a2008-10-01 14:39:24 +0100892 if (!dm_target_is_valid(ti))
893 goto out_table;
Milan Brozf6fccb12008-07-21 12:00:37 +0100894
895 /*
896 * Find maximum amount of I/O that won't need splitting
897 */
898 max_sectors = min(max_io_len(md, bvm->bi_sector, ti),
899 (sector_t) BIO_MAX_SECTORS);
900 max_size = (max_sectors << SECTOR_SHIFT) - bvm->bi_size;
901 if (max_size < 0)
902 max_size = 0;
903
904 /*
905 * merge_bvec_fn() returns number of bytes
906 * it can accept at this offset
907 * max is precomputed maximal io size
908 */
909 if (max_size && ti->type->merge)
910 max_size = ti->type->merge(ti, bvm, biovec, max_size);
911
Mikulas Patockab01cd5a2008-10-01 14:39:24 +0100912out_table:
Mikulas Patocka50371082008-10-01 14:39:17 +0100913 dm_table_put(map);
914
915out:
Milan Brozf6fccb12008-07-21 12:00:37 +0100916 /*
917 * Always allow an entire first page
918 */
919 if (max_size <= biovec->bv_len && !(bvm->bi_size >> SECTOR_SHIFT))
920 max_size = biovec->bv_len;
921
Milan Brozf6fccb12008-07-21 12:00:37 +0100922 return max_size;
923}
924
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925/*
926 * The request function that just remaps the bio built up by
927 * dm_merge_bvec.
928 */
Jens Axboe165125e2007-07-24 09:28:11 +0200929static int dm_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930{
Milan Broz9e4e5f82007-10-19 22:38:53 +0100931 int r = -EIO;
Kevin Corry12f03a42006-02-01 03:04:52 -0800932 int rw = bio_data_dir(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 struct mapped_device *md = q->queuedata;
Tejun Heoc9959052008-08-25 19:47:21 +0900934 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
Mikulas Patocka692d0eb2009-04-09 00:27:13 +0100936 /*
937 * There is no use in forwarding any barrier request since we can't
938 * guarantee it is (or can be) handled by the targets correctly.
939 */
940 if (unlikely(bio_barrier(bio))) {
941 bio_endio(bio, -EOPNOTSUPP);
942 return 0;
943 }
944
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700945 down_read(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
Tejun Heo074a7ac2008-08-25 19:56:14 +0900947 cpu = part_stat_lock();
948 part_stat_inc(cpu, &dm_disk(md)->part0, ios[rw]);
949 part_stat_add(cpu, &dm_disk(md)->part0, sectors[rw], bio_sectors(bio));
950 part_stat_unlock();
Kevin Corry12f03a42006-02-01 03:04:52 -0800951
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 /*
953 * If we're suspended we have to queue
954 * this io for later.
955 */
956 while (test_bit(DMF_BLOCK_IO, &md->flags)) {
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700957 up_read(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
Milan Broz9e4e5f82007-10-19 22:38:53 +0100959 if (bio_rw(bio) != READA)
960 r = queue_io(md, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
Milan Broz9e4e5f82007-10-19 22:38:53 +0100962 if (r <= 0)
963 goto out_req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
965 /*
966 * We're in a while loop, because someone could suspend
967 * before we get to the following read lock.
968 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700969 down_read(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 }
971
Mikulas Patockaf0b9a452009-04-02 19:55:38 +0100972 __split_and_process_bio(md, bio);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700973 up_read(&md->io_lock);
Mikulas Patockaf0b9a452009-04-02 19:55:38 +0100974 return 0;
Milan Broz9e4e5f82007-10-19 22:38:53 +0100975
976out_req:
977 if (r < 0)
978 bio_io_error(bio);
979
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 return 0;
981}
982
Jens Axboe165125e2007-07-24 09:28:11 +0200983static void dm_unplug_all(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984{
985 struct mapped_device *md = q->queuedata;
986 struct dm_table *map = dm_get_table(md);
987
988 if (map) {
989 dm_table_unplug_all(map);
990 dm_table_put(map);
991 }
992}
993
994static int dm_any_congested(void *congested_data, int bdi_bits)
995{
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +0000996 int r = bdi_bits;
997 struct mapped_device *md = congested_data;
998 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00001000 if (!test_bit(DMF_BLOCK_IO, &md->flags)) {
1001 map = dm_get_table(md);
1002 if (map) {
1003 r = dm_table_any_congested(map, bdi_bits);
1004 dm_table_put(map);
1005 }
1006 }
1007
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 return r;
1009}
1010
1011/*-----------------------------------------------------------------
1012 * An IDR is used to keep track of allocated minor numbers.
1013 *---------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014static DEFINE_IDR(_minor_idr);
1015
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001016static void free_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017{
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001018 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 idr_remove(&_minor_idr, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001020 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021}
1022
1023/*
1024 * See if the device with a specific minor # is free.
1025 */
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001026static int specific_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027{
1028 int r, m;
1029
1030 if (minor >= (1 << MINORBITS))
1031 return -EINVAL;
1032
Jeff Mahoney62f75c22006-06-26 00:27:21 -07001033 r = idr_pre_get(&_minor_idr, GFP_KERNEL);
1034 if (!r)
1035 return -ENOMEM;
1036
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001037 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
1039 if (idr_find(&_minor_idr, minor)) {
1040 r = -EBUSY;
1041 goto out;
1042 }
1043
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001044 r = idr_get_new_above(&_minor_idr, MINOR_ALLOCED, minor, &m);
Jeff Mahoney62f75c22006-06-26 00:27:21 -07001045 if (r)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
1048 if (m != minor) {
1049 idr_remove(&_minor_idr, m);
1050 r = -EBUSY;
1051 goto out;
1052 }
1053
1054out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001055 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 return r;
1057}
1058
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001059static int next_free_minor(int *minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060{
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001061 int r, m;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 r = idr_pre_get(&_minor_idr, GFP_KERNEL);
Jeff Mahoney62f75c22006-06-26 00:27:21 -07001064 if (!r)
1065 return -ENOMEM;
1066
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001067 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001069 r = idr_get_new(&_minor_idr, MINOR_ALLOCED, &m);
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001070 if (r)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
1073 if (m >= (1 << MINORBITS)) {
1074 idr_remove(&_minor_idr, m);
1075 r = -ENOSPC;
1076 goto out;
1077 }
1078
1079 *minor = m;
1080
1081out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001082 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 return r;
1084}
1085
1086static struct block_device_operations dm_blk_dops;
1087
Mikulas Patocka53d59142009-04-02 19:55:37 +01001088static void dm_wq_work(struct work_struct *work);
1089
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090/*
1091 * Allocate and initialise a blank device with a given minor.
1092 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001093static struct mapped_device *alloc_dev(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094{
1095 int r;
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001096 struct mapped_device *md = kzalloc(sizeof(*md), GFP_KERNEL);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001097 void *old_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
1099 if (!md) {
1100 DMWARN("unable to allocate device, out of memory.");
1101 return NULL;
1102 }
1103
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001104 if (!try_module_get(THIS_MODULE))
Milan Broz6ed7ade2008-02-08 02:10:19 +00001105 goto bad_module_get;
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001106
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 /* get a minor number for the dev */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001108 if (minor == DM_ANY_MINOR)
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001109 r = next_free_minor(&minor);
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001110 else
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001111 r = specific_minor(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 if (r < 0)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001113 goto bad_minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001115 init_rwsem(&md->io_lock);
Daniel Walkere61290a2008-02-08 02:10:08 +00001116 mutex_init(&md->suspend_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01001117 spin_lock_init(&md->deferred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 rwlock_init(&md->map_lock);
1119 atomic_set(&md->holders, 1);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -07001120 atomic_set(&md->open_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 atomic_set(&md->event_nr, 0);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001122 atomic_set(&md->uevent_seq, 0);
1123 INIT_LIST_HEAD(&md->uevent_list);
1124 spin_lock_init(&md->uevent_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125
1126 md->queue = blk_alloc_queue(GFP_KERNEL);
1127 if (!md->queue)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001128 goto bad_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
1130 md->queue->queuedata = md;
1131 md->queue->backing_dev_info.congested_fn = dm_any_congested;
1132 md->queue->backing_dev_info.congested_data = md;
1133 blk_queue_make_request(md->queue, dm_request);
Mikulas Patocka99360b42009-04-02 19:55:39 +01001134 blk_queue_ordered(md->queue, QUEUE_ORDERED_DRAIN, NULL);
Jens Axboedaef2652006-01-10 10:48:02 +01001135 blk_queue_bounce_limit(md->queue, BLK_BOUNCE_ANY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 md->queue->unplug_fn = dm_unplug_all;
Milan Brozf6fccb12008-07-21 12:00:37 +01001137 blk_queue_merge_bvec(md->queue, dm_merge_bvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
Matthew Dobson93d23412006-03-26 01:37:50 -08001139 md->io_pool = mempool_create_slab_pool(MIN_IOS, _io_cache);
Kiyoshi Ueda74859362006-12-08 02:41:02 -08001140 if (!md->io_pool)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001141 goto bad_io_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
Matthew Dobson93d23412006-03-26 01:37:50 -08001143 md->tio_pool = mempool_create_slab_pool(MIN_IOS, _tio_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 if (!md->tio_pool)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001145 goto bad_tio_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
Jens Axboebb799ca2008-12-10 15:35:05 +01001147 md->bs = bioset_create(16, 0);
Stefan Bader9faf4002006-10-03 01:15:41 -07001148 if (!md->bs)
1149 goto bad_no_bioset;
1150
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 md->disk = alloc_disk(1);
1152 if (!md->disk)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001153 goto bad_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07001155 atomic_set(&md->pending, 0);
1156 init_waitqueue_head(&md->wait);
Mikulas Patocka53d59142009-04-02 19:55:37 +01001157 INIT_WORK(&md->work, dm_wq_work);
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07001158 init_waitqueue_head(&md->eventq);
1159
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 md->disk->major = _major;
1161 md->disk->first_minor = minor;
1162 md->disk->fops = &dm_blk_dops;
1163 md->disk->queue = md->queue;
1164 md->disk->private_data = md;
1165 sprintf(md->disk->disk_name, "dm-%d", minor);
1166 add_disk(md->disk);
Mike Anderson7e51f252006-03-27 01:17:52 -08001167 format_dev_t(md->name, MKDEV(_major, minor));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168
Milan Broz304f3f62008-02-08 02:11:17 +00001169 md->wq = create_singlethread_workqueue("kdmflush");
1170 if (!md->wq)
1171 goto bad_thread;
1172
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001173 /* Populate the mapping, nobody knows we exist yet */
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001174 spin_lock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001175 old_md = idr_replace(&_minor_idr, md, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001176 spin_unlock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001177
1178 BUG_ON(old_md != MINOR_ALLOCED);
1179
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 return md;
1181
Milan Broz304f3f62008-02-08 02:11:17 +00001182bad_thread:
1183 put_disk(md->disk);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001184bad_disk:
Stefan Bader9faf4002006-10-03 01:15:41 -07001185 bioset_free(md->bs);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001186bad_no_bioset:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 mempool_destroy(md->tio_pool);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001188bad_tio_pool:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 mempool_destroy(md->io_pool);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001190bad_io_pool:
Al Viro1312f402006-03-12 11:02:03 -05001191 blk_cleanup_queue(md->queue);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001192bad_queue:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 free_minor(minor);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001194bad_minor:
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001195 module_put(THIS_MODULE);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001196bad_module_get:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 kfree(md);
1198 return NULL;
1199}
1200
Jun'ichi Nomuraae9da832007-10-19 22:38:43 +01001201static void unlock_fs(struct mapped_device *md);
1202
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203static void free_dev(struct mapped_device *md)
1204{
Tejun Heof331c022008-09-03 09:01:48 +02001205 int minor = MINOR(disk_devt(md->disk));
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08001206
Jun'ichi Nomurad9dde592006-02-24 13:04:24 -08001207 if (md->suspended_bdev) {
Jun'ichi Nomuraae9da832007-10-19 22:38:43 +01001208 unlock_fs(md);
Jun'ichi Nomurad9dde592006-02-24 13:04:24 -08001209 bdput(md->suspended_bdev);
1210 }
Milan Broz304f3f62008-02-08 02:11:17 +00001211 destroy_workqueue(md->wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 mempool_destroy(md->tio_pool);
1213 mempool_destroy(md->io_pool);
Stefan Bader9faf4002006-10-03 01:15:41 -07001214 bioset_free(md->bs);
Martin K. Petersen9c470082009-04-09 00:27:12 +01001215 blk_integrity_unregister(md->disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 del_gendisk(md->disk);
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08001217 free_minor(minor);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001218
1219 spin_lock(&_minor_lock);
1220 md->disk->private_data = NULL;
1221 spin_unlock(&_minor_lock);
1222
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 put_disk(md->disk);
Al Viro1312f402006-03-12 11:02:03 -05001224 blk_cleanup_queue(md->queue);
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001225 module_put(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 kfree(md);
1227}
1228
1229/*
1230 * Bind a table to the device.
1231 */
1232static void event_callback(void *context)
1233{
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001234 unsigned long flags;
1235 LIST_HEAD(uevents);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 struct mapped_device *md = (struct mapped_device *) context;
1237
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001238 spin_lock_irqsave(&md->uevent_lock, flags);
1239 list_splice_init(&md->uevent_list, &uevents);
1240 spin_unlock_irqrestore(&md->uevent_lock, flags);
1241
Tejun Heoed9e1982008-08-25 19:56:05 +09001242 dm_send_uevents(&uevents, &disk_to_dev(md->disk)->kobj);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001243
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 atomic_inc(&md->event_nr);
1245 wake_up(&md->eventq);
1246}
1247
Alasdair G Kergon4e901882005-07-28 21:15:59 -07001248static void __set_size(struct mapped_device *md, sector_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249{
Alasdair G Kergon4e901882005-07-28 21:15:59 -07001250 set_capacity(md->disk, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001252 mutex_lock(&md->suspended_bdev->bd_inode->i_mutex);
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001253 i_size_write(md->suspended_bdev->bd_inode, (loff_t)size << SECTOR_SHIFT);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001254 mutex_unlock(&md->suspended_bdev->bd_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255}
1256
1257static int __bind(struct mapped_device *md, struct dm_table *t)
1258{
Jens Axboe165125e2007-07-24 09:28:11 +02001259 struct request_queue *q = md->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 sector_t size;
1261
1262 size = dm_table_get_size(t);
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08001263
1264 /*
1265 * Wipe any geometry if the size of the table changed.
1266 */
1267 if (size != get_capacity(md->disk))
1268 memset(&md->geometry, 0, sizeof(md->geometry));
1269
Jun'ichi Nomurabfa152f2007-01-26 00:57:07 -08001270 if (md->suspended_bdev)
1271 __set_size(md, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
Mikulas Patockad5816872009-01-06 03:05:10 +00001273 if (!size) {
1274 dm_table_destroy(t);
1275 return 0;
1276 }
1277
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001278 dm_table_event_callback(t, event_callback, md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001279
1280 write_lock(&md->map_lock);
1281 md->map = t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 dm_table_set_restrictions(t, q);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001283 write_unlock(&md->map_lock);
1284
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 return 0;
1286}
1287
1288static void __unbind(struct mapped_device *md)
1289{
1290 struct dm_table *map = md->map;
1291
1292 if (!map)
1293 return;
1294
1295 dm_table_event_callback(map, NULL, NULL);
1296 write_lock(&md->map_lock);
1297 md->map = NULL;
1298 write_unlock(&md->map_lock);
Mikulas Patockad5816872009-01-06 03:05:10 +00001299 dm_table_destroy(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300}
1301
1302/*
1303 * Constructor for a new device.
1304 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001305int dm_create(int minor, struct mapped_device **result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306{
1307 struct mapped_device *md;
1308
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001309 md = alloc_dev(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 if (!md)
1311 return -ENXIO;
1312
Milan Broz784aae72009-01-06 03:05:12 +00001313 dm_sysfs_init(md);
1314
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 *result = md;
1316 return 0;
1317}
1318
David Teigland637842c2006-01-06 00:20:00 -08001319static struct mapped_device *dm_find_md(dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320{
1321 struct mapped_device *md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 unsigned minor = MINOR(dev);
1323
1324 if (MAJOR(dev) != _major || minor >= (1 << MINORBITS))
1325 return NULL;
1326
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001327 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
1329 md = idr_find(&_minor_idr, minor);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001330 if (md && (md == MINOR_ALLOCED ||
Tejun Heof331c022008-09-03 09:01:48 +02001331 (MINOR(disk_devt(dm_disk(md))) != minor) ||
Alasdair G Kergon17b2f662006-06-26 00:27:33 -07001332 test_bit(DMF_FREEING, &md->flags))) {
David Teigland637842c2006-01-06 00:20:00 -08001333 md = NULL;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001334 goto out;
1335 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001337out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001338 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
David Teigland637842c2006-01-06 00:20:00 -08001340 return md;
1341}
1342
David Teiglandd229a952006-01-06 00:20:01 -08001343struct mapped_device *dm_get_md(dev_t dev)
1344{
1345 struct mapped_device *md = dm_find_md(dev);
1346
1347 if (md)
1348 dm_get(md);
1349
1350 return md;
1351}
1352
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08001353void *dm_get_mdptr(struct mapped_device *md)
David Teigland637842c2006-01-06 00:20:00 -08001354{
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08001355 return md->interface_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356}
1357
1358void dm_set_mdptr(struct mapped_device *md, void *ptr)
1359{
1360 md->interface_ptr = ptr;
1361}
1362
1363void dm_get(struct mapped_device *md)
1364{
1365 atomic_inc(&md->holders);
1366}
1367
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001368const char *dm_device_name(struct mapped_device *md)
1369{
1370 return md->name;
1371}
1372EXPORT_SYMBOL_GPL(dm_device_name);
1373
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374void dm_put(struct mapped_device *md)
1375{
Mike Anderson1134e5a2006-03-27 01:17:54 -08001376 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001378 BUG_ON(test_bit(DMF_FREEING, &md->flags));
1379
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001380 if (atomic_dec_and_lock(&md->holders, &_minor_lock)) {
Mike Anderson1134e5a2006-03-27 01:17:54 -08001381 map = dm_get_table(md);
Tejun Heof331c022008-09-03 09:01:48 +02001382 idr_replace(&_minor_idr, MINOR_ALLOCED,
1383 MINOR(disk_devt(dm_disk(md))));
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001384 set_bit(DMF_FREEING, &md->flags);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001385 spin_unlock(&_minor_lock);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001386 if (!dm_suspended(md)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 dm_table_presuspend_targets(map);
1388 dm_table_postsuspend_targets(map);
1389 }
Milan Broz784aae72009-01-06 03:05:12 +00001390 dm_sysfs_exit(md);
Mike Anderson1134e5a2006-03-27 01:17:54 -08001391 dm_table_put(map);
Mikulas Patockaa1b51e92009-01-06 03:04:53 +00001392 __unbind(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 free_dev(md);
1394 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395}
Edward Goggin79eb8852007-05-09 02:32:56 -07001396EXPORT_SYMBOL_GPL(dm_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
Mikulas Patocka401600d2009-04-02 19:55:38 +01001398static int dm_wait_for_completion(struct mapped_device *md, int interruptible)
Milan Broz46125c12008-02-08 02:10:30 +00001399{
1400 int r = 0;
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01001401 DECLARE_WAITQUEUE(wait, current);
1402
1403 dm_unplug_all(md->queue);
1404
1405 add_wait_queue(&md->wait, &wait);
Milan Broz46125c12008-02-08 02:10:30 +00001406
1407 while (1) {
Mikulas Patocka401600d2009-04-02 19:55:38 +01001408 set_current_state(interruptible);
Milan Broz46125c12008-02-08 02:10:30 +00001409
1410 smp_mb();
1411 if (!atomic_read(&md->pending))
1412 break;
1413
Mikulas Patocka401600d2009-04-02 19:55:38 +01001414 if (interruptible == TASK_INTERRUPTIBLE &&
1415 signal_pending(current)) {
Milan Broz46125c12008-02-08 02:10:30 +00001416 r = -EINTR;
1417 break;
1418 }
1419
1420 io_schedule();
1421 }
1422 set_current_state(TASK_RUNNING);
1423
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01001424 remove_wait_queue(&md->wait, &wait);
1425
Milan Broz46125c12008-02-08 02:10:30 +00001426 return r;
1427}
1428
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429/*
1430 * Process the deferred bios
1431 */
Mikulas Patockaef208582009-04-02 19:55:38 +01001432static void dm_wq_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433{
Mikulas Patockaef208582009-04-02 19:55:38 +01001434 struct mapped_device *md = container_of(work, struct mapped_device,
1435 work);
Milan Broz6d6f10d2008-02-08 02:10:22 +00001436 struct bio *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
Mikulas Patockaef208582009-04-02 19:55:38 +01001438 down_write(&md->io_lock);
1439
Mikulas Patocka022c2612009-04-02 19:55:39 +01001440next_bio:
1441 spin_lock_irq(&md->deferred_lock);
1442 c = bio_list_pop(&md->deferred);
1443 spin_unlock_irq(&md->deferred_lock);
1444
1445 if (c) {
Mikulas Patockaf0b9a452009-04-02 19:55:38 +01001446 __split_and_process_bio(md, c);
Mikulas Patocka022c2612009-04-02 19:55:39 +01001447 goto next_bio;
1448 }
Milan Broz73d410c2008-02-08 02:10:25 +00001449
1450 clear_bit(DMF_BLOCK_IO, &md->flags);
Mikulas Patockaef208582009-04-02 19:55:38 +01001451
1452 up_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453}
1454
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01001455static void dm_queue_flush(struct mapped_device *md)
Milan Broz304f3f62008-02-08 02:11:17 +00001456{
Mikulas Patocka53d59142009-04-02 19:55:37 +01001457 queue_work(md->wq, &md->work);
Milan Broz304f3f62008-02-08 02:11:17 +00001458 flush_workqueue(md->wq);
1459}
1460
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461/*
1462 * Swap in a new table (destroying old one).
1463 */
1464int dm_swap_table(struct mapped_device *md, struct dm_table *table)
1465{
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07001466 int r = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467
Daniel Walkere61290a2008-02-08 02:10:08 +00001468 mutex_lock(&md->suspend_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469
1470 /* device must be suspended */
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001471 if (!dm_suspended(md))
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07001472 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473
Jun'ichi Nomurabfa152f2007-01-26 00:57:07 -08001474 /* without bdev, the device size cannot be changed */
1475 if (!md->suspended_bdev)
1476 if (get_capacity(md->disk) != dm_table_get_size(table))
1477 goto out;
1478
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 __unbind(md);
1480 r = __bind(md, table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07001482out:
Daniel Walkere61290a2008-02-08 02:10:08 +00001483 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07001484 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485}
1486
1487/*
1488 * Functions to lock and unlock any filesystem running on the
1489 * device.
1490 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001491static int lock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492{
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001493 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
1495 WARN_ON(md->frozen_sb);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07001496
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001497 md->frozen_sb = freeze_bdev(md->suspended_bdev);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07001498 if (IS_ERR(md->frozen_sb)) {
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001499 r = PTR_ERR(md->frozen_sb);
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001500 md->frozen_sb = NULL;
1501 return r;
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07001502 }
1503
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08001504 set_bit(DMF_FROZEN, &md->flags);
1505
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 /* don't bdput right now, we don't want the bdev
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001507 * to go away while it is locked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 */
1509 return 0;
1510}
1511
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001512static void unlock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513{
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08001514 if (!test_bit(DMF_FROZEN, &md->flags))
1515 return;
1516
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001517 thaw_bdev(md->suspended_bdev, md->frozen_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 md->frozen_sb = NULL;
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08001519 clear_bit(DMF_FROZEN, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520}
1521
1522/*
1523 * We need to be able to change a mapping table under a mounted
1524 * filesystem. For example we might want to move some data in
1525 * the background. Before the table can be swapped with
1526 * dm_bind_table, dm_suspend must be called to flush any in
1527 * flight bios and ensure that any further io gets deferred.
1528 */
Kiyoshi Uedaa3d77d32006-12-08 02:41:04 -08001529int dm_suspend(struct mapped_device *md, unsigned suspend_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530{
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001531 struct dm_table *map = NULL;
Milan Broz46125c12008-02-08 02:10:30 +00001532 int r = 0;
Kiyoshi Uedaa3d77d32006-12-08 02:41:04 -08001533 int do_lockfs = suspend_flags & DM_SUSPEND_LOCKFS_FLAG ? 1 : 0;
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001534 int noflush = suspend_flags & DM_SUSPEND_NOFLUSH_FLAG ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
Daniel Walkere61290a2008-02-08 02:10:08 +00001536 mutex_lock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001537
Milan Broz73d410c2008-02-08 02:10:25 +00001538 if (dm_suspended(md)) {
1539 r = -EINVAL;
Alasdair G Kergond2874832006-11-08 17:44:43 -08001540 goto out_unlock;
Milan Broz73d410c2008-02-08 02:10:25 +00001541 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542
1543 map = dm_get_table(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001545 /*
1546 * DMF_NOFLUSH_SUSPENDING must be set before presuspend.
1547 * This flag is cleared before dm_suspend returns.
1548 */
1549 if (noflush)
1550 set_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
1551
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001552 /* This does not get reverted if there's an error later. */
1553 dm_table_presuspend_targets(map);
1554
Jun'ichi Nomurabfa152f2007-01-26 00:57:07 -08001555 /* bdget() can stall if the pending I/Os are not flushed */
1556 if (!noflush) {
1557 md->suspended_bdev = bdget_disk(md->disk, 0);
1558 if (!md->suspended_bdev) {
1559 DMWARN("bdget failed in dm_suspend");
1560 r = -ENOMEM;
Kiyoshi Uedaf431d962008-10-21 17:45:07 +01001561 goto out;
Jun'ichi Nomurabfa152f2007-01-26 00:57:07 -08001562 }
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001563
Milan Broz6d6f10d2008-02-08 02:10:22 +00001564 /*
1565 * Flush I/O to the device. noflush supersedes do_lockfs,
1566 * because lock_fs() needs to flush I/Os.
1567 */
1568 if (do_lockfs) {
1569 r = lock_fs(md);
1570 if (r)
1571 goto out;
1572 }
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08001573 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574
1575 /*
Alasdair G Kergon354e0072005-05-05 16:16:05 -07001576 * First we set the BLOCK_IO flag so no more ios will be mapped.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001578 down_write(&md->io_lock);
1579 set_bit(DMF_BLOCK_IO, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001581 up_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 /*
Milan Broz46125c12008-02-08 02:10:30 +00001584 * Wait for the already-mapped ios to complete.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 */
Mikulas Patocka401600d2009-04-02 19:55:38 +01001586 r = dm_wait_for_completion(md, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001588 down_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589
Milan Broz6d6f10d2008-02-08 02:10:22 +00001590 if (noflush)
Mikulas Patocka022c2612009-04-02 19:55:39 +01001591 clear_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
Milan Broz94d63512008-02-08 02:10:27 +00001592 up_write(&md->io_lock);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001593
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 /* were we interrupted ? */
Milan Broz46125c12008-02-08 02:10:30 +00001595 if (r < 0) {
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01001596 dm_queue_flush(md);
Milan Broz73d410c2008-02-08 02:10:25 +00001597
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001598 unlock_fs(md);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001599 goto out; /* pushback list is already flushed, so skip flush */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001600 }
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001601
1602 dm_table_postsuspend_targets(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603
1604 set_bit(DMF_SUSPENDED, &md->flags);
1605
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001606out:
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001607 if (r && md->suspended_bdev) {
1608 bdput(md->suspended_bdev);
1609 md->suspended_bdev = NULL;
1610 }
1611
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 dm_table_put(map);
Alasdair G Kergond2874832006-11-08 17:44:43 -08001613
1614out_unlock:
Daniel Walkere61290a2008-02-08 02:10:08 +00001615 mutex_unlock(&md->suspend_lock);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001616 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617}
1618
1619int dm_resume(struct mapped_device *md)
1620{
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001621 int r = -EINVAL;
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001622 struct dm_table *map = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623
Daniel Walkere61290a2008-02-08 02:10:08 +00001624 mutex_lock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001625 if (!dm_suspended(md))
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001626 goto out;
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001627
1628 map = dm_get_table(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001629 if (!map || !dm_table_get_size(map))
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001630 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631
Milan Broz8757b772006-10-03 01:15:36 -07001632 r = dm_table_resume_targets(map);
1633 if (r)
1634 goto out;
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001635
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01001636 dm_queue_flush(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001637
1638 unlock_fs(md);
1639
Jun'ichi Nomurabfa152f2007-01-26 00:57:07 -08001640 if (md->suspended_bdev) {
1641 bdput(md->suspended_bdev);
1642 md->suspended_bdev = NULL;
1643 }
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001644
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001645 clear_bit(DMF_SUSPENDED, &md->flags);
1646
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 dm_table_unplug_all(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648
Alasdair G Kergon69267a32007-12-13 14:15:57 +00001649 dm_kobject_uevent(md);
Hannes Reinecke8560ed62006-10-03 01:15:35 -07001650
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001651 r = 0;
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001652
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001653out:
1654 dm_table_put(map);
Daniel Walkere61290a2008-02-08 02:10:08 +00001655 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001656
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001657 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658}
1659
1660/*-----------------------------------------------------------------
1661 * Event notification.
1662 *---------------------------------------------------------------*/
Alasdair G Kergon69267a32007-12-13 14:15:57 +00001663void dm_kobject_uevent(struct mapped_device *md)
1664{
Tejun Heoed9e1982008-08-25 19:56:05 +09001665 kobject_uevent(&disk_to_dev(md->disk)->kobj, KOBJ_CHANGE);
Alasdair G Kergon69267a32007-12-13 14:15:57 +00001666}
1667
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001668uint32_t dm_next_uevent_seq(struct mapped_device *md)
1669{
1670 return atomic_add_return(1, &md->uevent_seq);
1671}
1672
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673uint32_t dm_get_event_nr(struct mapped_device *md)
1674{
1675 return atomic_read(&md->event_nr);
1676}
1677
1678int dm_wait_event(struct mapped_device *md, int event_nr)
1679{
1680 return wait_event_interruptible(md->eventq,
1681 (event_nr != atomic_read(&md->event_nr)));
1682}
1683
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001684void dm_uevent_add(struct mapped_device *md, struct list_head *elist)
1685{
1686 unsigned long flags;
1687
1688 spin_lock_irqsave(&md->uevent_lock, flags);
1689 list_add(elist, &md->uevent_list);
1690 spin_unlock_irqrestore(&md->uevent_lock, flags);
1691}
1692
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693/*
1694 * The gendisk is only valid as long as you have a reference
1695 * count on 'md'.
1696 */
1697struct gendisk *dm_disk(struct mapped_device *md)
1698{
1699 return md->disk;
1700}
1701
Milan Broz784aae72009-01-06 03:05:12 +00001702struct kobject *dm_kobject(struct mapped_device *md)
1703{
1704 return &md->kobj;
1705}
1706
1707/*
1708 * struct mapped_device should not be exported outside of dm.c
1709 * so use this check to verify that kobj is part of md structure
1710 */
1711struct mapped_device *dm_get_from_kobject(struct kobject *kobj)
1712{
1713 struct mapped_device *md;
1714
1715 md = container_of(kobj, struct mapped_device, kobj);
1716 if (&md->kobj != kobj)
1717 return NULL;
1718
1719 dm_get(md);
1720 return md;
1721}
1722
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723int dm_suspended(struct mapped_device *md)
1724{
1725 return test_bit(DMF_SUSPENDED, &md->flags);
1726}
1727
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001728int dm_noflush_suspending(struct dm_target *ti)
1729{
1730 struct mapped_device *md = dm_table_get_md(ti->table);
1731 int r = __noflush_suspending(md);
1732
1733 dm_put(md);
1734
1735 return r;
1736}
1737EXPORT_SYMBOL_GPL(dm_noflush_suspending);
1738
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739static struct block_device_operations dm_blk_dops = {
1740 .open = dm_blk_open,
1741 .release = dm_blk_close,
Milan Brozaa129a22006-10-03 01:15:15 -07001742 .ioctl = dm_blk_ioctl,
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08001743 .getgeo = dm_blk_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 .owner = THIS_MODULE
1745};
1746
1747EXPORT_SYMBOL(dm_get_mapinfo);
1748
1749/*
1750 * module hooks
1751 */
1752module_init(dm_init);
1753module_exit(dm_exit);
1754
1755module_param(major, uint, 0);
1756MODULE_PARM_DESC(major, "The major number of the device mapper");
1757MODULE_DESCRIPTION(DM_NAME " driver");
1758MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
1759MODULE_LICENSE("GPL");