dm mpath: stop queueing IO when no valid paths exist
[linux-2.6-block.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>
1da177e4
LT
17#include <linux/mempool.h>
18#include <linux/slab.h>
19#include <linux/idr.h>
3ac51e74 20#include <linux/hdreg.h>
3f77316d 21#include <linux/delay.h>
55782138
LZ
22
23#include <trace/events/block.h>
1da177e4 24
72d94861
AK
25#define DM_MSG_PREFIX "core"
26
71a16736
NK
27#ifdef CONFIG_PRINTK
28/*
29 * ratelimit state to be used in DMXXX_LIMIT().
30 */
31DEFINE_RATELIMIT_STATE(dm_ratelimit_state,
32 DEFAULT_RATELIMIT_INTERVAL,
33 DEFAULT_RATELIMIT_BURST);
34EXPORT_SYMBOL(dm_ratelimit_state);
35#endif
36
60935eb2
MB
37/*
38 * Cookies are numeric values sent with CHANGE and REMOVE
39 * uevents while resuming, removing or renaming the device.
40 */
41#define DM_COOKIE_ENV_VAR_NAME "DM_COOKIE"
42#define DM_COOKIE_LENGTH 24
43
1da177e4
LT
44static const char *_name = DM_NAME;
45
46static unsigned int major = 0;
47static unsigned int _major = 0;
48
d15b774c
AK
49static DEFINE_IDR(_minor_idr);
50
f32c10b0 51static DEFINE_SPINLOCK(_minor_lock);
2c140a24
MP
52
53static void do_deferred_remove(struct work_struct *w);
54
55static DECLARE_WORK(deferred_remove_work, do_deferred_remove);
56
acfe0ad7
MP
57static struct workqueue_struct *deferred_remove_workqueue;
58
1da177e4 59/*
8fbf26ad 60 * For bio-based dm.
1da177e4
LT
61 * One of these is allocated per bio.
62 */
63struct dm_io {
64 struct mapped_device *md;
65 int error;
1da177e4 66 atomic_t io_count;
6ae2fa67 67 struct bio *bio;
3eaf840e 68 unsigned long start_time;
f88fb981 69 spinlock_t endio_lock;
fd2ed4d2 70 struct dm_stats_aux stats_aux;
1da177e4
LT
71};
72
8fbf26ad
KU
73/*
74 * For request-based dm.
75 * One of these is allocated per request.
76 */
77struct dm_rq_target_io {
78 struct mapped_device *md;
79 struct dm_target *ti;
80 struct request *orig, clone;
81 int error;
82 union map_info info;
83};
84
85/*
94818742
KO
86 * For request-based dm - the bio clones we allocate are embedded in these
87 * structs.
88 *
89 * We allocate these with bio_alloc_bioset, using the front_pad parameter when
90 * the bioset is created - this means the bio has to come at the end of the
91 * struct.
8fbf26ad
KU
92 */
93struct dm_rq_clone_bio_info {
94 struct bio *orig;
cec47e3d 95 struct dm_rq_target_io *tio;
94818742 96 struct bio clone;
8fbf26ad
KU
97};
98
cec47e3d
KU
99union map_info *dm_get_rq_mapinfo(struct request *rq)
100{
101 if (rq && rq->end_io_data)
102 return &((struct dm_rq_target_io *)rq->end_io_data)->info;
103 return NULL;
104}
105EXPORT_SYMBOL_GPL(dm_get_rq_mapinfo);
106
ba61fdd1
JM
107#define MINOR_ALLOCED ((void *)-1)
108
1da177e4
LT
109/*
110 * Bits for the md->flags field.
111 */
1eb787ec 112#define DMF_BLOCK_IO_FOR_SUSPEND 0
1da177e4 113#define DMF_SUSPENDED 1
aa8d7c2f 114#define DMF_FROZEN 2
fba9f90e 115#define DMF_FREEING 3
5c6bd75d 116#define DMF_DELETING 4
2e93ccc1 117#define DMF_NOFLUSH_SUSPENDING 5
d5b9dd04 118#define DMF_MERGE_IS_OPTIONAL 6
2c140a24 119#define DMF_DEFERRED_REMOVE 7
1da177e4 120
83d5e5b0
MP
121/*
122 * A dummy definition to make RCU happy.
123 * struct dm_table should never be dereferenced in this file.
124 */
125struct dm_table {
126 int undefined__;
127};
128
304f3f6a
MB
129/*
130 * Work processed by per-device workqueue.
131 */
1da177e4 132struct mapped_device {
83d5e5b0 133 struct srcu_struct io_barrier;
e61290a4 134 struct mutex suspend_lock;
1da177e4 135 atomic_t holders;
5c6bd75d 136 atomic_t open_count;
1da177e4 137
2a7faeb1
MP
138 /*
139 * The current mapping.
140 * Use dm_get_live_table{_fast} or take suspend_lock for
141 * dereference.
142 */
143 struct dm_table *map;
144
1da177e4
LT
145 unsigned long flags;
146
165125e1 147 struct request_queue *queue;
a5664dad 148 unsigned type;
4a0b4ddf 149 /* Protect queue and type against concurrent access. */
a5664dad
MS
150 struct mutex type_lock;
151
36a0456f
AK
152 struct target_type *immutable_target_type;
153
1da177e4 154 struct gendisk *disk;
7e51f257 155 char name[16];
1da177e4
LT
156
157 void *interface_ptr;
158
159 /*
160 * A list of ios that arrived while we were suspended.
161 */
316d315b 162 atomic_t pending[2];
1da177e4 163 wait_queue_head_t wait;
53d5914f 164 struct work_struct work;
74859364 165 struct bio_list deferred;
022c2611 166 spinlock_t deferred_lock;
1da177e4 167
af7e466a 168 /*
29e4013d 169 * Processing queue (flush)
304f3f6a
MB
170 */
171 struct workqueue_struct *wq;
172
1da177e4
LT
173 /*
174 * io objects are allocated from here.
175 */
176 mempool_t *io_pool;
1da177e4 177
9faf400f
SB
178 struct bio_set *bs;
179
1da177e4
LT
180 /*
181 * Event handling.
182 */
183 atomic_t event_nr;
184 wait_queue_head_t eventq;
7a8c3d3b
MA
185 atomic_t uevent_seq;
186 struct list_head uevent_list;
187 spinlock_t uevent_lock; /* Protect access to uevent_list */
1da177e4
LT
188
189 /*
190 * freeze/thaw support require holding onto a super block
191 */
192 struct super_block *frozen_sb;
db8fef4f 193 struct block_device *bdev;
3ac51e74
DW
194
195 /* forced geometry settings */
196 struct hd_geometry geometry;
784aae73 197
2995fa78
MP
198 /* kobject and completion */
199 struct dm_kobject_holder kobj_holder;
be35f486 200
d87f4c14
TH
201 /* zero-length flush that will be cloned and submitted to targets */
202 struct bio flush_bio;
fd2ed4d2
MP
203
204 struct dm_stats stats;
1da177e4
LT
205};
206
e6ee8c0b
KU
207/*
208 * For mempools pre-allocation at the table loading time.
209 */
210struct dm_md_mempools {
211 mempool_t *io_pool;
e6ee8c0b
KU
212 struct bio_set *bs;
213};
214
6cfa5857
MS
215#define RESERVED_BIO_BASED_IOS 16
216#define RESERVED_REQUEST_BASED_IOS 256
f4790826 217#define RESERVED_MAX_IOS 1024
e18b890b 218static struct kmem_cache *_io_cache;
8fbf26ad 219static struct kmem_cache *_rq_tio_cache;
94818742 220
e8603136
MS
221/*
222 * Bio-based DM's mempools' reserved IOs set by the user.
223 */
224static unsigned reserved_bio_based_ios = RESERVED_BIO_BASED_IOS;
225
f4790826
MS
226/*
227 * Request-based DM's mempools' reserved IOs set by the user.
228 */
229static unsigned reserved_rq_based_ios = RESERVED_REQUEST_BASED_IOS;
230
231static unsigned __dm_get_reserved_ios(unsigned *reserved_ios,
232 unsigned def, unsigned max)
233{
234 unsigned ios = ACCESS_ONCE(*reserved_ios);
235 unsigned modified_ios = 0;
236
237 if (!ios)
238 modified_ios = def;
239 else if (ios > max)
240 modified_ios = max;
241
242 if (modified_ios) {
243 (void)cmpxchg(reserved_ios, ios, modified_ios);
244 ios = modified_ios;
245 }
246
247 return ios;
248}
249
e8603136
MS
250unsigned dm_get_reserved_bio_based_ios(void)
251{
252 return __dm_get_reserved_ios(&reserved_bio_based_ios,
253 RESERVED_BIO_BASED_IOS, RESERVED_MAX_IOS);
254}
255EXPORT_SYMBOL_GPL(dm_get_reserved_bio_based_ios);
256
f4790826
MS
257unsigned dm_get_reserved_rq_based_ios(void)
258{
259 return __dm_get_reserved_ios(&reserved_rq_based_ios,
260 RESERVED_REQUEST_BASED_IOS, RESERVED_MAX_IOS);
261}
262EXPORT_SYMBOL_GPL(dm_get_reserved_rq_based_ios);
263
1da177e4
LT
264static int __init local_init(void)
265{
51157b4a 266 int r = -ENOMEM;
1da177e4 267
1da177e4 268 /* allocate a slab for the dm_ios */
028867ac 269 _io_cache = KMEM_CACHE(dm_io, 0);
1da177e4 270 if (!_io_cache)
51157b4a 271 return r;
1da177e4 272
8fbf26ad
KU
273 _rq_tio_cache = KMEM_CACHE(dm_rq_target_io, 0);
274 if (!_rq_tio_cache)
dba14160 275 goto out_free_io_cache;
8fbf26ad 276
51e5b2bd 277 r = dm_uevent_init();
51157b4a 278 if (r)
23e5083b 279 goto out_free_rq_tio_cache;
51e5b2bd 280
acfe0ad7
MP
281 deferred_remove_workqueue = alloc_workqueue("kdmremove", WQ_UNBOUND, 1);
282 if (!deferred_remove_workqueue) {
283 r = -ENOMEM;
284 goto out_uevent_exit;
285 }
286
1da177e4
LT
287 _major = major;
288 r = register_blkdev(_major, _name);
51157b4a 289 if (r < 0)
acfe0ad7 290 goto out_free_workqueue;
1da177e4
LT
291
292 if (!_major)
293 _major = r;
294
295 return 0;
51157b4a 296
acfe0ad7
MP
297out_free_workqueue:
298 destroy_workqueue(deferred_remove_workqueue);
51157b4a
KU
299out_uevent_exit:
300 dm_uevent_exit();
8fbf26ad
KU
301out_free_rq_tio_cache:
302 kmem_cache_destroy(_rq_tio_cache);
51157b4a
KU
303out_free_io_cache:
304 kmem_cache_destroy(_io_cache);
305
306 return r;
1da177e4
LT
307}
308
309static void local_exit(void)
310{
2c140a24 311 flush_scheduled_work();
acfe0ad7 312 destroy_workqueue(deferred_remove_workqueue);
2c140a24 313
8fbf26ad 314 kmem_cache_destroy(_rq_tio_cache);
1da177e4 315 kmem_cache_destroy(_io_cache);
00d59405 316 unregister_blkdev(_major, _name);
51e5b2bd 317 dm_uevent_exit();
1da177e4
LT
318
319 _major = 0;
320
321 DMINFO("cleaned up");
322}
323
b9249e55 324static int (*_inits[])(void) __initdata = {
1da177e4
LT
325 local_init,
326 dm_target_init,
327 dm_linear_init,
328 dm_stripe_init,
952b3557 329 dm_io_init,
945fa4d2 330 dm_kcopyd_init,
1da177e4 331 dm_interface_init,
fd2ed4d2 332 dm_statistics_init,
1da177e4
LT
333};
334
b9249e55 335static void (*_exits[])(void) = {
1da177e4
LT
336 local_exit,
337 dm_target_exit,
338 dm_linear_exit,
339 dm_stripe_exit,
952b3557 340 dm_io_exit,
945fa4d2 341 dm_kcopyd_exit,
1da177e4 342 dm_interface_exit,
fd2ed4d2 343 dm_statistics_exit,
1da177e4
LT
344};
345
346static int __init dm_init(void)
347{
348 const int count = ARRAY_SIZE(_inits);
349
350 int r, i;
351
352 for (i = 0; i < count; i++) {
353 r = _inits[i]();
354 if (r)
355 goto bad;
356 }
357
358 return 0;
359
360 bad:
361 while (i--)
362 _exits[i]();
363
364 return r;
365}
366
367static void __exit dm_exit(void)
368{
369 int i = ARRAY_SIZE(_exits);
370
371 while (i--)
372 _exits[i]();
d15b774c
AK
373
374 /*
375 * Should be empty by this point.
376 */
d15b774c 377 idr_destroy(&_minor_idr);
1da177e4
LT
378}
379
380/*
381 * Block device functions
382 */
432a212c
MA
383int dm_deleting_md(struct mapped_device *md)
384{
385 return test_bit(DMF_DELETING, &md->flags);
386}
387
fe5f9f2c 388static int dm_blk_open(struct block_device *bdev, fmode_t mode)
1da177e4
LT
389{
390 struct mapped_device *md;
391
fba9f90e
JM
392 spin_lock(&_minor_lock);
393
fe5f9f2c 394 md = bdev->bd_disk->private_data;
fba9f90e
JM
395 if (!md)
396 goto out;
397
5c6bd75d 398 if (test_bit(DMF_FREEING, &md->flags) ||
432a212c 399 dm_deleting_md(md)) {
fba9f90e
JM
400 md = NULL;
401 goto out;
402 }
403
1da177e4 404 dm_get(md);
5c6bd75d 405 atomic_inc(&md->open_count);
fba9f90e
JM
406
407out:
408 spin_unlock(&_minor_lock);
409
410 return md ? 0 : -ENXIO;
1da177e4
LT
411}
412
db2a144b 413static void dm_blk_close(struct gendisk *disk, fmode_t mode)
1da177e4 414{
fe5f9f2c 415 struct mapped_device *md = disk->private_data;
6e9624b8 416
4a1aeb98
MB
417 spin_lock(&_minor_lock);
418
2c140a24
MP
419 if (atomic_dec_and_test(&md->open_count) &&
420 (test_bit(DMF_DEFERRED_REMOVE, &md->flags)))
acfe0ad7 421 queue_work(deferred_remove_workqueue, &deferred_remove_work);
2c140a24 422
1da177e4 423 dm_put(md);
4a1aeb98
MB
424
425 spin_unlock(&_minor_lock);
1da177e4
LT
426}
427
5c6bd75d
AK
428int dm_open_count(struct mapped_device *md)
429{
430 return atomic_read(&md->open_count);
431}
432
433/*
434 * Guarantees nothing is using the device before it's deleted.
435 */
2c140a24 436int dm_lock_for_deletion(struct mapped_device *md, bool mark_deferred, bool only_deferred)
5c6bd75d
AK
437{
438 int r = 0;
439
440 spin_lock(&_minor_lock);
441
2c140a24 442 if (dm_open_count(md)) {
5c6bd75d 443 r = -EBUSY;
2c140a24
MP
444 if (mark_deferred)
445 set_bit(DMF_DEFERRED_REMOVE, &md->flags);
446 } else if (only_deferred && !test_bit(DMF_DEFERRED_REMOVE, &md->flags))
447 r = -EEXIST;
5c6bd75d
AK
448 else
449 set_bit(DMF_DELETING, &md->flags);
450
451 spin_unlock(&_minor_lock);
452
453 return r;
454}
455
2c140a24
MP
456int dm_cancel_deferred_remove(struct mapped_device *md)
457{
458 int r = 0;
459
460 spin_lock(&_minor_lock);
461
462 if (test_bit(DMF_DELETING, &md->flags))
463 r = -EBUSY;
464 else
465 clear_bit(DMF_DEFERRED_REMOVE, &md->flags);
466
467 spin_unlock(&_minor_lock);
468
469 return r;
470}
471
472static void do_deferred_remove(struct work_struct *w)
473{
474 dm_deferred_remove();
475}
476
fd2ed4d2
MP
477sector_t dm_get_size(struct mapped_device *md)
478{
479 return get_capacity(md->disk);
480}
481
9974fa2c
MS
482struct request_queue *dm_get_md_queue(struct mapped_device *md)
483{
484 return md->queue;
485}
486
fd2ed4d2
MP
487struct dm_stats *dm_get_stats(struct mapped_device *md)
488{
489 return &md->stats;
490}
491
3ac51e74
DW
492static int dm_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
493{
494 struct mapped_device *md = bdev->bd_disk->private_data;
495
496 return dm_get_geometry(md, geo);
497}
498
fe5f9f2c 499static int dm_blk_ioctl(struct block_device *bdev, fmode_t mode,
aa129a22
MB
500 unsigned int cmd, unsigned long arg)
501{
fe5f9f2c 502 struct mapped_device *md = bdev->bd_disk->private_data;
83d5e5b0 503 int srcu_idx;
6c182cd8 504 struct dm_table *map;
aa129a22
MB
505 struct dm_target *tgt;
506 int r = -ENOTTY;
507
6c182cd8 508retry:
83d5e5b0
MP
509 map = dm_get_live_table(md, &srcu_idx);
510
aa129a22
MB
511 if (!map || !dm_table_get_size(map))
512 goto out;
513
514 /* We only support devices that have a single target */
515 if (dm_table_get_num_targets(map) != 1)
516 goto out;
517
518 tgt = dm_table_get_target(map, 0);
519
4f186f8b 520 if (dm_suspended_md(md)) {
aa129a22
MB
521 r = -EAGAIN;
522 goto out;
523 }
524
525 if (tgt->type->ioctl)
647b3d00 526 r = tgt->type->ioctl(tgt, cmd, arg);
aa129a22
MB
527
528out:
83d5e5b0 529 dm_put_live_table(md, srcu_idx);
aa129a22 530
6c182cd8
HR
531 if (r == -ENOTCONN) {
532 msleep(10);
533 goto retry;
534 }
535
aa129a22
MB
536 return r;
537}
538
028867ac 539static struct dm_io *alloc_io(struct mapped_device *md)
1da177e4
LT
540{
541 return mempool_alloc(md->io_pool, GFP_NOIO);
542}
543
028867ac 544static void free_io(struct mapped_device *md, struct dm_io *io)
1da177e4
LT
545{
546 mempool_free(io, md->io_pool);
547}
548
028867ac 549static void free_tio(struct mapped_device *md, struct dm_target_io *tio)
1da177e4 550{
dba14160 551 bio_put(&tio->clone);
1da177e4
LT
552}
553
08885643
KU
554static struct dm_rq_target_io *alloc_rq_tio(struct mapped_device *md,
555 gfp_t gfp_mask)
cec47e3d 556{
5f015204 557 return mempool_alloc(md->io_pool, gfp_mask);
cec47e3d
KU
558}
559
560static void free_rq_tio(struct dm_rq_target_io *tio)
561{
5f015204 562 mempool_free(tio, tio->md->io_pool);
cec47e3d
KU
563}
564
90abb8c4
KU
565static int md_in_flight(struct mapped_device *md)
566{
567 return atomic_read(&md->pending[READ]) +
568 atomic_read(&md->pending[WRITE]);
569}
570
3eaf840e
JNN
571static void start_io_acct(struct dm_io *io)
572{
573 struct mapped_device *md = io->md;
fd2ed4d2 574 struct bio *bio = io->bio;
c9959059 575 int cpu;
fd2ed4d2 576 int rw = bio_data_dir(bio);
3eaf840e
JNN
577
578 io->start_time = jiffies;
579
074a7aca
TH
580 cpu = part_stat_lock();
581 part_round_stats(cpu, &dm_disk(md)->part0);
582 part_stat_unlock();
1e9bb880
SL
583 atomic_set(&dm_disk(md)->part0.in_flight[rw],
584 atomic_inc_return(&md->pending[rw]));
fd2ed4d2
MP
585
586 if (unlikely(dm_stats_used(&md->stats)))
4f024f37 587 dm_stats_account_io(&md->stats, bio->bi_rw, bio->bi_iter.bi_sector,
fd2ed4d2 588 bio_sectors(bio), false, 0, &io->stats_aux);
3eaf840e
JNN
589}
590
d221d2e7 591static void end_io_acct(struct dm_io *io)
3eaf840e
JNN
592{
593 struct mapped_device *md = io->md;
594 struct bio *bio = io->bio;
595 unsigned long duration = jiffies - io->start_time;
c9959059 596 int pending, cpu;
3eaf840e
JNN
597 int rw = bio_data_dir(bio);
598
074a7aca
TH
599 cpu = part_stat_lock();
600 part_round_stats(cpu, &dm_disk(md)->part0);
601 part_stat_add(cpu, &dm_disk(md)->part0, ticks[rw], duration);
602 part_stat_unlock();
3eaf840e 603
fd2ed4d2 604 if (unlikely(dm_stats_used(&md->stats)))
4f024f37 605 dm_stats_account_io(&md->stats, bio->bi_rw, bio->bi_iter.bi_sector,
fd2ed4d2
MP
606 bio_sectors(bio), true, duration, &io->stats_aux);
607
af7e466a
MP
608 /*
609 * After this is decremented the bio must not be touched if it is
d87f4c14 610 * a flush.
af7e466a 611 */
1e9bb880
SL
612 pending = atomic_dec_return(&md->pending[rw]);
613 atomic_set(&dm_disk(md)->part0.in_flight[rw], pending);
316d315b 614 pending += atomic_read(&md->pending[rw^0x1]);
3eaf840e 615
d221d2e7
MP
616 /* nudge anyone waiting on suspend queue */
617 if (!pending)
618 wake_up(&md->wait);
3eaf840e
JNN
619}
620
1da177e4
LT
621/*
622 * Add the bio to the list of deferred io.
623 */
92c63902 624static void queue_io(struct mapped_device *md, struct bio *bio)
1da177e4 625{
05447420 626 unsigned long flags;
1da177e4 627
05447420 628 spin_lock_irqsave(&md->deferred_lock, flags);
1da177e4 629 bio_list_add(&md->deferred, bio);
05447420 630 spin_unlock_irqrestore(&md->deferred_lock, flags);
6a8736d1 631 queue_work(md->wq, &md->work);
1da177e4
LT
632}
633
634/*
635 * Everyone (including functions in this file), should use this
636 * function to access the md->map field, and make sure they call
83d5e5b0 637 * dm_put_live_table() when finished.
1da177e4 638 */
83d5e5b0 639struct dm_table *dm_get_live_table(struct mapped_device *md, int *srcu_idx) __acquires(md->io_barrier)
1da177e4 640{
83d5e5b0
MP
641 *srcu_idx = srcu_read_lock(&md->io_barrier);
642
643 return srcu_dereference(md->map, &md->io_barrier);
644}
1da177e4 645
83d5e5b0
MP
646void dm_put_live_table(struct mapped_device *md, int srcu_idx) __releases(md->io_barrier)
647{
648 srcu_read_unlock(&md->io_barrier, srcu_idx);
649}
650
651void dm_sync_table(struct mapped_device *md)
652{
653 synchronize_srcu(&md->io_barrier);
654 synchronize_rcu_expedited();
655}
656
657/*
658 * A fast alternative to dm_get_live_table/dm_put_live_table.
659 * The caller must not block between these two functions.
660 */
661static struct dm_table *dm_get_live_table_fast(struct mapped_device *md) __acquires(RCU)
662{
663 rcu_read_lock();
664 return rcu_dereference(md->map);
665}
1da177e4 666
83d5e5b0
MP
667static void dm_put_live_table_fast(struct mapped_device *md) __releases(RCU)
668{
669 rcu_read_unlock();
1da177e4
LT
670}
671
3ac51e74
DW
672/*
673 * Get the geometry associated with a dm device
674 */
675int dm_get_geometry(struct mapped_device *md, struct hd_geometry *geo)
676{
677 *geo = md->geometry;
678
679 return 0;
680}
681
682/*
683 * Set the geometry of a device.
684 */
685int dm_set_geometry(struct mapped_device *md, struct hd_geometry *geo)
686{
687 sector_t sz = (sector_t)geo->cylinders * geo->heads * geo->sectors;
688
689 if (geo->start > sz) {
690 DMWARN("Start sector is beyond the geometry limits.");
691 return -EINVAL;
692 }
693
694 md->geometry = *geo;
695
696 return 0;
697}
698
1da177e4
LT
699/*-----------------------------------------------------------------
700 * CRUD START:
701 * A more elegant soln is in the works that uses the queue
702 * merge fn, unfortunately there are a couple of changes to
703 * the block layer that I want to make for this. So in the
704 * interests of getting something for people to use I give
705 * you this clearly demarcated crap.
706 *---------------------------------------------------------------*/
707
2e93ccc1
KU
708static int __noflush_suspending(struct mapped_device *md)
709{
710 return test_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
711}
712
1da177e4
LT
713/*
714 * Decrements the number of outstanding ios that a bio has been
715 * cloned into, completing the original io if necc.
716 */
858119e1 717static void dec_pending(struct dm_io *io, int error)
1da177e4 718{
2e93ccc1 719 unsigned long flags;
b35f8caa
MB
720 int io_error;
721 struct bio *bio;
722 struct mapped_device *md = io->md;
2e93ccc1
KU
723
724 /* Push-back supersedes any I/O errors */
f88fb981
KU
725 if (unlikely(error)) {
726 spin_lock_irqsave(&io->endio_lock, flags);
727 if (!(io->error > 0 && __noflush_suspending(md)))
728 io->error = error;
729 spin_unlock_irqrestore(&io->endio_lock, flags);
730 }
1da177e4
LT
731
732 if (atomic_dec_and_test(&io->io_count)) {
2e93ccc1
KU
733 if (io->error == DM_ENDIO_REQUEUE) {
734 /*
735 * Target requested pushing back the I/O.
2e93ccc1 736 */
022c2611 737 spin_lock_irqsave(&md->deferred_lock, flags);
6a8736d1
TH
738 if (__noflush_suspending(md))
739 bio_list_add_head(&md->deferred, io->bio);
740 else
2e93ccc1
KU
741 /* noflush suspend was interrupted. */
742 io->error = -EIO;
022c2611 743 spin_unlock_irqrestore(&md->deferred_lock, flags);
2e93ccc1
KU
744 }
745
b35f8caa
MB
746 io_error = io->error;
747 bio = io->bio;
6a8736d1
TH
748 end_io_acct(io);
749 free_io(md, io);
750
751 if (io_error == DM_ENDIO_REQUEUE)
752 return;
2e93ccc1 753
4f024f37 754 if ((bio->bi_rw & REQ_FLUSH) && bio->bi_iter.bi_size) {
af7e466a 755 /*
6a8736d1
TH
756 * Preflush done for flush with data, reissue
757 * without REQ_FLUSH.
af7e466a 758 */
6a8736d1
TH
759 bio->bi_rw &= ~REQ_FLUSH;
760 queue_io(md, bio);
af7e466a 761 } else {
b372d360 762 /* done with normal IO or empty flush */
0a82a8d1 763 trace_block_bio_complete(md->queue, bio, io_error);
b372d360 764 bio_endio(bio, io_error);
b35f8caa 765 }
1da177e4
LT
766 }
767}
768
7eee4ae2
MS
769static void disable_write_same(struct mapped_device *md)
770{
771 struct queue_limits *limits = dm_get_queue_limits(md);
772
773 /* device doesn't really support WRITE SAME, disable it */
774 limits->max_write_same_sectors = 0;
775}
776
6712ecf8 777static void clone_endio(struct bio *bio, int error)
1da177e4
LT
778{
779 int r = 0;
bfc6d41c 780 struct dm_target_io *tio = container_of(bio, struct dm_target_io, clone);
b35f8caa 781 struct dm_io *io = tio->io;
9faf400f 782 struct mapped_device *md = tio->io->md;
1da177e4
LT
783 dm_endio_fn endio = tio->ti->type->end_io;
784
1da177e4
LT
785 if (!bio_flagged(bio, BIO_UPTODATE) && !error)
786 error = -EIO;
787
788 if (endio) {
7de3ee57 789 r = endio(tio->ti, bio, error);
2e93ccc1
KU
790 if (r < 0 || r == DM_ENDIO_REQUEUE)
791 /*
792 * error and requeue request are handled
793 * in dec_pending().
794 */
1da177e4 795 error = r;
45cbcd79
KU
796 else if (r == DM_ENDIO_INCOMPLETE)
797 /* The target will handle the io */
6712ecf8 798 return;
45cbcd79
KU
799 else if (r) {
800 DMWARN("unimplemented target endio return value: %d", r);
801 BUG();
802 }
1da177e4
LT
803 }
804
7eee4ae2
MS
805 if (unlikely(r == -EREMOTEIO && (bio->bi_rw & REQ_WRITE_SAME) &&
806 !bdev_get_queue(bio->bi_bdev)->limits.max_write_same_sectors))
807 disable_write_same(md);
808
9faf400f 809 free_tio(md, tio);
b35f8caa 810 dec_pending(io, error);
1da177e4
LT
811}
812
cec47e3d
KU
813/*
814 * Partial completion handling for request-based dm
815 */
816static void end_clone_bio(struct bio *clone, int error)
817{
bfc6d41c
MP
818 struct dm_rq_clone_bio_info *info =
819 container_of(clone, struct dm_rq_clone_bio_info, clone);
cec47e3d
KU
820 struct dm_rq_target_io *tio = info->tio;
821 struct bio *bio = info->orig;
4f024f37 822 unsigned int nr_bytes = info->orig->bi_iter.bi_size;
cec47e3d
KU
823
824 bio_put(clone);
825
826 if (tio->error)
827 /*
828 * An error has already been detected on the request.
829 * Once error occurred, just let clone->end_io() handle
830 * the remainder.
831 */
832 return;
833 else if (error) {
834 /*
835 * Don't notice the error to the upper layer yet.
836 * The error handling decision is made by the target driver,
837 * when the request is completed.
838 */
839 tio->error = error;
840 return;
841 }
842
843 /*
844 * I/O for the bio successfully completed.
845 * Notice the data completion to the upper layer.
846 */
847
848 /*
849 * bios are processed from the head of the list.
850 * So the completing bio should always be rq->bio.
851 * If it's not, something wrong is happening.
852 */
853 if (tio->orig->bio != bio)
854 DMERR("bio completion is going in the middle of the request");
855
856 /*
857 * Update the original request.
858 * Do not use blk_end_request() here, because it may complete
859 * the original request before the clone, and break the ordering.
860 */
861 blk_update_request(tio->orig, 0, nr_bytes);
862}
863
864/*
865 * Don't touch any member of the md after calling this function because
866 * the md may be freed in dm_put() at the end of this function.
867 * Or do dm_get() before calling this function and dm_put() later.
868 */
b4324fee 869static void rq_completed(struct mapped_device *md, int rw, int run_queue)
cec47e3d 870{
b4324fee 871 atomic_dec(&md->pending[rw]);
cec47e3d
KU
872
873 /* nudge anyone waiting on suspend queue */
b4324fee 874 if (!md_in_flight(md))
cec47e3d
KU
875 wake_up(&md->wait);
876
a8c32a5c
JA
877 /*
878 * Run this off this callpath, as drivers could invoke end_io while
879 * inside their request_fn (and holding the queue lock). Calling
880 * back into ->request_fn() could deadlock attempting to grab the
881 * queue lock again.
882 */
cec47e3d 883 if (run_queue)
a8c32a5c 884 blk_run_queue_async(md->queue);
cec47e3d
KU
885
886 /*
887 * dm_put() must be at the end of this function. See the comment above
888 */
889 dm_put(md);
890}
891
a77e28c7
KU
892static void free_rq_clone(struct request *clone)
893{
894 struct dm_rq_target_io *tio = clone->end_io_data;
895
896 blk_rq_unprep_clone(clone);
897 free_rq_tio(tio);
898}
899
980691e5
KU
900/*
901 * Complete the clone and the original request.
902 * Must be called without queue lock.
903 */
904static void dm_end_request(struct request *clone, int error)
905{
906 int rw = rq_data_dir(clone);
907 struct dm_rq_target_io *tio = clone->end_io_data;
908 struct mapped_device *md = tio->md;
909 struct request *rq = tio->orig;
910
29e4013d 911 if (rq->cmd_type == REQ_TYPE_BLOCK_PC) {
980691e5
KU
912 rq->errors = clone->errors;
913 rq->resid_len = clone->resid_len;
914
915 if (rq->sense)
916 /*
917 * We are using the sense buffer of the original
918 * request.
919 * So setting the length of the sense data is enough.
920 */
921 rq->sense_len = clone->sense_len;
922 }
923
924 free_rq_clone(clone);
29e4013d
TH
925 blk_end_request_all(rq, error);
926 rq_completed(md, rw, true);
980691e5
KU
927}
928
cec47e3d
KU
929static void dm_unprep_request(struct request *rq)
930{
931 struct request *clone = rq->special;
cec47e3d
KU
932
933 rq->special = NULL;
934 rq->cmd_flags &= ~REQ_DONTPREP;
935
a77e28c7 936 free_rq_clone(clone);
cec47e3d
KU
937}
938
939/*
940 * Requeue the original request of a clone.
941 */
942void dm_requeue_unmapped_request(struct request *clone)
943{
b4324fee 944 int rw = rq_data_dir(clone);
cec47e3d
KU
945 struct dm_rq_target_io *tio = clone->end_io_data;
946 struct mapped_device *md = tio->md;
947 struct request *rq = tio->orig;
948 struct request_queue *q = rq->q;
949 unsigned long flags;
950
951 dm_unprep_request(rq);
952
953 spin_lock_irqsave(q->queue_lock, flags);
cec47e3d
KU
954 blk_requeue_request(q, rq);
955 spin_unlock_irqrestore(q->queue_lock, flags);
956
b4324fee 957 rq_completed(md, rw, 0);
cec47e3d
KU
958}
959EXPORT_SYMBOL_GPL(dm_requeue_unmapped_request);
960
961static void __stop_queue(struct request_queue *q)
962{
963 blk_stop_queue(q);
964}
965
966static void stop_queue(struct request_queue *q)
967{
968 unsigned long flags;
969
970 spin_lock_irqsave(q->queue_lock, flags);
971 __stop_queue(q);
972 spin_unlock_irqrestore(q->queue_lock, flags);
973}
974
975static void __start_queue(struct request_queue *q)
976{
977 if (blk_queue_stopped(q))
978 blk_start_queue(q);
979}
980
981static void start_queue(struct request_queue *q)
982{
983 unsigned long flags;
984
985 spin_lock_irqsave(q->queue_lock, flags);
986 __start_queue(q);
987 spin_unlock_irqrestore(q->queue_lock, flags);
988}
989
11a68244 990static void dm_done(struct request *clone, int error, bool mapped)
cec47e3d 991{
11a68244 992 int r = error;
cec47e3d 993 struct dm_rq_target_io *tio = clone->end_io_data;
ba1cbad9 994 dm_request_endio_fn rq_end_io = NULL;
cec47e3d 995
ba1cbad9
MS
996 if (tio->ti) {
997 rq_end_io = tio->ti->type->rq_end_io;
998
999 if (mapped && rq_end_io)
1000 r = rq_end_io(tio->ti, clone, error, &tio->info);
1001 }
cec47e3d 1002
7eee4ae2
MS
1003 if (unlikely(r == -EREMOTEIO && (clone->cmd_flags & REQ_WRITE_SAME) &&
1004 !clone->q->limits.max_write_same_sectors))
1005 disable_write_same(tio->md);
1006
11a68244 1007 if (r <= 0)
cec47e3d 1008 /* The target wants to complete the I/O */
11a68244
KU
1009 dm_end_request(clone, r);
1010 else if (r == DM_ENDIO_INCOMPLETE)
cec47e3d
KU
1011 /* The target will handle the I/O */
1012 return;
11a68244 1013 else if (r == DM_ENDIO_REQUEUE)
cec47e3d
KU
1014 /* The target wants to requeue the I/O */
1015 dm_requeue_unmapped_request(clone);
1016 else {
11a68244 1017 DMWARN("unimplemented target endio return value: %d", r);
cec47e3d
KU
1018 BUG();
1019 }
1020}
1021
11a68244
KU
1022/*
1023 * Request completion handler for request-based dm
1024 */
1025static void dm_softirq_done(struct request *rq)
1026{
1027 bool mapped = true;
1028 struct request *clone = rq->completion_data;
1029 struct dm_rq_target_io *tio = clone->end_io_data;
1030
1031 if (rq->cmd_flags & REQ_FAILED)
1032 mapped = false;
1033
1034 dm_done(clone, tio->error, mapped);
1035}
1036
cec47e3d
KU
1037/*
1038 * Complete the clone and the original request with the error status
1039 * through softirq context.
1040 */
1041static void dm_complete_request(struct request *clone, int error)
1042{
1043 struct dm_rq_target_io *tio = clone->end_io_data;
1044 struct request *rq = tio->orig;
1045
1046 tio->error = error;
1047 rq->completion_data = clone;
1048 blk_complete_request(rq);
1049}
1050
1051/*
1052 * Complete the not-mapped clone and the original request with the error status
1053 * through softirq context.
1054 * Target's rq_end_io() function isn't called.
1055 * This may be used when the target's map_rq() function fails.
1056 */
1057void dm_kill_unmapped_request(struct request *clone, int error)
1058{
1059 struct dm_rq_target_io *tio = clone->end_io_data;
1060 struct request *rq = tio->orig;
1061
1062 rq->cmd_flags |= REQ_FAILED;
1063 dm_complete_request(clone, error);
1064}
1065EXPORT_SYMBOL_GPL(dm_kill_unmapped_request);
1066
1067/*
1068 * Called with the queue lock held
1069 */
1070static void end_clone_request(struct request *clone, int error)
1071{
1072 /*
1073 * For just cleaning up the information of the queue in which
1074 * the clone was dispatched.
1075 * The clone is *NOT* freed actually here because it is alloced from
1076 * dm own mempool and REQ_ALLOCED isn't set in clone->cmd_flags.
1077 */
1078 __blk_put_request(clone->q, clone);
1079
1080 /*
1081 * Actual request completion is done in a softirq context which doesn't
1082 * hold the queue lock. Otherwise, deadlock could occur because:
1083 * - another request may be submitted by the upper level driver
1084 * of the stacking during the completion
1085 * - the submission which requires queue lock may be done
1086 * against this queue
1087 */
1088 dm_complete_request(clone, error);
1089}
1090
56a67df7
MS
1091/*
1092 * Return maximum size of I/O possible at the supplied sector up to the current
1093 * target boundary.
1094 */
1095static sector_t max_io_len_target_boundary(sector_t sector, struct dm_target *ti)
1096{
1097 sector_t target_offset = dm_target_offset(ti, sector);
1098
1099 return ti->len - target_offset;
1100}
1101
1102static sector_t max_io_len(sector_t sector, struct dm_target *ti)
1da177e4 1103{
56a67df7 1104 sector_t len = max_io_len_target_boundary(sector, ti);
542f9038 1105 sector_t offset, max_len;
1da177e4
LT
1106
1107 /*
542f9038 1108 * Does the target need to split even further?
1da177e4 1109 */
542f9038
MS
1110 if (ti->max_io_len) {
1111 offset = dm_target_offset(ti, sector);
1112 if (unlikely(ti->max_io_len & (ti->max_io_len - 1)))
1113 max_len = sector_div(offset, ti->max_io_len);
1114 else
1115 max_len = offset & (ti->max_io_len - 1);
1116 max_len = ti->max_io_len - max_len;
1117
1118 if (len > max_len)
1119 len = max_len;
1da177e4
LT
1120 }
1121
1122 return len;
1123}
1124
542f9038
MS
1125int dm_set_target_max_io_len(struct dm_target *ti, sector_t len)
1126{
1127 if (len > UINT_MAX) {
1128 DMERR("Specified maximum size of target IO (%llu) exceeds limit (%u)",
1129 (unsigned long long)len, UINT_MAX);
1130 ti->error = "Maximum size of target IO is too large";
1131 return -EINVAL;
1132 }
1133
1134 ti->max_io_len = (uint32_t) len;
1135
1136 return 0;
1137}
1138EXPORT_SYMBOL_GPL(dm_set_target_max_io_len);
1139
1dd40c3e
MP
1140/*
1141 * A target may call dm_accept_partial_bio only from the map routine. It is
1142 * allowed for all bio types except REQ_FLUSH.
1143 *
1144 * dm_accept_partial_bio informs the dm that the target only wants to process
1145 * additional n_sectors sectors of the bio and the rest of the data should be
1146 * sent in a next bio.
1147 *
1148 * A diagram that explains the arithmetics:
1149 * +--------------------+---------------+-------+
1150 * | 1 | 2 | 3 |
1151 * +--------------------+---------------+-------+
1152 *
1153 * <-------------- *tio->len_ptr --------------->
1154 * <------- bi_size ------->
1155 * <-- n_sectors -->
1156 *
1157 * Region 1 was already iterated over with bio_advance or similar function.
1158 * (it may be empty if the target doesn't use bio_advance)
1159 * Region 2 is the remaining bio size that the target wants to process.
1160 * (it may be empty if region 1 is non-empty, although there is no reason
1161 * to make it empty)
1162 * The target requires that region 3 is to be sent in the next bio.
1163 *
1164 * If the target wants to receive multiple copies of the bio (via num_*bios, etc),
1165 * the partially processed part (the sum of regions 1+2) must be the same for all
1166 * copies of the bio.
1167 */
1168void dm_accept_partial_bio(struct bio *bio, unsigned n_sectors)
1169{
1170 struct dm_target_io *tio = container_of(bio, struct dm_target_io, clone);
1171 unsigned bi_size = bio->bi_iter.bi_size >> SECTOR_SHIFT;
1172 BUG_ON(bio->bi_rw & REQ_FLUSH);
1173 BUG_ON(bi_size > *tio->len_ptr);
1174 BUG_ON(n_sectors > bi_size);
1175 *tio->len_ptr -= bi_size - n_sectors;
1176 bio->bi_iter.bi_size = n_sectors << SECTOR_SHIFT;
1177}
1178EXPORT_SYMBOL_GPL(dm_accept_partial_bio);
1179
bd2a49b8 1180static void __map_bio(struct dm_target_io *tio)
1da177e4
LT
1181{
1182 int r;
2056a782 1183 sector_t sector;
9faf400f 1184 struct mapped_device *md;
dba14160 1185 struct bio *clone = &tio->clone;
bd2a49b8 1186 struct dm_target *ti = tio->ti;
1da177e4 1187
1da177e4 1188 clone->bi_end_io = clone_endio;
1da177e4
LT
1189
1190 /*
1191 * Map the clone. If r == 0 we don't need to do
1192 * anything, the target has assumed ownership of
1193 * this io.
1194 */
1195 atomic_inc(&tio->io->io_count);
4f024f37 1196 sector = clone->bi_iter.bi_sector;
7de3ee57 1197 r = ti->type->map(ti, clone);
45cbcd79 1198 if (r == DM_MAPIO_REMAPPED) {
1da177e4 1199 /* the bio has been remapped so dispatch it */
2056a782 1200
d07335e5
MS
1201 trace_block_bio_remap(bdev_get_queue(clone->bi_bdev), clone,
1202 tio->io->bio->bi_bdev->bd_dev, sector);
2056a782 1203
1da177e4 1204 generic_make_request(clone);
2e93ccc1
KU
1205 } else if (r < 0 || r == DM_MAPIO_REQUEUE) {
1206 /* error the io and bail out, or requeue it if needed */
9faf400f
SB
1207 md = tio->io->md;
1208 dec_pending(tio->io, r);
9faf400f 1209 free_tio(md, tio);
45cbcd79
KU
1210 } else if (r) {
1211 DMWARN("unimplemented target map return value: %d", r);
1212 BUG();
1da177e4
LT
1213 }
1214}
1215
1216struct clone_info {
1217 struct mapped_device *md;
1218 struct dm_table *map;
1219 struct bio *bio;
1220 struct dm_io *io;
1221 sector_t sector;
e0d6609a 1222 unsigned sector_count;
1da177e4
LT
1223};
1224
e0d6609a 1225static void bio_setup_sector(struct bio *bio, sector_t sector, unsigned len)
bd2a49b8 1226{
4f024f37
KO
1227 bio->bi_iter.bi_sector = sector;
1228 bio->bi_iter.bi_size = to_bytes(len);
1da177e4
LT
1229}
1230
1231/*
1232 * Creates a bio that consists of range of complete bvecs.
1233 */
dba14160 1234static void clone_bio(struct dm_target_io *tio, struct bio *bio,
1c3b13e6 1235 sector_t sector, unsigned len)
1da177e4 1236{
dba14160 1237 struct bio *clone = &tio->clone;
1da177e4 1238
1c3b13e6
KO
1239 __bio_clone_fast(clone, bio);
1240
1241 if (bio_integrity(bio))
1242 bio_integrity_clone(clone, bio, GFP_NOIO);
bd2a49b8 1243
1c3b13e6
KO
1244 bio_advance(clone, to_bytes(sector - clone->bi_iter.bi_sector));
1245 clone->bi_iter.bi_size = to_bytes(len);
1246
1247 if (bio_integrity(bio))
1248 bio_integrity_trim(clone, 0, len);
1da177e4
LT
1249}
1250
9015df24 1251static struct dm_target_io *alloc_tio(struct clone_info *ci,
99778273 1252 struct dm_target *ti,
55a62eef 1253 unsigned target_bio_nr)
f9ab94ce 1254{
dba14160
MP
1255 struct dm_target_io *tio;
1256 struct bio *clone;
1257
99778273 1258 clone = bio_alloc_bioset(GFP_NOIO, 0, ci->md->bs);
dba14160 1259 tio = container_of(clone, struct dm_target_io, clone);
f9ab94ce
MP
1260
1261 tio->io = ci->io;
1262 tio->ti = ti;
55a62eef 1263 tio->target_bio_nr = target_bio_nr;
9015df24
AK
1264
1265 return tio;
1266}
1267
14fe594d
AK
1268static void __clone_and_map_simple_bio(struct clone_info *ci,
1269 struct dm_target *ti,
1dd40c3e 1270 unsigned target_bio_nr, unsigned *len)
9015df24 1271{
99778273 1272 struct dm_target_io *tio = alloc_tio(ci, ti, target_bio_nr);
dba14160 1273 struct bio *clone = &tio->clone;
9015df24 1274
1dd40c3e
MP
1275 tio->len_ptr = len;
1276
99778273 1277 __bio_clone_fast(clone, ci->bio);
bd2a49b8 1278 if (len)
1dd40c3e 1279 bio_setup_sector(clone, ci->sector, *len);
f9ab94ce 1280
bd2a49b8 1281 __map_bio(tio);
f9ab94ce
MP
1282}
1283
14fe594d 1284static void __send_duplicate_bios(struct clone_info *ci, struct dm_target *ti,
1dd40c3e 1285 unsigned num_bios, unsigned *len)
06a426ce 1286{
55a62eef 1287 unsigned target_bio_nr;
06a426ce 1288
55a62eef 1289 for (target_bio_nr = 0; target_bio_nr < num_bios; target_bio_nr++)
14fe594d 1290 __clone_and_map_simple_bio(ci, ti, target_bio_nr, len);
06a426ce
MS
1291}
1292
14fe594d 1293static int __send_empty_flush(struct clone_info *ci)
f9ab94ce 1294{
06a426ce 1295 unsigned target_nr = 0;
f9ab94ce
MP
1296 struct dm_target *ti;
1297
b372d360 1298 BUG_ON(bio_has_data(ci->bio));
f9ab94ce 1299 while ((ti = dm_table_get_target(ci->map, target_nr++)))
1dd40c3e 1300 __send_duplicate_bios(ci, ti, ti->num_flush_bios, NULL);
f9ab94ce 1301
f9ab94ce
MP
1302 return 0;
1303}
1304
e4c93811 1305static void __clone_and_map_data_bio(struct clone_info *ci, struct dm_target *ti,
1dd40c3e 1306 sector_t sector, unsigned *len)
5ae89a87 1307{
dba14160 1308 struct bio *bio = ci->bio;
5ae89a87 1309 struct dm_target_io *tio;
b0d8ed4d
AK
1310 unsigned target_bio_nr;
1311 unsigned num_target_bios = 1;
5ae89a87 1312
b0d8ed4d
AK
1313 /*
1314 * Does the target want to receive duplicate copies of the bio?
1315 */
1316 if (bio_data_dir(bio) == WRITE && ti->num_write_bios)
1317 num_target_bios = ti->num_write_bios(ti, bio);
e4c93811 1318
b0d8ed4d 1319 for (target_bio_nr = 0; target_bio_nr < num_target_bios; target_bio_nr++) {
99778273 1320 tio = alloc_tio(ci, ti, target_bio_nr);
1dd40c3e
MP
1321 tio->len_ptr = len;
1322 clone_bio(tio, bio, sector, *len);
b0d8ed4d
AK
1323 __map_bio(tio);
1324 }
5ae89a87
MS
1325}
1326
55a62eef 1327typedef unsigned (*get_num_bios_fn)(struct dm_target *ti);
23508a96 1328
55a62eef 1329static unsigned get_num_discard_bios(struct dm_target *ti)
23508a96 1330{
55a62eef 1331 return ti->num_discard_bios;
23508a96
MS
1332}
1333
55a62eef 1334static unsigned get_num_write_same_bios(struct dm_target *ti)
23508a96 1335{
55a62eef 1336 return ti->num_write_same_bios;
23508a96
MS
1337}
1338
1339typedef bool (*is_split_required_fn)(struct dm_target *ti);
1340
1341static bool is_split_required_for_discard(struct dm_target *ti)
1342{
55a62eef 1343 return ti->split_discard_bios;
23508a96
MS
1344}
1345
14fe594d
AK
1346static int __send_changing_extent_only(struct clone_info *ci,
1347 get_num_bios_fn get_num_bios,
1348 is_split_required_fn is_split_required)
5ae89a87
MS
1349{
1350 struct dm_target *ti;
e0d6609a 1351 unsigned len;
55a62eef 1352 unsigned num_bios;
5ae89a87 1353
a79245b3
MS
1354 do {
1355 ti = dm_table_find_target(ci->map, ci->sector);
1356 if (!dm_target_is_valid(ti))
1357 return -EIO;
5ae89a87 1358
5ae89a87 1359 /*
23508a96
MS
1360 * Even though the device advertised support for this type of
1361 * request, that does not mean every target supports it, and
936688d7 1362 * reconfiguration might also have changed that since the
a79245b3 1363 * check was performed.
5ae89a87 1364 */
55a62eef
AK
1365 num_bios = get_num_bios ? get_num_bios(ti) : 0;
1366 if (!num_bios)
a79245b3 1367 return -EOPNOTSUPP;
5ae89a87 1368
23508a96 1369 if (is_split_required && !is_split_required(ti))
e0d6609a 1370 len = min((sector_t)ci->sector_count, max_io_len_target_boundary(ci->sector, ti));
7acf0277 1371 else
e0d6609a 1372 len = min((sector_t)ci->sector_count, max_io_len(ci->sector, ti));
06a426ce 1373
1dd40c3e 1374 __send_duplicate_bios(ci, ti, num_bios, &len);
a79245b3
MS
1375
1376 ci->sector += len;
1377 } while (ci->sector_count -= len);
5ae89a87
MS
1378
1379 return 0;
1380}
1381
14fe594d 1382static int __send_discard(struct clone_info *ci)
23508a96 1383{
14fe594d
AK
1384 return __send_changing_extent_only(ci, get_num_discard_bios,
1385 is_split_required_for_discard);
23508a96
MS
1386}
1387
14fe594d 1388static int __send_write_same(struct clone_info *ci)
23508a96 1389{
14fe594d 1390 return __send_changing_extent_only(ci, get_num_write_same_bios, NULL);
23508a96
MS
1391}
1392
e4c93811
AK
1393/*
1394 * Select the correct strategy for processing a non-flush bio.
1395 */
14fe594d 1396static int __split_and_process_non_flush(struct clone_info *ci)
1da177e4 1397{
dba14160 1398 struct bio *bio = ci->bio;
512875bd 1399 struct dm_target *ti;
1c3b13e6 1400 unsigned len;
1da177e4 1401
5ae89a87 1402 if (unlikely(bio->bi_rw & REQ_DISCARD))
14fe594d 1403 return __send_discard(ci);
23508a96 1404 else if (unlikely(bio->bi_rw & REQ_WRITE_SAME))
14fe594d 1405 return __send_write_same(ci);
5ae89a87 1406
512875bd
JN
1407 ti = dm_table_find_target(ci->map, ci->sector);
1408 if (!dm_target_is_valid(ti))
1409 return -EIO;
1410
1c3b13e6 1411 len = min_t(sector_t, max_io_len(ci->sector, ti), ci->sector_count);
1da177e4 1412
1dd40c3e 1413 __clone_and_map_data_bio(ci, ti, ci->sector, &len);
1da177e4 1414
1c3b13e6
KO
1415 ci->sector += len;
1416 ci->sector_count -= len;
1da177e4 1417
1c3b13e6 1418 return 0;
1da177e4
LT
1419}
1420
1421/*
14fe594d 1422 * Entry point to split a bio into clones and submit them to the targets.
1da177e4 1423 */
83d5e5b0
MP
1424static void __split_and_process_bio(struct mapped_device *md,
1425 struct dm_table *map, struct bio *bio)
1da177e4
LT
1426{
1427 struct clone_info ci;
512875bd 1428 int error = 0;
1da177e4 1429
83d5e5b0 1430 if (unlikely(!map)) {
6a8736d1 1431 bio_io_error(bio);
f0b9a450
MP
1432 return;
1433 }
692d0eb9 1434
83d5e5b0 1435 ci.map = map;
1da177e4 1436 ci.md = md;
1da177e4
LT
1437 ci.io = alloc_io(md);
1438 ci.io->error = 0;
1439 atomic_set(&ci.io->io_count, 1);
1440 ci.io->bio = bio;
1441 ci.io->md = md;
f88fb981 1442 spin_lock_init(&ci.io->endio_lock);
4f024f37 1443 ci.sector = bio->bi_iter.bi_sector;
1da177e4 1444
3eaf840e 1445 start_io_acct(ci.io);
bd2a49b8 1446
b372d360
MS
1447 if (bio->bi_rw & REQ_FLUSH) {
1448 ci.bio = &ci.md->flush_bio;
1449 ci.sector_count = 0;
14fe594d 1450 error = __send_empty_flush(&ci);
b372d360
MS
1451 /* dec_pending submits any data associated with flush */
1452 } else {
6a8736d1 1453 ci.bio = bio;
d87f4c14 1454 ci.sector_count = bio_sectors(bio);
b372d360 1455 while (ci.sector_count && !error)
14fe594d 1456 error = __split_and_process_non_flush(&ci);
d87f4c14 1457 }
1da177e4
LT
1458
1459 /* drop the extra reference count */
512875bd 1460 dec_pending(ci.io, error);
1da177e4
LT
1461}
1462/*-----------------------------------------------------------------
1463 * CRUD END
1464 *---------------------------------------------------------------*/
1465
f6fccb12
MB
1466static int dm_merge_bvec(struct request_queue *q,
1467 struct bvec_merge_data *bvm,
1468 struct bio_vec *biovec)
1469{
1470 struct mapped_device *md = q->queuedata;
83d5e5b0 1471 struct dm_table *map = dm_get_live_table_fast(md);
f6fccb12
MB
1472 struct dm_target *ti;
1473 sector_t max_sectors;
5037108a 1474 int max_size = 0;
f6fccb12
MB
1475
1476 if (unlikely(!map))
5037108a 1477 goto out;
f6fccb12
MB
1478
1479 ti = dm_table_find_target(map, bvm->bi_sector);
b01cd5ac 1480 if (!dm_target_is_valid(ti))
83d5e5b0 1481 goto out;
f6fccb12
MB
1482
1483 /*
1484 * Find maximum amount of I/O that won't need splitting
1485 */
56a67df7 1486 max_sectors = min(max_io_len(bvm->bi_sector, ti),
f6fccb12
MB
1487 (sector_t) BIO_MAX_SECTORS);
1488 max_size = (max_sectors << SECTOR_SHIFT) - bvm->bi_size;
1489 if (max_size < 0)
1490 max_size = 0;
1491
1492 /*
1493 * merge_bvec_fn() returns number of bytes
1494 * it can accept at this offset
1495 * max is precomputed maximal io size
1496 */
1497 if (max_size && ti->type->merge)
1498 max_size = ti->type->merge(ti, bvm, biovec, max_size);
8cbeb67a
MP
1499 /*
1500 * If the target doesn't support merge method and some of the devices
1501 * provided their merge_bvec method (we know this by looking at
1502 * queue_max_hw_sectors), then we can't allow bios with multiple vector
1503 * entries. So always set max_size to 0, and the code below allows
1504 * just one page.
1505 */
1506 else if (queue_max_hw_sectors(q) <= PAGE_SIZE >> 9)
8cbeb67a 1507 max_size = 0;
f6fccb12 1508
5037108a 1509out:
83d5e5b0 1510 dm_put_live_table_fast(md);
f6fccb12
MB
1511 /*
1512 * Always allow an entire first page
1513 */
1514 if (max_size <= biovec->bv_len && !(bvm->bi_size >> SECTOR_SHIFT))
1515 max_size = biovec->bv_len;
1516
f6fccb12
MB
1517 return max_size;
1518}
1519
1da177e4
LT
1520/*
1521 * The request function that just remaps the bio built up by
1522 * dm_merge_bvec.
1523 */
5a7bbad2 1524static void _dm_request(struct request_queue *q, struct bio *bio)
1da177e4 1525{
12f03a49 1526 int rw = bio_data_dir(bio);
1da177e4 1527 struct mapped_device *md = q->queuedata;
c9959059 1528 int cpu;
83d5e5b0
MP
1529 int srcu_idx;
1530 struct dm_table *map;
1da177e4 1531
83d5e5b0 1532 map = dm_get_live_table(md, &srcu_idx);
1da177e4 1533
074a7aca
TH
1534 cpu = part_stat_lock();
1535 part_stat_inc(cpu, &dm_disk(md)->part0, ios[rw]);
1536 part_stat_add(cpu, &dm_disk(md)->part0, sectors[rw], bio_sectors(bio));
1537 part_stat_unlock();
12f03a49 1538
6a8736d1
TH
1539 /* if we're suspended, we have to queue this io for later */
1540 if (unlikely(test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags))) {
83d5e5b0 1541 dm_put_live_table(md, srcu_idx);
1da177e4 1542
6a8736d1
TH
1543 if (bio_rw(bio) != READA)
1544 queue_io(md, bio);
1545 else
54d9a1b4 1546 bio_io_error(bio);
5a7bbad2 1547 return;
1da177e4
LT
1548 }
1549
83d5e5b0
MP
1550 __split_and_process_bio(md, map, bio);
1551 dm_put_live_table(md, srcu_idx);
5a7bbad2 1552 return;
cec47e3d
KU
1553}
1554
fd2ed4d2 1555int dm_request_based(struct mapped_device *md)
cec47e3d
KU
1556{
1557 return blk_queue_stackable(md->queue);
1558}
1559
5a7bbad2 1560static void dm_request(struct request_queue *q, struct bio *bio)
cec47e3d
KU
1561{
1562 struct mapped_device *md = q->queuedata;
1563
1564 if (dm_request_based(md))
5a7bbad2
CH
1565 blk_queue_bio(q, bio);
1566 else
1567 _dm_request(q, bio);
cec47e3d
KU
1568}
1569
1570void dm_dispatch_request(struct request *rq)
1571{
1572 int r;
1573
1574 if (blk_queue_io_stat(rq->q))
1575 rq->cmd_flags |= REQ_IO_STAT;
1576
1577 rq->start_time = jiffies;
1578 r = blk_insert_cloned_request(rq->q, rq);
1579 if (r)
1580 dm_complete_request(rq, r);
1581}
1582EXPORT_SYMBOL_GPL(dm_dispatch_request);
1583
cec47e3d
KU
1584static int dm_rq_bio_constructor(struct bio *bio, struct bio *bio_orig,
1585 void *data)
1586{
1587 struct dm_rq_target_io *tio = data;
94818742
KO
1588 struct dm_rq_clone_bio_info *info =
1589 container_of(bio, struct dm_rq_clone_bio_info, clone);
cec47e3d
KU
1590
1591 info->orig = bio_orig;
1592 info->tio = tio;
1593 bio->bi_end_io = end_clone_bio;
cec47e3d
KU
1594
1595 return 0;
1596}
1597
1598static int setup_clone(struct request *clone, struct request *rq,
1599 struct dm_rq_target_io *tio)
1600{
d0bcb878 1601 int r;
cec47e3d 1602
29e4013d
TH
1603 r = blk_rq_prep_clone(clone, rq, tio->md->bs, GFP_ATOMIC,
1604 dm_rq_bio_constructor, tio);
1605 if (r)
1606 return r;
cec47e3d 1607
29e4013d
TH
1608 clone->cmd = rq->cmd;
1609 clone->cmd_len = rq->cmd_len;
1610 clone->sense = rq->sense;
cec47e3d
KU
1611 clone->end_io = end_clone_request;
1612 clone->end_io_data = tio;
1613
1614 return 0;
1615}
1616
6facdaff
KU
1617static struct request *clone_rq(struct request *rq, struct mapped_device *md,
1618 gfp_t gfp_mask)
1619{
1620 struct request *clone;
1621 struct dm_rq_target_io *tio;
1622
1623 tio = alloc_rq_tio(md, gfp_mask);
1624 if (!tio)
1625 return NULL;
1626
1627 tio->md = md;
1628 tio->ti = NULL;
1629 tio->orig = rq;
1630 tio->error = 0;
1631 memset(&tio->info, 0, sizeof(tio->info));
1632
1633 clone = &tio->clone;
1634 if (setup_clone(clone, rq, tio)) {
1635 /* -ENOMEM */
1636 free_rq_tio(tio);
1637 return NULL;
1638 }
1639
1640 return clone;
1641}
1642
cec47e3d
KU
1643/*
1644 * Called with the queue lock held.
1645 */
1646static int dm_prep_fn(struct request_queue *q, struct request *rq)
1647{
1648 struct mapped_device *md = q->queuedata;
cec47e3d
KU
1649 struct request *clone;
1650
cec47e3d
KU
1651 if (unlikely(rq->special)) {
1652 DMWARN("Already has something in rq->special.");
1653 return BLKPREP_KILL;
1654 }
1655
6facdaff
KU
1656 clone = clone_rq(rq, md, GFP_ATOMIC);
1657 if (!clone)
cec47e3d 1658 return BLKPREP_DEFER;
cec47e3d
KU
1659
1660 rq->special = clone;
1661 rq->cmd_flags |= REQ_DONTPREP;
1662
1663 return BLKPREP_OK;
1664}
1665
9eef87da
KU
1666/*
1667 * Returns:
1668 * 0 : the request has been processed (not requeued)
1669 * !0 : the request has been requeued
1670 */
1671static int map_request(struct dm_target *ti, struct request *clone,
1672 struct mapped_device *md)
cec47e3d 1673{
9eef87da 1674 int r, requeued = 0;
cec47e3d
KU
1675 struct dm_rq_target_io *tio = clone->end_io_data;
1676
cec47e3d
KU
1677 tio->ti = ti;
1678 r = ti->type->map_rq(ti, clone, &tio->info);
1679 switch (r) {
1680 case DM_MAPIO_SUBMITTED:
1681 /* The target has taken the I/O to submit by itself later */
1682 break;
1683 case DM_MAPIO_REMAPPED:
1684 /* The target has remapped the I/O so dispatch it */
6db4ccd6
JN
1685 trace_block_rq_remap(clone->q, clone, disk_devt(dm_disk(md)),
1686 blk_rq_pos(tio->orig));
cec47e3d
KU
1687 dm_dispatch_request(clone);
1688 break;
1689 case DM_MAPIO_REQUEUE:
1690 /* The target wants to requeue the I/O */
1691 dm_requeue_unmapped_request(clone);
9eef87da 1692 requeued = 1;
cec47e3d
KU
1693 break;
1694 default:
1695 if (r > 0) {
1696 DMWARN("unimplemented target map return value: %d", r);
1697 BUG();
1698 }
1699
1700 /* The target wants to complete the I/O */
1701 dm_kill_unmapped_request(clone, r);
1702 break;
1703 }
9eef87da
KU
1704
1705 return requeued;
cec47e3d
KU
1706}
1707
ba1cbad9
MS
1708static struct request *dm_start_request(struct mapped_device *md, struct request *orig)
1709{
1710 struct request *clone;
1711
1712 blk_start_request(orig);
1713 clone = orig->special;
1714 atomic_inc(&md->pending[rq_data_dir(clone)]);
1715
1716 /*
1717 * Hold the md reference here for the in-flight I/O.
1718 * We can't rely on the reference count by device opener,
1719 * because the device may be closed during the request completion
1720 * when all bios are completed.
1721 * See the comment in rq_completed() too.
1722 */
1723 dm_get(md);
1724
1725 return clone;
1726}
1727
cec47e3d
KU
1728/*
1729 * q->request_fn for request-based dm.
1730 * Called with the queue lock held.
1731 */
1732static void dm_request_fn(struct request_queue *q)
1733{
1734 struct mapped_device *md = q->queuedata;
83d5e5b0
MP
1735 int srcu_idx;
1736 struct dm_table *map = dm_get_live_table(md, &srcu_idx);
cec47e3d 1737 struct dm_target *ti;
b4324fee 1738 struct request *rq, *clone;
29e4013d 1739 sector_t pos;
cec47e3d
KU
1740
1741 /*
b4324fee
KU
1742 * For suspend, check blk_queue_stopped() and increment
1743 * ->pending within a single queue_lock not to increment the
1744 * number of in-flight I/Os after the queue is stopped in
1745 * dm_suspend().
cec47e3d 1746 */
7eaceacc 1747 while (!blk_queue_stopped(q)) {
cec47e3d
KU
1748 rq = blk_peek_request(q);
1749 if (!rq)
7eaceacc 1750 goto delay_and_out;
cec47e3d 1751
29e4013d
TH
1752 /* always use block 0 to find the target for flushes for now */
1753 pos = 0;
1754 if (!(rq->cmd_flags & REQ_FLUSH))
1755 pos = blk_rq_pos(rq);
1756
1757 ti = dm_table_find_target(map, pos);
ba1cbad9
MS
1758 if (!dm_target_is_valid(ti)) {
1759 /*
1760 * Must perform setup, that dm_done() requires,
1761 * before calling dm_kill_unmapped_request
1762 */
1763 DMERR_LIMIT("request attempted access beyond the end of device");
1764 clone = dm_start_request(md, rq);
1765 dm_kill_unmapped_request(clone, -EIO);
1766 continue;
1767 }
d0bcb878 1768
cec47e3d 1769 if (ti->type->busy && ti->type->busy(ti))
7eaceacc 1770 goto delay_and_out;
cec47e3d 1771
ba1cbad9 1772 clone = dm_start_request(md, rq);
b4324fee 1773
cec47e3d 1774 spin_unlock(q->queue_lock);
9eef87da
KU
1775 if (map_request(ti, clone, md))
1776 goto requeued;
1777
052189a2
KU
1778 BUG_ON(!irqs_disabled());
1779 spin_lock(q->queue_lock);
cec47e3d
KU
1780 }
1781
1782 goto out;
1783
9eef87da 1784requeued:
052189a2
KU
1785 BUG_ON(!irqs_disabled());
1786 spin_lock(q->queue_lock);
9eef87da 1787
7eaceacc
JA
1788delay_and_out:
1789 blk_delay_queue(q, HZ / 10);
cec47e3d 1790out:
83d5e5b0 1791 dm_put_live_table(md, srcu_idx);
cec47e3d
KU
1792}
1793
1794int dm_underlying_device_busy(struct request_queue *q)
1795{
1796 return blk_lld_busy(q);
1797}
1798EXPORT_SYMBOL_GPL(dm_underlying_device_busy);
1799
1800static int dm_lld_busy(struct request_queue *q)
1801{
1802 int r;
1803 struct mapped_device *md = q->queuedata;
83d5e5b0 1804 struct dm_table *map = dm_get_live_table_fast(md);
cec47e3d
KU
1805
1806 if (!map || test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags))
1807 r = 1;
1808 else
1809 r = dm_table_any_busy_target(map);
1810
83d5e5b0 1811 dm_put_live_table_fast(md);
cec47e3d
KU
1812
1813 return r;
1814}
1815
1da177e4
LT
1816static int dm_any_congested(void *congested_data, int bdi_bits)
1817{
8a57dfc6
CS
1818 int r = bdi_bits;
1819 struct mapped_device *md = congested_data;
1820 struct dm_table *map;
1da177e4 1821
1eb787ec 1822 if (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
83d5e5b0 1823 map = dm_get_live_table_fast(md);
8a57dfc6 1824 if (map) {
cec47e3d
KU
1825 /*
1826 * Request-based dm cares about only own queue for
1827 * the query about congestion status of request_queue
1828 */
1829 if (dm_request_based(md))
1830 r = md->queue->backing_dev_info.state &
1831 bdi_bits;
1832 else
1833 r = dm_table_any_congested(map, bdi_bits);
8a57dfc6 1834 }
83d5e5b0 1835 dm_put_live_table_fast(md);
8a57dfc6
CS
1836 }
1837
1da177e4
LT
1838 return r;
1839}
1840
1841/*-----------------------------------------------------------------
1842 * An IDR is used to keep track of allocated minor numbers.
1843 *---------------------------------------------------------------*/
2b06cfff 1844static void free_minor(int minor)
1da177e4 1845{
f32c10b0 1846 spin_lock(&_minor_lock);
1da177e4 1847 idr_remove(&_minor_idr, minor);
f32c10b0 1848 spin_unlock(&_minor_lock);
1da177e4
LT
1849}
1850
1851/*
1852 * See if the device with a specific minor # is free.
1853 */
cf13ab8e 1854static int specific_minor(int minor)
1da177e4 1855{
c9d76be6 1856 int r;
1da177e4
LT
1857
1858 if (minor >= (1 << MINORBITS))
1859 return -EINVAL;
1860
c9d76be6 1861 idr_preload(GFP_KERNEL);
f32c10b0 1862 spin_lock(&_minor_lock);
1da177e4 1863
c9d76be6 1864 r = idr_alloc(&_minor_idr, MINOR_ALLOCED, minor, minor + 1, GFP_NOWAIT);
1da177e4 1865
f32c10b0 1866 spin_unlock(&_minor_lock);
c9d76be6
TH
1867 idr_preload_end();
1868 if (r < 0)
1869 return r == -ENOSPC ? -EBUSY : r;
1870 return 0;
1da177e4
LT
1871}
1872
cf13ab8e 1873static int next_free_minor(int *minor)
1da177e4 1874{
c9d76be6 1875 int r;
62f75c2f 1876
c9d76be6 1877 idr_preload(GFP_KERNEL);
f32c10b0 1878 spin_lock(&_minor_lock);
1da177e4 1879
c9d76be6 1880 r = idr_alloc(&_minor_idr, MINOR_ALLOCED, 0, 1 << MINORBITS, GFP_NOWAIT);
1da177e4 1881
f32c10b0 1882 spin_unlock(&_minor_lock);
c9d76be6
TH
1883 idr_preload_end();
1884 if (r < 0)
1885 return r;
1886 *minor = r;
1887 return 0;
1da177e4
LT
1888}
1889
83d5cde4 1890static const struct block_device_operations dm_blk_dops;
1da177e4 1891
53d5914f
MP
1892static void dm_wq_work(struct work_struct *work);
1893
4a0b4ddf
MS
1894static void dm_init_md_queue(struct mapped_device *md)
1895{
1896 /*
1897 * Request-based dm devices cannot be stacked on top of bio-based dm
1898 * devices. The type of this dm device has not been decided yet.
1899 * The type is decided at the first table loading time.
1900 * To prevent problematic device stacking, clear the queue flag
1901 * for request stacking support until then.
1902 *
1903 * This queue is new, so no concurrency on the queue_flags.
1904 */
1905 queue_flag_clear_unlocked(QUEUE_FLAG_STACKABLE, md->queue);
1906
1907 md->queue->queuedata = md;
1908 md->queue->backing_dev_info.congested_fn = dm_any_congested;
1909 md->queue->backing_dev_info.congested_data = md;
1910 blk_queue_make_request(md->queue, dm_request);
1911 blk_queue_bounce_limit(md->queue, BLK_BOUNCE_ANY);
4a0b4ddf
MS
1912 blk_queue_merge_bvec(md->queue, dm_merge_bvec);
1913}
1914
1da177e4
LT
1915/*
1916 * Allocate and initialise a blank device with a given minor.
1917 */
2b06cfff 1918static struct mapped_device *alloc_dev(int minor)
1da177e4
LT
1919{
1920 int r;
cf13ab8e 1921 struct mapped_device *md = kzalloc(sizeof(*md), GFP_KERNEL);
ba61fdd1 1922 void *old_md;
1da177e4
LT
1923
1924 if (!md) {
1925 DMWARN("unable to allocate device, out of memory.");
1926 return NULL;
1927 }
1928
10da4f79 1929 if (!try_module_get(THIS_MODULE))
6ed7ade8 1930 goto bad_module_get;
10da4f79 1931
1da177e4 1932 /* get a minor number for the dev */
2b06cfff 1933 if (minor == DM_ANY_MINOR)
cf13ab8e 1934 r = next_free_minor(&minor);
2b06cfff 1935 else
cf13ab8e 1936 r = specific_minor(minor);
1da177e4 1937 if (r < 0)
6ed7ade8 1938 goto bad_minor;
1da177e4 1939
83d5e5b0
MP
1940 r = init_srcu_struct(&md->io_barrier);
1941 if (r < 0)
1942 goto bad_io_barrier;
1943
a5664dad 1944 md->type = DM_TYPE_NONE;
e61290a4 1945 mutex_init(&md->suspend_lock);
a5664dad 1946 mutex_init(&md->type_lock);
022c2611 1947 spin_lock_init(&md->deferred_lock);
1da177e4 1948 atomic_set(&md->holders, 1);
5c6bd75d 1949 atomic_set(&md->open_count, 0);
1da177e4 1950 atomic_set(&md->event_nr, 0);
7a8c3d3b
MA
1951 atomic_set(&md->uevent_seq, 0);
1952 INIT_LIST_HEAD(&md->uevent_list);
1953 spin_lock_init(&md->uevent_lock);
1da177e4 1954
4a0b4ddf 1955 md->queue = blk_alloc_queue(GFP_KERNEL);
1da177e4 1956 if (!md->queue)
6ed7ade8 1957 goto bad_queue;
1da177e4 1958
4a0b4ddf 1959 dm_init_md_queue(md);
9faf400f 1960
1da177e4
LT
1961 md->disk = alloc_disk(1);
1962 if (!md->disk)
6ed7ade8 1963 goto bad_disk;
1da177e4 1964
316d315b
NK
1965 atomic_set(&md->pending[0], 0);
1966 atomic_set(&md->pending[1], 0);
f0b04115 1967 init_waitqueue_head(&md->wait);
53d5914f 1968 INIT_WORK(&md->work, dm_wq_work);
f0b04115 1969 init_waitqueue_head(&md->eventq);
2995fa78 1970 init_completion(&md->kobj_holder.completion);
f0b04115 1971
1da177e4
LT
1972 md->disk->major = _major;
1973 md->disk->first_minor = minor;
1974 md->disk->fops = &dm_blk_dops;
1975 md->disk->queue = md->queue;
1976 md->disk->private_data = md;
1977 sprintf(md->disk->disk_name, "dm-%d", minor);
1978 add_disk(md->disk);
7e51f257 1979 format_dev_t(md->name, MKDEV(_major, minor));
1da177e4 1980
670368a8 1981 md->wq = alloc_workqueue("kdmflush", WQ_MEM_RECLAIM, 0);
304f3f6a
MB
1982 if (!md->wq)
1983 goto bad_thread;
1984
32a926da
MP
1985 md->bdev = bdget_disk(md->disk, 0);
1986 if (!md->bdev)
1987 goto bad_bdev;
1988
6a8736d1
TH
1989 bio_init(&md->flush_bio);
1990 md->flush_bio.bi_bdev = md->bdev;
1991 md->flush_bio.bi_rw = WRITE_FLUSH;
1992
fd2ed4d2
MP
1993 dm_stats_init(&md->stats);
1994
ba61fdd1 1995 /* Populate the mapping, nobody knows we exist yet */
f32c10b0 1996 spin_lock(&_minor_lock);
ba61fdd1 1997 old_md = idr_replace(&_minor_idr, md, minor);
f32c10b0 1998 spin_unlock(&_minor_lock);
ba61fdd1
JM
1999
2000 BUG_ON(old_md != MINOR_ALLOCED);
2001
1da177e4
LT
2002 return md;
2003
32a926da
MP
2004bad_bdev:
2005 destroy_workqueue(md->wq);
304f3f6a 2006bad_thread:
03022c54 2007 del_gendisk(md->disk);
304f3f6a 2008 put_disk(md->disk);
6ed7ade8 2009bad_disk:
1312f40e 2010 blk_cleanup_queue(md->queue);
6ed7ade8 2011bad_queue:
83d5e5b0
MP
2012 cleanup_srcu_struct(&md->io_barrier);
2013bad_io_barrier:
1da177e4 2014 free_minor(minor);
6ed7ade8 2015bad_minor:
10da4f79 2016 module_put(THIS_MODULE);
6ed7ade8 2017bad_module_get:
1da177e4
LT
2018 kfree(md);
2019 return NULL;
2020}
2021
ae9da83f
JN
2022static void unlock_fs(struct mapped_device *md);
2023
1da177e4
LT
2024static void free_dev(struct mapped_device *md)
2025{
f331c029 2026 int minor = MINOR(disk_devt(md->disk));
63d94e48 2027
32a926da
MP
2028 unlock_fs(md);
2029 bdput(md->bdev);
304f3f6a 2030 destroy_workqueue(md->wq);
e6ee8c0b
KU
2031 if (md->io_pool)
2032 mempool_destroy(md->io_pool);
2033 if (md->bs)
2034 bioset_free(md->bs);
9c47008d 2035 blk_integrity_unregister(md->disk);
1da177e4 2036 del_gendisk(md->disk);
83d5e5b0 2037 cleanup_srcu_struct(&md->io_barrier);
63d94e48 2038 free_minor(minor);
fba9f90e
JM
2039
2040 spin_lock(&_minor_lock);
2041 md->disk->private_data = NULL;
2042 spin_unlock(&_minor_lock);
2043
1da177e4 2044 put_disk(md->disk);
1312f40e 2045 blk_cleanup_queue(md->queue);
fd2ed4d2 2046 dm_stats_cleanup(&md->stats);
10da4f79 2047 module_put(THIS_MODULE);
1da177e4
LT
2048 kfree(md);
2049}
2050
e6ee8c0b
KU
2051static void __bind_mempools(struct mapped_device *md, struct dm_table *t)
2052{
c0820cf5 2053 struct dm_md_mempools *p = dm_table_get_md_mempools(t);
e6ee8c0b 2054
5f015204 2055 if (md->io_pool && md->bs) {
16245bdc
JN
2056 /* The md already has necessary mempools. */
2057 if (dm_table_get_type(t) == DM_TYPE_BIO_BASED) {
2058 /*
2059 * Reload bioset because front_pad may have changed
2060 * because a different table was loaded.
2061 */
2062 bioset_free(md->bs);
2063 md->bs = p->bs;
2064 p->bs = NULL;
2065 } else if (dm_table_get_type(t) == DM_TYPE_REQUEST_BASED) {
16245bdc
JN
2066 /*
2067 * There's no need to reload with request-based dm
2068 * because the size of front_pad doesn't change.
2069 * Note for future: If you are to reload bioset,
2070 * prep-ed requests in the queue may refer
2071 * to bio from the old bioset, so you must walk
2072 * through the queue to unprep.
2073 */
2074 }
e6ee8c0b 2075 goto out;
c0820cf5 2076 }
e6ee8c0b 2077
5f015204 2078 BUG_ON(!p || md->io_pool || md->bs);
e6ee8c0b
KU
2079
2080 md->io_pool = p->io_pool;
2081 p->io_pool = NULL;
e6ee8c0b
KU
2082 md->bs = p->bs;
2083 p->bs = NULL;
2084
2085out:
2086 /* mempool bind completed, now no need any mempools in the table */
2087 dm_table_free_md_mempools(t);
2088}
2089
1da177e4
LT
2090/*
2091 * Bind a table to the device.
2092 */
2093static void event_callback(void *context)
2094{
7a8c3d3b
MA
2095 unsigned long flags;
2096 LIST_HEAD(uevents);
1da177e4
LT
2097 struct mapped_device *md = (struct mapped_device *) context;
2098
7a8c3d3b
MA
2099 spin_lock_irqsave(&md->uevent_lock, flags);
2100 list_splice_init(&md->uevent_list, &uevents);
2101 spin_unlock_irqrestore(&md->uevent_lock, flags);
2102
ed9e1982 2103 dm_send_uevents(&uevents, &disk_to_dev(md->disk)->kobj);
7a8c3d3b 2104
1da177e4
LT
2105 atomic_inc(&md->event_nr);
2106 wake_up(&md->eventq);
2107}
2108
c217649b
MS
2109/*
2110 * Protected by md->suspend_lock obtained by dm_swap_table().
2111 */
4e90188b 2112static void __set_size(struct mapped_device *md, sector_t size)
1da177e4 2113{
4e90188b 2114 set_capacity(md->disk, size);
1da177e4 2115
db8fef4f 2116 i_size_write(md->bdev->bd_inode, (loff_t)size << SECTOR_SHIFT);
1da177e4
LT
2117}
2118
d5b9dd04
MP
2119/*
2120 * Return 1 if the queue has a compulsory merge_bvec_fn function.
2121 *
2122 * If this function returns 0, then the device is either a non-dm
2123 * device without a merge_bvec_fn, or it is a dm device that is
2124 * able to split any bios it receives that are too big.
2125 */
2126int dm_queue_merge_is_compulsory(struct request_queue *q)
2127{
2128 struct mapped_device *dev_md;
2129
2130 if (!q->merge_bvec_fn)
2131 return 0;
2132
2133 if (q->make_request_fn == dm_request) {
2134 dev_md = q->queuedata;
2135 if (test_bit(DMF_MERGE_IS_OPTIONAL, &dev_md->flags))
2136 return 0;
2137 }
2138
2139 return 1;
2140}
2141
2142static int dm_device_merge_is_compulsory(struct dm_target *ti,
2143 struct dm_dev *dev, sector_t start,
2144 sector_t len, void *data)
2145{
2146 struct block_device *bdev = dev->bdev;
2147 struct request_queue *q = bdev_get_queue(bdev);
2148
2149 return dm_queue_merge_is_compulsory(q);
2150}
2151
2152/*
2153 * Return 1 if it is acceptable to ignore merge_bvec_fn based
2154 * on the properties of the underlying devices.
2155 */
2156static int dm_table_merge_is_optional(struct dm_table *table)
2157{
2158 unsigned i = 0;
2159 struct dm_target *ti;
2160
2161 while (i < dm_table_get_num_targets(table)) {
2162 ti = dm_table_get_target(table, i++);
2163
2164 if (ti->type->iterate_devices &&
2165 ti->type->iterate_devices(ti, dm_device_merge_is_compulsory, NULL))
2166 return 0;
2167 }
2168
2169 return 1;
2170}
2171
042d2a9b
AK
2172/*
2173 * Returns old map, which caller must destroy.
2174 */
2175static struct dm_table *__bind(struct mapped_device *md, struct dm_table *t,
2176 struct queue_limits *limits)
1da177e4 2177{
042d2a9b 2178 struct dm_table *old_map;
165125e1 2179 struct request_queue *q = md->queue;
1da177e4 2180 sector_t size;
d5b9dd04 2181 int merge_is_optional;
1da177e4
LT
2182
2183 size = dm_table_get_size(t);
3ac51e74
DW
2184
2185 /*
2186 * Wipe any geometry if the size of the table changed.
2187 */
fd2ed4d2 2188 if (size != dm_get_size(md))
3ac51e74
DW
2189 memset(&md->geometry, 0, sizeof(md->geometry));
2190
32a926da 2191 __set_size(md, size);
d5816876 2192
2ca3310e
AK
2193 dm_table_event_callback(t, event_callback, md);
2194
e6ee8c0b
KU
2195 /*
2196 * The queue hasn't been stopped yet, if the old table type wasn't
2197 * for request-based during suspension. So stop it to prevent
2198 * I/O mapping before resume.
2199 * This must be done before setting the queue restrictions,
2200 * because request-based dm may be run just after the setting.
2201 */
2202 if (dm_table_request_based(t) && !blk_queue_stopped(q))
2203 stop_queue(q);
2204
2205 __bind_mempools(md, t);
2206
d5b9dd04
MP
2207 merge_is_optional = dm_table_merge_is_optional(t);
2208
042d2a9b 2209 old_map = md->map;
83d5e5b0 2210 rcu_assign_pointer(md->map, t);
36a0456f
AK
2211 md->immutable_target_type = dm_table_get_immutable_target_type(t);
2212
754c5fc7 2213 dm_table_set_restrictions(t, q, limits);
d5b9dd04
MP
2214 if (merge_is_optional)
2215 set_bit(DMF_MERGE_IS_OPTIONAL, &md->flags);
2216 else
2217 clear_bit(DMF_MERGE_IS_OPTIONAL, &md->flags);
83d5e5b0 2218 dm_sync_table(md);
1da177e4 2219
042d2a9b 2220 return old_map;
1da177e4
LT
2221}
2222
a7940155
AK
2223/*
2224 * Returns unbound table for the caller to free.
2225 */
2226static struct dm_table *__unbind(struct mapped_device *md)
1da177e4
LT
2227{
2228 struct dm_table *map = md->map;
2229
2230 if (!map)
a7940155 2231 return NULL;
1da177e4
LT
2232
2233 dm_table_event_callback(map, NULL, NULL);
9cdb8520 2234 RCU_INIT_POINTER(md->map, NULL);
83d5e5b0 2235 dm_sync_table(md);
a7940155
AK
2236
2237 return map;
1da177e4
LT
2238}
2239
2240/*
2241 * Constructor for a new device.
2242 */
2b06cfff 2243int dm_create(int minor, struct mapped_device **result)
1da177e4
LT
2244{
2245 struct mapped_device *md;
2246
2b06cfff 2247 md = alloc_dev(minor);
1da177e4
LT
2248 if (!md)
2249 return -ENXIO;
2250
784aae73
MB
2251 dm_sysfs_init(md);
2252
1da177e4
LT
2253 *result = md;
2254 return 0;
2255}
2256
a5664dad
MS
2257/*
2258 * Functions to manage md->type.
2259 * All are required to hold md->type_lock.
2260 */
2261void dm_lock_md_type(struct mapped_device *md)
2262{
2263 mutex_lock(&md->type_lock);
2264}
2265
2266void dm_unlock_md_type(struct mapped_device *md)
2267{
2268 mutex_unlock(&md->type_lock);
2269}
2270
2271void dm_set_md_type(struct mapped_device *md, unsigned type)
2272{
00c4fc3b 2273 BUG_ON(!mutex_is_locked(&md->type_lock));
a5664dad
MS
2274 md->type = type;
2275}
2276
2277unsigned dm_get_md_type(struct mapped_device *md)
2278{
00c4fc3b 2279 BUG_ON(!mutex_is_locked(&md->type_lock));
a5664dad
MS
2280 return md->type;
2281}
2282
36a0456f
AK
2283struct target_type *dm_get_immutable_target_type(struct mapped_device *md)
2284{
2285 return md->immutable_target_type;
2286}
2287
f84cb8a4
MS
2288/*
2289 * The queue_limits are only valid as long as you have a reference
2290 * count on 'md'.
2291 */
2292struct queue_limits *dm_get_queue_limits(struct mapped_device *md)
2293{
2294 BUG_ON(!atomic_read(&md->holders));
2295 return &md->queue->limits;
2296}
2297EXPORT_SYMBOL_GPL(dm_get_queue_limits);
2298
4a0b4ddf
MS
2299/*
2300 * Fully initialize a request-based queue (->elevator, ->request_fn, etc).
2301 */
2302static int dm_init_request_based_queue(struct mapped_device *md)
2303{
2304 struct request_queue *q = NULL;
2305
2306 if (md->queue->elevator)
2307 return 1;
2308
2309 /* Fully initialize the queue */
2310 q = blk_init_allocated_queue(md->queue, dm_request_fn, NULL);
2311 if (!q)
2312 return 0;
2313
2314 md->queue = q;
4a0b4ddf
MS
2315 dm_init_md_queue(md);
2316 blk_queue_softirq_done(md->queue, dm_softirq_done);
2317 blk_queue_prep_rq(md->queue, dm_prep_fn);
2318 blk_queue_lld_busy(md->queue, dm_lld_busy);
4a0b4ddf
MS
2319
2320 elv_register_queue(md->queue);
2321
2322 return 1;
2323}
2324
2325/*
2326 * Setup the DM device's queue based on md's type
2327 */
2328int dm_setup_md_queue(struct mapped_device *md)
2329{
2330 if ((dm_get_md_type(md) == DM_TYPE_REQUEST_BASED) &&
2331 !dm_init_request_based_queue(md)) {
2332 DMWARN("Cannot initialize queue for request-based mapped device");
2333 return -EINVAL;
2334 }
2335
2336 return 0;
2337}
2338
637842cf 2339static struct mapped_device *dm_find_md(dev_t dev)
1da177e4
LT
2340{
2341 struct mapped_device *md;
1da177e4
LT
2342 unsigned minor = MINOR(dev);
2343
2344 if (MAJOR(dev) != _major || minor >= (1 << MINORBITS))
2345 return NULL;
2346
f32c10b0 2347 spin_lock(&_minor_lock);
1da177e4
LT
2348
2349 md = idr_find(&_minor_idr, minor);
fba9f90e 2350 if (md && (md == MINOR_ALLOCED ||
f331c029 2351 (MINOR(disk_devt(dm_disk(md))) != minor) ||
abdc568b 2352 dm_deleting_md(md) ||
17b2f66f 2353 test_bit(DMF_FREEING, &md->flags))) {
637842cf 2354 md = NULL;
fba9f90e
JM
2355 goto out;
2356 }
1da177e4 2357
fba9f90e 2358out:
f32c10b0 2359 spin_unlock(&_minor_lock);
1da177e4 2360
637842cf
DT
2361 return md;
2362}
2363
d229a958
DT
2364struct mapped_device *dm_get_md(dev_t dev)
2365{
2366 struct mapped_device *md = dm_find_md(dev);
2367
2368 if (md)
2369 dm_get(md);
2370
2371 return md;
2372}
3cf2e4ba 2373EXPORT_SYMBOL_GPL(dm_get_md);
d229a958 2374
9ade92a9 2375void *dm_get_mdptr(struct mapped_device *md)
637842cf 2376{
9ade92a9 2377 return md->interface_ptr;
1da177e4
LT
2378}
2379
2380void dm_set_mdptr(struct mapped_device *md, void *ptr)
2381{
2382 md->interface_ptr = ptr;
2383}
2384
2385void dm_get(struct mapped_device *md)
2386{
2387 atomic_inc(&md->holders);
3f77316d 2388 BUG_ON(test_bit(DMF_FREEING, &md->flags));
1da177e4
LT
2389}
2390
72d94861
AK
2391const char *dm_device_name(struct mapped_device *md)
2392{
2393 return md->name;
2394}
2395EXPORT_SYMBOL_GPL(dm_device_name);
2396
3f77316d 2397static void __dm_destroy(struct mapped_device *md, bool wait)
1da177e4 2398{
1134e5ae 2399 struct dm_table *map;
83d5e5b0 2400 int srcu_idx;
1da177e4 2401
3f77316d 2402 might_sleep();
fba9f90e 2403
3f77316d 2404 spin_lock(&_minor_lock);
83d5e5b0 2405 map = dm_get_live_table(md, &srcu_idx);
3f77316d
KU
2406 idr_replace(&_minor_idr, MINOR_ALLOCED, MINOR(disk_devt(dm_disk(md))));
2407 set_bit(DMF_FREEING, &md->flags);
2408 spin_unlock(&_minor_lock);
2409
2410 if (!dm_suspended_md(md)) {
2411 dm_table_presuspend_targets(map);
2412 dm_table_postsuspend_targets(map);
1da177e4 2413 }
3f77316d 2414
83d5e5b0
MP
2415 /* dm_put_live_table must be before msleep, otherwise deadlock is possible */
2416 dm_put_live_table(md, srcu_idx);
2417
3f77316d
KU
2418 /*
2419 * Rare, but there may be I/O requests still going to complete,
2420 * for example. Wait for all references to disappear.
2421 * No one should increment the reference count of the mapped_device,
2422 * after the mapped_device state becomes DMF_FREEING.
2423 */
2424 if (wait)
2425 while (atomic_read(&md->holders))
2426 msleep(1);
2427 else if (atomic_read(&md->holders))
2428 DMWARN("%s: Forcibly removing mapped_device still in use! (%d users)",
2429 dm_device_name(md), atomic_read(&md->holders));
2430
2431 dm_sysfs_exit(md);
3f77316d
KU
2432 dm_table_destroy(__unbind(md));
2433 free_dev(md);
2434}
2435
2436void dm_destroy(struct mapped_device *md)
2437{
2438 __dm_destroy(md, true);
2439}
2440
2441void dm_destroy_immediate(struct mapped_device *md)
2442{
2443 __dm_destroy(md, false);
2444}
2445
2446void dm_put(struct mapped_device *md)
2447{
2448 atomic_dec(&md->holders);
1da177e4 2449}
79eb885c 2450EXPORT_SYMBOL_GPL(dm_put);
1da177e4 2451
401600df 2452static int dm_wait_for_completion(struct mapped_device *md, int interruptible)
46125c1c
MB
2453{
2454 int r = 0;
b44ebeb0
MP
2455 DECLARE_WAITQUEUE(wait, current);
2456
b44ebeb0 2457 add_wait_queue(&md->wait, &wait);
46125c1c
MB
2458
2459 while (1) {
401600df 2460 set_current_state(interruptible);
46125c1c 2461
b4324fee 2462 if (!md_in_flight(md))
46125c1c
MB
2463 break;
2464
401600df
MP
2465 if (interruptible == TASK_INTERRUPTIBLE &&
2466 signal_pending(current)) {
46125c1c
MB
2467 r = -EINTR;
2468 break;
2469 }
2470
2471 io_schedule();
2472 }
2473 set_current_state(TASK_RUNNING);
2474
b44ebeb0
MP
2475 remove_wait_queue(&md->wait, &wait);
2476
46125c1c
MB
2477 return r;
2478}
2479
1da177e4
LT
2480/*
2481 * Process the deferred bios
2482 */
ef208587 2483static void dm_wq_work(struct work_struct *work)
1da177e4 2484{
ef208587
MP
2485 struct mapped_device *md = container_of(work, struct mapped_device,
2486 work);
6d6f10df 2487 struct bio *c;
83d5e5b0
MP
2488 int srcu_idx;
2489 struct dm_table *map;
1da177e4 2490
83d5e5b0 2491 map = dm_get_live_table(md, &srcu_idx);
ef208587 2492
3b00b203 2493 while (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
df12ee99
AK
2494 spin_lock_irq(&md->deferred_lock);
2495 c = bio_list_pop(&md->deferred);
2496 spin_unlock_irq(&md->deferred_lock);
2497
6a8736d1 2498 if (!c)
df12ee99 2499 break;
022c2611 2500
e6ee8c0b
KU
2501 if (dm_request_based(md))
2502 generic_make_request(c);
6a8736d1 2503 else
83d5e5b0 2504 __split_and_process_bio(md, map, c);
022c2611 2505 }
73d410c0 2506
83d5e5b0 2507 dm_put_live_table(md, srcu_idx);
1da177e4
LT
2508}
2509
9a1fb464 2510static void dm_queue_flush(struct mapped_device *md)
304f3f6a 2511{
3b00b203 2512 clear_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
4e857c58 2513 smp_mb__after_atomic();
53d5914f 2514 queue_work(md->wq, &md->work);
304f3f6a
MB
2515}
2516
1da177e4 2517/*
042d2a9b 2518 * Swap in a new table, returning the old one for the caller to destroy.
1da177e4 2519 */
042d2a9b 2520struct dm_table *dm_swap_table(struct mapped_device *md, struct dm_table *table)
1da177e4 2521{
87eb5b21 2522 struct dm_table *live_map = NULL, *map = ERR_PTR(-EINVAL);
754c5fc7 2523 struct queue_limits limits;
042d2a9b 2524 int r;
1da177e4 2525
e61290a4 2526 mutex_lock(&md->suspend_lock);
1da177e4
LT
2527
2528 /* device must be suspended */
4f186f8b 2529 if (!dm_suspended_md(md))
93c534ae 2530 goto out;
1da177e4 2531
3ae70656
MS
2532 /*
2533 * If the new table has no data devices, retain the existing limits.
2534 * This helps multipath with queue_if_no_path if all paths disappear,
2535 * then new I/O is queued based on these limits, and then some paths
2536 * reappear.
2537 */
2538 if (dm_table_has_no_data_devices(table)) {
83d5e5b0 2539 live_map = dm_get_live_table_fast(md);
3ae70656
MS
2540 if (live_map)
2541 limits = md->queue->limits;
83d5e5b0 2542 dm_put_live_table_fast(md);
3ae70656
MS
2543 }
2544
87eb5b21
MC
2545 if (!live_map) {
2546 r = dm_calculate_queue_limits(table, &limits);
2547 if (r) {
2548 map = ERR_PTR(r);
2549 goto out;
2550 }
042d2a9b 2551 }
754c5fc7 2552
042d2a9b 2553 map = __bind(md, table, &limits);
1da177e4 2554
93c534ae 2555out:
e61290a4 2556 mutex_unlock(&md->suspend_lock);
042d2a9b 2557 return map;
1da177e4
LT
2558}
2559
2560/*
2561 * Functions to lock and unlock any filesystem running on the
2562 * device.
2563 */
2ca3310e 2564static int lock_fs(struct mapped_device *md)
1da177e4 2565{
e39e2e95 2566 int r;
1da177e4
LT
2567
2568 WARN_ON(md->frozen_sb);
dfbe03f6 2569
db8fef4f 2570 md->frozen_sb = freeze_bdev(md->bdev);
dfbe03f6 2571 if (IS_ERR(md->frozen_sb)) {
cf222b37 2572 r = PTR_ERR(md->frozen_sb);
e39e2e95
AK
2573 md->frozen_sb = NULL;
2574 return r;
dfbe03f6
AK
2575 }
2576
aa8d7c2f
AK
2577 set_bit(DMF_FROZEN, &md->flags);
2578
1da177e4
LT
2579 return 0;
2580}
2581
2ca3310e 2582static void unlock_fs(struct mapped_device *md)
1da177e4 2583{
aa8d7c2f
AK
2584 if (!test_bit(DMF_FROZEN, &md->flags))
2585 return;
2586
db8fef4f 2587 thaw_bdev(md->bdev, md->frozen_sb);
1da177e4 2588 md->frozen_sb = NULL;
aa8d7c2f 2589 clear_bit(DMF_FROZEN, &md->flags);
1da177e4
LT
2590}
2591
2592/*
2593 * We need to be able to change a mapping table under a mounted
2594 * filesystem. For example we might want to move some data in
2595 * the background. Before the table can be swapped with
2596 * dm_bind_table, dm_suspend must be called to flush any in
2597 * flight bios and ensure that any further io gets deferred.
2598 */
cec47e3d
KU
2599/*
2600 * Suspend mechanism in request-based dm.
2601 *
9f518b27
KU
2602 * 1. Flush all I/Os by lock_fs() if needed.
2603 * 2. Stop dispatching any I/O by stopping the request_queue.
2604 * 3. Wait for all in-flight I/Os to be completed or requeued.
cec47e3d 2605 *
9f518b27 2606 * To abort suspend, start the request_queue.
cec47e3d 2607 */
a3d77d35 2608int dm_suspend(struct mapped_device *md, unsigned suspend_flags)
1da177e4 2609{
2ca3310e 2610 struct dm_table *map = NULL;
46125c1c 2611 int r = 0;
a3d77d35 2612 int do_lockfs = suspend_flags & DM_SUSPEND_LOCKFS_FLAG ? 1 : 0;
2e93ccc1 2613 int noflush = suspend_flags & DM_SUSPEND_NOFLUSH_FLAG ? 1 : 0;
1da177e4 2614
e61290a4 2615 mutex_lock(&md->suspend_lock);
2ca3310e 2616
4f186f8b 2617 if (dm_suspended_md(md)) {
73d410c0 2618 r = -EINVAL;
d287483d 2619 goto out_unlock;
73d410c0 2620 }
1da177e4 2621
83d5e5b0 2622 map = md->map;
1da177e4 2623
2e93ccc1
KU
2624 /*
2625 * DMF_NOFLUSH_SUSPENDING must be set before presuspend.
2626 * This flag is cleared before dm_suspend returns.
2627 */
2628 if (noflush)
2629 set_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
2630
cf222b37
AK
2631 /* This does not get reverted if there's an error later. */
2632 dm_table_presuspend_targets(map);
2633
32a926da 2634 /*
9f518b27
KU
2635 * Flush I/O to the device.
2636 * Any I/O submitted after lock_fs() may not be flushed.
2637 * noflush takes precedence over do_lockfs.
2638 * (lock_fs() flushes I/Os and waits for them to complete.)
32a926da
MP
2639 */
2640 if (!noflush && do_lockfs) {
2641 r = lock_fs(md);
2642 if (r)
83d5e5b0 2643 goto out_unlock;
aa8d7c2f 2644 }
1da177e4
LT
2645
2646 /*
3b00b203
MP
2647 * Here we must make sure that no processes are submitting requests
2648 * to target drivers i.e. no one may be executing
2649 * __split_and_process_bio. This is called from dm_request and
2650 * dm_wq_work.
2651 *
2652 * To get all processes out of __split_and_process_bio in dm_request,
2653 * we take the write lock. To prevent any process from reentering
6a8736d1
TH
2654 * __split_and_process_bio from dm_request and quiesce the thread
2655 * (dm_wq_work), we set BMF_BLOCK_IO_FOR_SUSPEND and call
2656 * flush_workqueue(md->wq).
1da177e4 2657 */
1eb787ec 2658 set_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
83d5e5b0 2659 synchronize_srcu(&md->io_barrier);
1da177e4 2660
d0bcb878 2661 /*
29e4013d
TH
2662 * Stop md->queue before flushing md->wq in case request-based
2663 * dm defers requests to md->wq from md->queue.
d0bcb878 2664 */
cec47e3d 2665 if (dm_request_based(md))
9f518b27 2666 stop_queue(md->queue);
cec47e3d 2667
d0bcb878
KU
2668 flush_workqueue(md->wq);
2669
1da177e4 2670 /*
3b00b203
MP
2671 * At this point no more requests are entering target request routines.
2672 * We call dm_wait_for_completion to wait for all existing requests
2673 * to finish.
1da177e4 2674 */
401600df 2675 r = dm_wait_for_completion(md, TASK_INTERRUPTIBLE);
1da177e4 2676
6d6f10df 2677 if (noflush)
022c2611 2678 clear_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
83d5e5b0 2679 synchronize_srcu(&md->io_barrier);
2e93ccc1 2680
1da177e4 2681 /* were we interrupted ? */
46125c1c 2682 if (r < 0) {
9a1fb464 2683 dm_queue_flush(md);
73d410c0 2684
cec47e3d 2685 if (dm_request_based(md))
9f518b27 2686 start_queue(md->queue);
cec47e3d 2687
2ca3310e 2688 unlock_fs(md);
83d5e5b0 2689 goto out_unlock; /* pushback list is already flushed, so skip flush */
2ca3310e 2690 }
1da177e4 2691
3b00b203
MP
2692 /*
2693 * If dm_wait_for_completion returned 0, the device is completely
2694 * quiescent now. There is no request-processing activity. All new
2695 * requests are being added to md->deferred list.
2696 */
2697
2ca3310e 2698 set_bit(DMF_SUSPENDED, &md->flags);
b84b0287 2699
4d4471cb
KU
2700 dm_table_postsuspend_targets(map);
2701
d287483d 2702out_unlock:
e61290a4 2703 mutex_unlock(&md->suspend_lock);
cf222b37 2704 return r;
1da177e4
LT
2705}
2706
2707int dm_resume(struct mapped_device *md)
2708{
cf222b37 2709 int r = -EINVAL;
cf222b37 2710 struct dm_table *map = NULL;
1da177e4 2711
e61290a4 2712 mutex_lock(&md->suspend_lock);
4f186f8b 2713 if (!dm_suspended_md(md))
cf222b37 2714 goto out;
cf222b37 2715
83d5e5b0 2716 map = md->map;
2ca3310e 2717 if (!map || !dm_table_get_size(map))
cf222b37 2718 goto out;
1da177e4 2719
8757b776
MB
2720 r = dm_table_resume_targets(map);
2721 if (r)
2722 goto out;
2ca3310e 2723
9a1fb464 2724 dm_queue_flush(md);
2ca3310e 2725
cec47e3d
KU
2726 /*
2727 * Flushing deferred I/Os must be done after targets are resumed
2728 * so that mapping of targets can work correctly.
2729 * Request-based dm is queueing the deferred I/Os in its request_queue.
2730 */
2731 if (dm_request_based(md))
2732 start_queue(md->queue);
2733
2ca3310e
AK
2734 unlock_fs(md);
2735
2736 clear_bit(DMF_SUSPENDED, &md->flags);
2737
cf222b37
AK
2738 r = 0;
2739out:
e61290a4 2740 mutex_unlock(&md->suspend_lock);
2ca3310e 2741
cf222b37 2742 return r;
1da177e4
LT
2743}
2744
fd2ed4d2
MP
2745/*
2746 * Internal suspend/resume works like userspace-driven suspend. It waits
2747 * until all bios finish and prevents issuing new bios to the target drivers.
2748 * It may be used only from the kernel.
2749 *
2750 * Internal suspend holds md->suspend_lock, which prevents interaction with
2751 * userspace-driven suspend.
2752 */
2753
2754void dm_internal_suspend(struct mapped_device *md)
2755{
2756 mutex_lock(&md->suspend_lock);
2757 if (dm_suspended_md(md))
2758 return;
2759
2760 set_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
2761 synchronize_srcu(&md->io_barrier);
2762 flush_workqueue(md->wq);
2763 dm_wait_for_completion(md, TASK_UNINTERRUPTIBLE);
2764}
2765
2766void dm_internal_resume(struct mapped_device *md)
2767{
2768 if (dm_suspended_md(md))
2769 goto done;
2770
2771 dm_queue_flush(md);
2772
2773done:
2774 mutex_unlock(&md->suspend_lock);
2775}
2776
1da177e4
LT
2777/*-----------------------------------------------------------------
2778 * Event notification.
2779 *---------------------------------------------------------------*/
3abf85b5 2780int dm_kobject_uevent(struct mapped_device *md, enum kobject_action action,
60935eb2 2781 unsigned cookie)
69267a30 2782{
60935eb2
MB
2783 char udev_cookie[DM_COOKIE_LENGTH];
2784 char *envp[] = { udev_cookie, NULL };
2785
2786 if (!cookie)
3abf85b5 2787 return kobject_uevent(&disk_to_dev(md->disk)->kobj, action);
60935eb2
MB
2788 else {
2789 snprintf(udev_cookie, DM_COOKIE_LENGTH, "%s=%u",
2790 DM_COOKIE_ENV_VAR_NAME, cookie);
3abf85b5
PR
2791 return kobject_uevent_env(&disk_to_dev(md->disk)->kobj,
2792 action, envp);
60935eb2 2793 }
69267a30
AK
2794}
2795
7a8c3d3b
MA
2796uint32_t dm_next_uevent_seq(struct mapped_device *md)
2797{
2798 return atomic_add_return(1, &md->uevent_seq);
2799}
2800
1da177e4
LT
2801uint32_t dm_get_event_nr(struct mapped_device *md)
2802{
2803 return atomic_read(&md->event_nr);
2804}
2805
2806int dm_wait_event(struct mapped_device *md, int event_nr)
2807{
2808 return wait_event_interruptible(md->eventq,
2809 (event_nr != atomic_read(&md->event_nr)));
2810}
2811
7a8c3d3b
MA
2812void dm_uevent_add(struct mapped_device *md, struct list_head *elist)
2813{
2814 unsigned long flags;
2815
2816 spin_lock_irqsave(&md->uevent_lock, flags);
2817 list_add(elist, &md->uevent_list);
2818 spin_unlock_irqrestore(&md->uevent_lock, flags);
2819}
2820
1da177e4
LT
2821/*
2822 * The gendisk is only valid as long as you have a reference
2823 * count on 'md'.
2824 */
2825struct gendisk *dm_disk(struct mapped_device *md)
2826{
2827 return md->disk;
2828}
2829
784aae73
MB
2830struct kobject *dm_kobject(struct mapped_device *md)
2831{
2995fa78 2832 return &md->kobj_holder.kobj;
784aae73
MB
2833}
2834
784aae73
MB
2835struct mapped_device *dm_get_from_kobject(struct kobject *kobj)
2836{
2837 struct mapped_device *md;
2838
2995fa78 2839 md = container_of(kobj, struct mapped_device, kobj_holder.kobj);
784aae73 2840
4d89b7b4 2841 if (test_bit(DMF_FREEING, &md->flags) ||
432a212c 2842 dm_deleting_md(md))
4d89b7b4
MB
2843 return NULL;
2844
784aae73
MB
2845 dm_get(md);
2846 return md;
2847}
2848
4f186f8b 2849int dm_suspended_md(struct mapped_device *md)
1da177e4
LT
2850{
2851 return test_bit(DMF_SUSPENDED, &md->flags);
2852}
2853
2c140a24
MP
2854int dm_test_deferred_remove_flag(struct mapped_device *md)
2855{
2856 return test_bit(DMF_DEFERRED_REMOVE, &md->flags);
2857}
2858
64dbce58
KU
2859int dm_suspended(struct dm_target *ti)
2860{
ecdb2e25 2861 return dm_suspended_md(dm_table_get_md(ti->table));
64dbce58
KU
2862}
2863EXPORT_SYMBOL_GPL(dm_suspended);
2864
2e93ccc1
KU
2865int dm_noflush_suspending(struct dm_target *ti)
2866{
ecdb2e25 2867 return __noflush_suspending(dm_table_get_md(ti->table));
2e93ccc1
KU
2868}
2869EXPORT_SYMBOL_GPL(dm_noflush_suspending);
2870
c0820cf5 2871struct dm_md_mempools *dm_alloc_md_mempools(unsigned type, unsigned integrity, unsigned per_bio_data_size)
e6ee8c0b 2872{
5f015204
JN
2873 struct dm_md_mempools *pools = kzalloc(sizeof(*pools), GFP_KERNEL);
2874 struct kmem_cache *cachep;
2875 unsigned int pool_size;
2876 unsigned int front_pad;
e6ee8c0b
KU
2877
2878 if (!pools)
2879 return NULL;
2880
23e5083b 2881 if (type == DM_TYPE_BIO_BASED) {
5f015204 2882 cachep = _io_cache;
e8603136 2883 pool_size = dm_get_reserved_bio_based_ios();
5f015204
JN
2884 front_pad = roundup(per_bio_data_size, __alignof__(struct dm_target_io)) + offsetof(struct dm_target_io, clone);
2885 } else if (type == DM_TYPE_REQUEST_BASED) {
2886 cachep = _rq_tio_cache;
f4790826 2887 pool_size = dm_get_reserved_rq_based_ios();
5f015204
JN
2888 front_pad = offsetof(struct dm_rq_clone_bio_info, clone);
2889 /* per_bio_data_size is not used. See __bind_mempools(). */
2890 WARN_ON(per_bio_data_size != 0);
2891 } else
2892 goto out;
e6ee8c0b 2893
6cfa5857 2894 pools->io_pool = mempool_create_slab_pool(pool_size, cachep);
5f015204
JN
2895 if (!pools->io_pool)
2896 goto out;
e6ee8c0b 2897
3d8aab2d 2898 pools->bs = bioset_create_nobvec(pool_size, front_pad);
e6ee8c0b 2899 if (!pools->bs)
5f015204 2900 goto out;
e6ee8c0b 2901
a91a2785 2902 if (integrity && bioset_integrity_create(pools->bs, pool_size))
5f015204 2903 goto out;
a91a2785 2904
e6ee8c0b
KU
2905 return pools;
2906
5f015204
JN
2907out:
2908 dm_free_md_mempools(pools);
e6ee8c0b
KU
2909
2910 return NULL;
2911}
2912
2913void dm_free_md_mempools(struct dm_md_mempools *pools)
2914{
2915 if (!pools)
2916 return;
2917
2918 if (pools->io_pool)
2919 mempool_destroy(pools->io_pool);
2920
e6ee8c0b
KU
2921 if (pools->bs)
2922 bioset_free(pools->bs);
2923
2924 kfree(pools);
2925}
2926
83d5cde4 2927static const struct block_device_operations dm_blk_dops = {
1da177e4
LT
2928 .open = dm_blk_open,
2929 .release = dm_blk_close,
aa129a22 2930 .ioctl = dm_blk_ioctl,
3ac51e74 2931 .getgeo = dm_blk_getgeo,
1da177e4
LT
2932 .owner = THIS_MODULE
2933};
2934
1da177e4
LT
2935/*
2936 * module hooks
2937 */
2938module_init(dm_init);
2939module_exit(dm_exit);
2940
2941module_param(major, uint, 0);
2942MODULE_PARM_DESC(major, "The major number of the device mapper");
f4790826 2943
e8603136
MS
2944module_param(reserved_bio_based_ios, uint, S_IRUGO | S_IWUSR);
2945MODULE_PARM_DESC(reserved_bio_based_ios, "Reserved IOs in bio-based mempools");
2946
f4790826
MS
2947module_param(reserved_rq_based_ios, uint, S_IRUGO | S_IWUSR);
2948MODULE_PARM_DESC(reserved_rq_based_ios, "Reserved IOs in request-based mempools");
2949
1da177e4
LT
2950MODULE_DESCRIPTION(DM_NAME " driver");
2951MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
2952MODULE_LICENSE("GPL");