dm: move dm_end_request
[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
60935eb2
MB
27/*
28 * Cookies are numeric values sent with CHANGE and REMOVE
29 * uevents while resuming, removing or renaming the device.
30 */
31#define DM_COOKIE_ENV_VAR_NAME "DM_COOKIE"
32#define DM_COOKIE_LENGTH 24
33
1da177e4
LT
34static const char *_name = DM_NAME;
35
36static unsigned int major = 0;
37static unsigned int _major = 0;
38
f32c10b0 39static DEFINE_SPINLOCK(_minor_lock);
1da177e4 40/*
8fbf26ad 41 * For bio-based dm.
1da177e4
LT
42 * One of these is allocated per bio.
43 */
44struct dm_io {
45 struct mapped_device *md;
46 int error;
1da177e4 47 atomic_t io_count;
6ae2fa67 48 struct bio *bio;
3eaf840e 49 unsigned long start_time;
f88fb981 50 spinlock_t endio_lock;
1da177e4
LT
51};
52
53/*
8fbf26ad 54 * For bio-based dm.
1da177e4
LT
55 * One of these is allocated per target within a bio. Hopefully
56 * this will be simplified out one day.
57 */
028867ac 58struct dm_target_io {
1da177e4
LT
59 struct dm_io *io;
60 struct dm_target *ti;
61 union map_info info;
62};
63
8fbf26ad
KU
64/*
65 * For request-based dm.
66 * One of these is allocated per request.
67 */
68struct dm_rq_target_io {
69 struct mapped_device *md;
70 struct dm_target *ti;
71 struct request *orig, clone;
72 int error;
73 union map_info info;
74};
75
76/*
77 * For request-based dm.
78 * One of these is allocated per bio.
79 */
80struct dm_rq_clone_bio_info {
81 struct bio *orig;
cec47e3d 82 struct dm_rq_target_io *tio;
8fbf26ad
KU
83};
84
1da177e4
LT
85union map_info *dm_get_mapinfo(struct bio *bio)
86{
17b2f66f 87 if (bio && bio->bi_private)
028867ac 88 return &((struct dm_target_io *)bio->bi_private)->info;
17b2f66f 89 return NULL;
1da177e4
LT
90}
91
cec47e3d
KU
92union map_info *dm_get_rq_mapinfo(struct request *rq)
93{
94 if (rq && rq->end_io_data)
95 return &((struct dm_rq_target_io *)rq->end_io_data)->info;
96 return NULL;
97}
98EXPORT_SYMBOL_GPL(dm_get_rq_mapinfo);
99
ba61fdd1
JM
100#define MINOR_ALLOCED ((void *)-1)
101
1da177e4
LT
102/*
103 * Bits for the md->flags field.
104 */
1eb787ec 105#define DMF_BLOCK_IO_FOR_SUSPEND 0
1da177e4 106#define DMF_SUSPENDED 1
aa8d7c2f 107#define DMF_FROZEN 2
fba9f90e 108#define DMF_FREEING 3
5c6bd75d 109#define DMF_DELETING 4
2e93ccc1 110#define DMF_NOFLUSH_SUSPENDING 5
1eb787ec 111#define DMF_QUEUE_IO_TO_THREAD 6
1da177e4 112
304f3f6a
MB
113/*
114 * Work processed by per-device workqueue.
115 */
1da177e4 116struct mapped_device {
2ca3310e 117 struct rw_semaphore io_lock;
e61290a4 118 struct mutex suspend_lock;
1da177e4
LT
119 rwlock_t map_lock;
120 atomic_t holders;
5c6bd75d 121 atomic_t open_count;
1da177e4
LT
122
123 unsigned long flags;
124
165125e1 125 struct request_queue *queue;
1da177e4 126 struct gendisk *disk;
7e51f257 127 char name[16];
1da177e4
LT
128
129 void *interface_ptr;
130
131 /*
132 * A list of ios that arrived while we were suspended.
133 */
316d315b 134 atomic_t pending[2];
1da177e4 135 wait_queue_head_t wait;
53d5914f 136 struct work_struct work;
74859364 137 struct bio_list deferred;
022c2611 138 spinlock_t deferred_lock;
1da177e4 139
af7e466a
MP
140 /*
141 * An error from the barrier request currently being processed.
142 */
143 int barrier_error;
144
304f3f6a
MB
145 /*
146 * Processing queue (flush/barriers)
147 */
148 struct workqueue_struct *wq;
149
1da177e4
LT
150 /*
151 * The current mapping.
152 */
153 struct dm_table *map;
154
155 /*
156 * io objects are allocated from here.
157 */
158 mempool_t *io_pool;
159 mempool_t *tio_pool;
160
9faf400f
SB
161 struct bio_set *bs;
162
1da177e4
LT
163 /*
164 * Event handling.
165 */
166 atomic_t event_nr;
167 wait_queue_head_t eventq;
7a8c3d3b
MA
168 atomic_t uevent_seq;
169 struct list_head uevent_list;
170 spinlock_t uevent_lock; /* Protect access to uevent_list */
1da177e4
LT
171
172 /*
173 * freeze/thaw support require holding onto a super block
174 */
175 struct super_block *frozen_sb;
db8fef4f 176 struct block_device *bdev;
3ac51e74
DW
177
178 /* forced geometry settings */
179 struct hd_geometry geometry;
784aae73 180
cec47e3d
KU
181 /* For saving the address of __make_request for request based dm */
182 make_request_fn *saved_make_request_fn;
183
784aae73
MB
184 /* sysfs handle */
185 struct kobject kobj;
52b1fd5a
MP
186
187 /* zero-length barrier that will be cloned and submitted to targets */
188 struct bio barrier_bio;
1da177e4
LT
189};
190
e6ee8c0b
KU
191/*
192 * For mempools pre-allocation at the table loading time.
193 */
194struct dm_md_mempools {
195 mempool_t *io_pool;
196 mempool_t *tio_pool;
197 struct bio_set *bs;
198};
199
1da177e4 200#define MIN_IOS 256
e18b890b
CL
201static struct kmem_cache *_io_cache;
202static struct kmem_cache *_tio_cache;
8fbf26ad
KU
203static struct kmem_cache *_rq_tio_cache;
204static struct kmem_cache *_rq_bio_info_cache;
1da177e4 205
1da177e4
LT
206static int __init local_init(void)
207{
51157b4a 208 int r = -ENOMEM;
1da177e4 209
1da177e4 210 /* allocate a slab for the dm_ios */
028867ac 211 _io_cache = KMEM_CACHE(dm_io, 0);
1da177e4 212 if (!_io_cache)
51157b4a 213 return r;
1da177e4
LT
214
215 /* allocate a slab for the target ios */
028867ac 216 _tio_cache = KMEM_CACHE(dm_target_io, 0);
51157b4a
KU
217 if (!_tio_cache)
218 goto out_free_io_cache;
1da177e4 219
8fbf26ad
KU
220 _rq_tio_cache = KMEM_CACHE(dm_rq_target_io, 0);
221 if (!_rq_tio_cache)
222 goto out_free_tio_cache;
223
224 _rq_bio_info_cache = KMEM_CACHE(dm_rq_clone_bio_info, 0);
225 if (!_rq_bio_info_cache)
226 goto out_free_rq_tio_cache;
227
51e5b2bd 228 r = dm_uevent_init();
51157b4a 229 if (r)
8fbf26ad 230 goto out_free_rq_bio_info_cache;
51e5b2bd 231
1da177e4
LT
232 _major = major;
233 r = register_blkdev(_major, _name);
51157b4a
KU
234 if (r < 0)
235 goto out_uevent_exit;
1da177e4
LT
236
237 if (!_major)
238 _major = r;
239
240 return 0;
51157b4a
KU
241
242out_uevent_exit:
243 dm_uevent_exit();
8fbf26ad
KU
244out_free_rq_bio_info_cache:
245 kmem_cache_destroy(_rq_bio_info_cache);
246out_free_rq_tio_cache:
247 kmem_cache_destroy(_rq_tio_cache);
51157b4a
KU
248out_free_tio_cache:
249 kmem_cache_destroy(_tio_cache);
250out_free_io_cache:
251 kmem_cache_destroy(_io_cache);
252
253 return r;
1da177e4
LT
254}
255
256static void local_exit(void)
257{
8fbf26ad
KU
258 kmem_cache_destroy(_rq_bio_info_cache);
259 kmem_cache_destroy(_rq_tio_cache);
1da177e4
LT
260 kmem_cache_destroy(_tio_cache);
261 kmem_cache_destroy(_io_cache);
00d59405 262 unregister_blkdev(_major, _name);
51e5b2bd 263 dm_uevent_exit();
1da177e4
LT
264
265 _major = 0;
266
267 DMINFO("cleaned up");
268}
269
b9249e55 270static int (*_inits[])(void) __initdata = {
1da177e4
LT
271 local_init,
272 dm_target_init,
273 dm_linear_init,
274 dm_stripe_init,
952b3557 275 dm_io_init,
945fa4d2 276 dm_kcopyd_init,
1da177e4
LT
277 dm_interface_init,
278};
279
b9249e55 280static void (*_exits[])(void) = {
1da177e4
LT
281 local_exit,
282 dm_target_exit,
283 dm_linear_exit,
284 dm_stripe_exit,
952b3557 285 dm_io_exit,
945fa4d2 286 dm_kcopyd_exit,
1da177e4
LT
287 dm_interface_exit,
288};
289
290static int __init dm_init(void)
291{
292 const int count = ARRAY_SIZE(_inits);
293
294 int r, i;
295
296 for (i = 0; i < count; i++) {
297 r = _inits[i]();
298 if (r)
299 goto bad;
300 }
301
302 return 0;
303
304 bad:
305 while (i--)
306 _exits[i]();
307
308 return r;
309}
310
311static void __exit dm_exit(void)
312{
313 int i = ARRAY_SIZE(_exits);
314
315 while (i--)
316 _exits[i]();
317}
318
319/*
320 * Block device functions
321 */
fe5f9f2c 322static int dm_blk_open(struct block_device *bdev, fmode_t mode)
1da177e4
LT
323{
324 struct mapped_device *md;
325
fba9f90e
JM
326 spin_lock(&_minor_lock);
327
fe5f9f2c 328 md = bdev->bd_disk->private_data;
fba9f90e
JM
329 if (!md)
330 goto out;
331
5c6bd75d
AK
332 if (test_bit(DMF_FREEING, &md->flags) ||
333 test_bit(DMF_DELETING, &md->flags)) {
fba9f90e
JM
334 md = NULL;
335 goto out;
336 }
337
1da177e4 338 dm_get(md);
5c6bd75d 339 atomic_inc(&md->open_count);
fba9f90e
JM
340
341out:
342 spin_unlock(&_minor_lock);
343
344 return md ? 0 : -ENXIO;
1da177e4
LT
345}
346
fe5f9f2c 347static int dm_blk_close(struct gendisk *disk, fmode_t mode)
1da177e4 348{
fe5f9f2c 349 struct mapped_device *md = disk->private_data;
5c6bd75d 350 atomic_dec(&md->open_count);
1da177e4
LT
351 dm_put(md);
352 return 0;
353}
354
5c6bd75d
AK
355int dm_open_count(struct mapped_device *md)
356{
357 return atomic_read(&md->open_count);
358}
359
360/*
361 * Guarantees nothing is using the device before it's deleted.
362 */
363int dm_lock_for_deletion(struct mapped_device *md)
364{
365 int r = 0;
366
367 spin_lock(&_minor_lock);
368
369 if (dm_open_count(md))
370 r = -EBUSY;
371 else
372 set_bit(DMF_DELETING, &md->flags);
373
374 spin_unlock(&_minor_lock);
375
376 return r;
377}
378
3ac51e74
DW
379static int dm_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
380{
381 struct mapped_device *md = bdev->bd_disk->private_data;
382
383 return dm_get_geometry(md, geo);
384}
385
fe5f9f2c 386static int dm_blk_ioctl(struct block_device *bdev, fmode_t mode,
aa129a22
MB
387 unsigned int cmd, unsigned long arg)
388{
fe5f9f2c
AV
389 struct mapped_device *md = bdev->bd_disk->private_data;
390 struct dm_table *map = dm_get_table(md);
aa129a22
MB
391 struct dm_target *tgt;
392 int r = -ENOTTY;
393
aa129a22
MB
394 if (!map || !dm_table_get_size(map))
395 goto out;
396
397 /* We only support devices that have a single target */
398 if (dm_table_get_num_targets(map) != 1)
399 goto out;
400
401 tgt = dm_table_get_target(map, 0);
402
403 if (dm_suspended(md)) {
404 r = -EAGAIN;
405 goto out;
406 }
407
408 if (tgt->type->ioctl)
647b3d00 409 r = tgt->type->ioctl(tgt, cmd, arg);
aa129a22
MB
410
411out:
412 dm_table_put(map);
413
aa129a22
MB
414 return r;
415}
416
028867ac 417static struct dm_io *alloc_io(struct mapped_device *md)
1da177e4
LT
418{
419 return mempool_alloc(md->io_pool, GFP_NOIO);
420}
421
028867ac 422static void free_io(struct mapped_device *md, struct dm_io *io)
1da177e4
LT
423{
424 mempool_free(io, md->io_pool);
425}
426
028867ac 427static void free_tio(struct mapped_device *md, struct dm_target_io *tio)
1da177e4
LT
428{
429 mempool_free(tio, md->tio_pool);
430}
431
08885643
KU
432static struct dm_rq_target_io *alloc_rq_tio(struct mapped_device *md,
433 gfp_t gfp_mask)
cec47e3d 434{
08885643 435 return mempool_alloc(md->tio_pool, gfp_mask);
cec47e3d
KU
436}
437
438static void free_rq_tio(struct dm_rq_target_io *tio)
439{
440 mempool_free(tio, tio->md->tio_pool);
441}
442
443static struct dm_rq_clone_bio_info *alloc_bio_info(struct mapped_device *md)
444{
445 return mempool_alloc(md->io_pool, GFP_ATOMIC);
446}
447
448static void free_bio_info(struct dm_rq_clone_bio_info *info)
449{
450 mempool_free(info, info->tio->md->io_pool);
451}
452
90abb8c4
KU
453static int md_in_flight(struct mapped_device *md)
454{
455 return atomic_read(&md->pending[READ]) +
456 atomic_read(&md->pending[WRITE]);
457}
458
3eaf840e
JNN
459static void start_io_acct(struct dm_io *io)
460{
461 struct mapped_device *md = io->md;
c9959059 462 int cpu;
316d315b 463 int rw = bio_data_dir(io->bio);
3eaf840e
JNN
464
465 io->start_time = jiffies;
466
074a7aca
TH
467 cpu = part_stat_lock();
468 part_round_stats(cpu, &dm_disk(md)->part0);
469 part_stat_unlock();
316d315b 470 dm_disk(md)->part0.in_flight[rw] = atomic_inc_return(&md->pending[rw]);
3eaf840e
JNN
471}
472
d221d2e7 473static void end_io_acct(struct dm_io *io)
3eaf840e
JNN
474{
475 struct mapped_device *md = io->md;
476 struct bio *bio = io->bio;
477 unsigned long duration = jiffies - io->start_time;
c9959059 478 int pending, cpu;
3eaf840e
JNN
479 int rw = bio_data_dir(bio);
480
074a7aca
TH
481 cpu = part_stat_lock();
482 part_round_stats(cpu, &dm_disk(md)->part0);
483 part_stat_add(cpu, &dm_disk(md)->part0, ticks[rw], duration);
484 part_stat_unlock();
3eaf840e 485
af7e466a
MP
486 /*
487 * After this is decremented the bio must not be touched if it is
488 * a barrier.
489 */
316d315b
NK
490 dm_disk(md)->part0.in_flight[rw] = pending =
491 atomic_dec_return(&md->pending[rw]);
492 pending += atomic_read(&md->pending[rw^0x1]);
3eaf840e 493
d221d2e7
MP
494 /* nudge anyone waiting on suspend queue */
495 if (!pending)
496 wake_up(&md->wait);
3eaf840e
JNN
497}
498
1da177e4
LT
499/*
500 * Add the bio to the list of deferred io.
501 */
92c63902 502static void queue_io(struct mapped_device *md, struct bio *bio)
1da177e4 503{
2ca3310e 504 down_write(&md->io_lock);
1da177e4 505
022c2611 506 spin_lock_irq(&md->deferred_lock);
1da177e4 507 bio_list_add(&md->deferred, bio);
022c2611 508 spin_unlock_irq(&md->deferred_lock);
1da177e4 509
92c63902
MP
510 if (!test_and_set_bit(DMF_QUEUE_IO_TO_THREAD, &md->flags))
511 queue_work(md->wq, &md->work);
512
2ca3310e 513 up_write(&md->io_lock);
1da177e4
LT
514}
515
516/*
517 * Everyone (including functions in this file), should use this
518 * function to access the md->map field, and make sure they call
519 * dm_table_put() when finished.
520 */
521struct dm_table *dm_get_table(struct mapped_device *md)
522{
523 struct dm_table *t;
523d9297 524 unsigned long flags;
1da177e4 525
523d9297 526 read_lock_irqsave(&md->map_lock, flags);
1da177e4
LT
527 t = md->map;
528 if (t)
529 dm_table_get(t);
523d9297 530 read_unlock_irqrestore(&md->map_lock, flags);
1da177e4
LT
531
532 return t;
533}
534
3ac51e74
DW
535/*
536 * Get the geometry associated with a dm device
537 */
538int dm_get_geometry(struct mapped_device *md, struct hd_geometry *geo)
539{
540 *geo = md->geometry;
541
542 return 0;
543}
544
545/*
546 * Set the geometry of a device.
547 */
548int dm_set_geometry(struct mapped_device *md, struct hd_geometry *geo)
549{
550 sector_t sz = (sector_t)geo->cylinders * geo->heads * geo->sectors;
551
552 if (geo->start > sz) {
553 DMWARN("Start sector is beyond the geometry limits.");
554 return -EINVAL;
555 }
556
557 md->geometry = *geo;
558
559 return 0;
560}
561
1da177e4
LT
562/*-----------------------------------------------------------------
563 * CRUD START:
564 * A more elegant soln is in the works that uses the queue
565 * merge fn, unfortunately there are a couple of changes to
566 * the block layer that I want to make for this. So in the
567 * interests of getting something for people to use I give
568 * you this clearly demarcated crap.
569 *---------------------------------------------------------------*/
570
2e93ccc1
KU
571static int __noflush_suspending(struct mapped_device *md)
572{
573 return test_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
574}
575
1da177e4
LT
576/*
577 * Decrements the number of outstanding ios that a bio has been
578 * cloned into, completing the original io if necc.
579 */
858119e1 580static void dec_pending(struct dm_io *io, int error)
1da177e4 581{
2e93ccc1 582 unsigned long flags;
b35f8caa
MB
583 int io_error;
584 struct bio *bio;
585 struct mapped_device *md = io->md;
2e93ccc1
KU
586
587 /* Push-back supersedes any I/O errors */
f88fb981
KU
588 if (unlikely(error)) {
589 spin_lock_irqsave(&io->endio_lock, flags);
590 if (!(io->error > 0 && __noflush_suspending(md)))
591 io->error = error;
592 spin_unlock_irqrestore(&io->endio_lock, flags);
593 }
1da177e4
LT
594
595 if (atomic_dec_and_test(&io->io_count)) {
2e93ccc1
KU
596 if (io->error == DM_ENDIO_REQUEUE) {
597 /*
598 * Target requested pushing back the I/O.
2e93ccc1 599 */
022c2611 600 spin_lock_irqsave(&md->deferred_lock, flags);
2761e95f 601 if (__noflush_suspending(md)) {
1f98a13f 602 if (!bio_rw_flagged(io->bio, BIO_RW_BARRIER))
2761e95f
MP
603 bio_list_add_head(&md->deferred,
604 io->bio);
605 } else
2e93ccc1
KU
606 /* noflush suspend was interrupted. */
607 io->error = -EIO;
022c2611 608 spin_unlock_irqrestore(&md->deferred_lock, flags);
2e93ccc1
KU
609 }
610
b35f8caa
MB
611 io_error = io->error;
612 bio = io->bio;
2e93ccc1 613
1f98a13f 614 if (bio_rw_flagged(bio, BIO_RW_BARRIER)) {
af7e466a
MP
615 /*
616 * There can be just one barrier request so we use
617 * a per-device variable for error reporting.
618 * Note that you can't touch the bio after end_io_acct
619 */
fdb9572b 620 if (!md->barrier_error && io_error != -EOPNOTSUPP)
5aa2781d 621 md->barrier_error = io_error;
af7e466a
MP
622 end_io_acct(io);
623 } else {
624 end_io_acct(io);
b35f8caa 625
af7e466a
MP
626 if (io_error != DM_ENDIO_REQUEUE) {
627 trace_block_bio_complete(md->queue, bio);
2056a782 628
af7e466a
MP
629 bio_endio(bio, io_error);
630 }
b35f8caa 631 }
af7e466a
MP
632
633 free_io(md, io);
1da177e4
LT
634 }
635}
636
6712ecf8 637static void clone_endio(struct bio *bio, int error)
1da177e4
LT
638{
639 int r = 0;
028867ac 640 struct dm_target_io *tio = bio->bi_private;
b35f8caa 641 struct dm_io *io = tio->io;
9faf400f 642 struct mapped_device *md = tio->io->md;
1da177e4
LT
643 dm_endio_fn endio = tio->ti->type->end_io;
644
1da177e4
LT
645 if (!bio_flagged(bio, BIO_UPTODATE) && !error)
646 error = -EIO;
647
648 if (endio) {
649 r = endio(tio->ti, bio, error, &tio->info);
2e93ccc1
KU
650 if (r < 0 || r == DM_ENDIO_REQUEUE)
651 /*
652 * error and requeue request are handled
653 * in dec_pending().
654 */
1da177e4 655 error = r;
45cbcd79
KU
656 else if (r == DM_ENDIO_INCOMPLETE)
657 /* The target will handle the io */
6712ecf8 658 return;
45cbcd79
KU
659 else if (r) {
660 DMWARN("unimplemented target endio return value: %d", r);
661 BUG();
662 }
1da177e4
LT
663 }
664
9faf400f
SB
665 /*
666 * Store md for cleanup instead of tio which is about to get freed.
667 */
668 bio->bi_private = md->bs;
669
9faf400f 670 free_tio(md, tio);
b35f8caa
MB
671 bio_put(bio);
672 dec_pending(io, error);
1da177e4
LT
673}
674
cec47e3d
KU
675/*
676 * Partial completion handling for request-based dm
677 */
678static void end_clone_bio(struct bio *clone, int error)
679{
680 struct dm_rq_clone_bio_info *info = clone->bi_private;
681 struct dm_rq_target_io *tio = info->tio;
682 struct bio *bio = info->orig;
683 unsigned int nr_bytes = info->orig->bi_size;
684
685 bio_put(clone);
686
687 if (tio->error)
688 /*
689 * An error has already been detected on the request.
690 * Once error occurred, just let clone->end_io() handle
691 * the remainder.
692 */
693 return;
694 else if (error) {
695 /*
696 * Don't notice the error to the upper layer yet.
697 * The error handling decision is made by the target driver,
698 * when the request is completed.
699 */
700 tio->error = error;
701 return;
702 }
703
704 /*
705 * I/O for the bio successfully completed.
706 * Notice the data completion to the upper layer.
707 */
708
709 /*
710 * bios are processed from the head of the list.
711 * So the completing bio should always be rq->bio.
712 * If it's not, something wrong is happening.
713 */
714 if (tio->orig->bio != bio)
715 DMERR("bio completion is going in the middle of the request");
716
717 /*
718 * Update the original request.
719 * Do not use blk_end_request() here, because it may complete
720 * the original request before the clone, and break the ordering.
721 */
722 blk_update_request(tio->orig, 0, nr_bytes);
723}
724
725/*
726 * Don't touch any member of the md after calling this function because
727 * the md may be freed in dm_put() at the end of this function.
728 * Or do dm_get() before calling this function and dm_put() later.
729 */
b4324fee 730static void rq_completed(struct mapped_device *md, int rw, int run_queue)
cec47e3d 731{
b4324fee 732 atomic_dec(&md->pending[rw]);
cec47e3d
KU
733
734 /* nudge anyone waiting on suspend queue */
b4324fee 735 if (!md_in_flight(md))
cec47e3d
KU
736 wake_up(&md->wait);
737
738 if (run_queue)
b4324fee 739 blk_run_queue(md->queue);
cec47e3d
KU
740
741 /*
742 * dm_put() must be at the end of this function. See the comment above
743 */
744 dm_put(md);
745}
746
a77e28c7
KU
747static void free_rq_clone(struct request *clone)
748{
749 struct dm_rq_target_io *tio = clone->end_io_data;
750
751 blk_rq_unprep_clone(clone);
752 free_rq_tio(tio);
753}
754
980691e5
KU
755/*
756 * Complete the clone and the original request.
757 * Must be called without queue lock.
758 */
759static void dm_end_request(struct request *clone, int error)
760{
761 int rw = rq_data_dir(clone);
762 struct dm_rq_target_io *tio = clone->end_io_data;
763 struct mapped_device *md = tio->md;
764 struct request *rq = tio->orig;
765
766 if (blk_pc_request(rq)) {
767 rq->errors = clone->errors;
768 rq->resid_len = clone->resid_len;
769
770 if (rq->sense)
771 /*
772 * We are using the sense buffer of the original
773 * request.
774 * So setting the length of the sense data is enough.
775 */
776 rq->sense_len = clone->sense_len;
777 }
778
779 free_rq_clone(clone);
780
781 blk_end_request_all(rq, error);
782
783 rq_completed(md, rw, 1);
784}
785
cec47e3d
KU
786static void dm_unprep_request(struct request *rq)
787{
788 struct request *clone = rq->special;
cec47e3d
KU
789
790 rq->special = NULL;
791 rq->cmd_flags &= ~REQ_DONTPREP;
792
a77e28c7 793 free_rq_clone(clone);
cec47e3d
KU
794}
795
796/*
797 * Requeue the original request of a clone.
798 */
799void dm_requeue_unmapped_request(struct request *clone)
800{
b4324fee 801 int rw = rq_data_dir(clone);
cec47e3d
KU
802 struct dm_rq_target_io *tio = clone->end_io_data;
803 struct mapped_device *md = tio->md;
804 struct request *rq = tio->orig;
805 struct request_queue *q = rq->q;
806 unsigned long flags;
807
808 dm_unprep_request(rq);
809
810 spin_lock_irqsave(q->queue_lock, flags);
811 if (elv_queue_empty(q))
812 blk_plug_device(q);
813 blk_requeue_request(q, rq);
814 spin_unlock_irqrestore(q->queue_lock, flags);
815
b4324fee 816 rq_completed(md, rw, 0);
cec47e3d
KU
817}
818EXPORT_SYMBOL_GPL(dm_requeue_unmapped_request);
819
820static void __stop_queue(struct request_queue *q)
821{
822 blk_stop_queue(q);
823}
824
825static void stop_queue(struct request_queue *q)
826{
827 unsigned long flags;
828
829 spin_lock_irqsave(q->queue_lock, flags);
830 __stop_queue(q);
831 spin_unlock_irqrestore(q->queue_lock, flags);
832}
833
834static void __start_queue(struct request_queue *q)
835{
836 if (blk_queue_stopped(q))
837 blk_start_queue(q);
838}
839
840static void start_queue(struct request_queue *q)
841{
842 unsigned long flags;
843
844 spin_lock_irqsave(q->queue_lock, flags);
845 __start_queue(q);
846 spin_unlock_irqrestore(q->queue_lock, flags);
847}
848
11a68244 849static void dm_done(struct request *clone, int error, bool mapped)
cec47e3d 850{
11a68244 851 int r = error;
cec47e3d
KU
852 struct dm_rq_target_io *tio = clone->end_io_data;
853 dm_request_endio_fn rq_end_io = tio->ti->type->rq_end_io;
cec47e3d 854
11a68244
KU
855 if (mapped && rq_end_io)
856 r = rq_end_io(tio->ti, clone, error, &tio->info);
cec47e3d 857
11a68244 858 if (r <= 0)
cec47e3d 859 /* The target wants to complete the I/O */
11a68244
KU
860 dm_end_request(clone, r);
861 else if (r == DM_ENDIO_INCOMPLETE)
cec47e3d
KU
862 /* The target will handle the I/O */
863 return;
11a68244 864 else if (r == DM_ENDIO_REQUEUE)
cec47e3d
KU
865 /* The target wants to requeue the I/O */
866 dm_requeue_unmapped_request(clone);
867 else {
11a68244 868 DMWARN("unimplemented target endio return value: %d", r);
cec47e3d
KU
869 BUG();
870 }
871}
872
11a68244
KU
873/*
874 * Request completion handler for request-based dm
875 */
876static void dm_softirq_done(struct request *rq)
877{
878 bool mapped = true;
879 struct request *clone = rq->completion_data;
880 struct dm_rq_target_io *tio = clone->end_io_data;
881
882 if (rq->cmd_flags & REQ_FAILED)
883 mapped = false;
884
885 dm_done(clone, tio->error, mapped);
886}
887
cec47e3d
KU
888/*
889 * Complete the clone and the original request with the error status
890 * through softirq context.
891 */
892static void dm_complete_request(struct request *clone, int error)
893{
894 struct dm_rq_target_io *tio = clone->end_io_data;
895 struct request *rq = tio->orig;
896
897 tio->error = error;
898 rq->completion_data = clone;
899 blk_complete_request(rq);
900}
901
902/*
903 * Complete the not-mapped clone and the original request with the error status
904 * through softirq context.
905 * Target's rq_end_io() function isn't called.
906 * This may be used when the target's map_rq() function fails.
907 */
908void dm_kill_unmapped_request(struct request *clone, int error)
909{
910 struct dm_rq_target_io *tio = clone->end_io_data;
911 struct request *rq = tio->orig;
912
913 rq->cmd_flags |= REQ_FAILED;
914 dm_complete_request(clone, error);
915}
916EXPORT_SYMBOL_GPL(dm_kill_unmapped_request);
917
918/*
919 * Called with the queue lock held
920 */
921static void end_clone_request(struct request *clone, int error)
922{
923 /*
924 * For just cleaning up the information of the queue in which
925 * the clone was dispatched.
926 * The clone is *NOT* freed actually here because it is alloced from
927 * dm own mempool and REQ_ALLOCED isn't set in clone->cmd_flags.
928 */
929 __blk_put_request(clone->q, clone);
930
931 /*
932 * Actual request completion is done in a softirq context which doesn't
933 * hold the queue lock. Otherwise, deadlock could occur because:
934 * - another request may be submitted by the upper level driver
935 * of the stacking during the completion
936 * - the submission which requires queue lock may be done
937 * against this queue
938 */
939 dm_complete_request(clone, error);
940}
941
1da177e4
LT
942static sector_t max_io_len(struct mapped_device *md,
943 sector_t sector, struct dm_target *ti)
944{
945 sector_t offset = sector - ti->begin;
946 sector_t len = ti->len - offset;
947
948 /*
949 * Does the target need to split even further ?
950 */
951 if (ti->split_io) {
952 sector_t boundary;
953 boundary = ((offset + ti->split_io) & ~(ti->split_io - 1))
954 - offset;
955 if (len > boundary)
956 len = boundary;
957 }
958
959 return len;
960}
961
962static void __map_bio(struct dm_target *ti, struct bio *clone,
028867ac 963 struct dm_target_io *tio)
1da177e4
LT
964{
965 int r;
2056a782 966 sector_t sector;
9faf400f 967 struct mapped_device *md;
1da177e4 968
1da177e4
LT
969 clone->bi_end_io = clone_endio;
970 clone->bi_private = tio;
971
972 /*
973 * Map the clone. If r == 0 we don't need to do
974 * anything, the target has assumed ownership of
975 * this io.
976 */
977 atomic_inc(&tio->io->io_count);
2056a782 978 sector = clone->bi_sector;
1da177e4 979 r = ti->type->map(ti, clone, &tio->info);
45cbcd79 980 if (r == DM_MAPIO_REMAPPED) {
1da177e4 981 /* the bio has been remapped so dispatch it */
2056a782 982
5f3ea37c 983 trace_block_remap(bdev_get_queue(clone->bi_bdev), clone,
22a7c31a 984 tio->io->bio->bi_bdev->bd_dev, sector);
2056a782 985
1da177e4 986 generic_make_request(clone);
2e93ccc1
KU
987 } else if (r < 0 || r == DM_MAPIO_REQUEUE) {
988 /* error the io and bail out, or requeue it if needed */
9faf400f
SB
989 md = tio->io->md;
990 dec_pending(tio->io, r);
991 /*
992 * Store bio_set for cleanup.
993 */
994 clone->bi_private = md->bs;
1da177e4 995 bio_put(clone);
9faf400f 996 free_tio(md, tio);
45cbcd79
KU
997 } else if (r) {
998 DMWARN("unimplemented target map return value: %d", r);
999 BUG();
1da177e4
LT
1000 }
1001}
1002
1003struct clone_info {
1004 struct mapped_device *md;
1005 struct dm_table *map;
1006 struct bio *bio;
1007 struct dm_io *io;
1008 sector_t sector;
1009 sector_t sector_count;
1010 unsigned short idx;
1011};
1012
3676347a
PO
1013static void dm_bio_destructor(struct bio *bio)
1014{
9faf400f
SB
1015 struct bio_set *bs = bio->bi_private;
1016
1017 bio_free(bio, bs);
3676347a
PO
1018}
1019
1da177e4
LT
1020/*
1021 * Creates a little bio that is just does part of a bvec.
1022 */
1023static struct bio *split_bvec(struct bio *bio, sector_t sector,
1024 unsigned short idx, unsigned int offset,
9faf400f 1025 unsigned int len, struct bio_set *bs)
1da177e4
LT
1026{
1027 struct bio *clone;
1028 struct bio_vec *bv = bio->bi_io_vec + idx;
1029
9faf400f 1030 clone = bio_alloc_bioset(GFP_NOIO, 1, bs);
3676347a 1031 clone->bi_destructor = dm_bio_destructor;
1da177e4
LT
1032 *clone->bi_io_vec = *bv;
1033
1034 clone->bi_sector = sector;
1035 clone->bi_bdev = bio->bi_bdev;
af7e466a 1036 clone->bi_rw = bio->bi_rw & ~(1 << BIO_RW_BARRIER);
1da177e4
LT
1037 clone->bi_vcnt = 1;
1038 clone->bi_size = to_bytes(len);
1039 clone->bi_io_vec->bv_offset = offset;
1040 clone->bi_io_vec->bv_len = clone->bi_size;
f3e1d26e 1041 clone->bi_flags |= 1 << BIO_CLONED;
1da177e4 1042
9c47008d 1043 if (bio_integrity(bio)) {
7878cba9 1044 bio_integrity_clone(clone, bio, GFP_NOIO, bs);
9c47008d
MP
1045 bio_integrity_trim(clone,
1046 bio_sector_offset(bio, idx, offset), len);
1047 }
1048
1da177e4
LT
1049 return clone;
1050}
1051
1052/*
1053 * Creates a bio that consists of range of complete bvecs.
1054 */
1055static struct bio *clone_bio(struct bio *bio, sector_t sector,
1056 unsigned short idx, unsigned short bv_count,
9faf400f 1057 unsigned int len, struct bio_set *bs)
1da177e4
LT
1058{
1059 struct bio *clone;
1060
9faf400f
SB
1061 clone = bio_alloc_bioset(GFP_NOIO, bio->bi_max_vecs, bs);
1062 __bio_clone(clone, bio);
af7e466a 1063 clone->bi_rw &= ~(1 << BIO_RW_BARRIER);
9faf400f 1064 clone->bi_destructor = dm_bio_destructor;
1da177e4
LT
1065 clone->bi_sector = sector;
1066 clone->bi_idx = idx;
1067 clone->bi_vcnt = idx + bv_count;
1068 clone->bi_size = to_bytes(len);
1069 clone->bi_flags &= ~(1 << BIO_SEG_VALID);
1070
9c47008d 1071 if (bio_integrity(bio)) {
7878cba9 1072 bio_integrity_clone(clone, bio, GFP_NOIO, bs);
9c47008d
MP
1073
1074 if (idx != bio->bi_idx || clone->bi_size < bio->bi_size)
1075 bio_integrity_trim(clone,
1076 bio_sector_offset(bio, idx, 0), len);
1077 }
1078
1da177e4
LT
1079 return clone;
1080}
1081
9015df24
AK
1082static struct dm_target_io *alloc_tio(struct clone_info *ci,
1083 struct dm_target *ti)
f9ab94ce 1084{
9015df24 1085 struct dm_target_io *tio = mempool_alloc(ci->md->tio_pool, GFP_NOIO);
f9ab94ce
MP
1086
1087 tio->io = ci->io;
1088 tio->ti = ti;
f9ab94ce 1089 memset(&tio->info, 0, sizeof(tio->info));
9015df24
AK
1090
1091 return tio;
1092}
1093
1094static void __flush_target(struct clone_info *ci, struct dm_target *ti,
1095 unsigned flush_nr)
1096{
1097 struct dm_target_io *tio = alloc_tio(ci, ti);
1098 struct bio *clone;
1099
f9ab94ce
MP
1100 tio->info.flush_request = flush_nr;
1101
1102 clone = bio_alloc_bioset(GFP_NOIO, 0, ci->md->bs);
1103 __bio_clone(clone, ci->bio);
1104 clone->bi_destructor = dm_bio_destructor;
1105
1106 __map_bio(ti, clone, tio);
1107}
1108
1109static int __clone_and_map_empty_barrier(struct clone_info *ci)
1110{
1111 unsigned target_nr = 0, flush_nr;
1112 struct dm_target *ti;
1113
1114 while ((ti = dm_table_get_target(ci->map, target_nr++)))
1115 for (flush_nr = 0; flush_nr < ti->num_flush_requests;
1116 flush_nr++)
1117 __flush_target(ci, ti, flush_nr);
1118
1119 ci->sector_count = 0;
1120
1121 return 0;
1122}
1123
512875bd 1124static int __clone_and_map(struct clone_info *ci)
1da177e4
LT
1125{
1126 struct bio *clone, *bio = ci->bio;
512875bd
JN
1127 struct dm_target *ti;
1128 sector_t len = 0, max;
028867ac 1129 struct dm_target_io *tio;
1da177e4 1130
f9ab94ce
MP
1131 if (unlikely(bio_empty_barrier(bio)))
1132 return __clone_and_map_empty_barrier(ci);
1133
512875bd
JN
1134 ti = dm_table_find_target(ci->map, ci->sector);
1135 if (!dm_target_is_valid(ti))
1136 return -EIO;
1137
1138 max = max_io_len(ci->md, ci->sector, ti);
1139
1da177e4
LT
1140 /*
1141 * Allocate a target io object.
1142 */
9015df24 1143 tio = alloc_tio(ci, ti);
1da177e4
LT
1144
1145 if (ci->sector_count <= max) {
1146 /*
1147 * Optimise for the simple case where we can do all of
1148 * the remaining io with a single clone.
1149 */
1150 clone = clone_bio(bio, ci->sector, ci->idx,
9faf400f
SB
1151 bio->bi_vcnt - ci->idx, ci->sector_count,
1152 ci->md->bs);
1da177e4
LT
1153 __map_bio(ti, clone, tio);
1154 ci->sector_count = 0;
1155
1156 } else if (to_sector(bio->bi_io_vec[ci->idx].bv_len) <= max) {
1157 /*
1158 * There are some bvecs that don't span targets.
1159 * Do as many of these as possible.
1160 */
1161 int i;
1162 sector_t remaining = max;
1163 sector_t bv_len;
1164
1165 for (i = ci->idx; remaining && (i < bio->bi_vcnt); i++) {
1166 bv_len = to_sector(bio->bi_io_vec[i].bv_len);
1167
1168 if (bv_len > remaining)
1169 break;
1170
1171 remaining -= bv_len;
1172 len += bv_len;
1173 }
1174
9faf400f
SB
1175 clone = clone_bio(bio, ci->sector, ci->idx, i - ci->idx, len,
1176 ci->md->bs);
1da177e4
LT
1177 __map_bio(ti, clone, tio);
1178
1179 ci->sector += len;
1180 ci->sector_count -= len;
1181 ci->idx = i;
1182
1183 } else {
1184 /*
d2044a94 1185 * Handle a bvec that must be split between two or more targets.
1da177e4
LT
1186 */
1187 struct bio_vec *bv = bio->bi_io_vec + ci->idx;
d2044a94
AK
1188 sector_t remaining = to_sector(bv->bv_len);
1189 unsigned int offset = 0;
1da177e4 1190
d2044a94
AK
1191 do {
1192 if (offset) {
1193 ti = dm_table_find_target(ci->map, ci->sector);
512875bd
JN
1194 if (!dm_target_is_valid(ti))
1195 return -EIO;
1196
d2044a94 1197 max = max_io_len(ci->md, ci->sector, ti);
1da177e4 1198
9015df24 1199 tio = alloc_tio(ci, ti);
d2044a94
AK
1200 }
1201
1202 len = min(remaining, max);
1203
1204 clone = split_bvec(bio, ci->sector, ci->idx,
9faf400f
SB
1205 bv->bv_offset + offset, len,
1206 ci->md->bs);
d2044a94
AK
1207
1208 __map_bio(ti, clone, tio);
1209
1210 ci->sector += len;
1211 ci->sector_count -= len;
1212 offset += to_bytes(len);
1213 } while (remaining -= len);
1da177e4 1214
1da177e4
LT
1215 ci->idx++;
1216 }
512875bd
JN
1217
1218 return 0;
1da177e4
LT
1219}
1220
1221/*
8a53c28d 1222 * Split the bio into several clones and submit it to targets.
1da177e4 1223 */
f0b9a450 1224static void __split_and_process_bio(struct mapped_device *md, struct bio *bio)
1da177e4
LT
1225{
1226 struct clone_info ci;
512875bd 1227 int error = 0;
1da177e4
LT
1228
1229 ci.map = dm_get_table(md);
f0b9a450 1230 if (unlikely(!ci.map)) {
1f98a13f 1231 if (!bio_rw_flagged(bio, BIO_RW_BARRIER))
af7e466a
MP
1232 bio_io_error(bio);
1233 else
5aa2781d
MP
1234 if (!md->barrier_error)
1235 md->barrier_error = -EIO;
f0b9a450
MP
1236 return;
1237 }
692d0eb9 1238
1da177e4
LT
1239 ci.md = md;
1240 ci.bio = bio;
1241 ci.io = alloc_io(md);
1242 ci.io->error = 0;
1243 atomic_set(&ci.io->io_count, 1);
1244 ci.io->bio = bio;
1245 ci.io->md = md;
f88fb981 1246 spin_lock_init(&ci.io->endio_lock);
1da177e4
LT
1247 ci.sector = bio->bi_sector;
1248 ci.sector_count = bio_sectors(bio);
f9ab94ce
MP
1249 if (unlikely(bio_empty_barrier(bio)))
1250 ci.sector_count = 1;
1da177e4
LT
1251 ci.idx = bio->bi_idx;
1252
3eaf840e 1253 start_io_acct(ci.io);
512875bd
JN
1254 while (ci.sector_count && !error)
1255 error = __clone_and_map(&ci);
1da177e4
LT
1256
1257 /* drop the extra reference count */
512875bd 1258 dec_pending(ci.io, error);
1da177e4
LT
1259 dm_table_put(ci.map);
1260}
1261/*-----------------------------------------------------------------
1262 * CRUD END
1263 *---------------------------------------------------------------*/
1264
f6fccb12
MB
1265static int dm_merge_bvec(struct request_queue *q,
1266 struct bvec_merge_data *bvm,
1267 struct bio_vec *biovec)
1268{
1269 struct mapped_device *md = q->queuedata;
1270 struct dm_table *map = dm_get_table(md);
1271 struct dm_target *ti;
1272 sector_t max_sectors;
5037108a 1273 int max_size = 0;
f6fccb12
MB
1274
1275 if (unlikely(!map))
5037108a 1276 goto out;
f6fccb12
MB
1277
1278 ti = dm_table_find_target(map, bvm->bi_sector);
b01cd5ac
MP
1279 if (!dm_target_is_valid(ti))
1280 goto out_table;
f6fccb12
MB
1281
1282 /*
1283 * Find maximum amount of I/O that won't need splitting
1284 */
1285 max_sectors = min(max_io_len(md, bvm->bi_sector, ti),
1286 (sector_t) BIO_MAX_SECTORS);
1287 max_size = (max_sectors << SECTOR_SHIFT) - bvm->bi_size;
1288 if (max_size < 0)
1289 max_size = 0;
1290
1291 /*
1292 * merge_bvec_fn() returns number of bytes
1293 * it can accept at this offset
1294 * max is precomputed maximal io size
1295 */
1296 if (max_size && ti->type->merge)
1297 max_size = ti->type->merge(ti, bvm, biovec, max_size);
8cbeb67a
MP
1298 /*
1299 * If the target doesn't support merge method and some of the devices
1300 * provided their merge_bvec method (we know this by looking at
1301 * queue_max_hw_sectors), then we can't allow bios with multiple vector
1302 * entries. So always set max_size to 0, and the code below allows
1303 * just one page.
1304 */
1305 else if (queue_max_hw_sectors(q) <= PAGE_SIZE >> 9)
1306
1307 max_size = 0;
f6fccb12 1308
b01cd5ac 1309out_table:
5037108a
MP
1310 dm_table_put(map);
1311
1312out:
f6fccb12
MB
1313 /*
1314 * Always allow an entire first page
1315 */
1316 if (max_size <= biovec->bv_len && !(bvm->bi_size >> SECTOR_SHIFT))
1317 max_size = biovec->bv_len;
1318
f6fccb12
MB
1319 return max_size;
1320}
1321
1da177e4
LT
1322/*
1323 * The request function that just remaps the bio built up by
1324 * dm_merge_bvec.
1325 */
cec47e3d 1326static int _dm_request(struct request_queue *q, struct bio *bio)
1da177e4 1327{
12f03a49 1328 int rw = bio_data_dir(bio);
1da177e4 1329 struct mapped_device *md = q->queuedata;
c9959059 1330 int cpu;
1da177e4 1331
2ca3310e 1332 down_read(&md->io_lock);
1da177e4 1333
074a7aca
TH
1334 cpu = part_stat_lock();
1335 part_stat_inc(cpu, &dm_disk(md)->part0, ios[rw]);
1336 part_stat_add(cpu, &dm_disk(md)->part0, sectors[rw], bio_sectors(bio));
1337 part_stat_unlock();
12f03a49 1338
1da177e4 1339 /*
1eb787ec
AK
1340 * If we're suspended or the thread is processing barriers
1341 * we have to queue this io for later.
1da177e4 1342 */
af7e466a 1343 if (unlikely(test_bit(DMF_QUEUE_IO_TO_THREAD, &md->flags)) ||
1f98a13f 1344 unlikely(bio_rw_flagged(bio, BIO_RW_BARRIER))) {
2ca3310e 1345 up_read(&md->io_lock);
1da177e4 1346
54d9a1b4
AK
1347 if (unlikely(test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) &&
1348 bio_rw(bio) == READA) {
1349 bio_io_error(bio);
1350 return 0;
1351 }
1da177e4 1352
92c63902 1353 queue_io(md, bio);
1da177e4 1354
92c63902 1355 return 0;
1da177e4
LT
1356 }
1357
f0b9a450 1358 __split_and_process_bio(md, bio);
2ca3310e 1359 up_read(&md->io_lock);
f0b9a450 1360 return 0;
1da177e4
LT
1361}
1362
cec47e3d
KU
1363static int dm_make_request(struct request_queue *q, struct bio *bio)
1364{
1365 struct mapped_device *md = q->queuedata;
1366
1f98a13f 1367 if (unlikely(bio_rw_flagged(bio, BIO_RW_BARRIER))) {
cec47e3d
KU
1368 bio_endio(bio, -EOPNOTSUPP);
1369 return 0;
1370 }
1371
1372 return md->saved_make_request_fn(q, bio); /* call __make_request() */
1373}
1374
1375static int dm_request_based(struct mapped_device *md)
1376{
1377 return blk_queue_stackable(md->queue);
1378}
1379
1380static int dm_request(struct request_queue *q, struct bio *bio)
1381{
1382 struct mapped_device *md = q->queuedata;
1383
1384 if (dm_request_based(md))
1385 return dm_make_request(q, bio);
1386
1387 return _dm_request(q, bio);
1388}
1389
1390void dm_dispatch_request(struct request *rq)
1391{
1392 int r;
1393
1394 if (blk_queue_io_stat(rq->q))
1395 rq->cmd_flags |= REQ_IO_STAT;
1396
1397 rq->start_time = jiffies;
1398 r = blk_insert_cloned_request(rq->q, rq);
1399 if (r)
1400 dm_complete_request(rq, r);
1401}
1402EXPORT_SYMBOL_GPL(dm_dispatch_request);
1403
1404static void dm_rq_bio_destructor(struct bio *bio)
1405{
1406 struct dm_rq_clone_bio_info *info = bio->bi_private;
1407 struct mapped_device *md = info->tio->md;
1408
1409 free_bio_info(info);
1410 bio_free(bio, md->bs);
1411}
1412
1413static int dm_rq_bio_constructor(struct bio *bio, struct bio *bio_orig,
1414 void *data)
1415{
1416 struct dm_rq_target_io *tio = data;
1417 struct mapped_device *md = tio->md;
1418 struct dm_rq_clone_bio_info *info = alloc_bio_info(md);
1419
1420 if (!info)
1421 return -ENOMEM;
1422
1423 info->orig = bio_orig;
1424 info->tio = tio;
1425 bio->bi_end_io = end_clone_bio;
1426 bio->bi_private = info;
1427 bio->bi_destructor = dm_rq_bio_destructor;
1428
1429 return 0;
1430}
1431
1432static int setup_clone(struct request *clone, struct request *rq,
1433 struct dm_rq_target_io *tio)
1434{
1435 int r = blk_rq_prep_clone(clone, rq, tio->md->bs, GFP_ATOMIC,
1436 dm_rq_bio_constructor, tio);
1437
1438 if (r)
1439 return r;
1440
1441 clone->cmd = rq->cmd;
1442 clone->cmd_len = rq->cmd_len;
1443 clone->sense = rq->sense;
1444 clone->buffer = rq->buffer;
1445 clone->end_io = end_clone_request;
1446 clone->end_io_data = tio;
1447
1448 return 0;
1449}
1450
6facdaff
KU
1451static struct request *clone_rq(struct request *rq, struct mapped_device *md,
1452 gfp_t gfp_mask)
1453{
1454 struct request *clone;
1455 struct dm_rq_target_io *tio;
1456
1457 tio = alloc_rq_tio(md, gfp_mask);
1458 if (!tio)
1459 return NULL;
1460
1461 tio->md = md;
1462 tio->ti = NULL;
1463 tio->orig = rq;
1464 tio->error = 0;
1465 memset(&tio->info, 0, sizeof(tio->info));
1466
1467 clone = &tio->clone;
1468 if (setup_clone(clone, rq, tio)) {
1469 /* -ENOMEM */
1470 free_rq_tio(tio);
1471 return NULL;
1472 }
1473
1474 return clone;
1475}
1476
cec47e3d
KU
1477/*
1478 * Called with the queue lock held.
1479 */
1480static int dm_prep_fn(struct request_queue *q, struct request *rq)
1481{
1482 struct mapped_device *md = q->queuedata;
cec47e3d
KU
1483 struct request *clone;
1484
cec47e3d
KU
1485 if (unlikely(rq->special)) {
1486 DMWARN("Already has something in rq->special.");
1487 return BLKPREP_KILL;
1488 }
1489
6facdaff
KU
1490 clone = clone_rq(rq, md, GFP_ATOMIC);
1491 if (!clone)
cec47e3d 1492 return BLKPREP_DEFER;
cec47e3d
KU
1493
1494 rq->special = clone;
1495 rq->cmd_flags |= REQ_DONTPREP;
1496
1497 return BLKPREP_OK;
1498}
1499
598de409 1500static void map_request(struct dm_target *ti, struct request *clone,
cec47e3d
KU
1501 struct mapped_device *md)
1502{
1503 int r;
cec47e3d
KU
1504 struct dm_rq_target_io *tio = clone->end_io_data;
1505
1506 /*
1507 * Hold the md reference here for the in-flight I/O.
1508 * We can't rely on the reference count by device opener,
1509 * because the device may be closed during the request completion
1510 * when all bios are completed.
1511 * See the comment in rq_completed() too.
1512 */
1513 dm_get(md);
1514
1515 tio->ti = ti;
1516 r = ti->type->map_rq(ti, clone, &tio->info);
1517 switch (r) {
1518 case DM_MAPIO_SUBMITTED:
1519 /* The target has taken the I/O to submit by itself later */
1520 break;
1521 case DM_MAPIO_REMAPPED:
1522 /* The target has remapped the I/O so dispatch it */
1523 dm_dispatch_request(clone);
1524 break;
1525 case DM_MAPIO_REQUEUE:
1526 /* The target wants to requeue the I/O */
1527 dm_requeue_unmapped_request(clone);
1528 break;
1529 default:
1530 if (r > 0) {
1531 DMWARN("unimplemented target map return value: %d", r);
1532 BUG();
1533 }
1534
1535 /* The target wants to complete the I/O */
1536 dm_kill_unmapped_request(clone, r);
1537 break;
1538 }
1539}
1540
1541/*
1542 * q->request_fn for request-based dm.
1543 * Called with the queue lock held.
1544 */
1545static void dm_request_fn(struct request_queue *q)
1546{
1547 struct mapped_device *md = q->queuedata;
1548 struct dm_table *map = dm_get_table(md);
1549 struct dm_target *ti;
b4324fee 1550 struct request *rq, *clone;
cec47e3d
KU
1551
1552 /*
b4324fee
KU
1553 * For suspend, check blk_queue_stopped() and increment
1554 * ->pending within a single queue_lock not to increment the
1555 * number of in-flight I/Os after the queue is stopped in
1556 * dm_suspend().
cec47e3d
KU
1557 */
1558 while (!blk_queue_plugged(q) && !blk_queue_stopped(q)) {
1559 rq = blk_peek_request(q);
1560 if (!rq)
1561 goto plug_and_out;
1562
cec47e3d
KU
1563 ti = dm_table_find_target(map, blk_rq_pos(rq));
1564 if (ti->type->busy && ti->type->busy(ti))
1565 goto plug_and_out;
1566
1567 blk_start_request(rq);
b4324fee
KU
1568 clone = rq->special;
1569 atomic_inc(&md->pending[rq_data_dir(clone)]);
1570
cec47e3d 1571 spin_unlock(q->queue_lock);
b4324fee 1572 map_request(ti, clone, md);
cec47e3d
KU
1573 spin_lock_irq(q->queue_lock);
1574 }
1575
1576 goto out;
1577
1578plug_and_out:
1579 if (!elv_queue_empty(q))
1580 /* Some requests still remain, retry later */
1581 blk_plug_device(q);
1582
1583out:
1584 dm_table_put(map);
1585
1586 return;
1587}
1588
1589int dm_underlying_device_busy(struct request_queue *q)
1590{
1591 return blk_lld_busy(q);
1592}
1593EXPORT_SYMBOL_GPL(dm_underlying_device_busy);
1594
1595static int dm_lld_busy(struct request_queue *q)
1596{
1597 int r;
1598 struct mapped_device *md = q->queuedata;
1599 struct dm_table *map = dm_get_table(md);
1600
1601 if (!map || test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags))
1602 r = 1;
1603 else
1604 r = dm_table_any_busy_target(map);
1605
1606 dm_table_put(map);
1607
1608 return r;
1609}
1610
165125e1 1611static void dm_unplug_all(struct request_queue *q)
1da177e4
LT
1612{
1613 struct mapped_device *md = q->queuedata;
1614 struct dm_table *map = dm_get_table(md);
1615
1616 if (map) {
cec47e3d
KU
1617 if (dm_request_based(md))
1618 generic_unplug_device(q);
1619
1da177e4
LT
1620 dm_table_unplug_all(map);
1621 dm_table_put(map);
1622 }
1623}
1624
1625static int dm_any_congested(void *congested_data, int bdi_bits)
1626{
8a57dfc6
CS
1627 int r = bdi_bits;
1628 struct mapped_device *md = congested_data;
1629 struct dm_table *map;
1da177e4 1630
1eb787ec 1631 if (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
8a57dfc6
CS
1632 map = dm_get_table(md);
1633 if (map) {
cec47e3d
KU
1634 /*
1635 * Request-based dm cares about only own queue for
1636 * the query about congestion status of request_queue
1637 */
1638 if (dm_request_based(md))
1639 r = md->queue->backing_dev_info.state &
1640 bdi_bits;
1641 else
1642 r = dm_table_any_congested(map, bdi_bits);
1643
8a57dfc6
CS
1644 dm_table_put(map);
1645 }
1646 }
1647
1da177e4
LT
1648 return r;
1649}
1650
1651/*-----------------------------------------------------------------
1652 * An IDR is used to keep track of allocated minor numbers.
1653 *---------------------------------------------------------------*/
1da177e4
LT
1654static DEFINE_IDR(_minor_idr);
1655
2b06cfff 1656static void free_minor(int minor)
1da177e4 1657{
f32c10b0 1658 spin_lock(&_minor_lock);
1da177e4 1659 idr_remove(&_minor_idr, minor);
f32c10b0 1660 spin_unlock(&_minor_lock);
1da177e4
LT
1661}
1662
1663/*
1664 * See if the device with a specific minor # is free.
1665 */
cf13ab8e 1666static int specific_minor(int minor)
1da177e4
LT
1667{
1668 int r, m;
1669
1670 if (minor >= (1 << MINORBITS))
1671 return -EINVAL;
1672
62f75c2f
JM
1673 r = idr_pre_get(&_minor_idr, GFP_KERNEL);
1674 if (!r)
1675 return -ENOMEM;
1676
f32c10b0 1677 spin_lock(&_minor_lock);
1da177e4
LT
1678
1679 if (idr_find(&_minor_idr, minor)) {
1680 r = -EBUSY;
1681 goto out;
1682 }
1683
ba61fdd1 1684 r = idr_get_new_above(&_minor_idr, MINOR_ALLOCED, minor, &m);
62f75c2f 1685 if (r)
1da177e4 1686 goto out;
1da177e4
LT
1687
1688 if (m != minor) {
1689 idr_remove(&_minor_idr, m);
1690 r = -EBUSY;
1691 goto out;
1692 }
1693
1694out:
f32c10b0 1695 spin_unlock(&_minor_lock);
1da177e4
LT
1696 return r;
1697}
1698
cf13ab8e 1699static int next_free_minor(int *minor)
1da177e4 1700{
2b06cfff 1701 int r, m;
1da177e4 1702
1da177e4 1703 r = idr_pre_get(&_minor_idr, GFP_KERNEL);
62f75c2f
JM
1704 if (!r)
1705 return -ENOMEM;
1706
f32c10b0 1707 spin_lock(&_minor_lock);
1da177e4 1708
ba61fdd1 1709 r = idr_get_new(&_minor_idr, MINOR_ALLOCED, &m);
cf13ab8e 1710 if (r)
1da177e4 1711 goto out;
1da177e4
LT
1712
1713 if (m >= (1 << MINORBITS)) {
1714 idr_remove(&_minor_idr, m);
1715 r = -ENOSPC;
1716 goto out;
1717 }
1718
1719 *minor = m;
1720
1721out:
f32c10b0 1722 spin_unlock(&_minor_lock);
1da177e4
LT
1723 return r;
1724}
1725
83d5cde4 1726static const struct block_device_operations dm_blk_dops;
1da177e4 1727
53d5914f
MP
1728static void dm_wq_work(struct work_struct *work);
1729
1da177e4
LT
1730/*
1731 * Allocate and initialise a blank device with a given minor.
1732 */
2b06cfff 1733static struct mapped_device *alloc_dev(int minor)
1da177e4
LT
1734{
1735 int r;
cf13ab8e 1736 struct mapped_device *md = kzalloc(sizeof(*md), GFP_KERNEL);
ba61fdd1 1737 void *old_md;
1da177e4
LT
1738
1739 if (!md) {
1740 DMWARN("unable to allocate device, out of memory.");
1741 return NULL;
1742 }
1743
10da4f79 1744 if (!try_module_get(THIS_MODULE))
6ed7ade8 1745 goto bad_module_get;
10da4f79 1746
1da177e4 1747 /* get a minor number for the dev */
2b06cfff 1748 if (minor == DM_ANY_MINOR)
cf13ab8e 1749 r = next_free_minor(&minor);
2b06cfff 1750 else
cf13ab8e 1751 r = specific_minor(minor);
1da177e4 1752 if (r < 0)
6ed7ade8 1753 goto bad_minor;
1da177e4 1754
2ca3310e 1755 init_rwsem(&md->io_lock);
e61290a4 1756 mutex_init(&md->suspend_lock);
022c2611 1757 spin_lock_init(&md->deferred_lock);
1da177e4
LT
1758 rwlock_init(&md->map_lock);
1759 atomic_set(&md->holders, 1);
5c6bd75d 1760 atomic_set(&md->open_count, 0);
1da177e4 1761 atomic_set(&md->event_nr, 0);
7a8c3d3b
MA
1762 atomic_set(&md->uevent_seq, 0);
1763 INIT_LIST_HEAD(&md->uevent_list);
1764 spin_lock_init(&md->uevent_lock);
1da177e4 1765
e6ee8c0b 1766 md->queue = blk_init_queue(dm_request_fn, NULL);
1da177e4 1767 if (!md->queue)
6ed7ade8 1768 goto bad_queue;
1da177e4 1769
e6ee8c0b
KU
1770 /*
1771 * Request-based dm devices cannot be stacked on top of bio-based dm
1772 * devices. The type of this dm device has not been decided yet,
1773 * although we initialized the queue using blk_init_queue().
1774 * The type is decided at the first table loading time.
1775 * To prevent problematic device stacking, clear the queue flag
1776 * for request stacking support until then.
1777 *
1778 * This queue is new, so no concurrency on the queue_flags.
1779 */
1780 queue_flag_clear_unlocked(QUEUE_FLAG_STACKABLE, md->queue);
1781 md->saved_make_request_fn = md->queue->make_request_fn;
1da177e4
LT
1782 md->queue->queuedata = md;
1783 md->queue->backing_dev_info.congested_fn = dm_any_congested;
1784 md->queue->backing_dev_info.congested_data = md;
1785 blk_queue_make_request(md->queue, dm_request);
daef265f 1786 blk_queue_bounce_limit(md->queue, BLK_BOUNCE_ANY);
1da177e4 1787 md->queue->unplug_fn = dm_unplug_all;
f6fccb12 1788 blk_queue_merge_bvec(md->queue, dm_merge_bvec);
e6ee8c0b
KU
1789 blk_queue_softirq_done(md->queue, dm_softirq_done);
1790 blk_queue_prep_rq(md->queue, dm_prep_fn);
1791 blk_queue_lld_busy(md->queue, dm_lld_busy);
9faf400f 1792
1da177e4
LT
1793 md->disk = alloc_disk(1);
1794 if (!md->disk)
6ed7ade8 1795 goto bad_disk;
1da177e4 1796
316d315b
NK
1797 atomic_set(&md->pending[0], 0);
1798 atomic_set(&md->pending[1], 0);
f0b04115 1799 init_waitqueue_head(&md->wait);
53d5914f 1800 INIT_WORK(&md->work, dm_wq_work);
f0b04115
JM
1801 init_waitqueue_head(&md->eventq);
1802
1da177e4
LT
1803 md->disk->major = _major;
1804 md->disk->first_minor = minor;
1805 md->disk->fops = &dm_blk_dops;
1806 md->disk->queue = md->queue;
1807 md->disk->private_data = md;
1808 sprintf(md->disk->disk_name, "dm-%d", minor);
1809 add_disk(md->disk);
7e51f257 1810 format_dev_t(md->name, MKDEV(_major, minor));
1da177e4 1811
304f3f6a
MB
1812 md->wq = create_singlethread_workqueue("kdmflush");
1813 if (!md->wq)
1814 goto bad_thread;
1815
32a926da
MP
1816 md->bdev = bdget_disk(md->disk, 0);
1817 if (!md->bdev)
1818 goto bad_bdev;
1819
ba61fdd1 1820 /* Populate the mapping, nobody knows we exist yet */
f32c10b0 1821 spin_lock(&_minor_lock);
ba61fdd1 1822 old_md = idr_replace(&_minor_idr, md, minor);
f32c10b0 1823 spin_unlock(&_minor_lock);
ba61fdd1
JM
1824
1825 BUG_ON(old_md != MINOR_ALLOCED);
1826
1da177e4
LT
1827 return md;
1828
32a926da
MP
1829bad_bdev:
1830 destroy_workqueue(md->wq);
304f3f6a 1831bad_thread:
03022c54 1832 del_gendisk(md->disk);
304f3f6a 1833 put_disk(md->disk);
6ed7ade8 1834bad_disk:
1312f40e 1835 blk_cleanup_queue(md->queue);
6ed7ade8 1836bad_queue:
1da177e4 1837 free_minor(minor);
6ed7ade8 1838bad_minor:
10da4f79 1839 module_put(THIS_MODULE);
6ed7ade8 1840bad_module_get:
1da177e4
LT
1841 kfree(md);
1842 return NULL;
1843}
1844
ae9da83f
JN
1845static void unlock_fs(struct mapped_device *md);
1846
1da177e4
LT
1847static void free_dev(struct mapped_device *md)
1848{
f331c029 1849 int minor = MINOR(disk_devt(md->disk));
63d94e48 1850
32a926da
MP
1851 unlock_fs(md);
1852 bdput(md->bdev);
304f3f6a 1853 destroy_workqueue(md->wq);
e6ee8c0b
KU
1854 if (md->tio_pool)
1855 mempool_destroy(md->tio_pool);
1856 if (md->io_pool)
1857 mempool_destroy(md->io_pool);
1858 if (md->bs)
1859 bioset_free(md->bs);
9c47008d 1860 blk_integrity_unregister(md->disk);
1da177e4 1861 del_gendisk(md->disk);
63d94e48 1862 free_minor(minor);
fba9f90e
JM
1863
1864 spin_lock(&_minor_lock);
1865 md->disk->private_data = NULL;
1866 spin_unlock(&_minor_lock);
1867
1da177e4 1868 put_disk(md->disk);
1312f40e 1869 blk_cleanup_queue(md->queue);
10da4f79 1870 module_put(THIS_MODULE);
1da177e4
LT
1871 kfree(md);
1872}
1873
e6ee8c0b
KU
1874static void __bind_mempools(struct mapped_device *md, struct dm_table *t)
1875{
1876 struct dm_md_mempools *p;
1877
1878 if (md->io_pool && md->tio_pool && md->bs)
1879 /* the md already has necessary mempools */
1880 goto out;
1881
1882 p = dm_table_get_md_mempools(t);
1883 BUG_ON(!p || md->io_pool || md->tio_pool || md->bs);
1884
1885 md->io_pool = p->io_pool;
1886 p->io_pool = NULL;
1887 md->tio_pool = p->tio_pool;
1888 p->tio_pool = NULL;
1889 md->bs = p->bs;
1890 p->bs = NULL;
1891
1892out:
1893 /* mempool bind completed, now no need any mempools in the table */
1894 dm_table_free_md_mempools(t);
1895}
1896
1da177e4
LT
1897/*
1898 * Bind a table to the device.
1899 */
1900static void event_callback(void *context)
1901{
7a8c3d3b
MA
1902 unsigned long flags;
1903 LIST_HEAD(uevents);
1da177e4
LT
1904 struct mapped_device *md = (struct mapped_device *) context;
1905
7a8c3d3b
MA
1906 spin_lock_irqsave(&md->uevent_lock, flags);
1907 list_splice_init(&md->uevent_list, &uevents);
1908 spin_unlock_irqrestore(&md->uevent_lock, flags);
1909
ed9e1982 1910 dm_send_uevents(&uevents, &disk_to_dev(md->disk)->kobj);
7a8c3d3b 1911
1da177e4
LT
1912 atomic_inc(&md->event_nr);
1913 wake_up(&md->eventq);
1914}
1915
4e90188b 1916static void __set_size(struct mapped_device *md, sector_t size)
1da177e4 1917{
4e90188b 1918 set_capacity(md->disk, size);
1da177e4 1919
db8fef4f
MP
1920 mutex_lock(&md->bdev->bd_inode->i_mutex);
1921 i_size_write(md->bdev->bd_inode, (loff_t)size << SECTOR_SHIFT);
1922 mutex_unlock(&md->bdev->bd_inode->i_mutex);
1da177e4
LT
1923}
1924
754c5fc7
MS
1925static int __bind(struct mapped_device *md, struct dm_table *t,
1926 struct queue_limits *limits)
1da177e4 1927{
165125e1 1928 struct request_queue *q = md->queue;
1da177e4 1929 sector_t size;
523d9297 1930 unsigned long flags;
1da177e4
LT
1931
1932 size = dm_table_get_size(t);
3ac51e74
DW
1933
1934 /*
1935 * Wipe any geometry if the size of the table changed.
1936 */
1937 if (size != get_capacity(md->disk))
1938 memset(&md->geometry, 0, sizeof(md->geometry));
1939
32a926da 1940 __set_size(md, size);
d5816876
MP
1941
1942 if (!size) {
1943 dm_table_destroy(t);
1da177e4 1944 return 0;
d5816876 1945 }
1da177e4 1946
2ca3310e
AK
1947 dm_table_event_callback(t, event_callback, md);
1948
e6ee8c0b
KU
1949 /*
1950 * The queue hasn't been stopped yet, if the old table type wasn't
1951 * for request-based during suspension. So stop it to prevent
1952 * I/O mapping before resume.
1953 * This must be done before setting the queue restrictions,
1954 * because request-based dm may be run just after the setting.
1955 */
1956 if (dm_table_request_based(t) && !blk_queue_stopped(q))
1957 stop_queue(q);
1958
1959 __bind_mempools(md, t);
1960
523d9297 1961 write_lock_irqsave(&md->map_lock, flags);
1da177e4 1962 md->map = t;
754c5fc7 1963 dm_table_set_restrictions(t, q, limits);
523d9297 1964 write_unlock_irqrestore(&md->map_lock, flags);
1da177e4 1965
1da177e4
LT
1966 return 0;
1967}
1968
1969static void __unbind(struct mapped_device *md)
1970{
1971 struct dm_table *map = md->map;
523d9297 1972 unsigned long flags;
1da177e4
LT
1973
1974 if (!map)
1975 return;
1976
1977 dm_table_event_callback(map, NULL, NULL);
523d9297 1978 write_lock_irqsave(&md->map_lock, flags);
1da177e4 1979 md->map = NULL;
523d9297 1980 write_unlock_irqrestore(&md->map_lock, flags);
d5816876 1981 dm_table_destroy(map);
1da177e4
LT
1982}
1983
1984/*
1985 * Constructor for a new device.
1986 */
2b06cfff 1987int dm_create(int minor, struct mapped_device **result)
1da177e4
LT
1988{
1989 struct mapped_device *md;
1990
2b06cfff 1991 md = alloc_dev(minor);
1da177e4
LT
1992 if (!md)
1993 return -ENXIO;
1994
784aae73
MB
1995 dm_sysfs_init(md);
1996
1da177e4
LT
1997 *result = md;
1998 return 0;
1999}
2000
637842cf 2001static struct mapped_device *dm_find_md(dev_t dev)
1da177e4
LT
2002{
2003 struct mapped_device *md;
1da177e4
LT
2004 unsigned minor = MINOR(dev);
2005
2006 if (MAJOR(dev) != _major || minor >= (1 << MINORBITS))
2007 return NULL;
2008
f32c10b0 2009 spin_lock(&_minor_lock);
1da177e4
LT
2010
2011 md = idr_find(&_minor_idr, minor);
fba9f90e 2012 if (md && (md == MINOR_ALLOCED ||
f331c029 2013 (MINOR(disk_devt(dm_disk(md))) != minor) ||
17b2f66f 2014 test_bit(DMF_FREEING, &md->flags))) {
637842cf 2015 md = NULL;
fba9f90e
JM
2016 goto out;
2017 }
1da177e4 2018
fba9f90e 2019out:
f32c10b0 2020 spin_unlock(&_minor_lock);
1da177e4 2021
637842cf
DT
2022 return md;
2023}
2024
d229a958
DT
2025struct mapped_device *dm_get_md(dev_t dev)
2026{
2027 struct mapped_device *md = dm_find_md(dev);
2028
2029 if (md)
2030 dm_get(md);
2031
2032 return md;
2033}
2034
9ade92a9 2035void *dm_get_mdptr(struct mapped_device *md)
637842cf 2036{
9ade92a9 2037 return md->interface_ptr;
1da177e4
LT
2038}
2039
2040void dm_set_mdptr(struct mapped_device *md, void *ptr)
2041{
2042 md->interface_ptr = ptr;
2043}
2044
2045void dm_get(struct mapped_device *md)
2046{
2047 atomic_inc(&md->holders);
2048}
2049
72d94861
AK
2050const char *dm_device_name(struct mapped_device *md)
2051{
2052 return md->name;
2053}
2054EXPORT_SYMBOL_GPL(dm_device_name);
2055
1da177e4
LT
2056void dm_put(struct mapped_device *md)
2057{
1134e5ae 2058 struct dm_table *map;
1da177e4 2059
fba9f90e
JM
2060 BUG_ON(test_bit(DMF_FREEING, &md->flags));
2061
f32c10b0 2062 if (atomic_dec_and_lock(&md->holders, &_minor_lock)) {
1134e5ae 2063 map = dm_get_table(md);
f331c029
TH
2064 idr_replace(&_minor_idr, MINOR_ALLOCED,
2065 MINOR(disk_devt(dm_disk(md))));
fba9f90e 2066 set_bit(DMF_FREEING, &md->flags);
f32c10b0 2067 spin_unlock(&_minor_lock);
cf222b37 2068 if (!dm_suspended(md)) {
1da177e4
LT
2069 dm_table_presuspend_targets(map);
2070 dm_table_postsuspend_targets(map);
2071 }
784aae73 2072 dm_sysfs_exit(md);
1134e5ae 2073 dm_table_put(map);
a1b51e98 2074 __unbind(md);
1da177e4
LT
2075 free_dev(md);
2076 }
1da177e4 2077}
79eb885c 2078EXPORT_SYMBOL_GPL(dm_put);
1da177e4 2079
401600df 2080static int dm_wait_for_completion(struct mapped_device *md, int interruptible)
46125c1c
MB
2081{
2082 int r = 0;
b44ebeb0
MP
2083 DECLARE_WAITQUEUE(wait, current);
2084
2085 dm_unplug_all(md->queue);
2086
2087 add_wait_queue(&md->wait, &wait);
46125c1c
MB
2088
2089 while (1) {
401600df 2090 set_current_state(interruptible);
46125c1c
MB
2091
2092 smp_mb();
b4324fee 2093 if (!md_in_flight(md))
46125c1c
MB
2094 break;
2095
401600df
MP
2096 if (interruptible == TASK_INTERRUPTIBLE &&
2097 signal_pending(current)) {
46125c1c
MB
2098 r = -EINTR;
2099 break;
2100 }
2101
2102 io_schedule();
2103 }
2104 set_current_state(TASK_RUNNING);
2105
b44ebeb0
MP
2106 remove_wait_queue(&md->wait, &wait);
2107
46125c1c
MB
2108 return r;
2109}
2110
531fe963 2111static void dm_flush(struct mapped_device *md)
af7e466a
MP
2112{
2113 dm_wait_for_completion(md, TASK_UNINTERRUPTIBLE);
52b1fd5a
MP
2114
2115 bio_init(&md->barrier_bio);
2116 md->barrier_bio.bi_bdev = md->bdev;
2117 md->barrier_bio.bi_rw = WRITE_BARRIER;
2118 __split_and_process_bio(md, &md->barrier_bio);
2119
2120 dm_wait_for_completion(md, TASK_UNINTERRUPTIBLE);
af7e466a
MP
2121}
2122
2123static void process_barrier(struct mapped_device *md, struct bio *bio)
2124{
5aa2781d
MP
2125 md->barrier_error = 0;
2126
531fe963 2127 dm_flush(md);
af7e466a 2128
5aa2781d
MP
2129 if (!bio_empty_barrier(bio)) {
2130 __split_and_process_bio(md, bio);
2131 dm_flush(md);
af7e466a
MP
2132 }
2133
af7e466a 2134 if (md->barrier_error != DM_ENDIO_REQUEUE)
531fe963 2135 bio_endio(bio, md->barrier_error);
2761e95f
MP
2136 else {
2137 spin_lock_irq(&md->deferred_lock);
2138 bio_list_add_head(&md->deferred, bio);
2139 spin_unlock_irq(&md->deferred_lock);
2140 }
af7e466a
MP
2141}
2142
1da177e4
LT
2143/*
2144 * Process the deferred bios
2145 */
ef208587 2146static void dm_wq_work(struct work_struct *work)
1da177e4 2147{
ef208587
MP
2148 struct mapped_device *md = container_of(work, struct mapped_device,
2149 work);
6d6f10df 2150 struct bio *c;
1da177e4 2151
ef208587
MP
2152 down_write(&md->io_lock);
2153
3b00b203 2154 while (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
df12ee99
AK
2155 spin_lock_irq(&md->deferred_lock);
2156 c = bio_list_pop(&md->deferred);
2157 spin_unlock_irq(&md->deferred_lock);
2158
2159 if (!c) {
1eb787ec 2160 clear_bit(DMF_QUEUE_IO_TO_THREAD, &md->flags);
df12ee99
AK
2161 break;
2162 }
022c2611 2163
3b00b203
MP
2164 up_write(&md->io_lock);
2165
e6ee8c0b
KU
2166 if (dm_request_based(md))
2167 generic_make_request(c);
2168 else {
1f98a13f 2169 if (bio_rw_flagged(c, BIO_RW_BARRIER))
e6ee8c0b
KU
2170 process_barrier(md, c);
2171 else
2172 __split_and_process_bio(md, c);
2173 }
3b00b203
MP
2174
2175 down_write(&md->io_lock);
022c2611 2176 }
73d410c0 2177
ef208587 2178 up_write(&md->io_lock);
1da177e4
LT
2179}
2180
9a1fb464 2181static void dm_queue_flush(struct mapped_device *md)
304f3f6a 2182{
3b00b203
MP
2183 clear_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
2184 smp_mb__after_clear_bit();
53d5914f 2185 queue_work(md->wq, &md->work);
304f3f6a
MB
2186}
2187
1da177e4
LT
2188/*
2189 * Swap in a new table (destroying old one).
2190 */
2191int dm_swap_table(struct mapped_device *md, struct dm_table *table)
2192{
754c5fc7 2193 struct queue_limits limits;
93c534ae 2194 int r = -EINVAL;
1da177e4 2195
e61290a4 2196 mutex_lock(&md->suspend_lock);
1da177e4
LT
2197
2198 /* device must be suspended */
cf222b37 2199 if (!dm_suspended(md))
93c534ae 2200 goto out;
1da177e4 2201
754c5fc7
MS
2202 r = dm_calculate_queue_limits(table, &limits);
2203 if (r)
2204 goto out;
2205
e6ee8c0b
KU
2206 /* cannot change the device type, once a table is bound */
2207 if (md->map &&
2208 (dm_table_get_type(md->map) != dm_table_get_type(table))) {
2209 DMWARN("can't change the device type after a table is bound");
2210 goto out;
2211 }
2212
1da177e4 2213 __unbind(md);
754c5fc7 2214 r = __bind(md, table, &limits);
1da177e4 2215
93c534ae 2216out:
e61290a4 2217 mutex_unlock(&md->suspend_lock);
93c534ae 2218 return r;
1da177e4
LT
2219}
2220
2221/*
2222 * Functions to lock and unlock any filesystem running on the
2223 * device.
2224 */
2ca3310e 2225static int lock_fs(struct mapped_device *md)
1da177e4 2226{
e39e2e95 2227 int r;
1da177e4
LT
2228
2229 WARN_ON(md->frozen_sb);
dfbe03f6 2230
db8fef4f 2231 md->frozen_sb = freeze_bdev(md->bdev);
dfbe03f6 2232 if (IS_ERR(md->frozen_sb)) {
cf222b37 2233 r = PTR_ERR(md->frozen_sb);
e39e2e95
AK
2234 md->frozen_sb = NULL;
2235 return r;
dfbe03f6
AK
2236 }
2237
aa8d7c2f
AK
2238 set_bit(DMF_FROZEN, &md->flags);
2239
1da177e4
LT
2240 return 0;
2241}
2242
2ca3310e 2243static void unlock_fs(struct mapped_device *md)
1da177e4 2244{
aa8d7c2f
AK
2245 if (!test_bit(DMF_FROZEN, &md->flags))
2246 return;
2247
db8fef4f 2248 thaw_bdev(md->bdev, md->frozen_sb);
1da177e4 2249 md->frozen_sb = NULL;
aa8d7c2f 2250 clear_bit(DMF_FROZEN, &md->flags);
1da177e4
LT
2251}
2252
2253/*
2254 * We need to be able to change a mapping table under a mounted
2255 * filesystem. For example we might want to move some data in
2256 * the background. Before the table can be swapped with
2257 * dm_bind_table, dm_suspend must be called to flush any in
2258 * flight bios and ensure that any further io gets deferred.
2259 */
cec47e3d
KU
2260/*
2261 * Suspend mechanism in request-based dm.
2262 *
9f518b27
KU
2263 * 1. Flush all I/Os by lock_fs() if needed.
2264 * 2. Stop dispatching any I/O by stopping the request_queue.
2265 * 3. Wait for all in-flight I/Os to be completed or requeued.
cec47e3d 2266 *
9f518b27 2267 * To abort suspend, start the request_queue.
cec47e3d 2268 */
a3d77d35 2269int dm_suspend(struct mapped_device *md, unsigned suspend_flags)
1da177e4 2270{
2ca3310e 2271 struct dm_table *map = NULL;
46125c1c 2272 int r = 0;
a3d77d35 2273 int do_lockfs = suspend_flags & DM_SUSPEND_LOCKFS_FLAG ? 1 : 0;
2e93ccc1 2274 int noflush = suspend_flags & DM_SUSPEND_NOFLUSH_FLAG ? 1 : 0;
1da177e4 2275
e61290a4 2276 mutex_lock(&md->suspend_lock);
2ca3310e 2277
73d410c0
MB
2278 if (dm_suspended(md)) {
2279 r = -EINVAL;
d287483d 2280 goto out_unlock;
73d410c0 2281 }
1da177e4
LT
2282
2283 map = dm_get_table(md);
1da177e4 2284
2e93ccc1
KU
2285 /*
2286 * DMF_NOFLUSH_SUSPENDING must be set before presuspend.
2287 * This flag is cleared before dm_suspend returns.
2288 */
2289 if (noflush)
2290 set_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
2291
cf222b37
AK
2292 /* This does not get reverted if there's an error later. */
2293 dm_table_presuspend_targets(map);
2294
32a926da 2295 /*
9f518b27
KU
2296 * Flush I/O to the device.
2297 * Any I/O submitted after lock_fs() may not be flushed.
2298 * noflush takes precedence over do_lockfs.
2299 * (lock_fs() flushes I/Os and waits for them to complete.)
32a926da
MP
2300 */
2301 if (!noflush && do_lockfs) {
2302 r = lock_fs(md);
2303 if (r)
f431d966 2304 goto out;
aa8d7c2f 2305 }
1da177e4
LT
2306
2307 /*
3b00b203
MP
2308 * Here we must make sure that no processes are submitting requests
2309 * to target drivers i.e. no one may be executing
2310 * __split_and_process_bio. This is called from dm_request and
2311 * dm_wq_work.
2312 *
2313 * To get all processes out of __split_and_process_bio in dm_request,
2314 * we take the write lock. To prevent any process from reentering
2315 * __split_and_process_bio from dm_request, we set
2316 * DMF_QUEUE_IO_TO_THREAD.
2317 *
2318 * To quiesce the thread (dm_wq_work), we set DMF_BLOCK_IO_FOR_SUSPEND
2319 * and call flush_workqueue(md->wq). flush_workqueue will wait until
2320 * dm_wq_work exits and DMF_BLOCK_IO_FOR_SUSPEND will prevent any
2321 * further calls to __split_and_process_bio from dm_wq_work.
1da177e4 2322 */
2ca3310e 2323 down_write(&md->io_lock);
1eb787ec
AK
2324 set_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
2325 set_bit(DMF_QUEUE_IO_TO_THREAD, &md->flags);
2ca3310e 2326 up_write(&md->io_lock);
1da177e4 2327
3b00b203
MP
2328 flush_workqueue(md->wq);
2329
cec47e3d 2330 if (dm_request_based(md))
9f518b27 2331 stop_queue(md->queue);
cec47e3d 2332
1da177e4 2333 /*
3b00b203
MP
2334 * At this point no more requests are entering target request routines.
2335 * We call dm_wait_for_completion to wait for all existing requests
2336 * to finish.
1da177e4 2337 */
401600df 2338 r = dm_wait_for_completion(md, TASK_INTERRUPTIBLE);
1da177e4 2339
2ca3310e 2340 down_write(&md->io_lock);
6d6f10df 2341 if (noflush)
022c2611 2342 clear_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
94d6351e 2343 up_write(&md->io_lock);
2e93ccc1 2344
1da177e4 2345 /* were we interrupted ? */
46125c1c 2346 if (r < 0) {
9a1fb464 2347 dm_queue_flush(md);
73d410c0 2348
cec47e3d 2349 if (dm_request_based(md))
9f518b27 2350 start_queue(md->queue);
cec47e3d 2351
2ca3310e 2352 unlock_fs(md);
2e93ccc1 2353 goto out; /* pushback list is already flushed, so skip flush */
2ca3310e 2354 }
1da177e4 2355
3b00b203
MP
2356 /*
2357 * If dm_wait_for_completion returned 0, the device is completely
2358 * quiescent now. There is no request-processing activity. All new
2359 * requests are being added to md->deferred list.
2360 */
2361
cf222b37 2362 dm_table_postsuspend_targets(map);
1da177e4 2363
2ca3310e 2364 set_bit(DMF_SUSPENDED, &md->flags);
b84b0287 2365
2ca3310e
AK
2366out:
2367 dm_table_put(map);
d287483d
AK
2368
2369out_unlock:
e61290a4 2370 mutex_unlock(&md->suspend_lock);
cf222b37 2371 return r;
1da177e4
LT
2372}
2373
2374int dm_resume(struct mapped_device *md)
2375{
cf222b37 2376 int r = -EINVAL;
cf222b37 2377 struct dm_table *map = NULL;
1da177e4 2378
e61290a4 2379 mutex_lock(&md->suspend_lock);
2ca3310e 2380 if (!dm_suspended(md))
cf222b37 2381 goto out;
cf222b37
AK
2382
2383 map = dm_get_table(md);
2ca3310e 2384 if (!map || !dm_table_get_size(map))
cf222b37 2385 goto out;
1da177e4 2386
8757b776
MB
2387 r = dm_table_resume_targets(map);
2388 if (r)
2389 goto out;
2ca3310e 2390
9a1fb464 2391 dm_queue_flush(md);
2ca3310e 2392
cec47e3d
KU
2393 /*
2394 * Flushing deferred I/Os must be done after targets are resumed
2395 * so that mapping of targets can work correctly.
2396 * Request-based dm is queueing the deferred I/Os in its request_queue.
2397 */
2398 if (dm_request_based(md))
2399 start_queue(md->queue);
2400
2ca3310e
AK
2401 unlock_fs(md);
2402
2403 clear_bit(DMF_SUSPENDED, &md->flags);
2404
1da177e4 2405 dm_table_unplug_all(map);
cf222b37
AK
2406 r = 0;
2407out:
2408 dm_table_put(map);
e61290a4 2409 mutex_unlock(&md->suspend_lock);
2ca3310e 2410
cf222b37 2411 return r;
1da177e4
LT
2412}
2413
2414/*-----------------------------------------------------------------
2415 * Event notification.
2416 *---------------------------------------------------------------*/
60935eb2
MB
2417void dm_kobject_uevent(struct mapped_device *md, enum kobject_action action,
2418 unsigned cookie)
69267a30 2419{
60935eb2
MB
2420 char udev_cookie[DM_COOKIE_LENGTH];
2421 char *envp[] = { udev_cookie, NULL };
2422
2423 if (!cookie)
2424 kobject_uevent(&disk_to_dev(md->disk)->kobj, action);
2425 else {
2426 snprintf(udev_cookie, DM_COOKIE_LENGTH, "%s=%u",
2427 DM_COOKIE_ENV_VAR_NAME, cookie);
2428 kobject_uevent_env(&disk_to_dev(md->disk)->kobj, action, envp);
2429 }
69267a30
AK
2430}
2431
7a8c3d3b
MA
2432uint32_t dm_next_uevent_seq(struct mapped_device *md)
2433{
2434 return atomic_add_return(1, &md->uevent_seq);
2435}
2436
1da177e4
LT
2437uint32_t dm_get_event_nr(struct mapped_device *md)
2438{
2439 return atomic_read(&md->event_nr);
2440}
2441
2442int dm_wait_event(struct mapped_device *md, int event_nr)
2443{
2444 return wait_event_interruptible(md->eventq,
2445 (event_nr != atomic_read(&md->event_nr)));
2446}
2447
7a8c3d3b
MA
2448void dm_uevent_add(struct mapped_device *md, struct list_head *elist)
2449{
2450 unsigned long flags;
2451
2452 spin_lock_irqsave(&md->uevent_lock, flags);
2453 list_add(elist, &md->uevent_list);
2454 spin_unlock_irqrestore(&md->uevent_lock, flags);
2455}
2456
1da177e4
LT
2457/*
2458 * The gendisk is only valid as long as you have a reference
2459 * count on 'md'.
2460 */
2461struct gendisk *dm_disk(struct mapped_device *md)
2462{
2463 return md->disk;
2464}
2465
784aae73
MB
2466struct kobject *dm_kobject(struct mapped_device *md)
2467{
2468 return &md->kobj;
2469}
2470
2471/*
2472 * struct mapped_device should not be exported outside of dm.c
2473 * so use this check to verify that kobj is part of md structure
2474 */
2475struct mapped_device *dm_get_from_kobject(struct kobject *kobj)
2476{
2477 struct mapped_device *md;
2478
2479 md = container_of(kobj, struct mapped_device, kobj);
2480 if (&md->kobj != kobj)
2481 return NULL;
2482
4d89b7b4
MB
2483 if (test_bit(DMF_FREEING, &md->flags) ||
2484 test_bit(DMF_DELETING, &md->flags))
2485 return NULL;
2486
784aae73
MB
2487 dm_get(md);
2488 return md;
2489}
2490
1da177e4
LT
2491int dm_suspended(struct mapped_device *md)
2492{
2493 return test_bit(DMF_SUSPENDED, &md->flags);
2494}
2495
2e93ccc1
KU
2496int dm_noflush_suspending(struct dm_target *ti)
2497{
2498 struct mapped_device *md = dm_table_get_md(ti->table);
2499 int r = __noflush_suspending(md);
2500
2501 dm_put(md);
2502
2503 return r;
2504}
2505EXPORT_SYMBOL_GPL(dm_noflush_suspending);
2506
e6ee8c0b
KU
2507struct dm_md_mempools *dm_alloc_md_mempools(unsigned type)
2508{
2509 struct dm_md_mempools *pools = kmalloc(sizeof(*pools), GFP_KERNEL);
2510
2511 if (!pools)
2512 return NULL;
2513
2514 pools->io_pool = (type == DM_TYPE_BIO_BASED) ?
2515 mempool_create_slab_pool(MIN_IOS, _io_cache) :
2516 mempool_create_slab_pool(MIN_IOS, _rq_bio_info_cache);
2517 if (!pools->io_pool)
2518 goto free_pools_and_out;
2519
2520 pools->tio_pool = (type == DM_TYPE_BIO_BASED) ?
2521 mempool_create_slab_pool(MIN_IOS, _tio_cache) :
2522 mempool_create_slab_pool(MIN_IOS, _rq_tio_cache);
2523 if (!pools->tio_pool)
2524 goto free_io_pool_and_out;
2525
2526 pools->bs = (type == DM_TYPE_BIO_BASED) ?
2527 bioset_create(16, 0) : bioset_create(MIN_IOS, 0);
2528 if (!pools->bs)
2529 goto free_tio_pool_and_out;
2530
2531 return pools;
2532
2533free_tio_pool_and_out:
2534 mempool_destroy(pools->tio_pool);
2535
2536free_io_pool_and_out:
2537 mempool_destroy(pools->io_pool);
2538
2539free_pools_and_out:
2540 kfree(pools);
2541
2542 return NULL;
2543}
2544
2545void dm_free_md_mempools(struct dm_md_mempools *pools)
2546{
2547 if (!pools)
2548 return;
2549
2550 if (pools->io_pool)
2551 mempool_destroy(pools->io_pool);
2552
2553 if (pools->tio_pool)
2554 mempool_destroy(pools->tio_pool);
2555
2556 if (pools->bs)
2557 bioset_free(pools->bs);
2558
2559 kfree(pools);
2560}
2561
83d5cde4 2562static const struct block_device_operations dm_blk_dops = {
1da177e4
LT
2563 .open = dm_blk_open,
2564 .release = dm_blk_close,
aa129a22 2565 .ioctl = dm_blk_ioctl,
3ac51e74 2566 .getgeo = dm_blk_getgeo,
1da177e4
LT
2567 .owner = THIS_MODULE
2568};
2569
2570EXPORT_SYMBOL(dm_get_mapinfo);
2571
2572/*
2573 * module hooks
2574 */
2575module_init(dm_init);
2576module_exit(dm_exit);
2577
2578module_param(major, uint, 0);
2579MODULE_PARM_DESC(major, "The major number of the device mapper");
2580MODULE_DESCRIPTION(DM_NAME " driver");
2581MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
2582MODULE_LICENSE("GPL");
This page took 0.707963 seconds and 5 git commands to generate.