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