block: kill GENHD_FL_FAIL and use part0->make_it_fail
[deliverable/linux.git] / drivers / md / dm.c
CommitLineData
1da177e4
LT
1/*
2 * Copyright (C) 2001, 2002 Sistina Software (UK) Limited.
2b06cfff 3 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
1da177e4
LT
4 *
5 * This file is released under the GPL.
6 */
7
8#include "dm.h"
9#include "dm-bio-list.h"
51e5b2bd 10#include "dm-uevent.h"
1da177e4
LT
11
12#include <linux/init.h>
13#include <linux/module.h>
48c9c27b 14#include <linux/mutex.h>
1da177e4
LT
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>
3ac51e74 22#include <linux/hdreg.h>
2056a782 23#include <linux/blktrace_api.h>
aa129a22 24#include <linux/smp_lock.h>
1da177e4 25
72d94861
AK
26#define DM_MSG_PREFIX "core"
27
1da177e4
LT
28static const char *_name = DM_NAME;
29
30static unsigned int major = 0;
31static unsigned int _major = 0;
32
f32c10b0 33static DEFINE_SPINLOCK(_minor_lock);
1da177e4
LT
34/*
35 * One of these is allocated per bio.
36 */
37struct dm_io {
38 struct mapped_device *md;
39 int error;
1da177e4 40 atomic_t io_count;
6ae2fa67 41 struct bio *bio;
3eaf840e 42 unsigned long start_time;
1da177e4
LT
43};
44
45/*
46 * One of these is allocated per target within a bio. Hopefully
47 * this will be simplified out one day.
48 */
028867ac 49struct dm_target_io {
1da177e4
LT
50 struct dm_io *io;
51 struct dm_target *ti;
52 union map_info info;
53};
54
55union map_info *dm_get_mapinfo(struct bio *bio)
56{
17b2f66f 57 if (bio && bio->bi_private)
028867ac 58 return &((struct dm_target_io *)bio->bi_private)->info;
17b2f66f 59 return NULL;
1da177e4
LT
60}
61
ba61fdd1
JM
62#define MINOR_ALLOCED ((void *)-1)
63
1da177e4
LT
64/*
65 * Bits for the md->flags field.
66 */
67#define DMF_BLOCK_IO 0
68#define DMF_SUSPENDED 1
aa8d7c2f 69#define DMF_FROZEN 2
fba9f90e 70#define DMF_FREEING 3
5c6bd75d 71#define DMF_DELETING 4
2e93ccc1 72#define DMF_NOFLUSH_SUSPENDING 5
1da177e4 73
304f3f6a
MB
74/*
75 * Work processed by per-device workqueue.
76 */
77struct dm_wq_req {
78 enum {
79 DM_WQ_FLUSH_ALL,
80 DM_WQ_FLUSH_DEFERRED,
81 } type;
82 struct work_struct work;
83 struct mapped_device *md;
84 void *context;
85};
86
1da177e4 87struct mapped_device {
2ca3310e 88 struct rw_semaphore io_lock;
e61290a4 89 struct mutex suspend_lock;
2e93ccc1 90 spinlock_t pushback_lock;
1da177e4
LT
91 rwlock_t map_lock;
92 atomic_t holders;
5c6bd75d 93 atomic_t open_count;
1da177e4
LT
94
95 unsigned long flags;
96
165125e1 97 struct request_queue *queue;
1da177e4 98 struct gendisk *disk;
7e51f257 99 char name[16];
1da177e4
LT
100
101 void *interface_ptr;
102
103 /*
104 * A list of ios that arrived while we were suspended.
105 */
106 atomic_t pending;
107 wait_queue_head_t wait;
74859364 108 struct bio_list deferred;
2e93ccc1 109 struct bio_list pushback;
1da177e4 110
304f3f6a
MB
111 /*
112 * Processing queue (flush/barriers)
113 */
114 struct workqueue_struct *wq;
115
1da177e4
LT
116 /*
117 * The current mapping.
118 */
119 struct dm_table *map;
120
121 /*
122 * io objects are allocated from here.
123 */
124 mempool_t *io_pool;
125 mempool_t *tio_pool;
126
9faf400f
SB
127 struct bio_set *bs;
128
1da177e4
LT
129 /*
130 * Event handling.
131 */
132 atomic_t event_nr;
133 wait_queue_head_t eventq;
7a8c3d3b
MA
134 atomic_t uevent_seq;
135 struct list_head uevent_list;
136 spinlock_t uevent_lock; /* Protect access to uevent_list */
1da177e4
LT
137
138 /*
139 * freeze/thaw support require holding onto a super block
140 */
141 struct super_block *frozen_sb;
e39e2e95 142 struct block_device *suspended_bdev;
3ac51e74
DW
143
144 /* forced geometry settings */
145 struct hd_geometry geometry;
1da177e4
LT
146};
147
148#define MIN_IOS 256
e18b890b
CL
149static struct kmem_cache *_io_cache;
150static struct kmem_cache *_tio_cache;
1da177e4 151
1da177e4
LT
152static int __init local_init(void)
153{
154 int r;
155
1da177e4 156 /* allocate a slab for the dm_ios */
028867ac 157 _io_cache = KMEM_CACHE(dm_io, 0);
1da177e4
LT
158 if (!_io_cache)
159 return -ENOMEM;
160
161 /* allocate a slab for the target ios */
028867ac 162 _tio_cache = KMEM_CACHE(dm_target_io, 0);
1da177e4
LT
163 if (!_tio_cache) {
164 kmem_cache_destroy(_io_cache);
165 return -ENOMEM;
166 }
167
51e5b2bd
MA
168 r = dm_uevent_init();
169 if (r) {
170 kmem_cache_destroy(_tio_cache);
171 kmem_cache_destroy(_io_cache);
172 return r;
173 }
174
1da177e4
LT
175 _major = major;
176 r = register_blkdev(_major, _name);
177 if (r < 0) {
178 kmem_cache_destroy(_tio_cache);
179 kmem_cache_destroy(_io_cache);
51e5b2bd 180 dm_uevent_exit();
1da177e4
LT
181 return r;
182 }
183
184 if (!_major)
185 _major = r;
186
187 return 0;
188}
189
190static void local_exit(void)
191{
192 kmem_cache_destroy(_tio_cache);
193 kmem_cache_destroy(_io_cache);
00d59405 194 unregister_blkdev(_major, _name);
51e5b2bd 195 dm_uevent_exit();
1da177e4
LT
196
197 _major = 0;
198
199 DMINFO("cleaned up");
200}
201
b9249e55 202static int (*_inits[])(void) __initdata = {
1da177e4
LT
203 local_init,
204 dm_target_init,
205 dm_linear_init,
206 dm_stripe_init,
945fa4d2 207 dm_kcopyd_init,
1da177e4
LT
208 dm_interface_init,
209};
210
b9249e55 211static void (*_exits[])(void) = {
1da177e4
LT
212 local_exit,
213 dm_target_exit,
214 dm_linear_exit,
215 dm_stripe_exit,
945fa4d2 216 dm_kcopyd_exit,
1da177e4
LT
217 dm_interface_exit,
218};
219
220static int __init dm_init(void)
221{
222 const int count = ARRAY_SIZE(_inits);
223
224 int r, i;
225
226 for (i = 0; i < count; i++) {
227 r = _inits[i]();
228 if (r)
229 goto bad;
230 }
231
232 return 0;
233
234 bad:
235 while (i--)
236 _exits[i]();
237
238 return r;
239}
240
241static void __exit dm_exit(void)
242{
243 int i = ARRAY_SIZE(_exits);
244
245 while (i--)
246 _exits[i]();
247}
248
249/*
250 * Block device functions
251 */
252static int dm_blk_open(struct inode *inode, struct file *file)
253{
254 struct mapped_device *md;
255
fba9f90e
JM
256 spin_lock(&_minor_lock);
257
1da177e4 258 md = inode->i_bdev->bd_disk->private_data;
fba9f90e
JM
259 if (!md)
260 goto out;
261
5c6bd75d
AK
262 if (test_bit(DMF_FREEING, &md->flags) ||
263 test_bit(DMF_DELETING, &md->flags)) {
fba9f90e
JM
264 md = NULL;
265 goto out;
266 }
267
1da177e4 268 dm_get(md);
5c6bd75d 269 atomic_inc(&md->open_count);
fba9f90e
JM
270
271out:
272 spin_unlock(&_minor_lock);
273
274 return md ? 0 : -ENXIO;
1da177e4
LT
275}
276
277static int dm_blk_close(struct inode *inode, struct file *file)
278{
279 struct mapped_device *md;
280
281 md = inode->i_bdev->bd_disk->private_data;
5c6bd75d 282 atomic_dec(&md->open_count);
1da177e4
LT
283 dm_put(md);
284 return 0;
285}
286
5c6bd75d
AK
287int dm_open_count(struct mapped_device *md)
288{
289 return atomic_read(&md->open_count);
290}
291
292/*
293 * Guarantees nothing is using the device before it's deleted.
294 */
295int dm_lock_for_deletion(struct mapped_device *md)
296{
297 int r = 0;
298
299 spin_lock(&_minor_lock);
300
301 if (dm_open_count(md))
302 r = -EBUSY;
303 else
304 set_bit(DMF_DELETING, &md->flags);
305
306 spin_unlock(&_minor_lock);
307
308 return r;
309}
310
3ac51e74
DW
311static int dm_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
312{
313 struct mapped_device *md = bdev->bd_disk->private_data;
314
315 return dm_get_geometry(md, geo);
316}
317
aa129a22
MB
318static int dm_blk_ioctl(struct inode *inode, struct file *file,
319 unsigned int cmd, unsigned long arg)
320{
321 struct mapped_device *md;
322 struct dm_table *map;
323 struct dm_target *tgt;
324 int r = -ENOTTY;
325
326 /* We don't really need this lock, but we do need 'inode'. */
327 unlock_kernel();
328
329 md = inode->i_bdev->bd_disk->private_data;
330
331 map = dm_get_table(md);
332
333 if (!map || !dm_table_get_size(map))
334 goto out;
335
336 /* We only support devices that have a single target */
337 if (dm_table_get_num_targets(map) != 1)
338 goto out;
339
340 tgt = dm_table_get_target(map, 0);
341
342 if (dm_suspended(md)) {
343 r = -EAGAIN;
344 goto out;
345 }
346
347 if (tgt->type->ioctl)
348 r = tgt->type->ioctl(tgt, inode, file, cmd, arg);
349
350out:
351 dm_table_put(map);
352
353 lock_kernel();
354 return r;
355}
356
028867ac 357static struct dm_io *alloc_io(struct mapped_device *md)
1da177e4
LT
358{
359 return mempool_alloc(md->io_pool, GFP_NOIO);
360}
361
028867ac 362static void free_io(struct mapped_device *md, struct dm_io *io)
1da177e4
LT
363{
364 mempool_free(io, md->io_pool);
365}
366
028867ac 367static struct dm_target_io *alloc_tio(struct mapped_device *md)
1da177e4
LT
368{
369 return mempool_alloc(md->tio_pool, GFP_NOIO);
370}
371
028867ac 372static void free_tio(struct mapped_device *md, struct dm_target_io *tio)
1da177e4
LT
373{
374 mempool_free(tio, md->tio_pool);
375}
376
3eaf840e
JNN
377static void start_io_acct(struct dm_io *io)
378{
379 struct mapped_device *md = io->md;
c9959059 380 int cpu;
3eaf840e
JNN
381
382 io->start_time = jiffies;
383
c9959059
TH
384 cpu = disk_stat_lock();
385 disk_round_stats(cpu, dm_disk(md));
386 disk_stat_unlock();
3eaf840e
JNN
387 dm_disk(md)->in_flight = atomic_inc_return(&md->pending);
388}
389
390static int end_io_acct(struct dm_io *io)
391{
392 struct mapped_device *md = io->md;
393 struct bio *bio = io->bio;
394 unsigned long duration = jiffies - io->start_time;
c9959059 395 int pending, cpu;
3eaf840e
JNN
396 int rw = bio_data_dir(bio);
397
c9959059
TH
398 cpu = disk_stat_lock();
399 disk_round_stats(cpu, dm_disk(md));
400 disk_stat_add(cpu, dm_disk(md), ticks[rw], duration);
401 disk_stat_unlock();
3eaf840e 402
c9959059 403 dm_disk(md)->in_flight = pending = atomic_dec_return(&md->pending);
3eaf840e
JNN
404
405 return !pending;
406}
407
1da177e4
LT
408/*
409 * Add the bio to the list of deferred io.
410 */
411static int queue_io(struct mapped_device *md, struct bio *bio)
412{
2ca3310e 413 down_write(&md->io_lock);
1da177e4
LT
414
415 if (!test_bit(DMF_BLOCK_IO, &md->flags)) {
2ca3310e 416 up_write(&md->io_lock);
1da177e4
LT
417 return 1;
418 }
419
420 bio_list_add(&md->deferred, bio);
421
2ca3310e 422 up_write(&md->io_lock);
1da177e4
LT
423 return 0; /* deferred successfully */
424}
425
426/*
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.
430 */
431struct dm_table *dm_get_table(struct mapped_device *md)
432{
433 struct dm_table *t;
434
435 read_lock(&md->map_lock);
436 t = md->map;
437 if (t)
438 dm_table_get(t);
439 read_unlock(&md->map_lock);
440
441 return t;
442}
443
3ac51e74
DW
444/*
445 * Get the geometry associated with a dm device
446 */
447int dm_get_geometry(struct mapped_device *md, struct hd_geometry *geo)
448{
449 *geo = md->geometry;
450
451 return 0;
452}
453
454/*
455 * Set the geometry of a device.
456 */
457int dm_set_geometry(struct mapped_device *md, struct hd_geometry *geo)
458{
459 sector_t sz = (sector_t)geo->cylinders * geo->heads * geo->sectors;
460
461 if (geo->start > sz) {
462 DMWARN("Start sector is beyond the geometry limits.");
463 return -EINVAL;
464 }
465
466 md->geometry = *geo;
467
468 return 0;
469}
470
1da177e4
LT
471/*-----------------------------------------------------------------
472 * CRUD START:
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 *---------------------------------------------------------------*/
479
2e93ccc1
KU
480static int __noflush_suspending(struct mapped_device *md)
481{
482 return test_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
483}
484
1da177e4
LT
485/*
486 * Decrements the number of outstanding ios that a bio has been
487 * cloned into, completing the original io if necc.
488 */
858119e1 489static void dec_pending(struct dm_io *io, int error)
1da177e4 490{
2e93ccc1
KU
491 unsigned long flags;
492
493 /* Push-back supersedes any I/O errors */
494 if (error && !(io->error > 0 && __noflush_suspending(io->md)))
1da177e4
LT
495 io->error = error;
496
497 if (atomic_dec_and_test(&io->io_count)) {
2e93ccc1
KU
498 if (io->error == DM_ENDIO_REQUEUE) {
499 /*
500 * Target requested pushing back the I/O.
501 * This must be handled before the sleeper on
502 * suspend queue merges the pushback list.
503 */
504 spin_lock_irqsave(&io->md->pushback_lock, flags);
505 if (__noflush_suspending(io->md))
506 bio_list_add(&io->md->pushback, io->bio);
507 else
508 /* noflush suspend was interrupted. */
509 io->error = -EIO;
510 spin_unlock_irqrestore(&io->md->pushback_lock, flags);
511 }
512
3eaf840e 513 if (end_io_acct(io))
1da177e4
LT
514 /* nudge anyone waiting on suspend queue */
515 wake_up(&io->md->wait);
516
2e93ccc1
KU
517 if (io->error != DM_ENDIO_REQUEUE) {
518 blk_add_trace_bio(io->md->queue, io->bio,
519 BLK_TA_COMPLETE);
520
6712ecf8 521 bio_endio(io->bio, io->error);
2e93ccc1 522 }
2056a782 523
1da177e4
LT
524 free_io(io->md, io);
525 }
526}
527
6712ecf8 528static void clone_endio(struct bio *bio, int error)
1da177e4
LT
529{
530 int r = 0;
028867ac 531 struct dm_target_io *tio = bio->bi_private;
9faf400f 532 struct mapped_device *md = tio->io->md;
1da177e4
LT
533 dm_endio_fn endio = tio->ti->type->end_io;
534
1da177e4
LT
535 if (!bio_flagged(bio, BIO_UPTODATE) && !error)
536 error = -EIO;
537
538 if (endio) {
539 r = endio(tio->ti, bio, error, &tio->info);
2e93ccc1
KU
540 if (r < 0 || r == DM_ENDIO_REQUEUE)
541 /*
542 * error and requeue request are handled
543 * in dec_pending().
544 */
1da177e4 545 error = r;
45cbcd79
KU
546 else if (r == DM_ENDIO_INCOMPLETE)
547 /* The target will handle the io */
6712ecf8 548 return;
45cbcd79
KU
549 else if (r) {
550 DMWARN("unimplemented target endio return value: %d", r);
551 BUG();
552 }
1da177e4
LT
553 }
554
9faf400f
SB
555 dec_pending(tio->io, error);
556
557 /*
558 * Store md for cleanup instead of tio which is about to get freed.
559 */
560 bio->bi_private = md->bs;
561
1da177e4 562 bio_put(bio);
9faf400f 563 free_tio(md, tio);
1da177e4
LT
564}
565
566static sector_t max_io_len(struct mapped_device *md,
567 sector_t sector, struct dm_target *ti)
568{
569 sector_t offset = sector - ti->begin;
570 sector_t len = ti->len - offset;
571
572 /*
573 * Does the target need to split even further ?
574 */
575 if (ti->split_io) {
576 sector_t boundary;
577 boundary = ((offset + ti->split_io) & ~(ti->split_io - 1))
578 - offset;
579 if (len > boundary)
580 len = boundary;
581 }
582
583 return len;
584}
585
586static void __map_bio(struct dm_target *ti, struct bio *clone,
028867ac 587 struct dm_target_io *tio)
1da177e4
LT
588{
589 int r;
2056a782 590 sector_t sector;
9faf400f 591 struct mapped_device *md;
1da177e4
LT
592
593 /*
594 * Sanity checks.
595 */
596 BUG_ON(!clone->bi_size);
597
598 clone->bi_end_io = clone_endio;
599 clone->bi_private = tio;
600
601 /*
602 * Map the clone. If r == 0 we don't need to do
603 * anything, the target has assumed ownership of
604 * this io.
605 */
606 atomic_inc(&tio->io->io_count);
2056a782 607 sector = clone->bi_sector;
1da177e4 608 r = ti->type->map(ti, clone, &tio->info);
45cbcd79 609 if (r == DM_MAPIO_REMAPPED) {
1da177e4 610 /* the bio has been remapped so dispatch it */
2056a782 611
17b2f66f 612 blk_add_trace_remap(bdev_get_queue(clone->bi_bdev), clone,
c7149d6b
AB
613 tio->io->bio->bi_bdev->bd_dev,
614 clone->bi_sector, sector);
2056a782 615
1da177e4 616 generic_make_request(clone);
2e93ccc1
KU
617 } else if (r < 0 || r == DM_MAPIO_REQUEUE) {
618 /* error the io and bail out, or requeue it if needed */
9faf400f
SB
619 md = tio->io->md;
620 dec_pending(tio->io, r);
621 /*
622 * Store bio_set for cleanup.
623 */
624 clone->bi_private = md->bs;
1da177e4 625 bio_put(clone);
9faf400f 626 free_tio(md, tio);
45cbcd79
KU
627 } else if (r) {
628 DMWARN("unimplemented target map return value: %d", r);
629 BUG();
1da177e4
LT
630 }
631}
632
633struct clone_info {
634 struct mapped_device *md;
635 struct dm_table *map;
636 struct bio *bio;
637 struct dm_io *io;
638 sector_t sector;
639 sector_t sector_count;
640 unsigned short idx;
641};
642
3676347a
PO
643static void dm_bio_destructor(struct bio *bio)
644{
9faf400f
SB
645 struct bio_set *bs = bio->bi_private;
646
647 bio_free(bio, bs);
3676347a
PO
648}
649
1da177e4
LT
650/*
651 * Creates a little bio that is just does part of a bvec.
652 */
653static struct bio *split_bvec(struct bio *bio, sector_t sector,
654 unsigned short idx, unsigned int offset,
9faf400f 655 unsigned int len, struct bio_set *bs)
1da177e4
LT
656{
657 struct bio *clone;
658 struct bio_vec *bv = bio->bi_io_vec + idx;
659
9faf400f 660 clone = bio_alloc_bioset(GFP_NOIO, 1, bs);
3676347a 661 clone->bi_destructor = dm_bio_destructor;
1da177e4
LT
662 *clone->bi_io_vec = *bv;
663
664 clone->bi_sector = sector;
665 clone->bi_bdev = bio->bi_bdev;
666 clone->bi_rw = bio->bi_rw;
667 clone->bi_vcnt = 1;
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;
671
672 return clone;
673}
674
675/*
676 * Creates a bio that consists of range of complete bvecs.
677 */
678static struct bio *clone_bio(struct bio *bio, sector_t sector,
679 unsigned short idx, unsigned short bv_count,
9faf400f 680 unsigned int len, struct bio_set *bs)
1da177e4
LT
681{
682 struct bio *clone;
683
9faf400f
SB
684 clone = bio_alloc_bioset(GFP_NOIO, bio->bi_max_vecs, bs);
685 __bio_clone(clone, bio);
686 clone->bi_destructor = dm_bio_destructor;
1da177e4
LT
687 clone->bi_sector = sector;
688 clone->bi_idx = idx;
689 clone->bi_vcnt = idx + bv_count;
690 clone->bi_size = to_bytes(len);
691 clone->bi_flags &= ~(1 << BIO_SEG_VALID);
692
693 return clone;
694}
695
512875bd 696static int __clone_and_map(struct clone_info *ci)
1da177e4
LT
697{
698 struct bio *clone, *bio = ci->bio;
512875bd
JN
699 struct dm_target *ti;
700 sector_t len = 0, max;
028867ac 701 struct dm_target_io *tio;
1da177e4 702
512875bd
JN
703 ti = dm_table_find_target(ci->map, ci->sector);
704 if (!dm_target_is_valid(ti))
705 return -EIO;
706
707 max = max_io_len(ci->md, ci->sector, ti);
708
1da177e4
LT
709 /*
710 * Allocate a target io object.
711 */
712 tio = alloc_tio(ci->md);
713 tio->io = ci->io;
714 tio->ti = ti;
715 memset(&tio->info, 0, sizeof(tio->info));
716
717 if (ci->sector_count <= max) {
718 /*
719 * Optimise for the simple case where we can do all of
720 * the remaining io with a single clone.
721 */
722 clone = clone_bio(bio, ci->sector, ci->idx,
9faf400f
SB
723 bio->bi_vcnt - ci->idx, ci->sector_count,
724 ci->md->bs);
1da177e4
LT
725 __map_bio(ti, clone, tio);
726 ci->sector_count = 0;
727
728 } else if (to_sector(bio->bi_io_vec[ci->idx].bv_len) <= max) {
729 /*
730 * There are some bvecs that don't span targets.
731 * Do as many of these as possible.
732 */
733 int i;
734 sector_t remaining = max;
735 sector_t bv_len;
736
737 for (i = ci->idx; remaining && (i < bio->bi_vcnt); i++) {
738 bv_len = to_sector(bio->bi_io_vec[i].bv_len);
739
740 if (bv_len > remaining)
741 break;
742
743 remaining -= bv_len;
744 len += bv_len;
745 }
746
9faf400f
SB
747 clone = clone_bio(bio, ci->sector, ci->idx, i - ci->idx, len,
748 ci->md->bs);
1da177e4
LT
749 __map_bio(ti, clone, tio);
750
751 ci->sector += len;
752 ci->sector_count -= len;
753 ci->idx = i;
754
755 } else {
756 /*
d2044a94 757 * Handle a bvec that must be split between two or more targets.
1da177e4
LT
758 */
759 struct bio_vec *bv = bio->bi_io_vec + ci->idx;
d2044a94
AK
760 sector_t remaining = to_sector(bv->bv_len);
761 unsigned int offset = 0;
1da177e4 762
d2044a94
AK
763 do {
764 if (offset) {
765 ti = dm_table_find_target(ci->map, ci->sector);
512875bd
JN
766 if (!dm_target_is_valid(ti))
767 return -EIO;
768
d2044a94 769 max = max_io_len(ci->md, ci->sector, ti);
1da177e4 770
d2044a94
AK
771 tio = alloc_tio(ci->md);
772 tio->io = ci->io;
773 tio->ti = ti;
774 memset(&tio->info, 0, sizeof(tio->info));
775 }
776
777 len = min(remaining, max);
778
779 clone = split_bvec(bio, ci->sector, ci->idx,
9faf400f
SB
780 bv->bv_offset + offset, len,
781 ci->md->bs);
d2044a94
AK
782
783 __map_bio(ti, clone, tio);
784
785 ci->sector += len;
786 ci->sector_count -= len;
787 offset += to_bytes(len);
788 } while (remaining -= len);
1da177e4 789
1da177e4
LT
790 ci->idx++;
791 }
512875bd
JN
792
793 return 0;
1da177e4
LT
794}
795
796/*
797 * Split the bio into several clones.
798 */
9e4e5f87 799static int __split_bio(struct mapped_device *md, struct bio *bio)
1da177e4
LT
800{
801 struct clone_info ci;
512875bd 802 int error = 0;
1da177e4
LT
803
804 ci.map = dm_get_table(md);
9e4e5f87
MB
805 if (unlikely(!ci.map))
806 return -EIO;
1da177e4
LT
807
808 ci.md = md;
809 ci.bio = bio;
810 ci.io = alloc_io(md);
811 ci.io->error = 0;
812 atomic_set(&ci.io->io_count, 1);
813 ci.io->bio = bio;
814 ci.io->md = md;
815 ci.sector = bio->bi_sector;
816 ci.sector_count = bio_sectors(bio);
817 ci.idx = bio->bi_idx;
818
3eaf840e 819 start_io_acct(ci.io);
512875bd
JN
820 while (ci.sector_count && !error)
821 error = __clone_and_map(&ci);
1da177e4
LT
822
823 /* drop the extra reference count */
512875bd 824 dec_pending(ci.io, error);
1da177e4 825 dm_table_put(ci.map);
9e4e5f87
MB
826
827 return 0;
1da177e4
LT
828}
829/*-----------------------------------------------------------------
830 * CRUD END
831 *---------------------------------------------------------------*/
832
f6fccb12
MB
833static int dm_merge_bvec(struct request_queue *q,
834 struct bvec_merge_data *bvm,
835 struct bio_vec *biovec)
836{
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;
5037108a 841 int max_size = 0;
f6fccb12
MB
842
843 if (unlikely(!map))
5037108a 844 goto out;
f6fccb12
MB
845
846 ti = dm_table_find_target(map, bvm->bi_sector);
b01cd5ac
MP
847 if (!dm_target_is_valid(ti))
848 goto out_table;
f6fccb12
MB
849
850 /*
851 * Find maximum amount of I/O that won't need splitting
852 */
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;
856 if (max_size < 0)
857 max_size = 0;
858
859 /*
860 * merge_bvec_fn() returns number of bytes
861 * it can accept at this offset
862 * max is precomputed maximal io size
863 */
864 if (max_size && ti->type->merge)
865 max_size = ti->type->merge(ti, bvm, biovec, max_size);
866
b01cd5ac 867out_table:
5037108a
MP
868 dm_table_put(map);
869
870out:
f6fccb12
MB
871 /*
872 * Always allow an entire first page
873 */
874 if (max_size <= biovec->bv_len && !(bvm->bi_size >> SECTOR_SHIFT))
875 max_size = biovec->bv_len;
876
f6fccb12
MB
877 return max_size;
878}
879
1da177e4
LT
880/*
881 * The request function that just remaps the bio built up by
882 * dm_merge_bvec.
883 */
165125e1 884static int dm_request(struct request_queue *q, struct bio *bio)
1da177e4 885{
9e4e5f87 886 int r = -EIO;
12f03a49 887 int rw = bio_data_dir(bio);
1da177e4 888 struct mapped_device *md = q->queuedata;
c9959059 889 int cpu;
1da177e4 890
07a83c47
SB
891 /*
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.
894 */
895 if (unlikely(bio_barrier(bio))) {
6712ecf8 896 bio_endio(bio, -EOPNOTSUPP);
07a83c47
SB
897 return 0;
898 }
899
2ca3310e 900 down_read(&md->io_lock);
1da177e4 901
c9959059
TH
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));
905 disk_stat_unlock();
12f03a49 906
1da177e4
LT
907 /*
908 * If we're suspended we have to queue
909 * this io for later.
910 */
911 while (test_bit(DMF_BLOCK_IO, &md->flags)) {
2ca3310e 912 up_read(&md->io_lock);
1da177e4 913
9e4e5f87
MB
914 if (bio_rw(bio) != READA)
915 r = queue_io(md, bio);
1da177e4 916
9e4e5f87
MB
917 if (r <= 0)
918 goto out_req;
1da177e4
LT
919
920 /*
921 * We're in a while loop, because someone could suspend
922 * before we get to the following read lock.
923 */
2ca3310e 924 down_read(&md->io_lock);
1da177e4
LT
925 }
926
9e4e5f87 927 r = __split_bio(md, bio);
2ca3310e 928 up_read(&md->io_lock);
9e4e5f87
MB
929
930out_req:
931 if (r < 0)
932 bio_io_error(bio);
933
1da177e4
LT
934 return 0;
935}
936
165125e1 937static void dm_unplug_all(struct request_queue *q)
1da177e4
LT
938{
939 struct mapped_device *md = q->queuedata;
940 struct dm_table *map = dm_get_table(md);
941
942 if (map) {
943 dm_table_unplug_all(map);
944 dm_table_put(map);
945 }
946}
947
948static int dm_any_congested(void *congested_data, int bdi_bits)
949{
950 int r;
951 struct mapped_device *md = (struct mapped_device *) congested_data;
952 struct dm_table *map = dm_get_table(md);
953
954 if (!map || test_bit(DMF_BLOCK_IO, &md->flags))
955 r = bdi_bits;
956 else
957 r = dm_table_any_congested(map, bdi_bits);
958
959 dm_table_put(map);
960 return r;
961}
962
963/*-----------------------------------------------------------------
964 * An IDR is used to keep track of allocated minor numbers.
965 *---------------------------------------------------------------*/
1da177e4
LT
966static DEFINE_IDR(_minor_idr);
967
2b06cfff 968static void free_minor(int minor)
1da177e4 969{
f32c10b0 970 spin_lock(&_minor_lock);
1da177e4 971 idr_remove(&_minor_idr, minor);
f32c10b0 972 spin_unlock(&_minor_lock);
1da177e4
LT
973}
974
975/*
976 * See if the device with a specific minor # is free.
977 */
cf13ab8e 978static int specific_minor(int minor)
1da177e4
LT
979{
980 int r, m;
981
982 if (minor >= (1 << MINORBITS))
983 return -EINVAL;
984
62f75c2f
JM
985 r = idr_pre_get(&_minor_idr, GFP_KERNEL);
986 if (!r)
987 return -ENOMEM;
988
f32c10b0 989 spin_lock(&_minor_lock);
1da177e4
LT
990
991 if (idr_find(&_minor_idr, minor)) {
992 r = -EBUSY;
993 goto out;
994 }
995
ba61fdd1 996 r = idr_get_new_above(&_minor_idr, MINOR_ALLOCED, minor, &m);
62f75c2f 997 if (r)
1da177e4 998 goto out;
1da177e4
LT
999
1000 if (m != minor) {
1001 idr_remove(&_minor_idr, m);
1002 r = -EBUSY;
1003 goto out;
1004 }
1005
1006out:
f32c10b0 1007 spin_unlock(&_minor_lock);
1da177e4
LT
1008 return r;
1009}
1010
cf13ab8e 1011static int next_free_minor(int *minor)
1da177e4 1012{
2b06cfff 1013 int r, m;
1da177e4 1014
1da177e4 1015 r = idr_pre_get(&_minor_idr, GFP_KERNEL);
62f75c2f
JM
1016 if (!r)
1017 return -ENOMEM;
1018
f32c10b0 1019 spin_lock(&_minor_lock);
1da177e4 1020
ba61fdd1 1021 r = idr_get_new(&_minor_idr, MINOR_ALLOCED, &m);
cf13ab8e 1022 if (r)
1da177e4 1023 goto out;
1da177e4
LT
1024
1025 if (m >= (1 << MINORBITS)) {
1026 idr_remove(&_minor_idr, m);
1027 r = -ENOSPC;
1028 goto out;
1029 }
1030
1031 *minor = m;
1032
1033out:
f32c10b0 1034 spin_unlock(&_minor_lock);
1da177e4
LT
1035 return r;
1036}
1037
1038static struct block_device_operations dm_blk_dops;
1039
1040/*
1041 * Allocate and initialise a blank device with a given minor.
1042 */
2b06cfff 1043static struct mapped_device *alloc_dev(int minor)
1da177e4
LT
1044{
1045 int r;
cf13ab8e 1046 struct mapped_device *md = kzalloc(sizeof(*md), GFP_KERNEL);
ba61fdd1 1047 void *old_md;
1da177e4
LT
1048
1049 if (!md) {
1050 DMWARN("unable to allocate device, out of memory.");
1051 return NULL;
1052 }
1053
10da4f79 1054 if (!try_module_get(THIS_MODULE))
6ed7ade8 1055 goto bad_module_get;
10da4f79 1056
1da177e4 1057 /* get a minor number for the dev */
2b06cfff 1058 if (minor == DM_ANY_MINOR)
cf13ab8e 1059 r = next_free_minor(&minor);
2b06cfff 1060 else
cf13ab8e 1061 r = specific_minor(minor);
1da177e4 1062 if (r < 0)
6ed7ade8 1063 goto bad_minor;
1da177e4 1064
2ca3310e 1065 init_rwsem(&md->io_lock);
e61290a4 1066 mutex_init(&md->suspend_lock);
2e93ccc1 1067 spin_lock_init(&md->pushback_lock);
1da177e4
LT
1068 rwlock_init(&md->map_lock);
1069 atomic_set(&md->holders, 1);
5c6bd75d 1070 atomic_set(&md->open_count, 0);
1da177e4 1071 atomic_set(&md->event_nr, 0);
7a8c3d3b
MA
1072 atomic_set(&md->uevent_seq, 0);
1073 INIT_LIST_HEAD(&md->uevent_list);
1074 spin_lock_init(&md->uevent_lock);
1da177e4
LT
1075
1076 md->queue = blk_alloc_queue(GFP_KERNEL);
1077 if (!md->queue)
6ed7ade8 1078 goto bad_queue;
1da177e4
LT
1079
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);
daef265f 1084 blk_queue_bounce_limit(md->queue, BLK_BOUNCE_ANY);
1da177e4 1085 md->queue->unplug_fn = dm_unplug_all;
f6fccb12 1086 blk_queue_merge_bvec(md->queue, dm_merge_bvec);
1da177e4 1087
93d2341c 1088 md->io_pool = mempool_create_slab_pool(MIN_IOS, _io_cache);
74859364 1089 if (!md->io_pool)
6ed7ade8 1090 goto bad_io_pool;
1da177e4 1091
93d2341c 1092 md->tio_pool = mempool_create_slab_pool(MIN_IOS, _tio_cache);
1da177e4 1093 if (!md->tio_pool)
6ed7ade8 1094 goto bad_tio_pool;
1da177e4 1095
5972511b 1096 md->bs = bioset_create(16, 16);
9faf400f
SB
1097 if (!md->bs)
1098 goto bad_no_bioset;
1099
1da177e4
LT
1100 md->disk = alloc_disk(1);
1101 if (!md->disk)
6ed7ade8 1102 goto bad_disk;
1da177e4 1103
f0b04115
JM
1104 atomic_set(&md->pending, 0);
1105 init_waitqueue_head(&md->wait);
1106 init_waitqueue_head(&md->eventq);
1107
1da177e4
LT
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);
1114 add_disk(md->disk);
7e51f257 1115 format_dev_t(md->name, MKDEV(_major, minor));
1da177e4 1116
304f3f6a
MB
1117 md->wq = create_singlethread_workqueue("kdmflush");
1118 if (!md->wq)
1119 goto bad_thread;
1120
ba61fdd1 1121 /* Populate the mapping, nobody knows we exist yet */
f32c10b0 1122 spin_lock(&_minor_lock);
ba61fdd1 1123 old_md = idr_replace(&_minor_idr, md, minor);
f32c10b0 1124 spin_unlock(&_minor_lock);
ba61fdd1
JM
1125
1126 BUG_ON(old_md != MINOR_ALLOCED);
1127
1da177e4
LT
1128 return md;
1129
304f3f6a
MB
1130bad_thread:
1131 put_disk(md->disk);
6ed7ade8 1132bad_disk:
9faf400f 1133 bioset_free(md->bs);
6ed7ade8 1134bad_no_bioset:
1da177e4 1135 mempool_destroy(md->tio_pool);
6ed7ade8 1136bad_tio_pool:
1da177e4 1137 mempool_destroy(md->io_pool);
6ed7ade8 1138bad_io_pool:
1312f40e 1139 blk_cleanup_queue(md->queue);
6ed7ade8 1140bad_queue:
1da177e4 1141 free_minor(minor);
6ed7ade8 1142bad_minor:
10da4f79 1143 module_put(THIS_MODULE);
6ed7ade8 1144bad_module_get:
1da177e4
LT
1145 kfree(md);
1146 return NULL;
1147}
1148
ae9da83f
JN
1149static void unlock_fs(struct mapped_device *md);
1150
1da177e4
LT
1151static void free_dev(struct mapped_device *md)
1152{
f331c029 1153 int minor = MINOR(disk_devt(md->disk));
63d94e48 1154
d9dde59b 1155 if (md->suspended_bdev) {
ae9da83f 1156 unlock_fs(md);
d9dde59b
JN
1157 bdput(md->suspended_bdev);
1158 }
304f3f6a 1159 destroy_workqueue(md->wq);
1da177e4
LT
1160 mempool_destroy(md->tio_pool);
1161 mempool_destroy(md->io_pool);
9faf400f 1162 bioset_free(md->bs);
1da177e4 1163 del_gendisk(md->disk);
63d94e48 1164 free_minor(minor);
fba9f90e
JM
1165
1166 spin_lock(&_minor_lock);
1167 md->disk->private_data = NULL;
1168 spin_unlock(&_minor_lock);
1169
1da177e4 1170 put_disk(md->disk);
1312f40e 1171 blk_cleanup_queue(md->queue);
10da4f79 1172 module_put(THIS_MODULE);
1da177e4
LT
1173 kfree(md);
1174}
1175
1176/*
1177 * Bind a table to the device.
1178 */
1179static void event_callback(void *context)
1180{
7a8c3d3b
MA
1181 unsigned long flags;
1182 LIST_HEAD(uevents);
1da177e4
LT
1183 struct mapped_device *md = (struct mapped_device *) context;
1184
7a8c3d3b
MA
1185 spin_lock_irqsave(&md->uevent_lock, flags);
1186 list_splice_init(&md->uevent_list, &uevents);
1187 spin_unlock_irqrestore(&md->uevent_lock, flags);
1188
ed9e1982 1189 dm_send_uevents(&uevents, &disk_to_dev(md->disk)->kobj);
7a8c3d3b 1190
1da177e4
LT
1191 atomic_inc(&md->event_nr);
1192 wake_up(&md->eventq);
1193}
1194
4e90188b 1195static void __set_size(struct mapped_device *md, sector_t size)
1da177e4 1196{
4e90188b 1197 set_capacity(md->disk, size);
1da177e4 1198
1b1dcc1b 1199 mutex_lock(&md->suspended_bdev->bd_inode->i_mutex);
e39e2e95 1200 i_size_write(md->suspended_bdev->bd_inode, (loff_t)size << SECTOR_SHIFT);
1b1dcc1b 1201 mutex_unlock(&md->suspended_bdev->bd_inode->i_mutex);
1da177e4
LT
1202}
1203
1204static int __bind(struct mapped_device *md, struct dm_table *t)
1205{
165125e1 1206 struct request_queue *q = md->queue;
1da177e4
LT
1207 sector_t size;
1208
1209 size = dm_table_get_size(t);
3ac51e74
DW
1210
1211 /*
1212 * Wipe any geometry if the size of the table changed.
1213 */
1214 if (size != get_capacity(md->disk))
1215 memset(&md->geometry, 0, sizeof(md->geometry));
1216
bfa152fa
JN
1217 if (md->suspended_bdev)
1218 __set_size(md, size);
1da177e4
LT
1219 if (size == 0)
1220 return 0;
1221
2ca3310e
AK
1222 dm_table_get(t);
1223 dm_table_event_callback(t, event_callback, md);
1224
1da177e4
LT
1225 write_lock(&md->map_lock);
1226 md->map = t;
2ca3310e 1227 dm_table_set_restrictions(t, q);
1da177e4
LT
1228 write_unlock(&md->map_lock);
1229
1da177e4
LT
1230 return 0;
1231}
1232
1233static void __unbind(struct mapped_device *md)
1234{
1235 struct dm_table *map = md->map;
1236
1237 if (!map)
1238 return;
1239
1240 dm_table_event_callback(map, NULL, NULL);
1241 write_lock(&md->map_lock);
1242 md->map = NULL;
1243 write_unlock(&md->map_lock);
1244 dm_table_put(map);
1245}
1246
1247/*
1248 * Constructor for a new device.
1249 */
2b06cfff 1250int dm_create(int minor, struct mapped_device **result)
1da177e4
LT
1251{
1252 struct mapped_device *md;
1253
2b06cfff 1254 md = alloc_dev(minor);
1da177e4
LT
1255 if (!md)
1256 return -ENXIO;
1257
1258 *result = md;
1259 return 0;
1260}
1261
637842cf 1262static struct mapped_device *dm_find_md(dev_t dev)
1da177e4
LT
1263{
1264 struct mapped_device *md;
1da177e4
LT
1265 unsigned minor = MINOR(dev);
1266
1267 if (MAJOR(dev) != _major || minor >= (1 << MINORBITS))
1268 return NULL;
1269
f32c10b0 1270 spin_lock(&_minor_lock);
1da177e4
LT
1271
1272 md = idr_find(&_minor_idr, minor);
fba9f90e 1273 if (md && (md == MINOR_ALLOCED ||
f331c029 1274 (MINOR(disk_devt(dm_disk(md))) != minor) ||
17b2f66f 1275 test_bit(DMF_FREEING, &md->flags))) {
637842cf 1276 md = NULL;
fba9f90e
JM
1277 goto out;
1278 }
1da177e4 1279
fba9f90e 1280out:
f32c10b0 1281 spin_unlock(&_minor_lock);
1da177e4 1282
637842cf
DT
1283 return md;
1284}
1285
d229a958
DT
1286struct mapped_device *dm_get_md(dev_t dev)
1287{
1288 struct mapped_device *md = dm_find_md(dev);
1289
1290 if (md)
1291 dm_get(md);
1292
1293 return md;
1294}
1295
9ade92a9 1296void *dm_get_mdptr(struct mapped_device *md)
637842cf 1297{
9ade92a9 1298 return md->interface_ptr;
1da177e4
LT
1299}
1300
1301void dm_set_mdptr(struct mapped_device *md, void *ptr)
1302{
1303 md->interface_ptr = ptr;
1304}
1305
1306void dm_get(struct mapped_device *md)
1307{
1308 atomic_inc(&md->holders);
1309}
1310
72d94861
AK
1311const char *dm_device_name(struct mapped_device *md)
1312{
1313 return md->name;
1314}
1315EXPORT_SYMBOL_GPL(dm_device_name);
1316
1da177e4
LT
1317void dm_put(struct mapped_device *md)
1318{
1134e5ae 1319 struct dm_table *map;
1da177e4 1320
fba9f90e
JM
1321 BUG_ON(test_bit(DMF_FREEING, &md->flags));
1322
f32c10b0 1323 if (atomic_dec_and_lock(&md->holders, &_minor_lock)) {
1134e5ae 1324 map = dm_get_table(md);
f331c029
TH
1325 idr_replace(&_minor_idr, MINOR_ALLOCED,
1326 MINOR(disk_devt(dm_disk(md))));
fba9f90e 1327 set_bit(DMF_FREEING, &md->flags);
f32c10b0 1328 spin_unlock(&_minor_lock);
cf222b37 1329 if (!dm_suspended(md)) {
1da177e4
LT
1330 dm_table_presuspend_targets(map);
1331 dm_table_postsuspend_targets(map);
1332 }
1333 __unbind(md);
1134e5ae 1334 dm_table_put(map);
1da177e4
LT
1335 free_dev(md);
1336 }
1da177e4 1337}
79eb885c 1338EXPORT_SYMBOL_GPL(dm_put);
1da177e4 1339
46125c1c
MB
1340static int dm_wait_for_completion(struct mapped_device *md)
1341{
1342 int r = 0;
1343
1344 while (1) {
1345 set_current_state(TASK_INTERRUPTIBLE);
1346
1347 smp_mb();
1348 if (!atomic_read(&md->pending))
1349 break;
1350
1351 if (signal_pending(current)) {
1352 r = -EINTR;
1353 break;
1354 }
1355
1356 io_schedule();
1357 }
1358 set_current_state(TASK_RUNNING);
1359
1360 return r;
1361}
1362
1da177e4
LT
1363/*
1364 * Process the deferred bios
1365 */
6d6f10df 1366static void __flush_deferred_io(struct mapped_device *md)
1da177e4 1367{
6d6f10df 1368 struct bio *c;
1da177e4 1369
6d6f10df 1370 while ((c = bio_list_pop(&md->deferred))) {
9e4e5f87
MB
1371 if (__split_bio(md, c))
1372 bio_io_error(c);
1da177e4 1373 }
73d410c0
MB
1374
1375 clear_bit(DMF_BLOCK_IO, &md->flags);
1da177e4
LT
1376}
1377
6d6f10df
MB
1378static void __merge_pushback_list(struct mapped_device *md)
1379{
1380 unsigned long flags;
1381
1382 spin_lock_irqsave(&md->pushback_lock, flags);
1383 clear_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
1384 bio_list_merge_head(&md->deferred, &md->pushback);
1385 bio_list_init(&md->pushback);
1386 spin_unlock_irqrestore(&md->pushback_lock, flags);
1387}
1388
304f3f6a
MB
1389static void dm_wq_work(struct work_struct *work)
1390{
1391 struct dm_wq_req *req = container_of(work, struct dm_wq_req, work);
1392 struct mapped_device *md = req->md;
1393
1394 down_write(&md->io_lock);
1395 switch (req->type) {
1396 case DM_WQ_FLUSH_ALL:
1397 __merge_pushback_list(md);
1398 /* pass through */
1399 case DM_WQ_FLUSH_DEFERRED:
1400 __flush_deferred_io(md);
1401 break;
1402 default:
1403 DMERR("dm_wq_work: unrecognised work type %d", req->type);
1404 BUG();
1405 }
1406 up_write(&md->io_lock);
1407}
1408
1409static void dm_wq_queue(struct mapped_device *md, int type, void *context,
1410 struct dm_wq_req *req)
1411{
1412 req->type = type;
1413 req->md = md;
1414 req->context = context;
1415 INIT_WORK(&req->work, dm_wq_work);
1416 queue_work(md->wq, &req->work);
1417}
1418
1419static void dm_queue_flush(struct mapped_device *md, int type, void *context)
1420{
1421 struct dm_wq_req req;
1422
1423 dm_wq_queue(md, type, context, &req);
1424 flush_workqueue(md->wq);
1425}
1426
1da177e4
LT
1427/*
1428 * Swap in a new table (destroying old one).
1429 */
1430int dm_swap_table(struct mapped_device *md, struct dm_table *table)
1431{
93c534ae 1432 int r = -EINVAL;
1da177e4 1433
e61290a4 1434 mutex_lock(&md->suspend_lock);
1da177e4
LT
1435
1436 /* device must be suspended */
cf222b37 1437 if (!dm_suspended(md))
93c534ae 1438 goto out;
1da177e4 1439
bfa152fa
JN
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))
1443 goto out;
1444
1da177e4
LT
1445 __unbind(md);
1446 r = __bind(md, table);
1da177e4 1447
93c534ae 1448out:
e61290a4 1449 mutex_unlock(&md->suspend_lock);
93c534ae 1450 return r;
1da177e4
LT
1451}
1452
1453/*
1454 * Functions to lock and unlock any filesystem running on the
1455 * device.
1456 */
2ca3310e 1457static int lock_fs(struct mapped_device *md)
1da177e4 1458{
e39e2e95 1459 int r;
1da177e4
LT
1460
1461 WARN_ON(md->frozen_sb);
dfbe03f6 1462
e39e2e95 1463 md->frozen_sb = freeze_bdev(md->suspended_bdev);
dfbe03f6 1464 if (IS_ERR(md->frozen_sb)) {
cf222b37 1465 r = PTR_ERR(md->frozen_sb);
e39e2e95
AK
1466 md->frozen_sb = NULL;
1467 return r;
dfbe03f6
AK
1468 }
1469
aa8d7c2f
AK
1470 set_bit(DMF_FROZEN, &md->flags);
1471
1da177e4 1472 /* don't bdput right now, we don't want the bdev
e39e2e95 1473 * to go away while it is locked.
1da177e4
LT
1474 */
1475 return 0;
1476}
1477
2ca3310e 1478static void unlock_fs(struct mapped_device *md)
1da177e4 1479{
aa8d7c2f
AK
1480 if (!test_bit(DMF_FROZEN, &md->flags))
1481 return;
1482
e39e2e95 1483 thaw_bdev(md->suspended_bdev, md->frozen_sb);
1da177e4 1484 md->frozen_sb = NULL;
aa8d7c2f 1485 clear_bit(DMF_FROZEN, &md->flags);
1da177e4
LT
1486}
1487
1488/*
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.
1494 */
a3d77d35 1495int dm_suspend(struct mapped_device *md, unsigned suspend_flags)
1da177e4 1496{
2ca3310e 1497 struct dm_table *map = NULL;
1da177e4 1498 DECLARE_WAITQUEUE(wait, current);
46125c1c 1499 int r = 0;
a3d77d35 1500 int do_lockfs = suspend_flags & DM_SUSPEND_LOCKFS_FLAG ? 1 : 0;
2e93ccc1 1501 int noflush = suspend_flags & DM_SUSPEND_NOFLUSH_FLAG ? 1 : 0;
1da177e4 1502
e61290a4 1503 mutex_lock(&md->suspend_lock);
2ca3310e 1504
73d410c0
MB
1505 if (dm_suspended(md)) {
1506 r = -EINVAL;
d287483d 1507 goto out_unlock;
73d410c0 1508 }
1da177e4
LT
1509
1510 map = dm_get_table(md);
1da177e4 1511
2e93ccc1
KU
1512 /*
1513 * DMF_NOFLUSH_SUSPENDING must be set before presuspend.
1514 * This flag is cleared before dm_suspend returns.
1515 */
1516 if (noflush)
1517 set_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
1518
cf222b37
AK
1519 /* This does not get reverted if there's an error later. */
1520 dm_table_presuspend_targets(map);
1521
bfa152fa
JN
1522 /* bdget() can stall if the pending I/Os are not flushed */
1523 if (!noflush) {
1524 md->suspended_bdev = bdget_disk(md->disk, 0);
1525 if (!md->suspended_bdev) {
1526 DMWARN("bdget failed in dm_suspend");
1527 r = -ENOMEM;
1528 goto flush_and_out;
1529 }
e39e2e95 1530
6d6f10df
MB
1531 /*
1532 * Flush I/O to the device. noflush supersedes do_lockfs,
1533 * because lock_fs() needs to flush I/Os.
1534 */
1535 if (do_lockfs) {
1536 r = lock_fs(md);
1537 if (r)
1538 goto out;
1539 }
aa8d7c2f 1540 }
1da177e4
LT
1541
1542 /*
354e0071 1543 * First we set the BLOCK_IO flag so no more ios will be mapped.
1da177e4 1544 */
2ca3310e
AK
1545 down_write(&md->io_lock);
1546 set_bit(DMF_BLOCK_IO, &md->flags);
1da177e4 1547
1da177e4 1548 add_wait_queue(&md->wait, &wait);
2ca3310e 1549 up_write(&md->io_lock);
1da177e4
LT
1550
1551 /* unplug */
2ca3310e 1552 if (map)
1da177e4 1553 dm_table_unplug_all(map);
1da177e4
LT
1554
1555 /*
46125c1c 1556 * Wait for the already-mapped ios to complete.
1da177e4 1557 */
46125c1c 1558 r = dm_wait_for_completion(md);
1da177e4 1559
2ca3310e 1560 down_write(&md->io_lock);
1da177e4
LT
1561 remove_wait_queue(&md->wait, &wait);
1562
6d6f10df
MB
1563 if (noflush)
1564 __merge_pushback_list(md);
94d6351e 1565 up_write(&md->io_lock);
2e93ccc1 1566
1da177e4 1567 /* were we interrupted ? */
46125c1c 1568 if (r < 0) {
304f3f6a 1569 dm_queue_flush(md, DM_WQ_FLUSH_DEFERRED, NULL);
73d410c0 1570
2ca3310e 1571 unlock_fs(md);
2e93ccc1 1572 goto out; /* pushback list is already flushed, so skip flush */
2ca3310e 1573 }
1da177e4 1574
cf222b37 1575 dm_table_postsuspend_targets(map);
1da177e4 1576
2ca3310e 1577 set_bit(DMF_SUSPENDED, &md->flags);
b84b0287 1578
2e93ccc1 1579flush_and_out:
304f3f6a 1580 if (r && noflush)
2e93ccc1
KU
1581 /*
1582 * Because there may be already I/Os in the pushback list,
1583 * flush them before return.
1584 */
304f3f6a 1585 dm_queue_flush(md, DM_WQ_FLUSH_ALL, NULL);
2e93ccc1 1586
2ca3310e 1587out:
e39e2e95
AK
1588 if (r && md->suspended_bdev) {
1589 bdput(md->suspended_bdev);
1590 md->suspended_bdev = NULL;
1591 }
1592
2ca3310e 1593 dm_table_put(map);
d287483d
AK
1594
1595out_unlock:
e61290a4 1596 mutex_unlock(&md->suspend_lock);
cf222b37 1597 return r;
1da177e4
LT
1598}
1599
1600int dm_resume(struct mapped_device *md)
1601{
cf222b37 1602 int r = -EINVAL;
cf222b37 1603 struct dm_table *map = NULL;
1da177e4 1604
e61290a4 1605 mutex_lock(&md->suspend_lock);
2ca3310e 1606 if (!dm_suspended(md))
cf222b37 1607 goto out;
cf222b37
AK
1608
1609 map = dm_get_table(md);
2ca3310e 1610 if (!map || !dm_table_get_size(map))
cf222b37 1611 goto out;
1da177e4 1612
8757b776
MB
1613 r = dm_table_resume_targets(map);
1614 if (r)
1615 goto out;
2ca3310e 1616
304f3f6a 1617 dm_queue_flush(md, DM_WQ_FLUSH_DEFERRED, NULL);
2ca3310e
AK
1618
1619 unlock_fs(md);
1620
bfa152fa
JN
1621 if (md->suspended_bdev) {
1622 bdput(md->suspended_bdev);
1623 md->suspended_bdev = NULL;
1624 }
e39e2e95 1625
2ca3310e
AK
1626 clear_bit(DMF_SUSPENDED, &md->flags);
1627
1da177e4 1628 dm_table_unplug_all(map);
1da177e4 1629
69267a30 1630 dm_kobject_uevent(md);
8560ed6f 1631
cf222b37 1632 r = 0;
2ca3310e 1633
cf222b37
AK
1634out:
1635 dm_table_put(map);
e61290a4 1636 mutex_unlock(&md->suspend_lock);
2ca3310e 1637
cf222b37 1638 return r;
1da177e4
LT
1639}
1640
1641/*-----------------------------------------------------------------
1642 * Event notification.
1643 *---------------------------------------------------------------*/
69267a30
AK
1644void dm_kobject_uevent(struct mapped_device *md)
1645{
ed9e1982 1646 kobject_uevent(&disk_to_dev(md->disk)->kobj, KOBJ_CHANGE);
69267a30
AK
1647}
1648
7a8c3d3b
MA
1649uint32_t dm_next_uevent_seq(struct mapped_device *md)
1650{
1651 return atomic_add_return(1, &md->uevent_seq);
1652}
1653
1da177e4
LT
1654uint32_t dm_get_event_nr(struct mapped_device *md)
1655{
1656 return atomic_read(&md->event_nr);
1657}
1658
1659int dm_wait_event(struct mapped_device *md, int event_nr)
1660{
1661 return wait_event_interruptible(md->eventq,
1662 (event_nr != atomic_read(&md->event_nr)));
1663}
1664
7a8c3d3b
MA
1665void dm_uevent_add(struct mapped_device *md, struct list_head *elist)
1666{
1667 unsigned long flags;
1668
1669 spin_lock_irqsave(&md->uevent_lock, flags);
1670 list_add(elist, &md->uevent_list);
1671 spin_unlock_irqrestore(&md->uevent_lock, flags);
1672}
1673
1da177e4
LT
1674/*
1675 * The gendisk is only valid as long as you have a reference
1676 * count on 'md'.
1677 */
1678struct gendisk *dm_disk(struct mapped_device *md)
1679{
1680 return md->disk;
1681}
1682
1683int dm_suspended(struct mapped_device *md)
1684{
1685 return test_bit(DMF_SUSPENDED, &md->flags);
1686}
1687
2e93ccc1
KU
1688int dm_noflush_suspending(struct dm_target *ti)
1689{
1690 struct mapped_device *md = dm_table_get_md(ti->table);
1691 int r = __noflush_suspending(md);
1692
1693 dm_put(md);
1694
1695 return r;
1696}
1697EXPORT_SYMBOL_GPL(dm_noflush_suspending);
1698
1da177e4
LT
1699static struct block_device_operations dm_blk_dops = {
1700 .open = dm_blk_open,
1701 .release = dm_blk_close,
aa129a22 1702 .ioctl = dm_blk_ioctl,
3ac51e74 1703 .getgeo = dm_blk_getgeo,
1da177e4
LT
1704 .owner = THIS_MODULE
1705};
1706
1707EXPORT_SYMBOL(dm_get_mapinfo);
1708
1709/*
1710 * module hooks
1711 */
1712module_init(dm_init);
1713module_exit(dm_exit);
1714
1715module_param(major, uint, 0);
1716MODULE_PARM_DESC(major, "The major number of the device mapper");
1717MODULE_DESCRIPTION(DM_NAME " driver");
1718MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
1719MODULE_LICENSE("GPL");
This page took 0.584706 seconds and 5 git commands to generate.