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