blob: 51ba1db4b3e7e7abf59d6b183fc610e8bdc0db04 [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 */
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;
Milan Broz784aae72009-01-06 03:05:12 +0000170
171 /* sysfs handle */
172 struct kobject kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173};
174
175#define MIN_IOS 256
Christoph Lametere18b8902006-12-06 20:33:20 -0800176static struct kmem_cache *_io_cache;
177static struct kmem_cache *_tio_cache;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000178static struct kmem_cache *_rq_tio_cache;
179static struct kmem_cache *_rq_bio_info_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181static int __init local_init(void)
182{
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100183 int r = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 /* allocate a slab for the dm_ios */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100186 _io_cache = KMEM_CACHE(dm_io, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 if (!_io_cache)
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100188 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
190 /* allocate a slab for the target ios */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100191 _tio_cache = KMEM_CACHE(dm_target_io, 0);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100192 if (!_tio_cache)
193 goto out_free_io_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000195 _rq_tio_cache = KMEM_CACHE(dm_rq_target_io, 0);
196 if (!_rq_tio_cache)
197 goto out_free_tio_cache;
198
199 _rq_bio_info_cache = KMEM_CACHE(dm_rq_clone_bio_info, 0);
200 if (!_rq_bio_info_cache)
201 goto out_free_rq_tio_cache;
202
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100203 r = dm_uevent_init();
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100204 if (r)
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000205 goto out_free_rq_bio_info_cache;
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 _major = major;
208 r = register_blkdev(_major, _name);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100209 if (r < 0)
210 goto out_uevent_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212 if (!_major)
213 _major = r;
214
215 return 0;
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100216
217out_uevent_exit:
218 dm_uevent_exit();
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000219out_free_rq_bio_info_cache:
220 kmem_cache_destroy(_rq_bio_info_cache);
221out_free_rq_tio_cache:
222 kmem_cache_destroy(_rq_tio_cache);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100223out_free_tio_cache:
224 kmem_cache_destroy(_tio_cache);
225out_free_io_cache:
226 kmem_cache_destroy(_io_cache);
227
228 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229}
230
231static void local_exit(void)
232{
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000233 kmem_cache_destroy(_rq_bio_info_cache);
234 kmem_cache_destroy(_rq_tio_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 kmem_cache_destroy(_tio_cache);
236 kmem_cache_destroy(_io_cache);
Akinobu Mita00d59402007-07-17 04:03:46 -0700237 unregister_blkdev(_major, _name);
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100238 dm_uevent_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240 _major = 0;
241
242 DMINFO("cleaned up");
243}
244
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000245static int (*_inits[])(void) __initdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 local_init,
247 dm_target_init,
248 dm_linear_init,
249 dm_stripe_init,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100250 dm_kcopyd_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 dm_interface_init,
252};
253
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000254static void (*_exits[])(void) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 local_exit,
256 dm_target_exit,
257 dm_linear_exit,
258 dm_stripe_exit,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100259 dm_kcopyd_exit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 dm_interface_exit,
261};
262
263static int __init dm_init(void)
264{
265 const int count = ARRAY_SIZE(_inits);
266
267 int r, i;
268
269 for (i = 0; i < count; i++) {
270 r = _inits[i]();
271 if (r)
272 goto bad;
273 }
274
275 return 0;
276
277 bad:
278 while (i--)
279 _exits[i]();
280
281 return r;
282}
283
284static void __exit dm_exit(void)
285{
286 int i = ARRAY_SIZE(_exits);
287
288 while (i--)
289 _exits[i]();
290}
291
292/*
293 * Block device functions
294 */
Al Virofe5f9f22008-03-02 10:29:31 -0500295static int dm_blk_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296{
297 struct mapped_device *md;
298
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700299 spin_lock(&_minor_lock);
300
Al Virofe5f9f22008-03-02 10:29:31 -0500301 md = bdev->bd_disk->private_data;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700302 if (!md)
303 goto out;
304
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700305 if (test_bit(DMF_FREEING, &md->flags) ||
306 test_bit(DMF_DELETING, &md->flags)) {
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700307 md = NULL;
308 goto out;
309 }
310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 dm_get(md);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700312 atomic_inc(&md->open_count);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700313
314out:
315 spin_unlock(&_minor_lock);
316
317 return md ? 0 : -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318}
319
Al Virofe5f9f22008-03-02 10:29:31 -0500320static int dm_blk_close(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321{
Al Virofe5f9f22008-03-02 10:29:31 -0500322 struct mapped_device *md = disk->private_data;
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700323 atomic_dec(&md->open_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 dm_put(md);
325 return 0;
326}
327
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700328int dm_open_count(struct mapped_device *md)
329{
330 return atomic_read(&md->open_count);
331}
332
333/*
334 * Guarantees nothing is using the device before it's deleted.
335 */
336int dm_lock_for_deletion(struct mapped_device *md)
337{
338 int r = 0;
339
340 spin_lock(&_minor_lock);
341
342 if (dm_open_count(md))
343 r = -EBUSY;
344 else
345 set_bit(DMF_DELETING, &md->flags);
346
347 spin_unlock(&_minor_lock);
348
349 return r;
350}
351
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800352static int dm_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
353{
354 struct mapped_device *md = bdev->bd_disk->private_data;
355
356 return dm_get_geometry(md, geo);
357}
358
Al Virofe5f9f22008-03-02 10:29:31 -0500359static int dm_blk_ioctl(struct block_device *bdev, fmode_t mode,
Milan Brozaa129a22006-10-03 01:15:15 -0700360 unsigned int cmd, unsigned long arg)
361{
Al Virofe5f9f22008-03-02 10:29:31 -0500362 struct mapped_device *md = bdev->bd_disk->private_data;
363 struct dm_table *map = dm_get_table(md);
Milan Brozaa129a22006-10-03 01:15:15 -0700364 struct dm_target *tgt;
365 int r = -ENOTTY;
366
Milan Brozaa129a22006-10-03 01:15:15 -0700367 if (!map || !dm_table_get_size(map))
368 goto out;
369
370 /* We only support devices that have a single target */
371 if (dm_table_get_num_targets(map) != 1)
372 goto out;
373
374 tgt = dm_table_get_target(map, 0);
375
376 if (dm_suspended(md)) {
377 r = -EAGAIN;
378 goto out;
379 }
380
381 if (tgt->type->ioctl)
Al Viro647b3d02007-08-28 22:15:59 -0400382 r = tgt->type->ioctl(tgt, cmd, arg);
Milan Brozaa129a22006-10-03 01:15:15 -0700383
384out:
385 dm_table_put(map);
386
Milan Brozaa129a22006-10-03 01:15:15 -0700387 return r;
388}
389
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100390static struct dm_io *alloc_io(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391{
392 return mempool_alloc(md->io_pool, GFP_NOIO);
393}
394
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100395static void free_io(struct mapped_device *md, struct dm_io *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396{
397 mempool_free(io, md->io_pool);
398}
399
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100400static struct dm_target_io *alloc_tio(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401{
402 return mempool_alloc(md->tio_pool, GFP_NOIO);
403}
404
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100405static void free_tio(struct mapped_device *md, struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406{
407 mempool_free(tio, md->tio_pool);
408}
409
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800410static void start_io_acct(struct dm_io *io)
411{
412 struct mapped_device *md = io->md;
Tejun Heoc9959052008-08-25 19:47:21 +0900413 int cpu;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800414
415 io->start_time = jiffies;
416
Tejun Heo074a7ac2008-08-25 19:56:14 +0900417 cpu = part_stat_lock();
418 part_round_stats(cpu, &dm_disk(md)->part0);
419 part_stat_unlock();
420 dm_disk(md)->part0.in_flight = atomic_inc_return(&md->pending);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800421}
422
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000423static void end_io_acct(struct dm_io *io)
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800424{
425 struct mapped_device *md = io->md;
426 struct bio *bio = io->bio;
427 unsigned long duration = jiffies - io->start_time;
Tejun Heoc9959052008-08-25 19:47:21 +0900428 int pending, cpu;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800429 int rw = bio_data_dir(bio);
430
Tejun Heo074a7ac2008-08-25 19:56:14 +0900431 cpu = part_stat_lock();
432 part_round_stats(cpu, &dm_disk(md)->part0);
433 part_stat_add(cpu, &dm_disk(md)->part0, ticks[rw], duration);
434 part_stat_unlock();
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800435
Tejun Heo074a7ac2008-08-25 19:56:14 +0900436 dm_disk(md)->part0.in_flight = pending =
437 atomic_dec_return(&md->pending);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800438
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000439 /* nudge anyone waiting on suspend queue */
440 if (!pending)
441 wake_up(&md->wait);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800442}
443
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444/*
445 * Add the bio to the list of deferred io.
446 */
447static int queue_io(struct mapped_device *md, struct bio *bio)
448{
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700449 down_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451 if (!test_bit(DMF_BLOCK_IO, &md->flags)) {
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700452 up_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 return 1;
454 }
455
456 bio_list_add(&md->deferred, bio);
457
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700458 up_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 return 0; /* deferred successfully */
460}
461
462/*
463 * Everyone (including functions in this file), should use this
464 * function to access the md->map field, and make sure they call
465 * dm_table_put() when finished.
466 */
467struct dm_table *dm_get_table(struct mapped_device *md)
468{
469 struct dm_table *t;
470
471 read_lock(&md->map_lock);
472 t = md->map;
473 if (t)
474 dm_table_get(t);
475 read_unlock(&md->map_lock);
476
477 return t;
478}
479
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800480/*
481 * Get the geometry associated with a dm device
482 */
483int dm_get_geometry(struct mapped_device *md, struct hd_geometry *geo)
484{
485 *geo = md->geometry;
486
487 return 0;
488}
489
490/*
491 * Set the geometry of a device.
492 */
493int dm_set_geometry(struct mapped_device *md, struct hd_geometry *geo)
494{
495 sector_t sz = (sector_t)geo->cylinders * geo->heads * geo->sectors;
496
497 if (geo->start > sz) {
498 DMWARN("Start sector is beyond the geometry limits.");
499 return -EINVAL;
500 }
501
502 md->geometry = *geo;
503
504 return 0;
505}
506
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507/*-----------------------------------------------------------------
508 * CRUD START:
509 * A more elegant soln is in the works that uses the queue
510 * merge fn, unfortunately there are a couple of changes to
511 * the block layer that I want to make for this. So in the
512 * interests of getting something for people to use I give
513 * you this clearly demarcated crap.
514 *---------------------------------------------------------------*/
515
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800516static int __noflush_suspending(struct mapped_device *md)
517{
518 return test_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
519}
520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521/*
522 * Decrements the number of outstanding ios that a bio has been
523 * cloned into, completing the original io if necc.
524 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800525static void dec_pending(struct dm_io *io, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526{
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800527 unsigned long flags;
528
529 /* Push-back supersedes any I/O errors */
530 if (error && !(io->error > 0 && __noflush_suspending(io->md)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 io->error = error;
532
533 if (atomic_dec_and_test(&io->io_count)) {
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800534 if (io->error == DM_ENDIO_REQUEUE) {
535 /*
536 * Target requested pushing back the I/O.
537 * This must be handled before the sleeper on
538 * suspend queue merges the pushback list.
539 */
540 spin_lock_irqsave(&io->md->pushback_lock, flags);
541 if (__noflush_suspending(io->md))
542 bio_list_add(&io->md->pushback, io->bio);
543 else
544 /* noflush suspend was interrupted. */
545 io->error = -EIO;
546 spin_unlock_irqrestore(&io->md->pushback_lock, flags);
547 }
548
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000549 end_io_acct(io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800551 if (io->error != DM_ENDIO_REQUEUE) {
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100552 trace_block_bio_complete(io->md->queue, io->bio);
Jens Axboe2056a782006-03-23 20:00:26 +0100553
NeilBrown6712ecf2007-09-27 12:47:43 +0200554 bio_endio(io->bio, io->error);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800555 }
556
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 free_io(io->md, io);
558 }
559}
560
NeilBrown6712ecf2007-09-27 12:47:43 +0200561static void clone_endio(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562{
563 int r = 0;
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100564 struct dm_target_io *tio = bio->bi_private;
Stefan Bader9faf4002006-10-03 01:15:41 -0700565 struct mapped_device *md = tio->io->md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 dm_endio_fn endio = tio->ti->type->end_io;
567
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 if (!bio_flagged(bio, BIO_UPTODATE) && !error)
569 error = -EIO;
570
571 if (endio) {
572 r = endio(tio->ti, bio, error, &tio->info);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800573 if (r < 0 || r == DM_ENDIO_REQUEUE)
574 /*
575 * error and requeue request are handled
576 * in dec_pending().
577 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 error = r;
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800579 else if (r == DM_ENDIO_INCOMPLETE)
580 /* The target will handle the io */
NeilBrown6712ecf2007-09-27 12:47:43 +0200581 return;
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800582 else if (r) {
583 DMWARN("unimplemented target endio return value: %d", r);
584 BUG();
585 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 }
587
Stefan Bader9faf4002006-10-03 01:15:41 -0700588 dec_pending(tio->io, error);
589
590 /*
591 * Store md for cleanup instead of tio which is about to get freed.
592 */
593 bio->bi_private = md->bs;
594
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 bio_put(bio);
Stefan Bader9faf4002006-10-03 01:15:41 -0700596 free_tio(md, tio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597}
598
599static sector_t max_io_len(struct mapped_device *md,
600 sector_t sector, struct dm_target *ti)
601{
602 sector_t offset = sector - ti->begin;
603 sector_t len = ti->len - offset;
604
605 /*
606 * Does the target need to split even further ?
607 */
608 if (ti->split_io) {
609 sector_t boundary;
610 boundary = ((offset + ti->split_io) & ~(ti->split_io - 1))
611 - offset;
612 if (len > boundary)
613 len = boundary;
614 }
615
616 return len;
617}
618
619static void __map_bio(struct dm_target *ti, struct bio *clone,
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100620 struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621{
622 int r;
Jens Axboe2056a782006-03-23 20:00:26 +0100623 sector_t sector;
Stefan Bader9faf4002006-10-03 01:15:41 -0700624 struct mapped_device *md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
626 /*
627 * Sanity checks.
628 */
629 BUG_ON(!clone->bi_size);
630
631 clone->bi_end_io = clone_endio;
632 clone->bi_private = tio;
633
634 /*
635 * Map the clone. If r == 0 we don't need to do
636 * anything, the target has assumed ownership of
637 * this io.
638 */
639 atomic_inc(&tio->io->io_count);
Jens Axboe2056a782006-03-23 20:00:26 +0100640 sector = clone->bi_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 r = ti->type->map(ti, clone, &tio->info);
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800642 if (r == DM_MAPIO_REMAPPED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 /* the bio has been remapped so dispatch it */
Jens Axboe2056a782006-03-23 20:00:26 +0100644
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100645 trace_block_remap(bdev_get_queue(clone->bi_bdev), clone,
Alan D. Brunellec7149d62007-08-07 15:30:23 +0200646 tio->io->bio->bi_bdev->bd_dev,
647 clone->bi_sector, sector);
Jens Axboe2056a782006-03-23 20:00:26 +0100648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 generic_make_request(clone);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800650 } else if (r < 0 || r == DM_MAPIO_REQUEUE) {
651 /* error the io and bail out, or requeue it if needed */
Stefan Bader9faf4002006-10-03 01:15:41 -0700652 md = tio->io->md;
653 dec_pending(tio->io, r);
654 /*
655 * Store bio_set for cleanup.
656 */
657 clone->bi_private = md->bs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 bio_put(clone);
Stefan Bader9faf4002006-10-03 01:15:41 -0700659 free_tio(md, tio);
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800660 } else if (r) {
661 DMWARN("unimplemented target map return value: %d", r);
662 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 }
664}
665
666struct clone_info {
667 struct mapped_device *md;
668 struct dm_table *map;
669 struct bio *bio;
670 struct dm_io *io;
671 sector_t sector;
672 sector_t sector_count;
673 unsigned short idx;
674};
675
Peter Osterlund36763472005-09-06 15:16:42 -0700676static void dm_bio_destructor(struct bio *bio)
677{
Stefan Bader9faf4002006-10-03 01:15:41 -0700678 struct bio_set *bs = bio->bi_private;
679
680 bio_free(bio, bs);
Peter Osterlund36763472005-09-06 15:16:42 -0700681}
682
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683/*
684 * Creates a little bio that is just does part of a bvec.
685 */
686static struct bio *split_bvec(struct bio *bio, sector_t sector,
687 unsigned short idx, unsigned int offset,
Stefan Bader9faf4002006-10-03 01:15:41 -0700688 unsigned int len, struct bio_set *bs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689{
690 struct bio *clone;
691 struct bio_vec *bv = bio->bi_io_vec + idx;
692
Stefan Bader9faf4002006-10-03 01:15:41 -0700693 clone = bio_alloc_bioset(GFP_NOIO, 1, bs);
Peter Osterlund36763472005-09-06 15:16:42 -0700694 clone->bi_destructor = dm_bio_destructor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 *clone->bi_io_vec = *bv;
696
697 clone->bi_sector = sector;
698 clone->bi_bdev = bio->bi_bdev;
699 clone->bi_rw = bio->bi_rw;
700 clone->bi_vcnt = 1;
701 clone->bi_size = to_bytes(len);
702 clone->bi_io_vec->bv_offset = offset;
703 clone->bi_io_vec->bv_len = clone->bi_size;
Martin K. Petersenf3e1d262008-10-21 17:45:04 +0100704 clone->bi_flags |= 1 << BIO_CLONED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
706 return clone;
707}
708
709/*
710 * Creates a bio that consists of range of complete bvecs.
711 */
712static struct bio *clone_bio(struct bio *bio, sector_t sector,
713 unsigned short idx, unsigned short bv_count,
Stefan Bader9faf4002006-10-03 01:15:41 -0700714 unsigned int len, struct bio_set *bs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715{
716 struct bio *clone;
717
Stefan Bader9faf4002006-10-03 01:15:41 -0700718 clone = bio_alloc_bioset(GFP_NOIO, bio->bi_max_vecs, bs);
719 __bio_clone(clone, bio);
720 clone->bi_destructor = dm_bio_destructor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 clone->bi_sector = sector;
722 clone->bi_idx = idx;
723 clone->bi_vcnt = idx + bv_count;
724 clone->bi_size = to_bytes(len);
725 clone->bi_flags &= ~(1 << BIO_SEG_VALID);
726
727 return clone;
728}
729
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000730static int __clone_and_map(struct clone_info *ci)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731{
732 struct bio *clone, *bio = ci->bio;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000733 struct dm_target *ti;
734 sector_t len = 0, max;
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100735 struct dm_target_io *tio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000737 ti = dm_table_find_target(ci->map, ci->sector);
738 if (!dm_target_is_valid(ti))
739 return -EIO;
740
741 max = max_io_len(ci->md, ci->sector, ti);
742
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 /*
744 * Allocate a target io object.
745 */
746 tio = alloc_tio(ci->md);
747 tio->io = ci->io;
748 tio->ti = ti;
749 memset(&tio->info, 0, sizeof(tio->info));
750
751 if (ci->sector_count <= max) {
752 /*
753 * Optimise for the simple case where we can do all of
754 * the remaining io with a single clone.
755 */
756 clone = clone_bio(bio, ci->sector, ci->idx,
Stefan Bader9faf4002006-10-03 01:15:41 -0700757 bio->bi_vcnt - ci->idx, ci->sector_count,
758 ci->md->bs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 __map_bio(ti, clone, tio);
760 ci->sector_count = 0;
761
762 } else if (to_sector(bio->bi_io_vec[ci->idx].bv_len) <= max) {
763 /*
764 * There are some bvecs that don't span targets.
765 * Do as many of these as possible.
766 */
767 int i;
768 sector_t remaining = max;
769 sector_t bv_len;
770
771 for (i = ci->idx; remaining && (i < bio->bi_vcnt); i++) {
772 bv_len = to_sector(bio->bi_io_vec[i].bv_len);
773
774 if (bv_len > remaining)
775 break;
776
777 remaining -= bv_len;
778 len += bv_len;
779 }
780
Stefan Bader9faf4002006-10-03 01:15:41 -0700781 clone = clone_bio(bio, ci->sector, ci->idx, i - ci->idx, len,
782 ci->md->bs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 __map_bio(ti, clone, tio);
784
785 ci->sector += len;
786 ci->sector_count -= len;
787 ci->idx = i;
788
789 } else {
790 /*
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800791 * Handle a bvec that must be split between two or more targets.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 */
793 struct bio_vec *bv = bio->bi_io_vec + ci->idx;
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800794 sector_t remaining = to_sector(bv->bv_len);
795 unsigned int offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800797 do {
798 if (offset) {
799 ti = dm_table_find_target(ci->map, ci->sector);
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000800 if (!dm_target_is_valid(ti))
801 return -EIO;
802
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800803 max = max_io_len(ci->md, ci->sector, ti);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800805 tio = alloc_tio(ci->md);
806 tio->io = ci->io;
807 tio->ti = ti;
808 memset(&tio->info, 0, sizeof(tio->info));
809 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800811 len = min(remaining, max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800813 clone = split_bvec(bio, ci->sector, ci->idx,
Stefan Bader9faf4002006-10-03 01:15:41 -0700814 bv->bv_offset + offset, len,
815 ci->md->bs);
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800816
817 __map_bio(ti, clone, tio);
818
819 ci->sector += len;
820 ci->sector_count -= len;
821 offset += to_bytes(len);
822 } while (remaining -= len);
823
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 ci->idx++;
825 }
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000826
827 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828}
829
830/*
831 * Split the bio into several clones.
832 */
Milan Broz9e4e5f82007-10-19 22:38:53 +0100833static int __split_bio(struct mapped_device *md, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834{
835 struct clone_info ci;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000836 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
838 ci.map = dm_get_table(md);
Milan Broz9e4e5f82007-10-19 22:38:53 +0100839 if (unlikely(!ci.map))
840 return -EIO;
Andi Kleenab4c142482009-01-06 03:05:09 +0000841 if (unlikely(bio_barrier(bio) && !dm_table_barrier_ok(ci.map))) {
842 dm_table_put(ci.map);
843 bio_endio(bio, -EOPNOTSUPP);
844 return 0;
845 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 ci.md = md;
847 ci.bio = bio;
848 ci.io = alloc_io(md);
849 ci.io->error = 0;
850 atomic_set(&ci.io->io_count, 1);
851 ci.io->bio = bio;
852 ci.io->md = md;
853 ci.sector = bio->bi_sector;
854 ci.sector_count = bio_sectors(bio);
855 ci.idx = bio->bi_idx;
856
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800857 start_io_acct(ci.io);
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000858 while (ci.sector_count && !error)
859 error = __clone_and_map(&ci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
861 /* drop the extra reference count */
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000862 dec_pending(ci.io, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 dm_table_put(ci.map);
Milan Broz9e4e5f82007-10-19 22:38:53 +0100864
865 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866}
867/*-----------------------------------------------------------------
868 * CRUD END
869 *---------------------------------------------------------------*/
870
Milan Brozf6fccb12008-07-21 12:00:37 +0100871static int dm_merge_bvec(struct request_queue *q,
872 struct bvec_merge_data *bvm,
873 struct bio_vec *biovec)
874{
875 struct mapped_device *md = q->queuedata;
876 struct dm_table *map = dm_get_table(md);
877 struct dm_target *ti;
878 sector_t max_sectors;
Mikulas Patocka50371082008-10-01 14:39:17 +0100879 int max_size = 0;
Milan Brozf6fccb12008-07-21 12:00:37 +0100880
881 if (unlikely(!map))
Mikulas Patocka50371082008-10-01 14:39:17 +0100882 goto out;
Milan Brozf6fccb12008-07-21 12:00:37 +0100883
884 ti = dm_table_find_target(map, bvm->bi_sector);
Mikulas Patockab01cd5a2008-10-01 14:39:24 +0100885 if (!dm_target_is_valid(ti))
886 goto out_table;
Milan Brozf6fccb12008-07-21 12:00:37 +0100887
888 /*
889 * Find maximum amount of I/O that won't need splitting
890 */
891 max_sectors = min(max_io_len(md, bvm->bi_sector, ti),
892 (sector_t) BIO_MAX_SECTORS);
893 max_size = (max_sectors << SECTOR_SHIFT) - bvm->bi_size;
894 if (max_size < 0)
895 max_size = 0;
896
897 /*
898 * merge_bvec_fn() returns number of bytes
899 * it can accept at this offset
900 * max is precomputed maximal io size
901 */
902 if (max_size && ti->type->merge)
903 max_size = ti->type->merge(ti, bvm, biovec, max_size);
904
Mikulas Patockab01cd5a2008-10-01 14:39:24 +0100905out_table:
Mikulas Patocka50371082008-10-01 14:39:17 +0100906 dm_table_put(map);
907
908out:
Milan Brozf6fccb12008-07-21 12:00:37 +0100909 /*
910 * Always allow an entire first page
911 */
912 if (max_size <= biovec->bv_len && !(bvm->bi_size >> SECTOR_SHIFT))
913 max_size = biovec->bv_len;
914
Milan Brozf6fccb12008-07-21 12:00:37 +0100915 return max_size;
916}
917
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918/*
919 * The request function that just remaps the bio built up by
920 * dm_merge_bvec.
921 */
Jens Axboe165125e2007-07-24 09:28:11 +0200922static int dm_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923{
Milan Broz9e4e5f82007-10-19 22:38:53 +0100924 int r = -EIO;
Kevin Corry12f03a42006-02-01 03:04:52 -0800925 int rw = bio_data_dir(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 struct mapped_device *md = q->queuedata;
Tejun Heoc9959052008-08-25 19:47:21 +0900927 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700929 down_read(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
Tejun Heo074a7ac2008-08-25 19:56:14 +0900931 cpu = part_stat_lock();
932 part_stat_inc(cpu, &dm_disk(md)->part0, ios[rw]);
933 part_stat_add(cpu, &dm_disk(md)->part0, sectors[rw], bio_sectors(bio));
934 part_stat_unlock();
Kevin Corry12f03a42006-02-01 03:04:52 -0800935
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 /*
937 * If we're suspended we have to queue
938 * this io for later.
939 */
940 while (test_bit(DMF_BLOCK_IO, &md->flags)) {
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700941 up_read(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
Milan Broz9e4e5f82007-10-19 22:38:53 +0100943 if (bio_rw(bio) != READA)
944 r = queue_io(md, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
Milan Broz9e4e5f82007-10-19 22:38:53 +0100946 if (r <= 0)
947 goto out_req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948
949 /*
950 * We're in a while loop, because someone could suspend
951 * before we get to the following read lock.
952 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700953 down_read(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 }
955
Milan Broz9e4e5f82007-10-19 22:38:53 +0100956 r = __split_bio(md, bio);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700957 up_read(&md->io_lock);
Milan Broz9e4e5f82007-10-19 22:38:53 +0100958
959out_req:
960 if (r < 0)
961 bio_io_error(bio);
962
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 return 0;
964}
965
Jens Axboe165125e2007-07-24 09:28:11 +0200966static void dm_unplug_all(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967{
968 struct mapped_device *md = q->queuedata;
969 struct dm_table *map = dm_get_table(md);
970
971 if (map) {
972 dm_table_unplug_all(map);
973 dm_table_put(map);
974 }
975}
976
977static int dm_any_congested(void *congested_data, int bdi_bits)
978{
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +0000979 int r = bdi_bits;
980 struct mapped_device *md = congested_data;
981 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +0000983 if (!test_bit(DMF_BLOCK_IO, &md->flags)) {
984 map = dm_get_table(md);
985 if (map) {
986 r = dm_table_any_congested(map, bdi_bits);
987 dm_table_put(map);
988 }
989 }
990
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 return r;
992}
993
994/*-----------------------------------------------------------------
995 * An IDR is used to keep track of allocated minor numbers.
996 *---------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997static DEFINE_IDR(_minor_idr);
998
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -0700999static void free_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000{
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001001 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 idr_remove(&_minor_idr, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001003 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004}
1005
1006/*
1007 * See if the device with a specific minor # is free.
1008 */
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001009static int specific_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010{
1011 int r, m;
1012
1013 if (minor >= (1 << MINORBITS))
1014 return -EINVAL;
1015
Jeff Mahoney62f75c22006-06-26 00:27:21 -07001016 r = idr_pre_get(&_minor_idr, GFP_KERNEL);
1017 if (!r)
1018 return -ENOMEM;
1019
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001020 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
1022 if (idr_find(&_minor_idr, minor)) {
1023 r = -EBUSY;
1024 goto out;
1025 }
1026
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001027 r = idr_get_new_above(&_minor_idr, MINOR_ALLOCED, minor, &m);
Jeff Mahoney62f75c22006-06-26 00:27:21 -07001028 if (r)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
1031 if (m != minor) {
1032 idr_remove(&_minor_idr, m);
1033 r = -EBUSY;
1034 goto out;
1035 }
1036
1037out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001038 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 return r;
1040}
1041
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001042static int next_free_minor(int *minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043{
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001044 int r, m;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 r = idr_pre_get(&_minor_idr, GFP_KERNEL);
Jeff Mahoney62f75c22006-06-26 00:27:21 -07001047 if (!r)
1048 return -ENOMEM;
1049
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001050 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001052 r = idr_get_new(&_minor_idr, MINOR_ALLOCED, &m);
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001053 if (r)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
1056 if (m >= (1 << MINORBITS)) {
1057 idr_remove(&_minor_idr, m);
1058 r = -ENOSPC;
1059 goto out;
1060 }
1061
1062 *minor = m;
1063
1064out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001065 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 return r;
1067}
1068
1069static struct block_device_operations dm_blk_dops;
1070
1071/*
1072 * Allocate and initialise a blank device with a given minor.
1073 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001074static struct mapped_device *alloc_dev(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075{
1076 int r;
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001077 struct mapped_device *md = kzalloc(sizeof(*md), GFP_KERNEL);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001078 void *old_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
1080 if (!md) {
1081 DMWARN("unable to allocate device, out of memory.");
1082 return NULL;
1083 }
1084
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001085 if (!try_module_get(THIS_MODULE))
Milan Broz6ed7ade2008-02-08 02:10:19 +00001086 goto bad_module_get;
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001087
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 /* get a minor number for the dev */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001089 if (minor == DM_ANY_MINOR)
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001090 r = next_free_minor(&minor);
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001091 else
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001092 r = specific_minor(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 if (r < 0)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001094 goto bad_minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001096 init_rwsem(&md->io_lock);
Daniel Walkere61290a2008-02-08 02:10:08 +00001097 mutex_init(&md->suspend_lock);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001098 spin_lock_init(&md->pushback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 rwlock_init(&md->map_lock);
1100 atomic_set(&md->holders, 1);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -07001101 atomic_set(&md->open_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 atomic_set(&md->event_nr, 0);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001103 atomic_set(&md->uevent_seq, 0);
1104 INIT_LIST_HEAD(&md->uevent_list);
1105 spin_lock_init(&md->uevent_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
1107 md->queue = blk_alloc_queue(GFP_KERNEL);
1108 if (!md->queue)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001109 goto bad_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110
1111 md->queue->queuedata = md;
1112 md->queue->backing_dev_info.congested_fn = dm_any_congested;
1113 md->queue->backing_dev_info.congested_data = md;
1114 blk_queue_make_request(md->queue, dm_request);
Jens Axboedaef2652006-01-10 10:48:02 +01001115 blk_queue_bounce_limit(md->queue, BLK_BOUNCE_ANY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 md->queue->unplug_fn = dm_unplug_all;
Milan Brozf6fccb12008-07-21 12:00:37 +01001117 blk_queue_merge_bvec(md->queue, dm_merge_bvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
Matthew Dobson93d23412006-03-26 01:37:50 -08001119 md->io_pool = mempool_create_slab_pool(MIN_IOS, _io_cache);
Kiyoshi Ueda74859362006-12-08 02:41:02 -08001120 if (!md->io_pool)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001121 goto bad_io_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
Matthew Dobson93d23412006-03-26 01:37:50 -08001123 md->tio_pool = mempool_create_slab_pool(MIN_IOS, _tio_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 if (!md->tio_pool)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001125 goto bad_tio_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
Jens Axboebb799ca2008-12-10 15:35:05 +01001127 md->bs = bioset_create(16, 0);
Stefan Bader9faf4002006-10-03 01:15:41 -07001128 if (!md->bs)
1129 goto bad_no_bioset;
1130
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 md->disk = alloc_disk(1);
1132 if (!md->disk)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001133 goto bad_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07001135 atomic_set(&md->pending, 0);
1136 init_waitqueue_head(&md->wait);
1137 init_waitqueue_head(&md->eventq);
1138
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 md->disk->major = _major;
1140 md->disk->first_minor = minor;
1141 md->disk->fops = &dm_blk_dops;
1142 md->disk->queue = md->queue;
1143 md->disk->private_data = md;
1144 sprintf(md->disk->disk_name, "dm-%d", minor);
1145 add_disk(md->disk);
Mike Anderson7e51f252006-03-27 01:17:52 -08001146 format_dev_t(md->name, MKDEV(_major, minor));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
Milan Broz304f3f62008-02-08 02:11:17 +00001148 md->wq = create_singlethread_workqueue("kdmflush");
1149 if (!md->wq)
1150 goto bad_thread;
1151
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001152 /* Populate the mapping, nobody knows we exist yet */
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001153 spin_lock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001154 old_md = idr_replace(&_minor_idr, md, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001155 spin_unlock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001156
1157 BUG_ON(old_md != MINOR_ALLOCED);
1158
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 return md;
1160
Milan Broz304f3f62008-02-08 02:11:17 +00001161bad_thread:
1162 put_disk(md->disk);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001163bad_disk:
Stefan Bader9faf4002006-10-03 01:15:41 -07001164 bioset_free(md->bs);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001165bad_no_bioset:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 mempool_destroy(md->tio_pool);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001167bad_tio_pool:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 mempool_destroy(md->io_pool);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001169bad_io_pool:
Al Viro1312f402006-03-12 11:02:03 -05001170 blk_cleanup_queue(md->queue);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001171bad_queue:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 free_minor(minor);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001173bad_minor:
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001174 module_put(THIS_MODULE);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001175bad_module_get:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 kfree(md);
1177 return NULL;
1178}
1179
Jun'ichi Nomuraae9da832007-10-19 22:38:43 +01001180static void unlock_fs(struct mapped_device *md);
1181
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182static void free_dev(struct mapped_device *md)
1183{
Tejun Heof331c022008-09-03 09:01:48 +02001184 int minor = MINOR(disk_devt(md->disk));
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08001185
Jun'ichi Nomurad9dde592006-02-24 13:04:24 -08001186 if (md->suspended_bdev) {
Jun'ichi Nomuraae9da832007-10-19 22:38:43 +01001187 unlock_fs(md);
Jun'ichi Nomurad9dde592006-02-24 13:04:24 -08001188 bdput(md->suspended_bdev);
1189 }
Milan Broz304f3f62008-02-08 02:11:17 +00001190 destroy_workqueue(md->wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 mempool_destroy(md->tio_pool);
1192 mempool_destroy(md->io_pool);
Stefan Bader9faf4002006-10-03 01:15:41 -07001193 bioset_free(md->bs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 del_gendisk(md->disk);
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08001195 free_minor(minor);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001196
1197 spin_lock(&_minor_lock);
1198 md->disk->private_data = NULL;
1199 spin_unlock(&_minor_lock);
1200
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 put_disk(md->disk);
Al Viro1312f402006-03-12 11:02:03 -05001202 blk_cleanup_queue(md->queue);
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001203 module_put(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 kfree(md);
1205}
1206
1207/*
1208 * Bind a table to the device.
1209 */
1210static void event_callback(void *context)
1211{
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001212 unsigned long flags;
1213 LIST_HEAD(uevents);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 struct mapped_device *md = (struct mapped_device *) context;
1215
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001216 spin_lock_irqsave(&md->uevent_lock, flags);
1217 list_splice_init(&md->uevent_list, &uevents);
1218 spin_unlock_irqrestore(&md->uevent_lock, flags);
1219
Tejun Heoed9e1982008-08-25 19:56:05 +09001220 dm_send_uevents(&uevents, &disk_to_dev(md->disk)->kobj);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001221
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 atomic_inc(&md->event_nr);
1223 wake_up(&md->eventq);
1224}
1225
Alasdair G Kergon4e90188be2005-07-28 21:15:59 -07001226static void __set_size(struct mapped_device *md, sector_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227{
Alasdair G Kergon4e90188be2005-07-28 21:15:59 -07001228 set_capacity(md->disk, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001230 mutex_lock(&md->suspended_bdev->bd_inode->i_mutex);
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001231 i_size_write(md->suspended_bdev->bd_inode, (loff_t)size << SECTOR_SHIFT);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001232 mutex_unlock(&md->suspended_bdev->bd_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233}
1234
1235static int __bind(struct mapped_device *md, struct dm_table *t)
1236{
Jens Axboe165125e2007-07-24 09:28:11 +02001237 struct request_queue *q = md->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 sector_t size;
1239
1240 size = dm_table_get_size(t);
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08001241
1242 /*
1243 * Wipe any geometry if the size of the table changed.
1244 */
1245 if (size != get_capacity(md->disk))
1246 memset(&md->geometry, 0, sizeof(md->geometry));
1247
Jun'ichi Nomurabfa152f2007-01-26 00:57:07 -08001248 if (md->suspended_bdev)
1249 __set_size(md, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
Mikulas Patockad5816872009-01-06 03:05:10 +00001251 if (!size) {
1252 dm_table_destroy(t);
1253 return 0;
1254 }
1255
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001256 dm_table_event_callback(t, event_callback, md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001257
1258 write_lock(&md->map_lock);
1259 md->map = t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 dm_table_set_restrictions(t, q);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001261 write_unlock(&md->map_lock);
1262
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 return 0;
1264}
1265
1266static void __unbind(struct mapped_device *md)
1267{
1268 struct dm_table *map = md->map;
1269
1270 if (!map)
1271 return;
1272
1273 dm_table_event_callback(map, NULL, NULL);
1274 write_lock(&md->map_lock);
1275 md->map = NULL;
1276 write_unlock(&md->map_lock);
Mikulas Patockad5816872009-01-06 03:05:10 +00001277 dm_table_destroy(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278}
1279
1280/*
1281 * Constructor for a new device.
1282 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001283int dm_create(int minor, struct mapped_device **result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284{
1285 struct mapped_device *md;
1286
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001287 md = alloc_dev(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 if (!md)
1289 return -ENXIO;
1290
Milan Broz784aae72009-01-06 03:05:12 +00001291 dm_sysfs_init(md);
1292
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 *result = md;
1294 return 0;
1295}
1296
David Teigland637842c2006-01-06 00:20:00 -08001297static struct mapped_device *dm_find_md(dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298{
1299 struct mapped_device *md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 unsigned minor = MINOR(dev);
1301
1302 if (MAJOR(dev) != _major || minor >= (1 << MINORBITS))
1303 return NULL;
1304
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001305 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
1307 md = idr_find(&_minor_idr, minor);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001308 if (md && (md == MINOR_ALLOCED ||
Tejun Heof331c022008-09-03 09:01:48 +02001309 (MINOR(disk_devt(dm_disk(md))) != minor) ||
Alasdair G Kergon17b2f662006-06-26 00:27:33 -07001310 test_bit(DMF_FREEING, &md->flags))) {
David Teigland637842c2006-01-06 00:20:00 -08001311 md = NULL;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001312 goto out;
1313 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001315out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001316 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317
David Teigland637842c2006-01-06 00:20:00 -08001318 return md;
1319}
1320
David Teiglandd229a952006-01-06 00:20:01 -08001321struct mapped_device *dm_get_md(dev_t dev)
1322{
1323 struct mapped_device *md = dm_find_md(dev);
1324
1325 if (md)
1326 dm_get(md);
1327
1328 return md;
1329}
1330
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08001331void *dm_get_mdptr(struct mapped_device *md)
David Teigland637842c2006-01-06 00:20:00 -08001332{
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08001333 return md->interface_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334}
1335
1336void dm_set_mdptr(struct mapped_device *md, void *ptr)
1337{
1338 md->interface_ptr = ptr;
1339}
1340
1341void dm_get(struct mapped_device *md)
1342{
1343 atomic_inc(&md->holders);
1344}
1345
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001346const char *dm_device_name(struct mapped_device *md)
1347{
1348 return md->name;
1349}
1350EXPORT_SYMBOL_GPL(dm_device_name);
1351
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352void dm_put(struct mapped_device *md)
1353{
Mike Anderson1134e5a2006-03-27 01:17:54 -08001354 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001356 BUG_ON(test_bit(DMF_FREEING, &md->flags));
1357
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001358 if (atomic_dec_and_lock(&md->holders, &_minor_lock)) {
Mike Anderson1134e5a2006-03-27 01:17:54 -08001359 map = dm_get_table(md);
Tejun Heof331c022008-09-03 09:01:48 +02001360 idr_replace(&_minor_idr, MINOR_ALLOCED,
1361 MINOR(disk_devt(dm_disk(md))));
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001362 set_bit(DMF_FREEING, &md->flags);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001363 spin_unlock(&_minor_lock);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001364 if (!dm_suspended(md)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 dm_table_presuspend_targets(map);
1366 dm_table_postsuspend_targets(map);
1367 }
Milan Broz784aae72009-01-06 03:05:12 +00001368 dm_sysfs_exit(md);
Mike Anderson1134e5a2006-03-27 01:17:54 -08001369 dm_table_put(map);
Mikulas Patockaa1b51e92009-01-06 03:04:53 +00001370 __unbind(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 free_dev(md);
1372 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373}
Edward Goggin79eb8852007-05-09 02:32:56 -07001374EXPORT_SYMBOL_GPL(dm_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375
Milan Broz46125c12008-02-08 02:10:30 +00001376static int dm_wait_for_completion(struct mapped_device *md)
1377{
1378 int r = 0;
1379
1380 while (1) {
1381 set_current_state(TASK_INTERRUPTIBLE);
1382
1383 smp_mb();
1384 if (!atomic_read(&md->pending))
1385 break;
1386
1387 if (signal_pending(current)) {
1388 r = -EINTR;
1389 break;
1390 }
1391
1392 io_schedule();
1393 }
1394 set_current_state(TASK_RUNNING);
1395
1396 return r;
1397}
1398
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399/*
1400 * Process the deferred bios
1401 */
Milan Broz6d6f10d2008-02-08 02:10:22 +00001402static void __flush_deferred_io(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403{
Milan Broz6d6f10d2008-02-08 02:10:22 +00001404 struct bio *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
Milan Broz6d6f10d2008-02-08 02:10:22 +00001406 while ((c = bio_list_pop(&md->deferred))) {
Milan Broz9e4e5f82007-10-19 22:38:53 +01001407 if (__split_bio(md, c))
1408 bio_io_error(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 }
Milan Broz73d410c2008-02-08 02:10:25 +00001410
1411 clear_bit(DMF_BLOCK_IO, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412}
1413
Milan Broz6d6f10d2008-02-08 02:10:22 +00001414static void __merge_pushback_list(struct mapped_device *md)
1415{
1416 unsigned long flags;
1417
1418 spin_lock_irqsave(&md->pushback_lock, flags);
1419 clear_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
1420 bio_list_merge_head(&md->deferred, &md->pushback);
1421 bio_list_init(&md->pushback);
1422 spin_unlock_irqrestore(&md->pushback_lock, flags);
1423}
1424
Milan Broz304f3f62008-02-08 02:11:17 +00001425static void dm_wq_work(struct work_struct *work)
1426{
1427 struct dm_wq_req *req = container_of(work, struct dm_wq_req, work);
1428 struct mapped_device *md = req->md;
1429
1430 down_write(&md->io_lock);
1431 switch (req->type) {
Milan Broz304f3f62008-02-08 02:11:17 +00001432 case DM_WQ_FLUSH_DEFERRED:
1433 __flush_deferred_io(md);
1434 break;
1435 default:
1436 DMERR("dm_wq_work: unrecognised work type %d", req->type);
1437 BUG();
1438 }
1439 up_write(&md->io_lock);
1440}
1441
1442static void dm_wq_queue(struct mapped_device *md, int type, void *context,
1443 struct dm_wq_req *req)
1444{
1445 req->type = type;
1446 req->md = md;
1447 req->context = context;
1448 INIT_WORK(&req->work, dm_wq_work);
1449 queue_work(md->wq, &req->work);
1450}
1451
1452static void dm_queue_flush(struct mapped_device *md, int type, void *context)
1453{
1454 struct dm_wq_req req;
1455
1456 dm_wq_queue(md, type, context, &req);
1457 flush_workqueue(md->wq);
1458}
1459
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460/*
1461 * Swap in a new table (destroying old one).
1462 */
1463int dm_swap_table(struct mapped_device *md, struct dm_table *table)
1464{
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07001465 int r = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466
Daniel Walkere61290a2008-02-08 02:10:08 +00001467 mutex_lock(&md->suspend_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468
1469 /* device must be suspended */
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001470 if (!dm_suspended(md))
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07001471 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
Jun'ichi Nomurabfa152f2007-01-26 00:57:07 -08001473 /* without bdev, the device size cannot be changed */
1474 if (!md->suspended_bdev)
1475 if (get_capacity(md->disk) != dm_table_get_size(table))
1476 goto out;
1477
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 __unbind(md);
1479 r = __bind(md, table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07001481out:
Daniel Walkere61290a2008-02-08 02:10:08 +00001482 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07001483 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484}
1485
1486/*
1487 * Functions to lock and unlock any filesystem running on the
1488 * device.
1489 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001490static int lock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491{
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001492 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493
1494 WARN_ON(md->frozen_sb);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07001495
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001496 md->frozen_sb = freeze_bdev(md->suspended_bdev);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07001497 if (IS_ERR(md->frozen_sb)) {
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001498 r = PTR_ERR(md->frozen_sb);
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001499 md->frozen_sb = NULL;
1500 return r;
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07001501 }
1502
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08001503 set_bit(DMF_FROZEN, &md->flags);
1504
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 /* don't bdput right now, we don't want the bdev
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001506 * to go away while it is locked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 */
1508 return 0;
1509}
1510
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001511static void unlock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512{
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08001513 if (!test_bit(DMF_FROZEN, &md->flags))
1514 return;
1515
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001516 thaw_bdev(md->suspended_bdev, md->frozen_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 md->frozen_sb = NULL;
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08001518 clear_bit(DMF_FROZEN, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519}
1520
1521/*
1522 * We need to be able to change a mapping table under a mounted
1523 * filesystem. For example we might want to move some data in
1524 * the background. Before the table can be swapped with
1525 * dm_bind_table, dm_suspend must be called to flush any in
1526 * flight bios and ensure that any further io gets deferred.
1527 */
Kiyoshi Uedaa3d77d32006-12-08 02:41:04 -08001528int dm_suspend(struct mapped_device *md, unsigned suspend_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529{
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001530 struct dm_table *map = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 DECLARE_WAITQUEUE(wait, current);
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
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 add_wait_queue(&md->wait, &wait);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001582 up_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
1584 /* unplug */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001585 if (map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 dm_table_unplug_all(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
1588 /*
Milan Broz46125c12008-02-08 02:10:30 +00001589 * Wait for the already-mapped ios to complete.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 */
Milan Broz46125c12008-02-08 02:10:30 +00001591 r = dm_wait_for_completion(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001593 down_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 remove_wait_queue(&md->wait, &wait);
1595
Milan Broz6d6f10d2008-02-08 02:10:22 +00001596 if (noflush)
1597 __merge_pushback_list(md);
Milan Broz94d63512008-02-08 02:10:27 +00001598 up_write(&md->io_lock);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001599
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 /* were we interrupted ? */
Milan Broz46125c12008-02-08 02:10:30 +00001601 if (r < 0) {
Milan Broz304f3f62008-02-08 02:11:17 +00001602 dm_queue_flush(md, DM_WQ_FLUSH_DEFERRED, NULL);
Milan Broz73d410c2008-02-08 02:10:25 +00001603
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001604 unlock_fs(md);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001605 goto out; /* pushback list is already flushed, so skip flush */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001606 }
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001607
1608 dm_table_postsuspend_targets(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
1610 set_bit(DMF_SUSPENDED, &md->flags);
1611
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001612out:
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001613 if (r && md->suspended_bdev) {
1614 bdput(md->suspended_bdev);
1615 md->suspended_bdev = NULL;
1616 }
1617
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 dm_table_put(map);
Alasdair G Kergond2874832006-11-08 17:44:43 -08001619
1620out_unlock:
Daniel Walkere61290a2008-02-08 02:10:08 +00001621 mutex_unlock(&md->suspend_lock);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001622 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623}
1624
1625int dm_resume(struct mapped_device *md)
1626{
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001627 int r = -EINVAL;
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001628 struct dm_table *map = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629
Daniel Walkere61290a2008-02-08 02:10:08 +00001630 mutex_lock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001631 if (!dm_suspended(md))
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001632 goto out;
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001633
1634 map = dm_get_table(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001635 if (!map || !dm_table_get_size(map))
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001636 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637
Milan Broz8757b772006-10-03 01:15:36 -07001638 r = dm_table_resume_targets(map);
1639 if (r)
1640 goto out;
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001641
Milan Broz304f3f62008-02-08 02:11:17 +00001642 dm_queue_flush(md, DM_WQ_FLUSH_DEFERRED, NULL);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001643
1644 unlock_fs(md);
1645
Jun'ichi Nomurabfa152f2007-01-26 00:57:07 -08001646 if (md->suspended_bdev) {
1647 bdput(md->suspended_bdev);
1648 md->suspended_bdev = NULL;
1649 }
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001650
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001651 clear_bit(DMF_SUSPENDED, &md->flags);
1652
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 dm_table_unplug_all(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654
Alasdair G Kergon69267a32007-12-13 14:15:57 +00001655 dm_kobject_uevent(md);
Hannes Reinecke8560ed62006-10-03 01:15:35 -07001656
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001657 r = 0;
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001658
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001659out:
1660 dm_table_put(map);
Daniel Walkere61290a2008-02-08 02:10:08 +00001661 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001662
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001663 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664}
1665
1666/*-----------------------------------------------------------------
1667 * Event notification.
1668 *---------------------------------------------------------------*/
Alasdair G Kergon69267a32007-12-13 14:15:57 +00001669void dm_kobject_uevent(struct mapped_device *md)
1670{
Tejun Heoed9e1982008-08-25 19:56:05 +09001671 kobject_uevent(&disk_to_dev(md->disk)->kobj, KOBJ_CHANGE);
Alasdair G Kergon69267a32007-12-13 14:15:57 +00001672}
1673
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001674uint32_t dm_next_uevent_seq(struct mapped_device *md)
1675{
1676 return atomic_add_return(1, &md->uevent_seq);
1677}
1678
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679uint32_t dm_get_event_nr(struct mapped_device *md)
1680{
1681 return atomic_read(&md->event_nr);
1682}
1683
1684int dm_wait_event(struct mapped_device *md, int event_nr)
1685{
1686 return wait_event_interruptible(md->eventq,
1687 (event_nr != atomic_read(&md->event_nr)));
1688}
1689
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001690void dm_uevent_add(struct mapped_device *md, struct list_head *elist)
1691{
1692 unsigned long flags;
1693
1694 spin_lock_irqsave(&md->uevent_lock, flags);
1695 list_add(elist, &md->uevent_list);
1696 spin_unlock_irqrestore(&md->uevent_lock, flags);
1697}
1698
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699/*
1700 * The gendisk is only valid as long as you have a reference
1701 * count on 'md'.
1702 */
1703struct gendisk *dm_disk(struct mapped_device *md)
1704{
1705 return md->disk;
1706}
1707
Milan Broz784aae72009-01-06 03:05:12 +00001708struct kobject *dm_kobject(struct mapped_device *md)
1709{
1710 return &md->kobj;
1711}
1712
1713/*
1714 * struct mapped_device should not be exported outside of dm.c
1715 * so use this check to verify that kobj is part of md structure
1716 */
1717struct mapped_device *dm_get_from_kobject(struct kobject *kobj)
1718{
1719 struct mapped_device *md;
1720
1721 md = container_of(kobj, struct mapped_device, kobj);
1722 if (&md->kobj != kobj)
1723 return NULL;
1724
1725 dm_get(md);
1726 return md;
1727}
1728
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729int dm_suspended(struct mapped_device *md)
1730{
1731 return test_bit(DMF_SUSPENDED, &md->flags);
1732}
1733
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001734int dm_noflush_suspending(struct dm_target *ti)
1735{
1736 struct mapped_device *md = dm_table_get_md(ti->table);
1737 int r = __noflush_suspending(md);
1738
1739 dm_put(md);
1740
1741 return r;
1742}
1743EXPORT_SYMBOL_GPL(dm_noflush_suspending);
1744
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745static struct block_device_operations dm_blk_dops = {
1746 .open = dm_blk_open,
1747 .release = dm_blk_close,
Milan Brozaa129a22006-10-03 01:15:15 -07001748 .ioctl = dm_blk_ioctl,
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08001749 .getgeo = dm_blk_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 .owner = THIS_MODULE
1751};
1752
1753EXPORT_SYMBOL(dm_get_mapinfo);
1754
1755/*
1756 * module hooks
1757 */
1758module_init(dm_init);
1759module_exit(dm_exit);
1760
1761module_param(major, uint, 0);
1762MODULE_PARM_DESC(major, "The major number of the device mapper");
1763MODULE_DESCRIPTION(DM_NAME " driver");
1764MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
1765MODULE_LICENSE("GPL");