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