blob: 883860c3565bb4081672dbd87e78515d7dfedee6 [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"
10
11#include <linux/init.h>
12#include <linux/module.h>
Arjan van de Ven48c9c272006-03-27 01:18:20 -080013#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/moduleparam.h>
15#include <linux/blkpg.h>
16#include <linux/bio.h>
17#include <linux/buffer_head.h>
18#include <linux/mempool.h>
19#include <linux/slab.h>
20#include <linux/idr.h>
Darrick J. Wong3ac51e72006-03-27 01:17:54 -080021#include <linux/hdreg.h>
Jens Axboe2056a782006-03-23 20:00:26 +010022#include <linux/blktrace_api.h>
Milan Brozaa129a22006-10-03 01:15:15 -070023#include <linux/smp_lock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Alasdair G Kergon72d94862006-06-26 00:27:35 -070025#define DM_MSG_PREFIX "core"
26
Linus Torvalds1da177e2005-04-16 15:20:36 -070027static const char *_name = DM_NAME;
28
29static unsigned int major = 0;
30static unsigned int _major = 0;
31
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -070032static DEFINE_SPINLOCK(_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070033/*
34 * One of these is allocated per bio.
35 */
36struct dm_io {
37 struct mapped_device *md;
38 int error;
39 struct bio *bio;
40 atomic_t io_count;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -080041 unsigned long start_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042};
43
44/*
45 * One of these is allocated per target within a bio. Hopefully
46 * this will be simplified out one day.
47 */
48struct target_io {
49 struct dm_io *io;
50 struct dm_target *ti;
51 union map_info info;
52};
53
54union map_info *dm_get_mapinfo(struct bio *bio)
55{
Alasdair G Kergon17b2f662006-06-26 00:27:33 -070056 if (bio && bio->bi_private)
57 return &((struct target_io *)bio->bi_private)->info;
58 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059}
60
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -070061#define MINOR_ALLOCED ((void *)-1)
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063/*
64 * Bits for the md->flags field.
65 */
66#define DMF_BLOCK_IO 0
67#define DMF_SUSPENDED 1
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -080068#define DMF_FROZEN 2
Jeff Mahoneyfba9f902006-06-26 00:27:23 -070069#define DMF_FREEING 3
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -070070#define DMF_DELETING 4
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72struct mapped_device {
Alasdair G Kergon2ca33102005-07-28 21:16:00 -070073 struct rw_semaphore io_lock;
74 struct semaphore suspend_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 rwlock_t map_lock;
76 atomic_t holders;
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -070077 atomic_t open_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79 unsigned long flags;
80
81 request_queue_t *queue;
82 struct gendisk *disk;
Mike Anderson7e51f252006-03-27 01:17:52 -080083 char name[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85 void *interface_ptr;
86
87 /*
88 * A list of ios that arrived while we were suspended.
89 */
90 atomic_t pending;
91 wait_queue_head_t wait;
92 struct bio_list deferred;
93
94 /*
95 * The current mapping.
96 */
97 struct dm_table *map;
98
99 /*
100 * io objects are allocated from here.
101 */
102 mempool_t *io_pool;
103 mempool_t *tio_pool;
104
105 /*
106 * Event handling.
107 */
108 atomic_t event_nr;
109 wait_queue_head_t eventq;
110
111 /*
112 * freeze/thaw support require holding onto a super block
113 */
114 struct super_block *frozen_sb;
Alasdair G Kergone39e2e92006-01-06 00:20:05 -0800115 struct block_device *suspended_bdev;
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800116
117 /* forced geometry settings */
118 struct hd_geometry geometry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119};
120
121#define MIN_IOS 256
122static kmem_cache_t *_io_cache;
123static kmem_cache_t *_tio_cache;
124
125static struct bio_set *dm_set;
126
127static int __init local_init(void)
128{
129 int r;
130
131 dm_set = bioset_create(16, 16, 4);
132 if (!dm_set)
133 return -ENOMEM;
134
135 /* allocate a slab for the dm_ios */
136 _io_cache = kmem_cache_create("dm_io",
137 sizeof(struct dm_io), 0, 0, NULL, NULL);
138 if (!_io_cache)
139 return -ENOMEM;
140
141 /* allocate a slab for the target ios */
142 _tio_cache = kmem_cache_create("dm_tio", sizeof(struct target_io),
143 0, 0, NULL, NULL);
144 if (!_tio_cache) {
145 kmem_cache_destroy(_io_cache);
146 return -ENOMEM;
147 }
148
149 _major = major;
150 r = register_blkdev(_major, _name);
151 if (r < 0) {
152 kmem_cache_destroy(_tio_cache);
153 kmem_cache_destroy(_io_cache);
154 return r;
155 }
156
157 if (!_major)
158 _major = r;
159
160 return 0;
161}
162
163static void local_exit(void)
164{
165 kmem_cache_destroy(_tio_cache);
166 kmem_cache_destroy(_io_cache);
167
168 bioset_free(dm_set);
169
170 if (unregister_blkdev(_major, _name) < 0)
Greg Kroah-Hartman890fbae2005-06-20 21:15:16 -0700171 DMERR("unregister_blkdev failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173 _major = 0;
174
175 DMINFO("cleaned up");
176}
177
178int (*_inits[])(void) __initdata = {
179 local_init,
180 dm_target_init,
181 dm_linear_init,
182 dm_stripe_init,
183 dm_interface_init,
184};
185
186void (*_exits[])(void) = {
187 local_exit,
188 dm_target_exit,
189 dm_linear_exit,
190 dm_stripe_exit,
191 dm_interface_exit,
192};
193
194static int __init dm_init(void)
195{
196 const int count = ARRAY_SIZE(_inits);
197
198 int r, i;
199
200 for (i = 0; i < count; i++) {
201 r = _inits[i]();
202 if (r)
203 goto bad;
204 }
205
206 return 0;
207
208 bad:
209 while (i--)
210 _exits[i]();
211
212 return r;
213}
214
215static void __exit dm_exit(void)
216{
217 int i = ARRAY_SIZE(_exits);
218
219 while (i--)
220 _exits[i]();
221}
222
223/*
224 * Block device functions
225 */
226static int dm_blk_open(struct inode *inode, struct file *file)
227{
228 struct mapped_device *md;
229
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700230 spin_lock(&_minor_lock);
231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 md = inode->i_bdev->bd_disk->private_data;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700233 if (!md)
234 goto out;
235
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700236 if (test_bit(DMF_FREEING, &md->flags) ||
237 test_bit(DMF_DELETING, &md->flags)) {
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700238 md = NULL;
239 goto out;
240 }
241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 dm_get(md);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700243 atomic_inc(&md->open_count);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700244
245out:
246 spin_unlock(&_minor_lock);
247
248 return md ? 0 : -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249}
250
251static int dm_blk_close(struct inode *inode, struct file *file)
252{
253 struct mapped_device *md;
254
255 md = inode->i_bdev->bd_disk->private_data;
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700256 atomic_dec(&md->open_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 dm_put(md);
258 return 0;
259}
260
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700261int dm_open_count(struct mapped_device *md)
262{
263 return atomic_read(&md->open_count);
264}
265
266/*
267 * Guarantees nothing is using the device before it's deleted.
268 */
269int dm_lock_for_deletion(struct mapped_device *md)
270{
271 int r = 0;
272
273 spin_lock(&_minor_lock);
274
275 if (dm_open_count(md))
276 r = -EBUSY;
277 else
278 set_bit(DMF_DELETING, &md->flags);
279
280 spin_unlock(&_minor_lock);
281
282 return r;
283}
284
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800285static int dm_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
286{
287 struct mapped_device *md = bdev->bd_disk->private_data;
288
289 return dm_get_geometry(md, geo);
290}
291
Milan Brozaa129a22006-10-03 01:15:15 -0700292static int dm_blk_ioctl(struct inode *inode, struct file *file,
293 unsigned int cmd, unsigned long arg)
294{
295 struct mapped_device *md;
296 struct dm_table *map;
297 struct dm_target *tgt;
298 int r = -ENOTTY;
299
300 /* We don't really need this lock, but we do need 'inode'. */
301 unlock_kernel();
302
303 md = inode->i_bdev->bd_disk->private_data;
304
305 map = dm_get_table(md);
306
307 if (!map || !dm_table_get_size(map))
308 goto out;
309
310 /* We only support devices that have a single target */
311 if (dm_table_get_num_targets(map) != 1)
312 goto out;
313
314 tgt = dm_table_get_target(map, 0);
315
316 if (dm_suspended(md)) {
317 r = -EAGAIN;
318 goto out;
319 }
320
321 if (tgt->type->ioctl)
322 r = tgt->type->ioctl(tgt, inode, file, cmd, arg);
323
324out:
325 dm_table_put(map);
326
327 lock_kernel();
328 return r;
329}
330
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331static inline struct dm_io *alloc_io(struct mapped_device *md)
332{
333 return mempool_alloc(md->io_pool, GFP_NOIO);
334}
335
336static inline void free_io(struct mapped_device *md, struct dm_io *io)
337{
338 mempool_free(io, md->io_pool);
339}
340
341static inline struct target_io *alloc_tio(struct mapped_device *md)
342{
343 return mempool_alloc(md->tio_pool, GFP_NOIO);
344}
345
346static inline void free_tio(struct mapped_device *md, struct target_io *tio)
347{
348 mempool_free(tio, md->tio_pool);
349}
350
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800351static void start_io_acct(struct dm_io *io)
352{
353 struct mapped_device *md = io->md;
354
355 io->start_time = jiffies;
356
357 preempt_disable();
358 disk_round_stats(dm_disk(md));
359 preempt_enable();
360 dm_disk(md)->in_flight = atomic_inc_return(&md->pending);
361}
362
363static int end_io_acct(struct dm_io *io)
364{
365 struct mapped_device *md = io->md;
366 struct bio *bio = io->bio;
367 unsigned long duration = jiffies - io->start_time;
368 int pending;
369 int rw = bio_data_dir(bio);
370
371 preempt_disable();
372 disk_round_stats(dm_disk(md));
373 preempt_enable();
374 dm_disk(md)->in_flight = pending = atomic_dec_return(&md->pending);
375
376 disk_stat_add(dm_disk(md), ticks[rw], duration);
377
378 return !pending;
379}
380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381/*
382 * Add the bio to the list of deferred io.
383 */
384static int queue_io(struct mapped_device *md, struct bio *bio)
385{
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700386 down_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
388 if (!test_bit(DMF_BLOCK_IO, &md->flags)) {
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700389 up_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 return 1;
391 }
392
393 bio_list_add(&md->deferred, bio);
394
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700395 up_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 return 0; /* deferred successfully */
397}
398
399/*
400 * Everyone (including functions in this file), should use this
401 * function to access the md->map field, and make sure they call
402 * dm_table_put() when finished.
403 */
404struct dm_table *dm_get_table(struct mapped_device *md)
405{
406 struct dm_table *t;
407
408 read_lock(&md->map_lock);
409 t = md->map;
410 if (t)
411 dm_table_get(t);
412 read_unlock(&md->map_lock);
413
414 return t;
415}
416
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800417/*
418 * Get the geometry associated with a dm device
419 */
420int dm_get_geometry(struct mapped_device *md, struct hd_geometry *geo)
421{
422 *geo = md->geometry;
423
424 return 0;
425}
426
427/*
428 * Set the geometry of a device.
429 */
430int dm_set_geometry(struct mapped_device *md, struct hd_geometry *geo)
431{
432 sector_t sz = (sector_t)geo->cylinders * geo->heads * geo->sectors;
433
434 if (geo->start > sz) {
435 DMWARN("Start sector is beyond the geometry limits.");
436 return -EINVAL;
437 }
438
439 md->geometry = *geo;
440
441 return 0;
442}
443
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444/*-----------------------------------------------------------------
445 * CRUD START:
446 * A more elegant soln is in the works that uses the queue
447 * merge fn, unfortunately there are a couple of changes to
448 * the block layer that I want to make for this. So in the
449 * interests of getting something for people to use I give
450 * you this clearly demarcated crap.
451 *---------------------------------------------------------------*/
452
453/*
454 * Decrements the number of outstanding ios that a bio has been
455 * cloned into, completing the original io if necc.
456 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800457static void dec_pending(struct dm_io *io, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458{
459 if (error)
460 io->error = error;
461
462 if (atomic_dec_and_test(&io->io_count)) {
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800463 if (end_io_acct(io))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 /* nudge anyone waiting on suspend queue */
465 wake_up(&io->md->wait);
466
Jens Axboe2056a782006-03-23 20:00:26 +0100467 blk_add_trace_bio(io->md->queue, io->bio, BLK_TA_COMPLETE);
468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 bio_endio(io->bio, io->bio->bi_size, io->error);
470 free_io(io->md, io);
471 }
472}
473
474static int clone_endio(struct bio *bio, unsigned int done, int error)
475{
476 int r = 0;
477 struct target_io *tio = bio->bi_private;
478 struct dm_io *io = tio->io;
479 dm_endio_fn endio = tio->ti->type->end_io;
480
481 if (bio->bi_size)
482 return 1;
483
484 if (!bio_flagged(bio, BIO_UPTODATE) && !error)
485 error = -EIO;
486
487 if (endio) {
488 r = endio(tio->ti, bio, error, &tio->info);
489 if (r < 0)
490 error = r;
491
492 else if (r > 0)
493 /* the target wants another shot at the io */
494 return 1;
495 }
496
497 free_tio(io->md, tio);
498 dec_pending(io, error);
499 bio_put(bio);
500 return r;
501}
502
503static sector_t max_io_len(struct mapped_device *md,
504 sector_t sector, struct dm_target *ti)
505{
506 sector_t offset = sector - ti->begin;
507 sector_t len = ti->len - offset;
508
509 /*
510 * Does the target need to split even further ?
511 */
512 if (ti->split_io) {
513 sector_t boundary;
514 boundary = ((offset + ti->split_io) & ~(ti->split_io - 1))
515 - offset;
516 if (len > boundary)
517 len = boundary;
518 }
519
520 return len;
521}
522
523static void __map_bio(struct dm_target *ti, struct bio *clone,
524 struct target_io *tio)
525{
526 int r;
Jens Axboe2056a782006-03-23 20:00:26 +0100527 sector_t sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
529 /*
530 * Sanity checks.
531 */
532 BUG_ON(!clone->bi_size);
533
534 clone->bi_end_io = clone_endio;
535 clone->bi_private = tio;
536
537 /*
538 * Map the clone. If r == 0 we don't need to do
539 * anything, the target has assumed ownership of
540 * this io.
541 */
542 atomic_inc(&tio->io->io_count);
Jens Axboe2056a782006-03-23 20:00:26 +0100543 sector = clone->bi_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 r = ti->type->map(ti, clone, &tio->info);
Jens Axboe2056a782006-03-23 20:00:26 +0100545 if (r > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 /* the bio has been remapped so dispatch it */
Jens Axboe2056a782006-03-23 20:00:26 +0100547
Alasdair G Kergon17b2f662006-06-26 00:27:33 -0700548 blk_add_trace_remap(bdev_get_queue(clone->bi_bdev), clone,
549 tio->io->bio->bi_bdev->bd_dev, sector,
Jens Axboe2056a782006-03-23 20:00:26 +0100550 clone->bi_sector);
551
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 generic_make_request(clone);
Jens Axboe2056a782006-03-23 20:00:26 +0100553 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
555 else if (r < 0) {
556 /* error the io and bail out */
557 struct dm_io *io = tio->io;
558 free_tio(tio->io->md, tio);
Alasdair G Kergonf6a80ea2005-07-12 15:53:01 -0700559 dec_pending(io, r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 bio_put(clone);
561 }
562}
563
564struct clone_info {
565 struct mapped_device *md;
566 struct dm_table *map;
567 struct bio *bio;
568 struct dm_io *io;
569 sector_t sector;
570 sector_t sector_count;
571 unsigned short idx;
572};
573
Peter Osterlund36763472005-09-06 15:16:42 -0700574static void dm_bio_destructor(struct bio *bio)
575{
576 bio_free(bio, dm_set);
577}
578
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579/*
580 * Creates a little bio that is just does part of a bvec.
581 */
582static struct bio *split_bvec(struct bio *bio, sector_t sector,
583 unsigned short idx, unsigned int offset,
584 unsigned int len)
585{
586 struct bio *clone;
587 struct bio_vec *bv = bio->bi_io_vec + idx;
588
589 clone = bio_alloc_bioset(GFP_NOIO, 1, dm_set);
Peter Osterlund36763472005-09-06 15:16:42 -0700590 clone->bi_destructor = dm_bio_destructor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 *clone->bi_io_vec = *bv;
592
593 clone->bi_sector = sector;
594 clone->bi_bdev = bio->bi_bdev;
595 clone->bi_rw = bio->bi_rw;
596 clone->bi_vcnt = 1;
597 clone->bi_size = to_bytes(len);
598 clone->bi_io_vec->bv_offset = offset;
599 clone->bi_io_vec->bv_len = clone->bi_size;
600
601 return clone;
602}
603
604/*
605 * Creates a bio that consists of range of complete bvecs.
606 */
607static struct bio *clone_bio(struct bio *bio, sector_t sector,
608 unsigned short idx, unsigned short bv_count,
609 unsigned int len)
610{
611 struct bio *clone;
612
613 clone = bio_clone(bio, GFP_NOIO);
614 clone->bi_sector = sector;
615 clone->bi_idx = idx;
616 clone->bi_vcnt = idx + bv_count;
617 clone->bi_size = to_bytes(len);
618 clone->bi_flags &= ~(1 << BIO_SEG_VALID);
619
620 return clone;
621}
622
623static void __clone_and_map(struct clone_info *ci)
624{
625 struct bio *clone, *bio = ci->bio;
626 struct dm_target *ti = dm_table_find_target(ci->map, ci->sector);
627 sector_t len = 0, max = max_io_len(ci->md, ci->sector, ti);
628 struct target_io *tio;
629
630 /*
631 * Allocate a target io object.
632 */
633 tio = alloc_tio(ci->md);
634 tio->io = ci->io;
635 tio->ti = ti;
636 memset(&tio->info, 0, sizeof(tio->info));
637
638 if (ci->sector_count <= max) {
639 /*
640 * Optimise for the simple case where we can do all of
641 * the remaining io with a single clone.
642 */
643 clone = clone_bio(bio, ci->sector, ci->idx,
644 bio->bi_vcnt - ci->idx, ci->sector_count);
645 __map_bio(ti, clone, tio);
646 ci->sector_count = 0;
647
648 } else if (to_sector(bio->bi_io_vec[ci->idx].bv_len) <= max) {
649 /*
650 * There are some bvecs that don't span targets.
651 * Do as many of these as possible.
652 */
653 int i;
654 sector_t remaining = max;
655 sector_t bv_len;
656
657 for (i = ci->idx; remaining && (i < bio->bi_vcnt); i++) {
658 bv_len = to_sector(bio->bi_io_vec[i].bv_len);
659
660 if (bv_len > remaining)
661 break;
662
663 remaining -= bv_len;
664 len += bv_len;
665 }
666
667 clone = clone_bio(bio, ci->sector, ci->idx, i - ci->idx, len);
668 __map_bio(ti, clone, tio);
669
670 ci->sector += len;
671 ci->sector_count -= len;
672 ci->idx = i;
673
674 } else {
675 /*
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800676 * Handle a bvec that must be split between two or more targets.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 */
678 struct bio_vec *bv = bio->bi_io_vec + ci->idx;
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800679 sector_t remaining = to_sector(bv->bv_len);
680 unsigned int offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800682 do {
683 if (offset) {
684 ti = dm_table_find_target(ci->map, ci->sector);
685 max = max_io_len(ci->md, ci->sector, ti);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800687 tio = alloc_tio(ci->md);
688 tio->io = ci->io;
689 tio->ti = ti;
690 memset(&tio->info, 0, sizeof(tio->info));
691 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800693 len = min(remaining, max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800695 clone = split_bvec(bio, ci->sector, ci->idx,
696 bv->bv_offset + offset, len);
697
698 __map_bio(ti, clone, tio);
699
700 ci->sector += len;
701 ci->sector_count -= len;
702 offset += to_bytes(len);
703 } while (remaining -= len);
704
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 ci->idx++;
706 }
707}
708
709/*
710 * Split the bio into several clones.
711 */
712static void __split_bio(struct mapped_device *md, struct bio *bio)
713{
714 struct clone_info ci;
715
716 ci.map = dm_get_table(md);
717 if (!ci.map) {
718 bio_io_error(bio, bio->bi_size);
719 return;
720 }
721
722 ci.md = md;
723 ci.bio = bio;
724 ci.io = alloc_io(md);
725 ci.io->error = 0;
726 atomic_set(&ci.io->io_count, 1);
727 ci.io->bio = bio;
728 ci.io->md = md;
729 ci.sector = bio->bi_sector;
730 ci.sector_count = bio_sectors(bio);
731 ci.idx = bio->bi_idx;
732
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800733 start_io_acct(ci.io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 while (ci.sector_count)
735 __clone_and_map(&ci);
736
737 /* drop the extra reference count */
738 dec_pending(ci.io, 0);
739 dm_table_put(ci.map);
740}
741/*-----------------------------------------------------------------
742 * CRUD END
743 *---------------------------------------------------------------*/
744
745/*
746 * The request function that just remaps the bio built up by
747 * dm_merge_bvec.
748 */
749static int dm_request(request_queue_t *q, struct bio *bio)
750{
751 int r;
Kevin Corry12f03a42006-02-01 03:04:52 -0800752 int rw = bio_data_dir(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 struct mapped_device *md = q->queuedata;
754
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700755 down_read(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
Kevin Corry12f03a42006-02-01 03:04:52 -0800757 disk_stat_inc(dm_disk(md), ios[rw]);
758 disk_stat_add(dm_disk(md), sectors[rw], bio_sectors(bio));
759
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 /*
761 * If we're suspended we have to queue
762 * this io for later.
763 */
764 while (test_bit(DMF_BLOCK_IO, &md->flags)) {
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700765 up_read(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
767 if (bio_rw(bio) == READA) {
768 bio_io_error(bio, bio->bi_size);
769 return 0;
770 }
771
772 r = queue_io(md, bio);
773 if (r < 0) {
774 bio_io_error(bio, bio->bi_size);
775 return 0;
776
777 } else if (r == 0)
778 return 0; /* deferred successfully */
779
780 /*
781 * We're in a while loop, because someone could suspend
782 * before we get to the following read lock.
783 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700784 down_read(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 }
786
787 __split_bio(md, bio);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700788 up_read(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 return 0;
790}
791
792static int dm_flush_all(request_queue_t *q, struct gendisk *disk,
793 sector_t *error_sector)
794{
795 struct mapped_device *md = q->queuedata;
796 struct dm_table *map = dm_get_table(md);
797 int ret = -ENXIO;
798
799 if (map) {
Alasdair G Kergoncf222b32005-07-28 21:15:57 -0700800 ret = dm_table_flush_all(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 dm_table_put(map);
802 }
803
804 return ret;
805}
806
807static void dm_unplug_all(request_queue_t *q)
808{
809 struct mapped_device *md = q->queuedata;
810 struct dm_table *map = dm_get_table(md);
811
812 if (map) {
813 dm_table_unplug_all(map);
814 dm_table_put(map);
815 }
816}
817
818static int dm_any_congested(void *congested_data, int bdi_bits)
819{
820 int r;
821 struct mapped_device *md = (struct mapped_device *) congested_data;
822 struct dm_table *map = dm_get_table(md);
823
824 if (!map || test_bit(DMF_BLOCK_IO, &md->flags))
825 r = bdi_bits;
826 else
827 r = dm_table_any_congested(map, bdi_bits);
828
829 dm_table_put(map);
830 return r;
831}
832
833/*-----------------------------------------------------------------
834 * An IDR is used to keep track of allocated minor numbers.
835 *---------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836static DEFINE_IDR(_minor_idr);
837
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -0700838static void free_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839{
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -0700840 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 idr_remove(&_minor_idr, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -0700842 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843}
844
845/*
846 * See if the device with a specific minor # is free.
847 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -0700848static int specific_minor(struct mapped_device *md, int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849{
850 int r, m;
851
852 if (minor >= (1 << MINORBITS))
853 return -EINVAL;
854
Jeff Mahoney62f75c22006-06-26 00:27:21 -0700855 r = idr_pre_get(&_minor_idr, GFP_KERNEL);
856 if (!r)
857 return -ENOMEM;
858
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -0700859 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
861 if (idr_find(&_minor_idr, minor)) {
862 r = -EBUSY;
863 goto out;
864 }
865
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -0700866 r = idr_get_new_above(&_minor_idr, MINOR_ALLOCED, minor, &m);
Jeff Mahoney62f75c22006-06-26 00:27:21 -0700867 if (r)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
870 if (m != minor) {
871 idr_remove(&_minor_idr, m);
872 r = -EBUSY;
873 goto out;
874 }
875
876out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -0700877 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 return r;
879}
880
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -0700881static int next_free_minor(struct mapped_device *md, int *minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882{
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -0700883 int r, m;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 r = idr_pre_get(&_minor_idr, GFP_KERNEL);
Jeff Mahoney62f75c22006-06-26 00:27:21 -0700886 if (!r)
887 return -ENOMEM;
888
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -0700889 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -0700891 r = idr_get_new(&_minor_idr, MINOR_ALLOCED, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 if (r) {
893 goto out;
894 }
895
896 if (m >= (1 << MINORBITS)) {
897 idr_remove(&_minor_idr, m);
898 r = -ENOSPC;
899 goto out;
900 }
901
902 *minor = m;
903
904out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -0700905 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 return r;
907}
908
909static struct block_device_operations dm_blk_dops;
910
911/*
912 * Allocate and initialise a blank device with a given minor.
913 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -0700914static struct mapped_device *alloc_dev(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915{
916 int r;
917 struct mapped_device *md = kmalloc(sizeof(*md), GFP_KERNEL);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -0700918 void *old_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
920 if (!md) {
921 DMWARN("unable to allocate device, out of memory.");
922 return NULL;
923 }
924
Jeff Mahoney10da4f72006-06-26 00:27:25 -0700925 if (!try_module_get(THIS_MODULE))
926 goto bad0;
927
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 /* get a minor number for the dev */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -0700929 if (minor == DM_ANY_MINOR)
930 r = next_free_minor(md, &minor);
931 else
932 r = specific_minor(md, minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 if (r < 0)
934 goto bad1;
935
936 memset(md, 0, sizeof(*md));
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700937 init_rwsem(&md->io_lock);
938 init_MUTEX(&md->suspend_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 rwlock_init(&md->map_lock);
940 atomic_set(&md->holders, 1);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700941 atomic_set(&md->open_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 atomic_set(&md->event_nr, 0);
943
944 md->queue = blk_alloc_queue(GFP_KERNEL);
945 if (!md->queue)
Ishai Rabinovitze3f6ac62006-10-03 01:15:22 -0700946 goto bad1_free_minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
948 md->queue->queuedata = md;
949 md->queue->backing_dev_info.congested_fn = dm_any_congested;
950 md->queue->backing_dev_info.congested_data = md;
951 blk_queue_make_request(md->queue, dm_request);
Jens Axboedaef2652006-01-10 10:48:02 +0100952 blk_queue_bounce_limit(md->queue, BLK_BOUNCE_ANY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 md->queue->unplug_fn = dm_unplug_all;
954 md->queue->issue_flush_fn = dm_flush_all;
955
Matthew Dobson93d23412006-03-26 01:37:50 -0800956 md->io_pool = mempool_create_slab_pool(MIN_IOS, _io_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 if (!md->io_pool)
958 goto bad2;
959
Matthew Dobson93d23412006-03-26 01:37:50 -0800960 md->tio_pool = mempool_create_slab_pool(MIN_IOS, _tio_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 if (!md->tio_pool)
962 goto bad3;
963
964 md->disk = alloc_disk(1);
965 if (!md->disk)
966 goto bad4;
967
Jeff Mahoneyf0b04112006-06-26 00:27:25 -0700968 atomic_set(&md->pending, 0);
969 init_waitqueue_head(&md->wait);
970 init_waitqueue_head(&md->eventq);
971
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 md->disk->major = _major;
973 md->disk->first_minor = minor;
974 md->disk->fops = &dm_blk_dops;
975 md->disk->queue = md->queue;
976 md->disk->private_data = md;
977 sprintf(md->disk->disk_name, "dm-%d", minor);
978 add_disk(md->disk);
Mike Anderson7e51f252006-03-27 01:17:52 -0800979 format_dev_t(md->name, MKDEV(_major, minor));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -0700981 /* Populate the mapping, nobody knows we exist yet */
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -0700982 spin_lock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -0700983 old_md = idr_replace(&_minor_idr, md, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -0700984 spin_unlock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -0700985
986 BUG_ON(old_md != MINOR_ALLOCED);
987
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 return md;
989
990 bad4:
991 mempool_destroy(md->tio_pool);
992 bad3:
993 mempool_destroy(md->io_pool);
994 bad2:
Al Viro1312f402006-03-12 11:02:03 -0500995 blk_cleanup_queue(md->queue);
Ishai Rabinovitze3f6ac62006-10-03 01:15:22 -0700996 bad1_free_minor:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 free_minor(minor);
998 bad1:
Jeff Mahoney10da4f72006-06-26 00:27:25 -0700999 module_put(THIS_MODULE);
1000 bad0:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 kfree(md);
1002 return NULL;
1003}
1004
1005static void free_dev(struct mapped_device *md)
1006{
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001007 int minor = md->disk->first_minor;
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08001008
Jun'ichi Nomurad9dde592006-02-24 13:04:24 -08001009 if (md->suspended_bdev) {
1010 thaw_bdev(md->suspended_bdev, NULL);
1011 bdput(md->suspended_bdev);
1012 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 mempool_destroy(md->tio_pool);
1014 mempool_destroy(md->io_pool);
1015 del_gendisk(md->disk);
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08001016 free_minor(minor);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001017
1018 spin_lock(&_minor_lock);
1019 md->disk->private_data = NULL;
1020 spin_unlock(&_minor_lock);
1021
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 put_disk(md->disk);
Al Viro1312f402006-03-12 11:02:03 -05001023 blk_cleanup_queue(md->queue);
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001024 module_put(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 kfree(md);
1026}
1027
1028/*
1029 * Bind a table to the device.
1030 */
1031static void event_callback(void *context)
1032{
1033 struct mapped_device *md = (struct mapped_device *) context;
1034
1035 atomic_inc(&md->event_nr);
1036 wake_up(&md->eventq);
1037}
1038
Alasdair G Kergon4e90188be2005-07-28 21:15:59 -07001039static void __set_size(struct mapped_device *md, sector_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040{
Alasdair G Kergon4e90188be2005-07-28 21:15:59 -07001041 set_capacity(md->disk, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001043 mutex_lock(&md->suspended_bdev->bd_inode->i_mutex);
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001044 i_size_write(md->suspended_bdev->bd_inode, (loff_t)size << SECTOR_SHIFT);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001045 mutex_unlock(&md->suspended_bdev->bd_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046}
1047
1048static int __bind(struct mapped_device *md, struct dm_table *t)
1049{
1050 request_queue_t *q = md->queue;
1051 sector_t size;
1052
1053 size = dm_table_get_size(t);
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08001054
1055 /*
1056 * Wipe any geometry if the size of the table changed.
1057 */
1058 if (size != get_capacity(md->disk))
1059 memset(&md->geometry, 0, sizeof(md->geometry));
1060
Alasdair G Kergon4e90188be2005-07-28 21:15:59 -07001061 __set_size(md, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 if (size == 0)
1063 return 0;
1064
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 dm_table_get(t);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001066 dm_table_event_callback(t, event_callback, md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001067
1068 write_lock(&md->map_lock);
1069 md->map = t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 dm_table_set_restrictions(t, q);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001071 write_unlock(&md->map_lock);
1072
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 return 0;
1074}
1075
1076static void __unbind(struct mapped_device *md)
1077{
1078 struct dm_table *map = md->map;
1079
1080 if (!map)
1081 return;
1082
1083 dm_table_event_callback(map, NULL, NULL);
1084 write_lock(&md->map_lock);
1085 md->map = NULL;
1086 write_unlock(&md->map_lock);
1087 dm_table_put(map);
1088}
1089
1090/*
1091 * Constructor for a new device.
1092 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001093int dm_create(int minor, struct mapped_device **result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094{
1095 struct mapped_device *md;
1096
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001097 md = alloc_dev(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 if (!md)
1099 return -ENXIO;
1100
1101 *result = md;
1102 return 0;
1103}
1104
David Teigland637842c2006-01-06 00:20:00 -08001105static struct mapped_device *dm_find_md(dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106{
1107 struct mapped_device *md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 unsigned minor = MINOR(dev);
1109
1110 if (MAJOR(dev) != _major || minor >= (1 << MINORBITS))
1111 return NULL;
1112
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001113 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
1115 md = idr_find(&_minor_idr, minor);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001116 if (md && (md == MINOR_ALLOCED ||
1117 (dm_disk(md)->first_minor != minor) ||
Alasdair G Kergon17b2f662006-06-26 00:27:33 -07001118 test_bit(DMF_FREEING, &md->flags))) {
David Teigland637842c2006-01-06 00:20:00 -08001119 md = NULL;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001120 goto out;
1121 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001123out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001124 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125
David Teigland637842c2006-01-06 00:20:00 -08001126 return md;
1127}
1128
David Teiglandd229a952006-01-06 00:20:01 -08001129struct mapped_device *dm_get_md(dev_t dev)
1130{
1131 struct mapped_device *md = dm_find_md(dev);
1132
1133 if (md)
1134 dm_get(md);
1135
1136 return md;
1137}
1138
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08001139void *dm_get_mdptr(struct mapped_device *md)
David Teigland637842c2006-01-06 00:20:00 -08001140{
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08001141 return md->interface_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142}
1143
1144void dm_set_mdptr(struct mapped_device *md, void *ptr)
1145{
1146 md->interface_ptr = ptr;
1147}
1148
1149void dm_get(struct mapped_device *md)
1150{
1151 atomic_inc(&md->holders);
1152}
1153
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001154const char *dm_device_name(struct mapped_device *md)
1155{
1156 return md->name;
1157}
1158EXPORT_SYMBOL_GPL(dm_device_name);
1159
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160void dm_put(struct mapped_device *md)
1161{
Mike Anderson1134e5a2006-03-27 01:17:54 -08001162 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001164 BUG_ON(test_bit(DMF_FREEING, &md->flags));
1165
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001166 if (atomic_dec_and_lock(&md->holders, &_minor_lock)) {
Mike Anderson1134e5a2006-03-27 01:17:54 -08001167 map = dm_get_table(md);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001168 idr_replace(&_minor_idr, MINOR_ALLOCED, dm_disk(md)->first_minor);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001169 set_bit(DMF_FREEING, &md->flags);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001170 spin_unlock(&_minor_lock);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001171 if (!dm_suspended(md)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 dm_table_presuspend_targets(map);
1173 dm_table_postsuspend_targets(map);
1174 }
1175 __unbind(md);
Mike Anderson1134e5a2006-03-27 01:17:54 -08001176 dm_table_put(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 free_dev(md);
1178 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179}
1180
1181/*
1182 * Process the deferred bios
1183 */
1184static void __flush_deferred_io(struct mapped_device *md, struct bio *c)
1185{
1186 struct bio *n;
1187
1188 while (c) {
1189 n = c->bi_next;
1190 c->bi_next = NULL;
1191 __split_bio(md, c);
1192 c = n;
1193 }
1194}
1195
1196/*
1197 * Swap in a new table (destroying old one).
1198 */
1199int dm_swap_table(struct mapped_device *md, struct dm_table *table)
1200{
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07001201 int r = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001203 down(&md->suspend_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
1205 /* device must be suspended */
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001206 if (!dm_suspended(md))
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07001207 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
1209 __unbind(md);
1210 r = __bind(md, table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07001212out:
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001213 up(&md->suspend_lock);
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07001214 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215}
1216
1217/*
1218 * Functions to lock and unlock any filesystem running on the
1219 * device.
1220 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001221static int lock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222{
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001223 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
1225 WARN_ON(md->frozen_sb);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07001226
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001227 md->frozen_sb = freeze_bdev(md->suspended_bdev);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07001228 if (IS_ERR(md->frozen_sb)) {
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001229 r = PTR_ERR(md->frozen_sb);
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001230 md->frozen_sb = NULL;
1231 return r;
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07001232 }
1233
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08001234 set_bit(DMF_FROZEN, &md->flags);
1235
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 /* don't bdput right now, we don't want the bdev
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001237 * to go away while it is locked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 */
1239 return 0;
1240}
1241
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001242static void unlock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243{
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08001244 if (!test_bit(DMF_FROZEN, &md->flags))
1245 return;
1246
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001247 thaw_bdev(md->suspended_bdev, md->frozen_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 md->frozen_sb = NULL;
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08001249 clear_bit(DMF_FROZEN, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250}
1251
1252/*
1253 * We need to be able to change a mapping table under a mounted
1254 * filesystem. For example we might want to move some data in
1255 * the background. Before the table can be swapped with
1256 * dm_bind_table, dm_suspend must be called to flush any in
1257 * flight bios and ensure that any further io gets deferred.
1258 */
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08001259int dm_suspend(struct mapped_device *md, int do_lockfs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260{
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001261 struct dm_table *map = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 DECLARE_WAITQUEUE(wait, current);
Jun'ichi Nomura1ecac7f2006-03-27 01:17:51 -08001263 struct bio *def;
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001264 int r = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001266 down(&md->suspend_lock);
1267
1268 if (dm_suspended(md))
1269 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
1271 map = dm_get_table(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001273 /* This does not get reverted if there's an error later. */
1274 dm_table_presuspend_targets(map);
1275
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001276 md->suspended_bdev = bdget_disk(md->disk, 0);
1277 if (!md->suspended_bdev) {
1278 DMWARN("bdget failed in dm_suspend");
1279 r = -ENOMEM;
1280 goto out;
1281 }
1282
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001283 /* Flush I/O to the device. */
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08001284 if (do_lockfs) {
1285 r = lock_fs(md);
1286 if (r)
1287 goto out;
1288 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
1290 /*
Alasdair G Kergon354e0072005-05-05 16:16:05 -07001291 * First we set the BLOCK_IO flag so no more ios will be mapped.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001293 down_write(&md->io_lock);
1294 set_bit(DMF_BLOCK_IO, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 add_wait_queue(&md->wait, &wait);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001297 up_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
1299 /* unplug */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001300 if (map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 dm_table_unplug_all(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
1303 /*
1304 * Then we wait for the already mapped ios to
1305 * complete.
1306 */
1307 while (1) {
1308 set_current_state(TASK_INTERRUPTIBLE);
1309
1310 if (!atomic_read(&md->pending) || signal_pending(current))
1311 break;
1312
1313 io_schedule();
1314 }
1315 set_current_state(TASK_RUNNING);
1316
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001317 down_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 remove_wait_queue(&md->wait, &wait);
1319
1320 /* were we interrupted ? */
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001321 r = -EINTR;
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001322 if (atomic_read(&md->pending)) {
Jun'ichi Nomura1ecac7f2006-03-27 01:17:51 -08001323 clear_bit(DMF_BLOCK_IO, &md->flags);
1324 def = bio_list_get(&md->deferred);
1325 __flush_deferred_io(md, def);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001326 up_write(&md->io_lock);
1327 unlock_fs(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001328 goto out;
1329 }
1330 up_write(&md->io_lock);
1331
1332 dm_table_postsuspend_targets(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
1334 set_bit(DMF_SUSPENDED, &md->flags);
1335
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001336 r = 0;
1337
1338out:
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001339 if (r && md->suspended_bdev) {
1340 bdput(md->suspended_bdev);
1341 md->suspended_bdev = NULL;
1342 }
1343
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 dm_table_put(map);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001345 up(&md->suspend_lock);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001346 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347}
1348
1349int dm_resume(struct mapped_device *md)
1350{
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001351 int r = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 struct bio *def;
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001353 struct dm_table *map = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001355 down(&md->suspend_lock);
1356 if (!dm_suspended(md))
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001357 goto out;
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001358
1359 map = dm_get_table(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001360 if (!map || !dm_table_get_size(map))
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001361 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
1363 dm_table_resume_targets(map);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001364
1365 down_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 clear_bit(DMF_BLOCK_IO, &md->flags);
1367
1368 def = bio_list_get(&md->deferred);
1369 __flush_deferred_io(md, def);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001370 up_write(&md->io_lock);
1371
1372 unlock_fs(md);
1373
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001374 bdput(md->suspended_bdev);
1375 md->suspended_bdev = NULL;
1376
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001377 clear_bit(DMF_SUSPENDED, &md->flags);
1378
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 dm_table_unplug_all(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
Hannes Reinecke8560ed62006-10-03 01:15:35 -07001381 kobject_uevent(&md->disk->kobj, KOBJ_CHANGE);
1382
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001383 r = 0;
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001384
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001385out:
1386 dm_table_put(map);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001387 up(&md->suspend_lock);
1388
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001389 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390}
1391
1392/*-----------------------------------------------------------------
1393 * Event notification.
1394 *---------------------------------------------------------------*/
1395uint32_t dm_get_event_nr(struct mapped_device *md)
1396{
1397 return atomic_read(&md->event_nr);
1398}
1399
1400int dm_wait_event(struct mapped_device *md, int event_nr)
1401{
1402 return wait_event_interruptible(md->eventq,
1403 (event_nr != atomic_read(&md->event_nr)));
1404}
1405
1406/*
1407 * The gendisk is only valid as long as you have a reference
1408 * count on 'md'.
1409 */
1410struct gendisk *dm_disk(struct mapped_device *md)
1411{
1412 return md->disk;
1413}
1414
1415int dm_suspended(struct mapped_device *md)
1416{
1417 return test_bit(DMF_SUSPENDED, &md->flags);
1418}
1419
1420static struct block_device_operations dm_blk_dops = {
1421 .open = dm_blk_open,
1422 .release = dm_blk_close,
Milan Brozaa129a22006-10-03 01:15:15 -07001423 .ioctl = dm_blk_ioctl,
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08001424 .getgeo = dm_blk_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 .owner = THIS_MODULE
1426};
1427
1428EXPORT_SYMBOL(dm_get_mapinfo);
1429
1430/*
1431 * module hooks
1432 */
1433module_init(dm_init);
1434module_exit(dm_exit);
1435
1436module_param(major, uint, 0);
1437MODULE_PARM_DESC(major, "The major number of the device mapper");
1438MODULE_DESCRIPTION(DM_NAME " driver");
1439MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
1440MODULE_LICENSE("GPL");