2 * Copyright (C) 2001, 2002 Sistina Software (UK) Limited.
3 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
5 * This file is released under the GPL.
9 #include "dm-bio-list.h"
10 #include "dm-uevent.h"
12 #include <linux/init.h>
13 #include <linux/module.h>
14 #include <linux/mutex.h>
15 #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>
22 #include <linux/hdreg.h>
23 #include <linux/blktrace_api.h>
24 #include <linux/smp_lock.h>
26 #define DM_MSG_PREFIX "core"
28 static const char *_name = DM_NAME;
30 static unsigned int major = 0;
31 static unsigned int _major = 0;
33 static DEFINE_SPINLOCK(_minor_lock);
35 * One of these is allocated per bio.
38 struct mapped_device *md;
42 unsigned long start_time;
46 * One of these is allocated per target within a bio. Hopefully
47 * this will be simplified out one day.
55 union map_info *dm_get_mapinfo(struct bio *bio)
57 if (bio && bio->bi_private)
58 return &((struct dm_target_io *)bio->bi_private)->info;
62 #define MINOR_ALLOCED ((void *)-1)
65 * Bits for the md->flags field.
67 #define DMF_BLOCK_IO 0
68 #define DMF_SUSPENDED 1
71 #define DMF_DELETING 4
72 #define DMF_NOFLUSH_SUSPENDING 5
75 * Work processed by per-device workqueue.
82 struct work_struct work;
83 struct mapped_device *md;
87 struct mapped_device {
88 struct rw_semaphore io_lock;
89 struct mutex suspend_lock;
90 spinlock_t pushback_lock;
97 struct request_queue *queue;
104 * A list of ios that arrived while we were suspended.
107 wait_queue_head_t wait;
108 struct bio_list deferred;
109 struct bio_list pushback;
112 * Processing queue (flush/barriers)
114 struct workqueue_struct *wq;
117 * The current mapping.
119 struct dm_table *map;
122 * io objects are allocated from here.
133 wait_queue_head_t eventq;
135 struct list_head uevent_list;
136 spinlock_t uevent_lock; /* Protect access to uevent_list */
139 * freeze/thaw support require holding onto a super block
141 struct super_block *frozen_sb;
142 struct block_device *suspended_bdev;
144 /* forced geometry settings */
145 struct hd_geometry geometry;
149 static struct kmem_cache *_io_cache;
150 static struct kmem_cache *_tio_cache;
152 static int __init local_init(void)
156 /* allocate a slab for the dm_ios */
157 _io_cache = KMEM_CACHE(dm_io, 0);
161 /* allocate a slab for the target ios */
162 _tio_cache = KMEM_CACHE(dm_target_io, 0);
164 kmem_cache_destroy(_io_cache);
168 r = dm_uevent_init();
170 kmem_cache_destroy(_tio_cache);
171 kmem_cache_destroy(_io_cache);
176 r = register_blkdev(_major, _name);
178 kmem_cache_destroy(_tio_cache);
179 kmem_cache_destroy(_io_cache);
190 static void local_exit(void)
192 kmem_cache_destroy(_tio_cache);
193 kmem_cache_destroy(_io_cache);
194 unregister_blkdev(_major, _name);
199 DMINFO("cleaned up");
202 static int (*_inits[])(void) __initdata = {
211 static void (*_exits[])(void) = {
220 static int __init dm_init(void)
222 const int count = ARRAY_SIZE(_inits);
226 for (i = 0; i < count; i++) {
241 static void __exit dm_exit(void)
243 int i = ARRAY_SIZE(_exits);
250 * Block device functions
252 static int dm_blk_open(struct inode *inode, struct file *file)
254 struct mapped_device *md;
256 spin_lock(&_minor_lock);
258 md = inode->i_bdev->bd_disk->private_data;
262 if (test_bit(DMF_FREEING, &md->flags) ||
263 test_bit(DMF_DELETING, &md->flags)) {
269 atomic_inc(&md->open_count);
272 spin_unlock(&_minor_lock);
274 return md ? 0 : -ENXIO;
277 static int dm_blk_close(struct inode *inode, struct file *file)
279 struct mapped_device *md;
281 md = inode->i_bdev->bd_disk->private_data;
282 atomic_dec(&md->open_count);
287 int dm_open_count(struct mapped_device *md)
289 return atomic_read(&md->open_count);
293 * Guarantees nothing is using the device before it's deleted.
295 int dm_lock_for_deletion(struct mapped_device *md)
299 spin_lock(&_minor_lock);
301 if (dm_open_count(md))
304 set_bit(DMF_DELETING, &md->flags);
306 spin_unlock(&_minor_lock);
311 static int dm_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
313 struct mapped_device *md = bdev->bd_disk->private_data;
315 return dm_get_geometry(md, geo);
318 static int dm_blk_ioctl(struct inode *inode, struct file *file,
319 unsigned int cmd, unsigned long arg)
321 struct mapped_device *md;
322 struct dm_table *map;
323 struct dm_target *tgt;
326 /* We don't really need this lock, but we do need 'inode'. */
329 md = inode->i_bdev->bd_disk->private_data;
331 map = dm_get_table(md);
333 if (!map || !dm_table_get_size(map))
336 /* We only support devices that have a single target */
337 if (dm_table_get_num_targets(map) != 1)
340 tgt = dm_table_get_target(map, 0);
342 if (dm_suspended(md)) {
347 if (tgt->type->ioctl)
348 r = tgt->type->ioctl(tgt, inode, file, cmd, arg);
357 static struct dm_io *alloc_io(struct mapped_device *md)
359 return mempool_alloc(md->io_pool, GFP_NOIO);
362 static void free_io(struct mapped_device *md, struct dm_io *io)
364 mempool_free(io, md->io_pool);
367 static struct dm_target_io *alloc_tio(struct mapped_device *md)
369 return mempool_alloc(md->tio_pool, GFP_NOIO);
372 static void free_tio(struct mapped_device *md, struct dm_target_io *tio)
374 mempool_free(tio, md->tio_pool);
377 static void start_io_acct(struct dm_io *io)
379 struct mapped_device *md = io->md;
382 io->start_time = jiffies;
384 cpu = disk_stat_lock();
385 disk_round_stats(cpu, dm_disk(md));
387 dm_disk(md)->in_flight = atomic_inc_return(&md->pending);
390 static int end_io_acct(struct dm_io *io)
392 struct mapped_device *md = io->md;
393 struct bio *bio = io->bio;
394 unsigned long duration = jiffies - io->start_time;
396 int rw = bio_data_dir(bio);
398 cpu = disk_stat_lock();
399 disk_round_stats(cpu, dm_disk(md));
400 disk_stat_add(cpu, dm_disk(md), ticks[rw], duration);
403 dm_disk(md)->in_flight = pending = atomic_dec_return(&md->pending);
409 * Add the bio to the list of deferred io.
411 static int queue_io(struct mapped_device *md, struct bio *bio)
413 down_write(&md->io_lock);
415 if (!test_bit(DMF_BLOCK_IO, &md->flags)) {
416 up_write(&md->io_lock);
420 bio_list_add(&md->deferred, bio);
422 up_write(&md->io_lock);
423 return 0; /* deferred successfully */
427 * Everyone (including functions in this file), should use this
428 * function to access the md->map field, and make sure they call
429 * dm_table_put() when finished.
431 struct dm_table *dm_get_table(struct mapped_device *md)
435 read_lock(&md->map_lock);
439 read_unlock(&md->map_lock);
445 * Get the geometry associated with a dm device
447 int dm_get_geometry(struct mapped_device *md, struct hd_geometry *geo)
455 * Set the geometry of a device.
457 int dm_set_geometry(struct mapped_device *md, struct hd_geometry *geo)
459 sector_t sz = (sector_t)geo->cylinders * geo->heads * geo->sectors;
461 if (geo->start > sz) {
462 DMWARN("Start sector is beyond the geometry limits.");
471 /*-----------------------------------------------------------------
473 * A more elegant soln is in the works that uses the queue
474 * merge fn, unfortunately there are a couple of changes to
475 * the block layer that I want to make for this. So in the
476 * interests of getting something for people to use I give
477 * you this clearly demarcated crap.
478 *---------------------------------------------------------------*/
480 static int __noflush_suspending(struct mapped_device *md)
482 return test_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
486 * Decrements the number of outstanding ios that a bio has been
487 * cloned into, completing the original io if necc.
489 static void dec_pending(struct dm_io *io, int error)
493 /* Push-back supersedes any I/O errors */
494 if (error && !(io->error > 0 && __noflush_suspending(io->md)))
497 if (atomic_dec_and_test(&io->io_count)) {
498 if (io->error == DM_ENDIO_REQUEUE) {
500 * Target requested pushing back the I/O.
501 * This must be handled before the sleeper on
502 * suspend queue merges the pushback list.
504 spin_lock_irqsave(&io->md->pushback_lock, flags);
505 if (__noflush_suspending(io->md))
506 bio_list_add(&io->md->pushback, io->bio);
508 /* noflush suspend was interrupted. */
510 spin_unlock_irqrestore(&io->md->pushback_lock, flags);
514 /* nudge anyone waiting on suspend queue */
515 wake_up(&io->md->wait);
517 if (io->error != DM_ENDIO_REQUEUE) {
518 blk_add_trace_bio(io->md->queue, io->bio,
521 bio_endio(io->bio, io->error);
528 static void clone_endio(struct bio *bio, int error)
531 struct dm_target_io *tio = bio->bi_private;
532 struct mapped_device *md = tio->io->md;
533 dm_endio_fn endio = tio->ti->type->end_io;
535 if (!bio_flagged(bio, BIO_UPTODATE) && !error)
539 r = endio(tio->ti, bio, error, &tio->info);
540 if (r < 0 || r == DM_ENDIO_REQUEUE)
542 * error and requeue request are handled
546 else if (r == DM_ENDIO_INCOMPLETE)
547 /* The target will handle the io */
550 DMWARN("unimplemented target endio return value: %d", r);
555 dec_pending(tio->io, error);
558 * Store md for cleanup instead of tio which is about to get freed.
560 bio->bi_private = md->bs;
566 static sector_t max_io_len(struct mapped_device *md,
567 sector_t sector, struct dm_target *ti)
569 sector_t offset = sector - ti->begin;
570 sector_t len = ti->len - offset;
573 * Does the target need to split even further ?
577 boundary = ((offset + ti->split_io) & ~(ti->split_io - 1))
586 static void __map_bio(struct dm_target *ti, struct bio *clone,
587 struct dm_target_io *tio)
591 struct mapped_device *md;
596 BUG_ON(!clone->bi_size);
598 clone->bi_end_io = clone_endio;
599 clone->bi_private = tio;
602 * Map the clone. If r == 0 we don't need to do
603 * anything, the target has assumed ownership of
606 atomic_inc(&tio->io->io_count);
607 sector = clone->bi_sector;
608 r = ti->type->map(ti, clone, &tio->info);
609 if (r == DM_MAPIO_REMAPPED) {
610 /* the bio has been remapped so dispatch it */
612 blk_add_trace_remap(bdev_get_queue(clone->bi_bdev), clone,
613 tio->io->bio->bi_bdev->bd_dev,
614 clone->bi_sector, sector);
616 generic_make_request(clone);
617 } else if (r < 0 || r == DM_MAPIO_REQUEUE) {
618 /* error the io and bail out, or requeue it if needed */
620 dec_pending(tio->io, r);
622 * Store bio_set for cleanup.
624 clone->bi_private = md->bs;
628 DMWARN("unimplemented target map return value: %d", r);
634 struct mapped_device *md;
635 struct dm_table *map;
639 sector_t sector_count;
643 static void dm_bio_destructor(struct bio *bio)
645 struct bio_set *bs = bio->bi_private;
651 * Creates a little bio that is just does part of a bvec.
653 static struct bio *split_bvec(struct bio *bio, sector_t sector,
654 unsigned short idx, unsigned int offset,
655 unsigned int len, struct bio_set *bs)
658 struct bio_vec *bv = bio->bi_io_vec + idx;
660 clone = bio_alloc_bioset(GFP_NOIO, 1, bs);
661 clone->bi_destructor = dm_bio_destructor;
662 *clone->bi_io_vec = *bv;
664 clone->bi_sector = sector;
665 clone->bi_bdev = bio->bi_bdev;
666 clone->bi_rw = bio->bi_rw;
668 clone->bi_size = to_bytes(len);
669 clone->bi_io_vec->bv_offset = offset;
670 clone->bi_io_vec->bv_len = clone->bi_size;
676 * Creates a bio that consists of range of complete bvecs.
678 static struct bio *clone_bio(struct bio *bio, sector_t sector,
679 unsigned short idx, unsigned short bv_count,
680 unsigned int len, struct bio_set *bs)
684 clone = bio_alloc_bioset(GFP_NOIO, bio->bi_max_vecs, bs);
685 __bio_clone(clone, bio);
686 clone->bi_destructor = dm_bio_destructor;
687 clone->bi_sector = sector;
689 clone->bi_vcnt = idx + bv_count;
690 clone->bi_size = to_bytes(len);
691 clone->bi_flags &= ~(1 << BIO_SEG_VALID);
696 static int __clone_and_map(struct clone_info *ci)
698 struct bio *clone, *bio = ci->bio;
699 struct dm_target *ti;
700 sector_t len = 0, max;
701 struct dm_target_io *tio;
703 ti = dm_table_find_target(ci->map, ci->sector);
704 if (!dm_target_is_valid(ti))
707 max = max_io_len(ci->md, ci->sector, ti);
710 * Allocate a target io object.
712 tio = alloc_tio(ci->md);
715 memset(&tio->info, 0, sizeof(tio->info));
717 if (ci->sector_count <= max) {
719 * Optimise for the simple case where we can do all of
720 * the remaining io with a single clone.
722 clone = clone_bio(bio, ci->sector, ci->idx,
723 bio->bi_vcnt - ci->idx, ci->sector_count,
725 __map_bio(ti, clone, tio);
726 ci->sector_count = 0;
728 } else if (to_sector(bio->bi_io_vec[ci->idx].bv_len) <= max) {
730 * There are some bvecs that don't span targets.
731 * Do as many of these as possible.
734 sector_t remaining = max;
737 for (i = ci->idx; remaining && (i < bio->bi_vcnt); i++) {
738 bv_len = to_sector(bio->bi_io_vec[i].bv_len);
740 if (bv_len > remaining)
747 clone = clone_bio(bio, ci->sector, ci->idx, i - ci->idx, len,
749 __map_bio(ti, clone, tio);
752 ci->sector_count -= len;
757 * Handle a bvec that must be split between two or more targets.
759 struct bio_vec *bv = bio->bi_io_vec + ci->idx;
760 sector_t remaining = to_sector(bv->bv_len);
761 unsigned int offset = 0;
765 ti = dm_table_find_target(ci->map, ci->sector);
766 if (!dm_target_is_valid(ti))
769 max = max_io_len(ci->md, ci->sector, ti);
771 tio = alloc_tio(ci->md);
774 memset(&tio->info, 0, sizeof(tio->info));
777 len = min(remaining, max);
779 clone = split_bvec(bio, ci->sector, ci->idx,
780 bv->bv_offset + offset, len,
783 __map_bio(ti, clone, tio);
786 ci->sector_count -= len;
787 offset += to_bytes(len);
788 } while (remaining -= len);
797 * Split the bio into several clones.
799 static int __split_bio(struct mapped_device *md, struct bio *bio)
801 struct clone_info ci;
804 ci.map = dm_get_table(md);
805 if (unlikely(!ci.map))
810 ci.io = alloc_io(md);
812 atomic_set(&ci.io->io_count, 1);
815 ci.sector = bio->bi_sector;
816 ci.sector_count = bio_sectors(bio);
817 ci.idx = bio->bi_idx;
819 start_io_acct(ci.io);
820 while (ci.sector_count && !error)
821 error = __clone_and_map(&ci);
823 /* drop the extra reference count */
824 dec_pending(ci.io, error);
825 dm_table_put(ci.map);
829 /*-----------------------------------------------------------------
831 *---------------------------------------------------------------*/
833 static int dm_merge_bvec(struct request_queue *q,
834 struct bvec_merge_data *bvm,
835 struct bio_vec *biovec)
837 struct mapped_device *md = q->queuedata;
838 struct dm_table *map = dm_get_table(md);
839 struct dm_target *ti;
840 sector_t max_sectors;
846 ti = dm_table_find_target(map, bvm->bi_sector);
847 if (!dm_target_is_valid(ti))
851 * Find maximum amount of I/O that won't need splitting
853 max_sectors = min(max_io_len(md, bvm->bi_sector, ti),
854 (sector_t) BIO_MAX_SECTORS);
855 max_size = (max_sectors << SECTOR_SHIFT) - bvm->bi_size;
860 * merge_bvec_fn() returns number of bytes
861 * it can accept at this offset
862 * max is precomputed maximal io size
864 if (max_size && ti->type->merge)
865 max_size = ti->type->merge(ti, bvm, biovec, max_size);
872 * Always allow an entire first page
874 if (max_size <= biovec->bv_len && !(bvm->bi_size >> SECTOR_SHIFT))
875 max_size = biovec->bv_len;
881 * The request function that just remaps the bio built up by
884 static int dm_request(struct request_queue *q, struct bio *bio)
887 int rw = bio_data_dir(bio);
888 struct mapped_device *md = q->queuedata;
892 * There is no use in forwarding any barrier request since we can't
893 * guarantee it is (or can be) handled by the targets correctly.
895 if (unlikely(bio_barrier(bio))) {
896 bio_endio(bio, -EOPNOTSUPP);
900 down_read(&md->io_lock);
902 cpu = disk_stat_lock();
903 disk_stat_inc(cpu, dm_disk(md), ios[rw]);
904 disk_stat_add(cpu, dm_disk(md), sectors[rw], bio_sectors(bio));
908 * If we're suspended we have to queue
911 while (test_bit(DMF_BLOCK_IO, &md->flags)) {
912 up_read(&md->io_lock);
914 if (bio_rw(bio) != READA)
915 r = queue_io(md, bio);
921 * We're in a while loop, because someone could suspend
922 * before we get to the following read lock.
924 down_read(&md->io_lock);
927 r = __split_bio(md, bio);
928 up_read(&md->io_lock);
937 static void dm_unplug_all(struct request_queue *q)
939 struct mapped_device *md = q->queuedata;
940 struct dm_table *map = dm_get_table(md);
943 dm_table_unplug_all(map);
948 static int dm_any_congested(void *congested_data, int bdi_bits)
951 struct mapped_device *md = (struct mapped_device *) congested_data;
952 struct dm_table *map = dm_get_table(md);
954 if (!map || test_bit(DMF_BLOCK_IO, &md->flags))
957 r = dm_table_any_congested(map, bdi_bits);
963 /*-----------------------------------------------------------------
964 * An IDR is used to keep track of allocated minor numbers.
965 *---------------------------------------------------------------*/
966 static DEFINE_IDR(_minor_idr);
968 static void free_minor(int minor)
970 spin_lock(&_minor_lock);
971 idr_remove(&_minor_idr, minor);
972 spin_unlock(&_minor_lock);
976 * See if the device with a specific minor # is free.
978 static int specific_minor(int minor)
982 if (minor >= (1 << MINORBITS))
985 r = idr_pre_get(&_minor_idr, GFP_KERNEL);
989 spin_lock(&_minor_lock);
991 if (idr_find(&_minor_idr, minor)) {
996 r = idr_get_new_above(&_minor_idr, MINOR_ALLOCED, minor, &m);
1001 idr_remove(&_minor_idr, m);
1007 spin_unlock(&_minor_lock);
1011 static int next_free_minor(int *minor)
1015 r = idr_pre_get(&_minor_idr, GFP_KERNEL);
1019 spin_lock(&_minor_lock);
1021 r = idr_get_new(&_minor_idr, MINOR_ALLOCED, &m);
1025 if (m >= (1 << MINORBITS)) {
1026 idr_remove(&_minor_idr, m);
1034 spin_unlock(&_minor_lock);
1038 static struct block_device_operations dm_blk_dops;
1041 * Allocate and initialise a blank device with a given minor.
1043 static struct mapped_device *alloc_dev(int minor)
1046 struct mapped_device *md = kzalloc(sizeof(*md), GFP_KERNEL);
1050 DMWARN("unable to allocate device, out of memory.");
1054 if (!try_module_get(THIS_MODULE))
1055 goto bad_module_get;
1057 /* get a minor number for the dev */
1058 if (minor == DM_ANY_MINOR)
1059 r = next_free_minor(&minor);
1061 r = specific_minor(minor);
1065 init_rwsem(&md->io_lock);
1066 mutex_init(&md->suspend_lock);
1067 spin_lock_init(&md->pushback_lock);
1068 rwlock_init(&md->map_lock);
1069 atomic_set(&md->holders, 1);
1070 atomic_set(&md->open_count, 0);
1071 atomic_set(&md->event_nr, 0);
1072 atomic_set(&md->uevent_seq, 0);
1073 INIT_LIST_HEAD(&md->uevent_list);
1074 spin_lock_init(&md->uevent_lock);
1076 md->queue = blk_alloc_queue(GFP_KERNEL);
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);
1084 blk_queue_bounce_limit(md->queue, BLK_BOUNCE_ANY);
1085 md->queue->unplug_fn = dm_unplug_all;
1086 blk_queue_merge_bvec(md->queue, dm_merge_bvec);
1088 md->io_pool = mempool_create_slab_pool(MIN_IOS, _io_cache);
1092 md->tio_pool = mempool_create_slab_pool(MIN_IOS, _tio_cache);
1096 md->bs = bioset_create(16, 16);
1100 md->disk = alloc_disk(1);
1104 atomic_set(&md->pending, 0);
1105 init_waitqueue_head(&md->wait);
1106 init_waitqueue_head(&md->eventq);
1108 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);
1115 format_dev_t(md->name, MKDEV(_major, minor));
1117 md->wq = create_singlethread_workqueue("kdmflush");
1121 /* Populate the mapping, nobody knows we exist yet */
1122 spin_lock(&_minor_lock);
1123 old_md = idr_replace(&_minor_idr, md, minor);
1124 spin_unlock(&_minor_lock);
1126 BUG_ON(old_md != MINOR_ALLOCED);
1133 bioset_free(md->bs);
1135 mempool_destroy(md->tio_pool);
1137 mempool_destroy(md->io_pool);
1139 blk_cleanup_queue(md->queue);
1143 module_put(THIS_MODULE);
1149 static void unlock_fs(struct mapped_device *md);
1151 static void free_dev(struct mapped_device *md)
1153 int minor = MINOR(disk_devt(md->disk));
1155 if (md->suspended_bdev) {
1157 bdput(md->suspended_bdev);
1159 destroy_workqueue(md->wq);
1160 mempool_destroy(md->tio_pool);
1161 mempool_destroy(md->io_pool);
1162 bioset_free(md->bs);
1163 del_gendisk(md->disk);
1166 spin_lock(&_minor_lock);
1167 md->disk->private_data = NULL;
1168 spin_unlock(&_minor_lock);
1171 blk_cleanup_queue(md->queue);
1172 module_put(THIS_MODULE);
1177 * Bind a table to the device.
1179 static void event_callback(void *context)
1181 unsigned long flags;
1183 struct mapped_device *md = (struct mapped_device *) context;
1185 spin_lock_irqsave(&md->uevent_lock, flags);
1186 list_splice_init(&md->uevent_list, &uevents);
1187 spin_unlock_irqrestore(&md->uevent_lock, flags);
1189 dm_send_uevents(&uevents, &disk_to_dev(md->disk)->kobj);
1191 atomic_inc(&md->event_nr);
1192 wake_up(&md->eventq);
1195 static void __set_size(struct mapped_device *md, sector_t size)
1197 set_capacity(md->disk, size);
1199 mutex_lock(&md->suspended_bdev->bd_inode->i_mutex);
1200 i_size_write(md->suspended_bdev->bd_inode, (loff_t)size << SECTOR_SHIFT);
1201 mutex_unlock(&md->suspended_bdev->bd_inode->i_mutex);
1204 static int __bind(struct mapped_device *md, struct dm_table *t)
1206 struct request_queue *q = md->queue;
1209 size = dm_table_get_size(t);
1212 * Wipe any geometry if the size of the table changed.
1214 if (size != get_capacity(md->disk))
1215 memset(&md->geometry, 0, sizeof(md->geometry));
1217 if (md->suspended_bdev)
1218 __set_size(md, size);
1223 dm_table_event_callback(t, event_callback, md);
1225 write_lock(&md->map_lock);
1227 dm_table_set_restrictions(t, q);
1228 write_unlock(&md->map_lock);
1233 static void __unbind(struct mapped_device *md)
1235 struct dm_table *map = md->map;
1240 dm_table_event_callback(map, NULL, NULL);
1241 write_lock(&md->map_lock);
1243 write_unlock(&md->map_lock);
1248 * Constructor for a new device.
1250 int dm_create(int minor, struct mapped_device **result)
1252 struct mapped_device *md;
1254 md = alloc_dev(minor);
1262 static struct mapped_device *dm_find_md(dev_t dev)
1264 struct mapped_device *md;
1265 unsigned minor = MINOR(dev);
1267 if (MAJOR(dev) != _major || minor >= (1 << MINORBITS))
1270 spin_lock(&_minor_lock);
1272 md = idr_find(&_minor_idr, minor);
1273 if (md && (md == MINOR_ALLOCED ||
1274 (MINOR(disk_devt(dm_disk(md))) != minor) ||
1275 test_bit(DMF_FREEING, &md->flags))) {
1281 spin_unlock(&_minor_lock);
1286 struct mapped_device *dm_get_md(dev_t dev)
1288 struct mapped_device *md = dm_find_md(dev);
1296 void *dm_get_mdptr(struct mapped_device *md)
1298 return md->interface_ptr;
1301 void dm_set_mdptr(struct mapped_device *md, void *ptr)
1303 md->interface_ptr = ptr;
1306 void dm_get(struct mapped_device *md)
1308 atomic_inc(&md->holders);
1311 const char *dm_device_name(struct mapped_device *md)
1315 EXPORT_SYMBOL_GPL(dm_device_name);
1317 void dm_put(struct mapped_device *md)
1319 struct dm_table *map;
1321 BUG_ON(test_bit(DMF_FREEING, &md->flags));
1323 if (atomic_dec_and_lock(&md->holders, &_minor_lock)) {
1324 map = dm_get_table(md);
1325 idr_replace(&_minor_idr, MINOR_ALLOCED,
1326 MINOR(disk_devt(dm_disk(md))));
1327 set_bit(DMF_FREEING, &md->flags);
1328 spin_unlock(&_minor_lock);
1329 if (!dm_suspended(md)) {
1330 dm_table_presuspend_targets(map);
1331 dm_table_postsuspend_targets(map);
1338 EXPORT_SYMBOL_GPL(dm_put);
1340 static int dm_wait_for_completion(struct mapped_device *md)
1345 set_current_state(TASK_INTERRUPTIBLE);
1348 if (!atomic_read(&md->pending))
1351 if (signal_pending(current)) {
1358 set_current_state(TASK_RUNNING);
1364 * Process the deferred bios
1366 static void __flush_deferred_io(struct mapped_device *md)
1370 while ((c = bio_list_pop(&md->deferred))) {
1371 if (__split_bio(md, c))
1375 clear_bit(DMF_BLOCK_IO, &md->flags);
1378 static void __merge_pushback_list(struct mapped_device *md)
1380 unsigned long flags;
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);
1389 static void dm_wq_work(struct work_struct *work)
1391 struct dm_wq_req *req = container_of(work, struct dm_wq_req, work);
1392 struct mapped_device *md = req->md;
1394 down_write(&md->io_lock);
1395 switch (req->type) {
1396 case DM_WQ_FLUSH_ALL:
1397 __merge_pushback_list(md);
1399 case DM_WQ_FLUSH_DEFERRED:
1400 __flush_deferred_io(md);
1403 DMERR("dm_wq_work: unrecognised work type %d", req->type);
1406 up_write(&md->io_lock);
1409 static void dm_wq_queue(struct mapped_device *md, int type, void *context,
1410 struct dm_wq_req *req)
1414 req->context = context;
1415 INIT_WORK(&req->work, dm_wq_work);
1416 queue_work(md->wq, &req->work);
1419 static void dm_queue_flush(struct mapped_device *md, int type, void *context)
1421 struct dm_wq_req req;
1423 dm_wq_queue(md, type, context, &req);
1424 flush_workqueue(md->wq);
1428 * Swap in a new table (destroying old one).
1430 int dm_swap_table(struct mapped_device *md, struct dm_table *table)
1434 mutex_lock(&md->suspend_lock);
1436 /* device must be suspended */
1437 if (!dm_suspended(md))
1440 /* without bdev, the device size cannot be changed */
1441 if (!md->suspended_bdev)
1442 if (get_capacity(md->disk) != dm_table_get_size(table))
1446 r = __bind(md, table);
1449 mutex_unlock(&md->suspend_lock);
1454 * Functions to lock and unlock any filesystem running on the
1457 static int lock_fs(struct mapped_device *md)
1461 WARN_ON(md->frozen_sb);
1463 md->frozen_sb = freeze_bdev(md->suspended_bdev);
1464 if (IS_ERR(md->frozen_sb)) {
1465 r = PTR_ERR(md->frozen_sb);
1466 md->frozen_sb = NULL;
1470 set_bit(DMF_FROZEN, &md->flags);
1472 /* don't bdput right now, we don't want the bdev
1473 * to go away while it is locked.
1478 static void unlock_fs(struct mapped_device *md)
1480 if (!test_bit(DMF_FROZEN, &md->flags))
1483 thaw_bdev(md->suspended_bdev, md->frozen_sb);
1484 md->frozen_sb = NULL;
1485 clear_bit(DMF_FROZEN, &md->flags);
1489 * We need to be able to change a mapping table under a mounted
1490 * filesystem. For example we might want to move some data in
1491 * the background. Before the table can be swapped with
1492 * dm_bind_table, dm_suspend must be called to flush any in
1493 * flight bios and ensure that any further io gets deferred.
1495 int dm_suspend(struct mapped_device *md, unsigned suspend_flags)
1497 struct dm_table *map = NULL;
1498 DECLARE_WAITQUEUE(wait, current);
1500 int do_lockfs = suspend_flags & DM_SUSPEND_LOCKFS_FLAG ? 1 : 0;
1501 int noflush = suspend_flags & DM_SUSPEND_NOFLUSH_FLAG ? 1 : 0;
1503 mutex_lock(&md->suspend_lock);
1505 if (dm_suspended(md)) {
1510 map = dm_get_table(md);
1513 * DMF_NOFLUSH_SUSPENDING must be set before presuspend.
1514 * This flag is cleared before dm_suspend returns.
1517 set_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
1519 /* This does not get reverted if there's an error later. */
1520 dm_table_presuspend_targets(map);
1522 /* bdget() can stall if the pending I/Os are not flushed */
1524 md->suspended_bdev = bdget_disk(md->disk, 0);
1525 if (!md->suspended_bdev) {
1526 DMWARN("bdget failed in dm_suspend");
1532 * Flush I/O to the device. noflush supersedes do_lockfs,
1533 * because lock_fs() needs to flush I/Os.
1543 * First we set the BLOCK_IO flag so no more ios will be mapped.
1545 down_write(&md->io_lock);
1546 set_bit(DMF_BLOCK_IO, &md->flags);
1548 add_wait_queue(&md->wait, &wait);
1549 up_write(&md->io_lock);
1553 dm_table_unplug_all(map);
1556 * Wait for the already-mapped ios to complete.
1558 r = dm_wait_for_completion(md);
1560 down_write(&md->io_lock);
1561 remove_wait_queue(&md->wait, &wait);
1564 __merge_pushback_list(md);
1565 up_write(&md->io_lock);
1567 /* were we interrupted ? */
1569 dm_queue_flush(md, DM_WQ_FLUSH_DEFERRED, NULL);
1572 goto out; /* pushback list is already flushed, so skip flush */
1575 dm_table_postsuspend_targets(map);
1577 set_bit(DMF_SUSPENDED, &md->flags);
1582 * Because there may be already I/Os in the pushback list,
1583 * flush them before return.
1585 dm_queue_flush(md, DM_WQ_FLUSH_ALL, NULL);
1588 if (r && md->suspended_bdev) {
1589 bdput(md->suspended_bdev);
1590 md->suspended_bdev = NULL;
1596 mutex_unlock(&md->suspend_lock);
1600 int dm_resume(struct mapped_device *md)
1603 struct dm_table *map = NULL;
1605 mutex_lock(&md->suspend_lock);
1606 if (!dm_suspended(md))
1609 map = dm_get_table(md);
1610 if (!map || !dm_table_get_size(map))
1613 r = dm_table_resume_targets(map);
1617 dm_queue_flush(md, DM_WQ_FLUSH_DEFERRED, NULL);
1621 if (md->suspended_bdev) {
1622 bdput(md->suspended_bdev);
1623 md->suspended_bdev = NULL;
1626 clear_bit(DMF_SUSPENDED, &md->flags);
1628 dm_table_unplug_all(map);
1630 dm_kobject_uevent(md);
1636 mutex_unlock(&md->suspend_lock);
1641 /*-----------------------------------------------------------------
1642 * Event notification.
1643 *---------------------------------------------------------------*/
1644 void dm_kobject_uevent(struct mapped_device *md)
1646 kobject_uevent(&disk_to_dev(md->disk)->kobj, KOBJ_CHANGE);
1649 uint32_t dm_next_uevent_seq(struct mapped_device *md)
1651 return atomic_add_return(1, &md->uevent_seq);
1654 uint32_t dm_get_event_nr(struct mapped_device *md)
1656 return atomic_read(&md->event_nr);
1659 int dm_wait_event(struct mapped_device *md, int event_nr)
1661 return wait_event_interruptible(md->eventq,
1662 (event_nr != atomic_read(&md->event_nr)));
1665 void dm_uevent_add(struct mapped_device *md, struct list_head *elist)
1667 unsigned long flags;
1669 spin_lock_irqsave(&md->uevent_lock, flags);
1670 list_add(elist, &md->uevent_list);
1671 spin_unlock_irqrestore(&md->uevent_lock, flags);
1675 * The gendisk is only valid as long as you have a reference
1678 struct gendisk *dm_disk(struct mapped_device *md)
1683 int dm_suspended(struct mapped_device *md)
1685 return test_bit(DMF_SUSPENDED, &md->flags);
1688 int dm_noflush_suspending(struct dm_target *ti)
1690 struct mapped_device *md = dm_table_get_md(ti->table);
1691 int r = __noflush_suspending(md);
1697 EXPORT_SYMBOL_GPL(dm_noflush_suspending);
1699 static struct block_device_operations dm_blk_dops = {
1700 .open = dm_blk_open,
1701 .release = dm_blk_close,
1702 .ioctl = dm_blk_ioctl,
1703 .getgeo = dm_blk_getgeo,
1704 .owner = THIS_MODULE
1707 EXPORT_SYMBOL(dm_get_mapinfo);
1712 module_init(dm_init);
1713 module_exit(dm_exit);
1715 module_param(major, uint, 0);
1716 MODULE_PARM_DESC(major, "The major number of the device mapper");
1717 MODULE_DESCRIPTION(DM_NAME " driver");
1718 MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
1719 MODULE_LICENSE("GPL");