blob: 421c9f02d8ca7329c41168e7beb5f1c2b3a6c6d1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2001, 2002 Sistina Software (UK) Limited.
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07003 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * This file is released under the GPL.
6 */
7
8#include "dm.h"
9#include "dm-bio-list.h"
Mike Anderson51e5b2b2007-10-19 22:48:00 +010010#include "dm-uevent.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
12#include <linux/init.h>
13#include <linux/module.h>
Arjan van de Ven48c9c272006-03-27 01:18:20 -080014#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/moduleparam.h>
16#include <linux/blkpg.h>
17#include <linux/bio.h>
18#include <linux/buffer_head.h>
19#include <linux/mempool.h>
20#include <linux/slab.h>
21#include <linux/idr.h>
Darrick J. Wong3ac51e72006-03-27 01:17:54 -080022#include <linux/hdreg.h>
Jens Axboe2056a782006-03-23 20:00:26 +010023#include <linux/blktrace_api.h>
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +010024#include <trace/block.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Alasdair G Kergon72d94862006-06-26 00:27:35 -070026#define DM_MSG_PREFIX "core"
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028static const char *_name = DM_NAME;
29
30static unsigned int major = 0;
31static unsigned int _major = 0;
32
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -070033static DEFINE_SPINLOCK(_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070034/*
35 * One of these is allocated per bio.
36 */
37struct dm_io {
38 struct mapped_device *md;
39 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 atomic_t io_count;
Richard Kennedy6ae2fa62008-07-21 12:00:28 +010041 struct bio *bio;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -080042 unsigned long start_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043};
44
45/*
46 * One of these is allocated per target within a bio. Hopefully
47 * this will be simplified out one day.
48 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +010049struct dm_target_io {
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 struct dm_io *io;
51 struct dm_target *ti;
52 union map_info info;
53};
54
Ingo Molnar0bfc2452008-11-26 11:59:56 +010055DEFINE_TRACE(block_bio_complete);
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057union map_info *dm_get_mapinfo(struct bio *bio)
58{
Alasdair G Kergon17b2f662006-06-26 00:27:33 -070059 if (bio && bio->bi_private)
Alasdair G Kergon028867a2007-07-12 17:26:32 +010060 return &((struct dm_target_io *)bio->bi_private)->info;
Alasdair G Kergon17b2f662006-06-26 00:27:33 -070061 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062}
63
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -070064#define MINOR_ALLOCED ((void *)-1)
65
Linus Torvalds1da177e2005-04-16 15:20:36 -070066/*
67 * Bits for the md->flags field.
68 */
69#define DMF_BLOCK_IO 0
70#define DMF_SUSPENDED 1
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -080071#define DMF_FROZEN 2
Jeff Mahoneyfba9f902006-06-26 00:27:23 -070072#define DMF_FREEING 3
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -070073#define DMF_DELETING 4
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -080074#define DMF_NOFLUSH_SUSPENDING 5
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Milan Broz304f3f62008-02-08 02:11:17 +000076/*
77 * Work processed by per-device workqueue.
78 */
79struct dm_wq_req {
80 enum {
Milan Broz304f3f62008-02-08 02:11:17 +000081 DM_WQ_FLUSH_DEFERRED,
82 } type;
83 struct work_struct work;
84 struct mapped_device *md;
85 void *context;
86};
87
Linus Torvalds1da177e2005-04-16 15:20:36 -070088struct mapped_device {
Alasdair G Kergon2ca33102005-07-28 21:16:00 -070089 struct rw_semaphore io_lock;
Daniel Walkere61290a2008-02-08 02:10:08 +000090 struct mutex suspend_lock;
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -080091 spinlock_t pushback_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 rwlock_t map_lock;
93 atomic_t holders;
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -070094 atomic_t open_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96 unsigned long flags;
97
Jens Axboe165125e2007-07-24 09:28:11 +020098 struct request_queue *queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 struct gendisk *disk;
Mike Anderson7e51f252006-03-27 01:17:52 -0800100 char name[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
102 void *interface_ptr;
103
104 /*
105 * A list of ios that arrived while we were suspended.
106 */
107 atomic_t pending;
108 wait_queue_head_t wait;
Kiyoshi Ueda74859362006-12-08 02:41:02 -0800109 struct bio_list deferred;
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800110 struct bio_list pushback;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
112 /*
Milan Broz304f3f62008-02-08 02:11:17 +0000113 * Processing queue (flush/barriers)
114 */
115 struct workqueue_struct *wq;
116
117 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 * The current mapping.
119 */
120 struct dm_table *map;
121
122 /*
123 * io objects are allocated from here.
124 */
125 mempool_t *io_pool;
126 mempool_t *tio_pool;
127
Stefan Bader9faf4002006-10-03 01:15:41 -0700128 struct bio_set *bs;
129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 /*
131 * Event handling.
132 */
133 atomic_t event_nr;
134 wait_queue_head_t eventq;
Mike Anderson7a8c3d32007-10-19 22:48:01 +0100135 atomic_t uevent_seq;
136 struct list_head uevent_list;
137 spinlock_t uevent_lock; /* Protect access to uevent_list */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
139 /*
140 * freeze/thaw support require holding onto a super block
141 */
142 struct super_block *frozen_sb;
Alasdair G Kergone39e2e92006-01-06 00:20:05 -0800143 struct block_device *suspended_bdev;
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800144
145 /* forced geometry settings */
146 struct hd_geometry geometry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147};
148
149#define MIN_IOS 256
Christoph Lametere18b8902006-12-06 20:33:20 -0800150static struct kmem_cache *_io_cache;
151static struct kmem_cache *_tio_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153static int __init local_init(void)
154{
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100155 int r = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 /* allocate a slab for the dm_ios */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100158 _io_cache = KMEM_CACHE(dm_io, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 if (!_io_cache)
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100160 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162 /* allocate a slab for the target ios */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100163 _tio_cache = KMEM_CACHE(dm_target_io, 0);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100164 if (!_tio_cache)
165 goto out_free_io_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100167 r = dm_uevent_init();
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100168 if (r)
169 goto out_free_tio_cache;
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 _major = major;
172 r = register_blkdev(_major, _name);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100173 if (r < 0)
174 goto out_uevent_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
176 if (!_major)
177 _major = r;
178
179 return 0;
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100180
181out_uevent_exit:
182 dm_uevent_exit();
183out_free_tio_cache:
184 kmem_cache_destroy(_tio_cache);
185out_free_io_cache:
186 kmem_cache_destroy(_io_cache);
187
188 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189}
190
191static void local_exit(void)
192{
193 kmem_cache_destroy(_tio_cache);
194 kmem_cache_destroy(_io_cache);
Akinobu Mita00d59402007-07-17 04:03:46 -0700195 unregister_blkdev(_major, _name);
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100196 dm_uevent_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
198 _major = 0;
199
200 DMINFO("cleaned up");
201}
202
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000203static int (*_inits[])(void) __initdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 local_init,
205 dm_target_init,
206 dm_linear_init,
207 dm_stripe_init,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100208 dm_kcopyd_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 dm_interface_init,
210};
211
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000212static void (*_exits[])(void) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 local_exit,
214 dm_target_exit,
215 dm_linear_exit,
216 dm_stripe_exit,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100217 dm_kcopyd_exit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 dm_interface_exit,
219};
220
221static int __init dm_init(void)
222{
223 const int count = ARRAY_SIZE(_inits);
224
225 int r, i;
226
227 for (i = 0; i < count; i++) {
228 r = _inits[i]();
229 if (r)
230 goto bad;
231 }
232
233 return 0;
234
235 bad:
236 while (i--)
237 _exits[i]();
238
239 return r;
240}
241
242static void __exit dm_exit(void)
243{
244 int i = ARRAY_SIZE(_exits);
245
246 while (i--)
247 _exits[i]();
248}
249
250/*
251 * Block device functions
252 */
Al Virofe5f9f22008-03-02 10:29:31 -0500253static int dm_blk_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
255 struct mapped_device *md;
256
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700257 spin_lock(&_minor_lock);
258
Al Virofe5f9f22008-03-02 10:29:31 -0500259 md = bdev->bd_disk->private_data;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700260 if (!md)
261 goto out;
262
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700263 if (test_bit(DMF_FREEING, &md->flags) ||
264 test_bit(DMF_DELETING, &md->flags)) {
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700265 md = NULL;
266 goto out;
267 }
268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 dm_get(md);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700270 atomic_inc(&md->open_count);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700271
272out:
273 spin_unlock(&_minor_lock);
274
275 return md ? 0 : -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276}
277
Al Virofe5f9f22008-03-02 10:29:31 -0500278static int dm_blk_close(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279{
Al Virofe5f9f22008-03-02 10:29:31 -0500280 struct mapped_device *md = disk->private_data;
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700281 atomic_dec(&md->open_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 dm_put(md);
283 return 0;
284}
285
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700286int dm_open_count(struct mapped_device *md)
287{
288 return atomic_read(&md->open_count);
289}
290
291/*
292 * Guarantees nothing is using the device before it's deleted.
293 */
294int dm_lock_for_deletion(struct mapped_device *md)
295{
296 int r = 0;
297
298 spin_lock(&_minor_lock);
299
300 if (dm_open_count(md))
301 r = -EBUSY;
302 else
303 set_bit(DMF_DELETING, &md->flags);
304
305 spin_unlock(&_minor_lock);
306
307 return r;
308}
309
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800310static int dm_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
311{
312 struct mapped_device *md = bdev->bd_disk->private_data;
313
314 return dm_get_geometry(md, geo);
315}
316
Al Virofe5f9f22008-03-02 10:29:31 -0500317static int dm_blk_ioctl(struct block_device *bdev, fmode_t mode,
Milan Brozaa129a22006-10-03 01:15:15 -0700318 unsigned int cmd, unsigned long arg)
319{
Al Virofe5f9f22008-03-02 10:29:31 -0500320 struct mapped_device *md = bdev->bd_disk->private_data;
321 struct dm_table *map = dm_get_table(md);
Milan Brozaa129a22006-10-03 01:15:15 -0700322 struct dm_target *tgt;
323 int r = -ENOTTY;
324
Milan Brozaa129a22006-10-03 01:15:15 -0700325 if (!map || !dm_table_get_size(map))
326 goto out;
327
328 /* We only support devices that have a single target */
329 if (dm_table_get_num_targets(map) != 1)
330 goto out;
331
332 tgt = dm_table_get_target(map, 0);
333
334 if (dm_suspended(md)) {
335 r = -EAGAIN;
336 goto out;
337 }
338
339 if (tgt->type->ioctl)
Al Viro647b3d02007-08-28 22:15:59 -0400340 r = tgt->type->ioctl(tgt, cmd, arg);
Milan Brozaa129a22006-10-03 01:15:15 -0700341
342out:
343 dm_table_put(map);
344
Milan Brozaa129a22006-10-03 01:15:15 -0700345 return r;
346}
347
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100348static struct dm_io *alloc_io(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349{
350 return mempool_alloc(md->io_pool, GFP_NOIO);
351}
352
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100353static void free_io(struct mapped_device *md, struct dm_io *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
355 mempool_free(io, md->io_pool);
356}
357
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100358static struct dm_target_io *alloc_tio(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359{
360 return mempool_alloc(md->tio_pool, GFP_NOIO);
361}
362
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100363static void free_tio(struct mapped_device *md, struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364{
365 mempool_free(tio, md->tio_pool);
366}
367
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800368static void start_io_acct(struct dm_io *io)
369{
370 struct mapped_device *md = io->md;
Tejun Heoc9959052008-08-25 19:47:21 +0900371 int cpu;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800372
373 io->start_time = jiffies;
374
Tejun Heo074a7ac2008-08-25 19:56:14 +0900375 cpu = part_stat_lock();
376 part_round_stats(cpu, &dm_disk(md)->part0);
377 part_stat_unlock();
378 dm_disk(md)->part0.in_flight = atomic_inc_return(&md->pending);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800379}
380
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000381static void end_io_acct(struct dm_io *io)
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800382{
383 struct mapped_device *md = io->md;
384 struct bio *bio = io->bio;
385 unsigned long duration = jiffies - io->start_time;
Tejun Heoc9959052008-08-25 19:47:21 +0900386 int pending, cpu;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800387 int rw = bio_data_dir(bio);
388
Tejun Heo074a7ac2008-08-25 19:56:14 +0900389 cpu = part_stat_lock();
390 part_round_stats(cpu, &dm_disk(md)->part0);
391 part_stat_add(cpu, &dm_disk(md)->part0, ticks[rw], duration);
392 part_stat_unlock();
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800393
Tejun Heo074a7ac2008-08-25 19:56:14 +0900394 dm_disk(md)->part0.in_flight = pending =
395 atomic_dec_return(&md->pending);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800396
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000397 /* nudge anyone waiting on suspend queue */
398 if (!pending)
399 wake_up(&md->wait);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800400}
401
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402/*
403 * Add the bio to the list of deferred io.
404 */
405static int queue_io(struct mapped_device *md, struct bio *bio)
406{
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700407 down_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
409 if (!test_bit(DMF_BLOCK_IO, &md->flags)) {
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700410 up_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 return 1;
412 }
413
414 bio_list_add(&md->deferred, bio);
415
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700416 up_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 return 0; /* deferred successfully */
418}
419
420/*
421 * Everyone (including functions in this file), should use this
422 * function to access the md->map field, and make sure they call
423 * dm_table_put() when finished.
424 */
425struct dm_table *dm_get_table(struct mapped_device *md)
426{
427 struct dm_table *t;
428
429 read_lock(&md->map_lock);
430 t = md->map;
431 if (t)
432 dm_table_get(t);
433 read_unlock(&md->map_lock);
434
435 return t;
436}
437
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800438/*
439 * Get the geometry associated with a dm device
440 */
441int dm_get_geometry(struct mapped_device *md, struct hd_geometry *geo)
442{
443 *geo = md->geometry;
444
445 return 0;
446}
447
448/*
449 * Set the geometry of a device.
450 */
451int dm_set_geometry(struct mapped_device *md, struct hd_geometry *geo)
452{
453 sector_t sz = (sector_t)geo->cylinders * geo->heads * geo->sectors;
454
455 if (geo->start > sz) {
456 DMWARN("Start sector is beyond the geometry limits.");
457 return -EINVAL;
458 }
459
460 md->geometry = *geo;
461
462 return 0;
463}
464
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465/*-----------------------------------------------------------------
466 * CRUD START:
467 * A more elegant soln is in the works that uses the queue
468 * merge fn, unfortunately there are a couple of changes to
469 * the block layer that I want to make for this. So in the
470 * interests of getting something for people to use I give
471 * you this clearly demarcated crap.
472 *---------------------------------------------------------------*/
473
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800474static int __noflush_suspending(struct mapped_device *md)
475{
476 return test_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
477}
478
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479/*
480 * Decrements the number of outstanding ios that a bio has been
481 * cloned into, completing the original io if necc.
482 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800483static void dec_pending(struct dm_io *io, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484{
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800485 unsigned long flags;
486
487 /* Push-back supersedes any I/O errors */
488 if (error && !(io->error > 0 && __noflush_suspending(io->md)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 io->error = error;
490
491 if (atomic_dec_and_test(&io->io_count)) {
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800492 if (io->error == DM_ENDIO_REQUEUE) {
493 /*
494 * Target requested pushing back the I/O.
495 * This must be handled before the sleeper on
496 * suspend queue merges the pushback list.
497 */
498 spin_lock_irqsave(&io->md->pushback_lock, flags);
499 if (__noflush_suspending(io->md))
500 bio_list_add(&io->md->pushback, io->bio);
501 else
502 /* noflush suspend was interrupted. */
503 io->error = -EIO;
504 spin_unlock_irqrestore(&io->md->pushback_lock, flags);
505 }
506
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000507 end_io_acct(io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800509 if (io->error != DM_ENDIO_REQUEUE) {
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100510 trace_block_bio_complete(io->md->queue, io->bio);
Jens Axboe2056a782006-03-23 20:00:26 +0100511
NeilBrown6712ecf2007-09-27 12:47:43 +0200512 bio_endio(io->bio, io->error);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800513 }
514
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 free_io(io->md, io);
516 }
517}
518
NeilBrown6712ecf2007-09-27 12:47:43 +0200519static void clone_endio(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520{
521 int r = 0;
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100522 struct dm_target_io *tio = bio->bi_private;
Stefan Bader9faf4002006-10-03 01:15:41 -0700523 struct mapped_device *md = tio->io->md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 dm_endio_fn endio = tio->ti->type->end_io;
525
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 if (!bio_flagged(bio, BIO_UPTODATE) && !error)
527 error = -EIO;
528
529 if (endio) {
530 r = endio(tio->ti, bio, error, &tio->info);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800531 if (r < 0 || r == DM_ENDIO_REQUEUE)
532 /*
533 * error and requeue request are handled
534 * in dec_pending().
535 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 error = r;
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800537 else if (r == DM_ENDIO_INCOMPLETE)
538 /* The target will handle the io */
NeilBrown6712ecf2007-09-27 12:47:43 +0200539 return;
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800540 else if (r) {
541 DMWARN("unimplemented target endio return value: %d", r);
542 BUG();
543 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 }
545
Stefan Bader9faf4002006-10-03 01:15:41 -0700546 dec_pending(tio->io, error);
547
548 /*
549 * Store md for cleanup instead of tio which is about to get freed.
550 */
551 bio->bi_private = md->bs;
552
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 bio_put(bio);
Stefan Bader9faf4002006-10-03 01:15:41 -0700554 free_tio(md, tio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555}
556
557static sector_t max_io_len(struct mapped_device *md,
558 sector_t sector, struct dm_target *ti)
559{
560 sector_t offset = sector - ti->begin;
561 sector_t len = ti->len - offset;
562
563 /*
564 * Does the target need to split even further ?
565 */
566 if (ti->split_io) {
567 sector_t boundary;
568 boundary = ((offset + ti->split_io) & ~(ti->split_io - 1))
569 - offset;
570 if (len > boundary)
571 len = boundary;
572 }
573
574 return len;
575}
576
577static void __map_bio(struct dm_target *ti, struct bio *clone,
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100578 struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
580 int r;
Jens Axboe2056a782006-03-23 20:00:26 +0100581 sector_t sector;
Stefan Bader9faf4002006-10-03 01:15:41 -0700582 struct mapped_device *md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
584 /*
585 * Sanity checks.
586 */
587 BUG_ON(!clone->bi_size);
588
589 clone->bi_end_io = clone_endio;
590 clone->bi_private = tio;
591
592 /*
593 * Map the clone. If r == 0 we don't need to do
594 * anything, the target has assumed ownership of
595 * this io.
596 */
597 atomic_inc(&tio->io->io_count);
Jens Axboe2056a782006-03-23 20:00:26 +0100598 sector = clone->bi_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 r = ti->type->map(ti, clone, &tio->info);
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800600 if (r == DM_MAPIO_REMAPPED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 /* the bio has been remapped so dispatch it */
Jens Axboe2056a782006-03-23 20:00:26 +0100602
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100603 trace_block_remap(bdev_get_queue(clone->bi_bdev), clone,
Alan D. Brunellec7149d62007-08-07 15:30:23 +0200604 tio->io->bio->bi_bdev->bd_dev,
605 clone->bi_sector, sector);
Jens Axboe2056a782006-03-23 20:00:26 +0100606
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 generic_make_request(clone);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800608 } else if (r < 0 || r == DM_MAPIO_REQUEUE) {
609 /* error the io and bail out, or requeue it if needed */
Stefan Bader9faf4002006-10-03 01:15:41 -0700610 md = tio->io->md;
611 dec_pending(tio->io, r);
612 /*
613 * Store bio_set for cleanup.
614 */
615 clone->bi_private = md->bs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 bio_put(clone);
Stefan Bader9faf4002006-10-03 01:15:41 -0700617 free_tio(md, tio);
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800618 } else if (r) {
619 DMWARN("unimplemented target map return value: %d", r);
620 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 }
622}
623
624struct clone_info {
625 struct mapped_device *md;
626 struct dm_table *map;
627 struct bio *bio;
628 struct dm_io *io;
629 sector_t sector;
630 sector_t sector_count;
631 unsigned short idx;
632};
633
Peter Osterlund36763472005-09-06 15:16:42 -0700634static void dm_bio_destructor(struct bio *bio)
635{
Stefan Bader9faf4002006-10-03 01:15:41 -0700636 struct bio_set *bs = bio->bi_private;
637
638 bio_free(bio, bs);
Peter Osterlund36763472005-09-06 15:16:42 -0700639}
640
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641/*
642 * Creates a little bio that is just does part of a bvec.
643 */
644static struct bio *split_bvec(struct bio *bio, sector_t sector,
645 unsigned short idx, unsigned int offset,
Stefan Bader9faf4002006-10-03 01:15:41 -0700646 unsigned int len, struct bio_set *bs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647{
648 struct bio *clone;
649 struct bio_vec *bv = bio->bi_io_vec + idx;
650
Stefan Bader9faf4002006-10-03 01:15:41 -0700651 clone = bio_alloc_bioset(GFP_NOIO, 1, bs);
Peter Osterlund36763472005-09-06 15:16:42 -0700652 clone->bi_destructor = dm_bio_destructor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 *clone->bi_io_vec = *bv;
654
655 clone->bi_sector = sector;
656 clone->bi_bdev = bio->bi_bdev;
657 clone->bi_rw = bio->bi_rw;
658 clone->bi_vcnt = 1;
659 clone->bi_size = to_bytes(len);
660 clone->bi_io_vec->bv_offset = offset;
661 clone->bi_io_vec->bv_len = clone->bi_size;
Martin K. Petersenf3e1d262008-10-21 17:45:04 +0100662 clone->bi_flags |= 1 << BIO_CLONED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
664 return clone;
665}
666
667/*
668 * Creates a bio that consists of range of complete bvecs.
669 */
670static struct bio *clone_bio(struct bio *bio, sector_t sector,
671 unsigned short idx, unsigned short bv_count,
Stefan Bader9faf4002006-10-03 01:15:41 -0700672 unsigned int len, struct bio_set *bs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673{
674 struct bio *clone;
675
Stefan Bader9faf4002006-10-03 01:15:41 -0700676 clone = bio_alloc_bioset(GFP_NOIO, bio->bi_max_vecs, bs);
677 __bio_clone(clone, bio);
678 clone->bi_destructor = dm_bio_destructor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 clone->bi_sector = sector;
680 clone->bi_idx = idx;
681 clone->bi_vcnt = idx + bv_count;
682 clone->bi_size = to_bytes(len);
683 clone->bi_flags &= ~(1 << BIO_SEG_VALID);
684
685 return clone;
686}
687
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000688static int __clone_and_map(struct clone_info *ci)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689{
690 struct bio *clone, *bio = ci->bio;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000691 struct dm_target *ti;
692 sector_t len = 0, max;
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100693 struct dm_target_io *tio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000695 ti = dm_table_find_target(ci->map, ci->sector);
696 if (!dm_target_is_valid(ti))
697 return -EIO;
698
699 max = max_io_len(ci->md, ci->sector, ti);
700
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 /*
702 * Allocate a target io object.
703 */
704 tio = alloc_tio(ci->md);
705 tio->io = ci->io;
706 tio->ti = ti;
707 memset(&tio->info, 0, sizeof(tio->info));
708
709 if (ci->sector_count <= max) {
710 /*
711 * Optimise for the simple case where we can do all of
712 * the remaining io with a single clone.
713 */
714 clone = clone_bio(bio, ci->sector, ci->idx,
Stefan Bader9faf4002006-10-03 01:15:41 -0700715 bio->bi_vcnt - ci->idx, ci->sector_count,
716 ci->md->bs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 __map_bio(ti, clone, tio);
718 ci->sector_count = 0;
719
720 } else if (to_sector(bio->bi_io_vec[ci->idx].bv_len) <= max) {
721 /*
722 * There are some bvecs that don't span targets.
723 * Do as many of these as possible.
724 */
725 int i;
726 sector_t remaining = max;
727 sector_t bv_len;
728
729 for (i = ci->idx; remaining && (i < bio->bi_vcnt); i++) {
730 bv_len = to_sector(bio->bi_io_vec[i].bv_len);
731
732 if (bv_len > remaining)
733 break;
734
735 remaining -= bv_len;
736 len += bv_len;
737 }
738
Stefan Bader9faf4002006-10-03 01:15:41 -0700739 clone = clone_bio(bio, ci->sector, ci->idx, i - ci->idx, len,
740 ci->md->bs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 __map_bio(ti, clone, tio);
742
743 ci->sector += len;
744 ci->sector_count -= len;
745 ci->idx = i;
746
747 } else {
748 /*
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800749 * Handle a bvec that must be split between two or more targets.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 */
751 struct bio_vec *bv = bio->bi_io_vec + ci->idx;
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800752 sector_t remaining = to_sector(bv->bv_len);
753 unsigned int offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800755 do {
756 if (offset) {
757 ti = dm_table_find_target(ci->map, ci->sector);
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000758 if (!dm_target_is_valid(ti))
759 return -EIO;
760
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800761 max = max_io_len(ci->md, ci->sector, ti);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800763 tio = alloc_tio(ci->md);
764 tio->io = ci->io;
765 tio->ti = ti;
766 memset(&tio->info, 0, sizeof(tio->info));
767 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800769 len = min(remaining, max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800771 clone = split_bvec(bio, ci->sector, ci->idx,
Stefan Bader9faf4002006-10-03 01:15:41 -0700772 bv->bv_offset + offset, len,
773 ci->md->bs);
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800774
775 __map_bio(ti, clone, tio);
776
777 ci->sector += len;
778 ci->sector_count -= len;
779 offset += to_bytes(len);
780 } while (remaining -= len);
781
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 ci->idx++;
783 }
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000784
785 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786}
787
788/*
789 * Split the bio into several clones.
790 */
Milan Broz9e4e5f82007-10-19 22:38:53 +0100791static int __split_bio(struct mapped_device *md, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792{
793 struct clone_info ci;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000794 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
796 ci.map = dm_get_table(md);
Milan Broz9e4e5f82007-10-19 22:38:53 +0100797 if (unlikely(!ci.map))
798 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
800 ci.md = md;
801 ci.bio = bio;
802 ci.io = alloc_io(md);
803 ci.io->error = 0;
804 atomic_set(&ci.io->io_count, 1);
805 ci.io->bio = bio;
806 ci.io->md = md;
807 ci.sector = bio->bi_sector;
808 ci.sector_count = bio_sectors(bio);
809 ci.idx = bio->bi_idx;
810
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800811 start_io_acct(ci.io);
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000812 while (ci.sector_count && !error)
813 error = __clone_and_map(&ci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
815 /* drop the extra reference count */
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000816 dec_pending(ci.io, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 dm_table_put(ci.map);
Milan Broz9e4e5f82007-10-19 22:38:53 +0100818
819 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820}
821/*-----------------------------------------------------------------
822 * CRUD END
823 *---------------------------------------------------------------*/
824
Milan Brozf6fccb12008-07-21 12:00:37 +0100825static int dm_merge_bvec(struct request_queue *q,
826 struct bvec_merge_data *bvm,
827 struct bio_vec *biovec)
828{
829 struct mapped_device *md = q->queuedata;
830 struct dm_table *map = dm_get_table(md);
831 struct dm_target *ti;
832 sector_t max_sectors;
Mikulas Patocka50371082008-10-01 14:39:17 +0100833 int max_size = 0;
Milan Brozf6fccb12008-07-21 12:00:37 +0100834
835 if (unlikely(!map))
Mikulas Patocka50371082008-10-01 14:39:17 +0100836 goto out;
Milan Brozf6fccb12008-07-21 12:00:37 +0100837
838 ti = dm_table_find_target(map, bvm->bi_sector);
Mikulas Patockab01cd5a2008-10-01 14:39:24 +0100839 if (!dm_target_is_valid(ti))
840 goto out_table;
Milan Brozf6fccb12008-07-21 12:00:37 +0100841
842 /*
843 * Find maximum amount of I/O that won't need splitting
844 */
845 max_sectors = min(max_io_len(md, bvm->bi_sector, ti),
846 (sector_t) BIO_MAX_SECTORS);
847 max_size = (max_sectors << SECTOR_SHIFT) - bvm->bi_size;
848 if (max_size < 0)
849 max_size = 0;
850
851 /*
852 * merge_bvec_fn() returns number of bytes
853 * it can accept at this offset
854 * max is precomputed maximal io size
855 */
856 if (max_size && ti->type->merge)
857 max_size = ti->type->merge(ti, bvm, biovec, max_size);
858
Mikulas Patockab01cd5a2008-10-01 14:39:24 +0100859out_table:
Mikulas Patocka50371082008-10-01 14:39:17 +0100860 dm_table_put(map);
861
862out:
Milan Brozf6fccb12008-07-21 12:00:37 +0100863 /*
864 * Always allow an entire first page
865 */
866 if (max_size <= biovec->bv_len && !(bvm->bi_size >> SECTOR_SHIFT))
867 max_size = biovec->bv_len;
868
Milan Brozf6fccb12008-07-21 12:00:37 +0100869 return max_size;
870}
871
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872/*
873 * The request function that just remaps the bio built up by
874 * dm_merge_bvec.
875 */
Jens Axboe165125e2007-07-24 09:28:11 +0200876static int dm_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877{
Milan Broz9e4e5f82007-10-19 22:38:53 +0100878 int r = -EIO;
Kevin Corry12f03a42006-02-01 03:04:52 -0800879 int rw = bio_data_dir(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 struct mapped_device *md = q->queuedata;
Tejun Heoc9959052008-08-25 19:47:21 +0900881 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
Stefan Bader07a83c42007-07-12 17:28:33 +0100883 /*
884 * There is no use in forwarding any barrier request since we can't
885 * guarantee it is (or can be) handled by the targets correctly.
886 */
887 if (unlikely(bio_barrier(bio))) {
NeilBrown6712ecf2007-09-27 12:47:43 +0200888 bio_endio(bio, -EOPNOTSUPP);
Stefan Bader07a83c42007-07-12 17:28:33 +0100889 return 0;
890 }
891
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700892 down_read(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
Tejun Heo074a7ac2008-08-25 19:56:14 +0900894 cpu = part_stat_lock();
895 part_stat_inc(cpu, &dm_disk(md)->part0, ios[rw]);
896 part_stat_add(cpu, &dm_disk(md)->part0, sectors[rw], bio_sectors(bio));
897 part_stat_unlock();
Kevin Corry12f03a42006-02-01 03:04:52 -0800898
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 /*
900 * If we're suspended we have to queue
901 * this io for later.
902 */
903 while (test_bit(DMF_BLOCK_IO, &md->flags)) {
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700904 up_read(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
Milan Broz9e4e5f82007-10-19 22:38:53 +0100906 if (bio_rw(bio) != READA)
907 r = queue_io(md, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
Milan Broz9e4e5f82007-10-19 22:38:53 +0100909 if (r <= 0)
910 goto out_req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
912 /*
913 * We're in a while loop, because someone could suspend
914 * before we get to the following read lock.
915 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700916 down_read(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 }
918
Milan Broz9e4e5f82007-10-19 22:38:53 +0100919 r = __split_bio(md, bio);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700920 up_read(&md->io_lock);
Milan Broz9e4e5f82007-10-19 22:38:53 +0100921
922out_req:
923 if (r < 0)
924 bio_io_error(bio);
925
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 return 0;
927}
928
Jens Axboe165125e2007-07-24 09:28:11 +0200929static void dm_unplug_all(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930{
931 struct mapped_device *md = q->queuedata;
932 struct dm_table *map = dm_get_table(md);
933
934 if (map) {
935 dm_table_unplug_all(map);
936 dm_table_put(map);
937 }
938}
939
940static int dm_any_congested(void *congested_data, int bdi_bits)
941{
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +0000942 int r = bdi_bits;
943 struct mapped_device *md = congested_data;
944 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +0000946 atomic_inc(&md->pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +0000948 if (!test_bit(DMF_BLOCK_IO, &md->flags)) {
949 map = dm_get_table(md);
950 if (map) {
951 r = dm_table_any_congested(map, bdi_bits);
952 dm_table_put(map);
953 }
954 }
955
956 if (!atomic_dec_return(&md->pending))
957 /* nudge anyone waiting on suspend queue */
958 wake_up(&md->wait);
959
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 return r;
961}
962
963/*-----------------------------------------------------------------
964 * An IDR is used to keep track of allocated minor numbers.
965 *---------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966static DEFINE_IDR(_minor_idr);
967
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -0700968static void free_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969{
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -0700970 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 idr_remove(&_minor_idr, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -0700972 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973}
974
975/*
976 * See if the device with a specific minor # is free.
977 */
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +0100978static int specific_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979{
980 int r, m;
981
982 if (minor >= (1 << MINORBITS))
983 return -EINVAL;
984
Jeff Mahoney62f75c22006-06-26 00:27:21 -0700985 r = idr_pre_get(&_minor_idr, GFP_KERNEL);
986 if (!r)
987 return -ENOMEM;
988
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -0700989 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
991 if (idr_find(&_minor_idr, minor)) {
992 r = -EBUSY;
993 goto out;
994 }
995
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -0700996 r = idr_get_new_above(&_minor_idr, MINOR_ALLOCED, minor, &m);
Jeff Mahoney62f75c22006-06-26 00:27:21 -0700997 if (r)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
1000 if (m != minor) {
1001 idr_remove(&_minor_idr, m);
1002 r = -EBUSY;
1003 goto out;
1004 }
1005
1006out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001007 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 return r;
1009}
1010
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001011static int next_free_minor(int *minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012{
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001013 int r, m;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 r = idr_pre_get(&_minor_idr, GFP_KERNEL);
Jeff Mahoney62f75c22006-06-26 00:27:21 -07001016 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
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001021 r = idr_get_new(&_minor_idr, MINOR_ALLOCED, &m);
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001022 if (r)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
1025 if (m >= (1 << MINORBITS)) {
1026 idr_remove(&_minor_idr, m);
1027 r = -ENOSPC;
1028 goto out;
1029 }
1030
1031 *minor = m;
1032
1033out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001034 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 return r;
1036}
1037
1038static struct block_device_operations dm_blk_dops;
1039
1040/*
1041 * Allocate and initialise a blank device with a given minor.
1042 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001043static struct mapped_device *alloc_dev(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044{
1045 int r;
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001046 struct mapped_device *md = kzalloc(sizeof(*md), GFP_KERNEL);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001047 void *old_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
1049 if (!md) {
1050 DMWARN("unable to allocate device, out of memory.");
1051 return NULL;
1052 }
1053
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001054 if (!try_module_get(THIS_MODULE))
Milan Broz6ed7ade2008-02-08 02:10:19 +00001055 goto bad_module_get;
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001056
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 /* get a minor number for the dev */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001058 if (minor == DM_ANY_MINOR)
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001059 r = next_free_minor(&minor);
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001060 else
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001061 r = specific_minor(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 if (r < 0)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001063 goto bad_minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001065 init_rwsem(&md->io_lock);
Daniel Walkere61290a2008-02-08 02:10:08 +00001066 mutex_init(&md->suspend_lock);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001067 spin_lock_init(&md->pushback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 rwlock_init(&md->map_lock);
1069 atomic_set(&md->holders, 1);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -07001070 atomic_set(&md->open_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 atomic_set(&md->event_nr, 0);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001072 atomic_set(&md->uevent_seq, 0);
1073 INIT_LIST_HEAD(&md->uevent_list);
1074 spin_lock_init(&md->uevent_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
1076 md->queue = blk_alloc_queue(GFP_KERNEL);
1077 if (!md->queue)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001078 goto bad_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
1080 md->queue->queuedata = md;
1081 md->queue->backing_dev_info.congested_fn = dm_any_congested;
1082 md->queue->backing_dev_info.congested_data = md;
1083 blk_queue_make_request(md->queue, dm_request);
Jens Axboedaef2652006-01-10 10:48:02 +01001084 blk_queue_bounce_limit(md->queue, BLK_BOUNCE_ANY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 md->queue->unplug_fn = dm_unplug_all;
Milan Brozf6fccb12008-07-21 12:00:37 +01001086 blk_queue_merge_bvec(md->queue, dm_merge_bvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087
Matthew Dobson93d23412006-03-26 01:37:50 -08001088 md->io_pool = mempool_create_slab_pool(MIN_IOS, _io_cache);
Kiyoshi Ueda74859362006-12-08 02:41:02 -08001089 if (!md->io_pool)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001090 goto bad_io_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091
Matthew Dobson93d23412006-03-26 01:37:50 -08001092 md->tio_pool = mempool_create_slab_pool(MIN_IOS, _tio_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 if (!md->tio_pool)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001094 goto bad_tio_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
Jens Axboebb799ca2008-12-10 15:35:05 +01001096 md->bs = bioset_create(16, 0);
Stefan Bader9faf4002006-10-03 01:15:41 -07001097 if (!md->bs)
1098 goto bad_no_bioset;
1099
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 md->disk = alloc_disk(1);
1101 if (!md->disk)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001102 goto bad_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07001104 atomic_set(&md->pending, 0);
1105 init_waitqueue_head(&md->wait);
1106 init_waitqueue_head(&md->eventq);
1107
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 md->disk->major = _major;
1109 md->disk->first_minor = minor;
1110 md->disk->fops = &dm_blk_dops;
1111 md->disk->queue = md->queue;
1112 md->disk->private_data = md;
1113 sprintf(md->disk->disk_name, "dm-%d", minor);
1114 add_disk(md->disk);
Mike Anderson7e51f252006-03-27 01:17:52 -08001115 format_dev_t(md->name, MKDEV(_major, minor));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
Milan Broz304f3f62008-02-08 02:11:17 +00001117 md->wq = create_singlethread_workqueue("kdmflush");
1118 if (!md->wq)
1119 goto bad_thread;
1120
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001121 /* Populate the mapping, nobody knows we exist yet */
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001122 spin_lock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001123 old_md = idr_replace(&_minor_idr, md, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001124 spin_unlock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001125
1126 BUG_ON(old_md != MINOR_ALLOCED);
1127
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 return md;
1129
Milan Broz304f3f62008-02-08 02:11:17 +00001130bad_thread:
1131 put_disk(md->disk);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001132bad_disk:
Stefan Bader9faf4002006-10-03 01:15:41 -07001133 bioset_free(md->bs);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001134bad_no_bioset:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 mempool_destroy(md->tio_pool);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001136bad_tio_pool:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 mempool_destroy(md->io_pool);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001138bad_io_pool:
Al Viro1312f402006-03-12 11:02:03 -05001139 blk_cleanup_queue(md->queue);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001140bad_queue:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 free_minor(minor);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001142bad_minor:
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001143 module_put(THIS_MODULE);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001144bad_module_get:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 kfree(md);
1146 return NULL;
1147}
1148
Jun'ichi Nomuraae9da832007-10-19 22:38:43 +01001149static void unlock_fs(struct mapped_device *md);
1150
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151static void free_dev(struct mapped_device *md)
1152{
Tejun Heof331c022008-09-03 09:01:48 +02001153 int minor = MINOR(disk_devt(md->disk));
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08001154
Jun'ichi Nomurad9dde592006-02-24 13:04:24 -08001155 if (md->suspended_bdev) {
Jun'ichi Nomuraae9da832007-10-19 22:38:43 +01001156 unlock_fs(md);
Jun'ichi Nomurad9dde592006-02-24 13:04:24 -08001157 bdput(md->suspended_bdev);
1158 }
Milan Broz304f3f62008-02-08 02:11:17 +00001159 destroy_workqueue(md->wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 mempool_destroy(md->tio_pool);
1161 mempool_destroy(md->io_pool);
Stefan Bader9faf4002006-10-03 01:15:41 -07001162 bioset_free(md->bs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 del_gendisk(md->disk);
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08001164 free_minor(minor);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001165
1166 spin_lock(&_minor_lock);
1167 md->disk->private_data = NULL;
1168 spin_unlock(&_minor_lock);
1169
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 put_disk(md->disk);
Al Viro1312f402006-03-12 11:02:03 -05001171 blk_cleanup_queue(md->queue);
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001172 module_put(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 kfree(md);
1174}
1175
1176/*
1177 * Bind a table to the device.
1178 */
1179static void event_callback(void *context)
1180{
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001181 unsigned long flags;
1182 LIST_HEAD(uevents);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 struct mapped_device *md = (struct mapped_device *) context;
1184
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001185 spin_lock_irqsave(&md->uevent_lock, flags);
1186 list_splice_init(&md->uevent_list, &uevents);
1187 spin_unlock_irqrestore(&md->uevent_lock, flags);
1188
Tejun Heoed9e1982008-08-25 19:56:05 +09001189 dm_send_uevents(&uevents, &disk_to_dev(md->disk)->kobj);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001190
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 atomic_inc(&md->event_nr);
1192 wake_up(&md->eventq);
1193}
1194
Alasdair G Kergon4e90188be2005-07-28 21:15:59 -07001195static void __set_size(struct mapped_device *md, sector_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196{
Alasdair G Kergon4e90188be2005-07-28 21:15:59 -07001197 set_capacity(md->disk, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001199 mutex_lock(&md->suspended_bdev->bd_inode->i_mutex);
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001200 i_size_write(md->suspended_bdev->bd_inode, (loff_t)size << SECTOR_SHIFT);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001201 mutex_unlock(&md->suspended_bdev->bd_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202}
1203
1204static int __bind(struct mapped_device *md, struct dm_table *t)
1205{
Jens Axboe165125e2007-07-24 09:28:11 +02001206 struct request_queue *q = md->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 sector_t size;
1208
1209 size = dm_table_get_size(t);
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08001210
1211 /*
1212 * Wipe any geometry if the size of the table changed.
1213 */
1214 if (size != get_capacity(md->disk))
1215 memset(&md->geometry, 0, sizeof(md->geometry));
1216
Jun'ichi Nomurabfa152f2007-01-26 00:57:07 -08001217 if (md->suspended_bdev)
1218 __set_size(md, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 if (size == 0)
1220 return 0;
1221
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 dm_table_get(t);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001223 dm_table_event_callback(t, event_callback, md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001224
1225 write_lock(&md->map_lock);
1226 md->map = t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 dm_table_set_restrictions(t, q);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001228 write_unlock(&md->map_lock);
1229
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 return 0;
1231}
1232
1233static void __unbind(struct mapped_device *md)
1234{
1235 struct dm_table *map = md->map;
1236
1237 if (!map)
1238 return;
1239
1240 dm_table_event_callback(map, NULL, NULL);
1241 write_lock(&md->map_lock);
1242 md->map = NULL;
1243 write_unlock(&md->map_lock);
1244 dm_table_put(map);
1245}
1246
1247/*
1248 * Constructor for a new device.
1249 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001250int dm_create(int minor, struct mapped_device **result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251{
1252 struct mapped_device *md;
1253
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001254 md = alloc_dev(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 if (!md)
1256 return -ENXIO;
1257
1258 *result = md;
1259 return 0;
1260}
1261
David Teigland637842c2006-01-06 00:20:00 -08001262static struct mapped_device *dm_find_md(dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263{
1264 struct mapped_device *md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 unsigned minor = MINOR(dev);
1266
1267 if (MAJOR(dev) != _major || minor >= (1 << MINORBITS))
1268 return NULL;
1269
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001270 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271
1272 md = idr_find(&_minor_idr, minor);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001273 if (md && (md == MINOR_ALLOCED ||
Tejun Heof331c022008-09-03 09:01:48 +02001274 (MINOR(disk_devt(dm_disk(md))) != minor) ||
Alasdair G Kergon17b2f662006-06-26 00:27:33 -07001275 test_bit(DMF_FREEING, &md->flags))) {
David Teigland637842c2006-01-06 00:20:00 -08001276 md = NULL;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001277 goto out;
1278 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001280out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001281 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
David Teigland637842c2006-01-06 00:20:00 -08001283 return md;
1284}
1285
David Teiglandd229a952006-01-06 00:20:01 -08001286struct mapped_device *dm_get_md(dev_t dev)
1287{
1288 struct mapped_device *md = dm_find_md(dev);
1289
1290 if (md)
1291 dm_get(md);
1292
1293 return md;
1294}
1295
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08001296void *dm_get_mdptr(struct mapped_device *md)
David Teigland637842c2006-01-06 00:20:00 -08001297{
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08001298 return md->interface_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299}
1300
1301void dm_set_mdptr(struct mapped_device *md, void *ptr)
1302{
1303 md->interface_ptr = ptr;
1304}
1305
1306void dm_get(struct mapped_device *md)
1307{
1308 atomic_inc(&md->holders);
1309}
1310
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001311const char *dm_device_name(struct mapped_device *md)
1312{
1313 return md->name;
1314}
1315EXPORT_SYMBOL_GPL(dm_device_name);
1316
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317void dm_put(struct mapped_device *md)
1318{
Mike Anderson1134e5a2006-03-27 01:17:54 -08001319 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001321 BUG_ON(test_bit(DMF_FREEING, &md->flags));
1322
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001323 if (atomic_dec_and_lock(&md->holders, &_minor_lock)) {
Mike Anderson1134e5a2006-03-27 01:17:54 -08001324 map = dm_get_table(md);
Tejun Heof331c022008-09-03 09:01:48 +02001325 idr_replace(&_minor_idr, MINOR_ALLOCED,
1326 MINOR(disk_devt(dm_disk(md))));
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001327 set_bit(DMF_FREEING, &md->flags);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001328 spin_unlock(&_minor_lock);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001329 if (!dm_suspended(md)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 dm_table_presuspend_targets(map);
1331 dm_table_postsuspend_targets(map);
1332 }
1333 __unbind(md);
Mike Anderson1134e5a2006-03-27 01:17:54 -08001334 dm_table_put(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 free_dev(md);
1336 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337}
Edward Goggin79eb8852007-05-09 02:32:56 -07001338EXPORT_SYMBOL_GPL(dm_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
Milan Broz46125c12008-02-08 02:10:30 +00001340static int dm_wait_for_completion(struct mapped_device *md)
1341{
1342 int r = 0;
1343
1344 while (1) {
1345 set_current_state(TASK_INTERRUPTIBLE);
1346
1347 smp_mb();
1348 if (!atomic_read(&md->pending))
1349 break;
1350
1351 if (signal_pending(current)) {
1352 r = -EINTR;
1353 break;
1354 }
1355
1356 io_schedule();
1357 }
1358 set_current_state(TASK_RUNNING);
1359
1360 return r;
1361}
1362
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363/*
1364 * Process the deferred bios
1365 */
Milan Broz6d6f10d2008-02-08 02:10:22 +00001366static void __flush_deferred_io(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367{
Milan Broz6d6f10d2008-02-08 02:10:22 +00001368 struct bio *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
Milan Broz6d6f10d2008-02-08 02:10:22 +00001370 while ((c = bio_list_pop(&md->deferred))) {
Milan Broz9e4e5f82007-10-19 22:38:53 +01001371 if (__split_bio(md, c))
1372 bio_io_error(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 }
Milan Broz73d410c2008-02-08 02:10:25 +00001374
1375 clear_bit(DMF_BLOCK_IO, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376}
1377
Milan Broz6d6f10d2008-02-08 02:10:22 +00001378static void __merge_pushback_list(struct mapped_device *md)
1379{
1380 unsigned long flags;
1381
1382 spin_lock_irqsave(&md->pushback_lock, flags);
1383 clear_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
1384 bio_list_merge_head(&md->deferred, &md->pushback);
1385 bio_list_init(&md->pushback);
1386 spin_unlock_irqrestore(&md->pushback_lock, flags);
1387}
1388
Milan Broz304f3f62008-02-08 02:11:17 +00001389static void dm_wq_work(struct work_struct *work)
1390{
1391 struct dm_wq_req *req = container_of(work, struct dm_wq_req, work);
1392 struct mapped_device *md = req->md;
1393
1394 down_write(&md->io_lock);
1395 switch (req->type) {
Milan Broz304f3f62008-02-08 02:11:17 +00001396 case DM_WQ_FLUSH_DEFERRED:
1397 __flush_deferred_io(md);
1398 break;
1399 default:
1400 DMERR("dm_wq_work: unrecognised work type %d", req->type);
1401 BUG();
1402 }
1403 up_write(&md->io_lock);
1404}
1405
1406static void dm_wq_queue(struct mapped_device *md, int type, void *context,
1407 struct dm_wq_req *req)
1408{
1409 req->type = type;
1410 req->md = md;
1411 req->context = context;
1412 INIT_WORK(&req->work, dm_wq_work);
1413 queue_work(md->wq, &req->work);
1414}
1415
1416static void dm_queue_flush(struct mapped_device *md, int type, void *context)
1417{
1418 struct dm_wq_req req;
1419
1420 dm_wq_queue(md, type, context, &req);
1421 flush_workqueue(md->wq);
1422}
1423
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424/*
1425 * Swap in a new table (destroying old one).
1426 */
1427int dm_swap_table(struct mapped_device *md, struct dm_table *table)
1428{
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07001429 int r = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
Daniel Walkere61290a2008-02-08 02:10:08 +00001431 mutex_lock(&md->suspend_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432
1433 /* device must be suspended */
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001434 if (!dm_suspended(md))
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07001435 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
Jun'ichi Nomurabfa152f2007-01-26 00:57:07 -08001437 /* without bdev, the device size cannot be changed */
1438 if (!md->suspended_bdev)
1439 if (get_capacity(md->disk) != dm_table_get_size(table))
1440 goto out;
1441
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 __unbind(md);
1443 r = __bind(md, table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07001445out:
Daniel Walkere61290a2008-02-08 02:10:08 +00001446 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07001447 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448}
1449
1450/*
1451 * Functions to lock and unlock any filesystem running on the
1452 * device.
1453 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001454static int lock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455{
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001456 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
1458 WARN_ON(md->frozen_sb);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07001459
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001460 md->frozen_sb = freeze_bdev(md->suspended_bdev);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07001461 if (IS_ERR(md->frozen_sb)) {
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001462 r = PTR_ERR(md->frozen_sb);
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001463 md->frozen_sb = NULL;
1464 return r;
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07001465 }
1466
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08001467 set_bit(DMF_FROZEN, &md->flags);
1468
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 /* don't bdput right now, we don't want the bdev
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001470 * to go away while it is locked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 */
1472 return 0;
1473}
1474
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001475static void unlock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476{
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08001477 if (!test_bit(DMF_FROZEN, &md->flags))
1478 return;
1479
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001480 thaw_bdev(md->suspended_bdev, md->frozen_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 md->frozen_sb = NULL;
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08001482 clear_bit(DMF_FROZEN, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483}
1484
1485/*
1486 * We need to be able to change a mapping table under a mounted
1487 * filesystem. For example we might want to move some data in
1488 * the background. Before the table can be swapped with
1489 * dm_bind_table, dm_suspend must be called to flush any in
1490 * flight bios and ensure that any further io gets deferred.
1491 */
Kiyoshi Uedaa3d77d32006-12-08 02:41:04 -08001492int dm_suspend(struct mapped_device *md, unsigned suspend_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493{
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001494 struct dm_table *map = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 DECLARE_WAITQUEUE(wait, current);
Milan Broz46125c12008-02-08 02:10:30 +00001496 int r = 0;
Kiyoshi Uedaa3d77d32006-12-08 02:41:04 -08001497 int do_lockfs = suspend_flags & DM_SUSPEND_LOCKFS_FLAG ? 1 : 0;
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001498 int noflush = suspend_flags & DM_SUSPEND_NOFLUSH_FLAG ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499
Daniel Walkere61290a2008-02-08 02:10:08 +00001500 mutex_lock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001501
Milan Broz73d410c2008-02-08 02:10:25 +00001502 if (dm_suspended(md)) {
1503 r = -EINVAL;
Alasdair G Kergond2874832006-11-08 17:44:43 -08001504 goto out_unlock;
Milan Broz73d410c2008-02-08 02:10:25 +00001505 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
1507 map = dm_get_table(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001509 /*
1510 * DMF_NOFLUSH_SUSPENDING must be set before presuspend.
1511 * This flag is cleared before dm_suspend returns.
1512 */
1513 if (noflush)
1514 set_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
1515
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001516 /* This does not get reverted if there's an error later. */
1517 dm_table_presuspend_targets(map);
1518
Jun'ichi Nomurabfa152f2007-01-26 00:57:07 -08001519 /* bdget() can stall if the pending I/Os are not flushed */
1520 if (!noflush) {
1521 md->suspended_bdev = bdget_disk(md->disk, 0);
1522 if (!md->suspended_bdev) {
1523 DMWARN("bdget failed in dm_suspend");
1524 r = -ENOMEM;
Kiyoshi Uedaf431d962008-10-21 17:45:07 +01001525 goto out;
Jun'ichi Nomurabfa152f2007-01-26 00:57:07 -08001526 }
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001527
Milan Broz6d6f10d2008-02-08 02:10:22 +00001528 /*
1529 * Flush I/O to the device. noflush supersedes do_lockfs,
1530 * because lock_fs() needs to flush I/Os.
1531 */
1532 if (do_lockfs) {
1533 r = lock_fs(md);
1534 if (r)
1535 goto out;
1536 }
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08001537 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538
1539 /*
Alasdair G Kergon354e0072005-05-05 16:16:05 -07001540 * First we set the BLOCK_IO flag so no more ios will be mapped.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001542 down_write(&md->io_lock);
1543 set_bit(DMF_BLOCK_IO, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 add_wait_queue(&md->wait, &wait);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001546 up_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547
1548 /* unplug */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001549 if (map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 dm_table_unplug_all(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
1552 /*
Milan Broz46125c12008-02-08 02:10:30 +00001553 * Wait for the already-mapped ios to complete.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 */
Milan Broz46125c12008-02-08 02:10:30 +00001555 r = dm_wait_for_completion(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001557 down_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 remove_wait_queue(&md->wait, &wait);
1559
Milan Broz6d6f10d2008-02-08 02:10:22 +00001560 if (noflush)
1561 __merge_pushback_list(md);
Milan Broz94d63512008-02-08 02:10:27 +00001562 up_write(&md->io_lock);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001563
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 /* were we interrupted ? */
Milan Broz46125c12008-02-08 02:10:30 +00001565 if (r < 0) {
Milan Broz304f3f62008-02-08 02:11:17 +00001566 dm_queue_flush(md, DM_WQ_FLUSH_DEFERRED, NULL);
Milan Broz73d410c2008-02-08 02:10:25 +00001567
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001568 unlock_fs(md);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001569 goto out; /* pushback list is already flushed, so skip flush */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001570 }
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001571
1572 dm_table_postsuspend_targets(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573
1574 set_bit(DMF_SUSPENDED, &md->flags);
1575
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001576out:
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001577 if (r && md->suspended_bdev) {
1578 bdput(md->suspended_bdev);
1579 md->suspended_bdev = NULL;
1580 }
1581
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 dm_table_put(map);
Alasdair G Kergond2874832006-11-08 17:44:43 -08001583
1584out_unlock:
Daniel Walkere61290a2008-02-08 02:10:08 +00001585 mutex_unlock(&md->suspend_lock);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001586 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587}
1588
1589int dm_resume(struct mapped_device *md)
1590{
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001591 int r = -EINVAL;
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001592 struct dm_table *map = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593
Daniel Walkere61290a2008-02-08 02:10:08 +00001594 mutex_lock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001595 if (!dm_suspended(md))
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001596 goto out;
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001597
1598 map = dm_get_table(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001599 if (!map || !dm_table_get_size(map))
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001600 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
Milan Broz8757b772006-10-03 01:15:36 -07001602 r = dm_table_resume_targets(map);
1603 if (r)
1604 goto out;
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001605
Milan Broz304f3f62008-02-08 02:11:17 +00001606 dm_queue_flush(md, DM_WQ_FLUSH_DEFERRED, NULL);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001607
1608 unlock_fs(md);
1609
Jun'ichi Nomurabfa152f2007-01-26 00:57:07 -08001610 if (md->suspended_bdev) {
1611 bdput(md->suspended_bdev);
1612 md->suspended_bdev = NULL;
1613 }
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001614
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001615 clear_bit(DMF_SUSPENDED, &md->flags);
1616
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 dm_table_unplug_all(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618
Alasdair G Kergon69267a32007-12-13 14:15:57 +00001619 dm_kobject_uevent(md);
Hannes Reinecke8560ed62006-10-03 01:15:35 -07001620
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001621 r = 0;
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001622
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001623out:
1624 dm_table_put(map);
Daniel Walkere61290a2008-02-08 02:10:08 +00001625 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001626
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001627 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628}
1629
1630/*-----------------------------------------------------------------
1631 * Event notification.
1632 *---------------------------------------------------------------*/
Alasdair G Kergon69267a32007-12-13 14:15:57 +00001633void dm_kobject_uevent(struct mapped_device *md)
1634{
Tejun Heoed9e1982008-08-25 19:56:05 +09001635 kobject_uevent(&disk_to_dev(md->disk)->kobj, KOBJ_CHANGE);
Alasdair G Kergon69267a32007-12-13 14:15:57 +00001636}
1637
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001638uint32_t dm_next_uevent_seq(struct mapped_device *md)
1639{
1640 return atomic_add_return(1, &md->uevent_seq);
1641}
1642
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643uint32_t dm_get_event_nr(struct mapped_device *md)
1644{
1645 return atomic_read(&md->event_nr);
1646}
1647
1648int dm_wait_event(struct mapped_device *md, int event_nr)
1649{
1650 return wait_event_interruptible(md->eventq,
1651 (event_nr != atomic_read(&md->event_nr)));
1652}
1653
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001654void dm_uevent_add(struct mapped_device *md, struct list_head *elist)
1655{
1656 unsigned long flags;
1657
1658 spin_lock_irqsave(&md->uevent_lock, flags);
1659 list_add(elist, &md->uevent_list);
1660 spin_unlock_irqrestore(&md->uevent_lock, flags);
1661}
1662
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663/*
1664 * The gendisk is only valid as long as you have a reference
1665 * count on 'md'.
1666 */
1667struct gendisk *dm_disk(struct mapped_device *md)
1668{
1669 return md->disk;
1670}
1671
1672int dm_suspended(struct mapped_device *md)
1673{
1674 return test_bit(DMF_SUSPENDED, &md->flags);
1675}
1676
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001677int dm_noflush_suspending(struct dm_target *ti)
1678{
1679 struct mapped_device *md = dm_table_get_md(ti->table);
1680 int r = __noflush_suspending(md);
1681
1682 dm_put(md);
1683
1684 return r;
1685}
1686EXPORT_SYMBOL_GPL(dm_noflush_suspending);
1687
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688static struct block_device_operations dm_blk_dops = {
1689 .open = dm_blk_open,
1690 .release = dm_blk_close,
Milan Brozaa129a22006-10-03 01:15:15 -07001691 .ioctl = dm_blk_ioctl,
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08001692 .getgeo = dm_blk_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 .owner = THIS_MODULE
1694};
1695
1696EXPORT_SYMBOL(dm_get_mapinfo);
1697
1698/*
1699 * module hooks
1700 */
1701module_init(dm_init);
1702module_exit(dm_exit);
1703
1704module_param(major, uint, 0);
1705MODULE_PARM_DESC(major, "The major number of the device mapper");
1706MODULE_DESCRIPTION(DM_NAME " driver");
1707MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
1708MODULE_LICENSE("GPL");