blob: 4882ce7e88a33e974a071def5fb8496ed7cc3969 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2001, 2002 Sistina Software (UK) Limited.
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07003 * Copyright (C) 2004-2006 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 */
102struct dm_wq_req {
103 enum {
Milan Broz304f3f62008-02-08 02:11:17 +0000104 DM_WQ_FLUSH_DEFERRED,
105 } type;
106 struct work_struct work;
107 struct mapped_device *md;
108 void *context;
109};
110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111struct mapped_device {
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700112 struct rw_semaphore io_lock;
Daniel Walkere61290a2008-02-08 02:10:08 +0000113 struct mutex suspend_lock;
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800114 spinlock_t pushback_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 rwlock_t map_lock;
116 atomic_t holders;
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700117 atomic_t open_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119 unsigned long flags;
120
Jens Axboe165125e2007-07-24 09:28:11 +0200121 struct request_queue *queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 struct gendisk *disk;
Mike Anderson7e51f252006-03-27 01:17:52 -0800123 char name[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125 void *interface_ptr;
126
127 /*
128 * A list of ios that arrived while we were suspended.
129 */
130 atomic_t pending;
131 wait_queue_head_t wait;
Kiyoshi Ueda74859362006-12-08 02:41:02 -0800132 struct bio_list deferred;
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800133 struct bio_list pushback;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
135 /*
Milan Broz304f3f62008-02-08 02:11:17 +0000136 * Processing queue (flush/barriers)
137 */
138 struct workqueue_struct *wq;
139
140 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 * The current mapping.
142 */
143 struct dm_table *map;
144
145 /*
146 * io objects are allocated from here.
147 */
148 mempool_t *io_pool;
149 mempool_t *tio_pool;
150
Stefan Bader9faf4002006-10-03 01:15:41 -0700151 struct bio_set *bs;
152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 /*
154 * Event handling.
155 */
156 atomic_t event_nr;
157 wait_queue_head_t eventq;
Mike Anderson7a8c3d32007-10-19 22:48:01 +0100158 atomic_t uevent_seq;
159 struct list_head uevent_list;
160 spinlock_t uevent_lock; /* Protect access to uevent_list */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162 /*
163 * freeze/thaw support require holding onto a super block
164 */
165 struct super_block *frozen_sb;
Alasdair G Kergone39e2e92006-01-06 00:20:05 -0800166 struct block_device *suspended_bdev;
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800167
168 /* forced geometry settings */
169 struct hd_geometry geometry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170};
171
172#define MIN_IOS 256
Christoph Lametere18b8902006-12-06 20:33:20 -0800173static struct kmem_cache *_io_cache;
174static struct kmem_cache *_tio_cache;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000175static struct kmem_cache *_rq_tio_cache;
176static struct kmem_cache *_rq_bio_info_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178static int __init local_init(void)
179{
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100180 int r = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 /* allocate a slab for the dm_ios */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100183 _io_cache = KMEM_CACHE(dm_io, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 if (!_io_cache)
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100185 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187 /* allocate a slab for the target ios */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100188 _tio_cache = KMEM_CACHE(dm_target_io, 0);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100189 if (!_tio_cache)
190 goto out_free_io_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000192 _rq_tio_cache = KMEM_CACHE(dm_rq_target_io, 0);
193 if (!_rq_tio_cache)
194 goto out_free_tio_cache;
195
196 _rq_bio_info_cache = KMEM_CACHE(dm_rq_clone_bio_info, 0);
197 if (!_rq_bio_info_cache)
198 goto out_free_rq_tio_cache;
199
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100200 r = dm_uevent_init();
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100201 if (r)
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000202 goto out_free_rq_bio_info_cache;
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 _major = major;
205 r = register_blkdev(_major, _name);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100206 if (r < 0)
207 goto out_uevent_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
209 if (!_major)
210 _major = r;
211
212 return 0;
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100213
214out_uevent_exit:
215 dm_uevent_exit();
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000216out_free_rq_bio_info_cache:
217 kmem_cache_destroy(_rq_bio_info_cache);
218out_free_rq_tio_cache:
219 kmem_cache_destroy(_rq_tio_cache);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100220out_free_tio_cache:
221 kmem_cache_destroy(_tio_cache);
222out_free_io_cache:
223 kmem_cache_destroy(_io_cache);
224
225 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226}
227
228static void local_exit(void)
229{
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000230 kmem_cache_destroy(_rq_bio_info_cache);
231 kmem_cache_destroy(_rq_tio_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 kmem_cache_destroy(_tio_cache);
233 kmem_cache_destroy(_io_cache);
Akinobu Mita00d59402007-07-17 04:03:46 -0700234 unregister_blkdev(_major, _name);
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100235 dm_uevent_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
237 _major = 0;
238
239 DMINFO("cleaned up");
240}
241
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000242static int (*_inits[])(void) __initdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 local_init,
244 dm_target_init,
245 dm_linear_init,
246 dm_stripe_init,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100247 dm_kcopyd_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 dm_interface_init,
249};
250
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000251static void (*_exits[])(void) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 local_exit,
253 dm_target_exit,
254 dm_linear_exit,
255 dm_stripe_exit,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100256 dm_kcopyd_exit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 dm_interface_exit,
258};
259
260static int __init dm_init(void)
261{
262 const int count = ARRAY_SIZE(_inits);
263
264 int r, i;
265
266 for (i = 0; i < count; i++) {
267 r = _inits[i]();
268 if (r)
269 goto bad;
270 }
271
272 return 0;
273
274 bad:
275 while (i--)
276 _exits[i]();
277
278 return r;
279}
280
281static void __exit dm_exit(void)
282{
283 int i = ARRAY_SIZE(_exits);
284
285 while (i--)
286 _exits[i]();
287}
288
289/*
290 * Block device functions
291 */
Al Virofe5f9f22008-03-02 10:29:31 -0500292static int dm_blk_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293{
294 struct mapped_device *md;
295
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700296 spin_lock(&_minor_lock);
297
Al Virofe5f9f22008-03-02 10:29:31 -0500298 md = bdev->bd_disk->private_data;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700299 if (!md)
300 goto out;
301
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700302 if (test_bit(DMF_FREEING, &md->flags) ||
303 test_bit(DMF_DELETING, &md->flags)) {
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700304 md = NULL;
305 goto out;
306 }
307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 dm_get(md);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700309 atomic_inc(&md->open_count);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700310
311out:
312 spin_unlock(&_minor_lock);
313
314 return md ? 0 : -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315}
316
Al Virofe5f9f22008-03-02 10:29:31 -0500317static int dm_blk_close(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
Al Virofe5f9f22008-03-02 10:29:31 -0500319 struct mapped_device *md = disk->private_data;
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700320 atomic_dec(&md->open_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 dm_put(md);
322 return 0;
323}
324
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700325int dm_open_count(struct mapped_device *md)
326{
327 return atomic_read(&md->open_count);
328}
329
330/*
331 * Guarantees nothing is using the device before it's deleted.
332 */
333int dm_lock_for_deletion(struct mapped_device *md)
334{
335 int r = 0;
336
337 spin_lock(&_minor_lock);
338
339 if (dm_open_count(md))
340 r = -EBUSY;
341 else
342 set_bit(DMF_DELETING, &md->flags);
343
344 spin_unlock(&_minor_lock);
345
346 return r;
347}
348
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800349static int dm_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
350{
351 struct mapped_device *md = bdev->bd_disk->private_data;
352
353 return dm_get_geometry(md, geo);
354}
355
Al Virofe5f9f22008-03-02 10:29:31 -0500356static int dm_blk_ioctl(struct block_device *bdev, fmode_t mode,
Milan Brozaa129a22006-10-03 01:15:15 -0700357 unsigned int cmd, unsigned long arg)
358{
Al Virofe5f9f22008-03-02 10:29:31 -0500359 struct mapped_device *md = bdev->bd_disk->private_data;
360 struct dm_table *map = dm_get_table(md);
Milan Brozaa129a22006-10-03 01:15:15 -0700361 struct dm_target *tgt;
362 int r = -ENOTTY;
363
Milan Brozaa129a22006-10-03 01:15:15 -0700364 if (!map || !dm_table_get_size(map))
365 goto out;
366
367 /* We only support devices that have a single target */
368 if (dm_table_get_num_targets(map) != 1)
369 goto out;
370
371 tgt = dm_table_get_target(map, 0);
372
373 if (dm_suspended(md)) {
374 r = -EAGAIN;
375 goto out;
376 }
377
378 if (tgt->type->ioctl)
Al Viro647b3d02007-08-28 22:15:59 -0400379 r = tgt->type->ioctl(tgt, cmd, arg);
Milan Brozaa129a22006-10-03 01:15:15 -0700380
381out:
382 dm_table_put(map);
383
Milan Brozaa129a22006-10-03 01:15:15 -0700384 return r;
385}
386
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100387static struct dm_io *alloc_io(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388{
389 return mempool_alloc(md->io_pool, GFP_NOIO);
390}
391
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100392static void free_io(struct mapped_device *md, struct dm_io *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393{
394 mempool_free(io, md->io_pool);
395}
396
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100397static struct dm_target_io *alloc_tio(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398{
399 return mempool_alloc(md->tio_pool, GFP_NOIO);
400}
401
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100402static void free_tio(struct mapped_device *md, struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403{
404 mempool_free(tio, md->tio_pool);
405}
406
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800407static void start_io_acct(struct dm_io *io)
408{
409 struct mapped_device *md = io->md;
Tejun Heoc9959052008-08-25 19:47:21 +0900410 int cpu;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800411
412 io->start_time = jiffies;
413
Tejun Heo074a7ac2008-08-25 19:56:14 +0900414 cpu = part_stat_lock();
415 part_round_stats(cpu, &dm_disk(md)->part0);
416 part_stat_unlock();
417 dm_disk(md)->part0.in_flight = atomic_inc_return(&md->pending);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800418}
419
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000420static void end_io_acct(struct dm_io *io)
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800421{
422 struct mapped_device *md = io->md;
423 struct bio *bio = io->bio;
424 unsigned long duration = jiffies - io->start_time;
Tejun Heoc9959052008-08-25 19:47:21 +0900425 int pending, cpu;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800426 int rw = bio_data_dir(bio);
427
Tejun Heo074a7ac2008-08-25 19:56:14 +0900428 cpu = part_stat_lock();
429 part_round_stats(cpu, &dm_disk(md)->part0);
430 part_stat_add(cpu, &dm_disk(md)->part0, ticks[rw], duration);
431 part_stat_unlock();
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800432
Tejun Heo074a7ac2008-08-25 19:56:14 +0900433 dm_disk(md)->part0.in_flight = pending =
434 atomic_dec_return(&md->pending);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800435
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000436 /* nudge anyone waiting on suspend queue */
437 if (!pending)
438 wake_up(&md->wait);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800439}
440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441/*
442 * Add the bio to the list of deferred io.
443 */
444static int queue_io(struct mapped_device *md, struct bio *bio)
445{
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700446 down_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
448 if (!test_bit(DMF_BLOCK_IO, &md->flags)) {
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700449 up_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 return 1;
451 }
452
453 bio_list_add(&md->deferred, bio);
454
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700455 up_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 return 0; /* deferred successfully */
457}
458
459/*
460 * Everyone (including functions in this file), should use this
461 * function to access the md->map field, and make sure they call
462 * dm_table_put() when finished.
463 */
464struct dm_table *dm_get_table(struct mapped_device *md)
465{
466 struct dm_table *t;
467
468 read_lock(&md->map_lock);
469 t = md->map;
470 if (t)
471 dm_table_get(t);
472 read_unlock(&md->map_lock);
473
474 return t;
475}
476
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800477/*
478 * Get the geometry associated with a dm device
479 */
480int dm_get_geometry(struct mapped_device *md, struct hd_geometry *geo)
481{
482 *geo = md->geometry;
483
484 return 0;
485}
486
487/*
488 * Set the geometry of a device.
489 */
490int dm_set_geometry(struct mapped_device *md, struct hd_geometry *geo)
491{
492 sector_t sz = (sector_t)geo->cylinders * geo->heads * geo->sectors;
493
494 if (geo->start > sz) {
495 DMWARN("Start sector is beyond the geometry limits.");
496 return -EINVAL;
497 }
498
499 md->geometry = *geo;
500
501 return 0;
502}
503
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504/*-----------------------------------------------------------------
505 * CRUD START:
506 * A more elegant soln is in the works that uses the queue
507 * merge fn, unfortunately there are a couple of changes to
508 * the block layer that I want to make for this. So in the
509 * interests of getting something for people to use I give
510 * you this clearly demarcated crap.
511 *---------------------------------------------------------------*/
512
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800513static int __noflush_suspending(struct mapped_device *md)
514{
515 return test_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
516}
517
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518/*
519 * Decrements the number of outstanding ios that a bio has been
520 * cloned into, completing the original io if necc.
521 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800522static void dec_pending(struct dm_io *io, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523{
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800524 unsigned long flags;
525
526 /* Push-back supersedes any I/O errors */
527 if (error && !(io->error > 0 && __noflush_suspending(io->md)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 io->error = error;
529
530 if (atomic_dec_and_test(&io->io_count)) {
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800531 if (io->error == DM_ENDIO_REQUEUE) {
532 /*
533 * Target requested pushing back the I/O.
534 * This must be handled before the sleeper on
535 * suspend queue merges the pushback list.
536 */
537 spin_lock_irqsave(&io->md->pushback_lock, flags);
538 if (__noflush_suspending(io->md))
539 bio_list_add(&io->md->pushback, io->bio);
540 else
541 /* noflush suspend was interrupted. */
542 io->error = -EIO;
543 spin_unlock_irqrestore(&io->md->pushback_lock, flags);
544 }
545
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000546 end_io_acct(io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800548 if (io->error != DM_ENDIO_REQUEUE) {
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100549 trace_block_bio_complete(io->md->queue, io->bio);
Jens Axboe2056a782006-03-23 20:00:26 +0100550
NeilBrown6712ecf2007-09-27 12:47:43 +0200551 bio_endio(io->bio, io->error);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800552 }
553
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 free_io(io->md, io);
555 }
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;
Stefan Bader9faf4002006-10-03 01:15:41 -0700562 struct mapped_device *md = tio->io->md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 dm_endio_fn endio = tio->ti->type->end_io;
564
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 if (!bio_flagged(bio, BIO_UPTODATE) && !error)
566 error = -EIO;
567
568 if (endio) {
569 r = endio(tio->ti, bio, error, &tio->info);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800570 if (r < 0 || r == DM_ENDIO_REQUEUE)
571 /*
572 * error and requeue request are handled
573 * in dec_pending().
574 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 error = r;
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800576 else if (r == DM_ENDIO_INCOMPLETE)
577 /* The target will handle the io */
NeilBrown6712ecf2007-09-27 12:47:43 +0200578 return;
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800579 else if (r) {
580 DMWARN("unimplemented target endio return value: %d", r);
581 BUG();
582 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 }
584
Stefan Bader9faf4002006-10-03 01:15:41 -0700585 dec_pending(tio->io, error);
586
587 /*
588 * Store md for cleanup instead of tio which is about to get freed.
589 */
590 bio->bi_private = md->bs;
591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 bio_put(bio);
Stefan Bader9faf4002006-10-03 01:15:41 -0700593 free_tio(md, tio);
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
703 return clone;
704}
705
706/*
707 * Creates a bio that consists of range of complete bvecs.
708 */
709static struct bio *clone_bio(struct bio *bio, sector_t sector,
710 unsigned short idx, unsigned short bv_count,
Stefan Bader9faf4002006-10-03 01:15:41 -0700711 unsigned int len, struct bio_set *bs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712{
713 struct bio *clone;
714
Stefan Bader9faf4002006-10-03 01:15:41 -0700715 clone = bio_alloc_bioset(GFP_NOIO, bio->bi_max_vecs, bs);
716 __bio_clone(clone, bio);
717 clone->bi_destructor = dm_bio_destructor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 clone->bi_sector = sector;
719 clone->bi_idx = idx;
720 clone->bi_vcnt = idx + bv_count;
721 clone->bi_size = to_bytes(len);
722 clone->bi_flags &= ~(1 << BIO_SEG_VALID);
723
724 return clone;
725}
726
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000727static int __clone_and_map(struct clone_info *ci)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728{
729 struct bio *clone, *bio = ci->bio;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000730 struct dm_target *ti;
731 sector_t len = 0, max;
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100732 struct dm_target_io *tio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000734 ti = dm_table_find_target(ci->map, ci->sector);
735 if (!dm_target_is_valid(ti))
736 return -EIO;
737
738 max = max_io_len(ci->md, ci->sector, ti);
739
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 /*
741 * Allocate a target io object.
742 */
743 tio = alloc_tio(ci->md);
744 tio->io = ci->io;
745 tio->ti = ti;
746 memset(&tio->info, 0, sizeof(tio->info));
747
748 if (ci->sector_count <= max) {
749 /*
750 * Optimise for the simple case where we can do all of
751 * the remaining io with a single clone.
752 */
753 clone = clone_bio(bio, ci->sector, ci->idx,
Stefan Bader9faf4002006-10-03 01:15:41 -0700754 bio->bi_vcnt - ci->idx, ci->sector_count,
755 ci->md->bs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 __map_bio(ti, clone, tio);
757 ci->sector_count = 0;
758
759 } else if (to_sector(bio->bi_io_vec[ci->idx].bv_len) <= max) {
760 /*
761 * There are some bvecs that don't span targets.
762 * Do as many of these as possible.
763 */
764 int i;
765 sector_t remaining = max;
766 sector_t bv_len;
767
768 for (i = ci->idx; remaining && (i < bio->bi_vcnt); i++) {
769 bv_len = to_sector(bio->bi_io_vec[i].bv_len);
770
771 if (bv_len > remaining)
772 break;
773
774 remaining -= bv_len;
775 len += bv_len;
776 }
777
Stefan Bader9faf4002006-10-03 01:15:41 -0700778 clone = clone_bio(bio, ci->sector, ci->idx, i - ci->idx, len,
779 ci->md->bs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 __map_bio(ti, clone, tio);
781
782 ci->sector += len;
783 ci->sector_count -= len;
784 ci->idx = i;
785
786 } else {
787 /*
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800788 * Handle a bvec that must be split between two or more targets.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 */
790 struct bio_vec *bv = bio->bi_io_vec + ci->idx;
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800791 sector_t remaining = to_sector(bv->bv_len);
792 unsigned int offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800794 do {
795 if (offset) {
796 ti = dm_table_find_target(ci->map, ci->sector);
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000797 if (!dm_target_is_valid(ti))
798 return -EIO;
799
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800800 max = max_io_len(ci->md, ci->sector, ti);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800802 tio = alloc_tio(ci->md);
803 tio->io = ci->io;
804 tio->ti = ti;
805 memset(&tio->info, 0, sizeof(tio->info));
806 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800808 len = min(remaining, max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800810 clone = split_bvec(bio, ci->sector, ci->idx,
Stefan Bader9faf4002006-10-03 01:15:41 -0700811 bv->bv_offset + offset, len,
812 ci->md->bs);
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800813
814 __map_bio(ti, clone, tio);
815
816 ci->sector += len;
817 ci->sector_count -= len;
818 offset += to_bytes(len);
819 } while (remaining -= len);
820
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 ci->idx++;
822 }
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000823
824 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825}
826
827/*
828 * Split the bio into several clones.
829 */
Milan Broz9e4e5f82007-10-19 22:38:53 +0100830static int __split_bio(struct mapped_device *md, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831{
832 struct clone_info ci;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000833 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
835 ci.map = dm_get_table(md);
Milan Broz9e4e5f82007-10-19 22:38:53 +0100836 if (unlikely(!ci.map))
837 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
839 ci.md = md;
840 ci.bio = bio;
841 ci.io = alloc_io(md);
842 ci.io->error = 0;
843 atomic_set(&ci.io->io_count, 1);
844 ci.io->bio = bio;
845 ci.io->md = md;
846 ci.sector = bio->bi_sector;
847 ci.sector_count = bio_sectors(bio);
848 ci.idx = bio->bi_idx;
849
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800850 start_io_acct(ci.io);
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000851 while (ci.sector_count && !error)
852 error = __clone_and_map(&ci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
854 /* drop the extra reference count */
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000855 dec_pending(ci.io, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 dm_table_put(ci.map);
Milan Broz9e4e5f82007-10-19 22:38:53 +0100857
858 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859}
860/*-----------------------------------------------------------------
861 * CRUD END
862 *---------------------------------------------------------------*/
863
Milan Brozf6fccb12008-07-21 12:00:37 +0100864static int dm_merge_bvec(struct request_queue *q,
865 struct bvec_merge_data *bvm,
866 struct bio_vec *biovec)
867{
868 struct mapped_device *md = q->queuedata;
869 struct dm_table *map = dm_get_table(md);
870 struct dm_target *ti;
871 sector_t max_sectors;
Mikulas Patocka50371082008-10-01 14:39:17 +0100872 int max_size = 0;
Milan Brozf6fccb12008-07-21 12:00:37 +0100873
874 if (unlikely(!map))
Mikulas Patocka50371082008-10-01 14:39:17 +0100875 goto out;
Milan Brozf6fccb12008-07-21 12:00:37 +0100876
877 ti = dm_table_find_target(map, bvm->bi_sector);
Mikulas Patockab01cd5a2008-10-01 14:39:24 +0100878 if (!dm_target_is_valid(ti))
879 goto out_table;
Milan Brozf6fccb12008-07-21 12:00:37 +0100880
881 /*
882 * Find maximum amount of I/O that won't need splitting
883 */
884 max_sectors = min(max_io_len(md, bvm->bi_sector, ti),
885 (sector_t) BIO_MAX_SECTORS);
886 max_size = (max_sectors << SECTOR_SHIFT) - bvm->bi_size;
887 if (max_size < 0)
888 max_size = 0;
889
890 /*
891 * merge_bvec_fn() returns number of bytes
892 * it can accept at this offset
893 * max is precomputed maximal io size
894 */
895 if (max_size && ti->type->merge)
896 max_size = ti->type->merge(ti, bvm, biovec, max_size);
897
Mikulas Patockab01cd5a2008-10-01 14:39:24 +0100898out_table:
Mikulas Patocka50371082008-10-01 14:39:17 +0100899 dm_table_put(map);
900
901out:
Milan Brozf6fccb12008-07-21 12:00:37 +0100902 /*
903 * Always allow an entire first page
904 */
905 if (max_size <= biovec->bv_len && !(bvm->bi_size >> SECTOR_SHIFT))
906 max_size = biovec->bv_len;
907
Milan Brozf6fccb12008-07-21 12:00:37 +0100908 return max_size;
909}
910
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911/*
912 * The request function that just remaps the bio built up by
913 * dm_merge_bvec.
914 */
Jens Axboe165125e2007-07-24 09:28:11 +0200915static int dm_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916{
Milan Broz9e4e5f82007-10-19 22:38:53 +0100917 int r = -EIO;
Kevin Corry12f03a42006-02-01 03:04:52 -0800918 int rw = bio_data_dir(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 struct mapped_device *md = q->queuedata;
Tejun Heoc9959052008-08-25 19:47:21 +0900920 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
Stefan Bader07a83c42007-07-12 17:28:33 +0100922 /*
923 * There is no use in forwarding any barrier request since we can't
924 * guarantee it is (or can be) handled by the targets correctly.
925 */
926 if (unlikely(bio_barrier(bio))) {
NeilBrown6712ecf2007-09-27 12:47:43 +0200927 bio_endio(bio, -EOPNOTSUPP);
Stefan Bader07a83c42007-07-12 17:28:33 +0100928 return 0;
929 }
930
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700931 down_read(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
Tejun Heo074a7ac2008-08-25 19:56:14 +0900933 cpu = part_stat_lock();
934 part_stat_inc(cpu, &dm_disk(md)->part0, ios[rw]);
935 part_stat_add(cpu, &dm_disk(md)->part0, sectors[rw], bio_sectors(bio));
936 part_stat_unlock();
Kevin Corry12f03a42006-02-01 03:04:52 -0800937
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 /*
939 * If we're suspended we have to queue
940 * this io for later.
941 */
942 while (test_bit(DMF_BLOCK_IO, &md->flags)) {
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700943 up_read(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
Milan Broz9e4e5f82007-10-19 22:38:53 +0100945 if (bio_rw(bio) != READA)
946 r = queue_io(md, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
Milan Broz9e4e5f82007-10-19 22:38:53 +0100948 if (r <= 0)
949 goto out_req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
951 /*
952 * We're in a while loop, because someone could suspend
953 * before we get to the following read lock.
954 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700955 down_read(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 }
957
Milan Broz9e4e5f82007-10-19 22:38:53 +0100958 r = __split_bio(md, bio);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700959 up_read(&md->io_lock);
Milan Broz9e4e5f82007-10-19 22:38:53 +0100960
961out_req:
962 if (r < 0)
963 bio_io_error(bio);
964
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 return 0;
966}
967
Jens Axboe165125e2007-07-24 09:28:11 +0200968static void dm_unplug_all(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969{
970 struct mapped_device *md = q->queuedata;
971 struct dm_table *map = dm_get_table(md);
972
973 if (map) {
974 dm_table_unplug_all(map);
975 dm_table_put(map);
976 }
977}
978
979static int dm_any_congested(void *congested_data, int bdi_bits)
980{
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +0000981 int r = bdi_bits;
982 struct mapped_device *md = congested_data;
983 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +0000985 atomic_inc(&md->pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +0000987 if (!test_bit(DMF_BLOCK_IO, &md->flags)) {
988 map = dm_get_table(md);
989 if (map) {
990 r = dm_table_any_congested(map, bdi_bits);
991 dm_table_put(map);
992 }
993 }
994
995 if (!atomic_dec_return(&md->pending))
996 /* nudge anyone waiting on suspend queue */
997 wake_up(&md->wait);
998
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 return r;
1000}
1001
1002/*-----------------------------------------------------------------
1003 * An IDR is used to keep track of allocated minor numbers.
1004 *---------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005static DEFINE_IDR(_minor_idr);
1006
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001007static void free_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008{
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001009 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 idr_remove(&_minor_idr, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001011 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012}
1013
1014/*
1015 * See if the device with a specific minor # is free.
1016 */
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001017static int specific_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018{
1019 int r, m;
1020
1021 if (minor >= (1 << MINORBITS))
1022 return -EINVAL;
1023
Jeff Mahoney62f75c22006-06-26 00:27:21 -07001024 r = idr_pre_get(&_minor_idr, GFP_KERNEL);
1025 if (!r)
1026 return -ENOMEM;
1027
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001028 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
1030 if (idr_find(&_minor_idr, minor)) {
1031 r = -EBUSY;
1032 goto out;
1033 }
1034
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001035 r = idr_get_new_above(&_minor_idr, MINOR_ALLOCED, minor, &m);
Jeff Mahoney62f75c22006-06-26 00:27:21 -07001036 if (r)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
1039 if (m != minor) {
1040 idr_remove(&_minor_idr, m);
1041 r = -EBUSY;
1042 goto out;
1043 }
1044
1045out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001046 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 return r;
1048}
1049
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001050static int next_free_minor(int *minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051{
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001052 int r, m;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 r = idr_pre_get(&_minor_idr, GFP_KERNEL);
Jeff Mahoney62f75c22006-06-26 00:27:21 -07001055 if (!r)
1056 return -ENOMEM;
1057
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001058 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001060 r = idr_get_new(&_minor_idr, MINOR_ALLOCED, &m);
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001061 if (r)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063
1064 if (m >= (1 << MINORBITS)) {
1065 idr_remove(&_minor_idr, m);
1066 r = -ENOSPC;
1067 goto out;
1068 }
1069
1070 *minor = m;
1071
1072out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001073 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 return r;
1075}
1076
1077static struct block_device_operations dm_blk_dops;
1078
1079/*
1080 * Allocate and initialise a blank device with a given minor.
1081 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001082static struct mapped_device *alloc_dev(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083{
1084 int r;
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001085 struct mapped_device *md = kzalloc(sizeof(*md), GFP_KERNEL);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001086 void *old_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087
1088 if (!md) {
1089 DMWARN("unable to allocate device, out of memory.");
1090 return NULL;
1091 }
1092
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001093 if (!try_module_get(THIS_MODULE))
Milan Broz6ed7ade2008-02-08 02:10:19 +00001094 goto bad_module_get;
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001095
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 /* get a minor number for the dev */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001097 if (minor == DM_ANY_MINOR)
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001098 r = next_free_minor(&minor);
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001099 else
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001100 r = specific_minor(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 if (r < 0)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001102 goto bad_minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001104 init_rwsem(&md->io_lock);
Daniel Walkere61290a2008-02-08 02:10:08 +00001105 mutex_init(&md->suspend_lock);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001106 spin_lock_init(&md->pushback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 rwlock_init(&md->map_lock);
1108 atomic_set(&md->holders, 1);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -07001109 atomic_set(&md->open_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 atomic_set(&md->event_nr, 0);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001111 atomic_set(&md->uevent_seq, 0);
1112 INIT_LIST_HEAD(&md->uevent_list);
1113 spin_lock_init(&md->uevent_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
1115 md->queue = blk_alloc_queue(GFP_KERNEL);
1116 if (!md->queue)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001117 goto bad_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
1119 md->queue->queuedata = md;
1120 md->queue->backing_dev_info.congested_fn = dm_any_congested;
1121 md->queue->backing_dev_info.congested_data = md;
1122 blk_queue_make_request(md->queue, dm_request);
Jens Axboedaef2652006-01-10 10:48:02 +01001123 blk_queue_bounce_limit(md->queue, BLK_BOUNCE_ANY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 md->queue->unplug_fn = dm_unplug_all;
Milan Brozf6fccb12008-07-21 12:00:37 +01001125 blk_queue_merge_bvec(md->queue, dm_merge_bvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
Matthew Dobson93d23412006-03-26 01:37:50 -08001127 md->io_pool = mempool_create_slab_pool(MIN_IOS, _io_cache);
Kiyoshi Ueda74859362006-12-08 02:41:02 -08001128 if (!md->io_pool)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001129 goto bad_io_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
Matthew Dobson93d23412006-03-26 01:37:50 -08001131 md->tio_pool = mempool_create_slab_pool(MIN_IOS, _tio_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 if (!md->tio_pool)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001133 goto bad_tio_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134
Jens Axboebb799ca2008-12-10 15:35:05 +01001135 md->bs = bioset_create(16, 0);
Stefan Bader9faf4002006-10-03 01:15:41 -07001136 if (!md->bs)
1137 goto bad_no_bioset;
1138
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 md->disk = alloc_disk(1);
1140 if (!md->disk)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001141 goto bad_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07001143 atomic_set(&md->pending, 0);
1144 init_waitqueue_head(&md->wait);
1145 init_waitqueue_head(&md->eventq);
1146
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 md->disk->major = _major;
1148 md->disk->first_minor = minor;
1149 md->disk->fops = &dm_blk_dops;
1150 md->disk->queue = md->queue;
1151 md->disk->private_data = md;
1152 sprintf(md->disk->disk_name, "dm-%d", minor);
1153 add_disk(md->disk);
Mike Anderson7e51f252006-03-27 01:17:52 -08001154 format_dev_t(md->name, MKDEV(_major, minor));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155
Milan Broz304f3f62008-02-08 02:11:17 +00001156 md->wq = create_singlethread_workqueue("kdmflush");
1157 if (!md->wq)
1158 goto bad_thread;
1159
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001160 /* Populate the mapping, nobody knows we exist yet */
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001161 spin_lock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001162 old_md = idr_replace(&_minor_idr, md, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001163 spin_unlock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001164
1165 BUG_ON(old_md != MINOR_ALLOCED);
1166
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 return md;
1168
Milan Broz304f3f62008-02-08 02:11:17 +00001169bad_thread:
1170 put_disk(md->disk);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001171bad_disk:
Stefan Bader9faf4002006-10-03 01:15:41 -07001172 bioset_free(md->bs);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001173bad_no_bioset:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 mempool_destroy(md->tio_pool);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001175bad_tio_pool:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 mempool_destroy(md->io_pool);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001177bad_io_pool:
Al Viro1312f402006-03-12 11:02:03 -05001178 blk_cleanup_queue(md->queue);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001179bad_queue:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 free_minor(minor);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001181bad_minor:
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001182 module_put(THIS_MODULE);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001183bad_module_get:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 kfree(md);
1185 return NULL;
1186}
1187
Jun'ichi Nomuraae9da832007-10-19 22:38:43 +01001188static void unlock_fs(struct mapped_device *md);
1189
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190static void free_dev(struct mapped_device *md)
1191{
Tejun Heof331c022008-09-03 09:01:48 +02001192 int minor = MINOR(disk_devt(md->disk));
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08001193
Jun'ichi Nomurad9dde592006-02-24 13:04:24 -08001194 if (md->suspended_bdev) {
Jun'ichi Nomuraae9da832007-10-19 22:38:43 +01001195 unlock_fs(md);
Jun'ichi Nomurad9dde592006-02-24 13:04:24 -08001196 bdput(md->suspended_bdev);
1197 }
Milan Broz304f3f62008-02-08 02:11:17 +00001198 destroy_workqueue(md->wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 mempool_destroy(md->tio_pool);
1200 mempool_destroy(md->io_pool);
Stefan Bader9faf4002006-10-03 01:15:41 -07001201 bioset_free(md->bs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 del_gendisk(md->disk);
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08001203 free_minor(minor);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001204
1205 spin_lock(&_minor_lock);
1206 md->disk->private_data = NULL;
1207 spin_unlock(&_minor_lock);
1208
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 put_disk(md->disk);
Al Viro1312f402006-03-12 11:02:03 -05001210 blk_cleanup_queue(md->queue);
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001211 module_put(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 kfree(md);
1213}
1214
1215/*
1216 * Bind a table to the device.
1217 */
1218static void event_callback(void *context)
1219{
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001220 unsigned long flags;
1221 LIST_HEAD(uevents);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 struct mapped_device *md = (struct mapped_device *) context;
1223
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001224 spin_lock_irqsave(&md->uevent_lock, flags);
1225 list_splice_init(&md->uevent_list, &uevents);
1226 spin_unlock_irqrestore(&md->uevent_lock, flags);
1227
Tejun Heoed9e1982008-08-25 19:56:05 +09001228 dm_send_uevents(&uevents, &disk_to_dev(md->disk)->kobj);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001229
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 atomic_inc(&md->event_nr);
1231 wake_up(&md->eventq);
1232}
1233
Alasdair G Kergon4e901882005-07-28 21:15:59 -07001234static void __set_size(struct mapped_device *md, sector_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235{
Alasdair G Kergon4e901882005-07-28 21:15:59 -07001236 set_capacity(md->disk, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001238 mutex_lock(&md->suspended_bdev->bd_inode->i_mutex);
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001239 i_size_write(md->suspended_bdev->bd_inode, (loff_t)size << SECTOR_SHIFT);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001240 mutex_unlock(&md->suspended_bdev->bd_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241}
1242
1243static int __bind(struct mapped_device *md, struct dm_table *t)
1244{
Jens Axboe165125e2007-07-24 09:28:11 +02001245 struct request_queue *q = md->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 sector_t size;
1247
1248 size = dm_table_get_size(t);
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08001249
1250 /*
1251 * Wipe any geometry if the size of the table changed.
1252 */
1253 if (size != get_capacity(md->disk))
1254 memset(&md->geometry, 0, sizeof(md->geometry));
1255
Jun'ichi Nomurabfa152f2007-01-26 00:57:07 -08001256 if (md->suspended_bdev)
1257 __set_size(md, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 if (size == 0)
1259 return 0;
1260
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 dm_table_get(t);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001262 dm_table_event_callback(t, event_callback, md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001263
1264 write_lock(&md->map_lock);
1265 md->map = t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 dm_table_set_restrictions(t, q);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001267 write_unlock(&md->map_lock);
1268
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 return 0;
1270}
1271
1272static void __unbind(struct mapped_device *md)
1273{
1274 struct dm_table *map = md->map;
1275
1276 if (!map)
1277 return;
1278
1279 dm_table_event_callback(map, NULL, NULL);
1280 write_lock(&md->map_lock);
1281 md->map = NULL;
1282 write_unlock(&md->map_lock);
1283 dm_table_put(map);
1284}
1285
1286/*
1287 * Constructor for a new device.
1288 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001289int dm_create(int minor, struct mapped_device **result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290{
1291 struct mapped_device *md;
1292
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001293 md = alloc_dev(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 if (!md)
1295 return -ENXIO;
1296
1297 *result = md;
1298 return 0;
1299}
1300
David Teigland637842c2006-01-06 00:20:00 -08001301static struct mapped_device *dm_find_md(dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302{
1303 struct mapped_device *md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 unsigned minor = MINOR(dev);
1305
1306 if (MAJOR(dev) != _major || minor >= (1 << MINORBITS))
1307 return NULL;
1308
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001309 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
1311 md = idr_find(&_minor_idr, minor);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001312 if (md && (md == MINOR_ALLOCED ||
Tejun Heof331c022008-09-03 09:01:48 +02001313 (MINOR(disk_devt(dm_disk(md))) != minor) ||
Alasdair G Kergon17b2f662006-06-26 00:27:33 -07001314 test_bit(DMF_FREEING, &md->flags))) {
David Teigland637842c2006-01-06 00:20:00 -08001315 md = NULL;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001316 goto out;
1317 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001319out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001320 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
David Teigland637842c2006-01-06 00:20:00 -08001322 return md;
1323}
1324
David Teiglandd229a952006-01-06 00:20:01 -08001325struct mapped_device *dm_get_md(dev_t dev)
1326{
1327 struct mapped_device *md = dm_find_md(dev);
1328
1329 if (md)
1330 dm_get(md);
1331
1332 return md;
1333}
1334
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08001335void *dm_get_mdptr(struct mapped_device *md)
David Teigland637842c2006-01-06 00:20:00 -08001336{
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08001337 return md->interface_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338}
1339
1340void dm_set_mdptr(struct mapped_device *md, void *ptr)
1341{
1342 md->interface_ptr = ptr;
1343}
1344
1345void dm_get(struct mapped_device *md)
1346{
1347 atomic_inc(&md->holders);
1348}
1349
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001350const char *dm_device_name(struct mapped_device *md)
1351{
1352 return md->name;
1353}
1354EXPORT_SYMBOL_GPL(dm_device_name);
1355
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356void dm_put(struct mapped_device *md)
1357{
Mike Anderson1134e5a2006-03-27 01:17:54 -08001358 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001360 BUG_ON(test_bit(DMF_FREEING, &md->flags));
1361
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001362 if (atomic_dec_and_lock(&md->holders, &_minor_lock)) {
Mike Anderson1134e5a2006-03-27 01:17:54 -08001363 map = dm_get_table(md);
Tejun Heof331c022008-09-03 09:01:48 +02001364 idr_replace(&_minor_idr, MINOR_ALLOCED,
1365 MINOR(disk_devt(dm_disk(md))));
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001366 set_bit(DMF_FREEING, &md->flags);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001367 spin_unlock(&_minor_lock);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001368 if (!dm_suspended(md)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 dm_table_presuspend_targets(map);
1370 dm_table_postsuspend_targets(map);
1371 }
Mike Anderson1134e5a2006-03-27 01:17:54 -08001372 dm_table_put(map);
Mikulas Patockaa1b51e92009-01-06 03:04:53 +00001373 __unbind(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 free_dev(md);
1375 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376}
Edward Goggin79eb8852007-05-09 02:32:56 -07001377EXPORT_SYMBOL_GPL(dm_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378
Milan Broz46125c12008-02-08 02:10:30 +00001379static int dm_wait_for_completion(struct mapped_device *md)
1380{
1381 int r = 0;
1382
1383 while (1) {
1384 set_current_state(TASK_INTERRUPTIBLE);
1385
1386 smp_mb();
1387 if (!atomic_read(&md->pending))
1388 break;
1389
1390 if (signal_pending(current)) {
1391 r = -EINTR;
1392 break;
1393 }
1394
1395 io_schedule();
1396 }
1397 set_current_state(TASK_RUNNING);
1398
1399 return r;
1400}
1401
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402/*
1403 * Process the deferred bios
1404 */
Milan Broz6d6f10d2008-02-08 02:10:22 +00001405static void __flush_deferred_io(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406{
Milan Broz6d6f10d2008-02-08 02:10:22 +00001407 struct bio *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408
Milan Broz6d6f10d2008-02-08 02:10:22 +00001409 while ((c = bio_list_pop(&md->deferred))) {
Milan Broz9e4e5f82007-10-19 22:38:53 +01001410 if (__split_bio(md, c))
1411 bio_io_error(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 }
Milan Broz73d410c2008-02-08 02:10:25 +00001413
1414 clear_bit(DMF_BLOCK_IO, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415}
1416
Milan Broz6d6f10d2008-02-08 02:10:22 +00001417static void __merge_pushback_list(struct mapped_device *md)
1418{
1419 unsigned long flags;
1420
1421 spin_lock_irqsave(&md->pushback_lock, flags);
1422 clear_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
1423 bio_list_merge_head(&md->deferred, &md->pushback);
1424 bio_list_init(&md->pushback);
1425 spin_unlock_irqrestore(&md->pushback_lock, flags);
1426}
1427
Milan Broz304f3f62008-02-08 02:11:17 +00001428static void dm_wq_work(struct work_struct *work)
1429{
1430 struct dm_wq_req *req = container_of(work, struct dm_wq_req, work);
1431 struct mapped_device *md = req->md;
1432
1433 down_write(&md->io_lock);
1434 switch (req->type) {
Milan Broz304f3f62008-02-08 02:11:17 +00001435 case DM_WQ_FLUSH_DEFERRED:
1436 __flush_deferred_io(md);
1437 break;
1438 default:
1439 DMERR("dm_wq_work: unrecognised work type %d", req->type);
1440 BUG();
1441 }
1442 up_write(&md->io_lock);
1443}
1444
1445static void dm_wq_queue(struct mapped_device *md, int type, void *context,
1446 struct dm_wq_req *req)
1447{
1448 req->type = type;
1449 req->md = md;
1450 req->context = context;
1451 INIT_WORK(&req->work, dm_wq_work);
1452 queue_work(md->wq, &req->work);
1453}
1454
1455static void dm_queue_flush(struct mapped_device *md, int type, void *context)
1456{
1457 struct dm_wq_req req;
1458
1459 dm_wq_queue(md, type, context, &req);
1460 flush_workqueue(md->wq);
1461}
1462
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463/*
1464 * Swap in a new table (destroying old one).
1465 */
1466int dm_swap_table(struct mapped_device *md, struct dm_table *table)
1467{
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07001468 int r = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469
Daniel Walkere61290a2008-02-08 02:10:08 +00001470 mutex_lock(&md->suspend_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
1472 /* device must be suspended */
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001473 if (!dm_suspended(md))
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07001474 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
Jun'ichi Nomurabfa152f2007-01-26 00:57:07 -08001476 /* without bdev, the device size cannot be changed */
1477 if (!md->suspended_bdev)
1478 if (get_capacity(md->disk) != dm_table_get_size(table))
1479 goto out;
1480
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 __unbind(md);
1482 r = __bind(md, table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07001484out:
Daniel Walkere61290a2008-02-08 02:10:08 +00001485 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07001486 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487}
1488
1489/*
1490 * Functions to lock and unlock any filesystem running on the
1491 * device.
1492 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001493static int lock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494{
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001495 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
1497 WARN_ON(md->frozen_sb);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07001498
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001499 md->frozen_sb = freeze_bdev(md->suspended_bdev);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07001500 if (IS_ERR(md->frozen_sb)) {
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001501 r = PTR_ERR(md->frozen_sb);
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001502 md->frozen_sb = NULL;
1503 return r;
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07001504 }
1505
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08001506 set_bit(DMF_FROZEN, &md->flags);
1507
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 /* don't bdput right now, we don't want the bdev
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001509 * to go away while it is locked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 */
1511 return 0;
1512}
1513
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001514static void unlock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515{
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08001516 if (!test_bit(DMF_FROZEN, &md->flags))
1517 return;
1518
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001519 thaw_bdev(md->suspended_bdev, md->frozen_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 md->frozen_sb = NULL;
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08001521 clear_bit(DMF_FROZEN, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522}
1523
1524/*
1525 * We need to be able to change a mapping table under a mounted
1526 * filesystem. For example we might want to move some data in
1527 * the background. Before the table can be swapped with
1528 * dm_bind_table, dm_suspend must be called to flush any in
1529 * flight bios and ensure that any further io gets deferred.
1530 */
Kiyoshi Uedaa3d77d32006-12-08 02:41:04 -08001531int dm_suspend(struct mapped_device *md, unsigned suspend_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532{
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001533 struct dm_table *map = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 DECLARE_WAITQUEUE(wait, current);
Milan Broz46125c12008-02-08 02:10:30 +00001535 int r = 0;
Kiyoshi Uedaa3d77d32006-12-08 02:41:04 -08001536 int do_lockfs = suspend_flags & DM_SUSPEND_LOCKFS_FLAG ? 1 : 0;
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001537 int noflush = suspend_flags & DM_SUSPEND_NOFLUSH_FLAG ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538
Daniel Walkere61290a2008-02-08 02:10:08 +00001539 mutex_lock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001540
Milan Broz73d410c2008-02-08 02:10:25 +00001541 if (dm_suspended(md)) {
1542 r = -EINVAL;
Alasdair G Kergond2874832006-11-08 17:44:43 -08001543 goto out_unlock;
Milan Broz73d410c2008-02-08 02:10:25 +00001544 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545
1546 map = dm_get_table(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001548 /*
1549 * DMF_NOFLUSH_SUSPENDING must be set before presuspend.
1550 * This flag is cleared before dm_suspend returns.
1551 */
1552 if (noflush)
1553 set_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
1554
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001555 /* This does not get reverted if there's an error later. */
1556 dm_table_presuspend_targets(map);
1557
Jun'ichi Nomurabfa152f2007-01-26 00:57:07 -08001558 /* bdget() can stall if the pending I/Os are not flushed */
1559 if (!noflush) {
1560 md->suspended_bdev = bdget_disk(md->disk, 0);
1561 if (!md->suspended_bdev) {
1562 DMWARN("bdget failed in dm_suspend");
1563 r = -ENOMEM;
Kiyoshi Uedaf431d962008-10-21 17:45:07 +01001564 goto out;
Jun'ichi Nomurabfa152f2007-01-26 00:57:07 -08001565 }
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001566
Milan Broz6d6f10d2008-02-08 02:10:22 +00001567 /*
1568 * Flush I/O to the device. noflush supersedes do_lockfs,
1569 * because lock_fs() needs to flush I/Os.
1570 */
1571 if (do_lockfs) {
1572 r = lock_fs(md);
1573 if (r)
1574 goto out;
1575 }
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08001576 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
1578 /*
Alasdair G Kergon354e0072005-05-05 16:16:05 -07001579 * First we set the BLOCK_IO flag so no more ios will be mapped.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001581 down_write(&md->io_lock);
1582 set_bit(DMF_BLOCK_IO, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 add_wait_queue(&md->wait, &wait);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001585 up_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586
1587 /* unplug */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001588 if (map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 dm_table_unplug_all(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590
1591 /*
Milan Broz46125c12008-02-08 02:10:30 +00001592 * Wait for the already-mapped ios to complete.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 */
Milan Broz46125c12008-02-08 02:10:30 +00001594 r = dm_wait_for_completion(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001596 down_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 remove_wait_queue(&md->wait, &wait);
1598
Milan Broz6d6f10d2008-02-08 02:10:22 +00001599 if (noflush)
1600 __merge_pushback_list(md);
Milan Broz94d63512008-02-08 02:10:27 +00001601 up_write(&md->io_lock);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001602
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 /* were we interrupted ? */
Milan Broz46125c12008-02-08 02:10:30 +00001604 if (r < 0) {
Milan Broz304f3f62008-02-08 02:11:17 +00001605 dm_queue_flush(md, DM_WQ_FLUSH_DEFERRED, NULL);
Milan Broz73d410c2008-02-08 02:10:25 +00001606
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001607 unlock_fs(md);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001608 goto out; /* pushback list is already flushed, so skip flush */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001609 }
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001610
1611 dm_table_postsuspend_targets(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612
1613 set_bit(DMF_SUSPENDED, &md->flags);
1614
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001615out:
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001616 if (r && md->suspended_bdev) {
1617 bdput(md->suspended_bdev);
1618 md->suspended_bdev = NULL;
1619 }
1620
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 dm_table_put(map);
Alasdair G Kergond2874832006-11-08 17:44:43 -08001622
1623out_unlock:
Daniel Walkere61290a2008-02-08 02:10:08 +00001624 mutex_unlock(&md->suspend_lock);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001625 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626}
1627
1628int dm_resume(struct mapped_device *md)
1629{
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001630 int r = -EINVAL;
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001631 struct dm_table *map = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
Daniel Walkere61290a2008-02-08 02:10:08 +00001633 mutex_lock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001634 if (!dm_suspended(md))
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001635 goto out;
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001636
1637 map = dm_get_table(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001638 if (!map || !dm_table_get_size(map))
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001639 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640
Milan Broz8757b772006-10-03 01:15:36 -07001641 r = dm_table_resume_targets(map);
1642 if (r)
1643 goto out;
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001644
Milan Broz304f3f62008-02-08 02:11:17 +00001645 dm_queue_flush(md, DM_WQ_FLUSH_DEFERRED, NULL);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001646
1647 unlock_fs(md);
1648
Jun'ichi Nomurabfa152f2007-01-26 00:57:07 -08001649 if (md->suspended_bdev) {
1650 bdput(md->suspended_bdev);
1651 md->suspended_bdev = NULL;
1652 }
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001653
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001654 clear_bit(DMF_SUSPENDED, &md->flags);
1655
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 dm_table_unplug_all(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
Alasdair G Kergon69267a32007-12-13 14:15:57 +00001658 dm_kobject_uevent(md);
Hannes Reinecke8560ed62006-10-03 01:15:35 -07001659
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001660 r = 0;
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001661
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001662out:
1663 dm_table_put(map);
Daniel Walkere61290a2008-02-08 02:10:08 +00001664 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001665
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001666 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667}
1668
1669/*-----------------------------------------------------------------
1670 * Event notification.
1671 *---------------------------------------------------------------*/
Alasdair G Kergon69267a32007-12-13 14:15:57 +00001672void dm_kobject_uevent(struct mapped_device *md)
1673{
Tejun Heoed9e1982008-08-25 19:56:05 +09001674 kobject_uevent(&disk_to_dev(md->disk)->kobj, KOBJ_CHANGE);
Alasdair G Kergon69267a32007-12-13 14:15:57 +00001675}
1676
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001677uint32_t dm_next_uevent_seq(struct mapped_device *md)
1678{
1679 return atomic_add_return(1, &md->uevent_seq);
1680}
1681
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682uint32_t dm_get_event_nr(struct mapped_device *md)
1683{
1684 return atomic_read(&md->event_nr);
1685}
1686
1687int dm_wait_event(struct mapped_device *md, int event_nr)
1688{
1689 return wait_event_interruptible(md->eventq,
1690 (event_nr != atomic_read(&md->event_nr)));
1691}
1692
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001693void dm_uevent_add(struct mapped_device *md, struct list_head *elist)
1694{
1695 unsigned long flags;
1696
1697 spin_lock_irqsave(&md->uevent_lock, flags);
1698 list_add(elist, &md->uevent_list);
1699 spin_unlock_irqrestore(&md->uevent_lock, flags);
1700}
1701
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702/*
1703 * The gendisk is only valid as long as you have a reference
1704 * count on 'md'.
1705 */
1706struct gendisk *dm_disk(struct mapped_device *md)
1707{
1708 return md->disk;
1709}
1710
1711int dm_suspended(struct mapped_device *md)
1712{
1713 return test_bit(DMF_SUSPENDED, &md->flags);
1714}
1715
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001716int dm_noflush_suspending(struct dm_target *ti)
1717{
1718 struct mapped_device *md = dm_table_get_md(ti->table);
1719 int r = __noflush_suspending(md);
1720
1721 dm_put(md);
1722
1723 return r;
1724}
1725EXPORT_SYMBOL_GPL(dm_noflush_suspending);
1726
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727static struct block_device_operations dm_blk_dops = {
1728 .open = dm_blk_open,
1729 .release = dm_blk_close,
Milan Brozaa129a22006-10-03 01:15:15 -07001730 .ioctl = dm_blk_ioctl,
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08001731 .getgeo = dm_blk_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 .owner = THIS_MODULE
1733};
1734
1735EXPORT_SYMBOL(dm_get_mapinfo);
1736
1737/*
1738 * module hooks
1739 */
1740module_init(dm_init);
1741module_exit(dm_exit);
1742
1743module_param(major, uint, 0);
1744MODULE_PARM_DESC(major, "The major number of the device mapper");
1745MODULE_DESCRIPTION(DM_NAME " driver");
1746MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
1747MODULE_LICENSE("GPL");