blob: fa70c90e67574115831f17b1db3377bea147c2ba [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2001, 2002 Sistina Software (UK) Limited.
Milan Broz784aae72009-01-06 03:05:12 +00003 * Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * This file is released under the GPL.
6 */
7
Mike Snitzer4cc96132016-05-12 16:28:10 -04008#include "dm-core.h"
9#include "dm-rq.h"
Mike Anderson51e5b2b2007-10-19 22:48:00 +010010#include "dm-uevent.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
12#include <linux/init.h>
13#include <linux/module.h>
Arjan van de Ven48c9c272006-03-27 01:18:20 -080014#include <linux/mutex.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010015#include <linux/sched/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/blkpg.h>
17#include <linux/bio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/mempool.h>
Dan Williamsf26c5712017-04-12 12:35:44 -070019#include <linux/dax.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/slab.h>
21#include <linux/idr.h>
Dan Williams7e026c82017-05-29 12:57:56 -070022#include <linux/uio.h>
Darrick J. Wong3ac51e72006-03-27 01:17:54 -080023#include <linux/hdreg.h>
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +010024#include <linux/delay.h>
Mike Snitzerffcc3932014-10-28 18:34:52 -040025#include <linux/wait.h>
Christoph Hellwig71cdb692015-10-15 14:10:51 +020026#include <linux/pr.h>
Elena Reshetovab0b4d7c2017-10-20 10:37:39 +030027#include <linux/refcount.h>
Li Zefan55782132009-06-09 13:43:05 +080028
Alasdair G Kergon72d94862006-06-26 00:27:35 -070029#define DM_MSG_PREFIX "core"
30
Milan Broz60935eb2009-06-22 10:12:30 +010031/*
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070038static const char *_name = DM_NAME;
39
40static unsigned int major = 0;
41static unsigned int _major = 0;
42
Alasdair G Kergond15b7742011-08-02 12:32:01 +010043static DEFINE_IDR(_minor_idr);
44
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -070045static DEFINE_SPINLOCK(_minor_lock);
Mikulas Patocka2c140a22013-11-01 18:27:41 -040046
47static void do_deferred_remove(struct work_struct *w);
48
49static DECLARE_WORK(deferred_remove_work, do_deferred_remove);
50
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -040051static struct workqueue_struct *deferred_remove_workqueue;
52
Mikulas Patocka93e64422017-01-16 16:05:59 -050053atomic_t dm_global_event_nr = ATOMIC_INIT(0);
54DECLARE_WAIT_QUEUE_HEAD(dm_global_eventq);
55
Mikulas Patocka62e08242017-09-20 07:29:49 -040056void dm_issue_global_event(void)
57{
58 atomic_inc(&dm_global_event_nr);
59 wake_up(&dm_global_eventq);
60}
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062/*
Mike Snitzer64f52b02017-12-11 23:17:47 -050063 * One of these is allocated (on-stack) per original bio.
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 */
Mike Snitzer64f52b02017-12-11 23:17:47 -050065struct clone_info {
Mike Snitzer64f52b02017-12-11 23:17:47 -050066 struct dm_table *map;
67 struct bio *bio;
68 struct dm_io *io;
69 sector_t sector;
70 unsigned sector_count;
71};
72
73/*
74 * One of these is allocated per clone bio.
75 */
76#define DM_TIO_MAGIC 7282014
77struct dm_target_io {
78 unsigned magic;
79 struct dm_io *io;
80 struct dm_target *ti;
81 unsigned target_bio_nr;
82 unsigned *len_ptr;
83 bool inside_dm_io;
84 struct bio clone;
85};
86
87/*
88 * One of these is allocated per original bio.
89 * It contains the first clone used for that original.
90 */
91#define DM_IO_MAGIC 5191977
Linus Torvalds1da177e2005-04-16 15:20:36 -070092struct dm_io {
Mike Snitzer64f52b02017-12-11 23:17:47 -050093 unsigned magic;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 struct mapped_device *md;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +020095 blk_status_t status;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 atomic_t io_count;
Mike Snitzer745dc572017-12-11 20:51:50 -050097 struct bio *orig_bio;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -080098 unsigned long start_time;
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +010099 spinlock_t endio_lock;
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400100 struct dm_stats_aux stats_aux;
Mike Snitzer64f52b02017-12-11 23:17:47 -0500101 /* last member of dm_target_io is 'struct bio' */
102 struct dm_target_io tio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103};
104
Mike Snitzer64f52b02017-12-11 23:17:47 -0500105void *dm_per_bio_data(struct bio *bio, size_t data_size)
106{
107 struct dm_target_io *tio = container_of(bio, struct dm_target_io, clone);
108 if (!tio->inside_dm_io)
109 return (char *)bio - offsetof(struct dm_target_io, clone) - data_size;
110 return (char *)bio - offsetof(struct dm_target_io, clone) - offsetof(struct dm_io, tio) - data_size;
111}
112EXPORT_SYMBOL_GPL(dm_per_bio_data);
113
114struct bio *dm_bio_from_per_bio_data(void *data, size_t data_size)
115{
116 struct dm_io *io = (struct dm_io *)((char *)data + data_size);
117 if (io->magic == DM_IO_MAGIC)
118 return (struct bio *)((char *)io + offsetof(struct dm_io, tio) + offsetof(struct dm_target_io, clone));
119 BUG_ON(io->magic != DM_TIO_MAGIC);
120 return (struct bio *)((char *)io + offsetof(struct dm_target_io, clone));
121}
122EXPORT_SYMBOL_GPL(dm_bio_from_per_bio_data);
123
124unsigned dm_bio_get_target_bio_nr(const struct bio *bio)
125{
126 return container_of(bio, struct dm_target_io, clone)->target_bio_nr;
127}
128EXPORT_SYMBOL_GPL(dm_bio_get_target_bio_nr);
129
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -0700130#define MINOR_ALLOCED ((void *)-1)
131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132/*
133 * Bits for the md->flags field.
134 */
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +0100135#define DMF_BLOCK_IO_FOR_SUSPEND 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136#define DMF_SUSPENDED 1
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -0800137#define DMF_FROZEN 2
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700138#define DMF_FREEING 3
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700139#define DMF_DELETING 4
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800140#define DMF_NOFLUSH_SUSPENDING 5
Kent Overstreet8ae12662015-04-27 23:48:34 -0700141#define DMF_DEFERRED_REMOVE 6
142#define DMF_SUSPENDED_INTERNALLY 7
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Mike Snitzer115485e2016-02-22 12:16:21 -0500144#define DM_NUMA_NODE NUMA_NO_NODE
Mike Snitzer115485e2016-02-22 12:16:21 -0500145static int dm_numa_node = DM_NUMA_NODE;
Mike Snitzerfaad87d2016-01-28 16:52:56 -0500146
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +0100147/*
148 * For mempools pre-allocation at the table loading time.
149 */
150struct dm_md_mempools {
Kent Overstreet6f1c8192018-05-20 18:25:53 -0400151 struct bio_set bs;
152 struct bio_set io_bs;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +0100153};
154
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500155struct table_device {
156 struct list_head list;
Elena Reshetovab0b4d7c2017-10-20 10:37:39 +0300157 refcount_t count;
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500158 struct dm_dev dm_dev;
159};
160
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000161static struct kmem_cache *_rq_tio_cache;
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500162static struct kmem_cache *_rq_cache;
Kent Overstreet94818742012-09-07 13:44:01 -0700163
Mike Snitzerf4790822013-09-12 18:06:12 -0400164/*
Mike Snitzere8603132013-09-12 18:06:12 -0400165 * Bio-based DM's mempools' reserved IOs set by the user.
166 */
Mike Snitzer4cc96132016-05-12 16:28:10 -0400167#define RESERVED_BIO_BASED_IOS 16
Mike Snitzere8603132013-09-12 18:06:12 -0400168static unsigned reserved_bio_based_ios = RESERVED_BIO_BASED_IOS;
169
Mike Snitzer115485e2016-02-22 12:16:21 -0500170static int __dm_get_module_param_int(int *module_param, int min, int max)
171{
Mark Rutland6aa7de02017-10-23 14:07:29 -0700172 int param = READ_ONCE(*module_param);
Mike Snitzer115485e2016-02-22 12:16:21 -0500173 int modified_param = 0;
174 bool modified = true;
175
176 if (param < min)
177 modified_param = min;
178 else if (param > max)
179 modified_param = max;
180 else
181 modified = false;
182
183 if (modified) {
184 (void)cmpxchg(module_param, param, modified_param);
185 param = modified_param;
186 }
187
188 return param;
189}
190
Mike Snitzer4cc96132016-05-12 16:28:10 -0400191unsigned __dm_get_module_param(unsigned *module_param,
192 unsigned def, unsigned max)
Mike Snitzerf4790822013-09-12 18:06:12 -0400193{
Mark Rutland6aa7de02017-10-23 14:07:29 -0700194 unsigned param = READ_ONCE(*module_param);
Mike Snitzer09c2d532015-02-27 22:25:26 -0500195 unsigned modified_param = 0;
Mike Snitzerf4790822013-09-12 18:06:12 -0400196
Mike Snitzer09c2d532015-02-27 22:25:26 -0500197 if (!param)
198 modified_param = def;
199 else if (param > max)
200 modified_param = max;
Mike Snitzerf4790822013-09-12 18:06:12 -0400201
Mike Snitzer09c2d532015-02-27 22:25:26 -0500202 if (modified_param) {
203 (void)cmpxchg(module_param, param, modified_param);
204 param = modified_param;
Mike Snitzerf4790822013-09-12 18:06:12 -0400205 }
206
Mike Snitzer09c2d532015-02-27 22:25:26 -0500207 return param;
Mike Snitzerf4790822013-09-12 18:06:12 -0400208}
209
Mike Snitzere8603132013-09-12 18:06:12 -0400210unsigned dm_get_reserved_bio_based_ios(void)
211{
Mike Snitzer09c2d532015-02-27 22:25:26 -0500212 return __dm_get_module_param(&reserved_bio_based_ios,
Mike Snitzer4cc96132016-05-12 16:28:10 -0400213 RESERVED_BIO_BASED_IOS, DM_RESERVED_MAX_IOS);
Mike Snitzere8603132013-09-12 18:06:12 -0400214}
215EXPORT_SYMBOL_GPL(dm_get_reserved_bio_based_ios);
216
Mike Snitzer115485e2016-02-22 12:16:21 -0500217static unsigned dm_get_numa_node(void)
218{
219 return __dm_get_module_param_int(&dm_numa_node,
220 DM_NUMA_NODE, num_online_nodes() - 1);
221}
222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223static int __init local_init(void)
224{
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100225 int r = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000227 _rq_tio_cache = KMEM_CACHE(dm_rq_target_io, 0);
228 if (!_rq_tio_cache)
Mike Snitzerdde1e1e2017-12-11 23:28:13 -0500229 return r;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000230
Mike Snitzereca7ee62016-02-20 13:45:38 -0500231 _rq_cache = kmem_cache_create("dm_old_clone_request", sizeof(struct request),
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500232 __alignof__(struct request), 0, NULL);
233 if (!_rq_cache)
234 goto out_free_rq_tio_cache;
235
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100236 r = dm_uevent_init();
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100237 if (r)
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500238 goto out_free_rq_cache;
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100239
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400240 deferred_remove_workqueue = alloc_workqueue("kdmremove", WQ_UNBOUND, 1);
241 if (!deferred_remove_workqueue) {
242 r = -ENOMEM;
243 goto out_uevent_exit;
244 }
245
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 _major = major;
247 r = register_blkdev(_major, _name);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100248 if (r < 0)
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400249 goto out_free_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251 if (!_major)
252 _major = r;
253
254 return 0;
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100255
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400256out_free_workqueue:
257 destroy_workqueue(deferred_remove_workqueue);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100258out_uevent_exit:
259 dm_uevent_exit();
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500260out_free_rq_cache:
261 kmem_cache_destroy(_rq_cache);
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000262out_free_rq_tio_cache:
263 kmem_cache_destroy(_rq_tio_cache);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100264
265 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266}
267
268static void local_exit(void)
269{
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400270 flush_scheduled_work();
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400271 destroy_workqueue(deferred_remove_workqueue);
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400272
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500273 kmem_cache_destroy(_rq_cache);
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000274 kmem_cache_destroy(_rq_tio_cache);
Akinobu Mita00d59402007-07-17 04:03:46 -0700275 unregister_blkdev(_major, _name);
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100276 dm_uevent_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
278 _major = 0;
279
280 DMINFO("cleaned up");
281}
282
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000283static int (*_inits[])(void) __initdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 local_init,
285 dm_target_init,
286 dm_linear_init,
287 dm_stripe_init,
Mikulas Patocka952b3552009-12-10 23:51:57 +0000288 dm_io_init,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100289 dm_kcopyd_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 dm_interface_init,
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400291 dm_statistics_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292};
293
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000294static void (*_exits[])(void) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 local_exit,
296 dm_target_exit,
297 dm_linear_exit,
298 dm_stripe_exit,
Mikulas Patocka952b3552009-12-10 23:51:57 +0000299 dm_io_exit,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100300 dm_kcopyd_exit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 dm_interface_exit,
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400302 dm_statistics_exit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303};
304
305static int __init dm_init(void)
306{
307 const int count = ARRAY_SIZE(_inits);
308
309 int r, i;
310
311 for (i = 0; i < count; i++) {
312 r = _inits[i]();
313 if (r)
314 goto bad;
315 }
316
317 return 0;
318
319 bad:
320 while (i--)
321 _exits[i]();
322
323 return r;
324}
325
326static void __exit dm_exit(void)
327{
328 int i = ARRAY_SIZE(_exits);
329
330 while (i--)
331 _exits[i]();
Alasdair G Kergond15b7742011-08-02 12:32:01 +0100332
333 /*
334 * Should be empty by this point.
335 */
Alasdair G Kergond15b7742011-08-02 12:32:01 +0100336 idr_destroy(&_minor_idr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337}
338
339/*
340 * Block device functions
341 */
Mike Anderson432a2122009-12-10 23:52:20 +0000342int dm_deleting_md(struct mapped_device *md)
343{
344 return test_bit(DMF_DELETING, &md->flags);
345}
346
Al Virofe5f9f22008-03-02 10:29:31 -0500347static int dm_blk_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348{
349 struct mapped_device *md;
350
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700351 spin_lock(&_minor_lock);
352
Al Virofe5f9f22008-03-02 10:29:31 -0500353 md = bdev->bd_disk->private_data;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700354 if (!md)
355 goto out;
356
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700357 if (test_bit(DMF_FREEING, &md->flags) ||
Mike Anderson432a2122009-12-10 23:52:20 +0000358 dm_deleting_md(md)) {
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700359 md = NULL;
360 goto out;
361 }
362
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 dm_get(md);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700364 atomic_inc(&md->open_count);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700365out:
366 spin_unlock(&_minor_lock);
367
368 return md ? 0 : -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369}
370
Al Virodb2a1442013-05-05 21:52:57 -0400371static void dm_blk_close(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372{
Mike Snitzer63a4f062015-03-23 17:01:43 -0400373 struct mapped_device *md;
Arnd Bergmann6e9624b2010-08-07 18:25:34 +0200374
Milan Broz4a1aeb92011-01-13 19:59:48 +0000375 spin_lock(&_minor_lock);
376
Mike Snitzer63a4f062015-03-23 17:01:43 -0400377 md = disk->private_data;
378 if (WARN_ON(!md))
379 goto out;
380
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400381 if (atomic_dec_and_test(&md->open_count) &&
382 (test_bit(DMF_DEFERRED_REMOVE, &md->flags)))
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400383 queue_work(deferred_remove_workqueue, &deferred_remove_work);
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400384
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 dm_put(md);
Mike Snitzer63a4f062015-03-23 17:01:43 -0400386out:
Milan Broz4a1aeb92011-01-13 19:59:48 +0000387 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388}
389
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700390int dm_open_count(struct mapped_device *md)
391{
392 return atomic_read(&md->open_count);
393}
394
395/*
396 * Guarantees nothing is using the device before it's deleted.
397 */
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400398int dm_lock_for_deletion(struct mapped_device *md, bool mark_deferred, bool only_deferred)
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700399{
400 int r = 0;
401
402 spin_lock(&_minor_lock);
403
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400404 if (dm_open_count(md)) {
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700405 r = -EBUSY;
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400406 if (mark_deferred)
407 set_bit(DMF_DEFERRED_REMOVE, &md->flags);
408 } else if (only_deferred && !test_bit(DMF_DEFERRED_REMOVE, &md->flags))
409 r = -EEXIST;
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700410 else
411 set_bit(DMF_DELETING, &md->flags);
412
413 spin_unlock(&_minor_lock);
414
415 return r;
416}
417
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400418int dm_cancel_deferred_remove(struct mapped_device *md)
419{
420 int r = 0;
421
422 spin_lock(&_minor_lock);
423
424 if (test_bit(DMF_DELETING, &md->flags))
425 r = -EBUSY;
426 else
427 clear_bit(DMF_DEFERRED_REMOVE, &md->flags);
428
429 spin_unlock(&_minor_lock);
430
431 return r;
432}
433
434static void do_deferred_remove(struct work_struct *w)
435{
436 dm_deferred_remove();
437}
438
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400439sector_t dm_get_size(struct mapped_device *md)
440{
441 return get_capacity(md->disk);
442}
443
Mike Snitzer9974fa22014-02-28 15:33:43 +0100444struct request_queue *dm_get_md_queue(struct mapped_device *md)
445{
446 return md->queue;
447}
448
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400449struct dm_stats *dm_get_stats(struct mapped_device *md)
450{
451 return &md->stats;
452}
453
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800454static int dm_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
455{
456 struct mapped_device *md = bdev->bd_disk->private_data;
457
458 return dm_get_geometry(md, geo);
459}
460
Christoph Hellwige76239a2018-10-12 19:08:49 +0900461static int dm_blk_report_zones(struct gendisk *disk, sector_t sector,
462 struct blk_zone *zones, unsigned int *nr_zones,
463 gfp_t gfp_mask)
464{
465#ifdef CONFIG_BLK_DEV_ZONED
466 struct mapped_device *md = disk->private_data;
467 struct dm_target *tgt;
468 struct dm_table *map;
469 int srcu_idx, ret;
470
471 if (dm_suspended_md(md))
472 return -EAGAIN;
473
474 map = dm_get_live_table(md, &srcu_idx);
475 if (!map)
476 return -EIO;
477
478 tgt = dm_table_find_target(map, sector);
479 if (!dm_target_is_valid(tgt)) {
480 ret = -EIO;
481 goto out;
482 }
483
484 /*
485 * If we are executing this, we already know that the block device
486 * is a zoned device and so each target should have support for that
487 * type of drive. A missing report_zones method means that the target
488 * driver has a problem.
489 */
490 if (WARN_ON(!tgt->type->report_zones)) {
491 ret = -EIO;
492 goto out;
493 }
494
495 /*
496 * blkdev_report_zones() will loop and call this again to cover all the
497 * zones of the target, eventually moving on to the next target.
498 * So there is no need to loop here trying to fill the entire array
499 * of zones.
500 */
501 ret = tgt->type->report_zones(tgt, sector, zones,
502 nr_zones, gfp_mask);
503
504out:
505 dm_put_live_table(md, srcu_idx);
506 return ret;
507#else
508 return -ENOTSUPP;
509#endif
510}
511
Mike Snitzer971888c2018-04-03 15:05:12 -0400512static int dm_prepare_ioctl(struct mapped_device *md, int *srcu_idx,
Mike Snitzer5bd5e8d2018-04-03 16:54:10 -0400513 struct block_device **bdev)
Mike Snitzer971888c2018-04-03 15:05:12 -0400514 __acquires(md->io_barrier)
Milan Brozaa129a22006-10-03 01:15:15 -0700515{
Mike Snitzer66482022016-02-18 15:44:39 -0500516 struct dm_target *tgt;
Hannes Reinecke6c182cd2013-07-10 23:41:15 +0100517 struct dm_table *map;
Mike Snitzer971888c2018-04-03 15:05:12 -0400518 int r;
Milan Brozaa129a22006-10-03 01:15:15 -0700519
Hannes Reinecke6c182cd2013-07-10 23:41:15 +0100520retry:
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200521 r = -ENOTTY;
Mike Snitzer971888c2018-04-03 15:05:12 -0400522 map = dm_get_live_table(md, srcu_idx);
Milan Brozaa129a22006-10-03 01:15:15 -0700523 if (!map || !dm_table_get_size(map))
Mike Snitzer971888c2018-04-03 15:05:12 -0400524 return r;
Milan Brozaa129a22006-10-03 01:15:15 -0700525
526 /* We only support devices that have a single target */
527 if (dm_table_get_num_targets(map) != 1)
Mike Snitzer971888c2018-04-03 15:05:12 -0400528 return r;
Milan Brozaa129a22006-10-03 01:15:15 -0700529
Mike Snitzer66482022016-02-18 15:44:39 -0500530 tgt = dm_table_get_target(map, 0);
531 if (!tgt->type->prepare_ioctl)
Mike Snitzer971888c2018-04-03 15:05:12 -0400532 return r;
Milan Brozaa129a22006-10-03 01:15:15 -0700533
Mike Snitzer971888c2018-04-03 15:05:12 -0400534 if (dm_suspended_md(md))
535 return -EAGAIN;
Milan Brozaa129a22006-10-03 01:15:15 -0700536
Mike Snitzer5bd5e8d2018-04-03 16:54:10 -0400537 r = tgt->type->prepare_ioctl(tgt, bdev);
Junichi Nomura5bbbfdf2015-11-17 09:39:26 +0000538 if (r == -ENOTCONN && !fatal_signal_pending(current)) {
Mike Snitzer971888c2018-04-03 15:05:12 -0400539 dm_put_live_table(md, *srcu_idx);
Hannes Reinecke6c182cd2013-07-10 23:41:15 +0100540 msleep(10);
541 goto retry;
542 }
Mike Snitzer971888c2018-04-03 15:05:12 -0400543
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200544 return r;
545}
Hannes Reinecke6c182cd2013-07-10 23:41:15 +0100546
Mike Snitzer971888c2018-04-03 15:05:12 -0400547static void dm_unprepare_ioctl(struct mapped_device *md, int srcu_idx)
548 __releases(md->io_barrier)
549{
550 dm_put_live_table(md, srcu_idx);
551}
552
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200553static int dm_blk_ioctl(struct block_device *bdev, fmode_t mode,
554 unsigned int cmd, unsigned long arg)
555{
556 struct mapped_device *md = bdev->bd_disk->private_data;
Mike Snitzer971888c2018-04-03 15:05:12 -0400557 int r, srcu_idx;
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200558
Mike Snitzer5bd5e8d2018-04-03 16:54:10 -0400559 r = dm_prepare_ioctl(md, &srcu_idx, &bdev);
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200560 if (r < 0)
Mike Snitzer971888c2018-04-03 15:05:12 -0400561 goto out;
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200562
563 if (r > 0) {
564 /*
Christoph Hellwige980f622017-02-04 10:45:03 +0100565 * Target determined this ioctl is being issued against a
566 * subset of the parent bdev; require extra privileges.
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200567 */
Christoph Hellwige980f622017-02-04 10:45:03 +0100568 if (!capable(CAP_SYS_RAWIO)) {
569 DMWARN_LIMIT(
570 "%s: sending ioctl %x to DM device without required privilege.",
571 current->comm, cmd);
572 r = -ENOIOCTLCMD;
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200573 goto out;
Christoph Hellwige980f622017-02-04 10:45:03 +0100574 }
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200575 }
576
Mike Snitzer66482022016-02-18 15:44:39 -0500577 r = __blkdev_driver_ioctl(bdev, mode, cmd, arg);
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200578out:
Mike Snitzer971888c2018-04-03 15:05:12 -0400579 dm_unprepare_ioctl(md, srcu_idx);
Milan Brozaa129a22006-10-03 01:15:15 -0700580 return r;
581}
582
Mike Snitzer978e51b2017-12-09 15:16:42 -0500583static void start_io_acct(struct dm_io *io);
584
585static struct dm_io *alloc_io(struct mapped_device *md, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586{
Mike Snitzer64f52b02017-12-11 23:17:47 -0500587 struct dm_io *io;
588 struct dm_target_io *tio;
589 struct bio *clone;
590
Kent Overstreet6f1c8192018-05-20 18:25:53 -0400591 clone = bio_alloc_bioset(GFP_NOIO, 0, &md->io_bs);
Mike Snitzer64f52b02017-12-11 23:17:47 -0500592 if (!clone)
593 return NULL;
594
595 tio = container_of(clone, struct dm_target_io, clone);
596 tio->inside_dm_io = true;
597 tio->io = NULL;
598
599 io = container_of(tio, struct dm_io, tio);
600 io->magic = DM_IO_MAGIC;
Mike Snitzer978e51b2017-12-09 15:16:42 -0500601 io->status = 0;
602 atomic_set(&io->io_count, 1);
603 io->orig_bio = bio;
604 io->md = md;
605 spin_lock_init(&io->endio_lock);
606
607 start_io_acct(io);
Mike Snitzer64f52b02017-12-11 23:17:47 -0500608
609 return io;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610}
611
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100612static void free_io(struct mapped_device *md, struct dm_io *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613{
Mike Snitzer64f52b02017-12-11 23:17:47 -0500614 bio_put(&io->tio.clone);
615}
616
617static struct dm_target_io *alloc_tio(struct clone_info *ci, struct dm_target *ti,
618 unsigned target_bio_nr, gfp_t gfp_mask)
619{
620 struct dm_target_io *tio;
621
622 if (!ci->io->tio.io) {
623 /* the dm_target_io embedded in ci->io is available */
624 tio = &ci->io->tio;
625 } else {
Kent Overstreet6f1c8192018-05-20 18:25:53 -0400626 struct bio *clone = bio_alloc_bioset(gfp_mask, 0, &ci->io->md->bs);
Mike Snitzer64f52b02017-12-11 23:17:47 -0500627 if (!clone)
628 return NULL;
629
630 tio = container_of(clone, struct dm_target_io, clone);
631 tio->inside_dm_io = false;
632 }
633
634 tio->magic = DM_TIO_MAGIC;
635 tio->io = ci->io;
636 tio->ti = ti;
637 tio->target_bio_nr = target_bio_nr;
638
639 return tio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640}
641
Mike Snitzercfae7522016-04-11 12:05:38 -0400642static void free_tio(struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643{
Mike Snitzer64f52b02017-12-11 23:17:47 -0500644 if (tio->inside_dm_io)
645 return;
Mikulas Patockadba14162012-10-12 21:02:15 +0100646 bio_put(&tio->clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647}
648
Mike Snitzerc4576ae2018-12-11 09:10:26 -0500649static bool md_in_flight_bios(struct mapped_device *md)
Kiyoshi Ueda90abb8c2009-12-10 23:52:13 +0000650{
Mikulas Patocka6f757232018-12-06 11:41:22 -0500651 int cpu;
652 struct hd_struct *part = &dm_disk(md)->part0;
Jens Axboeb7934ba2018-12-10 15:45:53 -0700653 long sum = 0;
Mikulas Patocka6f757232018-12-06 11:41:22 -0500654
655 for_each_possible_cpu(cpu) {
Jens Axboeb7934ba2018-12-10 15:45:53 -0700656 sum += part_stat_local_read_cpu(part, in_flight[0], cpu);
657 sum += part_stat_local_read_cpu(part, in_flight[1], cpu);
Mikulas Patocka6f757232018-12-06 11:41:22 -0500658 }
659
Jens Axboeb7934ba2018-12-10 15:45:53 -0700660 return sum != 0;
Kiyoshi Ueda90abb8c2009-12-10 23:52:13 +0000661}
662
Mike Snitzerc4576ae2018-12-11 09:10:26 -0500663static bool md_in_flight(struct mapped_device *md)
664{
665 if (queue_is_mq(md->queue))
Jens Axboe3c94d832018-12-17 21:11:17 -0700666 return blk_mq_queue_inflight(md->queue);
Mike Snitzerc4576ae2018-12-11 09:10:26 -0500667 else
668 return md_in_flight_bios(md);
669}
670
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800671static void start_io_acct(struct dm_io *io)
672{
673 struct mapped_device *md = io->md;
Mike Snitzer745dc572017-12-11 20:51:50 -0500674 struct bio *bio = io->orig_bio;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800675
676 io->start_time = jiffies;
677
Michael Callahanddcf35d2018-07-18 04:47:39 -0700678 generic_start_io_acct(md->queue, bio_op(bio), bio_sectors(bio),
679 &dm_disk(md)->part0);
Mike Snitzerf3986372017-12-17 11:56:48 -0500680
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400681 if (unlikely(dm_stats_used(&md->stats)))
Mike Christie528ec5a2016-06-05 14:32:03 -0500682 dm_stats_account_io(&md->stats, bio_data_dir(bio),
683 bio->bi_iter.bi_sector, bio_sectors(bio),
684 false, 0, &io->stats_aux);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800685}
686
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000687static void end_io_acct(struct dm_io *io)
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800688{
689 struct mapped_device *md = io->md;
Mike Snitzer745dc572017-12-11 20:51:50 -0500690 struct bio *bio = io->orig_bio;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800691 unsigned long duration = jiffies - io->start_time;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800692
Michael Callahanddcf35d2018-07-18 04:47:39 -0700693 generic_end_io_acct(md->queue, bio_op(bio), &dm_disk(md)->part0,
694 io->start_time);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800695
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400696 if (unlikely(dm_stats_used(&md->stats)))
Mike Christie528ec5a2016-06-05 14:32:03 -0500697 dm_stats_account_io(&md->stats, bio_data_dir(bio),
698 bio->bi_iter.bi_sector, bio_sectors(bio),
699 true, duration, &io->stats_aux);
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400700
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000701 /* nudge anyone waiting on suspend queue */
Jens Axboeb7934ba2018-12-10 15:45:53 -0700702 if (unlikely(waitqueue_active(&md->wait)))
703 wake_up(&md->wait);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800704}
705
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706/*
707 * Add the bio to the list of deferred io.
708 */
Mikulas Patocka92c63902009-04-09 00:27:15 +0100709static void queue_io(struct mapped_device *md, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710{
Kiyoshi Ueda054474202010-09-08 18:07:01 +0200711 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
Kiyoshi Ueda054474202010-09-08 18:07:01 +0200713 spin_lock_irqsave(&md->deferred_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 bio_list_add(&md->deferred, bio);
Kiyoshi Ueda054474202010-09-08 18:07:01 +0200715 spin_unlock_irqrestore(&md->deferred_lock, flags);
Tejun Heo6a8736d2010-09-08 18:07:00 +0200716 queue_work(md->wq, &md->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717}
718
719/*
720 * Everyone (including functions in this file), should use this
721 * function to access the md->map field, and make sure they call
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100722 * dm_put_live_table() when finished.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 */
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100724struct dm_table *dm_get_live_table(struct mapped_device *md, int *srcu_idx) __acquires(md->io_barrier)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725{
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100726 *srcu_idx = srcu_read_lock(&md->io_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100728 return srcu_dereference(md->map, &md->io_barrier);
729}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100731void dm_put_live_table(struct mapped_device *md, int srcu_idx) __releases(md->io_barrier)
732{
733 srcu_read_unlock(&md->io_barrier, srcu_idx);
734}
735
736void dm_sync_table(struct mapped_device *md)
737{
738 synchronize_srcu(&md->io_barrier);
739 synchronize_rcu_expedited();
740}
741
742/*
743 * A fast alternative to dm_get_live_table/dm_put_live_table.
744 * The caller must not block between these two functions.
745 */
746static struct dm_table *dm_get_live_table_fast(struct mapped_device *md) __acquires(RCU)
747{
748 rcu_read_lock();
749 return rcu_dereference(md->map);
750}
751
752static void dm_put_live_table_fast(struct mapped_device *md) __releases(RCU)
753{
754 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755}
756
Mike Snitzer971888c2018-04-03 15:05:12 -0400757static char *_dm_claim_ptr = "I belong to device-mapper";
758
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800759/*
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500760 * Open a table device so we can use it as a map destination.
761 */
762static int open_table_device(struct table_device *td, dev_t dev,
763 struct mapped_device *md)
764{
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500765 struct block_device *bdev;
766
767 int r;
768
769 BUG_ON(td->dm_dev.bdev);
770
Mike Snitzer519049a2018-02-22 13:31:20 -0500771 bdev = blkdev_get_by_dev(dev, td->dm_dev.mode | FMODE_EXCL, _dm_claim_ptr);
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500772 if (IS_ERR(bdev))
773 return PTR_ERR(bdev);
774
775 r = bd_link_disk_holder(bdev, dm_disk(md));
776 if (r) {
777 blkdev_put(bdev, td->dm_dev.mode | FMODE_EXCL);
778 return r;
779 }
780
781 td->dm_dev.bdev = bdev;
Dan Williams817bf402017-04-12 13:37:44 -0700782 td->dm_dev.dax_dev = dax_get_by_host(bdev->bd_disk->disk_name);
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500783 return 0;
784}
785
786/*
787 * Close a table device that we've been using.
788 */
789static void close_table_device(struct table_device *td, struct mapped_device *md)
790{
791 if (!td->dm_dev.bdev)
792 return;
793
794 bd_unlink_disk_holder(td->dm_dev.bdev, dm_disk(md));
795 blkdev_put(td->dm_dev.bdev, td->dm_dev.mode | FMODE_EXCL);
Dan Williams817bf402017-04-12 13:37:44 -0700796 put_dax(td->dm_dev.dax_dev);
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500797 td->dm_dev.bdev = NULL;
Dan Williams817bf402017-04-12 13:37:44 -0700798 td->dm_dev.dax_dev = NULL;
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500799}
800
801static struct table_device *find_table_device(struct list_head *l, dev_t dev,
802 fmode_t mode) {
803 struct table_device *td;
804
805 list_for_each_entry(td, l, list)
806 if (td->dm_dev.bdev->bd_dev == dev && td->dm_dev.mode == mode)
807 return td;
808
809 return NULL;
810}
811
812int dm_get_table_device(struct mapped_device *md, dev_t dev, fmode_t mode,
813 struct dm_dev **result) {
814 int r;
815 struct table_device *td;
816
817 mutex_lock(&md->table_devices_lock);
818 td = find_table_device(&md->table_devices, dev, mode);
819 if (!td) {
Mike Snitzer115485e2016-02-22 12:16:21 -0500820 td = kmalloc_node(sizeof(*td), GFP_KERNEL, md->numa_node_id);
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500821 if (!td) {
822 mutex_unlock(&md->table_devices_lock);
823 return -ENOMEM;
824 }
825
826 td->dm_dev.mode = mode;
827 td->dm_dev.bdev = NULL;
828
829 if ((r = open_table_device(td, dev, md))) {
830 mutex_unlock(&md->table_devices_lock);
831 kfree(td);
832 return r;
833 }
834
835 format_dev_t(td->dm_dev.name, dev);
836
Elena Reshetovab0b4d7c2017-10-20 10:37:39 +0300837 refcount_set(&td->count, 1);
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500838 list_add(&td->list, &md->table_devices);
Elena Reshetovab0b4d7c2017-10-20 10:37:39 +0300839 } else {
840 refcount_inc(&td->count);
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500841 }
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500842 mutex_unlock(&md->table_devices_lock);
843
844 *result = &td->dm_dev;
845 return 0;
846}
847EXPORT_SYMBOL_GPL(dm_get_table_device);
848
849void dm_put_table_device(struct mapped_device *md, struct dm_dev *d)
850{
851 struct table_device *td = container_of(d, struct table_device, dm_dev);
852
853 mutex_lock(&md->table_devices_lock);
Elena Reshetovab0b4d7c2017-10-20 10:37:39 +0300854 if (refcount_dec_and_test(&td->count)) {
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500855 close_table_device(td, md);
856 list_del(&td->list);
857 kfree(td);
858 }
859 mutex_unlock(&md->table_devices_lock);
860}
861EXPORT_SYMBOL(dm_put_table_device);
862
863static void free_table_devices(struct list_head *devices)
864{
865 struct list_head *tmp, *next;
866
867 list_for_each_safe(tmp, next, devices) {
868 struct table_device *td = list_entry(tmp, struct table_device, list);
869
870 DMWARN("dm_destroy: %s still exists with %d references",
Elena Reshetovab0b4d7c2017-10-20 10:37:39 +0300871 td->dm_dev.name, refcount_read(&td->count));
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500872 kfree(td);
873 }
874}
875
876/*
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800877 * Get the geometry associated with a dm device
878 */
879int dm_get_geometry(struct mapped_device *md, struct hd_geometry *geo)
880{
881 *geo = md->geometry;
882
883 return 0;
884}
885
886/*
887 * Set the geometry of a device.
888 */
889int dm_set_geometry(struct mapped_device *md, struct hd_geometry *geo)
890{
891 sector_t sz = (sector_t)geo->cylinders * geo->heads * geo->sectors;
892
893 if (geo->start > sz) {
894 DMWARN("Start sector is beyond the geometry limits.");
895 return -EINVAL;
896 }
897
898 md->geometry = *geo;
899
900 return 0;
901}
902
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800903static int __noflush_suspending(struct mapped_device *md)
904{
905 return test_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
906}
907
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908/*
909 * Decrements the number of outstanding ios that a bio has been
910 * cloned into, completing the original io if necc.
911 */
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200912static void dec_pending(struct dm_io *io, blk_status_t error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913{
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800914 unsigned long flags;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200915 blk_status_t io_error;
Milan Brozb35f8ca2009-03-16 17:44:36 +0000916 struct bio *bio;
917 struct mapped_device *md = io->md;
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800918
919 /* Push-back supersedes any I/O errors */
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +0100920 if (unlikely(error)) {
921 spin_lock_irqsave(&io->endio_lock, flags);
Mike Snitzer745dc572017-12-11 20:51:50 -0500922 if (!(io->status == BLK_STS_DM_REQUEUE && __noflush_suspending(md)))
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200923 io->status = error;
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +0100924 spin_unlock_irqrestore(&io->endio_lock, flags);
925 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
927 if (atomic_dec_and_test(&io->io_count)) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200928 if (io->status == BLK_STS_DM_REQUEUE) {
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800929 /*
930 * Target requested pushing back the I/O.
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800931 */
Mikulas Patocka022c2612009-04-02 19:55:39 +0100932 spin_lock_irqsave(&md->deferred_lock, flags);
Tejun Heo6a8736d2010-09-08 18:07:00 +0200933 if (__noflush_suspending(md))
Mike Snitzer745dc572017-12-11 20:51:50 -0500934 /* NOTE early return due to BLK_STS_DM_REQUEUE below */
935 bio_list_add_head(&md->deferred, io->orig_bio);
Tejun Heo6a8736d2010-09-08 18:07:00 +0200936 else
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800937 /* noflush suspend was interrupted. */
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200938 io->status = BLK_STS_IOERR;
Mikulas Patocka022c2612009-04-02 19:55:39 +0100939 spin_unlock_irqrestore(&md->deferred_lock, flags);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800940 }
941
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200942 io_error = io->status;
Mike Snitzer745dc572017-12-11 20:51:50 -0500943 bio = io->orig_bio;
Tejun Heo6a8736d2010-09-08 18:07:00 +0200944 end_io_acct(io);
945 free_io(md, io);
Jens Axboe2056a782006-03-23 20:00:26 +0100946
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200947 if (io_error == BLK_STS_DM_REQUEUE)
Tejun Heo6a8736d2010-09-08 18:07:00 +0200948 return;
949
Jens Axboe1eff9d32016-08-05 15:35:16 -0600950 if ((bio->bi_opf & REQ_PREFLUSH) && bio->bi_iter.bi_size) {
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100951 /*
Tejun Heo6a8736d2010-09-08 18:07:00 +0200952 * Preflush done for flush with data, reissue
Mike Christie28a8f0d2016-06-05 14:32:25 -0500953 * without REQ_PREFLUSH.
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100954 */
Jens Axboe1eff9d32016-08-05 15:35:16 -0600955 bio->bi_opf &= ~REQ_PREFLUSH;
Tejun Heo6a8736d2010-09-08 18:07:00 +0200956 queue_io(md, bio);
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100957 } else {
Mike Snitzerb372d362010-09-08 18:07:01 +0200958 /* done with normal IO or empty flush */
NeilBrown8dd601f2018-02-15 20:00:15 +1100959 if (io_error)
960 bio->bi_status = io_error;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200961 bio_endio(bio);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800962 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 }
964}
965
Mike Snitzer4cc96132016-05-12 16:28:10 -0400966void disable_write_same(struct mapped_device *md)
Mike Snitzer7eee4ae2014-06-02 15:50:06 -0400967{
968 struct queue_limits *limits = dm_get_queue_limits(md);
969
970 /* device doesn't really support WRITE SAME, disable it */
971 limits->max_write_same_sectors = 0;
972}
973
Christoph Hellwigac62d622017-04-05 19:21:05 +0200974void disable_write_zeroes(struct mapped_device *md)
975{
976 struct queue_limits *limits = dm_get_queue_limits(md);
977
978 /* device doesn't really support WRITE ZEROES, disable it */
979 limits->max_write_zeroes_sectors = 0;
980}
981
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200982static void clone_endio(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983{
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200984 blk_status_t error = bio->bi_status;
Mikulas Patockabfc6d412014-03-04 18:24:49 -0500985 struct dm_target_io *tio = container_of(bio, struct dm_target_io, clone);
Milan Brozb35f8ca2009-03-16 17:44:36 +0000986 struct dm_io *io = tio->io;
Stefan Bader9faf4002006-10-03 01:15:41 -0700987 struct mapped_device *md = tio->io->md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 dm_endio_fn endio = tio->ti->type->end_io;
989
Mike Snitzer978e51b2017-12-09 15:16:42 -0500990 if (unlikely(error == BLK_STS_TARGET) && md->type != DM_TYPE_NVME_BIO_BASED) {
Christoph Hellwigac62d622017-04-05 19:21:05 +0200991 if (bio_op(bio) == REQ_OP_WRITE_SAME &&
Christoph Hellwig74d46992017-08-23 19:10:32 +0200992 !bio->bi_disk->queue->limits.max_write_same_sectors)
Christoph Hellwigac62d622017-04-05 19:21:05 +0200993 disable_write_same(md);
994 if (bio_op(bio) == REQ_OP_WRITE_ZEROES &&
Christoph Hellwig74d46992017-08-23 19:10:32 +0200995 !bio->bi_disk->queue->limits.max_write_zeroes_sectors)
Christoph Hellwigac62d622017-04-05 19:21:05 +0200996 disable_write_zeroes(md);
997 }
Mike Snitzer7eee4ae2014-06-02 15:50:06 -0400998
Christoph Hellwig1be56902017-06-03 09:38:03 +0200999 if (endio) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001000 int r = endio(tio->ti, bio, &error);
Christoph Hellwig1be56902017-06-03 09:38:03 +02001001 switch (r) {
1002 case DM_ENDIO_REQUEUE:
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001003 error = BLK_STS_DM_REQUEUE;
Christoph Hellwig1be56902017-06-03 09:38:03 +02001004 /*FALLTHRU*/
1005 case DM_ENDIO_DONE:
1006 break;
1007 case DM_ENDIO_INCOMPLETE:
1008 /* The target will handle the io */
1009 return;
1010 default:
1011 DMWARN("unimplemented target endio return value: %d", r);
1012 BUG();
1013 }
1014 }
1015
Mike Snitzercfae7522016-04-11 12:05:38 -04001016 free_tio(tio);
Milan Brozb35f8ca2009-03-16 17:44:36 +00001017 dec_pending(io, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018}
1019
Mike Snitzer78d8e582015-06-26 10:01:13 -04001020/*
Mike Snitzer56a67df2010-08-12 04:14:10 +01001021 * Return maximum size of I/O possible at the supplied sector up to the current
1022 * target boundary.
1023 */
1024static sector_t max_io_len_target_boundary(sector_t sector, struct dm_target *ti)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025{
Mike Snitzer56a67df2010-08-12 04:14:10 +01001026 sector_t target_offset = dm_target_offset(ti, sector);
1027
1028 return ti->len - target_offset;
1029}
1030
1031static sector_t max_io_len(sector_t sector, struct dm_target *ti)
1032{
1033 sector_t len = max_io_len_target_boundary(sector, ti);
Mike Snitzer542f9032012-07-27 15:08:00 +01001034 sector_t offset, max_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
1036 /*
Mike Snitzer542f9032012-07-27 15:08:00 +01001037 * Does the target need to split even further?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 */
Mike Snitzer542f9032012-07-27 15:08:00 +01001039 if (ti->max_io_len) {
1040 offset = dm_target_offset(ti, sector);
1041 if (unlikely(ti->max_io_len & (ti->max_io_len - 1)))
1042 max_len = sector_div(offset, ti->max_io_len);
1043 else
1044 max_len = offset & (ti->max_io_len - 1);
1045 max_len = ti->max_io_len - max_len;
1046
1047 if (len > max_len)
1048 len = max_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 }
1050
1051 return len;
1052}
1053
Mike Snitzer542f9032012-07-27 15:08:00 +01001054int dm_set_target_max_io_len(struct dm_target *ti, sector_t len)
1055{
1056 if (len > UINT_MAX) {
1057 DMERR("Specified maximum size of target IO (%llu) exceeds limit (%u)",
1058 (unsigned long long)len, UINT_MAX);
1059 ti->error = "Maximum size of target IO is too large";
1060 return -EINVAL;
1061 }
1062
Ming Lei8f50e352017-12-18 20:22:08 +08001063 /*
1064 * BIO based queue uses its own splitting. When multipage bvecs
1065 * is switched on, size of the incoming bio may be too big to
1066 * be handled in some targets, such as crypt.
1067 *
1068 * When these targets are ready for the big bio, we can remove
1069 * the limit.
1070 */
1071 ti->max_io_len = min_t(uint32_t, len, BIO_MAX_PAGES * PAGE_SIZE);
Mike Snitzer542f9032012-07-27 15:08:00 +01001072
1073 return 0;
1074}
1075EXPORT_SYMBOL_GPL(dm_set_target_max_io_len);
1076
Dan Williamsf26c5712017-04-12 12:35:44 -07001077static struct dm_target *dm_dax_get_live_target(struct mapped_device *md,
Mike Snitzer3d97c822018-04-30 16:06:28 -04001078 sector_t sector, int *srcu_idx)
1079 __acquires(md->io_barrier)
Toshi Kani545ed202016-06-22 17:54:53 -06001080{
Toshi Kani545ed202016-06-22 17:54:53 -06001081 struct dm_table *map;
1082 struct dm_target *ti;
Toshi Kani545ed202016-06-22 17:54:53 -06001083
Dan Williamsf26c5712017-04-12 12:35:44 -07001084 map = dm_get_live_table(md, srcu_idx);
Toshi Kani545ed202016-06-22 17:54:53 -06001085 if (!map)
Dan Williamsf26c5712017-04-12 12:35:44 -07001086 return NULL;
Toshi Kani545ed202016-06-22 17:54:53 -06001087
1088 ti = dm_table_find_target(map, sector);
1089 if (!dm_target_is_valid(ti))
Dan Williamsf26c5712017-04-12 12:35:44 -07001090 return NULL;
1091
1092 return ti;
1093}
1094
1095static long dm_dax_direct_access(struct dax_device *dax_dev, pgoff_t pgoff,
Mike Snitzer3d97c822018-04-30 16:06:28 -04001096 long nr_pages, void **kaddr, pfn_t *pfn)
Dan Williamsf26c5712017-04-12 12:35:44 -07001097{
1098 struct mapped_device *md = dax_get_private(dax_dev);
1099 sector_t sector = pgoff * PAGE_SECTORS;
1100 struct dm_target *ti;
1101 long len, ret = -EIO;
1102 int srcu_idx;
1103
1104 ti = dm_dax_get_live_target(md, sector, &srcu_idx);
1105
1106 if (!ti)
Toshi Kani545ed202016-06-22 17:54:53 -06001107 goto out;
Dan Williamsf26c5712017-04-12 12:35:44 -07001108 if (!ti->type->direct_access)
1109 goto out;
1110 len = max_io_len(sector, ti) / PAGE_SECTORS;
1111 if (len < 1)
1112 goto out;
1113 nr_pages = min(len, nr_pages);
Ross Zwislerdbc62652018-06-26 16:30:41 -06001114 ret = ti->type->direct_access(ti, pgoff, nr_pages, kaddr, pfn);
Dan Williams817bf402017-04-12 13:37:44 -07001115
Dan Williamsf26c5712017-04-12 12:35:44 -07001116 out:
Toshi Kani545ed202016-06-22 17:54:53 -06001117 dm_put_live_table(md, srcu_idx);
Dan Williamsf26c5712017-04-12 12:35:44 -07001118
1119 return ret;
Toshi Kani545ed202016-06-22 17:54:53 -06001120}
1121
Dan Williams7e026c82017-05-29 12:57:56 -07001122static size_t dm_dax_copy_from_iter(struct dax_device *dax_dev, pgoff_t pgoff,
Mike Snitzer3d97c822018-04-30 16:06:28 -04001123 void *addr, size_t bytes, struct iov_iter *i)
Dan Williams7e026c82017-05-29 12:57:56 -07001124{
1125 struct mapped_device *md = dax_get_private(dax_dev);
1126 sector_t sector = pgoff * PAGE_SECTORS;
1127 struct dm_target *ti;
1128 long ret = 0;
1129 int srcu_idx;
1130
1131 ti = dm_dax_get_live_target(md, sector, &srcu_idx);
1132
1133 if (!ti)
1134 goto out;
1135 if (!ti->type->dax_copy_from_iter) {
1136 ret = copy_from_iter(addr, bytes, i);
1137 goto out;
1138 }
1139 ret = ti->type->dax_copy_from_iter(ti, pgoff, addr, bytes, i);
1140 out:
1141 dm_put_live_table(md, srcu_idx);
1142
1143 return ret;
1144}
1145
Dan Williamsb3a9a0c2018-05-02 06:46:33 -07001146static size_t dm_dax_copy_to_iter(struct dax_device *dax_dev, pgoff_t pgoff,
1147 void *addr, size_t bytes, struct iov_iter *i)
1148{
1149 struct mapped_device *md = dax_get_private(dax_dev);
1150 sector_t sector = pgoff * PAGE_SECTORS;
1151 struct dm_target *ti;
1152 long ret = 0;
1153 int srcu_idx;
1154
1155 ti = dm_dax_get_live_target(md, sector, &srcu_idx);
1156
1157 if (!ti)
1158 goto out;
1159 if (!ti->type->dax_copy_to_iter) {
1160 ret = copy_to_iter(addr, bytes, i);
1161 goto out;
1162 }
1163 ret = ti->type->dax_copy_to_iter(ti, pgoff, addr, bytes, i);
1164 out:
1165 dm_put_live_table(md, srcu_idx);
1166
1167 return ret;
1168}
1169
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001170/*
1171 * A target may call dm_accept_partial_bio only from the map routine. It is
NeilBrownc06b3e52017-11-21 08:44:35 -05001172 * allowed for all bio types except REQ_PREFLUSH and REQ_OP_ZONE_RESET.
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001173 *
1174 * dm_accept_partial_bio informs the dm that the target only wants to process
1175 * additional n_sectors sectors of the bio and the rest of the data should be
1176 * sent in a next bio.
1177 *
1178 * A diagram that explains the arithmetics:
1179 * +--------------------+---------------+-------+
1180 * | 1 | 2 | 3 |
1181 * +--------------------+---------------+-------+
1182 *
1183 * <-------------- *tio->len_ptr --------------->
1184 * <------- bi_size ------->
1185 * <-- n_sectors -->
1186 *
1187 * Region 1 was already iterated over with bio_advance or similar function.
1188 * (it may be empty if the target doesn't use bio_advance)
1189 * Region 2 is the remaining bio size that the target wants to process.
1190 * (it may be empty if region 1 is non-empty, although there is no reason
1191 * to make it empty)
1192 * The target requires that region 3 is to be sent in the next bio.
1193 *
1194 * If the target wants to receive multiple copies of the bio (via num_*bios, etc),
1195 * the partially processed part (the sum of regions 1+2) must be the same for all
1196 * copies of the bio.
1197 */
1198void dm_accept_partial_bio(struct bio *bio, unsigned n_sectors)
1199{
1200 struct dm_target_io *tio = container_of(bio, struct dm_target_io, clone);
1201 unsigned bi_size = bio->bi_iter.bi_size >> SECTOR_SHIFT;
Jens Axboe1eff9d32016-08-05 15:35:16 -06001202 BUG_ON(bio->bi_opf & REQ_PREFLUSH);
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001203 BUG_ON(bi_size > *tio->len_ptr);
1204 BUG_ON(n_sectors > bi_size);
1205 *tio->len_ptr -= bi_size - n_sectors;
1206 bio->bi_iter.bi_size = n_sectors << SECTOR_SHIFT;
1207}
1208EXPORT_SYMBOL_GPL(dm_accept_partial_bio);
1209
Mikulas Patockad67a5f42017-02-15 11:26:10 -05001210/*
Christoph Hellwige76239a2018-10-12 19:08:49 +09001211 * The zone descriptors obtained with a zone report indicate
1212 * zone positions within the underlying device of the target. The zone
1213 * descriptors must be remapped to match their position within the dm device.
1214 * The caller target should obtain the zones information using
1215 * blkdev_report_zones() to ensure that remapping for partition offset is
1216 * already handled.
Damien Le Moal10999302017-05-08 16:40:48 -07001217 */
Christoph Hellwige76239a2018-10-12 19:08:49 +09001218void dm_remap_zone_report(struct dm_target *ti, sector_t start,
1219 struct blk_zone *zones, unsigned int *nr_zones)
Damien Le Moal10999302017-05-08 16:40:48 -07001220{
1221#ifdef CONFIG_BLK_DEV_ZONED
Damien Le Moal10999302017-05-08 16:40:48 -07001222 struct blk_zone *zone;
Christoph Hellwige76239a2018-10-12 19:08:49 +09001223 unsigned int nrz = *nr_zones;
1224 int i;
Damien Le Moal10999302017-05-08 16:40:48 -07001225
1226 /*
Christoph Hellwige76239a2018-10-12 19:08:49 +09001227 * Remap the start sector and write pointer position of the zones in
1228 * the array. Since we may have obtained from the target underlying
1229 * device more zones that the target size, also adjust the number
1230 * of zones.
Damien Le Moal9864cd52018-10-09 14:24:31 +09001231 */
Christoph Hellwige76239a2018-10-12 19:08:49 +09001232 for (i = 0; i < nrz; i++) {
1233 zone = zones + i;
1234 if (zone->start >= start + ti->len) {
1235 memset(zone, 0, sizeof(struct blk_zone) * (nrz - i));
1236 break;
Damien Le Moal10999302017-05-08 16:40:48 -07001237 }
1238
Christoph Hellwige76239a2018-10-12 19:08:49 +09001239 zone->start = zone->start + ti->begin - start;
1240 if (zone->type == BLK_ZONE_TYPE_CONVENTIONAL)
1241 continue;
Damien Le Moal10999302017-05-08 16:40:48 -07001242
Christoph Hellwige76239a2018-10-12 19:08:49 +09001243 if (zone->cond == BLK_ZONE_COND_FULL)
1244 zone->wp = zone->start + zone->len;
1245 else if (zone->cond == BLK_ZONE_COND_EMPTY)
1246 zone->wp = zone->start;
1247 else
1248 zone->wp = zone->wp + ti->begin - start;
Damien Le Moal10999302017-05-08 16:40:48 -07001249 }
1250
Christoph Hellwige76239a2018-10-12 19:08:49 +09001251 *nr_zones = i;
Damien Le Moal10999302017-05-08 16:40:48 -07001252#else /* !CONFIG_BLK_DEV_ZONED */
Christoph Hellwige76239a2018-10-12 19:08:49 +09001253 *nr_zones = 0;
Damien Le Moal10999302017-05-08 16:40:48 -07001254#endif
1255}
1256EXPORT_SYMBOL_GPL(dm_remap_zone_report);
1257
Mike Snitzer978e51b2017-12-09 15:16:42 -05001258static blk_qc_t __map_bio(struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259{
1260 int r;
Jens Axboe2056a782006-03-23 20:00:26 +01001261 sector_t sector;
Mikulas Patockadba14162012-10-12 21:02:15 +01001262 struct bio *clone = &tio->clone;
Mike Snitzer64f52b02017-12-11 23:17:47 -05001263 struct dm_io *io = tio->io;
Mike Snitzer978e51b2017-12-09 15:16:42 -05001264 struct mapped_device *md = io->md;
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001265 struct dm_target *ti = tio->ti;
Mike Snitzer978e51b2017-12-09 15:16:42 -05001266 blk_qc_t ret = BLK_QC_T_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 clone->bi_end_io = clone_endio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
1270 /*
1271 * Map the clone. If r == 0 we don't need to do
1272 * anything, the target has assumed ownership of
1273 * this io.
1274 */
Mike Snitzer64f52b02017-12-11 23:17:47 -05001275 atomic_inc(&io->io_count);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001276 sector = clone->bi_iter.bi_sector;
Mikulas Patockad67a5f42017-02-15 11:26:10 -05001277
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00001278 r = ti->type->map(ti, clone);
Christoph Hellwig846785e2017-06-03 09:38:02 +02001279 switch (r) {
1280 case DM_MAPIO_SUBMITTED:
1281 break;
1282 case DM_MAPIO_REMAPPED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 /* the bio has been remapped so dispatch it */
Christoph Hellwig74d46992017-08-23 19:10:32 +02001284 trace_block_bio_remap(clone->bi_disk->queue, clone,
Mike Snitzer64f52b02017-12-11 23:17:47 -05001285 bio_dev(io->orig_bio), sector);
Mike Snitzer978e51b2017-12-09 15:16:42 -05001286 if (md->type == DM_TYPE_NVME_BIO_BASED)
1287 ret = direct_make_request(clone);
1288 else
1289 ret = generic_make_request(clone);
Christoph Hellwig846785e2017-06-03 09:38:02 +02001290 break;
1291 case DM_MAPIO_KILL:
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001292 free_tio(tio);
Mike Snitzer64f52b02017-12-11 23:17:47 -05001293 dec_pending(io, BLK_STS_IOERR);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001294 break;
Christoph Hellwig846785e2017-06-03 09:38:02 +02001295 case DM_MAPIO_REQUEUE:
Mike Snitzercfae7522016-04-11 12:05:38 -04001296 free_tio(tio);
Mike Snitzer64f52b02017-12-11 23:17:47 -05001297 dec_pending(io, BLK_STS_DM_REQUEUE);
Christoph Hellwig846785e2017-06-03 09:38:02 +02001298 break;
1299 default:
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -08001300 DMWARN("unimplemented target map return value: %d", r);
1301 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
Mike Snitzer978e51b2017-12-09 15:16:42 -05001304 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
Mikulas Patockae0d66092014-03-14 18:40:39 -04001307static void bio_setup_sector(struct bio *bio, sector_t sector, unsigned len)
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001308{
Kent Overstreet4f024f32013-10-11 15:44:27 -07001309 bio->bi_iter.bi_sector = sector;
1310 bio->bi_iter.bi_size = to_bytes(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311}
1312
1313/*
1314 * Creates a bio that consists of range of complete bvecs.
1315 */
Mike Snitzerc80914e2016-03-02 12:33:03 -05001316static int clone_bio(struct dm_target_io *tio, struct bio *bio,
1317 sector_t sector, unsigned len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318{
Mikulas Patockadba14162012-10-12 21:02:15 +01001319 struct bio *clone = &tio->clone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001321 __bio_clone_fast(clone, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
Mikulas Patockae2460f22017-04-18 16:51:48 -04001323 if (unlikely(bio_integrity(bio) != NULL)) {
1324 int r;
1325
1326 if (unlikely(!dm_target_has_integrity(tio->ti->type) &&
1327 !dm_target_passes_integrity(tio->ti->type))) {
1328 DMWARN("%s: the target %s doesn't support integrity data.",
1329 dm_device_name(tio->io->md),
1330 tio->ti->type->name);
1331 return -EIO;
1332 }
1333
1334 r = bio_integrity_clone(clone, bio, GFP_NOIO);
Mike Snitzerc80914e2016-03-02 12:33:03 -05001335 if (r < 0)
1336 return r;
1337 }
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001338
Christoph Hellwige76239a2018-10-12 19:08:49 +09001339 bio_advance(clone, to_bytes(sector - clone->bi_iter.bi_sector));
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001340 clone->bi_iter.bi_size = to_bytes(len);
1341
Mikulas Patockae2460f22017-04-18 16:51:48 -04001342 if (unlikely(bio_integrity(bio) != NULL))
Dmitry Monakhovfbd08e72017-06-29 11:31:10 -07001343 bio_integrity_trim(clone);
Mike Snitzerc80914e2016-03-02 12:33:03 -05001344
1345 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346}
1347
Mike Snitzer318716d2017-11-22 14:56:12 -05001348static void alloc_multiple_bios(struct bio_list *blist, struct clone_info *ci,
1349 struct dm_target *ti, unsigned num_bios)
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001350{
Mikulas Patockadba14162012-10-12 21:02:15 +01001351 struct dm_target_io *tio;
Mike Snitzer318716d2017-11-22 14:56:12 -05001352 int try;
Mikulas Patockadba14162012-10-12 21:02:15 +01001353
Mike Snitzer318716d2017-11-22 14:56:12 -05001354 if (!num_bios)
1355 return;
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001356
Mike Snitzer318716d2017-11-22 14:56:12 -05001357 if (num_bios == 1) {
1358 tio = alloc_tio(ci, ti, 0, GFP_NOIO);
1359 bio_list_add(blist, &tio->clone);
1360 return;
1361 }
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001362
Mike Snitzer318716d2017-11-22 14:56:12 -05001363 for (try = 0; try < 2; try++) {
1364 int bio_nr;
1365 struct bio *bio;
1366
1367 if (try)
Mike Snitzerbc02cdb2017-12-14 16:30:42 -05001368 mutex_lock(&ci->io->md->table_devices_lock);
Mike Snitzer318716d2017-11-22 14:56:12 -05001369 for (bio_nr = 0; bio_nr < num_bios; bio_nr++) {
1370 tio = alloc_tio(ci, ti, bio_nr, try ? GFP_NOIO : GFP_NOWAIT);
1371 if (!tio)
1372 break;
1373
1374 bio_list_add(blist, &tio->clone);
1375 }
1376 if (try)
Mike Snitzerbc02cdb2017-12-14 16:30:42 -05001377 mutex_unlock(&ci->io->md->table_devices_lock);
Mike Snitzer318716d2017-11-22 14:56:12 -05001378 if (bio_nr == num_bios)
1379 return;
1380
1381 while ((bio = bio_list_pop(blist))) {
1382 tio = container_of(bio, struct dm_target_io, clone);
1383 free_tio(tio);
1384 }
1385 }
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001386}
1387
Mike Snitzer978e51b2017-12-09 15:16:42 -05001388static blk_qc_t __clone_and_map_simple_bio(struct clone_info *ci,
1389 struct dm_target_io *tio, unsigned *len)
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001390{
Mikulas Patockadba14162012-10-12 21:02:15 +01001391 struct bio *clone = &tio->clone;
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001392
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001393 tio->len_ptr = len;
1394
Junichi Nomura99778272014-10-03 11:55:16 +00001395 __bio_clone_fast(clone, ci->bio);
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001396 if (len)
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001397 bio_setup_sector(clone, ci->sector, *len);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001398
Mike Snitzer978e51b2017-12-09 15:16:42 -05001399 return __map_bio(tio);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001400}
1401
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001402static void __send_duplicate_bios(struct clone_info *ci, struct dm_target *ti,
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001403 unsigned num_bios, unsigned *len)
Mike Snitzer06a426c2010-08-12 04:14:09 +01001404{
Mike Snitzer318716d2017-11-22 14:56:12 -05001405 struct bio_list blist = BIO_EMPTY_LIST;
1406 struct bio *bio;
1407 struct dm_target_io *tio;
Mike Snitzer06a426c2010-08-12 04:14:09 +01001408
Mike Snitzer318716d2017-11-22 14:56:12 -05001409 alloc_multiple_bios(&blist, ci, ti, num_bios);
1410
1411 while ((bio = bio_list_pop(&blist))) {
1412 tio = container_of(bio, struct dm_target_io, clone);
Mike Snitzer978e51b2017-12-09 15:16:42 -05001413 (void) __clone_and_map_simple_bio(ci, tio, len);
Mike Snitzer318716d2017-11-22 14:56:12 -05001414 }
Mike Snitzer06a426c2010-08-12 04:14:09 +01001415}
1416
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001417static int __send_empty_flush(struct clone_info *ci)
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001418{
Mike Snitzer06a426c2010-08-12 04:14:09 +01001419 unsigned target_nr = 0;
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001420 struct dm_target *ti;
1421
Dennis Zhou892ad712018-12-05 12:10:30 -05001422 /*
1423 * Empty flush uses a statically initialized bio, &md->flush_bio, as
1424 * the base for cloning. However, blkg association requires that a
1425 * bdev is associated with a gendisk, which doesn't happen until the
1426 * bdev is opened. So, blkg association is done at issue time of the
1427 * flush rather than when the device is created in alloc_dev().
1428 */
1429 bio_set_dev(ci->bio, ci->io->md->bdev);
1430
Mike Snitzerb372d362010-09-08 18:07:01 +02001431 BUG_ON(bio_has_data(ci->bio));
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001432 while ((ti = dm_table_get_target(ci->map, target_nr++)))
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001433 __send_duplicate_bios(ci, ti, ti->num_flush_bios, NULL);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001434
Dennis Zhou892ad712018-12-05 12:10:30 -05001435 bio_disassociate_blkg(ci->bio);
1436
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001437 return 0;
1438}
1439
Mike Snitzerc80914e2016-03-02 12:33:03 -05001440static int __clone_and_map_data_bio(struct clone_info *ci, struct dm_target *ti,
NeilBrownf31c21e2017-11-22 14:25:18 +11001441 sector_t sector, unsigned *len)
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001442{
Mikulas Patockadba14162012-10-12 21:02:15 +01001443 struct bio *bio = ci->bio;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001444 struct dm_target_io *tio;
NeilBrownf31c21e2017-11-22 14:25:18 +11001445 int r;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001446
Mike Snitzer318716d2017-11-22 14:56:12 -05001447 tio = alloc_tio(ci, ti, 0, GFP_NOIO);
NeilBrownf31c21e2017-11-22 14:25:18 +11001448 tio->len_ptr = len;
1449 r = clone_bio(tio, bio, sector, *len);
1450 if (r < 0) {
1451 free_tio(tio);
1452 return r;
Alasdair G Kergonb0d8ed42013-03-01 22:45:49 +00001453 }
Mike Snitzer978e51b2017-12-09 15:16:42 -05001454 (void) __map_bio(tio);
Mike Snitzerc80914e2016-03-02 12:33:03 -05001455
NeilBrownf31c21e2017-11-22 14:25:18 +11001456 return 0;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001457}
1458
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001459typedef unsigned (*get_num_bios_fn)(struct dm_target *ti);
Mike Snitzer23508a92012-12-21 20:23:37 +00001460
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001461static unsigned get_num_discard_bios(struct dm_target *ti)
Mike Snitzer23508a92012-12-21 20:23:37 +00001462{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001463 return ti->num_discard_bios;
Mike Snitzer23508a92012-12-21 20:23:37 +00001464}
1465
Denis Semakin00716542018-03-13 13:23:45 +04001466static unsigned get_num_secure_erase_bios(struct dm_target *ti)
1467{
1468 return ti->num_secure_erase_bios;
1469}
1470
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001471static unsigned get_num_write_same_bios(struct dm_target *ti)
Mike Snitzer23508a92012-12-21 20:23:37 +00001472{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001473 return ti->num_write_same_bios;
Mike Snitzer23508a92012-12-21 20:23:37 +00001474}
1475
Christoph Hellwigac62d622017-04-05 19:21:05 +02001476static unsigned get_num_write_zeroes_bios(struct dm_target *ti)
1477{
1478 return ti->num_write_zeroes_bios;
1479}
1480
Mike Snitzer23508a92012-12-21 20:23:37 +00001481typedef bool (*is_split_required_fn)(struct dm_target *ti);
1482
1483static bool is_split_required_for_discard(struct dm_target *ti)
1484{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001485 return ti->split_discard_bios;
Mike Snitzer23508a92012-12-21 20:23:37 +00001486}
1487
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001488static int __send_changing_extent_only(struct clone_info *ci, struct dm_target *ti,
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001489 get_num_bios_fn get_num_bios,
1490 is_split_required_fn is_split_required)
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001491{
Mikulas Patockae0d66092014-03-14 18:40:39 -04001492 unsigned len;
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001493 unsigned num_bios;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001494
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001495 /*
1496 * Even though the device advertised support for this type of
1497 * request, that does not mean every target supports it, and
1498 * reconfiguration might also have changed that since the
1499 * check was performed.
1500 */
1501 num_bios = get_num_bios ? get_num_bios(ti) : 0;
1502 if (!num_bios)
1503 return -EOPNOTSUPP;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001504
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001505 if (is_split_required && !is_split_required(ti))
1506 len = min((sector_t)ci->sector_count, max_io_len_target_boundary(ci->sector, ti));
1507 else
1508 len = min((sector_t)ci->sector_count, max_io_len(ci->sector, ti));
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001509
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001510 __send_duplicate_bios(ci, ti, num_bios, &len);
Mike Snitzer06a426c2010-08-12 04:14:09 +01001511
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001512 ci->sector += len;
1513 ci->sector_count -= len;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001514
1515 return 0;
1516}
1517
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001518static int __send_discard(struct clone_info *ci, struct dm_target *ti)
Mike Snitzer23508a92012-12-21 20:23:37 +00001519{
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001520 return __send_changing_extent_only(ci, ti, get_num_discard_bios,
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001521 is_split_required_for_discard);
Mike Snitzer23508a92012-12-21 20:23:37 +00001522}
1523
Denis Semakin00716542018-03-13 13:23:45 +04001524static int __send_secure_erase(struct clone_info *ci, struct dm_target *ti)
1525{
1526 return __send_changing_extent_only(ci, ti, get_num_secure_erase_bios, NULL);
1527}
1528
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001529static int __send_write_same(struct clone_info *ci, struct dm_target *ti)
Mike Snitzer23508a92012-12-21 20:23:37 +00001530{
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001531 return __send_changing_extent_only(ci, ti, get_num_write_same_bios, NULL);
Mike Snitzer23508a92012-12-21 20:23:37 +00001532}
1533
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001534static int __send_write_zeroes(struct clone_info *ci, struct dm_target *ti)
Christoph Hellwigac62d622017-04-05 19:21:05 +02001535{
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001536 return __send_changing_extent_only(ci, ti, get_num_write_zeroes_bios, NULL);
Christoph Hellwigac62d622017-04-05 19:21:05 +02001537}
1538
Mike Snitzer0519c712018-03-26 11:49:16 -04001539static bool __process_abnormal_io(struct clone_info *ci, struct dm_target *ti,
1540 int *result)
1541{
1542 struct bio *bio = ci->bio;
1543
1544 if (bio_op(bio) == REQ_OP_DISCARD)
1545 *result = __send_discard(ci, ti);
Denis Semakin00716542018-03-13 13:23:45 +04001546 else if (bio_op(bio) == REQ_OP_SECURE_ERASE)
1547 *result = __send_secure_erase(ci, ti);
Mike Snitzer0519c712018-03-26 11:49:16 -04001548 else if (bio_op(bio) == REQ_OP_WRITE_SAME)
1549 *result = __send_write_same(ci, ti);
1550 else if (bio_op(bio) == REQ_OP_WRITE_ZEROES)
1551 *result = __send_write_zeroes(ci, ti);
1552 else
1553 return false;
1554
1555 return true;
1556}
1557
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001558/*
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001559 * Select the correct strategy for processing a non-flush bio.
1560 */
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001561static int __split_and_process_non_flush(struct clone_info *ci)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562{
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001563 struct dm_target *ti;
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001564 unsigned len;
Mike Snitzerc80914e2016-03-02 12:33:03 -05001565 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001567 ti = dm_table_find_target(ci->map, ci->sector);
1568 if (!dm_target_is_valid(ti))
1569 return -EIO;
1570
Mike Snitzer0519c712018-03-26 11:49:16 -04001571 if (unlikely(__process_abnormal_io(ci, ti, &r)))
1572 return r;
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001573
Christoph Hellwige76239a2018-10-12 19:08:49 +09001574 len = min_t(sector_t, max_io_len(ci->sector, ti), ci->sector_count);
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001575
Mike Snitzerc80914e2016-03-02 12:33:03 -05001576 r = __clone_and_map_data_bio(ci, ti, ci->sector, &len);
1577 if (r < 0)
1578 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001580 ci->sector += len;
1581 ci->sector_count -= len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001583 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584}
1585
Mike Snitzer978e51b2017-12-09 15:16:42 -05001586static void init_clone_info(struct clone_info *ci, struct mapped_device *md,
1587 struct dm_table *map, struct bio *bio)
1588{
1589 ci->map = map;
1590 ci->io = alloc_io(md, bio);
1591 ci->sector = bio->bi_iter.bi_sector;
1592}
1593
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594/*
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001595 * Entry point to split a bio into clones and submit them to the targets.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 */
Mike Snitzer978e51b2017-12-09 15:16:42 -05001597static blk_qc_t __split_and_process_bio(struct mapped_device *md,
1598 struct dm_table *map, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599{
1600 struct clone_info ci;
Mike Snitzer978e51b2017-12-09 15:16:42 -05001601 blk_qc_t ret = BLK_QC_T_NONE;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001602 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001604 if (unlikely(!map)) {
Tejun Heo6a8736d2010-09-08 18:07:00 +02001605 bio_io_error(bio);
Mike Snitzer978e51b2017-12-09 15:16:42 -05001606 return ret;
Mikulas Patockaf0b9a452009-04-02 19:55:38 +01001607 }
Mikulas Patocka692d0eb2009-04-09 00:27:13 +01001608
Mike Snitzer978e51b2017-12-09 15:16:42 -05001609 init_clone_info(&ci, md, map, bio);
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001610
Jens Axboe1eff9d32016-08-05 15:35:16 -06001611 if (bio->bi_opf & REQ_PREFLUSH) {
Mike Snitzerbc02cdb2017-12-14 16:30:42 -05001612 ci.bio = &ci.io->md->flush_bio;
Mike Snitzerb372d362010-09-08 18:07:01 +02001613 ci.sector_count = 0;
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001614 error = __send_empty_flush(&ci);
Mike Snitzerb372d362010-09-08 18:07:01 +02001615 /* dec_pending submits any data associated with flush */
Damien Le Moala4aa5e52017-05-08 16:40:46 -07001616 } else if (bio_op(bio) == REQ_OP_ZONE_RESET) {
1617 ci.bio = bio;
1618 ci.sector_count = 0;
1619 error = __split_and_process_non_flush(&ci);
Mike Snitzerb372d362010-09-08 18:07:01 +02001620 } else {
Tejun Heo6a8736d2010-09-08 18:07:00 +02001621 ci.bio = bio;
Tejun Heod87f4c12010-09-03 11:56:19 +02001622 ci.sector_count = bio_sectors(bio);
NeilBrown18a25da2017-09-06 09:43:28 +10001623 while (ci.sector_count && !error) {
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001624 error = __split_and_process_non_flush(&ci);
NeilBrown18a25da2017-09-06 09:43:28 +10001625 if (current->bio_list && ci.sector_count && !error) {
1626 /*
1627 * Remainder must be passed to generic_make_request()
1628 * so that it gets handled *after* bios already submitted
1629 * have been completely processed.
1630 * We take a clone of the original to store in
Mike Snitzer745dc572017-12-11 20:51:50 -05001631 * ci.io->orig_bio to be used by end_io_acct() and
NeilBrown18a25da2017-09-06 09:43:28 +10001632 * for dec_pending to use for completion handling.
NeilBrown18a25da2017-09-06 09:43:28 +10001633 */
Mike Snitzerf21c6012018-06-15 09:35:33 -04001634 struct bio *b = bio_split(bio, bio_sectors(bio) - ci.sector_count,
1635 GFP_NOIO, &md->queue->bio_split);
Mike Snitzer745dc572017-12-11 20:51:50 -05001636 ci.io->orig_bio = b;
NeilBrown18a25da2017-09-06 09:43:28 +10001637 bio_chain(b, bio);
Mike Snitzer978e51b2017-12-09 15:16:42 -05001638 ret = generic_make_request(bio);
NeilBrown18a25da2017-09-06 09:43:28 +10001639 break;
1640 }
1641 }
Tejun Heod87f4c12010-09-03 11:56:19 +02001642 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643
1644 /* drop the extra reference count */
Bart Van Assche54385bf2017-08-09 11:32:10 -07001645 dec_pending(ci.io, errno_to_blk_status(error));
Mike Snitzer978e51b2017-12-09 15:16:42 -05001646 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648
1649/*
Mike Snitzer978e51b2017-12-09 15:16:42 -05001650 * Optimized variant of __split_and_process_bio that leverages the
1651 * fact that targets that use it do _not_ have a need to split bios.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 */
Mike Snitzer978e51b2017-12-09 15:16:42 -05001653static blk_qc_t __process_bio(struct mapped_device *md,
1654 struct dm_table *map, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655{
Mike Snitzer978e51b2017-12-09 15:16:42 -05001656 struct clone_info ci;
1657 blk_qc_t ret = BLK_QC_T_NONE;
1658 int error = 0;
1659
1660 if (unlikely(!map)) {
1661 bio_io_error(bio);
1662 return ret;
1663 }
1664
1665 init_clone_info(&ci, md, map, bio);
1666
1667 if (bio->bi_opf & REQ_PREFLUSH) {
1668 ci.bio = &ci.io->md->flush_bio;
1669 ci.sector_count = 0;
1670 error = __send_empty_flush(&ci);
1671 /* dec_pending submits any data associated with flush */
1672 } else {
1673 struct dm_target *ti = md->immutable_target;
1674 struct dm_target_io *tio;
1675
1676 /*
1677 * Defend against IO still getting in during teardown
1678 * - as was seen for a time with nvme-fcloop
1679 */
Igor Stoppabab5d982018-09-07 20:03:37 +03001680 if (WARN_ON_ONCE(!ti || !dm_target_is_valid(ti))) {
Mike Snitzer978e51b2017-12-09 15:16:42 -05001681 error = -EIO;
1682 goto out;
1683 }
1684
Mike Snitzer978e51b2017-12-09 15:16:42 -05001685 ci.bio = bio;
1686 ci.sector_count = bio_sectors(bio);
Mike Snitzer0519c712018-03-26 11:49:16 -04001687 if (unlikely(__process_abnormal_io(&ci, ti, &error)))
1688 goto out;
1689
1690 tio = alloc_tio(&ci, ti, 0, GFP_NOIO);
Mike Snitzer978e51b2017-12-09 15:16:42 -05001691 ret = __clone_and_map_simple_bio(&ci, tio, NULL);
1692 }
1693out:
1694 /* drop the extra reference count */
1695 dec_pending(ci.io, errno_to_blk_status(error));
1696 return ret;
1697}
1698
Mikulas Patocka24113d42018-11-06 22:34:59 +01001699static blk_qc_t dm_make_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 struct mapped_device *md = q->queuedata;
Mike Snitzer978e51b2017-12-09 15:16:42 -05001702 blk_qc_t ret = BLK_QC_T_NONE;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001703 int srcu_idx;
1704 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001706 map = dm_get_live_table(md, &srcu_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707
Tejun Heo6a8736d2010-09-08 18:07:00 +02001708 /* if we're suspended, we have to queue this io for later */
1709 if (unlikely(test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags))) {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001710 dm_put_live_table(md, srcu_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711
Jens Axboe1eff9d32016-08-05 15:35:16 -06001712 if (!(bio->bi_opf & REQ_RAHEAD))
Tejun Heo6a8736d2010-09-08 18:07:00 +02001713 queue_io(md, bio);
1714 else
Alasdair G Kergon54d9a1b2009-04-09 00:27:14 +01001715 bio_io_error(bio);
Mike Snitzer978e51b2017-12-09 15:16:42 -05001716 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 }
1718
Mikulas Patocka24113d42018-11-06 22:34:59 +01001719 if (dm_get_md_type(md) == DM_TYPE_NVME_BIO_BASED)
1720 ret = __process_bio(md, map, bio);
1721 else
1722 ret = __split_and_process_bio(md, map, bio);
Mike Snitzer978e51b2017-12-09 15:16:42 -05001723
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001724 dm_put_live_table(md, srcu_idx);
Mike Snitzer978e51b2017-12-09 15:16:42 -05001725 return ret;
1726}
1727
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728static int dm_any_congested(void *congested_data, int bdi_bits)
1729{
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00001730 int r = bdi_bits;
1731 struct mapped_device *md = congested_data;
1732 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01001734 if (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
Mike Snitzere522c032016-02-02 22:35:06 -05001735 if (dm_request_based(md)) {
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001736 /*
Mike Snitzere522c032016-02-02 22:35:06 -05001737 * With request-based DM we only need to check the
1738 * top-level queue for congestion.
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001739 */
Jan Karadc3b17c2017-02-02 15:56:50 +01001740 r = md->queue->backing_dev_info->wb.state & bdi_bits;
Mike Snitzere522c032016-02-02 22:35:06 -05001741 } else {
1742 map = dm_get_live_table_fast(md);
1743 if (map)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001744 r = dm_table_any_congested(map, bdi_bits);
Mike Snitzere522c032016-02-02 22:35:06 -05001745 dm_put_live_table_fast(md);
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00001746 }
1747 }
1748
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 return r;
1750}
1751
1752/*-----------------------------------------------------------------
1753 * An IDR is used to keep track of allocated minor numbers.
1754 *---------------------------------------------------------------*/
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001755static void free_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756{
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001757 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 idr_remove(&_minor_idr, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001759 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760}
1761
1762/*
1763 * See if the device with a specific minor # is free.
1764 */
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001765static int specific_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766{
Tejun Heoc9d76be2013-02-27 17:04:26 -08001767 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768
1769 if (minor >= (1 << MINORBITS))
1770 return -EINVAL;
1771
Tejun Heoc9d76be2013-02-27 17:04:26 -08001772 idr_preload(GFP_KERNEL);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001773 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774
Tejun Heoc9d76be2013-02-27 17:04:26 -08001775 r = idr_alloc(&_minor_idr, MINOR_ALLOCED, minor, minor + 1, GFP_NOWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001777 spin_unlock(&_minor_lock);
Tejun Heoc9d76be2013-02-27 17:04:26 -08001778 idr_preload_end();
1779 if (r < 0)
1780 return r == -ENOSPC ? -EBUSY : r;
1781 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782}
1783
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001784static int next_free_minor(int *minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785{
Tejun Heoc9d76be2013-02-27 17:04:26 -08001786 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
Tejun Heoc9d76be2013-02-27 17:04:26 -08001788 idr_preload(GFP_KERNEL);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001789 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790
Tejun Heoc9d76be2013-02-27 17:04:26 -08001791 r = idr_alloc(&_minor_idr, MINOR_ALLOCED, 0, 1 << MINORBITS, GFP_NOWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001793 spin_unlock(&_minor_lock);
Tejun Heoc9d76be2013-02-27 17:04:26 -08001794 idr_preload_end();
1795 if (r < 0)
1796 return r;
1797 *minor = r;
1798 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799}
1800
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07001801static const struct block_device_operations dm_blk_dops;
Dan Williamsf26c5712017-04-12 12:35:44 -07001802static const struct dax_operations dm_dax_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803
Mikulas Patocka53d59142009-04-02 19:55:37 +01001804static void dm_wq_work(struct work_struct *work);
1805
Mike Snitzerc12c9a32018-01-12 09:32:21 -05001806static void dm_init_normal_md_queue(struct mapped_device *md)
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001807{
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001808 /*
1809 * Initialize aspects of queue that aren't relevant for blk-mq
1810 */
Jan Karadc3b17c2017-02-02 15:56:50 +01001811 md->queue->backing_dev_info->congested_fn = dm_any_congested;
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01001812}
1813
Mike Snitzer0f209722015-04-28 11:50:29 -04001814static void cleanup_mapped_device(struct mapped_device *md)
1815{
Mike Snitzer0f209722015-04-28 11:50:29 -04001816 if (md->wq)
1817 destroy_workqueue(md->wq);
Kent Overstreet6f1c8192018-05-20 18:25:53 -04001818 bioset_exit(&md->bs);
1819 bioset_exit(&md->io_bs);
Mike Snitzer0f209722015-04-28 11:50:29 -04001820
Dan Williamsf26c5712017-04-12 12:35:44 -07001821 if (md->dax_dev) {
1822 kill_dax(md->dax_dev);
1823 put_dax(md->dax_dev);
1824 md->dax_dev = NULL;
1825 }
1826
Mike Snitzer0f209722015-04-28 11:50:29 -04001827 if (md->disk) {
1828 spin_lock(&_minor_lock);
1829 md->disk->private_data = NULL;
1830 spin_unlock(&_minor_lock);
Mike Snitzer0f209722015-04-28 11:50:29 -04001831 del_gendisk(md->disk);
1832 put_disk(md->disk);
1833 }
1834
1835 if (md->queue)
1836 blk_cleanup_queue(md->queue);
1837
Tahsin Erdogand09960b2016-10-10 05:35:19 -07001838 cleanup_srcu_struct(&md->io_barrier);
1839
Mike Snitzer0f209722015-04-28 11:50:29 -04001840 if (md->bdev) {
1841 bdput(md->bdev);
1842 md->bdev = NULL;
1843 }
Mike Snitzer4cc96132016-05-12 16:28:10 -04001844
Mike Snitzerd5ffebd2018-01-05 21:17:20 -05001845 mutex_destroy(&md->suspend_lock);
1846 mutex_destroy(&md->type_lock);
1847 mutex_destroy(&md->table_devices_lock);
1848
Mike Snitzer4cc96132016-05-12 16:28:10 -04001849 dm_mq_cleanup_mapped_device(md);
Mike Snitzer0f209722015-04-28 11:50:29 -04001850}
1851
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852/*
1853 * Allocate and initialise a blank device with a given minor.
1854 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001855static struct mapped_device *alloc_dev(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856{
Mike Snitzer115485e2016-02-22 12:16:21 -05001857 int r, numa_node_id = dm_get_numa_node();
Dan Williams976431b2018-03-29 17:22:13 -07001858 struct dax_device *dax_dev = NULL;
Mike Snitzer115485e2016-02-22 12:16:21 -05001859 struct mapped_device *md;
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001860 void *old_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861
Mikulas Patocka856eb092017-10-31 19:33:02 -04001862 md = kvzalloc_node(sizeof(*md), GFP_KERNEL, numa_node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 if (!md) {
1864 DMWARN("unable to allocate device, out of memory.");
1865 return NULL;
1866 }
1867
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001868 if (!try_module_get(THIS_MODULE))
Milan Broz6ed7ade2008-02-08 02:10:19 +00001869 goto bad_module_get;
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001870
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 /* get a minor number for the dev */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001872 if (minor == DM_ANY_MINOR)
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001873 r = next_free_minor(&minor);
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001874 else
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001875 r = specific_minor(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 if (r < 0)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001877 goto bad_minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001879 r = init_srcu_struct(&md->io_barrier);
1880 if (r < 0)
1881 goto bad_io_barrier;
1882
Mike Snitzer115485e2016-02-22 12:16:21 -05001883 md->numa_node_id = numa_node_id;
Mike Snitzer591ddcf2016-01-31 12:05:42 -05001884 md->init_tio_pdu = false;
Mike Snitzera5664da2010-08-12 04:14:01 +01001885 md->type = DM_TYPE_NONE;
Daniel Walkere61290a2008-02-08 02:10:08 +00001886 mutex_init(&md->suspend_lock);
Mike Snitzera5664da2010-08-12 04:14:01 +01001887 mutex_init(&md->type_lock);
Benjamin Marzinski86f11522014-08-13 13:53:43 -05001888 mutex_init(&md->table_devices_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01001889 spin_lock_init(&md->deferred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 atomic_set(&md->holders, 1);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -07001891 atomic_set(&md->open_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 atomic_set(&md->event_nr, 0);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001893 atomic_set(&md->uevent_seq, 0);
1894 INIT_LIST_HEAD(&md->uevent_list);
Benjamin Marzinski86f11522014-08-13 13:53:43 -05001895 INIT_LIST_HEAD(&md->table_devices);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001896 spin_lock_init(&md->uevent_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897
Christoph Hellwig6d469642018-11-14 17:02:18 +01001898 md->queue = blk_alloc_queue_node(GFP_KERNEL, numa_node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 if (!md->queue)
Mike Snitzer0f209722015-04-28 11:50:29 -04001900 goto bad;
Mike Snitzerc12c9a32018-01-12 09:32:21 -05001901 md->queue->queuedata = md;
1902 md->queue->backing_dev_info->congested_data = md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
Mike Snitzerc12c9a32018-01-12 09:32:21 -05001904 md->disk = alloc_disk_node(1, md->numa_node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 if (!md->disk)
Mike Snitzer0f209722015-04-28 11:50:29 -04001906 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07001908 init_waitqueue_head(&md->wait);
Mikulas Patocka53d59142009-04-02 19:55:37 +01001909 INIT_WORK(&md->work, dm_wq_work);
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07001910 init_waitqueue_head(&md->eventq);
Mikulas Patocka2995fa72014-01-13 19:37:54 -05001911 init_completion(&md->kobj_holder.completion);
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07001912
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 md->disk->major = _major;
1914 md->disk->first_minor = minor;
1915 md->disk->fops = &dm_blk_dops;
1916 md->disk->queue = md->queue;
1917 md->disk->private_data = md;
1918 sprintf(md->disk->disk_name, "dm-%d", minor);
Dan Williamsf26c5712017-04-12 12:35:44 -07001919
Dan Williams976431b2018-03-29 17:22:13 -07001920 if (IS_ENABLED(CONFIG_DAX_DRIVER)) {
1921 dax_dev = alloc_dax(md, md->disk->disk_name, &dm_dax_ops);
1922 if (!dax_dev)
1923 goto bad;
1924 }
Dan Williamsf26c5712017-04-12 12:35:44 -07001925 md->dax_dev = dax_dev;
1926
Mike Snitzerc100ec42018-01-08 20:03:04 -05001927 add_disk_no_queue_reg(md->disk);
Mike Anderson7e51f252006-03-27 01:17:52 -08001928 format_dev_t(md->name, MKDEV(_major, minor));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929
Tejun Heo670368a2013-07-30 08:40:21 -04001930 md->wq = alloc_workqueue("kdmflush", WQ_MEM_RECLAIM, 0);
Milan Broz304f3f62008-02-08 02:11:17 +00001931 if (!md->wq)
Mike Snitzer0f209722015-04-28 11:50:29 -04001932 goto bad;
Milan Broz304f3f62008-02-08 02:11:17 +00001933
Mikulas Patocka32a926d2009-06-22 10:12:17 +01001934 md->bdev = bdget_disk(md->disk, 0);
1935 if (!md->bdev)
Mike Snitzer0f209722015-04-28 11:50:29 -04001936 goto bad;
Mikulas Patocka32a926d2009-06-22 10:12:17 +01001937
Ming Lei3a83f462016-11-22 08:57:21 -07001938 bio_init(&md->flush_bio, NULL, 0);
Jan Karaff0361b2017-05-31 09:44:32 +02001939 md->flush_bio.bi_opf = REQ_OP_WRITE | REQ_PREFLUSH | REQ_SYNC;
Tejun Heo6a8736d2010-09-08 18:07:00 +02001940
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04001941 dm_stats_init(&md->stats);
1942
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001943 /* Populate the mapping, nobody knows we exist yet */
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001944 spin_lock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001945 old_md = idr_replace(&_minor_idr, md, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001946 spin_unlock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001947
1948 BUG_ON(old_md != MINOR_ALLOCED);
1949
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 return md;
1951
Mike Snitzer0f209722015-04-28 11:50:29 -04001952bad:
1953 cleanup_mapped_device(md);
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001954bad_io_barrier:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 free_minor(minor);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001956bad_minor:
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001957 module_put(THIS_MODULE);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001958bad_module_get:
Mikulas Patocka856eb092017-10-31 19:33:02 -04001959 kvfree(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 return NULL;
1961}
1962
Jun'ichi Nomuraae9da832007-10-19 22:38:43 +01001963static void unlock_fs(struct mapped_device *md);
1964
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965static void free_dev(struct mapped_device *md)
1966{
Tejun Heof331c022008-09-03 09:01:48 +02001967 int minor = MINOR(disk_devt(md->disk));
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08001968
Mikulas Patocka32a926d2009-06-22 10:12:17 +01001969 unlock_fs(md);
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001970
Mike Snitzer0f209722015-04-28 11:50:29 -04001971 cleanup_mapped_device(md);
Mike Snitzer0f209722015-04-28 11:50:29 -04001972
1973 free_table_devices(&md->table_devices);
1974 dm_stats_cleanup(&md->stats);
Mike Snitzer63a4f062015-03-23 17:01:43 -04001975 free_minor(minor);
1976
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001977 module_put(THIS_MODULE);
Mikulas Patocka856eb092017-10-31 19:33:02 -04001978 kvfree(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979}
1980
Jens Axboe2a2a4c52018-06-07 14:42:06 -06001981static int __bind_mempools(struct mapped_device *md, struct dm_table *t)
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001982{
Mikulas Patockac0820cf2012-12-21 20:23:38 +00001983 struct dm_md_mempools *p = dm_table_get_md_mempools(t);
Jens Axboe2a2a4c52018-06-07 14:42:06 -06001984 int ret = 0;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001985
Mike Snitzer0776aa02017-12-08 14:40:52 -05001986 if (dm_table_bio_based(t)) {
Mike Snitzer64f52b02017-12-11 23:17:47 -05001987 /*
1988 * The md may already have mempools that need changing.
1989 * If so, reload bioset because front_pad may have changed
1990 * because a different table was loaded.
1991 */
Kent Overstreet6f1c8192018-05-20 18:25:53 -04001992 bioset_exit(&md->bs);
1993 bioset_exit(&md->io_bs);
Mike Snitzer0776aa02017-12-08 14:40:52 -05001994
Kent Overstreet6f1c8192018-05-20 18:25:53 -04001995 } else if (bioset_initialized(&md->bs)) {
Mike Snitzer4e6e36c2015-06-26 09:42:57 -04001996 /*
1997 * There's no need to reload with request-based dm
1998 * because the size of front_pad doesn't change.
1999 * Note for future: If you are to reload bioset,
2000 * prep-ed requests in the queue may refer
2001 * to bio from the old bioset, so you must walk
2002 * through the queue to unprep.
2003 */
2004 goto out;
Mikulas Patockac0820cf2012-12-21 20:23:38 +00002005 }
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002006
Kent Overstreet6f1c8192018-05-20 18:25:53 -04002007 BUG_ON(!p ||
2008 bioset_initialized(&md->bs) ||
2009 bioset_initialized(&md->io_bs));
Mike Snitzercbc4e3c2015-04-27 16:37:50 -04002010
Jens Axboe2a2a4c52018-06-07 14:42:06 -06002011 ret = bioset_init_from_src(&md->bs, &p->bs);
2012 if (ret)
2013 goto out;
2014 ret = bioset_init_from_src(&md->io_bs, &p->io_bs);
2015 if (ret)
2016 bioset_exit(&md->bs);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002017out:
Mike Snitzer02233342015-03-10 23:49:26 -04002018 /* mempool bind completed, no longer need any mempools in the table */
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002019 dm_table_free_md_mempools(t);
Jens Axboe2a2a4c52018-06-07 14:42:06 -06002020 return ret;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002021}
2022
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023/*
2024 * Bind a table to the device.
2025 */
2026static void event_callback(void *context)
2027{
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002028 unsigned long flags;
2029 LIST_HEAD(uevents);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 struct mapped_device *md = (struct mapped_device *) context;
2031
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002032 spin_lock_irqsave(&md->uevent_lock, flags);
2033 list_splice_init(&md->uevent_list, &uevents);
2034 spin_unlock_irqrestore(&md->uevent_lock, flags);
2035
Tejun Heoed9e1982008-08-25 19:56:05 +09002036 dm_send_uevents(&uevents, &disk_to_dev(md->disk)->kobj);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002037
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 atomic_inc(&md->event_nr);
2039 wake_up(&md->eventq);
Mikulas Patocka62e08242017-09-20 07:29:49 -04002040 dm_issue_global_event();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041}
2042
Mike Snitzerc2176492011-01-13 19:53:46 +00002043/*
2044 * Protected by md->suspend_lock obtained by dm_swap_table().
2045 */
Alasdair G Kergon4e90188be2005-07-28 21:15:59 -07002046static void __set_size(struct mapped_device *md, sector_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047{
Bart Van Assche1ea06542017-04-27 10:11:21 -07002048 lockdep_assert_held(&md->suspend_lock);
2049
Alasdair G Kergon4e90188be2005-07-28 21:15:59 -07002050 set_capacity(md->disk, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002052 i_size_write(md->bdev->bd_inode, (loff_t)size << SECTOR_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053}
2054
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002055/*
2056 * Returns old map, which caller must destroy.
2057 */
2058static struct dm_table *__bind(struct mapped_device *md, struct dm_table *t,
2059 struct queue_limits *limits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060{
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002061 struct dm_table *old_map;
Jens Axboe165125e2007-07-24 09:28:11 +02002062 struct request_queue *q = md->queue;
Mike Snitzer978e51b2017-12-09 15:16:42 -05002063 bool request_based = dm_table_request_based(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 sector_t size;
Jens Axboe2a2a4c52018-06-07 14:42:06 -06002065 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066
Bart Van Assche5a8f1f82016-08-31 15:17:04 -07002067 lockdep_assert_held(&md->suspend_lock);
2068
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 size = dm_table_get_size(t);
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08002070
2071 /*
2072 * Wipe any geometry if the size of the table changed.
2073 */
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002074 if (size != dm_get_size(md))
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08002075 memset(&md->geometry, 0, sizeof(md->geometry));
2076
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002077 __set_size(md, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002079 dm_table_event_callback(t, event_callback, md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002080
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002081 /*
2082 * The queue hasn't been stopped yet, if the old table type wasn't
2083 * for request-based during suspension. So stop it to prevent
2084 * I/O mapping before resume.
2085 * This must be done before setting the queue restrictions,
2086 * because request-based dm may be run just after the setting.
2087 */
Mike Snitzer978e51b2017-12-09 15:16:42 -05002088 if (request_based)
Mike Snitzereca7ee62016-02-20 13:45:38 -05002089 dm_stop_queue(q);
Mike Snitzer978e51b2017-12-09 15:16:42 -05002090
2091 if (request_based || md->type == DM_TYPE_NVME_BIO_BASED) {
Mike Snitzer16f12262016-01-31 17:22:27 -05002092 /*
Mike Snitzer978e51b2017-12-09 15:16:42 -05002093 * Leverage the fact that request-based DM targets and
2094 * NVMe bio based targets are immutable singletons
2095 * - used to optimize both dm_request_fn and dm_mq_queue_rq;
2096 * and __process_bio.
Mike Snitzer16f12262016-01-31 17:22:27 -05002097 */
2098 md->immutable_target = dm_table_get_immutable_target(t);
2099 }
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002100
Jens Axboe2a2a4c52018-06-07 14:42:06 -06002101 ret = __bind_mempools(md, t);
2102 if (ret) {
2103 old_map = ERR_PTR(ret);
2104 goto out;
2105 }
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002106
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002107 old_map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mike Snitzer1d3aa6f2016-02-22 14:14:24 -05002108 rcu_assign_pointer(md->map, (void *)t);
Alasdair G Kergon36a04562011-10-31 20:19:04 +00002109 md->immutable_target_type = dm_table_get_immutable_target_type(t);
2110
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002111 dm_table_set_restrictions(t, q, limits);
Hannes Reinecke41abc4e2014-11-05 14:35:50 +01002112 if (old_map)
2113 dm_sync_table(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002114
Jens Axboe2a2a4c52018-06-07 14:42:06 -06002115out:
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002116 return old_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117}
2118
Alasdair G Kergona7940152009-12-10 23:52:23 +00002119/*
2120 * Returns unbound table for the caller to free.
2121 */
2122static struct dm_table *__unbind(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123{
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002124 struct dm_table *map = rcu_dereference_protected(md->map, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125
2126 if (!map)
Alasdair G Kergona7940152009-12-10 23:52:23 +00002127 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128
2129 dm_table_event_callback(map, NULL, NULL);
Monam Agarwal9cdb8522014-03-23 23:58:27 +05302130 RCU_INIT_POINTER(md->map, NULL);
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002131 dm_sync_table(md);
Alasdair G Kergona7940152009-12-10 23:52:23 +00002132
2133 return map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134}
2135
2136/*
2137 * Constructor for a new device.
2138 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002139int dm_create(int minor, struct mapped_device **result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140{
Mike Snitzerc12c9a32018-01-12 09:32:21 -05002141 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 struct mapped_device *md;
2143
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002144 md = alloc_dev(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 if (!md)
2146 return -ENXIO;
2147
Mike Snitzerc12c9a32018-01-12 09:32:21 -05002148 r = dm_sysfs_init(md);
2149 if (r) {
2150 free_dev(md);
2151 return r;
2152 }
Milan Broz784aae72009-01-06 03:05:12 +00002153
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 *result = md;
2155 return 0;
2156}
2157
Mike Snitzera5664da2010-08-12 04:14:01 +01002158/*
2159 * Functions to manage md->type.
2160 * All are required to hold md->type_lock.
2161 */
2162void dm_lock_md_type(struct mapped_device *md)
2163{
2164 mutex_lock(&md->type_lock);
2165}
2166
2167void dm_unlock_md_type(struct mapped_device *md)
2168{
2169 mutex_unlock(&md->type_lock);
2170}
2171
Bart Van Assche7e0d5742017-04-27 10:11:23 -07002172void dm_set_md_type(struct mapped_device *md, enum dm_queue_mode type)
Mike Snitzera5664da2010-08-12 04:14:01 +01002173{
Mike Snitzer00c4fc32013-08-27 18:57:03 -04002174 BUG_ON(!mutex_is_locked(&md->type_lock));
Mike Snitzera5664da2010-08-12 04:14:01 +01002175 md->type = type;
2176}
2177
Bart Van Assche7e0d5742017-04-27 10:11:23 -07002178enum dm_queue_mode dm_get_md_type(struct mapped_device *md)
Mike Snitzera5664da2010-08-12 04:14:01 +01002179{
2180 return md->type;
2181}
2182
Alasdair G Kergon36a04562011-10-31 20:19:04 +00002183struct target_type *dm_get_immutable_target_type(struct mapped_device *md)
2184{
2185 return md->immutable_target_type;
2186}
2187
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002188/*
Mike Snitzerf84cb8a2013-09-19 12:13:58 -04002189 * The queue_limits are only valid as long as you have a reference
2190 * count on 'md'.
2191 */
2192struct queue_limits *dm_get_queue_limits(struct mapped_device *md)
2193{
2194 BUG_ON(!atomic_read(&md->holders));
2195 return &md->queue->limits;
2196}
2197EXPORT_SYMBOL_GPL(dm_get_queue_limits);
2198
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002199/*
2200 * Setup the DM device's queue based on md's type
2201 */
Mike Snitzer591ddcf2016-01-31 12:05:42 -05002202int dm_setup_md_queue(struct mapped_device *md, struct dm_table *t)
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002203{
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002204 int r;
Mike Snitzerc100ec42018-01-08 20:03:04 -05002205 struct queue_limits limits;
Bart Van Assche7e0d5742017-04-27 10:11:23 -07002206 enum dm_queue_mode type = dm_get_md_type(md);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002207
Toshi Kani545ed202016-06-22 17:54:53 -06002208 switch (type) {
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002209 case DM_TYPE_REQUEST_BASED:
Mike Snitzere83068a2016-05-24 21:16:51 -04002210 r = dm_mq_init_request_queue(md, t);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002211 if (r) {
Mike Snitzereca7ee62016-02-20 13:45:38 -05002212 DMERR("Cannot initialize queue for request-based dm-mq mapped device");
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002213 return r;
2214 }
2215 break;
2216 case DM_TYPE_BIO_BASED:
Toshi Kani545ed202016-06-22 17:54:53 -06002217 case DM_TYPE_DAX_BIO_BASED:
Mike Snitzer978e51b2017-12-09 15:16:42 -05002218 case DM_TYPE_NVME_BIO_BASED:
2219 dm_init_normal_md_queue(md);
Mikulas Patocka24113d42018-11-06 22:34:59 +01002220 blk_queue_make_request(md->queue, dm_make_request);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002221 break;
Bart Van Assche7e0d5742017-04-27 10:11:23 -07002222 case DM_TYPE_NONE:
2223 WARN_ON_ONCE(true);
2224 break;
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002225 }
2226
Mike Snitzerc100ec42018-01-08 20:03:04 -05002227 r = dm_calculate_queue_limits(t, &limits);
2228 if (r) {
2229 DMERR("Cannot calculate initial queue limits");
2230 return r;
2231 }
2232 dm_table_set_restrictions(t, md->queue, &limits);
2233 blk_register_queue(md->disk);
2234
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002235 return 0;
2236}
2237
Mikulas Patocka2bec1f42015-02-17 14:30:53 -05002238struct mapped_device *dm_get_md(dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239{
2240 struct mapped_device *md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 unsigned minor = MINOR(dev);
2242
2243 if (MAJOR(dev) != _major || minor >= (1 << MINORBITS))
2244 return NULL;
2245
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002246 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247
2248 md = idr_find(&_minor_idr, minor);
Mike Snitzer49de5762017-11-06 16:40:10 -05002249 if (!md || md == MINOR_ALLOCED || (MINOR(disk_devt(dm_disk(md))) != minor) ||
2250 test_bit(DMF_FREEING, &md->flags) || dm_deleting_md(md)) {
2251 md = NULL;
2252 goto out;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002253 }
Mike Snitzer49de5762017-11-06 16:40:10 -05002254 dm_get(md);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002255out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002256 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257
David Teigland637842c2006-01-06 00:20:00 -08002258 return md;
2259}
Alasdair G Kergon3cf2e4b2011-10-31 20:19:06 +00002260EXPORT_SYMBOL_GPL(dm_get_md);
David Teiglandd229a952006-01-06 00:20:01 -08002261
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08002262void *dm_get_mdptr(struct mapped_device *md)
David Teigland637842c2006-01-06 00:20:00 -08002263{
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08002264 return md->interface_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265}
2266
2267void dm_set_mdptr(struct mapped_device *md, void *ptr)
2268{
2269 md->interface_ptr = ptr;
2270}
2271
2272void dm_get(struct mapped_device *md)
2273{
2274 atomic_inc(&md->holders);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002275 BUG_ON(test_bit(DMF_FREEING, &md->flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276}
2277
Mikulas Patocka09ee96b2015-02-26 11:41:28 -05002278int dm_hold(struct mapped_device *md)
2279{
2280 spin_lock(&_minor_lock);
2281 if (test_bit(DMF_FREEING, &md->flags)) {
2282 spin_unlock(&_minor_lock);
2283 return -EBUSY;
2284 }
2285 dm_get(md);
2286 spin_unlock(&_minor_lock);
2287 return 0;
2288}
2289EXPORT_SYMBOL_GPL(dm_hold);
2290
Alasdair G Kergon72d94862006-06-26 00:27:35 -07002291const char *dm_device_name(struct mapped_device *md)
2292{
2293 return md->name;
2294}
2295EXPORT_SYMBOL_GPL(dm_device_name);
2296
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002297static void __dm_destroy(struct mapped_device *md, bool wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298{
Mike Anderson1134e5a2006-03-27 01:17:54 -08002299 struct dm_table *map;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002300 int srcu_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002302 might_sleep();
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002303
Mike Snitzer63a4f062015-03-23 17:01:43 -04002304 spin_lock(&_minor_lock);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002305 idr_replace(&_minor_idr, MINOR_ALLOCED, MINOR(disk_devt(dm_disk(md))));
2306 set_bit(DMF_FREEING, &md->flags);
2307 spin_unlock(&_minor_lock);
2308
Mike Snitzerc12c9a32018-01-12 09:32:21 -05002309 blk_set_queue_dying(md->queue);
Bart Van Assche3b785fb2016-08-31 15:17:49 -07002310
Mikulas Patockaab7c7bb2015-02-27 14:04:27 -05002311 /*
2312 * Take suspend_lock so that presuspend and postsuspend methods
2313 * do not race with internal suspend.
2314 */
2315 mutex_lock(&md->suspend_lock);
Junichi Nomura2a708cf2015-10-01 08:31:51 +00002316 map = dm_get_live_table(md, &srcu_idx);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002317 if (!dm_suspended_md(md)) {
2318 dm_table_presuspend_targets(map);
2319 dm_table_postsuspend_targets(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 }
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002321 /* dm_put_live_table must be before msleep, otherwise deadlock is possible */
2322 dm_put_live_table(md, srcu_idx);
Junichi Nomura2a708cf2015-10-01 08:31:51 +00002323 mutex_unlock(&md->suspend_lock);
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002324
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002325 /*
2326 * Rare, but there may be I/O requests still going to complete,
2327 * for example. Wait for all references to disappear.
2328 * No one should increment the reference count of the mapped_device,
2329 * after the mapped_device state becomes DMF_FREEING.
2330 */
2331 if (wait)
2332 while (atomic_read(&md->holders))
2333 msleep(1);
2334 else if (atomic_read(&md->holders))
2335 DMWARN("%s: Forcibly removing mapped_device still in use! (%d users)",
2336 dm_device_name(md), atomic_read(&md->holders));
2337
2338 dm_sysfs_exit(md);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002339 dm_table_destroy(__unbind(md));
2340 free_dev(md);
2341}
2342
2343void dm_destroy(struct mapped_device *md)
2344{
2345 __dm_destroy(md, true);
2346}
2347
2348void dm_destroy_immediate(struct mapped_device *md)
2349{
2350 __dm_destroy(md, false);
2351}
2352
2353void dm_put(struct mapped_device *md)
2354{
2355 atomic_dec(&md->holders);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356}
Edward Goggin79eb8852007-05-09 02:32:56 -07002357EXPORT_SYMBOL_GPL(dm_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358
Bart Van Asscheb48633f2016-08-31 15:16:02 -07002359static int dm_wait_for_completion(struct mapped_device *md, long task_state)
Milan Broz46125c12008-02-08 02:10:30 +00002360{
2361 int r = 0;
Bart Van Assche9f4c3f82016-08-31 15:16:43 -07002362 DEFINE_WAIT(wait);
Milan Broz46125c12008-02-08 02:10:30 +00002363
2364 while (1) {
Bart Van Assche9f4c3f82016-08-31 15:16:43 -07002365 prepare_to_wait(&md->wait, &wait, task_state);
Milan Broz46125c12008-02-08 02:10:30 +00002366
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00002367 if (!md_in_flight(md))
Milan Broz46125c12008-02-08 02:10:30 +00002368 break;
2369
Bart Van Asschee3fabdf2016-08-31 15:16:22 -07002370 if (signal_pending_state(task_state, current)) {
Milan Broz46125c12008-02-08 02:10:30 +00002371 r = -EINTR;
2372 break;
2373 }
2374
2375 io_schedule();
2376 }
Bart Van Assche9f4c3f82016-08-31 15:16:43 -07002377 finish_wait(&md->wait, &wait);
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002378
Milan Broz46125c12008-02-08 02:10:30 +00002379 return r;
2380}
2381
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382/*
2383 * Process the deferred bios
2384 */
Mikulas Patockaef208582009-04-02 19:55:38 +01002385static void dm_wq_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386{
Mikulas Patockaef208582009-04-02 19:55:38 +01002387 struct mapped_device *md = container_of(work, struct mapped_device,
2388 work);
Milan Broz6d6f10d2008-02-08 02:10:22 +00002389 struct bio *c;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002390 int srcu_idx;
2391 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002393 map = dm_get_live_table(md, &srcu_idx);
Mikulas Patockaef208582009-04-02 19:55:38 +01002394
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002395 while (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002396 spin_lock_irq(&md->deferred_lock);
2397 c = bio_list_pop(&md->deferred);
2398 spin_unlock_irq(&md->deferred_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01002399
Tejun Heo6a8736d2010-09-08 18:07:00 +02002400 if (!c)
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002401 break;
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002402
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002403 if (dm_request_based(md))
2404 generic_make_request(c);
Tejun Heo6a8736d2010-09-08 18:07:00 +02002405 else
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002406 __split_and_process_bio(md, map, c);
Mikulas Patocka022c2612009-04-02 19:55:39 +01002407 }
Milan Broz73d410c2008-02-08 02:10:25 +00002408
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002409 dm_put_live_table(md, srcu_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410}
2411
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002412static void dm_queue_flush(struct mapped_device *md)
Milan Broz304f3f62008-02-08 02:11:17 +00002413{
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002414 clear_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01002415 smp_mb__after_atomic();
Mikulas Patocka53d59142009-04-02 19:55:37 +01002416 queue_work(md->wq, &md->work);
Milan Broz304f3f62008-02-08 02:11:17 +00002417}
2418
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419/*
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002420 * Swap in a new table, returning the old one for the caller to destroy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 */
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002422struct dm_table *dm_swap_table(struct mapped_device *md, struct dm_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423{
Mike Christie87eb5b22013-03-01 22:45:48 +00002424 struct dm_table *live_map = NULL, *map = ERR_PTR(-EINVAL);
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002425 struct queue_limits limits;
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002426 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427
Daniel Walkere61290a2008-02-08 02:10:08 +00002428 mutex_lock(&md->suspend_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429
2430 /* device must be suspended */
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +00002431 if (!dm_suspended_md(md))
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07002432 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433
Mike Snitzer3ae70652012-09-26 23:45:45 +01002434 /*
2435 * If the new table has no data devices, retain the existing limits.
2436 * This helps multipath with queue_if_no_path if all paths disappear,
2437 * then new I/O is queued based on these limits, and then some paths
2438 * reappear.
2439 */
2440 if (dm_table_has_no_data_devices(table)) {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002441 live_map = dm_get_live_table_fast(md);
Mike Snitzer3ae70652012-09-26 23:45:45 +01002442 if (live_map)
2443 limits = md->queue->limits;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002444 dm_put_live_table_fast(md);
Mike Snitzer3ae70652012-09-26 23:45:45 +01002445 }
2446
Mike Christie87eb5b22013-03-01 22:45:48 +00002447 if (!live_map) {
2448 r = dm_calculate_queue_limits(table, &limits);
2449 if (r) {
2450 map = ERR_PTR(r);
2451 goto out;
2452 }
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002453 }
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002454
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002455 map = __bind(md, table, &limits);
Mikulas Patocka62e08242017-09-20 07:29:49 -04002456 dm_issue_global_event();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07002458out:
Daniel Walkere61290a2008-02-08 02:10:08 +00002459 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002460 return map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461}
2462
2463/*
2464 * Functions to lock and unlock any filesystem running on the
2465 * device.
2466 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002467static int lock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468{
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08002469 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470
2471 WARN_ON(md->frozen_sb);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002472
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002473 md->frozen_sb = freeze_bdev(md->bdev);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002474 if (IS_ERR(md->frozen_sb)) {
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002475 r = PTR_ERR(md->frozen_sb);
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08002476 md->frozen_sb = NULL;
2477 return r;
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002478 }
2479
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002480 set_bit(DMF_FROZEN, &md->flags);
2481
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 return 0;
2483}
2484
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002485static void unlock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486{
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002487 if (!test_bit(DMF_FROZEN, &md->flags))
2488 return;
2489
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002490 thaw_bdev(md->bdev, md->frozen_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 md->frozen_sb = NULL;
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002492 clear_bit(DMF_FROZEN, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493}
2494
2495/*
Bart Van Asscheb48633f2016-08-31 15:16:02 -07002496 * @suspend_flags: DM_SUSPEND_LOCKFS_FLAG and/or DM_SUSPEND_NOFLUSH_FLAG
2497 * @task_state: e.g. TASK_INTERRUPTIBLE or TASK_UNINTERRUPTIBLE
2498 * @dmf_suspended_flag: DMF_SUSPENDED or DMF_SUSPENDED_INTERNALLY
2499 *
Mike Snitzerffcc3932014-10-28 18:34:52 -04002500 * If __dm_suspend returns 0, the device is completely quiescent
2501 * now. There is no request-processing activity. All new requests
2502 * are being added to md->deferred list.
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002503 */
Mike Snitzerffcc3932014-10-28 18:34:52 -04002504static int __dm_suspend(struct mapped_device *md, struct dm_table *map,
Bart Van Asscheb48633f2016-08-31 15:16:02 -07002505 unsigned suspend_flags, long task_state,
Mike Snitzereaf9a732016-08-02 13:07:20 -04002506 int dmf_suspended_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507{
Mike Snitzerffcc3932014-10-28 18:34:52 -04002508 bool do_lockfs = suspend_flags & DM_SUSPEND_LOCKFS_FLAG;
2509 bool noflush = suspend_flags & DM_SUSPEND_NOFLUSH_FLAG;
2510 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511
Bart Van Assche5a8f1f82016-08-31 15:17:04 -07002512 lockdep_assert_held(&md->suspend_lock);
2513
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002514 /*
2515 * DMF_NOFLUSH_SUSPENDING must be set before presuspend.
2516 * This flag is cleared before dm_suspend returns.
2517 */
2518 if (noflush)
2519 set_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
Bart Van Assche86331f32017-04-27 10:11:26 -07002520 else
2521 pr_debug("%s: suspending with flush\n", dm_device_name(md));
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002522
Mike Snitzerd67ee212014-10-28 20:13:31 -04002523 /*
2524 * This gets reverted if there's an error later and the targets
2525 * provide the .presuspend_undo hook.
2526 */
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002527 dm_table_presuspend_targets(map);
2528
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002529 /*
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002530 * Flush I/O to the device.
2531 * Any I/O submitted after lock_fs() may not be flushed.
2532 * noflush takes precedence over do_lockfs.
2533 * (lock_fs() flushes I/Os and waits for them to complete.)
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002534 */
2535 if (!noflush && do_lockfs) {
2536 r = lock_fs(md);
Mike Snitzerd67ee212014-10-28 20:13:31 -04002537 if (r) {
2538 dm_table_presuspend_undo_targets(map);
Mike Snitzerffcc3932014-10-28 18:34:52 -04002539 return r;
Mike Snitzerd67ee212014-10-28 20:13:31 -04002540 }
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002541 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542
2543 /*
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002544 * Here we must make sure that no processes are submitting requests
2545 * to target drivers i.e. no one may be executing
2546 * __split_and_process_bio. This is called from dm_request and
2547 * dm_wq_work.
2548 *
2549 * To get all processes out of __split_and_process_bio in dm_request,
2550 * we take the write lock. To prevent any process from reentering
Tejun Heo6a8736d2010-09-08 18:07:00 +02002551 * __split_and_process_bio from dm_request and quiesce the thread
2552 * (dm_wq_work), we set BMF_BLOCK_IO_FOR_SUSPEND and call
2553 * flush_workqueue(md->wq).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 */
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01002555 set_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
Hannes Reinecke41abc4e2014-11-05 14:35:50 +01002556 if (map)
2557 synchronize_srcu(&md->io_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002559 /*
Tejun Heo29e40132010-09-08 18:07:00 +02002560 * Stop md->queue before flushing md->wq in case request-based
2561 * dm defers requests to md->wq from md->queue.
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002562 */
Jens Axboe6a23e052018-10-10 20:49:26 -06002563 if (dm_request_based(md))
Mike Snitzereca7ee62016-02-20 13:45:38 -05002564 dm_stop_queue(md->queue);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002565
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002566 flush_workqueue(md->wq);
2567
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 /*
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002569 * At this point no more requests are entering target request routines.
2570 * We call dm_wait_for_completion to wait for all existing requests
2571 * to finish.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572 */
Bart Van Asscheb48633f2016-08-31 15:16:02 -07002573 r = dm_wait_for_completion(md, task_state);
Mike Snitzereaf9a732016-08-02 13:07:20 -04002574 if (!r)
2575 set_bit(dmf_suspended_flag, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576
Milan Broz6d6f10d2008-02-08 02:10:22 +00002577 if (noflush)
Mikulas Patocka022c2612009-04-02 19:55:39 +01002578 clear_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
Hannes Reinecke41abc4e2014-11-05 14:35:50 +01002579 if (map)
2580 synchronize_srcu(&md->io_barrier);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002581
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 /* were we interrupted ? */
Milan Broz46125c12008-02-08 02:10:30 +00002583 if (r < 0) {
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002584 dm_queue_flush(md);
Milan Broz73d410c2008-02-08 02:10:25 +00002585
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002586 if (dm_request_based(md))
Mike Snitzereca7ee62016-02-20 13:45:38 -05002587 dm_start_queue(md->queue);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002588
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002589 unlock_fs(md);
Mike Snitzerd67ee212014-10-28 20:13:31 -04002590 dm_table_presuspend_undo_targets(map);
Mike Snitzerffcc3932014-10-28 18:34:52 -04002591 /* pushback list is already flushed, so skip flush */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002592 }
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002593
Mike Snitzerffcc3932014-10-28 18:34:52 -04002594 return r;
2595}
2596
2597/*
2598 * We need to be able to change a mapping table under a mounted
2599 * filesystem. For example we might want to move some data in
2600 * the background. Before the table can be swapped with
2601 * dm_bind_table, dm_suspend must be called to flush any in
2602 * flight bios and ensure that any further io gets deferred.
2603 */
2604/*
2605 * Suspend mechanism in request-based dm.
2606 *
2607 * 1. Flush all I/Os by lock_fs() if needed.
2608 * 2. Stop dispatching any I/O by stopping the request_queue.
2609 * 3. Wait for all in-flight I/Os to be completed or requeued.
2610 *
2611 * To abort suspend, start the request_queue.
2612 */
2613int dm_suspend(struct mapped_device *md, unsigned suspend_flags)
2614{
2615 struct dm_table *map = NULL;
2616 int r = 0;
2617
2618retry:
2619 mutex_lock_nested(&md->suspend_lock, SINGLE_DEPTH_NESTING);
2620
2621 if (dm_suspended_md(md)) {
2622 r = -EINVAL;
2623 goto out_unlock;
2624 }
2625
2626 if (dm_suspended_internally_md(md)) {
2627 /* already internally suspended, wait for internal resume */
2628 mutex_unlock(&md->suspend_lock);
2629 r = wait_on_bit(&md->flags, DMF_SUSPENDED_INTERNALLY, TASK_INTERRUPTIBLE);
2630 if (r)
2631 return r;
2632 goto retry;
2633 }
2634
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002635 map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mike Snitzerffcc3932014-10-28 18:34:52 -04002636
Mike Snitzereaf9a732016-08-02 13:07:20 -04002637 r = __dm_suspend(md, map, suspend_flags, TASK_INTERRUPTIBLE, DMF_SUSPENDED);
Mike Snitzerffcc3932014-10-28 18:34:52 -04002638 if (r)
2639 goto out_unlock;
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002640
Kiyoshi Ueda4d4471c2009-12-10 23:52:26 +00002641 dm_table_postsuspend_targets(map);
2642
Alasdair G Kergond2874832006-11-08 17:44:43 -08002643out_unlock:
Daniel Walkere61290a2008-02-08 02:10:08 +00002644 mutex_unlock(&md->suspend_lock);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002645 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646}
2647
Mike Snitzerffcc3932014-10-28 18:34:52 -04002648static int __dm_resume(struct mapped_device *md, struct dm_table *map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649{
Mike Snitzerffcc3932014-10-28 18:34:52 -04002650 if (map) {
2651 int r = dm_table_resume_targets(map);
2652 if (r)
2653 return r;
2654 }
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002655
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002656 dm_queue_flush(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002657
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002658 /*
2659 * Flushing deferred I/Os must be done after targets are resumed
2660 * so that mapping of targets can work correctly.
2661 * Request-based dm is queueing the deferred I/Os in its request_queue.
2662 */
2663 if (dm_request_based(md))
Mike Snitzereca7ee62016-02-20 13:45:38 -05002664 dm_start_queue(md->queue);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002665
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002666 unlock_fs(md);
2667
Mike Snitzerffcc3932014-10-28 18:34:52 -04002668 return 0;
2669}
2670
2671int dm_resume(struct mapped_device *md)
2672{
Minfei Huang8dc23652016-09-06 16:00:29 +08002673 int r;
Mike Snitzerffcc3932014-10-28 18:34:52 -04002674 struct dm_table *map = NULL;
2675
2676retry:
Minfei Huang8dc23652016-09-06 16:00:29 +08002677 r = -EINVAL;
Mike Snitzerffcc3932014-10-28 18:34:52 -04002678 mutex_lock_nested(&md->suspend_lock, SINGLE_DEPTH_NESTING);
2679
2680 if (!dm_suspended_md(md))
2681 goto out;
2682
2683 if (dm_suspended_internally_md(md)) {
2684 /* already internally suspended, wait for internal resume */
2685 mutex_unlock(&md->suspend_lock);
2686 r = wait_on_bit(&md->flags, DMF_SUSPENDED_INTERNALLY, TASK_INTERRUPTIBLE);
2687 if (r)
2688 return r;
2689 goto retry;
2690 }
2691
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002692 map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mike Snitzerffcc3932014-10-28 18:34:52 -04002693 if (!map || !dm_table_get_size(map))
2694 goto out;
2695
2696 r = __dm_resume(md, map);
2697 if (r)
2698 goto out;
2699
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002700 clear_bit(DMF_SUSPENDED, &md->flags);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002701out:
Daniel Walkere61290a2008-02-08 02:10:08 +00002702 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002703
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002704 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705}
2706
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002707/*
2708 * Internal suspend/resume works like userspace-driven suspend. It waits
2709 * until all bios finish and prevents issuing new bios to the target drivers.
2710 * It may be used only from the kernel.
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002711 */
2712
Mike Snitzerffcc3932014-10-28 18:34:52 -04002713static void __dm_internal_suspend(struct mapped_device *md, unsigned suspend_flags)
2714{
2715 struct dm_table *map = NULL;
2716
Bart Van Assche1ea06542017-04-27 10:11:21 -07002717 lockdep_assert_held(&md->suspend_lock);
2718
Mikulas Patocka96b26c82015-01-08 18:52:26 -05002719 if (md->internal_suspend_count++)
Mike Snitzerffcc3932014-10-28 18:34:52 -04002720 return; /* nested internal suspend */
2721
2722 if (dm_suspended_md(md)) {
2723 set_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
2724 return; /* nest suspend */
2725 }
2726
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002727 map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mike Snitzerffcc3932014-10-28 18:34:52 -04002728
2729 /*
2730 * Using TASK_UNINTERRUPTIBLE because only NOFLUSH internal suspend is
2731 * supported. Properly supporting a TASK_INTERRUPTIBLE internal suspend
2732 * would require changing .presuspend to return an error -- avoid this
2733 * until there is a need for more elaborate variants of internal suspend.
2734 */
Mike Snitzereaf9a732016-08-02 13:07:20 -04002735 (void) __dm_suspend(md, map, suspend_flags, TASK_UNINTERRUPTIBLE,
2736 DMF_SUSPENDED_INTERNALLY);
Mike Snitzerffcc3932014-10-28 18:34:52 -04002737
2738 dm_table_postsuspend_targets(map);
2739}
2740
2741static void __dm_internal_resume(struct mapped_device *md)
2742{
Mikulas Patocka96b26c82015-01-08 18:52:26 -05002743 BUG_ON(!md->internal_suspend_count);
2744
2745 if (--md->internal_suspend_count)
Mike Snitzerffcc3932014-10-28 18:34:52 -04002746 return; /* resume from nested internal suspend */
2747
2748 if (dm_suspended_md(md))
2749 goto done; /* resume from nested suspend */
2750
2751 /*
2752 * NOTE: existing callers don't need to call dm_table_resume_targets
2753 * (which may fail -- so best to avoid it for now by passing NULL map)
2754 */
2755 (void) __dm_resume(md, NULL);
2756
2757done:
2758 clear_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
2759 smp_mb__after_atomic();
2760 wake_up_bit(&md->flags, DMF_SUSPENDED_INTERNALLY);
2761}
2762
2763void dm_internal_suspend_noflush(struct mapped_device *md)
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002764{
2765 mutex_lock(&md->suspend_lock);
Mike Snitzerffcc3932014-10-28 18:34:52 -04002766 __dm_internal_suspend(md, DM_SUSPEND_NOFLUSH_FLAG);
2767 mutex_unlock(&md->suspend_lock);
2768}
2769EXPORT_SYMBOL_GPL(dm_internal_suspend_noflush);
2770
2771void dm_internal_resume(struct mapped_device *md)
2772{
2773 mutex_lock(&md->suspend_lock);
2774 __dm_internal_resume(md);
2775 mutex_unlock(&md->suspend_lock);
2776}
2777EXPORT_SYMBOL_GPL(dm_internal_resume);
2778
2779/*
2780 * Fast variants of internal suspend/resume hold md->suspend_lock,
2781 * which prevents interaction with userspace-driven suspend.
2782 */
2783
2784void dm_internal_suspend_fast(struct mapped_device *md)
2785{
2786 mutex_lock(&md->suspend_lock);
2787 if (dm_suspended_md(md) || dm_suspended_internally_md(md))
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002788 return;
2789
2790 set_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
2791 synchronize_srcu(&md->io_barrier);
2792 flush_workqueue(md->wq);
2793 dm_wait_for_completion(md, TASK_UNINTERRUPTIBLE);
2794}
Mikulas Patockab735fed2015-02-26 11:40:35 -05002795EXPORT_SYMBOL_GPL(dm_internal_suspend_fast);
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002796
Mike Snitzerffcc3932014-10-28 18:34:52 -04002797void dm_internal_resume_fast(struct mapped_device *md)
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002798{
Mike Snitzerffcc3932014-10-28 18:34:52 -04002799 if (dm_suspended_md(md) || dm_suspended_internally_md(md))
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002800 goto done;
2801
2802 dm_queue_flush(md);
2803
2804done:
2805 mutex_unlock(&md->suspend_lock);
2806}
Mikulas Patockab735fed2015-02-26 11:40:35 -05002807EXPORT_SYMBOL_GPL(dm_internal_resume_fast);
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002808
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809/*-----------------------------------------------------------------
2810 * Event notification.
2811 *---------------------------------------------------------------*/
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00002812int dm_kobject_uevent(struct mapped_device *md, enum kobject_action action,
Milan Broz60935eb2009-06-22 10:12:30 +01002813 unsigned cookie)
Alasdair G Kergon69267a32007-12-13 14:15:57 +00002814{
Milan Broz60935eb2009-06-22 10:12:30 +01002815 char udev_cookie[DM_COOKIE_LENGTH];
2816 char *envp[] = { udev_cookie, NULL };
2817
2818 if (!cookie)
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00002819 return kobject_uevent(&disk_to_dev(md->disk)->kobj, action);
Milan Broz60935eb2009-06-22 10:12:30 +01002820 else {
2821 snprintf(udev_cookie, DM_COOKIE_LENGTH, "%s=%u",
2822 DM_COOKIE_ENV_VAR_NAME, cookie);
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00002823 return kobject_uevent_env(&disk_to_dev(md->disk)->kobj,
2824 action, envp);
Milan Broz60935eb2009-06-22 10:12:30 +01002825 }
Alasdair G Kergon69267a32007-12-13 14:15:57 +00002826}
2827
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002828uint32_t dm_next_uevent_seq(struct mapped_device *md)
2829{
2830 return atomic_add_return(1, &md->uevent_seq);
2831}
2832
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833uint32_t dm_get_event_nr(struct mapped_device *md)
2834{
2835 return atomic_read(&md->event_nr);
2836}
2837
2838int dm_wait_event(struct mapped_device *md, int event_nr)
2839{
2840 return wait_event_interruptible(md->eventq,
2841 (event_nr != atomic_read(&md->event_nr)));
2842}
2843
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002844void dm_uevent_add(struct mapped_device *md, struct list_head *elist)
2845{
2846 unsigned long flags;
2847
2848 spin_lock_irqsave(&md->uevent_lock, flags);
2849 list_add(elist, &md->uevent_list);
2850 spin_unlock_irqrestore(&md->uevent_lock, flags);
2851}
2852
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853/*
2854 * The gendisk is only valid as long as you have a reference
2855 * count on 'md'.
2856 */
2857struct gendisk *dm_disk(struct mapped_device *md)
2858{
2859 return md->disk;
2860}
Sami Tolvanen65ff5b72015-03-18 15:52:14 +00002861EXPORT_SYMBOL_GPL(dm_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862
Milan Broz784aae72009-01-06 03:05:12 +00002863struct kobject *dm_kobject(struct mapped_device *md)
2864{
Mikulas Patocka2995fa72014-01-13 19:37:54 -05002865 return &md->kobj_holder.kobj;
Milan Broz784aae72009-01-06 03:05:12 +00002866}
2867
Milan Broz784aae72009-01-06 03:05:12 +00002868struct mapped_device *dm_get_from_kobject(struct kobject *kobj)
2869{
2870 struct mapped_device *md;
2871
Mikulas Patocka2995fa72014-01-13 19:37:54 -05002872 md = container_of(kobj, struct mapped_device, kobj_holder.kobj);
Milan Broz784aae72009-01-06 03:05:12 +00002873
Hou Taob9a41d22017-11-01 15:42:36 +08002874 spin_lock(&_minor_lock);
2875 if (test_bit(DMF_FREEING, &md->flags) || dm_deleting_md(md)) {
2876 md = NULL;
2877 goto out;
2878 }
Milan Broz784aae72009-01-06 03:05:12 +00002879 dm_get(md);
Hou Taob9a41d22017-11-01 15:42:36 +08002880out:
2881 spin_unlock(&_minor_lock);
2882
Milan Broz784aae72009-01-06 03:05:12 +00002883 return md;
2884}
2885
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +00002886int dm_suspended_md(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887{
2888 return test_bit(DMF_SUSPENDED, &md->flags);
2889}
2890
Mike Snitzerffcc3932014-10-28 18:34:52 -04002891int dm_suspended_internally_md(struct mapped_device *md)
2892{
2893 return test_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
2894}
2895
Mikulas Patocka2c140a22013-11-01 18:27:41 -04002896int dm_test_deferred_remove_flag(struct mapped_device *md)
2897{
2898 return test_bit(DMF_DEFERRED_REMOVE, &md->flags);
2899}
2900
Kiyoshi Ueda64dbce52009-12-10 23:52:27 +00002901int dm_suspended(struct dm_target *ti)
2902{
Kiyoshi Uedaecdb2e22010-03-06 02:29:52 +00002903 return dm_suspended_md(dm_table_get_md(ti->table));
Kiyoshi Ueda64dbce52009-12-10 23:52:27 +00002904}
2905EXPORT_SYMBOL_GPL(dm_suspended);
2906
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002907int dm_noflush_suspending(struct dm_target *ti)
2908{
Kiyoshi Uedaecdb2e22010-03-06 02:29:52 +00002909 return __noflush_suspending(dm_table_get_md(ti->table));
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002910}
2911EXPORT_SYMBOL_GPL(dm_noflush_suspending);
2912
Bart Van Assche7e0d5742017-04-27 10:11:23 -07002913struct dm_md_mempools *dm_alloc_md_mempools(struct mapped_device *md, enum dm_queue_mode type,
Mike Snitzer0776aa02017-12-08 14:40:52 -05002914 unsigned integrity, unsigned per_io_data_size,
2915 unsigned min_pool_size)
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002916{
Mike Snitzer115485e2016-02-22 12:16:21 -05002917 struct dm_md_mempools *pools = kzalloc_node(sizeof(*pools), GFP_KERNEL, md->numa_node_id);
Mike Snitzer78d8e582015-06-26 10:01:13 -04002918 unsigned int pool_size = 0;
Mike Snitzer64f52b02017-12-11 23:17:47 -05002919 unsigned int front_pad, io_front_pad;
Kent Overstreet6f1c8192018-05-20 18:25:53 -04002920 int ret;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002921
2922 if (!pools)
Mike Snitzer4e6e36c2015-06-26 09:42:57 -04002923 return NULL;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002924
Mike Snitzer78d8e582015-06-26 10:01:13 -04002925 switch (type) {
2926 case DM_TYPE_BIO_BASED:
Toshi Kani545ed202016-06-22 17:54:53 -06002927 case DM_TYPE_DAX_BIO_BASED:
Mike Snitzer22c11852017-12-04 21:07:37 -05002928 case DM_TYPE_NVME_BIO_BASED:
Mike Snitzer0776aa02017-12-08 14:40:52 -05002929 pool_size = max(dm_get_reserved_bio_based_ios(), min_pool_size);
Mike Snitzer30187e12016-01-31 13:28:26 -05002930 front_pad = roundup(per_io_data_size, __alignof__(struct dm_target_io)) + offsetof(struct dm_target_io, clone);
Mike Snitzer64f52b02017-12-11 23:17:47 -05002931 io_front_pad = roundup(front_pad, __alignof__(struct dm_io)) + offsetof(struct dm_io, tio);
Kent Overstreet6f1c8192018-05-20 18:25:53 -04002932 ret = bioset_init(&pools->io_bs, pool_size, io_front_pad, 0);
2933 if (ret)
Mike Snitzer64f52b02017-12-11 23:17:47 -05002934 goto out;
Kent Overstreet6f1c8192018-05-20 18:25:53 -04002935 if (integrity && bioset_integrity_create(&pools->io_bs, pool_size))
Christoph Hellwigeb8db832017-01-22 18:32:46 +01002936 goto out;
Mike Snitzer78d8e582015-06-26 10:01:13 -04002937 break;
2938 case DM_TYPE_REQUEST_BASED:
Mike Snitzer0776aa02017-12-08 14:40:52 -05002939 pool_size = max(dm_get_reserved_rq_based_ios(), min_pool_size);
Mike Snitzer78d8e582015-06-26 10:01:13 -04002940 front_pad = offsetof(struct dm_rq_clone_bio_info, clone);
Mike Snitzer591ddcf2016-01-31 12:05:42 -05002941 /* per_io_data_size is used for blk-mq pdu at queue allocation */
Mike Snitzer78d8e582015-06-26 10:01:13 -04002942 break;
2943 default:
2944 BUG();
2945 }
2946
Kent Overstreet6f1c8192018-05-20 18:25:53 -04002947 ret = bioset_init(&pools->bs, pool_size, front_pad, 0);
2948 if (ret)
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00002949 goto out;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002950
Kent Overstreet6f1c8192018-05-20 18:25:53 -04002951 if (integrity && bioset_integrity_create(&pools->bs, pool_size))
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00002952 goto out;
Martin K. Petersena91a2782011-03-17 11:11:05 +01002953
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002954 return pools;
Mike Snitzer78d8e582015-06-26 10:01:13 -04002955
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00002956out:
2957 dm_free_md_mempools(pools);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002958
Mike Snitzer4e6e36c2015-06-26 09:42:57 -04002959 return NULL;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002960}
2961
2962void dm_free_md_mempools(struct dm_md_mempools *pools)
2963{
2964 if (!pools)
2965 return;
2966
Kent Overstreet6f1c8192018-05-20 18:25:53 -04002967 bioset_exit(&pools->bs);
2968 bioset_exit(&pools->io_bs);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002969
2970 kfree(pools);
2971}
2972
Christoph Hellwig9c72bad2016-07-08 21:23:51 +09002973struct dm_pr {
2974 u64 old_key;
2975 u64 new_key;
2976 u32 flags;
2977 bool fail_early;
2978};
2979
2980static int dm_call_pr(struct block_device *bdev, iterate_devices_callout_fn fn,
2981 void *data)
2982{
2983 struct mapped_device *md = bdev->bd_disk->private_data;
2984 struct dm_table *table;
2985 struct dm_target *ti;
2986 int ret = -ENOTTY, srcu_idx;
2987
2988 table = dm_get_live_table(md, &srcu_idx);
2989 if (!table || !dm_table_get_size(table))
2990 goto out;
2991
2992 /* We only support devices that have a single target */
2993 if (dm_table_get_num_targets(table) != 1)
2994 goto out;
2995 ti = dm_table_get_target(table, 0);
2996
2997 ret = -EINVAL;
2998 if (!ti->type->iterate_devices)
2999 goto out;
3000
3001 ret = ti->type->iterate_devices(ti, fn, data);
3002out:
3003 dm_put_live_table(md, srcu_idx);
3004 return ret;
3005}
3006
3007/*
3008 * For register / unregister we need to manually call out to every path.
3009 */
3010static int __dm_pr_register(struct dm_target *ti, struct dm_dev *dev,
3011 sector_t start, sector_t len, void *data)
3012{
3013 struct dm_pr *pr = data;
3014 const struct pr_ops *ops = dev->bdev->bd_disk->fops->pr_ops;
3015
3016 if (!ops || !ops->pr_register)
3017 return -EOPNOTSUPP;
3018 return ops->pr_register(dev->bdev, pr->old_key, pr->new_key, pr->flags);
3019}
3020
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003021static int dm_pr_register(struct block_device *bdev, u64 old_key, u64 new_key,
Mike Snitzer956a4022016-02-18 16:13:51 -05003022 u32 flags)
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003023{
Christoph Hellwig9c72bad2016-07-08 21:23:51 +09003024 struct dm_pr pr = {
3025 .old_key = old_key,
3026 .new_key = new_key,
3027 .flags = flags,
3028 .fail_early = true,
3029 };
3030 int ret;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003031
Christoph Hellwig9c72bad2016-07-08 21:23:51 +09003032 ret = dm_call_pr(bdev, __dm_pr_register, &pr);
3033 if (ret && new_key) {
3034 /* unregister all paths if we failed to register any path */
3035 pr.old_key = new_key;
3036 pr.new_key = 0;
3037 pr.flags = 0;
3038 pr.fail_early = false;
3039 dm_call_pr(bdev, __dm_pr_register, &pr);
3040 }
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003041
Christoph Hellwig9c72bad2016-07-08 21:23:51 +09003042 return ret;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003043}
3044
3045static int dm_pr_reserve(struct block_device *bdev, u64 key, enum pr_type type,
Mike Snitzer956a4022016-02-18 16:13:51 -05003046 u32 flags)
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003047{
3048 struct mapped_device *md = bdev->bd_disk->private_data;
3049 const struct pr_ops *ops;
Mike Snitzer971888c2018-04-03 15:05:12 -04003050 int r, srcu_idx;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003051
Mike Snitzer5bd5e8d2018-04-03 16:54:10 -04003052 r = dm_prepare_ioctl(md, &srcu_idx, &bdev);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003053 if (r < 0)
Mike Snitzer971888c2018-04-03 15:05:12 -04003054 goto out;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003055
3056 ops = bdev->bd_disk->fops->pr_ops;
3057 if (ops && ops->pr_reserve)
3058 r = ops->pr_reserve(bdev, key, type, flags);
3059 else
3060 r = -EOPNOTSUPP;
Mike Snitzer971888c2018-04-03 15:05:12 -04003061out:
3062 dm_unprepare_ioctl(md, srcu_idx);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003063 return r;
3064}
3065
3066static int dm_pr_release(struct block_device *bdev, u64 key, enum pr_type type)
3067{
3068 struct mapped_device *md = bdev->bd_disk->private_data;
3069 const struct pr_ops *ops;
Mike Snitzer971888c2018-04-03 15:05:12 -04003070 int r, srcu_idx;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003071
Mike Snitzer5bd5e8d2018-04-03 16:54:10 -04003072 r = dm_prepare_ioctl(md, &srcu_idx, &bdev);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003073 if (r < 0)
Mike Snitzer971888c2018-04-03 15:05:12 -04003074 goto out;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003075
3076 ops = bdev->bd_disk->fops->pr_ops;
3077 if (ops && ops->pr_release)
3078 r = ops->pr_release(bdev, key, type);
3079 else
3080 r = -EOPNOTSUPP;
Mike Snitzer971888c2018-04-03 15:05:12 -04003081out:
3082 dm_unprepare_ioctl(md, srcu_idx);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003083 return r;
3084}
3085
3086static int dm_pr_preempt(struct block_device *bdev, u64 old_key, u64 new_key,
Mike Snitzer956a4022016-02-18 16:13:51 -05003087 enum pr_type type, bool abort)
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003088{
3089 struct mapped_device *md = bdev->bd_disk->private_data;
3090 const struct pr_ops *ops;
Mike Snitzer971888c2018-04-03 15:05:12 -04003091 int r, srcu_idx;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003092
Mike Snitzer5bd5e8d2018-04-03 16:54:10 -04003093 r = dm_prepare_ioctl(md, &srcu_idx, &bdev);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003094 if (r < 0)
Mike Snitzer971888c2018-04-03 15:05:12 -04003095 goto out;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003096
3097 ops = bdev->bd_disk->fops->pr_ops;
3098 if (ops && ops->pr_preempt)
3099 r = ops->pr_preempt(bdev, old_key, new_key, type, abort);
3100 else
3101 r = -EOPNOTSUPP;
Mike Snitzer971888c2018-04-03 15:05:12 -04003102out:
3103 dm_unprepare_ioctl(md, srcu_idx);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003104 return r;
3105}
3106
3107static int dm_pr_clear(struct block_device *bdev, u64 key)
3108{
3109 struct mapped_device *md = bdev->bd_disk->private_data;
3110 const struct pr_ops *ops;
Mike Snitzer971888c2018-04-03 15:05:12 -04003111 int r, srcu_idx;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003112
Mike Snitzer5bd5e8d2018-04-03 16:54:10 -04003113 r = dm_prepare_ioctl(md, &srcu_idx, &bdev);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003114 if (r < 0)
Mike Snitzer971888c2018-04-03 15:05:12 -04003115 goto out;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003116
3117 ops = bdev->bd_disk->fops->pr_ops;
3118 if (ops && ops->pr_clear)
3119 r = ops->pr_clear(bdev, key);
3120 else
3121 r = -EOPNOTSUPP;
Mike Snitzer971888c2018-04-03 15:05:12 -04003122out:
3123 dm_unprepare_ioctl(md, srcu_idx);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003124 return r;
3125}
3126
3127static const struct pr_ops dm_pr_ops = {
3128 .pr_register = dm_pr_register,
3129 .pr_reserve = dm_pr_reserve,
3130 .pr_release = dm_pr_release,
3131 .pr_preempt = dm_pr_preempt,
3132 .pr_clear = dm_pr_clear,
3133};
3134
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07003135static const struct block_device_operations dm_blk_dops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136 .open = dm_blk_open,
3137 .release = dm_blk_close,
Milan Brozaa129a22006-10-03 01:15:15 -07003138 .ioctl = dm_blk_ioctl,
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08003139 .getgeo = dm_blk_getgeo,
Christoph Hellwige76239a2018-10-12 19:08:49 +09003140 .report_zones = dm_blk_report_zones,
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003141 .pr_ops = &dm_pr_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142 .owner = THIS_MODULE
3143};
3144
Dan Williamsf26c5712017-04-12 12:35:44 -07003145static const struct dax_operations dm_dax_ops = {
3146 .direct_access = dm_dax_direct_access,
Dan Williams7e026c82017-05-29 12:57:56 -07003147 .copy_from_iter = dm_dax_copy_from_iter,
Dan Williamsb3a9a0c2018-05-02 06:46:33 -07003148 .copy_to_iter = dm_dax_copy_to_iter,
Dan Williamsf26c5712017-04-12 12:35:44 -07003149};
3150
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151/*
3152 * module hooks
3153 */
3154module_init(dm_init);
3155module_exit(dm_exit);
3156
3157module_param(major, uint, 0);
3158MODULE_PARM_DESC(major, "The major number of the device mapper");
Mike Snitzerf4790822013-09-12 18:06:12 -04003159
Mike Snitzere8603132013-09-12 18:06:12 -04003160module_param(reserved_bio_based_ios, uint, S_IRUGO | S_IWUSR);
3161MODULE_PARM_DESC(reserved_bio_based_ios, "Reserved IOs in bio-based mempools");
3162
Mike Snitzer115485e2016-02-22 12:16:21 -05003163module_param(dm_numa_node, int, S_IRUGO | S_IWUSR);
3164MODULE_PARM_DESC(dm_numa_node, "NUMA node for DM device memory allocations");
3165
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166MODULE_DESCRIPTION(DM_NAME " driver");
3167MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
3168MODULE_LICENSE("GPL");