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