blob: ae21833b270a8323d78db5a2826c12b1b0c904bd [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2001, 2002 Sistina Software (UK) Limited.
Milan Broz784aae72009-01-06 03:05:12 +00003 * Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * This file is released under the GPL.
6 */
7
8#include "dm.h"
9#include "dm-bio-list.h"
Mike Anderson51e5b2b2007-10-19 22:48:00 +010010#include "dm-uevent.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
12#include <linux/init.h>
13#include <linux/module.h>
Arjan van de Ven48c9c272006-03-27 01:18:20 -080014#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/moduleparam.h>
16#include <linux/blkpg.h>
17#include <linux/bio.h>
18#include <linux/buffer_head.h>
19#include <linux/mempool.h>
20#include <linux/slab.h>
21#include <linux/idr.h>
Darrick J. Wong3ac51e72006-03-27 01:17:54 -080022#include <linux/hdreg.h>
Jens Axboe2056a782006-03-23 20:00:26 +010023#include <linux/blktrace_api.h>
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +010024#include <trace/block.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Alasdair G Kergon72d94862006-06-26 00:27:35 -070026#define DM_MSG_PREFIX "core"
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028static const char *_name = DM_NAME;
29
30static unsigned int major = 0;
31static unsigned int _major = 0;
32
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -070033static DEFINE_SPINLOCK(_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070034/*
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000035 * For bio-based dm.
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 * One of these is allocated per bio.
37 */
38struct dm_io {
39 struct mapped_device *md;
40 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 atomic_t io_count;
Richard Kennedy6ae2fa62008-07-21 12:00:28 +010042 struct bio *bio;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -080043 unsigned long start_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044};
45
46/*
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000047 * For bio-based dm.
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 * One of these is allocated per target within a bio. Hopefully
49 * this will be simplified out one day.
50 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +010051struct dm_target_io {
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 struct dm_io *io;
53 struct dm_target *ti;
54 union map_info info;
55};
56
Ingo Molnar0bfc2452008-11-26 11:59:56 +010057DEFINE_TRACE(block_bio_complete);
58
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000059/*
60 * For request-based dm.
61 * One of these is allocated per request.
62 */
63struct dm_rq_target_io {
64 struct mapped_device *md;
65 struct dm_target *ti;
66 struct request *orig, clone;
67 int error;
68 union map_info info;
69};
70
71/*
72 * For request-based dm.
73 * One of these is allocated per bio.
74 */
75struct dm_rq_clone_bio_info {
76 struct bio *orig;
77 struct request *rq;
78};
79
Linus Torvalds1da177e2005-04-16 15:20:36 -070080union map_info *dm_get_mapinfo(struct bio *bio)
81{
Alasdair G Kergon17b2f662006-06-26 00:27:33 -070082 if (bio && bio->bi_private)
Alasdair G Kergon028867a2007-07-12 17:26:32 +010083 return &((struct dm_target_io *)bio->bi_private)->info;
Alasdair G Kergon17b2f662006-06-26 00:27:33 -070084 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085}
86
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -070087#define MINOR_ALLOCED ((void *)-1)
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089/*
90 * Bits for the md->flags field.
91 */
92#define DMF_BLOCK_IO 0
93#define DMF_SUSPENDED 1
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -080094#define DMF_FROZEN 2
Jeff Mahoneyfba9f902006-06-26 00:27:23 -070095#define DMF_FREEING 3
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -070096#define DMF_DELETING 4
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -080097#define DMF_NOFLUSH_SUSPENDING 5
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Milan Broz304f3f62008-02-08 02:11:17 +000099/*
100 * Work processed by per-device workqueue.
101 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102struct mapped_device {
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700103 struct rw_semaphore io_lock;
Daniel Walkere61290a2008-02-08 02:10:08 +0000104 struct mutex suspend_lock;
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800105 spinlock_t pushback_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 rwlock_t map_lock;
107 atomic_t holders;
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700108 atomic_t open_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110 unsigned long flags;
111
Jens Axboe165125e2007-07-24 09:28:11 +0200112 struct request_queue *queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 struct gendisk *disk;
Mike Anderson7e51f252006-03-27 01:17:52 -0800114 char name[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116 void *interface_ptr;
117
118 /*
119 * A list of ios that arrived while we were suspended.
120 */
121 atomic_t pending;
122 wait_queue_head_t wait;
Mikulas Patocka53d59142009-04-02 19:55:37 +0100123 struct work_struct work;
Kiyoshi Ueda74859362006-12-08 02:41:02 -0800124 struct bio_list deferred;
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800125 struct bio_list pushback;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127 /*
Milan Broz304f3f62008-02-08 02:11:17 +0000128 * Processing queue (flush/barriers)
129 */
130 struct workqueue_struct *wq;
131
132 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 * The current mapping.
134 */
135 struct dm_table *map;
136
137 /*
138 * io objects are allocated from here.
139 */
140 mempool_t *io_pool;
141 mempool_t *tio_pool;
142
Stefan Bader9faf4002006-10-03 01:15:41 -0700143 struct bio_set *bs;
144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 /*
146 * Event handling.
147 */
148 atomic_t event_nr;
149 wait_queue_head_t eventq;
Mike Anderson7a8c3d32007-10-19 22:48:01 +0100150 atomic_t uevent_seq;
151 struct list_head uevent_list;
152 spinlock_t uevent_lock; /* Protect access to uevent_list */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154 /*
155 * freeze/thaw support require holding onto a super block
156 */
157 struct super_block *frozen_sb;
Alasdair G Kergone39e2e92006-01-06 00:20:05 -0800158 struct block_device *suspended_bdev;
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800159
160 /* forced geometry settings */
161 struct hd_geometry geometry;
Milan Broz784aae72009-01-06 03:05:12 +0000162
163 /* sysfs handle */
164 struct kobject kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165};
166
167#define MIN_IOS 256
Christoph Lametere18b8902006-12-06 20:33:20 -0800168static struct kmem_cache *_io_cache;
169static struct kmem_cache *_tio_cache;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000170static struct kmem_cache *_rq_tio_cache;
171static struct kmem_cache *_rq_bio_info_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173static int __init local_init(void)
174{
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100175 int r = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 /* allocate a slab for the dm_ios */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100178 _io_cache = KMEM_CACHE(dm_io, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 if (!_io_cache)
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100180 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182 /* allocate a slab for the target ios */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100183 _tio_cache = KMEM_CACHE(dm_target_io, 0);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100184 if (!_tio_cache)
185 goto out_free_io_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000187 _rq_tio_cache = KMEM_CACHE(dm_rq_target_io, 0);
188 if (!_rq_tio_cache)
189 goto out_free_tio_cache;
190
191 _rq_bio_info_cache = KMEM_CACHE(dm_rq_clone_bio_info, 0);
192 if (!_rq_bio_info_cache)
193 goto out_free_rq_tio_cache;
194
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100195 r = dm_uevent_init();
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100196 if (r)
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000197 goto out_free_rq_bio_info_cache;
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 _major = major;
200 r = register_blkdev(_major, _name);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100201 if (r < 0)
202 goto out_uevent_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
204 if (!_major)
205 _major = r;
206
207 return 0;
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100208
209out_uevent_exit:
210 dm_uevent_exit();
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000211out_free_rq_bio_info_cache:
212 kmem_cache_destroy(_rq_bio_info_cache);
213out_free_rq_tio_cache:
214 kmem_cache_destroy(_rq_tio_cache);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100215out_free_tio_cache:
216 kmem_cache_destroy(_tio_cache);
217out_free_io_cache:
218 kmem_cache_destroy(_io_cache);
219
220 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221}
222
223static void local_exit(void)
224{
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000225 kmem_cache_destroy(_rq_bio_info_cache);
226 kmem_cache_destroy(_rq_tio_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 kmem_cache_destroy(_tio_cache);
228 kmem_cache_destroy(_io_cache);
Akinobu Mita00d59402007-07-17 04:03:46 -0700229 unregister_blkdev(_major, _name);
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100230 dm_uevent_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
232 _major = 0;
233
234 DMINFO("cleaned up");
235}
236
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000237static int (*_inits[])(void) __initdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 local_init,
239 dm_target_init,
240 dm_linear_init,
241 dm_stripe_init,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100242 dm_kcopyd_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 dm_interface_init,
244};
245
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000246static void (*_exits[])(void) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 local_exit,
248 dm_target_exit,
249 dm_linear_exit,
250 dm_stripe_exit,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100251 dm_kcopyd_exit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 dm_interface_exit,
253};
254
255static int __init dm_init(void)
256{
257 const int count = ARRAY_SIZE(_inits);
258
259 int r, i;
260
261 for (i = 0; i < count; i++) {
262 r = _inits[i]();
263 if (r)
264 goto bad;
265 }
266
267 return 0;
268
269 bad:
270 while (i--)
271 _exits[i]();
272
273 return r;
274}
275
276static void __exit dm_exit(void)
277{
278 int i = ARRAY_SIZE(_exits);
279
280 while (i--)
281 _exits[i]();
282}
283
284/*
285 * Block device functions
286 */
Al Virofe5f9f22008-03-02 10:29:31 -0500287static int dm_blk_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
289 struct mapped_device *md;
290
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700291 spin_lock(&_minor_lock);
292
Al Virofe5f9f22008-03-02 10:29:31 -0500293 md = bdev->bd_disk->private_data;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700294 if (!md)
295 goto out;
296
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700297 if (test_bit(DMF_FREEING, &md->flags) ||
298 test_bit(DMF_DELETING, &md->flags)) {
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700299 md = NULL;
300 goto out;
301 }
302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 dm_get(md);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700304 atomic_inc(&md->open_count);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700305
306out:
307 spin_unlock(&_minor_lock);
308
309 return md ? 0 : -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310}
311
Al Virofe5f9f22008-03-02 10:29:31 -0500312static int dm_blk_close(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
Al Virofe5f9f22008-03-02 10:29:31 -0500314 struct mapped_device *md = disk->private_data;
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700315 atomic_dec(&md->open_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 dm_put(md);
317 return 0;
318}
319
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700320int dm_open_count(struct mapped_device *md)
321{
322 return atomic_read(&md->open_count);
323}
324
325/*
326 * Guarantees nothing is using the device before it's deleted.
327 */
328int dm_lock_for_deletion(struct mapped_device *md)
329{
330 int r = 0;
331
332 spin_lock(&_minor_lock);
333
334 if (dm_open_count(md))
335 r = -EBUSY;
336 else
337 set_bit(DMF_DELETING, &md->flags);
338
339 spin_unlock(&_minor_lock);
340
341 return r;
342}
343
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800344static int dm_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
345{
346 struct mapped_device *md = bdev->bd_disk->private_data;
347
348 return dm_get_geometry(md, geo);
349}
350
Al Virofe5f9f22008-03-02 10:29:31 -0500351static int dm_blk_ioctl(struct block_device *bdev, fmode_t mode,
Milan Brozaa129a22006-10-03 01:15:15 -0700352 unsigned int cmd, unsigned long arg)
353{
Al Virofe5f9f22008-03-02 10:29:31 -0500354 struct mapped_device *md = bdev->bd_disk->private_data;
355 struct dm_table *map = dm_get_table(md);
Milan Brozaa129a22006-10-03 01:15:15 -0700356 struct dm_target *tgt;
357 int r = -ENOTTY;
358
Milan Brozaa129a22006-10-03 01:15:15 -0700359 if (!map || !dm_table_get_size(map))
360 goto out;
361
362 /* We only support devices that have a single target */
363 if (dm_table_get_num_targets(map) != 1)
364 goto out;
365
366 tgt = dm_table_get_target(map, 0);
367
368 if (dm_suspended(md)) {
369 r = -EAGAIN;
370 goto out;
371 }
372
373 if (tgt->type->ioctl)
Al Viro647b3d02007-08-28 22:15:59 -0400374 r = tgt->type->ioctl(tgt, cmd, arg);
Milan Brozaa129a22006-10-03 01:15:15 -0700375
376out:
377 dm_table_put(map);
378
Milan Brozaa129a22006-10-03 01:15:15 -0700379 return r;
380}
381
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100382static struct dm_io *alloc_io(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383{
384 return mempool_alloc(md->io_pool, GFP_NOIO);
385}
386
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100387static void free_io(struct mapped_device *md, struct dm_io *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388{
389 mempool_free(io, md->io_pool);
390}
391
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100392static struct dm_target_io *alloc_tio(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393{
394 return mempool_alloc(md->tio_pool, GFP_NOIO);
395}
396
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100397static void free_tio(struct mapped_device *md, struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398{
399 mempool_free(tio, md->tio_pool);
400}
401
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800402static void start_io_acct(struct dm_io *io)
403{
404 struct mapped_device *md = io->md;
Tejun Heoc9959052008-08-25 19:47:21 +0900405 int cpu;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800406
407 io->start_time = jiffies;
408
Tejun Heo074a7ac2008-08-25 19:56:14 +0900409 cpu = part_stat_lock();
410 part_round_stats(cpu, &dm_disk(md)->part0);
411 part_stat_unlock();
412 dm_disk(md)->part0.in_flight = atomic_inc_return(&md->pending);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800413}
414
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000415static void end_io_acct(struct dm_io *io)
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800416{
417 struct mapped_device *md = io->md;
418 struct bio *bio = io->bio;
419 unsigned long duration = jiffies - io->start_time;
Tejun Heoc9959052008-08-25 19:47:21 +0900420 int pending, cpu;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800421 int rw = bio_data_dir(bio);
422
Tejun Heo074a7ac2008-08-25 19:56:14 +0900423 cpu = part_stat_lock();
424 part_round_stats(cpu, &dm_disk(md)->part0);
425 part_stat_add(cpu, &dm_disk(md)->part0, ticks[rw], duration);
426 part_stat_unlock();
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800427
Tejun Heo074a7ac2008-08-25 19:56:14 +0900428 dm_disk(md)->part0.in_flight = pending =
429 atomic_dec_return(&md->pending);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800430
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000431 /* nudge anyone waiting on suspend queue */
432 if (!pending)
433 wake_up(&md->wait);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800434}
435
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436/*
437 * Add the bio to the list of deferred io.
438 */
439static int queue_io(struct mapped_device *md, struct bio *bio)
440{
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700441 down_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
443 if (!test_bit(DMF_BLOCK_IO, &md->flags)) {
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700444 up_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 return 1;
446 }
447
448 bio_list_add(&md->deferred, bio);
449
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700450 up_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 return 0; /* deferred successfully */
452}
453
454/*
455 * Everyone (including functions in this file), should use this
456 * function to access the md->map field, and make sure they call
457 * dm_table_put() when finished.
458 */
459struct dm_table *dm_get_table(struct mapped_device *md)
460{
461 struct dm_table *t;
462
463 read_lock(&md->map_lock);
464 t = md->map;
465 if (t)
466 dm_table_get(t);
467 read_unlock(&md->map_lock);
468
469 return t;
470}
471
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800472/*
473 * Get the geometry associated with a dm device
474 */
475int dm_get_geometry(struct mapped_device *md, struct hd_geometry *geo)
476{
477 *geo = md->geometry;
478
479 return 0;
480}
481
482/*
483 * Set the geometry of a device.
484 */
485int dm_set_geometry(struct mapped_device *md, struct hd_geometry *geo)
486{
487 sector_t sz = (sector_t)geo->cylinders * geo->heads * geo->sectors;
488
489 if (geo->start > sz) {
490 DMWARN("Start sector is beyond the geometry limits.");
491 return -EINVAL;
492 }
493
494 md->geometry = *geo;
495
496 return 0;
497}
498
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499/*-----------------------------------------------------------------
500 * CRUD START:
501 * A more elegant soln is in the works that uses the queue
502 * merge fn, unfortunately there are a couple of changes to
503 * the block layer that I want to make for this. So in the
504 * interests of getting something for people to use I give
505 * you this clearly demarcated crap.
506 *---------------------------------------------------------------*/
507
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800508static int __noflush_suspending(struct mapped_device *md)
509{
510 return test_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
511}
512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513/*
514 * Decrements the number of outstanding ios that a bio has been
515 * cloned into, completing the original io if necc.
516 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800517static void dec_pending(struct dm_io *io, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518{
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800519 unsigned long flags;
Milan Brozb35f8ca2009-03-16 17:44:36 +0000520 int io_error;
521 struct bio *bio;
522 struct mapped_device *md = io->md;
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800523
524 /* Push-back supersedes any I/O errors */
Milan Brozb35f8ca2009-03-16 17:44:36 +0000525 if (error && !(io->error > 0 && __noflush_suspending(md)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 io->error = error;
527
528 if (atomic_dec_and_test(&io->io_count)) {
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800529 if (io->error == DM_ENDIO_REQUEUE) {
530 /*
531 * Target requested pushing back the I/O.
532 * This must be handled before the sleeper on
533 * suspend queue merges the pushback list.
534 */
Milan Brozb35f8ca2009-03-16 17:44:36 +0000535 spin_lock_irqsave(&md->pushback_lock, flags);
536 if (__noflush_suspending(md))
537 bio_list_add(&md->pushback, io->bio);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800538 else
539 /* noflush suspend was interrupted. */
540 io->error = -EIO;
Milan Brozb35f8ca2009-03-16 17:44:36 +0000541 spin_unlock_irqrestore(&md->pushback_lock, flags);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800542 }
543
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000544 end_io_acct(io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Milan Brozb35f8ca2009-03-16 17:44:36 +0000546 io_error = io->error;
547 bio = io->bio;
Jens Axboe2056a782006-03-23 20:00:26 +0100548
Milan Brozb35f8ca2009-03-16 17:44:36 +0000549 free_io(md, io);
550
551 if (io_error != DM_ENDIO_REQUEUE) {
552 trace_block_bio_complete(md->queue, bio);
553
554 bio_endio(bio, io_error);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800555 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 }
557}
558
NeilBrown6712ecf2007-09-27 12:47:43 +0200559static void clone_endio(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560{
561 int r = 0;
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100562 struct dm_target_io *tio = bio->bi_private;
Milan Brozb35f8ca2009-03-16 17:44:36 +0000563 struct dm_io *io = tio->io;
Stefan Bader9faf4002006-10-03 01:15:41 -0700564 struct mapped_device *md = tio->io->md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 dm_endio_fn endio = tio->ti->type->end_io;
566
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 if (!bio_flagged(bio, BIO_UPTODATE) && !error)
568 error = -EIO;
569
570 if (endio) {
571 r = endio(tio->ti, bio, error, &tio->info);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800572 if (r < 0 || r == DM_ENDIO_REQUEUE)
573 /*
574 * error and requeue request are handled
575 * in dec_pending().
576 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 error = r;
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800578 else if (r == DM_ENDIO_INCOMPLETE)
579 /* The target will handle the io */
NeilBrown6712ecf2007-09-27 12:47:43 +0200580 return;
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800581 else if (r) {
582 DMWARN("unimplemented target endio return value: %d", r);
583 BUG();
584 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 }
586
Stefan Bader9faf4002006-10-03 01:15:41 -0700587 /*
588 * Store md for cleanup instead of tio which is about to get freed.
589 */
590 bio->bi_private = md->bs;
591
Stefan Bader9faf4002006-10-03 01:15:41 -0700592 free_tio(md, tio);
Milan Brozb35f8ca2009-03-16 17:44:36 +0000593 bio_put(bio);
594 dec_pending(io, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595}
596
597static sector_t max_io_len(struct mapped_device *md,
598 sector_t sector, struct dm_target *ti)
599{
600 sector_t offset = sector - ti->begin;
601 sector_t len = ti->len - offset;
602
603 /*
604 * Does the target need to split even further ?
605 */
606 if (ti->split_io) {
607 sector_t boundary;
608 boundary = ((offset + ti->split_io) & ~(ti->split_io - 1))
609 - offset;
610 if (len > boundary)
611 len = boundary;
612 }
613
614 return len;
615}
616
617static void __map_bio(struct dm_target *ti, struct bio *clone,
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100618 struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619{
620 int r;
Jens Axboe2056a782006-03-23 20:00:26 +0100621 sector_t sector;
Stefan Bader9faf4002006-10-03 01:15:41 -0700622 struct mapped_device *md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
624 /*
625 * Sanity checks.
626 */
627 BUG_ON(!clone->bi_size);
628
629 clone->bi_end_io = clone_endio;
630 clone->bi_private = tio;
631
632 /*
633 * Map the clone. If r == 0 we don't need to do
634 * anything, the target has assumed ownership of
635 * this io.
636 */
637 atomic_inc(&tio->io->io_count);
Jens Axboe2056a782006-03-23 20:00:26 +0100638 sector = clone->bi_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 r = ti->type->map(ti, clone, &tio->info);
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800640 if (r == DM_MAPIO_REMAPPED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 /* the bio has been remapped so dispatch it */
Jens Axboe2056a782006-03-23 20:00:26 +0100642
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100643 trace_block_remap(bdev_get_queue(clone->bi_bdev), clone,
Alan D. Brunellec7149d62007-08-07 15:30:23 +0200644 tio->io->bio->bi_bdev->bd_dev,
645 clone->bi_sector, sector);
Jens Axboe2056a782006-03-23 20:00:26 +0100646
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 generic_make_request(clone);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800648 } else if (r < 0 || r == DM_MAPIO_REQUEUE) {
649 /* error the io and bail out, or requeue it if needed */
Stefan Bader9faf4002006-10-03 01:15:41 -0700650 md = tio->io->md;
651 dec_pending(tio->io, r);
652 /*
653 * Store bio_set for cleanup.
654 */
655 clone->bi_private = md->bs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 bio_put(clone);
Stefan Bader9faf4002006-10-03 01:15:41 -0700657 free_tio(md, tio);
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800658 } else if (r) {
659 DMWARN("unimplemented target map return value: %d", r);
660 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 }
662}
663
664struct clone_info {
665 struct mapped_device *md;
666 struct dm_table *map;
667 struct bio *bio;
668 struct dm_io *io;
669 sector_t sector;
670 sector_t sector_count;
671 unsigned short idx;
672};
673
Peter Osterlund36763472005-09-06 15:16:42 -0700674static void dm_bio_destructor(struct bio *bio)
675{
Stefan Bader9faf4002006-10-03 01:15:41 -0700676 struct bio_set *bs = bio->bi_private;
677
678 bio_free(bio, bs);
Peter Osterlund36763472005-09-06 15:16:42 -0700679}
680
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681/*
682 * Creates a little bio that is just does part of a bvec.
683 */
684static struct bio *split_bvec(struct bio *bio, sector_t sector,
685 unsigned short idx, unsigned int offset,
Stefan Bader9faf4002006-10-03 01:15:41 -0700686 unsigned int len, struct bio_set *bs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687{
688 struct bio *clone;
689 struct bio_vec *bv = bio->bi_io_vec + idx;
690
Stefan Bader9faf4002006-10-03 01:15:41 -0700691 clone = bio_alloc_bioset(GFP_NOIO, 1, bs);
Peter Osterlund36763472005-09-06 15:16:42 -0700692 clone->bi_destructor = dm_bio_destructor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 *clone->bi_io_vec = *bv;
694
695 clone->bi_sector = sector;
696 clone->bi_bdev = bio->bi_bdev;
697 clone->bi_rw = bio->bi_rw;
698 clone->bi_vcnt = 1;
699 clone->bi_size = to_bytes(len);
700 clone->bi_io_vec->bv_offset = offset;
701 clone->bi_io_vec->bv_len = clone->bi_size;
Martin K. Petersenf3e1d262008-10-21 17:45:04 +0100702 clone->bi_flags |= 1 << BIO_CLONED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
704 return clone;
705}
706
707/*
708 * Creates a bio that consists of range of complete bvecs.
709 */
710static struct bio *clone_bio(struct bio *bio, sector_t sector,
711 unsigned short idx, unsigned short bv_count,
Stefan Bader9faf4002006-10-03 01:15:41 -0700712 unsigned int len, struct bio_set *bs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713{
714 struct bio *clone;
715
Stefan Bader9faf4002006-10-03 01:15:41 -0700716 clone = bio_alloc_bioset(GFP_NOIO, bio->bi_max_vecs, bs);
717 __bio_clone(clone, bio);
718 clone->bi_destructor = dm_bio_destructor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 clone->bi_sector = sector;
720 clone->bi_idx = idx;
721 clone->bi_vcnt = idx + bv_count;
722 clone->bi_size = to_bytes(len);
723 clone->bi_flags &= ~(1 << BIO_SEG_VALID);
724
725 return clone;
726}
727
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000728static int __clone_and_map(struct clone_info *ci)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729{
730 struct bio *clone, *bio = ci->bio;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000731 struct dm_target *ti;
732 sector_t len = 0, max;
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100733 struct dm_target_io *tio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000735 ti = dm_table_find_target(ci->map, ci->sector);
736 if (!dm_target_is_valid(ti))
737 return -EIO;
738
739 max = max_io_len(ci->md, ci->sector, ti);
740
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 /*
742 * Allocate a target io object.
743 */
744 tio = alloc_tio(ci->md);
745 tio->io = ci->io;
746 tio->ti = ti;
747 memset(&tio->info, 0, sizeof(tio->info));
748
749 if (ci->sector_count <= max) {
750 /*
751 * Optimise for the simple case where we can do all of
752 * the remaining io with a single clone.
753 */
754 clone = clone_bio(bio, ci->sector, ci->idx,
Stefan Bader9faf4002006-10-03 01:15:41 -0700755 bio->bi_vcnt - ci->idx, ci->sector_count,
756 ci->md->bs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 __map_bio(ti, clone, tio);
758 ci->sector_count = 0;
759
760 } else if (to_sector(bio->bi_io_vec[ci->idx].bv_len) <= max) {
761 /*
762 * There are some bvecs that don't span targets.
763 * Do as many of these as possible.
764 */
765 int i;
766 sector_t remaining = max;
767 sector_t bv_len;
768
769 for (i = ci->idx; remaining && (i < bio->bi_vcnt); i++) {
770 bv_len = to_sector(bio->bi_io_vec[i].bv_len);
771
772 if (bv_len > remaining)
773 break;
774
775 remaining -= bv_len;
776 len += bv_len;
777 }
778
Stefan Bader9faf4002006-10-03 01:15:41 -0700779 clone = clone_bio(bio, ci->sector, ci->idx, i - ci->idx, len,
780 ci->md->bs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 __map_bio(ti, clone, tio);
782
783 ci->sector += len;
784 ci->sector_count -= len;
785 ci->idx = i;
786
787 } else {
788 /*
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800789 * Handle a bvec that must be split between two or more targets.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 */
791 struct bio_vec *bv = bio->bi_io_vec + ci->idx;
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800792 sector_t remaining = to_sector(bv->bv_len);
793 unsigned int offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800795 do {
796 if (offset) {
797 ti = dm_table_find_target(ci->map, ci->sector);
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000798 if (!dm_target_is_valid(ti))
799 return -EIO;
800
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800801 max = max_io_len(ci->md, ci->sector, ti);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800803 tio = alloc_tio(ci->md);
804 tio->io = ci->io;
805 tio->ti = ti;
806 memset(&tio->info, 0, sizeof(tio->info));
807 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800809 len = min(remaining, max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800811 clone = split_bvec(bio, ci->sector, ci->idx,
Stefan Bader9faf4002006-10-03 01:15:41 -0700812 bv->bv_offset + offset, len,
813 ci->md->bs);
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800814
815 __map_bio(ti, clone, tio);
816
817 ci->sector += len;
818 ci->sector_count -= len;
819 offset += to_bytes(len);
820 } while (remaining -= len);
821
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 ci->idx++;
823 }
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000824
825 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826}
827
828/*
Mikulas Patocka8a53c282009-04-02 19:55:37 +0100829 * Split the bio into several clones and submit it to targets.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 */
Mikulas Patockaf0b9a452009-04-02 19:55:38 +0100831static void __split_and_process_bio(struct mapped_device *md, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832{
833 struct clone_info ci;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000834 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
836 ci.map = dm_get_table(md);
Mikulas Patockaf0b9a452009-04-02 19:55:38 +0100837 if (unlikely(!ci.map)) {
838 bio_io_error(bio);
839 return;
840 }
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);
Mikulas Patockaf0b9a452009-04-02 19:55:38 +0100844 return;
Andi Kleenab4c142482009-01-06 03:05:09 +0000845 }
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);
864}
865/*-----------------------------------------------------------------
866 * CRUD END
867 *---------------------------------------------------------------*/
868
Milan Brozf6fccb12008-07-21 12:00:37 +0100869static int dm_merge_bvec(struct request_queue *q,
870 struct bvec_merge_data *bvm,
871 struct bio_vec *biovec)
872{
873 struct mapped_device *md = q->queuedata;
874 struct dm_table *map = dm_get_table(md);
875 struct dm_target *ti;
876 sector_t max_sectors;
Mikulas Patocka50371082008-10-01 14:39:17 +0100877 int max_size = 0;
Milan Brozf6fccb12008-07-21 12:00:37 +0100878
879 if (unlikely(!map))
Mikulas Patocka50371082008-10-01 14:39:17 +0100880 goto out;
Milan Brozf6fccb12008-07-21 12:00:37 +0100881
882 ti = dm_table_find_target(map, bvm->bi_sector);
Mikulas Patockab01cd5a2008-10-01 14:39:24 +0100883 if (!dm_target_is_valid(ti))
884 goto out_table;
Milan Brozf6fccb12008-07-21 12:00:37 +0100885
886 /*
887 * Find maximum amount of I/O that won't need splitting
888 */
889 max_sectors = min(max_io_len(md, bvm->bi_sector, ti),
890 (sector_t) BIO_MAX_SECTORS);
891 max_size = (max_sectors << SECTOR_SHIFT) - bvm->bi_size;
892 if (max_size < 0)
893 max_size = 0;
894
895 /*
896 * merge_bvec_fn() returns number of bytes
897 * it can accept at this offset
898 * max is precomputed maximal io size
899 */
900 if (max_size && ti->type->merge)
901 max_size = ti->type->merge(ti, bvm, biovec, max_size);
902
Mikulas Patockab01cd5a2008-10-01 14:39:24 +0100903out_table:
Mikulas Patocka50371082008-10-01 14:39:17 +0100904 dm_table_put(map);
905
906out:
Milan Brozf6fccb12008-07-21 12:00:37 +0100907 /*
908 * Always allow an entire first page
909 */
910 if (max_size <= biovec->bv_len && !(bvm->bi_size >> SECTOR_SHIFT))
911 max_size = biovec->bv_len;
912
Milan Brozf6fccb12008-07-21 12:00:37 +0100913 return max_size;
914}
915
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916/*
917 * The request function that just remaps the bio built up by
918 * dm_merge_bvec.
919 */
Jens Axboe165125e2007-07-24 09:28:11 +0200920static int dm_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921{
Milan Broz9e4e5f82007-10-19 22:38:53 +0100922 int r = -EIO;
Kevin Corry12f03a42006-02-01 03:04:52 -0800923 int rw = bio_data_dir(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 struct mapped_device *md = q->queuedata;
Tejun Heoc9959052008-08-25 19:47:21 +0900925 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700927 down_read(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
Tejun Heo074a7ac2008-08-25 19:56:14 +0900929 cpu = part_stat_lock();
930 part_stat_inc(cpu, &dm_disk(md)->part0, ios[rw]);
931 part_stat_add(cpu, &dm_disk(md)->part0, sectors[rw], bio_sectors(bio));
932 part_stat_unlock();
Kevin Corry12f03a42006-02-01 03:04:52 -0800933
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 /*
935 * If we're suspended we have to queue
936 * this io for later.
937 */
938 while (test_bit(DMF_BLOCK_IO, &md->flags)) {
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700939 up_read(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
Milan Broz9e4e5f82007-10-19 22:38:53 +0100941 if (bio_rw(bio) != READA)
942 r = queue_io(md, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
Milan Broz9e4e5f82007-10-19 22:38:53 +0100944 if (r <= 0)
945 goto out_req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
947 /*
948 * We're in a while loop, because someone could suspend
949 * before we get to the following read lock.
950 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700951 down_read(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 }
953
Mikulas Patockaf0b9a452009-04-02 19:55:38 +0100954 __split_and_process_bio(md, bio);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700955 up_read(&md->io_lock);
Mikulas Patockaf0b9a452009-04-02 19:55:38 +0100956 return 0;
Milan Broz9e4e5f82007-10-19 22:38:53 +0100957
958out_req:
959 if (r < 0)
960 bio_io_error(bio);
961
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 return 0;
963}
964
Jens Axboe165125e2007-07-24 09:28:11 +0200965static void dm_unplug_all(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966{
967 struct mapped_device *md = q->queuedata;
968 struct dm_table *map = dm_get_table(md);
969
970 if (map) {
971 dm_table_unplug_all(map);
972 dm_table_put(map);
973 }
974}
975
976static int dm_any_congested(void *congested_data, int bdi_bits)
977{
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +0000978 int r = bdi_bits;
979 struct mapped_device *md = congested_data;
980 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +0000982 if (!test_bit(DMF_BLOCK_IO, &md->flags)) {
983 map = dm_get_table(md);
984 if (map) {
985 r = dm_table_any_congested(map, bdi_bits);
986 dm_table_put(map);
987 }
988 }
989
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 return r;
991}
992
993/*-----------------------------------------------------------------
994 * An IDR is used to keep track of allocated minor numbers.
995 *---------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996static DEFINE_IDR(_minor_idr);
997
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -0700998static void free_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999{
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001000 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 idr_remove(&_minor_idr, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001002 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003}
1004
1005/*
1006 * See if the device with a specific minor # is free.
1007 */
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001008static int specific_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009{
1010 int r, m;
1011
1012 if (minor >= (1 << MINORBITS))
1013 return -EINVAL;
1014
Jeff Mahoney62f75c22006-06-26 00:27:21 -07001015 r = idr_pre_get(&_minor_idr, GFP_KERNEL);
1016 if (!r)
1017 return -ENOMEM;
1018
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001019 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
1021 if (idr_find(&_minor_idr, minor)) {
1022 r = -EBUSY;
1023 goto out;
1024 }
1025
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001026 r = idr_get_new_above(&_minor_idr, MINOR_ALLOCED, minor, &m);
Jeff Mahoney62f75c22006-06-26 00:27:21 -07001027 if (r)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
1030 if (m != minor) {
1031 idr_remove(&_minor_idr, m);
1032 r = -EBUSY;
1033 goto out;
1034 }
1035
1036out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001037 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 return r;
1039}
1040
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001041static int next_free_minor(int *minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042{
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001043 int r, m;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 r = idr_pre_get(&_minor_idr, GFP_KERNEL);
Jeff Mahoney62f75c22006-06-26 00:27:21 -07001046 if (!r)
1047 return -ENOMEM;
1048
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001049 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001051 r = idr_get_new(&_minor_idr, MINOR_ALLOCED, &m);
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001052 if (r)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
1055 if (m >= (1 << MINORBITS)) {
1056 idr_remove(&_minor_idr, m);
1057 r = -ENOSPC;
1058 goto out;
1059 }
1060
1061 *minor = m;
1062
1063out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001064 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 return r;
1066}
1067
1068static struct block_device_operations dm_blk_dops;
1069
Mikulas Patocka53d59142009-04-02 19:55:37 +01001070static void dm_wq_work(struct work_struct *work);
1071
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072/*
1073 * Allocate and initialise a blank device with a given minor.
1074 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001075static struct mapped_device *alloc_dev(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076{
1077 int r;
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001078 struct mapped_device *md = kzalloc(sizeof(*md), GFP_KERNEL);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001079 void *old_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
1081 if (!md) {
1082 DMWARN("unable to allocate device, out of memory.");
1083 return NULL;
1084 }
1085
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001086 if (!try_module_get(THIS_MODULE))
Milan Broz6ed7ade2008-02-08 02:10:19 +00001087 goto bad_module_get;
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001088
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 /* get a minor number for the dev */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001090 if (minor == DM_ANY_MINOR)
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001091 r = next_free_minor(&minor);
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001092 else
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001093 r = specific_minor(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 if (r < 0)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001095 goto bad_minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001097 init_rwsem(&md->io_lock);
Daniel Walkere61290a2008-02-08 02:10:08 +00001098 mutex_init(&md->suspend_lock);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001099 spin_lock_init(&md->pushback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 rwlock_init(&md->map_lock);
1101 atomic_set(&md->holders, 1);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -07001102 atomic_set(&md->open_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 atomic_set(&md->event_nr, 0);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001104 atomic_set(&md->uevent_seq, 0);
1105 INIT_LIST_HEAD(&md->uevent_list);
1106 spin_lock_init(&md->uevent_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
1108 md->queue = blk_alloc_queue(GFP_KERNEL);
1109 if (!md->queue)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001110 goto bad_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
1112 md->queue->queuedata = md;
1113 md->queue->backing_dev_info.congested_fn = dm_any_congested;
1114 md->queue->backing_dev_info.congested_data = md;
1115 blk_queue_make_request(md->queue, dm_request);
Jens Axboedaef2652006-01-10 10:48:02 +01001116 blk_queue_bounce_limit(md->queue, BLK_BOUNCE_ANY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 md->queue->unplug_fn = dm_unplug_all;
Milan Brozf6fccb12008-07-21 12:00:37 +01001118 blk_queue_merge_bvec(md->queue, dm_merge_bvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119
Matthew Dobson93d23412006-03-26 01:37:50 -08001120 md->io_pool = mempool_create_slab_pool(MIN_IOS, _io_cache);
Kiyoshi Ueda74859362006-12-08 02:41:02 -08001121 if (!md->io_pool)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001122 goto bad_io_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
Matthew Dobson93d23412006-03-26 01:37:50 -08001124 md->tio_pool = mempool_create_slab_pool(MIN_IOS, _tio_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 if (!md->tio_pool)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001126 goto bad_tio_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
Jens Axboebb799ca2008-12-10 15:35:05 +01001128 md->bs = bioset_create(16, 0);
Stefan Bader9faf4002006-10-03 01:15:41 -07001129 if (!md->bs)
1130 goto bad_no_bioset;
1131
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 md->disk = alloc_disk(1);
1133 if (!md->disk)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001134 goto bad_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07001136 atomic_set(&md->pending, 0);
1137 init_waitqueue_head(&md->wait);
Mikulas Patocka53d59142009-04-02 19:55:37 +01001138 INIT_WORK(&md->work, dm_wq_work);
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07001139 init_waitqueue_head(&md->eventq);
1140
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 md->disk->major = _major;
1142 md->disk->first_minor = minor;
1143 md->disk->fops = &dm_blk_dops;
1144 md->disk->queue = md->queue;
1145 md->disk->private_data = md;
1146 sprintf(md->disk->disk_name, "dm-%d", minor);
1147 add_disk(md->disk);
Mike Anderson7e51f252006-03-27 01:17:52 -08001148 format_dev_t(md->name, MKDEV(_major, minor));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
Milan Broz304f3f62008-02-08 02:11:17 +00001150 md->wq = create_singlethread_workqueue("kdmflush");
1151 if (!md->wq)
1152 goto bad_thread;
1153
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001154 /* Populate the mapping, nobody knows we exist yet */
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001155 spin_lock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001156 old_md = idr_replace(&_minor_idr, md, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001157 spin_unlock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001158
1159 BUG_ON(old_md != MINOR_ALLOCED);
1160
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 return md;
1162
Milan Broz304f3f62008-02-08 02:11:17 +00001163bad_thread:
1164 put_disk(md->disk);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001165bad_disk:
Stefan Bader9faf4002006-10-03 01:15:41 -07001166 bioset_free(md->bs);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001167bad_no_bioset:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 mempool_destroy(md->tio_pool);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001169bad_tio_pool:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 mempool_destroy(md->io_pool);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001171bad_io_pool:
Al Viro1312f402006-03-12 11:02:03 -05001172 blk_cleanup_queue(md->queue);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001173bad_queue:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 free_minor(minor);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001175bad_minor:
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001176 module_put(THIS_MODULE);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001177bad_module_get:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 kfree(md);
1179 return NULL;
1180}
1181
Jun'ichi Nomuraae9da832007-10-19 22:38:43 +01001182static void unlock_fs(struct mapped_device *md);
1183
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184static void free_dev(struct mapped_device *md)
1185{
Tejun Heof331c022008-09-03 09:01:48 +02001186 int minor = MINOR(disk_devt(md->disk));
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08001187
Jun'ichi Nomurad9dde592006-02-24 13:04:24 -08001188 if (md->suspended_bdev) {
Jun'ichi Nomuraae9da832007-10-19 22:38:43 +01001189 unlock_fs(md);
Jun'ichi Nomurad9dde592006-02-24 13:04:24 -08001190 bdput(md->suspended_bdev);
1191 }
Milan Broz304f3f62008-02-08 02:11:17 +00001192 destroy_workqueue(md->wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 mempool_destroy(md->tio_pool);
1194 mempool_destroy(md->io_pool);
Stefan Bader9faf4002006-10-03 01:15:41 -07001195 bioset_free(md->bs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 del_gendisk(md->disk);
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08001197 free_minor(minor);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001198
1199 spin_lock(&_minor_lock);
1200 md->disk->private_data = NULL;
1201 spin_unlock(&_minor_lock);
1202
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 put_disk(md->disk);
Al Viro1312f402006-03-12 11:02:03 -05001204 blk_cleanup_queue(md->queue);
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001205 module_put(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 kfree(md);
1207}
1208
1209/*
1210 * Bind a table to the device.
1211 */
1212static void event_callback(void *context)
1213{
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001214 unsigned long flags;
1215 LIST_HEAD(uevents);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 struct mapped_device *md = (struct mapped_device *) context;
1217
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001218 spin_lock_irqsave(&md->uevent_lock, flags);
1219 list_splice_init(&md->uevent_list, &uevents);
1220 spin_unlock_irqrestore(&md->uevent_lock, flags);
1221
Tejun Heoed9e1982008-08-25 19:56:05 +09001222 dm_send_uevents(&uevents, &disk_to_dev(md->disk)->kobj);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001223
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 atomic_inc(&md->event_nr);
1225 wake_up(&md->eventq);
1226}
1227
Alasdair G Kergon4e901882005-07-28 21:15:59 -07001228static void __set_size(struct mapped_device *md, sector_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229{
Alasdair G Kergon4e901882005-07-28 21:15:59 -07001230 set_capacity(md->disk, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001232 mutex_lock(&md->suspended_bdev->bd_inode->i_mutex);
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001233 i_size_write(md->suspended_bdev->bd_inode, (loff_t)size << SECTOR_SHIFT);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001234 mutex_unlock(&md->suspended_bdev->bd_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235}
1236
1237static int __bind(struct mapped_device *md, struct dm_table *t)
1238{
Jens Axboe165125e2007-07-24 09:28:11 +02001239 struct request_queue *q = md->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 sector_t size;
1241
1242 size = dm_table_get_size(t);
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08001243
1244 /*
1245 * Wipe any geometry if the size of the table changed.
1246 */
1247 if (size != get_capacity(md->disk))
1248 memset(&md->geometry, 0, sizeof(md->geometry));
1249
Jun'ichi Nomurabfa152f2007-01-26 00:57:07 -08001250 if (md->suspended_bdev)
1251 __set_size(md, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
Mikulas Patockad5816872009-01-06 03:05:10 +00001253 if (!size) {
1254 dm_table_destroy(t);
1255 return 0;
1256 }
1257
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001258 dm_table_event_callback(t, event_callback, md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001259
1260 write_lock(&md->map_lock);
1261 md->map = t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 dm_table_set_restrictions(t, q);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001263 write_unlock(&md->map_lock);
1264
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 return 0;
1266}
1267
1268static void __unbind(struct mapped_device *md)
1269{
1270 struct dm_table *map = md->map;
1271
1272 if (!map)
1273 return;
1274
1275 dm_table_event_callback(map, NULL, NULL);
1276 write_lock(&md->map_lock);
1277 md->map = NULL;
1278 write_unlock(&md->map_lock);
Mikulas Patockad5816872009-01-06 03:05:10 +00001279 dm_table_destroy(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280}
1281
1282/*
1283 * Constructor for a new device.
1284 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001285int dm_create(int minor, struct mapped_device **result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286{
1287 struct mapped_device *md;
1288
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001289 md = alloc_dev(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 if (!md)
1291 return -ENXIO;
1292
Milan Broz784aae72009-01-06 03:05:12 +00001293 dm_sysfs_init(md);
1294
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 *result = md;
1296 return 0;
1297}
1298
David Teigland637842c2006-01-06 00:20:00 -08001299static struct mapped_device *dm_find_md(dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300{
1301 struct mapped_device *md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 unsigned minor = MINOR(dev);
1303
1304 if (MAJOR(dev) != _major || minor >= (1 << MINORBITS))
1305 return NULL;
1306
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001307 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
1309 md = idr_find(&_minor_idr, minor);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001310 if (md && (md == MINOR_ALLOCED ||
Tejun Heof331c022008-09-03 09:01:48 +02001311 (MINOR(disk_devt(dm_disk(md))) != minor) ||
Alasdair G Kergon17b2f662006-06-26 00:27:33 -07001312 test_bit(DMF_FREEING, &md->flags))) {
David Teigland637842c2006-01-06 00:20:00 -08001313 md = NULL;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001314 goto out;
1315 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001317out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001318 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319
David Teigland637842c2006-01-06 00:20:00 -08001320 return md;
1321}
1322
David Teiglandd229a952006-01-06 00:20:01 -08001323struct mapped_device *dm_get_md(dev_t dev)
1324{
1325 struct mapped_device *md = dm_find_md(dev);
1326
1327 if (md)
1328 dm_get(md);
1329
1330 return md;
1331}
1332
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08001333void *dm_get_mdptr(struct mapped_device *md)
David Teigland637842c2006-01-06 00:20:00 -08001334{
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08001335 return md->interface_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336}
1337
1338void dm_set_mdptr(struct mapped_device *md, void *ptr)
1339{
1340 md->interface_ptr = ptr;
1341}
1342
1343void dm_get(struct mapped_device *md)
1344{
1345 atomic_inc(&md->holders);
1346}
1347
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001348const char *dm_device_name(struct mapped_device *md)
1349{
1350 return md->name;
1351}
1352EXPORT_SYMBOL_GPL(dm_device_name);
1353
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354void dm_put(struct mapped_device *md)
1355{
Mike Anderson1134e5a2006-03-27 01:17:54 -08001356 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001358 BUG_ON(test_bit(DMF_FREEING, &md->flags));
1359
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001360 if (atomic_dec_and_lock(&md->holders, &_minor_lock)) {
Mike Anderson1134e5a2006-03-27 01:17:54 -08001361 map = dm_get_table(md);
Tejun Heof331c022008-09-03 09:01:48 +02001362 idr_replace(&_minor_idr, MINOR_ALLOCED,
1363 MINOR(disk_devt(dm_disk(md))));
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001364 set_bit(DMF_FREEING, &md->flags);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001365 spin_unlock(&_minor_lock);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001366 if (!dm_suspended(md)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 dm_table_presuspend_targets(map);
1368 dm_table_postsuspend_targets(map);
1369 }
Milan Broz784aae72009-01-06 03:05:12 +00001370 dm_sysfs_exit(md);
Mike Anderson1134e5a2006-03-27 01:17:54 -08001371 dm_table_put(map);
Mikulas Patockaa1b51e92009-01-06 03:04:53 +00001372 __unbind(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 free_dev(md);
1374 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375}
Edward Goggin79eb8852007-05-09 02:32:56 -07001376EXPORT_SYMBOL_GPL(dm_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377
Mikulas Patocka401600d2009-04-02 19:55:38 +01001378static int dm_wait_for_completion(struct mapped_device *md, int interruptible)
Milan Broz46125c12008-02-08 02:10:30 +00001379{
1380 int r = 0;
1381
1382 while (1) {
Mikulas Patocka401600d2009-04-02 19:55:38 +01001383 set_current_state(interruptible);
Milan Broz46125c12008-02-08 02:10:30 +00001384
1385 smp_mb();
1386 if (!atomic_read(&md->pending))
1387 break;
1388
Mikulas Patocka401600d2009-04-02 19:55:38 +01001389 if (interruptible == TASK_INTERRUPTIBLE &&
1390 signal_pending(current)) {
Milan Broz46125c12008-02-08 02:10:30 +00001391 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 */
Mikulas Patockaef208582009-04-02 19:55:38 +01001405static void dm_wq_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406{
Mikulas Patockaef208582009-04-02 19:55:38 +01001407 struct mapped_device *md = container_of(work, struct mapped_device,
1408 work);
Milan Broz6d6f10d2008-02-08 02:10:22 +00001409 struct bio *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410
Mikulas Patockaef208582009-04-02 19:55:38 +01001411 down_write(&md->io_lock);
1412
Mikulas Patockaf0b9a452009-04-02 19:55:38 +01001413 while ((c = bio_list_pop(&md->deferred)))
1414 __split_and_process_bio(md, c);
Milan Broz73d410c2008-02-08 02:10:25 +00001415
1416 clear_bit(DMF_BLOCK_IO, &md->flags);
Mikulas Patockaef208582009-04-02 19:55:38 +01001417
1418 up_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419}
1420
Milan Broz6d6f10d2008-02-08 02:10:22 +00001421static void __merge_pushback_list(struct mapped_device *md)
1422{
1423 unsigned long flags;
1424
1425 spin_lock_irqsave(&md->pushback_lock, flags);
1426 clear_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
1427 bio_list_merge_head(&md->deferred, &md->pushback);
1428 bio_list_init(&md->pushback);
1429 spin_unlock_irqrestore(&md->pushback_lock, flags);
1430}
1431
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01001432static void dm_queue_flush(struct mapped_device *md)
Milan Broz304f3f62008-02-08 02:11:17 +00001433{
Mikulas Patocka53d59142009-04-02 19:55:37 +01001434 queue_work(md->wq, &md->work);
Milan Broz304f3f62008-02-08 02:11:17 +00001435 flush_workqueue(md->wq);
1436}
1437
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438/*
1439 * Swap in a new table (destroying old one).
1440 */
1441int dm_swap_table(struct mapped_device *md, struct dm_table *table)
1442{
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07001443 int r = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444
Daniel Walkere61290a2008-02-08 02:10:08 +00001445 mutex_lock(&md->suspend_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
1447 /* device must be suspended */
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001448 if (!dm_suspended(md))
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07001449 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
Jun'ichi Nomurabfa152f2007-01-26 00:57:07 -08001451 /* without bdev, the device size cannot be changed */
1452 if (!md->suspended_bdev)
1453 if (get_capacity(md->disk) != dm_table_get_size(table))
1454 goto out;
1455
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 __unbind(md);
1457 r = __bind(md, table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07001459out:
Daniel Walkere61290a2008-02-08 02:10:08 +00001460 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07001461 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462}
1463
1464/*
1465 * Functions to lock and unlock any filesystem running on the
1466 * device.
1467 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001468static int lock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469{
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001470 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
1472 WARN_ON(md->frozen_sb);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07001473
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001474 md->frozen_sb = freeze_bdev(md->suspended_bdev);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07001475 if (IS_ERR(md->frozen_sb)) {
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001476 r = PTR_ERR(md->frozen_sb);
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001477 md->frozen_sb = NULL;
1478 return r;
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07001479 }
1480
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08001481 set_bit(DMF_FROZEN, &md->flags);
1482
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 /* don't bdput right now, we don't want the bdev
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001484 * to go away while it is locked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 */
1486 return 0;
1487}
1488
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001489static void unlock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490{
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08001491 if (!test_bit(DMF_FROZEN, &md->flags))
1492 return;
1493
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001494 thaw_bdev(md->suspended_bdev, md->frozen_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 md->frozen_sb = NULL;
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08001496 clear_bit(DMF_FROZEN, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497}
1498
1499/*
1500 * We need to be able to change a mapping table under a mounted
1501 * filesystem. For example we might want to move some data in
1502 * the background. Before the table can be swapped with
1503 * dm_bind_table, dm_suspend must be called to flush any in
1504 * flight bios and ensure that any further io gets deferred.
1505 */
Kiyoshi Uedaa3d77d32006-12-08 02:41:04 -08001506int dm_suspend(struct mapped_device *md, unsigned suspend_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507{
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001508 struct dm_table *map = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 DECLARE_WAITQUEUE(wait, current);
Milan Broz46125c12008-02-08 02:10:30 +00001510 int r = 0;
Kiyoshi Uedaa3d77d32006-12-08 02:41:04 -08001511 int do_lockfs = suspend_flags & DM_SUSPEND_LOCKFS_FLAG ? 1 : 0;
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001512 int noflush = suspend_flags & DM_SUSPEND_NOFLUSH_FLAG ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513
Daniel Walkere61290a2008-02-08 02:10:08 +00001514 mutex_lock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001515
Milan Broz73d410c2008-02-08 02:10:25 +00001516 if (dm_suspended(md)) {
1517 r = -EINVAL;
Alasdair G Kergond2874832006-11-08 17:44:43 -08001518 goto out_unlock;
Milan Broz73d410c2008-02-08 02:10:25 +00001519 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
1521 map = dm_get_table(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001523 /*
1524 * DMF_NOFLUSH_SUSPENDING must be set before presuspend.
1525 * This flag is cleared before dm_suspend returns.
1526 */
1527 if (noflush)
1528 set_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
1529
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001530 /* This does not get reverted if there's an error later. */
1531 dm_table_presuspend_targets(map);
1532
Jun'ichi Nomurabfa152f2007-01-26 00:57:07 -08001533 /* bdget() can stall if the pending I/Os are not flushed */
1534 if (!noflush) {
1535 md->suspended_bdev = bdget_disk(md->disk, 0);
1536 if (!md->suspended_bdev) {
1537 DMWARN("bdget failed in dm_suspend");
1538 r = -ENOMEM;
Kiyoshi Uedaf431d962008-10-21 17:45:07 +01001539 goto out;
Jun'ichi Nomurabfa152f2007-01-26 00:57:07 -08001540 }
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001541
Milan Broz6d6f10d2008-02-08 02:10:22 +00001542 /*
1543 * Flush I/O to the device. noflush supersedes do_lockfs,
1544 * because lock_fs() needs to flush I/Os.
1545 */
1546 if (do_lockfs) {
1547 r = lock_fs(md);
1548 if (r)
1549 goto out;
1550 }
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08001551 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552
1553 /*
Alasdair G Kergon354e0072005-05-05 16:16:05 -07001554 * First we set the BLOCK_IO flag so no more ios will be mapped.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001556 down_write(&md->io_lock);
1557 set_bit(DMF_BLOCK_IO, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 add_wait_queue(&md->wait, &wait);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001560 up_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561
1562 /* unplug */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001563 if (map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 dm_table_unplug_all(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565
1566 /*
Milan Broz46125c12008-02-08 02:10:30 +00001567 * Wait for the already-mapped ios to complete.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 */
Mikulas Patocka401600d2009-04-02 19:55:38 +01001569 r = dm_wait_for_completion(md, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001571 down_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 remove_wait_queue(&md->wait, &wait);
1573
Milan Broz6d6f10d2008-02-08 02:10:22 +00001574 if (noflush)
1575 __merge_pushback_list(md);
Milan Broz94d63512008-02-08 02:10:27 +00001576 up_write(&md->io_lock);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001577
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 /* were we interrupted ? */
Milan Broz46125c12008-02-08 02:10:30 +00001579 if (r < 0) {
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01001580 dm_queue_flush(md);
Milan Broz73d410c2008-02-08 02:10:25 +00001581
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001582 unlock_fs(md);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001583 goto out; /* pushback list is already flushed, so skip flush */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001584 }
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001585
1586 dm_table_postsuspend_targets(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
1588 set_bit(DMF_SUSPENDED, &md->flags);
1589
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001590out:
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001591 if (r && md->suspended_bdev) {
1592 bdput(md->suspended_bdev);
1593 md->suspended_bdev = NULL;
1594 }
1595
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 dm_table_put(map);
Alasdair G Kergond2874832006-11-08 17:44:43 -08001597
1598out_unlock:
Daniel Walkere61290a2008-02-08 02:10:08 +00001599 mutex_unlock(&md->suspend_lock);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001600 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601}
1602
1603int dm_resume(struct mapped_device *md)
1604{
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001605 int r = -EINVAL;
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001606 struct dm_table *map = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
Daniel Walkere61290a2008-02-08 02:10:08 +00001608 mutex_lock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001609 if (!dm_suspended(md))
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001610 goto out;
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001611
1612 map = dm_get_table(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001613 if (!map || !dm_table_get_size(map))
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001614 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615
Milan Broz8757b772006-10-03 01:15:36 -07001616 r = dm_table_resume_targets(map);
1617 if (r)
1618 goto out;
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001619
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01001620 dm_queue_flush(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001621
1622 unlock_fs(md);
1623
Jun'ichi Nomurabfa152f2007-01-26 00:57:07 -08001624 if (md->suspended_bdev) {
1625 bdput(md->suspended_bdev);
1626 md->suspended_bdev = NULL;
1627 }
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001628
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001629 clear_bit(DMF_SUSPENDED, &md->flags);
1630
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 dm_table_unplug_all(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
Alasdair G Kergon69267a32007-12-13 14:15:57 +00001633 dm_kobject_uevent(md);
Hannes Reinecke8560ed62006-10-03 01:15:35 -07001634
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001635 r = 0;
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001636
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001637out:
1638 dm_table_put(map);
Daniel Walkere61290a2008-02-08 02:10:08 +00001639 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001640
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001641 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642}
1643
1644/*-----------------------------------------------------------------
1645 * Event notification.
1646 *---------------------------------------------------------------*/
Alasdair G Kergon69267a32007-12-13 14:15:57 +00001647void dm_kobject_uevent(struct mapped_device *md)
1648{
Tejun Heoed9e1982008-08-25 19:56:05 +09001649 kobject_uevent(&disk_to_dev(md->disk)->kobj, KOBJ_CHANGE);
Alasdair G Kergon69267a32007-12-13 14:15:57 +00001650}
1651
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001652uint32_t dm_next_uevent_seq(struct mapped_device *md)
1653{
1654 return atomic_add_return(1, &md->uevent_seq);
1655}
1656
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657uint32_t dm_get_event_nr(struct mapped_device *md)
1658{
1659 return atomic_read(&md->event_nr);
1660}
1661
1662int dm_wait_event(struct mapped_device *md, int event_nr)
1663{
1664 return wait_event_interruptible(md->eventq,
1665 (event_nr != atomic_read(&md->event_nr)));
1666}
1667
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001668void dm_uevent_add(struct mapped_device *md, struct list_head *elist)
1669{
1670 unsigned long flags;
1671
1672 spin_lock_irqsave(&md->uevent_lock, flags);
1673 list_add(elist, &md->uevent_list);
1674 spin_unlock_irqrestore(&md->uevent_lock, flags);
1675}
1676
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677/*
1678 * The gendisk is only valid as long as you have a reference
1679 * count on 'md'.
1680 */
1681struct gendisk *dm_disk(struct mapped_device *md)
1682{
1683 return md->disk;
1684}
1685
Milan Broz784aae72009-01-06 03:05:12 +00001686struct kobject *dm_kobject(struct mapped_device *md)
1687{
1688 return &md->kobj;
1689}
1690
1691/*
1692 * struct mapped_device should not be exported outside of dm.c
1693 * so use this check to verify that kobj is part of md structure
1694 */
1695struct mapped_device *dm_get_from_kobject(struct kobject *kobj)
1696{
1697 struct mapped_device *md;
1698
1699 md = container_of(kobj, struct mapped_device, kobj);
1700 if (&md->kobj != kobj)
1701 return NULL;
1702
1703 dm_get(md);
1704 return md;
1705}
1706
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707int dm_suspended(struct mapped_device *md)
1708{
1709 return test_bit(DMF_SUSPENDED, &md->flags);
1710}
1711
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001712int dm_noflush_suspending(struct dm_target *ti)
1713{
1714 struct mapped_device *md = dm_table_get_md(ti->table);
1715 int r = __noflush_suspending(md);
1716
1717 dm_put(md);
1718
1719 return r;
1720}
1721EXPORT_SYMBOL_GPL(dm_noflush_suspending);
1722
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723static struct block_device_operations dm_blk_dops = {
1724 .open = dm_blk_open,
1725 .release = dm_blk_close,
Milan Brozaa129a22006-10-03 01:15:15 -07001726 .ioctl = dm_blk_ioctl,
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08001727 .getgeo = dm_blk_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 .owner = THIS_MODULE
1729};
1730
1731EXPORT_SYMBOL(dm_get_mapinfo);
1732
1733/*
1734 * module hooks
1735 */
1736module_init(dm_init);
1737module_exit(dm_exit);
1738
1739module_param(major, uint, 0);
1740MODULE_PARM_DESC(major, "The major number of the device mapper");
1741MODULE_DESCRIPTION(DM_NAME " driver");
1742MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
1743MODULE_LICENSE("GPL");