blob: 6982f86db6dc7188a0c784da335efb7744e2903c [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24static const char *_name = DM_NAME;
25
26static unsigned int major = 0;
27static unsigned int _major = 0;
28
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -070029static DEFINE_SPINLOCK(_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070030/*
31 * One of these is allocated per bio.
32 */
33struct dm_io {
34 struct mapped_device *md;
35 int error;
36 struct bio *bio;
37 atomic_t io_count;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -080038 unsigned long start_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039};
40
41/*
42 * One of these is allocated per target within a bio. Hopefully
43 * this will be simplified out one day.
44 */
45struct target_io {
46 struct dm_io *io;
47 struct dm_target *ti;
48 union map_info info;
49};
50
51union map_info *dm_get_mapinfo(struct bio *bio)
52{
Alasdair G Kergon17b2f662006-06-26 00:27:33 -070053 if (bio && bio->bi_private)
54 return &((struct target_io *)bio->bi_private)->info;
55 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056}
57
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -070058#define MINOR_ALLOCED ((void *)-1)
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060/*
61 * Bits for the md->flags field.
62 */
63#define DMF_BLOCK_IO 0
64#define DMF_SUSPENDED 1
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -080065#define DMF_FROZEN 2
Jeff Mahoneyfba9f902006-06-26 00:27:23 -070066#define DMF_FREEING 3
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -070067#define DMF_DELETING 4
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69struct mapped_device {
Alasdair G Kergon2ca33102005-07-28 21:16:00 -070070 struct rw_semaphore io_lock;
71 struct semaphore suspend_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 rwlock_t map_lock;
73 atomic_t holders;
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -070074 atomic_t open_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76 unsigned long flags;
77
78 request_queue_t *queue;
79 struct gendisk *disk;
Mike Anderson7e51f252006-03-27 01:17:52 -080080 char name[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82 void *interface_ptr;
83
84 /*
85 * A list of ios that arrived while we were suspended.
86 */
87 atomic_t pending;
88 wait_queue_head_t wait;
89 struct bio_list deferred;
90
91 /*
92 * The current mapping.
93 */
94 struct dm_table *map;
95
96 /*
97 * io objects are allocated from here.
98 */
99 mempool_t *io_pool;
100 mempool_t *tio_pool;
101
102 /*
103 * Event handling.
104 */
105 atomic_t event_nr;
106 wait_queue_head_t eventq;
107
108 /*
109 * freeze/thaw support require holding onto a super block
110 */
111 struct super_block *frozen_sb;
Alasdair G Kergone39e2e92006-01-06 00:20:05 -0800112 struct block_device *suspended_bdev;
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800113
114 /* forced geometry settings */
115 struct hd_geometry geometry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116};
117
118#define MIN_IOS 256
119static kmem_cache_t *_io_cache;
120static kmem_cache_t *_tio_cache;
121
122static struct bio_set *dm_set;
123
124static int __init local_init(void)
125{
126 int r;
127
128 dm_set = bioset_create(16, 16, 4);
129 if (!dm_set)
130 return -ENOMEM;
131
132 /* allocate a slab for the dm_ios */
133 _io_cache = kmem_cache_create("dm_io",
134 sizeof(struct dm_io), 0, 0, NULL, NULL);
135 if (!_io_cache)
136 return -ENOMEM;
137
138 /* allocate a slab for the target ios */
139 _tio_cache = kmem_cache_create("dm_tio", sizeof(struct target_io),
140 0, 0, NULL, NULL);
141 if (!_tio_cache) {
142 kmem_cache_destroy(_io_cache);
143 return -ENOMEM;
144 }
145
146 _major = major;
147 r = register_blkdev(_major, _name);
148 if (r < 0) {
149 kmem_cache_destroy(_tio_cache);
150 kmem_cache_destroy(_io_cache);
151 return r;
152 }
153
154 if (!_major)
155 _major = r;
156
157 return 0;
158}
159
160static void local_exit(void)
161{
162 kmem_cache_destroy(_tio_cache);
163 kmem_cache_destroy(_io_cache);
164
165 bioset_free(dm_set);
166
167 if (unregister_blkdev(_major, _name) < 0)
168 DMERR("devfs_unregister_blkdev failed");
169
170 _major = 0;
171
172 DMINFO("cleaned up");
173}
174
175int (*_inits[])(void) __initdata = {
176 local_init,
177 dm_target_init,
178 dm_linear_init,
179 dm_stripe_init,
180 dm_interface_init,
181};
182
183void (*_exits[])(void) = {
184 local_exit,
185 dm_target_exit,
186 dm_linear_exit,
187 dm_stripe_exit,
188 dm_interface_exit,
189};
190
191static int __init dm_init(void)
192{
193 const int count = ARRAY_SIZE(_inits);
194
195 int r, i;
196
197 for (i = 0; i < count; i++) {
198 r = _inits[i]();
199 if (r)
200 goto bad;
201 }
202
203 return 0;
204
205 bad:
206 while (i--)
207 _exits[i]();
208
209 return r;
210}
211
212static void __exit dm_exit(void)
213{
214 int i = ARRAY_SIZE(_exits);
215
216 while (i--)
217 _exits[i]();
218}
219
220/*
221 * Block device functions
222 */
223static int dm_blk_open(struct inode *inode, struct file *file)
224{
225 struct mapped_device *md;
226
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700227 spin_lock(&_minor_lock);
228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 md = inode->i_bdev->bd_disk->private_data;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700230 if (!md)
231 goto out;
232
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700233 if (test_bit(DMF_FREEING, &md->flags) ||
234 test_bit(DMF_DELETING, &md->flags)) {
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700235 md = NULL;
236 goto out;
237 }
238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 dm_get(md);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700240 atomic_inc(&md->open_count);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700241
242out:
243 spin_unlock(&_minor_lock);
244
245 return md ? 0 : -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246}
247
248static int dm_blk_close(struct inode *inode, struct file *file)
249{
250 struct mapped_device *md;
251
252 md = inode->i_bdev->bd_disk->private_data;
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700253 atomic_dec(&md->open_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 dm_put(md);
255 return 0;
256}
257
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700258int dm_open_count(struct mapped_device *md)
259{
260 return atomic_read(&md->open_count);
261}
262
263/*
264 * Guarantees nothing is using the device before it's deleted.
265 */
266int dm_lock_for_deletion(struct mapped_device *md)
267{
268 int r = 0;
269
270 spin_lock(&_minor_lock);
271
272 if (dm_open_count(md))
273 r = -EBUSY;
274 else
275 set_bit(DMF_DELETING, &md->flags);
276
277 spin_unlock(&_minor_lock);
278
279 return r;
280}
281
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800282static int dm_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
283{
284 struct mapped_device *md = bdev->bd_disk->private_data;
285
286 return dm_get_geometry(md, geo);
287}
288
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289static inline struct dm_io *alloc_io(struct mapped_device *md)
290{
291 return mempool_alloc(md->io_pool, GFP_NOIO);
292}
293
294static inline void free_io(struct mapped_device *md, struct dm_io *io)
295{
296 mempool_free(io, md->io_pool);
297}
298
299static inline struct target_io *alloc_tio(struct mapped_device *md)
300{
301 return mempool_alloc(md->tio_pool, GFP_NOIO);
302}
303
304static inline void free_tio(struct mapped_device *md, struct target_io *tio)
305{
306 mempool_free(tio, md->tio_pool);
307}
308
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800309static void start_io_acct(struct dm_io *io)
310{
311 struct mapped_device *md = io->md;
312
313 io->start_time = jiffies;
314
315 preempt_disable();
316 disk_round_stats(dm_disk(md));
317 preempt_enable();
318 dm_disk(md)->in_flight = atomic_inc_return(&md->pending);
319}
320
321static int end_io_acct(struct dm_io *io)
322{
323 struct mapped_device *md = io->md;
324 struct bio *bio = io->bio;
325 unsigned long duration = jiffies - io->start_time;
326 int pending;
327 int rw = bio_data_dir(bio);
328
329 preempt_disable();
330 disk_round_stats(dm_disk(md));
331 preempt_enable();
332 dm_disk(md)->in_flight = pending = atomic_dec_return(&md->pending);
333
334 disk_stat_add(dm_disk(md), ticks[rw], duration);
335
336 return !pending;
337}
338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339/*
340 * Add the bio to the list of deferred io.
341 */
342static int queue_io(struct mapped_device *md, struct bio *bio)
343{
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700344 down_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
346 if (!test_bit(DMF_BLOCK_IO, &md->flags)) {
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700347 up_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 return 1;
349 }
350
351 bio_list_add(&md->deferred, bio);
352
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700353 up_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 return 0; /* deferred successfully */
355}
356
357/*
358 * Everyone (including functions in this file), should use this
359 * function to access the md->map field, and make sure they call
360 * dm_table_put() when finished.
361 */
362struct dm_table *dm_get_table(struct mapped_device *md)
363{
364 struct dm_table *t;
365
366 read_lock(&md->map_lock);
367 t = md->map;
368 if (t)
369 dm_table_get(t);
370 read_unlock(&md->map_lock);
371
372 return t;
373}
374
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800375/*
376 * Get the geometry associated with a dm device
377 */
378int dm_get_geometry(struct mapped_device *md, struct hd_geometry *geo)
379{
380 *geo = md->geometry;
381
382 return 0;
383}
384
385/*
386 * Set the geometry of a device.
387 */
388int dm_set_geometry(struct mapped_device *md, struct hd_geometry *geo)
389{
390 sector_t sz = (sector_t)geo->cylinders * geo->heads * geo->sectors;
391
392 if (geo->start > sz) {
393 DMWARN("Start sector is beyond the geometry limits.");
394 return -EINVAL;
395 }
396
397 md->geometry = *geo;
398
399 return 0;
400}
401
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402/*-----------------------------------------------------------------
403 * CRUD START:
404 * A more elegant soln is in the works that uses the queue
405 * merge fn, unfortunately there are a couple of changes to
406 * the block layer that I want to make for this. So in the
407 * interests of getting something for people to use I give
408 * you this clearly demarcated crap.
409 *---------------------------------------------------------------*/
410
411/*
412 * Decrements the number of outstanding ios that a bio has been
413 * cloned into, completing the original io if necc.
414 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800415static void dec_pending(struct dm_io *io, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416{
417 if (error)
418 io->error = error;
419
420 if (atomic_dec_and_test(&io->io_count)) {
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800421 if (end_io_acct(io))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 /* nudge anyone waiting on suspend queue */
423 wake_up(&io->md->wait);
424
Jens Axboe2056a782006-03-23 20:00:26 +0100425 blk_add_trace_bio(io->md->queue, io->bio, BLK_TA_COMPLETE);
426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 bio_endio(io->bio, io->bio->bi_size, io->error);
428 free_io(io->md, io);
429 }
430}
431
432static int clone_endio(struct bio *bio, unsigned int done, int error)
433{
434 int r = 0;
435 struct target_io *tio = bio->bi_private;
436 struct dm_io *io = tio->io;
437 dm_endio_fn endio = tio->ti->type->end_io;
438
439 if (bio->bi_size)
440 return 1;
441
442 if (!bio_flagged(bio, BIO_UPTODATE) && !error)
443 error = -EIO;
444
445 if (endio) {
446 r = endio(tio->ti, bio, error, &tio->info);
447 if (r < 0)
448 error = r;
449
450 else if (r > 0)
451 /* the target wants another shot at the io */
452 return 1;
453 }
454
455 free_tio(io->md, tio);
456 dec_pending(io, error);
457 bio_put(bio);
458 return r;
459}
460
461static sector_t max_io_len(struct mapped_device *md,
462 sector_t sector, struct dm_target *ti)
463{
464 sector_t offset = sector - ti->begin;
465 sector_t len = ti->len - offset;
466
467 /*
468 * Does the target need to split even further ?
469 */
470 if (ti->split_io) {
471 sector_t boundary;
472 boundary = ((offset + ti->split_io) & ~(ti->split_io - 1))
473 - offset;
474 if (len > boundary)
475 len = boundary;
476 }
477
478 return len;
479}
480
481static void __map_bio(struct dm_target *ti, struct bio *clone,
482 struct target_io *tio)
483{
484 int r;
Jens Axboe2056a782006-03-23 20:00:26 +0100485 sector_t sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
487 /*
488 * Sanity checks.
489 */
490 BUG_ON(!clone->bi_size);
491
492 clone->bi_end_io = clone_endio;
493 clone->bi_private = tio;
494
495 /*
496 * Map the clone. If r == 0 we don't need to do
497 * anything, the target has assumed ownership of
498 * this io.
499 */
500 atomic_inc(&tio->io->io_count);
Jens Axboe2056a782006-03-23 20:00:26 +0100501 sector = clone->bi_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 r = ti->type->map(ti, clone, &tio->info);
Jens Axboe2056a782006-03-23 20:00:26 +0100503 if (r > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 /* the bio has been remapped so dispatch it */
Jens Axboe2056a782006-03-23 20:00:26 +0100505
Alasdair G Kergon17b2f662006-06-26 00:27:33 -0700506 blk_add_trace_remap(bdev_get_queue(clone->bi_bdev), clone,
507 tio->io->bio->bi_bdev->bd_dev, sector,
Jens Axboe2056a782006-03-23 20:00:26 +0100508 clone->bi_sector);
509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 generic_make_request(clone);
Jens Axboe2056a782006-03-23 20:00:26 +0100511 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
513 else if (r < 0) {
514 /* error the io and bail out */
515 struct dm_io *io = tio->io;
516 free_tio(tio->io->md, tio);
Alasdair G Kergonf6a80ea2005-07-12 15:53:01 -0700517 dec_pending(io, r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 bio_put(clone);
519 }
520}
521
522struct clone_info {
523 struct mapped_device *md;
524 struct dm_table *map;
525 struct bio *bio;
526 struct dm_io *io;
527 sector_t sector;
528 sector_t sector_count;
529 unsigned short idx;
530};
531
Peter Osterlund36763472005-09-06 15:16:42 -0700532static void dm_bio_destructor(struct bio *bio)
533{
534 bio_free(bio, dm_set);
535}
536
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537/*
538 * Creates a little bio that is just does part of a bvec.
539 */
540static struct bio *split_bvec(struct bio *bio, sector_t sector,
541 unsigned short idx, unsigned int offset,
542 unsigned int len)
543{
544 struct bio *clone;
545 struct bio_vec *bv = bio->bi_io_vec + idx;
546
547 clone = bio_alloc_bioset(GFP_NOIO, 1, dm_set);
Peter Osterlund36763472005-09-06 15:16:42 -0700548 clone->bi_destructor = dm_bio_destructor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 *clone->bi_io_vec = *bv;
550
551 clone->bi_sector = sector;
552 clone->bi_bdev = bio->bi_bdev;
553 clone->bi_rw = bio->bi_rw;
554 clone->bi_vcnt = 1;
555 clone->bi_size = to_bytes(len);
556 clone->bi_io_vec->bv_offset = offset;
557 clone->bi_io_vec->bv_len = clone->bi_size;
558
559 return clone;
560}
561
562/*
563 * Creates a bio that consists of range of complete bvecs.
564 */
565static struct bio *clone_bio(struct bio *bio, sector_t sector,
566 unsigned short idx, unsigned short bv_count,
567 unsigned int len)
568{
569 struct bio *clone;
570
571 clone = bio_clone(bio, GFP_NOIO);
572 clone->bi_sector = sector;
573 clone->bi_idx = idx;
574 clone->bi_vcnt = idx + bv_count;
575 clone->bi_size = to_bytes(len);
576 clone->bi_flags &= ~(1 << BIO_SEG_VALID);
577
578 return clone;
579}
580
581static void __clone_and_map(struct clone_info *ci)
582{
583 struct bio *clone, *bio = ci->bio;
584 struct dm_target *ti = dm_table_find_target(ci->map, ci->sector);
585 sector_t len = 0, max = max_io_len(ci->md, ci->sector, ti);
586 struct target_io *tio;
587
588 /*
589 * Allocate a target io object.
590 */
591 tio = alloc_tio(ci->md);
592 tio->io = ci->io;
593 tio->ti = ti;
594 memset(&tio->info, 0, sizeof(tio->info));
595
596 if (ci->sector_count <= max) {
597 /*
598 * Optimise for the simple case where we can do all of
599 * the remaining io with a single clone.
600 */
601 clone = clone_bio(bio, ci->sector, ci->idx,
602 bio->bi_vcnt - ci->idx, ci->sector_count);
603 __map_bio(ti, clone, tio);
604 ci->sector_count = 0;
605
606 } else if (to_sector(bio->bi_io_vec[ci->idx].bv_len) <= max) {
607 /*
608 * There are some bvecs that don't span targets.
609 * Do as many of these as possible.
610 */
611 int i;
612 sector_t remaining = max;
613 sector_t bv_len;
614
615 for (i = ci->idx; remaining && (i < bio->bi_vcnt); i++) {
616 bv_len = to_sector(bio->bi_io_vec[i].bv_len);
617
618 if (bv_len > remaining)
619 break;
620
621 remaining -= bv_len;
622 len += bv_len;
623 }
624
625 clone = clone_bio(bio, ci->sector, ci->idx, i - ci->idx, len);
626 __map_bio(ti, clone, tio);
627
628 ci->sector += len;
629 ci->sector_count -= len;
630 ci->idx = i;
631
632 } else {
633 /*
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800634 * Handle a bvec that must be split between two or more targets.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 */
636 struct bio_vec *bv = bio->bi_io_vec + ci->idx;
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800637 sector_t remaining = to_sector(bv->bv_len);
638 unsigned int offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800640 do {
641 if (offset) {
642 ti = dm_table_find_target(ci->map, ci->sector);
643 max = max_io_len(ci->md, ci->sector, ti);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800645 tio = alloc_tio(ci->md);
646 tio->io = ci->io;
647 tio->ti = ti;
648 memset(&tio->info, 0, sizeof(tio->info));
649 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800651 len = min(remaining, max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800653 clone = split_bvec(bio, ci->sector, ci->idx,
654 bv->bv_offset + offset, len);
655
656 __map_bio(ti, clone, tio);
657
658 ci->sector += len;
659 ci->sector_count -= len;
660 offset += to_bytes(len);
661 } while (remaining -= len);
662
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 ci->idx++;
664 }
665}
666
667/*
668 * Split the bio into several clones.
669 */
670static void __split_bio(struct mapped_device *md, struct bio *bio)
671{
672 struct clone_info ci;
673
674 ci.map = dm_get_table(md);
675 if (!ci.map) {
676 bio_io_error(bio, bio->bi_size);
677 return;
678 }
679
680 ci.md = md;
681 ci.bio = bio;
682 ci.io = alloc_io(md);
683 ci.io->error = 0;
684 atomic_set(&ci.io->io_count, 1);
685 ci.io->bio = bio;
686 ci.io->md = md;
687 ci.sector = bio->bi_sector;
688 ci.sector_count = bio_sectors(bio);
689 ci.idx = bio->bi_idx;
690
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800691 start_io_acct(ci.io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 while (ci.sector_count)
693 __clone_and_map(&ci);
694
695 /* drop the extra reference count */
696 dec_pending(ci.io, 0);
697 dm_table_put(ci.map);
698}
699/*-----------------------------------------------------------------
700 * CRUD END
701 *---------------------------------------------------------------*/
702
703/*
704 * The request function that just remaps the bio built up by
705 * dm_merge_bvec.
706 */
707static int dm_request(request_queue_t *q, struct bio *bio)
708{
709 int r;
Kevin Corry12f03a42006-02-01 03:04:52 -0800710 int rw = bio_data_dir(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 struct mapped_device *md = q->queuedata;
712
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700713 down_read(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
Kevin Corry12f03a42006-02-01 03:04:52 -0800715 disk_stat_inc(dm_disk(md), ios[rw]);
716 disk_stat_add(dm_disk(md), sectors[rw], bio_sectors(bio));
717
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 /*
719 * If we're suspended we have to queue
720 * this io for later.
721 */
722 while (test_bit(DMF_BLOCK_IO, &md->flags)) {
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700723 up_read(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
725 if (bio_rw(bio) == READA) {
726 bio_io_error(bio, bio->bi_size);
727 return 0;
728 }
729
730 r = queue_io(md, bio);
731 if (r < 0) {
732 bio_io_error(bio, bio->bi_size);
733 return 0;
734
735 } else if (r == 0)
736 return 0; /* deferred successfully */
737
738 /*
739 * We're in a while loop, because someone could suspend
740 * before we get to the following read lock.
741 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700742 down_read(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 }
744
745 __split_bio(md, bio);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700746 up_read(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 return 0;
748}
749
750static int dm_flush_all(request_queue_t *q, struct gendisk *disk,
751 sector_t *error_sector)
752{
753 struct mapped_device *md = q->queuedata;
754 struct dm_table *map = dm_get_table(md);
755 int ret = -ENXIO;
756
757 if (map) {
Alasdair G Kergoncf222b32005-07-28 21:15:57 -0700758 ret = dm_table_flush_all(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 dm_table_put(map);
760 }
761
762 return ret;
763}
764
765static void dm_unplug_all(request_queue_t *q)
766{
767 struct mapped_device *md = q->queuedata;
768 struct dm_table *map = dm_get_table(md);
769
770 if (map) {
771 dm_table_unplug_all(map);
772 dm_table_put(map);
773 }
774}
775
776static int dm_any_congested(void *congested_data, int bdi_bits)
777{
778 int r;
779 struct mapped_device *md = (struct mapped_device *) congested_data;
780 struct dm_table *map = dm_get_table(md);
781
782 if (!map || test_bit(DMF_BLOCK_IO, &md->flags))
783 r = bdi_bits;
784 else
785 r = dm_table_any_congested(map, bdi_bits);
786
787 dm_table_put(map);
788 return r;
789}
790
791/*-----------------------------------------------------------------
792 * An IDR is used to keep track of allocated minor numbers.
793 *---------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794static DEFINE_IDR(_minor_idr);
795
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -0700796static void free_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797{
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -0700798 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 idr_remove(&_minor_idr, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -0700800 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801}
802
803/*
804 * See if the device with a specific minor # is free.
805 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -0700806static int specific_minor(struct mapped_device *md, int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807{
808 int r, m;
809
810 if (minor >= (1 << MINORBITS))
811 return -EINVAL;
812
Jeff Mahoney62f75c22006-06-26 00:27:21 -0700813 r = idr_pre_get(&_minor_idr, GFP_KERNEL);
814 if (!r)
815 return -ENOMEM;
816
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -0700817 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
819 if (idr_find(&_minor_idr, minor)) {
820 r = -EBUSY;
821 goto out;
822 }
823
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -0700824 r = idr_get_new_above(&_minor_idr, MINOR_ALLOCED, minor, &m);
Jeff Mahoney62f75c22006-06-26 00:27:21 -0700825 if (r)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
828 if (m != minor) {
829 idr_remove(&_minor_idr, m);
830 r = -EBUSY;
831 goto out;
832 }
833
834out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -0700835 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 return r;
837}
838
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -0700839static int next_free_minor(struct mapped_device *md, int *minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840{
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -0700841 int r, m;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 r = idr_pre_get(&_minor_idr, GFP_KERNEL);
Jeff Mahoney62f75c22006-06-26 00:27:21 -0700844 if (!r)
845 return -ENOMEM;
846
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -0700847 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -0700849 r = idr_get_new(&_minor_idr, MINOR_ALLOCED, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 if (r) {
851 goto out;
852 }
853
854 if (m >= (1 << MINORBITS)) {
855 idr_remove(&_minor_idr, m);
856 r = -ENOSPC;
857 goto out;
858 }
859
860 *minor = m;
861
862out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -0700863 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 return r;
865}
866
867static struct block_device_operations dm_blk_dops;
868
869/*
870 * Allocate and initialise a blank device with a given minor.
871 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -0700872static struct mapped_device *alloc_dev(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873{
874 int r;
875 struct mapped_device *md = kmalloc(sizeof(*md), GFP_KERNEL);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -0700876 void *old_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
878 if (!md) {
879 DMWARN("unable to allocate device, out of memory.");
880 return NULL;
881 }
882
Jeff Mahoney10da4f72006-06-26 00:27:25 -0700883 if (!try_module_get(THIS_MODULE))
884 goto bad0;
885
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 /* get a minor number for the dev */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -0700887 if (minor == DM_ANY_MINOR)
888 r = next_free_minor(md, &minor);
889 else
890 r = specific_minor(md, minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 if (r < 0)
892 goto bad1;
893
894 memset(md, 0, sizeof(*md));
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700895 init_rwsem(&md->io_lock);
896 init_MUTEX(&md->suspend_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 rwlock_init(&md->map_lock);
898 atomic_set(&md->holders, 1);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700899 atomic_set(&md->open_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 atomic_set(&md->event_nr, 0);
901
902 md->queue = blk_alloc_queue(GFP_KERNEL);
903 if (!md->queue)
904 goto bad1;
905
906 md->queue->queuedata = md;
907 md->queue->backing_dev_info.congested_fn = dm_any_congested;
908 md->queue->backing_dev_info.congested_data = md;
909 blk_queue_make_request(md->queue, dm_request);
Jens Axboedaef2652006-01-10 10:48:02 +0100910 blk_queue_bounce_limit(md->queue, BLK_BOUNCE_ANY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 md->queue->unplug_fn = dm_unplug_all;
912 md->queue->issue_flush_fn = dm_flush_all;
913
Matthew Dobson93d23412006-03-26 01:37:50 -0800914 md->io_pool = mempool_create_slab_pool(MIN_IOS, _io_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 if (!md->io_pool)
916 goto bad2;
917
Matthew Dobson93d23412006-03-26 01:37:50 -0800918 md->tio_pool = mempool_create_slab_pool(MIN_IOS, _tio_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 if (!md->tio_pool)
920 goto bad3;
921
922 md->disk = alloc_disk(1);
923 if (!md->disk)
924 goto bad4;
925
Jeff Mahoneyf0b04112006-06-26 00:27:25 -0700926 atomic_set(&md->pending, 0);
927 init_waitqueue_head(&md->wait);
928 init_waitqueue_head(&md->eventq);
929
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 md->disk->major = _major;
931 md->disk->first_minor = minor;
932 md->disk->fops = &dm_blk_dops;
933 md->disk->queue = md->queue;
934 md->disk->private_data = md;
935 sprintf(md->disk->disk_name, "dm-%d", minor);
936 add_disk(md->disk);
Mike Anderson7e51f252006-03-27 01:17:52 -0800937 format_dev_t(md->name, MKDEV(_major, minor));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -0700939 /* Populate the mapping, nobody knows we exist yet */
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -0700940 spin_lock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -0700941 old_md = idr_replace(&_minor_idr, md, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -0700942 spin_unlock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -0700943
944 BUG_ON(old_md != MINOR_ALLOCED);
945
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 return md;
947
948 bad4:
949 mempool_destroy(md->tio_pool);
950 bad3:
951 mempool_destroy(md->io_pool);
952 bad2:
Al Viro1312f402006-03-12 11:02:03 -0500953 blk_cleanup_queue(md->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 free_minor(minor);
955 bad1:
Jeff Mahoney10da4f72006-06-26 00:27:25 -0700956 module_put(THIS_MODULE);
957 bad0:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 kfree(md);
959 return NULL;
960}
961
962static void free_dev(struct mapped_device *md)
963{
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -0700964 int minor = md->disk->first_minor;
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -0800965
Jun'ichi Nomurad9dde592006-02-24 13:04:24 -0800966 if (md->suspended_bdev) {
967 thaw_bdev(md->suspended_bdev, NULL);
968 bdput(md->suspended_bdev);
969 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 mempool_destroy(md->tio_pool);
971 mempool_destroy(md->io_pool);
972 del_gendisk(md->disk);
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -0800973 free_minor(minor);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700974
975 spin_lock(&_minor_lock);
976 md->disk->private_data = NULL;
977 spin_unlock(&_minor_lock);
978
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 put_disk(md->disk);
Al Viro1312f402006-03-12 11:02:03 -0500980 blk_cleanup_queue(md->queue);
Jeff Mahoney10da4f72006-06-26 00:27:25 -0700981 module_put(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 kfree(md);
983}
984
985/*
986 * Bind a table to the device.
987 */
988static void event_callback(void *context)
989{
990 struct mapped_device *md = (struct mapped_device *) context;
991
992 atomic_inc(&md->event_nr);
993 wake_up(&md->eventq);
994}
995
Alasdair G Kergon4e901882005-07-28 21:15:59 -0700996static void __set_size(struct mapped_device *md, sector_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997{
Alasdair G Kergon4e901882005-07-28 21:15:59 -0700998 set_capacity(md->disk, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001000 mutex_lock(&md->suspended_bdev->bd_inode->i_mutex);
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001001 i_size_write(md->suspended_bdev->bd_inode, (loff_t)size << SECTOR_SHIFT);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001002 mutex_unlock(&md->suspended_bdev->bd_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003}
1004
1005static int __bind(struct mapped_device *md, struct dm_table *t)
1006{
1007 request_queue_t *q = md->queue;
1008 sector_t size;
1009
1010 size = dm_table_get_size(t);
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08001011
1012 /*
1013 * Wipe any geometry if the size of the table changed.
1014 */
1015 if (size != get_capacity(md->disk))
1016 memset(&md->geometry, 0, sizeof(md->geometry));
1017
Alasdair G Kergon4e901882005-07-28 21:15:59 -07001018 __set_size(md, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 if (size == 0)
1020 return 0;
1021
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 dm_table_get(t);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001023 dm_table_event_callback(t, event_callback, md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001024
1025 write_lock(&md->map_lock);
1026 md->map = t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 dm_table_set_restrictions(t, q);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001028 write_unlock(&md->map_lock);
1029
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 return 0;
1031}
1032
1033static void __unbind(struct mapped_device *md)
1034{
1035 struct dm_table *map = md->map;
1036
1037 if (!map)
1038 return;
1039
1040 dm_table_event_callback(map, NULL, NULL);
1041 write_lock(&md->map_lock);
1042 md->map = NULL;
1043 write_unlock(&md->map_lock);
1044 dm_table_put(map);
1045}
1046
1047/*
1048 * Constructor for a new device.
1049 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001050int dm_create(int minor, struct mapped_device **result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051{
1052 struct mapped_device *md;
1053
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001054 md = alloc_dev(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 if (!md)
1056 return -ENXIO;
1057
1058 *result = md;
1059 return 0;
1060}
1061
David Teigland637842c2006-01-06 00:20:00 -08001062static struct mapped_device *dm_find_md(dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063{
1064 struct mapped_device *md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 unsigned minor = MINOR(dev);
1066
1067 if (MAJOR(dev) != _major || minor >= (1 << MINORBITS))
1068 return NULL;
1069
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001070 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
1072 md = idr_find(&_minor_idr, minor);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001073 if (md && (md == MINOR_ALLOCED ||
1074 (dm_disk(md)->first_minor != minor) ||
Alasdair G Kergon17b2f662006-06-26 00:27:33 -07001075 test_bit(DMF_FREEING, &md->flags))) {
David Teigland637842c2006-01-06 00:20:00 -08001076 md = NULL;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001077 goto out;
1078 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001080out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001081 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
David Teigland637842c2006-01-06 00:20:00 -08001083 return md;
1084}
1085
David Teiglandd229a952006-01-06 00:20:01 -08001086struct mapped_device *dm_get_md(dev_t dev)
1087{
1088 struct mapped_device *md = dm_find_md(dev);
1089
1090 if (md)
1091 dm_get(md);
1092
1093 return md;
1094}
1095
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08001096void *dm_get_mdptr(struct mapped_device *md)
David Teigland637842c2006-01-06 00:20:00 -08001097{
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08001098 return md->interface_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099}
1100
1101void dm_set_mdptr(struct mapped_device *md, void *ptr)
1102{
1103 md->interface_ptr = ptr;
1104}
1105
1106void dm_get(struct mapped_device *md)
1107{
1108 atomic_inc(&md->holders);
1109}
1110
1111void dm_put(struct mapped_device *md)
1112{
Mike Anderson1134e5a2006-03-27 01:17:54 -08001113 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001115 BUG_ON(test_bit(DMF_FREEING, &md->flags));
1116
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001117 if (atomic_dec_and_lock(&md->holders, &_minor_lock)) {
Mike Anderson1134e5a2006-03-27 01:17:54 -08001118 map = dm_get_table(md);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001119 idr_replace(&_minor_idr, MINOR_ALLOCED, dm_disk(md)->first_minor);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001120 set_bit(DMF_FREEING, &md->flags);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001121 spin_unlock(&_minor_lock);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001122 if (!dm_suspended(md)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 dm_table_presuspend_targets(map);
1124 dm_table_postsuspend_targets(map);
1125 }
1126 __unbind(md);
Mike Anderson1134e5a2006-03-27 01:17:54 -08001127 dm_table_put(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 free_dev(md);
1129 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130}
1131
1132/*
1133 * Process the deferred bios
1134 */
1135static void __flush_deferred_io(struct mapped_device *md, struct bio *c)
1136{
1137 struct bio *n;
1138
1139 while (c) {
1140 n = c->bi_next;
1141 c->bi_next = NULL;
1142 __split_bio(md, c);
1143 c = n;
1144 }
1145}
1146
1147/*
1148 * Swap in a new table (destroying old one).
1149 */
1150int dm_swap_table(struct mapped_device *md, struct dm_table *table)
1151{
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07001152 int r = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001154 down(&md->suspend_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155
1156 /* device must be suspended */
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001157 if (!dm_suspended(md))
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07001158 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
1160 __unbind(md);
1161 r = __bind(md, table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07001163out:
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001164 up(&md->suspend_lock);
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07001165 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166}
1167
1168/*
1169 * Functions to lock and unlock any filesystem running on the
1170 * device.
1171 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001172static int lock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173{
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001174 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
1176 WARN_ON(md->frozen_sb);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07001177
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001178 md->frozen_sb = freeze_bdev(md->suspended_bdev);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07001179 if (IS_ERR(md->frozen_sb)) {
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001180 r = PTR_ERR(md->frozen_sb);
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001181 md->frozen_sb = NULL;
1182 return r;
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07001183 }
1184
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08001185 set_bit(DMF_FROZEN, &md->flags);
1186
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 /* don't bdput right now, we don't want the bdev
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001188 * to go away while it is locked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 */
1190 return 0;
1191}
1192
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001193static void unlock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194{
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08001195 if (!test_bit(DMF_FROZEN, &md->flags))
1196 return;
1197
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001198 thaw_bdev(md->suspended_bdev, md->frozen_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 md->frozen_sb = NULL;
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08001200 clear_bit(DMF_FROZEN, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201}
1202
1203/*
1204 * We need to be able to change a mapping table under a mounted
1205 * filesystem. For example we might want to move some data in
1206 * the background. Before the table can be swapped with
1207 * dm_bind_table, dm_suspend must be called to flush any in
1208 * flight bios and ensure that any further io gets deferred.
1209 */
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08001210int dm_suspend(struct mapped_device *md, int do_lockfs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211{
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001212 struct dm_table *map = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 DECLARE_WAITQUEUE(wait, current);
Jun'ichi Nomura1ecac7f2006-03-27 01:17:51 -08001214 struct bio *def;
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001215 int r = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001217 down(&md->suspend_lock);
1218
1219 if (dm_suspended(md))
1220 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
1222 map = dm_get_table(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001224 /* This does not get reverted if there's an error later. */
1225 dm_table_presuspend_targets(map);
1226
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001227 md->suspended_bdev = bdget_disk(md->disk, 0);
1228 if (!md->suspended_bdev) {
1229 DMWARN("bdget failed in dm_suspend");
1230 r = -ENOMEM;
1231 goto out;
1232 }
1233
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001234 /* Flush I/O to the device. */
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08001235 if (do_lockfs) {
1236 r = lock_fs(md);
1237 if (r)
1238 goto out;
1239 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
1241 /*
Alasdair G Kergon354e0072005-05-05 16:16:05 -07001242 * First we set the BLOCK_IO flag so no more ios will be mapped.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001244 down_write(&md->io_lock);
1245 set_bit(DMF_BLOCK_IO, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 add_wait_queue(&md->wait, &wait);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001248 up_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
1250 /* unplug */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001251 if (map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 dm_table_unplug_all(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
1254 /*
1255 * Then we wait for the already mapped ios to
1256 * complete.
1257 */
1258 while (1) {
1259 set_current_state(TASK_INTERRUPTIBLE);
1260
1261 if (!atomic_read(&md->pending) || signal_pending(current))
1262 break;
1263
1264 io_schedule();
1265 }
1266 set_current_state(TASK_RUNNING);
1267
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001268 down_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 remove_wait_queue(&md->wait, &wait);
1270
1271 /* were we interrupted ? */
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001272 r = -EINTR;
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001273 if (atomic_read(&md->pending)) {
Jun'ichi Nomura1ecac7f2006-03-27 01:17:51 -08001274 clear_bit(DMF_BLOCK_IO, &md->flags);
1275 def = bio_list_get(&md->deferred);
1276 __flush_deferred_io(md, def);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001277 up_write(&md->io_lock);
1278 unlock_fs(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001279 goto out;
1280 }
1281 up_write(&md->io_lock);
1282
1283 dm_table_postsuspend_targets(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
1285 set_bit(DMF_SUSPENDED, &md->flags);
1286
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001287 r = 0;
1288
1289out:
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001290 if (r && md->suspended_bdev) {
1291 bdput(md->suspended_bdev);
1292 md->suspended_bdev = NULL;
1293 }
1294
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 dm_table_put(map);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001296 up(&md->suspend_lock);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001297 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298}
1299
1300int dm_resume(struct mapped_device *md)
1301{
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001302 int r = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 struct bio *def;
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001304 struct dm_table *map = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001306 down(&md->suspend_lock);
1307 if (!dm_suspended(md))
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001308 goto out;
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001309
1310 map = dm_get_table(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001311 if (!map || !dm_table_get_size(map))
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001312 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
1314 dm_table_resume_targets(map);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001315
1316 down_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 clear_bit(DMF_BLOCK_IO, &md->flags);
1318
1319 def = bio_list_get(&md->deferred);
1320 __flush_deferred_io(md, def);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001321 up_write(&md->io_lock);
1322
1323 unlock_fs(md);
1324
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001325 bdput(md->suspended_bdev);
1326 md->suspended_bdev = NULL;
1327
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001328 clear_bit(DMF_SUSPENDED, &md->flags);
1329
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 dm_table_unplug_all(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001332 r = 0;
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001333
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001334out:
1335 dm_table_put(map);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001336 up(&md->suspend_lock);
1337
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001338 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339}
1340
1341/*-----------------------------------------------------------------
1342 * Event notification.
1343 *---------------------------------------------------------------*/
1344uint32_t dm_get_event_nr(struct mapped_device *md)
1345{
1346 return atomic_read(&md->event_nr);
1347}
1348
1349int dm_wait_event(struct mapped_device *md, int event_nr)
1350{
1351 return wait_event_interruptible(md->eventq,
1352 (event_nr != atomic_read(&md->event_nr)));
1353}
1354
1355/*
1356 * The gendisk is only valid as long as you have a reference
1357 * count on 'md'.
1358 */
1359struct gendisk *dm_disk(struct mapped_device *md)
1360{
1361 return md->disk;
1362}
1363
1364int dm_suspended(struct mapped_device *md)
1365{
1366 return test_bit(DMF_SUSPENDED, &md->flags);
1367}
1368
1369static struct block_device_operations dm_blk_dops = {
1370 .open = dm_blk_open,
1371 .release = dm_blk_close,
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08001372 .getgeo = dm_blk_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 .owner = THIS_MODULE
1374};
1375
1376EXPORT_SYMBOL(dm_get_mapinfo);
1377
1378/*
1379 * module hooks
1380 */
1381module_init(dm_init);
1382module_exit(dm_exit);
1383
1384module_param(major, uint, 0);
1385MODULE_PARM_DESC(major, "The major number of the device mapper");
1386MODULE_DESCRIPTION(DM_NAME " driver");
1387MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
1388MODULE_LICENSE("GPL");