blob: b0dd7027848b7de9f701469c6eb29b5d9c96e1df [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
Mike Snitzer971888c2018-04-03 15:05:12 -0400461static int dm_prepare_ioctl(struct mapped_device *md, int *srcu_idx,
Mike Snitzer5bd5e8d2018-04-03 16:54:10 -0400462 struct block_device **bdev)
Mike Snitzer971888c2018-04-03 15:05:12 -0400463 __acquires(md->io_barrier)
Milan Brozaa129a22006-10-03 01:15:15 -0700464{
Mike Snitzer66482022016-02-18 15:44:39 -0500465 struct dm_target *tgt;
Hannes Reinecke6c182cd2013-07-10 23:41:15 +0100466 struct dm_table *map;
Mike Snitzer971888c2018-04-03 15:05:12 -0400467 int r;
Milan Brozaa129a22006-10-03 01:15:15 -0700468
Hannes Reinecke6c182cd2013-07-10 23:41:15 +0100469retry:
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200470 r = -ENOTTY;
Mike Snitzer971888c2018-04-03 15:05:12 -0400471 map = dm_get_live_table(md, srcu_idx);
Milan Brozaa129a22006-10-03 01:15:15 -0700472 if (!map || !dm_table_get_size(map))
Mike Snitzer971888c2018-04-03 15:05:12 -0400473 return r;
Milan Brozaa129a22006-10-03 01:15:15 -0700474
475 /* We only support devices that have a single target */
476 if (dm_table_get_num_targets(map) != 1)
Mike Snitzer971888c2018-04-03 15:05:12 -0400477 return r;
Milan Brozaa129a22006-10-03 01:15:15 -0700478
Mike Snitzer66482022016-02-18 15:44:39 -0500479 tgt = dm_table_get_target(map, 0);
480 if (!tgt->type->prepare_ioctl)
Mike Snitzer971888c2018-04-03 15:05:12 -0400481 return r;
Milan Brozaa129a22006-10-03 01:15:15 -0700482
Mike Snitzer971888c2018-04-03 15:05:12 -0400483 if (dm_suspended_md(md))
484 return -EAGAIN;
Milan Brozaa129a22006-10-03 01:15:15 -0700485
Mike Snitzer5bd5e8d2018-04-03 16:54:10 -0400486 r = tgt->type->prepare_ioctl(tgt, bdev);
Junichi Nomura5bbbfdf2015-11-17 09:39:26 +0000487 if (r == -ENOTCONN && !fatal_signal_pending(current)) {
Mike Snitzer971888c2018-04-03 15:05:12 -0400488 dm_put_live_table(md, *srcu_idx);
Hannes Reinecke6c182cd2013-07-10 23:41:15 +0100489 msleep(10);
490 goto retry;
491 }
Mike Snitzer971888c2018-04-03 15:05:12 -0400492
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200493 return r;
494}
Hannes Reinecke6c182cd2013-07-10 23:41:15 +0100495
Mike Snitzer971888c2018-04-03 15:05:12 -0400496static void dm_unprepare_ioctl(struct mapped_device *md, int srcu_idx)
497 __releases(md->io_barrier)
498{
499 dm_put_live_table(md, srcu_idx);
500}
501
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200502static int dm_blk_ioctl(struct block_device *bdev, fmode_t mode,
503 unsigned int cmd, unsigned long arg)
504{
505 struct mapped_device *md = bdev->bd_disk->private_data;
Mike Snitzer971888c2018-04-03 15:05:12 -0400506 int r, srcu_idx;
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200507
Mike Snitzer5bd5e8d2018-04-03 16:54:10 -0400508 r = dm_prepare_ioctl(md, &srcu_idx, &bdev);
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200509 if (r < 0)
Mike Snitzer971888c2018-04-03 15:05:12 -0400510 goto out;
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200511
512 if (r > 0) {
513 /*
Christoph Hellwige980f622017-02-04 10:45:03 +0100514 * Target determined this ioctl is being issued against a
515 * subset of the parent bdev; require extra privileges.
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200516 */
Christoph Hellwige980f622017-02-04 10:45:03 +0100517 if (!capable(CAP_SYS_RAWIO)) {
518 DMWARN_LIMIT(
519 "%s: sending ioctl %x to DM device without required privilege.",
520 current->comm, cmd);
521 r = -ENOIOCTLCMD;
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200522 goto out;
Christoph Hellwige980f622017-02-04 10:45:03 +0100523 }
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200524 }
525
Mike Snitzer66482022016-02-18 15:44:39 -0500526 r = __blkdev_driver_ioctl(bdev, mode, cmd, arg);
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200527out:
Mike Snitzer971888c2018-04-03 15:05:12 -0400528 dm_unprepare_ioctl(md, srcu_idx);
Milan Brozaa129a22006-10-03 01:15:15 -0700529 return r;
530}
531
Mike Snitzer978e51b2017-12-09 15:16:42 -0500532static void start_io_acct(struct dm_io *io);
533
534static struct dm_io *alloc_io(struct mapped_device *md, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535{
Mike Snitzer64f52b02017-12-11 23:17:47 -0500536 struct dm_io *io;
537 struct dm_target_io *tio;
538 struct bio *clone;
539
Kent Overstreet6f1c8192018-05-20 18:25:53 -0400540 clone = bio_alloc_bioset(GFP_NOIO, 0, &md->io_bs);
Mike Snitzer64f52b02017-12-11 23:17:47 -0500541 if (!clone)
542 return NULL;
543
544 tio = container_of(clone, struct dm_target_io, clone);
545 tio->inside_dm_io = true;
546 tio->io = NULL;
547
548 io = container_of(tio, struct dm_io, tio);
549 io->magic = DM_IO_MAGIC;
Mike Snitzer978e51b2017-12-09 15:16:42 -0500550 io->status = 0;
551 atomic_set(&io->io_count, 1);
552 io->orig_bio = bio;
553 io->md = md;
554 spin_lock_init(&io->endio_lock);
555
556 start_io_acct(io);
Mike Snitzer64f52b02017-12-11 23:17:47 -0500557
558 return io;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559}
560
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100561static void free_io(struct mapped_device *md, struct dm_io *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562{
Mike Snitzer64f52b02017-12-11 23:17:47 -0500563 bio_put(&io->tio.clone);
564}
565
566static struct dm_target_io *alloc_tio(struct clone_info *ci, struct dm_target *ti,
567 unsigned target_bio_nr, gfp_t gfp_mask)
568{
569 struct dm_target_io *tio;
570
571 if (!ci->io->tio.io) {
572 /* the dm_target_io embedded in ci->io is available */
573 tio = &ci->io->tio;
574 } else {
Kent Overstreet6f1c8192018-05-20 18:25:53 -0400575 struct bio *clone = bio_alloc_bioset(gfp_mask, 0, &ci->io->md->bs);
Mike Snitzer64f52b02017-12-11 23:17:47 -0500576 if (!clone)
577 return NULL;
578
579 tio = container_of(clone, struct dm_target_io, clone);
580 tio->inside_dm_io = false;
581 }
582
583 tio->magic = DM_TIO_MAGIC;
584 tio->io = ci->io;
585 tio->ti = ti;
586 tio->target_bio_nr = target_bio_nr;
587
588 return tio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589}
590
Mike Snitzercfae7522016-04-11 12:05:38 -0400591static void free_tio(struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592{
Mike Snitzer64f52b02017-12-11 23:17:47 -0500593 if (tio->inside_dm_io)
594 return;
Mikulas Patockadba14162012-10-12 21:02:15 +0100595 bio_put(&tio->clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596}
597
Mike Snitzer4cc96132016-05-12 16:28:10 -0400598int md_in_flight(struct mapped_device *md)
Kiyoshi Ueda90abb8c2009-12-10 23:52:13 +0000599{
600 return atomic_read(&md->pending[READ]) +
601 atomic_read(&md->pending[WRITE]);
602}
603
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800604static void start_io_acct(struct dm_io *io)
605{
606 struct mapped_device *md = io->md;
Mike Snitzer745dc572017-12-11 20:51:50 -0500607 struct bio *bio = io->orig_bio;
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400608 int rw = bio_data_dir(bio);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800609
610 io->start_time = jiffies;
611
Mike Snitzerf3986372017-12-17 11:56:48 -0500612 generic_start_io_acct(md->queue, rw, bio_sectors(bio), &dm_disk(md)->part0);
613
Shaohua Li1e9bb882011-03-22 08:35:35 +0100614 atomic_set(&dm_disk(md)->part0.in_flight[rw],
Mike Snitzerf3986372017-12-17 11:56:48 -0500615 atomic_inc_return(&md->pending[rw]));
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400616
617 if (unlikely(dm_stats_used(&md->stats)))
Mike Christie528ec5a2016-06-05 14:32:03 -0500618 dm_stats_account_io(&md->stats, bio_data_dir(bio),
619 bio->bi_iter.bi_sector, bio_sectors(bio),
620 false, 0, &io->stats_aux);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800621}
622
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000623static void end_io_acct(struct dm_io *io)
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800624{
625 struct mapped_device *md = io->md;
Mike Snitzer745dc572017-12-11 20:51:50 -0500626 struct bio *bio = io->orig_bio;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800627 unsigned long duration = jiffies - io->start_time;
Gu Zheng18c0b222014-11-24 11:05:26 +0800628 int pending;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800629 int rw = bio_data_dir(bio);
630
Jens Axboed62e26b2017-06-30 21:55:08 -0600631 generic_end_io_acct(md->queue, rw, &dm_disk(md)->part0, io->start_time);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800632
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400633 if (unlikely(dm_stats_used(&md->stats)))
Mike Christie528ec5a2016-06-05 14:32:03 -0500634 dm_stats_account_io(&md->stats, bio_data_dir(bio),
635 bio->bi_iter.bi_sector, bio_sectors(bio),
636 true, duration, &io->stats_aux);
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400637
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100638 /*
639 * After this is decremented the bio must not be touched if it is
Tejun Heod87f4c12010-09-03 11:56:19 +0200640 * a flush.
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100641 */
Shaohua Li1e9bb882011-03-22 08:35:35 +0100642 pending = atomic_dec_return(&md->pending[rw]);
643 atomic_set(&dm_disk(md)->part0.in_flight[rw], pending);
Nikanth Karthikesan316d3152009-10-06 20:16:55 +0200644 pending += atomic_read(&md->pending[rw^0x1]);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800645
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000646 /* nudge anyone waiting on suspend queue */
647 if (!pending)
648 wake_up(&md->wait);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800649}
650
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651/*
652 * Add the bio to the list of deferred io.
653 */
Mikulas Patocka92c63902009-04-09 00:27:15 +0100654static void queue_io(struct mapped_device *md, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655{
Kiyoshi Ueda054474202010-09-08 18:07:01 +0200656 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Kiyoshi Ueda054474202010-09-08 18:07:01 +0200658 spin_lock_irqsave(&md->deferred_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 bio_list_add(&md->deferred, bio);
Kiyoshi Ueda054474202010-09-08 18:07:01 +0200660 spin_unlock_irqrestore(&md->deferred_lock, flags);
Tejun Heo6a8736d2010-09-08 18:07:00 +0200661 queue_work(md->wq, &md->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662}
663
664/*
665 * Everyone (including functions in this file), should use this
666 * function to access the md->map field, and make sure they call
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100667 * dm_put_live_table() when finished.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 */
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100669struct dm_table *dm_get_live_table(struct mapped_device *md, int *srcu_idx) __acquires(md->io_barrier)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670{
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100671 *srcu_idx = srcu_read_lock(&md->io_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100673 return srcu_dereference(md->map, &md->io_barrier);
674}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100676void dm_put_live_table(struct mapped_device *md, int srcu_idx) __releases(md->io_barrier)
677{
678 srcu_read_unlock(&md->io_barrier, srcu_idx);
679}
680
681void dm_sync_table(struct mapped_device *md)
682{
683 synchronize_srcu(&md->io_barrier);
684 synchronize_rcu_expedited();
685}
686
687/*
688 * A fast alternative to dm_get_live_table/dm_put_live_table.
689 * The caller must not block between these two functions.
690 */
691static struct dm_table *dm_get_live_table_fast(struct mapped_device *md) __acquires(RCU)
692{
693 rcu_read_lock();
694 return rcu_dereference(md->map);
695}
696
697static void dm_put_live_table_fast(struct mapped_device *md) __releases(RCU)
698{
699 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700}
701
Mike Snitzer971888c2018-04-03 15:05:12 -0400702static char *_dm_claim_ptr = "I belong to device-mapper";
703
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800704/*
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500705 * Open a table device so we can use it as a map destination.
706 */
707static int open_table_device(struct table_device *td, dev_t dev,
708 struct mapped_device *md)
709{
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500710 struct block_device *bdev;
711
712 int r;
713
714 BUG_ON(td->dm_dev.bdev);
715
Mike Snitzer519049a2018-02-22 13:31:20 -0500716 bdev = blkdev_get_by_dev(dev, td->dm_dev.mode | FMODE_EXCL, _dm_claim_ptr);
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500717 if (IS_ERR(bdev))
718 return PTR_ERR(bdev);
719
720 r = bd_link_disk_holder(bdev, dm_disk(md));
721 if (r) {
722 blkdev_put(bdev, td->dm_dev.mode | FMODE_EXCL);
723 return r;
724 }
725
726 td->dm_dev.bdev = bdev;
Dan Williams817bf402017-04-12 13:37:44 -0700727 td->dm_dev.dax_dev = dax_get_by_host(bdev->bd_disk->disk_name);
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500728 return 0;
729}
730
731/*
732 * Close a table device that we've been using.
733 */
734static void close_table_device(struct table_device *td, struct mapped_device *md)
735{
736 if (!td->dm_dev.bdev)
737 return;
738
739 bd_unlink_disk_holder(td->dm_dev.bdev, dm_disk(md));
740 blkdev_put(td->dm_dev.bdev, td->dm_dev.mode | FMODE_EXCL);
Dan Williams817bf402017-04-12 13:37:44 -0700741 put_dax(td->dm_dev.dax_dev);
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500742 td->dm_dev.bdev = NULL;
Dan Williams817bf402017-04-12 13:37:44 -0700743 td->dm_dev.dax_dev = NULL;
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500744}
745
746static struct table_device *find_table_device(struct list_head *l, dev_t dev,
747 fmode_t mode) {
748 struct table_device *td;
749
750 list_for_each_entry(td, l, list)
751 if (td->dm_dev.bdev->bd_dev == dev && td->dm_dev.mode == mode)
752 return td;
753
754 return NULL;
755}
756
757int dm_get_table_device(struct mapped_device *md, dev_t dev, fmode_t mode,
758 struct dm_dev **result) {
759 int r;
760 struct table_device *td;
761
762 mutex_lock(&md->table_devices_lock);
763 td = find_table_device(&md->table_devices, dev, mode);
764 if (!td) {
Mike Snitzer115485e2016-02-22 12:16:21 -0500765 td = kmalloc_node(sizeof(*td), GFP_KERNEL, md->numa_node_id);
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500766 if (!td) {
767 mutex_unlock(&md->table_devices_lock);
768 return -ENOMEM;
769 }
770
771 td->dm_dev.mode = mode;
772 td->dm_dev.bdev = NULL;
773
774 if ((r = open_table_device(td, dev, md))) {
775 mutex_unlock(&md->table_devices_lock);
776 kfree(td);
777 return r;
778 }
779
780 format_dev_t(td->dm_dev.name, dev);
781
Elena Reshetovab0b4d7c2017-10-20 10:37:39 +0300782 refcount_set(&td->count, 1);
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500783 list_add(&td->list, &md->table_devices);
Elena Reshetovab0b4d7c2017-10-20 10:37:39 +0300784 } else {
785 refcount_inc(&td->count);
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500786 }
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500787 mutex_unlock(&md->table_devices_lock);
788
789 *result = &td->dm_dev;
790 return 0;
791}
792EXPORT_SYMBOL_GPL(dm_get_table_device);
793
794void dm_put_table_device(struct mapped_device *md, struct dm_dev *d)
795{
796 struct table_device *td = container_of(d, struct table_device, dm_dev);
797
798 mutex_lock(&md->table_devices_lock);
Elena Reshetovab0b4d7c2017-10-20 10:37:39 +0300799 if (refcount_dec_and_test(&td->count)) {
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500800 close_table_device(td, md);
801 list_del(&td->list);
802 kfree(td);
803 }
804 mutex_unlock(&md->table_devices_lock);
805}
806EXPORT_SYMBOL(dm_put_table_device);
807
808static void free_table_devices(struct list_head *devices)
809{
810 struct list_head *tmp, *next;
811
812 list_for_each_safe(tmp, next, devices) {
813 struct table_device *td = list_entry(tmp, struct table_device, list);
814
815 DMWARN("dm_destroy: %s still exists with %d references",
Elena Reshetovab0b4d7c2017-10-20 10:37:39 +0300816 td->dm_dev.name, refcount_read(&td->count));
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500817 kfree(td);
818 }
819}
820
821/*
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800822 * Get the geometry associated with a dm device
823 */
824int dm_get_geometry(struct mapped_device *md, struct hd_geometry *geo)
825{
826 *geo = md->geometry;
827
828 return 0;
829}
830
831/*
832 * Set the geometry of a device.
833 */
834int dm_set_geometry(struct mapped_device *md, struct hd_geometry *geo)
835{
836 sector_t sz = (sector_t)geo->cylinders * geo->heads * geo->sectors;
837
838 if (geo->start > sz) {
839 DMWARN("Start sector is beyond the geometry limits.");
840 return -EINVAL;
841 }
842
843 md->geometry = *geo;
844
845 return 0;
846}
847
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800848static int __noflush_suspending(struct mapped_device *md)
849{
850 return test_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
851}
852
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853/*
854 * Decrements the number of outstanding ios that a bio has been
855 * cloned into, completing the original io if necc.
856 */
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200857static void dec_pending(struct dm_io *io, blk_status_t error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858{
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800859 unsigned long flags;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200860 blk_status_t io_error;
Milan Brozb35f8ca2009-03-16 17:44:36 +0000861 struct bio *bio;
862 struct mapped_device *md = io->md;
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800863
864 /* Push-back supersedes any I/O errors */
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +0100865 if (unlikely(error)) {
866 spin_lock_irqsave(&io->endio_lock, flags);
Mike Snitzer745dc572017-12-11 20:51:50 -0500867 if (!(io->status == BLK_STS_DM_REQUEUE && __noflush_suspending(md)))
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200868 io->status = error;
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +0100869 spin_unlock_irqrestore(&io->endio_lock, flags);
870 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
872 if (atomic_dec_and_test(&io->io_count)) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200873 if (io->status == BLK_STS_DM_REQUEUE) {
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800874 /*
875 * Target requested pushing back the I/O.
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800876 */
Mikulas Patocka022c2612009-04-02 19:55:39 +0100877 spin_lock_irqsave(&md->deferred_lock, flags);
Tejun Heo6a8736d2010-09-08 18:07:00 +0200878 if (__noflush_suspending(md))
Mike Snitzer745dc572017-12-11 20:51:50 -0500879 /* NOTE early return due to BLK_STS_DM_REQUEUE below */
880 bio_list_add_head(&md->deferred, io->orig_bio);
Tejun Heo6a8736d2010-09-08 18:07:00 +0200881 else
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800882 /* noflush suspend was interrupted. */
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200883 io->status = BLK_STS_IOERR;
Mikulas Patocka022c2612009-04-02 19:55:39 +0100884 spin_unlock_irqrestore(&md->deferred_lock, flags);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800885 }
886
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200887 io_error = io->status;
Mike Snitzer745dc572017-12-11 20:51:50 -0500888 bio = io->orig_bio;
Tejun Heo6a8736d2010-09-08 18:07:00 +0200889 end_io_acct(io);
890 free_io(md, io);
Jens Axboe2056a782006-03-23 20:00:26 +0100891
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200892 if (io_error == BLK_STS_DM_REQUEUE)
Tejun Heo6a8736d2010-09-08 18:07:00 +0200893 return;
894
Jens Axboe1eff9d32016-08-05 15:35:16 -0600895 if ((bio->bi_opf & REQ_PREFLUSH) && bio->bi_iter.bi_size) {
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100896 /*
Tejun Heo6a8736d2010-09-08 18:07:00 +0200897 * Preflush done for flush with data, reissue
Mike Christie28a8f0d2016-06-05 14:32:25 -0500898 * without REQ_PREFLUSH.
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100899 */
Jens Axboe1eff9d32016-08-05 15:35:16 -0600900 bio->bi_opf &= ~REQ_PREFLUSH;
Tejun Heo6a8736d2010-09-08 18:07:00 +0200901 queue_io(md, bio);
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100902 } else {
Mike Snitzerb372d362010-09-08 18:07:01 +0200903 /* done with normal IO or empty flush */
NeilBrown8dd601f2018-02-15 20:00:15 +1100904 if (io_error)
905 bio->bi_status = io_error;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200906 bio_endio(bio);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800907 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 }
909}
910
Mike Snitzer4cc96132016-05-12 16:28:10 -0400911void disable_write_same(struct mapped_device *md)
Mike Snitzer7eee4ae2014-06-02 15:50:06 -0400912{
913 struct queue_limits *limits = dm_get_queue_limits(md);
914
915 /* device doesn't really support WRITE SAME, disable it */
916 limits->max_write_same_sectors = 0;
917}
918
Christoph Hellwigac62d622017-04-05 19:21:05 +0200919void disable_write_zeroes(struct mapped_device *md)
920{
921 struct queue_limits *limits = dm_get_queue_limits(md);
922
923 /* device doesn't really support WRITE ZEROES, disable it */
924 limits->max_write_zeroes_sectors = 0;
925}
926
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200927static void clone_endio(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928{
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200929 blk_status_t error = bio->bi_status;
Mikulas Patockabfc6d412014-03-04 18:24:49 -0500930 struct dm_target_io *tio = container_of(bio, struct dm_target_io, clone);
Milan Brozb35f8ca2009-03-16 17:44:36 +0000931 struct dm_io *io = tio->io;
Stefan Bader9faf4002006-10-03 01:15:41 -0700932 struct mapped_device *md = tio->io->md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 dm_endio_fn endio = tio->ti->type->end_io;
934
Mike Snitzer978e51b2017-12-09 15:16:42 -0500935 if (unlikely(error == BLK_STS_TARGET) && md->type != DM_TYPE_NVME_BIO_BASED) {
Christoph Hellwigac62d622017-04-05 19:21:05 +0200936 if (bio_op(bio) == REQ_OP_WRITE_SAME &&
Christoph Hellwig74d46992017-08-23 19:10:32 +0200937 !bio->bi_disk->queue->limits.max_write_same_sectors)
Christoph Hellwigac62d622017-04-05 19:21:05 +0200938 disable_write_same(md);
939 if (bio_op(bio) == REQ_OP_WRITE_ZEROES &&
Christoph Hellwig74d46992017-08-23 19:10:32 +0200940 !bio->bi_disk->queue->limits.max_write_zeroes_sectors)
Christoph Hellwigac62d622017-04-05 19:21:05 +0200941 disable_write_zeroes(md);
942 }
Mike Snitzer7eee4ae2014-06-02 15:50:06 -0400943
Christoph Hellwig1be56902017-06-03 09:38:03 +0200944 if (endio) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200945 int r = endio(tio->ti, bio, &error);
Christoph Hellwig1be56902017-06-03 09:38:03 +0200946 switch (r) {
947 case DM_ENDIO_REQUEUE:
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200948 error = BLK_STS_DM_REQUEUE;
Christoph Hellwig1be56902017-06-03 09:38:03 +0200949 /*FALLTHRU*/
950 case DM_ENDIO_DONE:
951 break;
952 case DM_ENDIO_INCOMPLETE:
953 /* The target will handle the io */
954 return;
955 default:
956 DMWARN("unimplemented target endio return value: %d", r);
957 BUG();
958 }
959 }
960
Mike Snitzercfae7522016-04-11 12:05:38 -0400961 free_tio(tio);
Milan Brozb35f8ca2009-03-16 17:44:36 +0000962 dec_pending(io, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963}
964
Mike Snitzer78d8e582015-06-26 10:01:13 -0400965/*
Mike Snitzer56a67df2010-08-12 04:14:10 +0100966 * Return maximum size of I/O possible at the supplied sector up to the current
967 * target boundary.
968 */
969static sector_t max_io_len_target_boundary(sector_t sector, struct dm_target *ti)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970{
Mike Snitzer56a67df2010-08-12 04:14:10 +0100971 sector_t target_offset = dm_target_offset(ti, sector);
972
973 return ti->len - target_offset;
974}
975
976static sector_t max_io_len(sector_t sector, struct dm_target *ti)
977{
978 sector_t len = max_io_len_target_boundary(sector, ti);
Mike Snitzer542f9032012-07-27 15:08:00 +0100979 sector_t offset, max_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
981 /*
Mike Snitzer542f9032012-07-27 15:08:00 +0100982 * Does the target need to split even further?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 */
Mike Snitzer542f9032012-07-27 15:08:00 +0100984 if (ti->max_io_len) {
985 offset = dm_target_offset(ti, sector);
986 if (unlikely(ti->max_io_len & (ti->max_io_len - 1)))
987 max_len = sector_div(offset, ti->max_io_len);
988 else
989 max_len = offset & (ti->max_io_len - 1);
990 max_len = ti->max_io_len - max_len;
991
992 if (len > max_len)
993 len = max_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 }
995
996 return len;
997}
998
Mike Snitzer542f9032012-07-27 15:08:00 +0100999int dm_set_target_max_io_len(struct dm_target *ti, sector_t len)
1000{
1001 if (len > UINT_MAX) {
1002 DMERR("Specified maximum size of target IO (%llu) exceeds limit (%u)",
1003 (unsigned long long)len, UINT_MAX);
1004 ti->error = "Maximum size of target IO is too large";
1005 return -EINVAL;
1006 }
1007
Ming Lei8f50e352017-12-18 20:22:08 +08001008 /*
1009 * BIO based queue uses its own splitting. When multipage bvecs
1010 * is switched on, size of the incoming bio may be too big to
1011 * be handled in some targets, such as crypt.
1012 *
1013 * When these targets are ready for the big bio, we can remove
1014 * the limit.
1015 */
1016 ti->max_io_len = min_t(uint32_t, len, BIO_MAX_PAGES * PAGE_SIZE);
Mike Snitzer542f9032012-07-27 15:08:00 +01001017
1018 return 0;
1019}
1020EXPORT_SYMBOL_GPL(dm_set_target_max_io_len);
1021
Dan Williamsf26c5712017-04-12 12:35:44 -07001022static struct dm_target *dm_dax_get_live_target(struct mapped_device *md,
Mike Snitzer3d97c822018-04-30 16:06:28 -04001023 sector_t sector, int *srcu_idx)
1024 __acquires(md->io_barrier)
Toshi Kani545ed202016-06-22 17:54:53 -06001025{
Toshi Kani545ed202016-06-22 17:54:53 -06001026 struct dm_table *map;
1027 struct dm_target *ti;
Toshi Kani545ed202016-06-22 17:54:53 -06001028
Dan Williamsf26c5712017-04-12 12:35:44 -07001029 map = dm_get_live_table(md, srcu_idx);
Toshi Kani545ed202016-06-22 17:54:53 -06001030 if (!map)
Dan Williamsf26c5712017-04-12 12:35:44 -07001031 return NULL;
Toshi Kani545ed202016-06-22 17:54:53 -06001032
1033 ti = dm_table_find_target(map, sector);
1034 if (!dm_target_is_valid(ti))
Dan Williamsf26c5712017-04-12 12:35:44 -07001035 return NULL;
1036
1037 return ti;
1038}
1039
1040static long dm_dax_direct_access(struct dax_device *dax_dev, pgoff_t pgoff,
Mike Snitzer3d97c822018-04-30 16:06:28 -04001041 long nr_pages, void **kaddr, pfn_t *pfn)
Dan Williamsf26c5712017-04-12 12:35:44 -07001042{
1043 struct mapped_device *md = dax_get_private(dax_dev);
1044 sector_t sector = pgoff * PAGE_SECTORS;
1045 struct dm_target *ti;
1046 long len, ret = -EIO;
1047 int srcu_idx;
1048
1049 ti = dm_dax_get_live_target(md, sector, &srcu_idx);
1050
1051 if (!ti)
Toshi Kani545ed202016-06-22 17:54:53 -06001052 goto out;
Dan Williamsf26c5712017-04-12 12:35:44 -07001053 if (!ti->type->direct_access)
1054 goto out;
1055 len = max_io_len(sector, ti) / PAGE_SECTORS;
1056 if (len < 1)
1057 goto out;
1058 nr_pages = min(len, nr_pages);
Ross Zwislerdbc62652018-06-26 16:30:41 -06001059 ret = ti->type->direct_access(ti, pgoff, nr_pages, kaddr, pfn);
Dan Williams817bf402017-04-12 13:37:44 -07001060
Dan Williamsf26c5712017-04-12 12:35:44 -07001061 out:
Toshi Kani545ed202016-06-22 17:54:53 -06001062 dm_put_live_table(md, srcu_idx);
Dan Williamsf26c5712017-04-12 12:35:44 -07001063
1064 return ret;
Toshi Kani545ed202016-06-22 17:54:53 -06001065}
1066
Dan Williams7e026c82017-05-29 12:57:56 -07001067static size_t dm_dax_copy_from_iter(struct dax_device *dax_dev, pgoff_t pgoff,
Mike Snitzer3d97c822018-04-30 16:06:28 -04001068 void *addr, size_t bytes, struct iov_iter *i)
Dan Williams7e026c82017-05-29 12:57:56 -07001069{
1070 struct mapped_device *md = dax_get_private(dax_dev);
1071 sector_t sector = pgoff * PAGE_SECTORS;
1072 struct dm_target *ti;
1073 long ret = 0;
1074 int srcu_idx;
1075
1076 ti = dm_dax_get_live_target(md, sector, &srcu_idx);
1077
1078 if (!ti)
1079 goto out;
1080 if (!ti->type->dax_copy_from_iter) {
1081 ret = copy_from_iter(addr, bytes, i);
1082 goto out;
1083 }
1084 ret = ti->type->dax_copy_from_iter(ti, pgoff, addr, bytes, i);
1085 out:
1086 dm_put_live_table(md, srcu_idx);
1087
1088 return ret;
1089}
1090
Dan Williamsb3a9a0c2018-05-02 06:46:33 -07001091static size_t dm_dax_copy_to_iter(struct dax_device *dax_dev, pgoff_t pgoff,
1092 void *addr, size_t bytes, struct iov_iter *i)
1093{
1094 struct mapped_device *md = dax_get_private(dax_dev);
1095 sector_t sector = pgoff * PAGE_SECTORS;
1096 struct dm_target *ti;
1097 long ret = 0;
1098 int srcu_idx;
1099
1100 ti = dm_dax_get_live_target(md, sector, &srcu_idx);
1101
1102 if (!ti)
1103 goto out;
1104 if (!ti->type->dax_copy_to_iter) {
1105 ret = copy_to_iter(addr, bytes, i);
1106 goto out;
1107 }
1108 ret = ti->type->dax_copy_to_iter(ti, pgoff, addr, bytes, i);
1109 out:
1110 dm_put_live_table(md, srcu_idx);
1111
1112 return ret;
1113}
1114
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001115/*
1116 * A target may call dm_accept_partial_bio only from the map routine. It is
NeilBrownc06b3e52017-11-21 08:44:35 -05001117 * allowed for all bio types except REQ_PREFLUSH and REQ_OP_ZONE_RESET.
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001118 *
1119 * dm_accept_partial_bio informs the dm that the target only wants to process
1120 * additional n_sectors sectors of the bio and the rest of the data should be
1121 * sent in a next bio.
1122 *
1123 * A diagram that explains the arithmetics:
1124 * +--------------------+---------------+-------+
1125 * | 1 | 2 | 3 |
1126 * +--------------------+---------------+-------+
1127 *
1128 * <-------------- *tio->len_ptr --------------->
1129 * <------- bi_size ------->
1130 * <-- n_sectors -->
1131 *
1132 * Region 1 was already iterated over with bio_advance or similar function.
1133 * (it may be empty if the target doesn't use bio_advance)
1134 * Region 2 is the remaining bio size that the target wants to process.
1135 * (it may be empty if region 1 is non-empty, although there is no reason
1136 * to make it empty)
1137 * The target requires that region 3 is to be sent in the next bio.
1138 *
1139 * If the target wants to receive multiple copies of the bio (via num_*bios, etc),
1140 * the partially processed part (the sum of regions 1+2) must be the same for all
1141 * copies of the bio.
1142 */
1143void dm_accept_partial_bio(struct bio *bio, unsigned n_sectors)
1144{
1145 struct dm_target_io *tio = container_of(bio, struct dm_target_io, clone);
1146 unsigned bi_size = bio->bi_iter.bi_size >> SECTOR_SHIFT;
Jens Axboe1eff9d32016-08-05 15:35:16 -06001147 BUG_ON(bio->bi_opf & REQ_PREFLUSH);
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001148 BUG_ON(bi_size > *tio->len_ptr);
1149 BUG_ON(n_sectors > bi_size);
1150 *tio->len_ptr -= bi_size - n_sectors;
1151 bio->bi_iter.bi_size = n_sectors << SECTOR_SHIFT;
1152}
1153EXPORT_SYMBOL_GPL(dm_accept_partial_bio);
1154
Mikulas Patockad67a5f42017-02-15 11:26:10 -05001155/*
Damien Le Moal10999302017-05-08 16:40:48 -07001156 * The zone descriptors obtained with a zone report indicate
1157 * zone positions within the target device. The zone descriptors
1158 * must be remapped to match their position within the dm device.
1159 * A target may call dm_remap_zone_report after completion of a
1160 * REQ_OP_ZONE_REPORT bio to remap the zone descriptors obtained
1161 * from the target device mapping to the dm device.
1162 */
1163void dm_remap_zone_report(struct dm_target *ti, struct bio *bio, sector_t start)
1164{
1165#ifdef CONFIG_BLK_DEV_ZONED
1166 struct dm_target_io *tio = container_of(bio, struct dm_target_io, clone);
Mike Snitzer745dc572017-12-11 20:51:50 -05001167 struct bio *report_bio = tio->io->orig_bio;
Damien Le Moal10999302017-05-08 16:40:48 -07001168 struct blk_zone_report_hdr *hdr = NULL;
1169 struct blk_zone *zone;
1170 unsigned int nr_rep = 0;
1171 unsigned int ofst;
1172 struct bio_vec bvec;
1173 struct bvec_iter iter;
1174 void *addr;
1175
1176 if (bio->bi_status)
1177 return;
1178
1179 /*
1180 * Remap the start sector of the reported zones. For sequential zones,
1181 * also remap the write pointer position.
1182 */
1183 bio_for_each_segment(bvec, report_bio, iter) {
1184 addr = kmap_atomic(bvec.bv_page);
1185
1186 /* Remember the report header in the first page */
1187 if (!hdr) {
1188 hdr = addr;
1189 ofst = sizeof(struct blk_zone_report_hdr);
1190 } else
1191 ofst = 0;
1192
1193 /* Set zones start sector */
1194 while (hdr->nr_zones && ofst < bvec.bv_len) {
1195 zone = addr + ofst;
1196 if (zone->start >= start + ti->len) {
1197 hdr->nr_zones = 0;
1198 break;
1199 }
1200 zone->start = zone->start + ti->begin - start;
1201 if (zone->type != BLK_ZONE_TYPE_CONVENTIONAL) {
1202 if (zone->cond == BLK_ZONE_COND_FULL)
1203 zone->wp = zone->start + zone->len;
1204 else if (zone->cond == BLK_ZONE_COND_EMPTY)
1205 zone->wp = zone->start;
1206 else
1207 zone->wp = zone->wp + ti->begin - start;
1208 }
1209 ofst += sizeof(struct blk_zone);
1210 hdr->nr_zones--;
1211 nr_rep++;
1212 }
1213
1214 if (addr != hdr)
1215 kunmap_atomic(addr);
1216
1217 if (!hdr->nr_zones)
1218 break;
1219 }
1220
1221 if (hdr) {
1222 hdr->nr_zones = nr_rep;
1223 kunmap_atomic(hdr);
1224 }
1225
1226 bio_advance(report_bio, report_bio->bi_iter.bi_size);
1227
1228#else /* !CONFIG_BLK_DEV_ZONED */
1229 bio->bi_status = BLK_STS_NOTSUPP;
1230#endif
1231}
1232EXPORT_SYMBOL_GPL(dm_remap_zone_report);
1233
Mike Snitzer978e51b2017-12-09 15:16:42 -05001234static blk_qc_t __map_bio(struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235{
1236 int r;
Jens Axboe2056a782006-03-23 20:00:26 +01001237 sector_t sector;
Mikulas Patockadba14162012-10-12 21:02:15 +01001238 struct bio *clone = &tio->clone;
Mike Snitzer64f52b02017-12-11 23:17:47 -05001239 struct dm_io *io = tio->io;
Mike Snitzer978e51b2017-12-09 15:16:42 -05001240 struct mapped_device *md = io->md;
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001241 struct dm_target *ti = tio->ti;
Mike Snitzer978e51b2017-12-09 15:16:42 -05001242 blk_qc_t ret = BLK_QC_T_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 clone->bi_end_io = clone_endio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
1246 /*
1247 * Map the clone. If r == 0 we don't need to do
1248 * anything, the target has assumed ownership of
1249 * this io.
1250 */
Mike Snitzer64f52b02017-12-11 23:17:47 -05001251 atomic_inc(&io->io_count);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001252 sector = clone->bi_iter.bi_sector;
Mikulas Patockad67a5f42017-02-15 11:26:10 -05001253
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00001254 r = ti->type->map(ti, clone);
Christoph Hellwig846785e2017-06-03 09:38:02 +02001255 switch (r) {
1256 case DM_MAPIO_SUBMITTED:
1257 break;
1258 case DM_MAPIO_REMAPPED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 /* the bio has been remapped so dispatch it */
Christoph Hellwig74d46992017-08-23 19:10:32 +02001260 trace_block_bio_remap(clone->bi_disk->queue, clone,
Mike Snitzer64f52b02017-12-11 23:17:47 -05001261 bio_dev(io->orig_bio), sector);
Mike Snitzer978e51b2017-12-09 15:16:42 -05001262 if (md->type == DM_TYPE_NVME_BIO_BASED)
1263 ret = direct_make_request(clone);
1264 else
1265 ret = generic_make_request(clone);
Christoph Hellwig846785e2017-06-03 09:38:02 +02001266 break;
1267 case DM_MAPIO_KILL:
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001268 free_tio(tio);
Mike Snitzer64f52b02017-12-11 23:17:47 -05001269 dec_pending(io, BLK_STS_IOERR);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001270 break;
Christoph Hellwig846785e2017-06-03 09:38:02 +02001271 case DM_MAPIO_REQUEUE:
Mike Snitzercfae7522016-04-11 12:05:38 -04001272 free_tio(tio);
Mike Snitzer64f52b02017-12-11 23:17:47 -05001273 dec_pending(io, BLK_STS_DM_REQUEUE);
Christoph Hellwig846785e2017-06-03 09:38:02 +02001274 break;
1275 default:
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -08001276 DMWARN("unimplemented target map return value: %d", r);
1277 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
Mike Snitzer978e51b2017-12-09 15:16:42 -05001280 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
Mikulas Patockae0d66092014-03-14 18:40:39 -04001283static void bio_setup_sector(struct bio *bio, sector_t sector, unsigned len)
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001284{
Kent Overstreet4f024f32013-10-11 15:44:27 -07001285 bio->bi_iter.bi_sector = sector;
1286 bio->bi_iter.bi_size = to_bytes(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287}
1288
1289/*
1290 * Creates a bio that consists of range of complete bvecs.
1291 */
Mike Snitzerc80914e2016-03-02 12:33:03 -05001292static int clone_bio(struct dm_target_io *tio, struct bio *bio,
1293 sector_t sector, unsigned len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294{
Mikulas Patockadba14162012-10-12 21:02:15 +01001295 struct bio *clone = &tio->clone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001297 __bio_clone_fast(clone, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
Mikulas Patockae2460f22017-04-18 16:51:48 -04001299 if (unlikely(bio_integrity(bio) != NULL)) {
1300 int r;
1301
1302 if (unlikely(!dm_target_has_integrity(tio->ti->type) &&
1303 !dm_target_passes_integrity(tio->ti->type))) {
1304 DMWARN("%s: the target %s doesn't support integrity data.",
1305 dm_device_name(tio->io->md),
1306 tio->ti->type->name);
1307 return -EIO;
1308 }
1309
1310 r = bio_integrity_clone(clone, bio, GFP_NOIO);
Mike Snitzerc80914e2016-03-02 12:33:03 -05001311 if (r < 0)
1312 return r;
1313 }
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001314
Damien Le Moal264c8692017-05-08 16:40:47 -07001315 if (bio_op(bio) != REQ_OP_ZONE_REPORT)
1316 bio_advance(clone, to_bytes(sector - clone->bi_iter.bi_sector));
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001317 clone->bi_iter.bi_size = to_bytes(len);
1318
Mikulas Patockae2460f22017-04-18 16:51:48 -04001319 if (unlikely(bio_integrity(bio) != NULL))
Dmitry Monakhovfbd08e72017-06-29 11:31:10 -07001320 bio_integrity_trim(clone);
Mike Snitzerc80914e2016-03-02 12:33:03 -05001321
1322 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323}
1324
Mike Snitzer318716d2017-11-22 14:56:12 -05001325static void alloc_multiple_bios(struct bio_list *blist, struct clone_info *ci,
1326 struct dm_target *ti, unsigned num_bios)
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001327{
Mikulas Patockadba14162012-10-12 21:02:15 +01001328 struct dm_target_io *tio;
Mike Snitzer318716d2017-11-22 14:56:12 -05001329 int try;
Mikulas Patockadba14162012-10-12 21:02:15 +01001330
Mike Snitzer318716d2017-11-22 14:56:12 -05001331 if (!num_bios)
1332 return;
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001333
Mike Snitzer318716d2017-11-22 14:56:12 -05001334 if (num_bios == 1) {
1335 tio = alloc_tio(ci, ti, 0, GFP_NOIO);
1336 bio_list_add(blist, &tio->clone);
1337 return;
1338 }
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001339
Mike Snitzer318716d2017-11-22 14:56:12 -05001340 for (try = 0; try < 2; try++) {
1341 int bio_nr;
1342 struct bio *bio;
1343
1344 if (try)
Mike Snitzerbc02cdb2017-12-14 16:30:42 -05001345 mutex_lock(&ci->io->md->table_devices_lock);
Mike Snitzer318716d2017-11-22 14:56:12 -05001346 for (bio_nr = 0; bio_nr < num_bios; bio_nr++) {
1347 tio = alloc_tio(ci, ti, bio_nr, try ? GFP_NOIO : GFP_NOWAIT);
1348 if (!tio)
1349 break;
1350
1351 bio_list_add(blist, &tio->clone);
1352 }
1353 if (try)
Mike Snitzerbc02cdb2017-12-14 16:30:42 -05001354 mutex_unlock(&ci->io->md->table_devices_lock);
Mike Snitzer318716d2017-11-22 14:56:12 -05001355 if (bio_nr == num_bios)
1356 return;
1357
1358 while ((bio = bio_list_pop(blist))) {
1359 tio = container_of(bio, struct dm_target_io, clone);
1360 free_tio(tio);
1361 }
1362 }
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001363}
1364
Mike Snitzer978e51b2017-12-09 15:16:42 -05001365static blk_qc_t __clone_and_map_simple_bio(struct clone_info *ci,
1366 struct dm_target_io *tio, unsigned *len)
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001367{
Mikulas Patockadba14162012-10-12 21:02:15 +01001368 struct bio *clone = &tio->clone;
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001369
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001370 tio->len_ptr = len;
1371
Junichi Nomura99778272014-10-03 11:55:16 +00001372 __bio_clone_fast(clone, ci->bio);
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001373 if (len)
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001374 bio_setup_sector(clone, ci->sector, *len);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001375
Mike Snitzer978e51b2017-12-09 15:16:42 -05001376 return __map_bio(tio);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001377}
1378
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001379static void __send_duplicate_bios(struct clone_info *ci, struct dm_target *ti,
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001380 unsigned num_bios, unsigned *len)
Mike Snitzer06a426c2010-08-12 04:14:09 +01001381{
Mike Snitzer318716d2017-11-22 14:56:12 -05001382 struct bio_list blist = BIO_EMPTY_LIST;
1383 struct bio *bio;
1384 struct dm_target_io *tio;
Mike Snitzer06a426c2010-08-12 04:14:09 +01001385
Mike Snitzer318716d2017-11-22 14:56:12 -05001386 alloc_multiple_bios(&blist, ci, ti, num_bios);
1387
1388 while ((bio = bio_list_pop(&blist))) {
1389 tio = container_of(bio, struct dm_target_io, clone);
Mike Snitzer978e51b2017-12-09 15:16:42 -05001390 (void) __clone_and_map_simple_bio(ci, tio, len);
Mike Snitzer318716d2017-11-22 14:56:12 -05001391 }
Mike Snitzer06a426c2010-08-12 04:14:09 +01001392}
1393
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001394static int __send_empty_flush(struct clone_info *ci)
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001395{
Mike Snitzer06a426c2010-08-12 04:14:09 +01001396 unsigned target_nr = 0;
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001397 struct dm_target *ti;
1398
Mike Snitzerb372d362010-09-08 18:07:01 +02001399 BUG_ON(bio_has_data(ci->bio));
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001400 while ((ti = dm_table_get_target(ci->map, target_nr++)))
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001401 __send_duplicate_bios(ci, ti, ti->num_flush_bios, NULL);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001402
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001403 return 0;
1404}
1405
Mike Snitzerc80914e2016-03-02 12:33:03 -05001406static int __clone_and_map_data_bio(struct clone_info *ci, struct dm_target *ti,
NeilBrownf31c21e2017-11-22 14:25:18 +11001407 sector_t sector, unsigned *len)
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001408{
Mikulas Patockadba14162012-10-12 21:02:15 +01001409 struct bio *bio = ci->bio;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001410 struct dm_target_io *tio;
NeilBrownf31c21e2017-11-22 14:25:18 +11001411 int r;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001412
Mike Snitzer318716d2017-11-22 14:56:12 -05001413 tio = alloc_tio(ci, ti, 0, GFP_NOIO);
NeilBrownf31c21e2017-11-22 14:25:18 +11001414 tio->len_ptr = len;
1415 r = clone_bio(tio, bio, sector, *len);
1416 if (r < 0) {
1417 free_tio(tio);
1418 return r;
Alasdair G Kergonb0d8ed42013-03-01 22:45:49 +00001419 }
Mike Snitzer978e51b2017-12-09 15:16:42 -05001420 (void) __map_bio(tio);
Mike Snitzerc80914e2016-03-02 12:33:03 -05001421
NeilBrownf31c21e2017-11-22 14:25:18 +11001422 return 0;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001423}
1424
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001425typedef unsigned (*get_num_bios_fn)(struct dm_target *ti);
Mike Snitzer23508a92012-12-21 20:23:37 +00001426
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001427static unsigned get_num_discard_bios(struct dm_target *ti)
Mike Snitzer23508a92012-12-21 20:23:37 +00001428{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001429 return ti->num_discard_bios;
Mike Snitzer23508a92012-12-21 20:23:37 +00001430}
1431
Denis Semakin00716542018-03-13 13:23:45 +04001432static unsigned get_num_secure_erase_bios(struct dm_target *ti)
1433{
1434 return ti->num_secure_erase_bios;
1435}
1436
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001437static unsigned get_num_write_same_bios(struct dm_target *ti)
Mike Snitzer23508a92012-12-21 20:23:37 +00001438{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001439 return ti->num_write_same_bios;
Mike Snitzer23508a92012-12-21 20:23:37 +00001440}
1441
Christoph Hellwigac62d622017-04-05 19:21:05 +02001442static unsigned get_num_write_zeroes_bios(struct dm_target *ti)
1443{
1444 return ti->num_write_zeroes_bios;
1445}
1446
Mike Snitzer23508a92012-12-21 20:23:37 +00001447typedef bool (*is_split_required_fn)(struct dm_target *ti);
1448
1449static bool is_split_required_for_discard(struct dm_target *ti)
1450{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001451 return ti->split_discard_bios;
Mike Snitzer23508a92012-12-21 20:23:37 +00001452}
1453
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001454static int __send_changing_extent_only(struct clone_info *ci, struct dm_target *ti,
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001455 get_num_bios_fn get_num_bios,
1456 is_split_required_fn is_split_required)
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001457{
Mikulas Patockae0d66092014-03-14 18:40:39 -04001458 unsigned len;
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001459 unsigned num_bios;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001460
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001461 /*
1462 * Even though the device advertised support for this type of
1463 * request, that does not mean every target supports it, and
1464 * reconfiguration might also have changed that since the
1465 * check was performed.
1466 */
1467 num_bios = get_num_bios ? get_num_bios(ti) : 0;
1468 if (!num_bios)
1469 return -EOPNOTSUPP;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001470
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001471 if (is_split_required && !is_split_required(ti))
1472 len = min((sector_t)ci->sector_count, max_io_len_target_boundary(ci->sector, ti));
1473 else
1474 len = min((sector_t)ci->sector_count, max_io_len(ci->sector, ti));
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001475
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001476 __send_duplicate_bios(ci, ti, num_bios, &len);
Mike Snitzer06a426c2010-08-12 04:14:09 +01001477
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001478 ci->sector += len;
1479 ci->sector_count -= len;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001480
1481 return 0;
1482}
1483
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001484static int __send_discard(struct clone_info *ci, struct dm_target *ti)
Mike Snitzer23508a92012-12-21 20:23:37 +00001485{
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001486 return __send_changing_extent_only(ci, ti, get_num_discard_bios,
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001487 is_split_required_for_discard);
Mike Snitzer23508a92012-12-21 20:23:37 +00001488}
1489
Denis Semakin00716542018-03-13 13:23:45 +04001490static int __send_secure_erase(struct clone_info *ci, struct dm_target *ti)
1491{
1492 return __send_changing_extent_only(ci, ti, get_num_secure_erase_bios, NULL);
1493}
1494
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001495static int __send_write_same(struct clone_info *ci, struct dm_target *ti)
Mike Snitzer23508a92012-12-21 20:23:37 +00001496{
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001497 return __send_changing_extent_only(ci, ti, get_num_write_same_bios, NULL);
Mike Snitzer23508a92012-12-21 20:23:37 +00001498}
1499
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001500static int __send_write_zeroes(struct clone_info *ci, struct dm_target *ti)
Christoph Hellwigac62d622017-04-05 19:21:05 +02001501{
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001502 return __send_changing_extent_only(ci, ti, get_num_write_zeroes_bios, NULL);
Christoph Hellwigac62d622017-04-05 19:21:05 +02001503}
1504
Mike Snitzer0519c712018-03-26 11:49:16 -04001505static bool __process_abnormal_io(struct clone_info *ci, struct dm_target *ti,
1506 int *result)
1507{
1508 struct bio *bio = ci->bio;
1509
1510 if (bio_op(bio) == REQ_OP_DISCARD)
1511 *result = __send_discard(ci, ti);
Denis Semakin00716542018-03-13 13:23:45 +04001512 else if (bio_op(bio) == REQ_OP_SECURE_ERASE)
1513 *result = __send_secure_erase(ci, ti);
Mike Snitzer0519c712018-03-26 11:49:16 -04001514 else if (bio_op(bio) == REQ_OP_WRITE_SAME)
1515 *result = __send_write_same(ci, ti);
1516 else if (bio_op(bio) == REQ_OP_WRITE_ZEROES)
1517 *result = __send_write_zeroes(ci, ti);
1518 else
1519 return false;
1520
1521 return true;
1522}
1523
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001524/*
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001525 * Select the correct strategy for processing a non-flush bio.
1526 */
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001527static int __split_and_process_non_flush(struct clone_info *ci)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528{
Mikulas Patockadba14162012-10-12 21:02:15 +01001529 struct bio *bio = ci->bio;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001530 struct dm_target *ti;
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001531 unsigned len;
Mike Snitzerc80914e2016-03-02 12:33:03 -05001532 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001534 ti = dm_table_find_target(ci->map, ci->sector);
1535 if (!dm_target_is_valid(ti))
1536 return -EIO;
1537
Mike Snitzer0519c712018-03-26 11:49:16 -04001538 if (unlikely(__process_abnormal_io(ci, ti, &r)))
1539 return r;
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001540
Damien Le Moal264c8692017-05-08 16:40:47 -07001541 if (bio_op(bio) == REQ_OP_ZONE_REPORT)
1542 len = ci->sector_count;
1543 else
1544 len = min_t(sector_t, max_io_len(ci->sector, ti),
1545 ci->sector_count);
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001546
Mike Snitzerc80914e2016-03-02 12:33:03 -05001547 r = __clone_and_map_data_bio(ci, ti, ci->sector, &len);
1548 if (r < 0)
1549 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001551 ci->sector += len;
1552 ci->sector_count -= len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001554 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555}
1556
Mike Snitzer978e51b2017-12-09 15:16:42 -05001557static void init_clone_info(struct clone_info *ci, struct mapped_device *md,
1558 struct dm_table *map, struct bio *bio)
1559{
1560 ci->map = map;
1561 ci->io = alloc_io(md, bio);
1562 ci->sector = bio->bi_iter.bi_sector;
1563}
1564
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565/*
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001566 * Entry point to split a bio into clones and submit them to the targets.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 */
Mike Snitzer978e51b2017-12-09 15:16:42 -05001568static blk_qc_t __split_and_process_bio(struct mapped_device *md,
1569 struct dm_table *map, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570{
1571 struct clone_info ci;
Mike Snitzer978e51b2017-12-09 15:16:42 -05001572 blk_qc_t ret = BLK_QC_T_NONE;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001573 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001575 if (unlikely(!map)) {
Tejun Heo6a8736d2010-09-08 18:07:00 +02001576 bio_io_error(bio);
Mike Snitzer978e51b2017-12-09 15:16:42 -05001577 return ret;
Mikulas Patockaf0b9a452009-04-02 19:55:38 +01001578 }
Mikulas Patocka692d0eb2009-04-09 00:27:13 +01001579
Mike Snitzer978e51b2017-12-09 15:16:42 -05001580 init_clone_info(&ci, md, map, bio);
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001581
Jens Axboe1eff9d32016-08-05 15:35:16 -06001582 if (bio->bi_opf & REQ_PREFLUSH) {
Mike Snitzerbc02cdb2017-12-14 16:30:42 -05001583 ci.bio = &ci.io->md->flush_bio;
Mike Snitzerb372d362010-09-08 18:07:01 +02001584 ci.sector_count = 0;
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001585 error = __send_empty_flush(&ci);
Mike Snitzerb372d362010-09-08 18:07:01 +02001586 /* dec_pending submits any data associated with flush */
Damien Le Moala4aa5e52017-05-08 16:40:46 -07001587 } else if (bio_op(bio) == REQ_OP_ZONE_RESET) {
1588 ci.bio = bio;
1589 ci.sector_count = 0;
1590 error = __split_and_process_non_flush(&ci);
Mike Snitzerb372d362010-09-08 18:07:01 +02001591 } else {
Tejun Heo6a8736d2010-09-08 18:07:00 +02001592 ci.bio = bio;
Tejun Heod87f4c12010-09-03 11:56:19 +02001593 ci.sector_count = bio_sectors(bio);
NeilBrown18a25da2017-09-06 09:43:28 +10001594 while (ci.sector_count && !error) {
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001595 error = __split_and_process_non_flush(&ci);
NeilBrown18a25da2017-09-06 09:43:28 +10001596 if (current->bio_list && ci.sector_count && !error) {
1597 /*
1598 * Remainder must be passed to generic_make_request()
1599 * so that it gets handled *after* bios already submitted
1600 * have been completely processed.
1601 * We take a clone of the original to store in
Mike Snitzer745dc572017-12-11 20:51:50 -05001602 * ci.io->orig_bio to be used by end_io_acct() and
NeilBrown18a25da2017-09-06 09:43:28 +10001603 * for dec_pending to use for completion handling.
1604 * As this path is not used for REQ_OP_ZONE_REPORT,
Mike Snitzer745dc572017-12-11 20:51:50 -05001605 * the usage of io->orig_bio in dm_remap_zone_report()
NeilBrown18a25da2017-09-06 09:43:28 +10001606 * won't be affected by this reassignment.
1607 */
Mike Snitzerf21c6012018-06-15 09:35:33 -04001608 struct bio *b = bio_split(bio, bio_sectors(bio) - ci.sector_count,
1609 GFP_NOIO, &md->queue->bio_split);
Mike Snitzer745dc572017-12-11 20:51:50 -05001610 ci.io->orig_bio = b;
NeilBrown18a25da2017-09-06 09:43:28 +10001611 bio_chain(b, bio);
Mike Snitzer978e51b2017-12-09 15:16:42 -05001612 ret = generic_make_request(bio);
NeilBrown18a25da2017-09-06 09:43:28 +10001613 break;
1614 }
1615 }
Tejun Heod87f4c12010-09-03 11:56:19 +02001616 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617
1618 /* drop the extra reference count */
Bart Van Assche54385bf2017-08-09 11:32:10 -07001619 dec_pending(ci.io, errno_to_blk_status(error));
Mike Snitzer978e51b2017-12-09 15:16:42 -05001620 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622
1623/*
Mike Snitzer978e51b2017-12-09 15:16:42 -05001624 * Optimized variant of __split_and_process_bio that leverages the
1625 * fact that targets that use it do _not_ have a need to split bios.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 */
Mike Snitzer978e51b2017-12-09 15:16:42 -05001627static blk_qc_t __process_bio(struct mapped_device *md,
1628 struct dm_table *map, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629{
Mike Snitzer978e51b2017-12-09 15:16:42 -05001630 struct clone_info ci;
1631 blk_qc_t ret = BLK_QC_T_NONE;
1632 int error = 0;
1633
1634 if (unlikely(!map)) {
1635 bio_io_error(bio);
1636 return ret;
1637 }
1638
1639 init_clone_info(&ci, md, map, bio);
1640
1641 if (bio->bi_opf & REQ_PREFLUSH) {
1642 ci.bio = &ci.io->md->flush_bio;
1643 ci.sector_count = 0;
1644 error = __send_empty_flush(&ci);
1645 /* dec_pending submits any data associated with flush */
1646 } else {
1647 struct dm_target *ti = md->immutable_target;
1648 struct dm_target_io *tio;
1649
1650 /*
1651 * Defend against IO still getting in during teardown
1652 * - as was seen for a time with nvme-fcloop
1653 */
1654 if (unlikely(WARN_ON_ONCE(!ti || !dm_target_is_valid(ti)))) {
1655 error = -EIO;
1656 goto out;
1657 }
1658
Mike Snitzer978e51b2017-12-09 15:16:42 -05001659 ci.bio = bio;
1660 ci.sector_count = bio_sectors(bio);
Mike Snitzer0519c712018-03-26 11:49:16 -04001661 if (unlikely(__process_abnormal_io(&ci, ti, &error)))
1662 goto out;
1663
1664 tio = alloc_tio(&ci, ti, 0, GFP_NOIO);
Mike Snitzer978e51b2017-12-09 15:16:42 -05001665 ret = __clone_and_map_simple_bio(&ci, tio, NULL);
1666 }
1667out:
1668 /* drop the extra reference count */
1669 dec_pending(ci.io, errno_to_blk_status(error));
1670 return ret;
1671}
1672
1673typedef blk_qc_t (process_bio_fn)(struct mapped_device *, struct dm_table *, struct bio *);
1674
1675static blk_qc_t __dm_make_request(struct request_queue *q, struct bio *bio,
1676 process_bio_fn process_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 struct mapped_device *md = q->queuedata;
Mike Snitzer978e51b2017-12-09 15:16:42 -05001679 blk_qc_t ret = BLK_QC_T_NONE;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001680 int srcu_idx;
1681 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001683 map = dm_get_live_table(md, &srcu_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684
Tejun Heo6a8736d2010-09-08 18:07:00 +02001685 /* if we're suspended, we have to queue this io for later */
1686 if (unlikely(test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags))) {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001687 dm_put_live_table(md, srcu_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688
Jens Axboe1eff9d32016-08-05 15:35:16 -06001689 if (!(bio->bi_opf & REQ_RAHEAD))
Tejun Heo6a8736d2010-09-08 18:07:00 +02001690 queue_io(md, bio);
1691 else
Alasdair G Kergon54d9a1b2009-04-09 00:27:14 +01001692 bio_io_error(bio);
Mike Snitzer978e51b2017-12-09 15:16:42 -05001693 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 }
1695
Mike Snitzer978e51b2017-12-09 15:16:42 -05001696 ret = process_bio(md, map, bio);
1697
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001698 dm_put_live_table(md, srcu_idx);
Mike Snitzer978e51b2017-12-09 15:16:42 -05001699 return ret;
1700}
1701
1702/*
1703 * The request function that remaps the bio to one target and
1704 * splits off any remainder.
1705 */
1706static blk_qc_t dm_make_request(struct request_queue *q, struct bio *bio)
1707{
1708 return __dm_make_request(q, bio, __split_and_process_bio);
1709}
1710
1711static blk_qc_t dm_make_request_nvme(struct request_queue *q, struct bio *bio)
1712{
1713 return __dm_make_request(q, bio, __process_bio);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001714}
1715
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716static int dm_any_congested(void *congested_data, int bdi_bits)
1717{
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00001718 int r = bdi_bits;
1719 struct mapped_device *md = congested_data;
1720 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01001722 if (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
Mike Snitzere522c032016-02-02 22:35:06 -05001723 if (dm_request_based(md)) {
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001724 /*
Mike Snitzere522c032016-02-02 22:35:06 -05001725 * With request-based DM we only need to check the
1726 * top-level queue for congestion.
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001727 */
Jan Karadc3b17c2017-02-02 15:56:50 +01001728 r = md->queue->backing_dev_info->wb.state & bdi_bits;
Mike Snitzere522c032016-02-02 22:35:06 -05001729 } else {
1730 map = dm_get_live_table_fast(md);
1731 if (map)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001732 r = dm_table_any_congested(map, bdi_bits);
Mike Snitzere522c032016-02-02 22:35:06 -05001733 dm_put_live_table_fast(md);
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00001734 }
1735 }
1736
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 return r;
1738}
1739
1740/*-----------------------------------------------------------------
1741 * An IDR is used to keep track of allocated minor numbers.
1742 *---------------------------------------------------------------*/
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001743static void free_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744{
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001745 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 idr_remove(&_minor_idr, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001747 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748}
1749
1750/*
1751 * See if the device with a specific minor # is free.
1752 */
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001753static int specific_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754{
Tejun Heoc9d76be2013-02-27 17:04:26 -08001755 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756
1757 if (minor >= (1 << MINORBITS))
1758 return -EINVAL;
1759
Tejun Heoc9d76be2013-02-27 17:04:26 -08001760 idr_preload(GFP_KERNEL);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001761 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762
Tejun Heoc9d76be2013-02-27 17:04:26 -08001763 r = idr_alloc(&_minor_idr, MINOR_ALLOCED, minor, minor + 1, GFP_NOWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001765 spin_unlock(&_minor_lock);
Tejun Heoc9d76be2013-02-27 17:04:26 -08001766 idr_preload_end();
1767 if (r < 0)
1768 return r == -ENOSPC ? -EBUSY : r;
1769 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770}
1771
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001772static int next_free_minor(int *minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773{
Tejun Heoc9d76be2013-02-27 17:04:26 -08001774 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775
Tejun Heoc9d76be2013-02-27 17:04:26 -08001776 idr_preload(GFP_KERNEL);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001777 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778
Tejun Heoc9d76be2013-02-27 17:04:26 -08001779 r = idr_alloc(&_minor_idr, MINOR_ALLOCED, 0, 1 << MINORBITS, GFP_NOWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001781 spin_unlock(&_minor_lock);
Tejun Heoc9d76be2013-02-27 17:04:26 -08001782 idr_preload_end();
1783 if (r < 0)
1784 return r;
1785 *minor = r;
1786 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787}
1788
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07001789static const struct block_device_operations dm_blk_dops;
Dan Williamsf26c5712017-04-12 12:35:44 -07001790static const struct dax_operations dm_dax_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791
Mikulas Patocka53d59142009-04-02 19:55:37 +01001792static void dm_wq_work(struct work_struct *work);
1793
Mike Snitzerc12c9a32018-01-12 09:32:21 -05001794static void dm_init_normal_md_queue(struct mapped_device *md)
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001795{
Mike Snitzer17e149b2015-03-11 15:01:09 -04001796 md->use_blk_mq = false;
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001797
1798 /*
1799 * Initialize aspects of queue that aren't relevant for blk-mq
1800 */
Jan Karadc3b17c2017-02-02 15:56:50 +01001801 md->queue->backing_dev_info->congested_fn = dm_any_congested;
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01001802}
1803
Mike Snitzer0f209722015-04-28 11:50:29 -04001804static void cleanup_mapped_device(struct mapped_device *md)
1805{
Mike Snitzer0f209722015-04-28 11:50:29 -04001806 if (md->wq)
1807 destroy_workqueue(md->wq);
1808 if (md->kworker_task)
1809 kthread_stop(md->kworker_task);
Kent Overstreet6f1c8192018-05-20 18:25:53 -04001810 bioset_exit(&md->bs);
1811 bioset_exit(&md->io_bs);
Mike Snitzer0f209722015-04-28 11:50:29 -04001812
Dan Williamsf26c5712017-04-12 12:35:44 -07001813 if (md->dax_dev) {
1814 kill_dax(md->dax_dev);
1815 put_dax(md->dax_dev);
1816 md->dax_dev = NULL;
1817 }
1818
Mike Snitzer0f209722015-04-28 11:50:29 -04001819 if (md->disk) {
1820 spin_lock(&_minor_lock);
1821 md->disk->private_data = NULL;
1822 spin_unlock(&_minor_lock);
Mike Snitzer0f209722015-04-28 11:50:29 -04001823 del_gendisk(md->disk);
1824 put_disk(md->disk);
1825 }
1826
1827 if (md->queue)
1828 blk_cleanup_queue(md->queue);
1829
Tahsin Erdogand09960b2016-10-10 05:35:19 -07001830 cleanup_srcu_struct(&md->io_barrier);
1831
Mike Snitzer0f209722015-04-28 11:50:29 -04001832 if (md->bdev) {
1833 bdput(md->bdev);
1834 md->bdev = NULL;
1835 }
Mike Snitzer4cc96132016-05-12 16:28:10 -04001836
Mike Snitzerd5ffebd2018-01-05 21:17:20 -05001837 mutex_destroy(&md->suspend_lock);
1838 mutex_destroy(&md->type_lock);
1839 mutex_destroy(&md->table_devices_lock);
1840
Mike Snitzer4cc96132016-05-12 16:28:10 -04001841 dm_mq_cleanup_mapped_device(md);
Mike Snitzer0f209722015-04-28 11:50:29 -04001842}
1843
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844/*
1845 * Allocate and initialise a blank device with a given minor.
1846 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001847static struct mapped_device *alloc_dev(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848{
Mike Snitzer115485e2016-02-22 12:16:21 -05001849 int r, numa_node_id = dm_get_numa_node();
Dan Williams976431b2018-03-29 17:22:13 -07001850 struct dax_device *dax_dev = NULL;
Mike Snitzer115485e2016-02-22 12:16:21 -05001851 struct mapped_device *md;
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001852 void *old_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853
Mikulas Patocka856eb092017-10-31 19:33:02 -04001854 md = kvzalloc_node(sizeof(*md), GFP_KERNEL, numa_node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 if (!md) {
1856 DMWARN("unable to allocate device, out of memory.");
1857 return NULL;
1858 }
1859
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001860 if (!try_module_get(THIS_MODULE))
Milan Broz6ed7ade2008-02-08 02:10:19 +00001861 goto bad_module_get;
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001862
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 /* get a minor number for the dev */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001864 if (minor == DM_ANY_MINOR)
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001865 r = next_free_minor(&minor);
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001866 else
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001867 r = specific_minor(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 if (r < 0)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001869 goto bad_minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001871 r = init_srcu_struct(&md->io_barrier);
1872 if (r < 0)
1873 goto bad_io_barrier;
1874
Mike Snitzer115485e2016-02-22 12:16:21 -05001875 md->numa_node_id = numa_node_id;
Mike Snitzer4cc96132016-05-12 16:28:10 -04001876 md->use_blk_mq = dm_use_blk_mq_default();
Mike Snitzer591ddcf2016-01-31 12:05:42 -05001877 md->init_tio_pdu = false;
Mike Snitzera5664da2010-08-12 04:14:01 +01001878 md->type = DM_TYPE_NONE;
Daniel Walkere61290a2008-02-08 02:10:08 +00001879 mutex_init(&md->suspend_lock);
Mike Snitzera5664da2010-08-12 04:14:01 +01001880 mutex_init(&md->type_lock);
Benjamin Marzinski86f11522014-08-13 13:53:43 -05001881 mutex_init(&md->table_devices_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01001882 spin_lock_init(&md->deferred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 atomic_set(&md->holders, 1);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -07001884 atomic_set(&md->open_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 atomic_set(&md->event_nr, 0);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001886 atomic_set(&md->uevent_seq, 0);
1887 INIT_LIST_HEAD(&md->uevent_list);
Benjamin Marzinski86f11522014-08-13 13:53:43 -05001888 INIT_LIST_HEAD(&md->table_devices);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001889 spin_lock_init(&md->uevent_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890
Bart Van Assche5ee05242018-02-28 10:15:31 -08001891 md->queue = blk_alloc_queue_node(GFP_KERNEL, numa_node_id, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 if (!md->queue)
Mike Snitzer0f209722015-04-28 11:50:29 -04001893 goto bad;
Mike Snitzerc12c9a32018-01-12 09:32:21 -05001894 md->queue->queuedata = md;
1895 md->queue->backing_dev_info->congested_data = md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896
Mike Snitzerc12c9a32018-01-12 09:32:21 -05001897 md->disk = alloc_disk_node(1, md->numa_node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 if (!md->disk)
Mike Snitzer0f209722015-04-28 11:50:29 -04001899 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001901 atomic_set(&md->pending[0], 0);
1902 atomic_set(&md->pending[1], 0);
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07001903 init_waitqueue_head(&md->wait);
Mikulas Patocka53d59142009-04-02 19:55:37 +01001904 INIT_WORK(&md->work, dm_wq_work);
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07001905 init_waitqueue_head(&md->eventq);
Mikulas Patocka2995fa72014-01-13 19:37:54 -05001906 init_completion(&md->kobj_holder.completion);
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001907 md->kworker_task = NULL;
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07001908
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 md->disk->major = _major;
1910 md->disk->first_minor = minor;
1911 md->disk->fops = &dm_blk_dops;
1912 md->disk->queue = md->queue;
1913 md->disk->private_data = md;
1914 sprintf(md->disk->disk_name, "dm-%d", minor);
Dan Williamsf26c5712017-04-12 12:35:44 -07001915
Dan Williams976431b2018-03-29 17:22:13 -07001916 if (IS_ENABLED(CONFIG_DAX_DRIVER)) {
1917 dax_dev = alloc_dax(md, md->disk->disk_name, &dm_dax_ops);
1918 if (!dax_dev)
1919 goto bad;
1920 }
Dan Williamsf26c5712017-04-12 12:35:44 -07001921 md->dax_dev = dax_dev;
1922
Mike Snitzerc100ec42018-01-08 20:03:04 -05001923 add_disk_no_queue_reg(md->disk);
Mike Anderson7e51f252006-03-27 01:17:52 -08001924 format_dev_t(md->name, MKDEV(_major, minor));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925
Tejun Heo670368a2013-07-30 08:40:21 -04001926 md->wq = alloc_workqueue("kdmflush", WQ_MEM_RECLAIM, 0);
Milan Broz304f3f62008-02-08 02:11:17 +00001927 if (!md->wq)
Mike Snitzer0f209722015-04-28 11:50:29 -04001928 goto bad;
Milan Broz304f3f62008-02-08 02:11:17 +00001929
Mikulas Patocka32a926d2009-06-22 10:12:17 +01001930 md->bdev = bdget_disk(md->disk, 0);
1931 if (!md->bdev)
Mike Snitzer0f209722015-04-28 11:50:29 -04001932 goto bad;
Mikulas Patocka32a926d2009-06-22 10:12:17 +01001933
Ming Lei3a83f462016-11-22 08:57:21 -07001934 bio_init(&md->flush_bio, NULL, 0);
Christoph Hellwig74d46992017-08-23 19:10:32 +02001935 bio_set_dev(&md->flush_bio, md->bdev);
Jan Karaff0361b2017-05-31 09:44:32 +02001936 md->flush_bio.bi_opf = REQ_OP_WRITE | REQ_PREFLUSH | REQ_SYNC;
Tejun Heo6a8736d2010-09-08 18:07:00 +02001937
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04001938 dm_stats_init(&md->stats);
1939
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001940 /* Populate the mapping, nobody knows we exist yet */
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001941 spin_lock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001942 old_md = idr_replace(&_minor_idr, md, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001943 spin_unlock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001944
1945 BUG_ON(old_md != MINOR_ALLOCED);
1946
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 return md;
1948
Mike Snitzer0f209722015-04-28 11:50:29 -04001949bad:
1950 cleanup_mapped_device(md);
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001951bad_io_barrier:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 free_minor(minor);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001953bad_minor:
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001954 module_put(THIS_MODULE);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001955bad_module_get:
Mikulas Patocka856eb092017-10-31 19:33:02 -04001956 kvfree(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 return NULL;
1958}
1959
Jun'ichi Nomuraae9da832007-10-19 22:38:43 +01001960static void unlock_fs(struct mapped_device *md);
1961
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962static void free_dev(struct mapped_device *md)
1963{
Tejun Heof331c022008-09-03 09:01:48 +02001964 int minor = MINOR(disk_devt(md->disk));
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08001965
Mikulas Patocka32a926d2009-06-22 10:12:17 +01001966 unlock_fs(md);
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001967
Mike Snitzer0f209722015-04-28 11:50:29 -04001968 cleanup_mapped_device(md);
Mike Snitzer0f209722015-04-28 11:50:29 -04001969
1970 free_table_devices(&md->table_devices);
1971 dm_stats_cleanup(&md->stats);
Mike Snitzer63a4f062015-03-23 17:01:43 -04001972 free_minor(minor);
1973
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001974 module_put(THIS_MODULE);
Mikulas Patocka856eb092017-10-31 19:33:02 -04001975 kvfree(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976}
1977
Jens Axboe2a2a4c52018-06-07 14:42:06 -06001978static int __bind_mempools(struct mapped_device *md, struct dm_table *t)
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001979{
Mikulas Patockac0820cf2012-12-21 20:23:38 +00001980 struct dm_md_mempools *p = dm_table_get_md_mempools(t);
Jens Axboe2a2a4c52018-06-07 14:42:06 -06001981 int ret = 0;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001982
Mike Snitzer0776aa02017-12-08 14:40:52 -05001983 if (dm_table_bio_based(t)) {
Mike Snitzer64f52b02017-12-11 23:17:47 -05001984 /*
1985 * The md may already have mempools that need changing.
1986 * If so, reload bioset because front_pad may have changed
1987 * because a different table was loaded.
1988 */
Kent Overstreet6f1c8192018-05-20 18:25:53 -04001989 bioset_exit(&md->bs);
1990 bioset_exit(&md->io_bs);
Mike Snitzer0776aa02017-12-08 14:40:52 -05001991
Kent Overstreet6f1c8192018-05-20 18:25:53 -04001992 } else if (bioset_initialized(&md->bs)) {
Mike Snitzer4e6e36c2015-06-26 09:42:57 -04001993 /*
1994 * There's no need to reload with request-based dm
1995 * because the size of front_pad doesn't change.
1996 * Note for future: If you are to reload bioset,
1997 * prep-ed requests in the queue may refer
1998 * to bio from the old bioset, so you must walk
1999 * through the queue to unprep.
2000 */
2001 goto out;
Mikulas Patockac0820cf2012-12-21 20:23:38 +00002002 }
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002003
Kent Overstreet6f1c8192018-05-20 18:25:53 -04002004 BUG_ON(!p ||
2005 bioset_initialized(&md->bs) ||
2006 bioset_initialized(&md->io_bs));
Mike Snitzercbc4e3c2015-04-27 16:37:50 -04002007
Jens Axboe2a2a4c52018-06-07 14:42:06 -06002008 ret = bioset_init_from_src(&md->bs, &p->bs);
2009 if (ret)
2010 goto out;
2011 ret = bioset_init_from_src(&md->io_bs, &p->io_bs);
2012 if (ret)
2013 bioset_exit(&md->bs);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002014out:
Mike Snitzer02233342015-03-10 23:49:26 -04002015 /* mempool bind completed, no longer need any mempools in the table */
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002016 dm_table_free_md_mempools(t);
Jens Axboe2a2a4c52018-06-07 14:42:06 -06002017 return ret;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002018}
2019
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020/*
2021 * Bind a table to the device.
2022 */
2023static void event_callback(void *context)
2024{
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002025 unsigned long flags;
2026 LIST_HEAD(uevents);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 struct mapped_device *md = (struct mapped_device *) context;
2028
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002029 spin_lock_irqsave(&md->uevent_lock, flags);
2030 list_splice_init(&md->uevent_list, &uevents);
2031 spin_unlock_irqrestore(&md->uevent_lock, flags);
2032
Tejun Heoed9e1982008-08-25 19:56:05 +09002033 dm_send_uevents(&uevents, &disk_to_dev(md->disk)->kobj);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002034
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 atomic_inc(&md->event_nr);
2036 wake_up(&md->eventq);
Mikulas Patocka62e08242017-09-20 07:29:49 -04002037 dm_issue_global_event();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038}
2039
Mike Snitzerc2176492011-01-13 19:53:46 +00002040/*
2041 * Protected by md->suspend_lock obtained by dm_swap_table().
2042 */
Alasdair G Kergon4e90188be2005-07-28 21:15:59 -07002043static void __set_size(struct mapped_device *md, sector_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044{
Bart Van Assche1ea06542017-04-27 10:11:21 -07002045 lockdep_assert_held(&md->suspend_lock);
2046
Alasdair G Kergon4e90188be2005-07-28 21:15:59 -07002047 set_capacity(md->disk, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002049 i_size_write(md->bdev->bd_inode, (loff_t)size << SECTOR_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050}
2051
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002052/*
2053 * Returns old map, which caller must destroy.
2054 */
2055static struct dm_table *__bind(struct mapped_device *md, struct dm_table *t,
2056 struct queue_limits *limits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057{
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002058 struct dm_table *old_map;
Jens Axboe165125e2007-07-24 09:28:11 +02002059 struct request_queue *q = md->queue;
Mike Snitzer978e51b2017-12-09 15:16:42 -05002060 bool request_based = dm_table_request_based(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 sector_t size;
Jens Axboe2a2a4c52018-06-07 14:42:06 -06002062 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063
Bart Van Assche5a8f1f82016-08-31 15:17:04 -07002064 lockdep_assert_held(&md->suspend_lock);
2065
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 size = dm_table_get_size(t);
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08002067
2068 /*
2069 * Wipe any geometry if the size of the table changed.
2070 */
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002071 if (size != dm_get_size(md))
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08002072 memset(&md->geometry, 0, sizeof(md->geometry));
2073
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002074 __set_size(md, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002076 dm_table_event_callback(t, event_callback, md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002077
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002078 /*
2079 * The queue hasn't been stopped yet, if the old table type wasn't
2080 * for request-based during suspension. So stop it to prevent
2081 * I/O mapping before resume.
2082 * This must be done before setting the queue restrictions,
2083 * because request-based dm may be run just after the setting.
2084 */
Mike Snitzer978e51b2017-12-09 15:16:42 -05002085 if (request_based)
Mike Snitzereca7ee62016-02-20 13:45:38 -05002086 dm_stop_queue(q);
Mike Snitzer978e51b2017-12-09 15:16:42 -05002087
2088 if (request_based || md->type == DM_TYPE_NVME_BIO_BASED) {
Mike Snitzer16f12262016-01-31 17:22:27 -05002089 /*
Mike Snitzer978e51b2017-12-09 15:16:42 -05002090 * Leverage the fact that request-based DM targets and
2091 * NVMe bio based targets are immutable singletons
2092 * - used to optimize both dm_request_fn and dm_mq_queue_rq;
2093 * and __process_bio.
Mike Snitzer16f12262016-01-31 17:22:27 -05002094 */
2095 md->immutable_target = dm_table_get_immutable_target(t);
2096 }
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002097
Jens Axboe2a2a4c52018-06-07 14:42:06 -06002098 ret = __bind_mempools(md, t);
2099 if (ret) {
2100 old_map = ERR_PTR(ret);
2101 goto out;
2102 }
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002103
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002104 old_map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mike Snitzer1d3aa6f2016-02-22 14:14:24 -05002105 rcu_assign_pointer(md->map, (void *)t);
Alasdair G Kergon36a04562011-10-31 20:19:04 +00002106 md->immutable_target_type = dm_table_get_immutable_target_type(t);
2107
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002108 dm_table_set_restrictions(t, q, limits);
Hannes Reinecke41abc4e2014-11-05 14:35:50 +01002109 if (old_map)
2110 dm_sync_table(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002111
Jens Axboe2a2a4c52018-06-07 14:42:06 -06002112out:
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002113 return old_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114}
2115
Alasdair G Kergona7940152009-12-10 23:52:23 +00002116/*
2117 * Returns unbound table for the caller to free.
2118 */
2119static struct dm_table *__unbind(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120{
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002121 struct dm_table *map = rcu_dereference_protected(md->map, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122
2123 if (!map)
Alasdair G Kergona7940152009-12-10 23:52:23 +00002124 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125
2126 dm_table_event_callback(map, NULL, NULL);
Monam Agarwal9cdb8522014-03-23 23:58:27 +05302127 RCU_INIT_POINTER(md->map, NULL);
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002128 dm_sync_table(md);
Alasdair G Kergona7940152009-12-10 23:52:23 +00002129
2130 return map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131}
2132
2133/*
2134 * Constructor for a new device.
2135 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002136int dm_create(int minor, struct mapped_device **result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137{
Mike Snitzerc12c9a32018-01-12 09:32:21 -05002138 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 struct mapped_device *md;
2140
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002141 md = alloc_dev(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 if (!md)
2143 return -ENXIO;
2144
Mike Snitzerc12c9a32018-01-12 09:32:21 -05002145 r = dm_sysfs_init(md);
2146 if (r) {
2147 free_dev(md);
2148 return r;
2149 }
Milan Broz784aae72009-01-06 03:05:12 +00002150
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 *result = md;
2152 return 0;
2153}
2154
Mike Snitzera5664da2010-08-12 04:14:01 +01002155/*
2156 * Functions to manage md->type.
2157 * All are required to hold md->type_lock.
2158 */
2159void dm_lock_md_type(struct mapped_device *md)
2160{
2161 mutex_lock(&md->type_lock);
2162}
2163
2164void dm_unlock_md_type(struct mapped_device *md)
2165{
2166 mutex_unlock(&md->type_lock);
2167}
2168
Bart Van Assche7e0d5742017-04-27 10:11:23 -07002169void dm_set_md_type(struct mapped_device *md, enum dm_queue_mode type)
Mike Snitzera5664da2010-08-12 04:14:01 +01002170{
Mike Snitzer00c4fc32013-08-27 18:57:03 -04002171 BUG_ON(!mutex_is_locked(&md->type_lock));
Mike Snitzera5664da2010-08-12 04:14:01 +01002172 md->type = type;
2173}
2174
Bart Van Assche7e0d5742017-04-27 10:11:23 -07002175enum dm_queue_mode dm_get_md_type(struct mapped_device *md)
Mike Snitzera5664da2010-08-12 04:14:01 +01002176{
2177 return md->type;
2178}
2179
Alasdair G Kergon36a04562011-10-31 20:19:04 +00002180struct target_type *dm_get_immutable_target_type(struct mapped_device *md)
2181{
2182 return md->immutable_target_type;
2183}
2184
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002185/*
Mike Snitzerf84cb8a2013-09-19 12:13:58 -04002186 * The queue_limits are only valid as long as you have a reference
2187 * count on 'md'.
2188 */
2189struct queue_limits *dm_get_queue_limits(struct mapped_device *md)
2190{
2191 BUG_ON(!atomic_read(&md->holders));
2192 return &md->queue->limits;
2193}
2194EXPORT_SYMBOL_GPL(dm_get_queue_limits);
2195
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002196/*
2197 * Setup the DM device's queue based on md's type
2198 */
Mike Snitzer591ddcf2016-01-31 12:05:42 -05002199int dm_setup_md_queue(struct mapped_device *md, struct dm_table *t)
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002200{
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002201 int r;
Mike Snitzerc100ec42018-01-08 20:03:04 -05002202 struct queue_limits limits;
Bart Van Assche7e0d5742017-04-27 10:11:23 -07002203 enum dm_queue_mode type = dm_get_md_type(md);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002204
Toshi Kani545ed202016-06-22 17:54:53 -06002205 switch (type) {
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002206 case DM_TYPE_REQUEST_BASED:
Mike Snitzerc12c9a32018-01-12 09:32:21 -05002207 dm_init_normal_md_queue(md);
Christoph Hellwigeb8db832017-01-22 18:32:46 +01002208 r = dm_old_init_request_queue(md, t);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002209 if (r) {
Mike Snitzereca7ee62016-02-20 13:45:38 -05002210 DMERR("Cannot initialize queue for request-based mapped device");
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002211 return r;
Mike Snitzerff36ab32015-02-23 17:56:37 -05002212 }
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002213 break;
2214 case DM_TYPE_MQ_REQUEST_BASED:
Mike Snitzere83068a2016-05-24 21:16:51 -04002215 r = dm_mq_init_request_queue(md, t);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002216 if (r) {
Mike Snitzereca7ee62016-02-20 13:45:38 -05002217 DMERR("Cannot initialize queue for request-based dm-mq mapped device");
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002218 return r;
2219 }
2220 break;
2221 case DM_TYPE_BIO_BASED:
Toshi Kani545ed202016-06-22 17:54:53 -06002222 case DM_TYPE_DAX_BIO_BASED:
Mike Snitzereca7ee62016-02-20 13:45:38 -05002223 dm_init_normal_md_queue(md);
Mike Snitzerff36ab32015-02-23 17:56:37 -05002224 blk_queue_make_request(md->queue, dm_make_request);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002225 break;
Mike Snitzer978e51b2017-12-09 15:16:42 -05002226 case DM_TYPE_NVME_BIO_BASED:
2227 dm_init_normal_md_queue(md);
2228 blk_queue_make_request(md->queue, dm_make_request_nvme);
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002229 break;
Bart Van Assche7e0d5742017-04-27 10:11:23 -07002230 case DM_TYPE_NONE:
2231 WARN_ON_ONCE(true);
2232 break;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002233 }
Tejun Heof331c022008-09-03 09:01:48 +02002234
Mike Snitzerc100ec42018-01-08 20:03:04 -05002235 r = dm_calculate_queue_limits(t, &limits);
2236 if (r) {
2237 DMERR("Cannot calculate initial queue limits");
2238 return r;
2239 }
2240 dm_table_set_restrictions(t, md->queue, &limits);
2241 blk_register_queue(md->disk);
2242
Alasdair G Kergon17b2f662006-06-26 00:27:33 -07002243 return 0;
David Teigland637842c2006-01-06 00:20:00 -08002244}
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002245
2246struct mapped_device *dm_get_md(dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247{
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002248 struct mapped_device *md;
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002249 unsigned minor = MINOR(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250
David Teigland637842c2006-01-06 00:20:00 -08002251 if (MAJOR(dev) != _major || minor >= (1 << MINORBITS))
2252 return NULL;
2253
David Teiglandd229a952006-01-06 00:20:01 -08002254 spin_lock(&_minor_lock);
2255
2256 md = idr_find(&_minor_idr, minor);
Mike Snitzer49de5762017-11-06 16:40:10 -05002257 if (!md || md == MINOR_ALLOCED || (MINOR(disk_devt(dm_disk(md))) != minor) ||
2258 test_bit(DMF_FREEING, &md->flags) || dm_deleting_md(md)) {
2259 md = NULL;
2260 goto out;
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08002261 }
Mike Snitzer49de5762017-11-06 16:40:10 -05002262 dm_get(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263out:
2264 spin_unlock(&_minor_lock);
2265
2266 return md;
Alasdair G Kergon72d94862006-06-26 00:27:35 -07002267}
2268EXPORT_SYMBOL_GPL(dm_get_md);
2269
2270void *dm_get_mdptr(struct mapped_device *md)
2271{
2272 return md->interface_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273}
2274
Mike Anderson1134e5a2006-03-27 01:17:54 -08002275void dm_set_mdptr(struct mapped_device *md, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276{
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002277 md->interface_ptr = ptr;
2278}
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002279
Mike Anderson1134e5a2006-03-27 01:17:54 -08002280void dm_get(struct mapped_device *md)
Tejun Heof331c022008-09-03 09:01:48 +02002281{
2282 atomic_inc(&md->holders);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002283 BUG_ON(test_bit(DMF_FREEING, &md->flags));
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002284}
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002285
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286int dm_hold(struct mapped_device *md)
2287{
2288 spin_lock(&_minor_lock);
Milan Broz784aae72009-01-06 03:05:12 +00002289 if (test_bit(DMF_FREEING, &md->flags)) {
Mike Anderson1134e5a2006-03-27 01:17:54 -08002290 spin_unlock(&_minor_lock);
Mikulas Patockaa1b51e92009-01-06 03:04:53 +00002291 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 }
2293 dm_get(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 spin_unlock(&_minor_lock);
Edward Goggin79eb8852007-05-09 02:32:56 -07002295 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296}
Mikulas Patocka401600d2009-04-02 19:55:38 +01002297EXPORT_SYMBOL_GPL(dm_hold);
Milan Broz46125c12008-02-08 02:10:30 +00002298
2299const char *dm_device_name(struct mapped_device *md)
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002300{
2301 return md->name;
2302}
2303EXPORT_SYMBOL_GPL(dm_device_name);
2304
Milan Broz46125c12008-02-08 02:10:30 +00002305static void __dm_destroy(struct mapped_device *md, bool wait)
2306{
Mikulas Patocka401600d2009-04-02 19:55:38 +01002307 struct dm_table *map;
Milan Broz46125c12008-02-08 02:10:30 +00002308 int srcu_idx;
2309
2310 might_sleep();
2311
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 spin_lock(&_minor_lock);
2313 idr_replace(&_minor_idr, MINOR_ALLOCED, MINOR(disk_devt(dm_disk(md))));
2314 set_bit(DMF_FREEING, &md->flags);
2315 spin_unlock(&_minor_lock);
2316
Mike Snitzerc12c9a32018-01-12 09:32:21 -05002317 blk_set_queue_dying(md->queue);
Bart Van Assche3b785fb2016-08-31 15:17:49 -07002318
Mike Snitzer02233342015-03-10 23:49:26 -04002319 if (dm_request_based(md) && md->kworker_task)
Petr Mladek39891442016-10-11 13:55:20 -07002320 kthread_flush_worker(&md->kworker);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321
2322 /*
2323 * Take suspend_lock so that presuspend and postsuspend methods
2324 * do not race with internal suspend.
2325 */
2326 mutex_lock(&md->suspend_lock);
Junichi Nomura2a708cf2015-10-01 08:31:51 +00002327 map = dm_get_live_table(md, &srcu_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 if (!dm_suspended_md(md)) {
2329 dm_table_presuspend_targets(map);
2330 dm_table_postsuspend_targets(map);
2331 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 /* dm_put_live_table must be before msleep, otherwise deadlock is possible */
2333 dm_put_live_table(md, srcu_idx);
Junichi Nomura2a708cf2015-10-01 08:31:51 +00002334 mutex_unlock(&md->suspend_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335
2336 /*
2337 * Rare, but there may be I/O requests still going to complete,
2338 * for example. Wait for all references to disappear.
2339 * No one should increment the reference count of the mapped_device,
2340 * after the mapped_device state becomes DMF_FREEING.
2341 */
2342 if (wait)
2343 while (atomic_read(&md->holders))
2344 msleep(1);
2345 else if (atomic_read(&md->holders))
2346 DMWARN("%s: Forcibly removing mapped_device still in use! (%d users)",
2347 dm_device_name(md), atomic_read(&md->holders));
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07002348
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 dm_sysfs_exit(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002350 dm_table_destroy(__unbind(md));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 free_dev(md);
2352}
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002353
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07002354void dm_destroy(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355{
2356 __dm_destroy(md, true);
Milan Broz46125c12008-02-08 02:10:30 +00002357}
2358
2359void dm_destroy_immediate(struct mapped_device *md)
2360{
2361 __dm_destroy(md, false);
2362}
2363
2364void dm_put(struct mapped_device *md)
2365{
2366 atomic_dec(&md->holders);
2367}
2368EXPORT_SYMBOL_GPL(dm_put);
Mikulas Patocka401600d2009-04-02 19:55:38 +01002369
Bart Van Asscheb48633f2016-08-31 15:16:02 -07002370static int dm_wait_for_completion(struct mapped_device *md, long task_state)
Milan Broz46125c12008-02-08 02:10:30 +00002371{
2372 int r = 0;
Bart Van Assche9f4c3f82016-08-31 15:16:43 -07002373 DEFINE_WAIT(wait);
Milan Broz46125c12008-02-08 02:10:30 +00002374
2375 while (1) {
Bart Van Assche9f4c3f82016-08-31 15:16:43 -07002376 prepare_to_wait(&md->wait, &wait, task_state);
Milan Broz46125c12008-02-08 02:10:30 +00002377
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002378 if (!md_in_flight(md))
2379 break;
Milan Broz46125c12008-02-08 02:10:30 +00002380
Bart Van Asschee3fabdf2016-08-31 15:16:22 -07002381 if (signal_pending_state(task_state, current)) {
Milan Broz46125c12008-02-08 02:10:30 +00002382 r = -EINTR;
2383 break;
2384 }
2385
2386 io_schedule();
2387 }
Bart Van Assche9f4c3f82016-08-31 15:16:43 -07002388 finish_wait(&md->wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389
2390 return r;
2391}
2392
Mikulas Patockaef208582009-04-02 19:55:38 +01002393/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 * Process the deferred bios
Mikulas Patockaef208582009-04-02 19:55:38 +01002395 */
2396static void dm_wq_work(struct work_struct *work)
Milan Broz6d6f10d2008-02-08 02:10:22 +00002397{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 struct mapped_device *md = container_of(work, struct mapped_device,
Mikulas Patockaef208582009-04-02 19:55:38 +01002399 work);
2400 struct bio *c;
Mikulas Patocka022c2612009-04-02 19:55:39 +01002401 int srcu_idx;
2402 struct dm_table *map;
2403
2404 map = dm_get_live_table(md, &srcu_idx);
2405
2406 while (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002407 spin_lock_irq(&md->deferred_lock);
2408 c = bio_list_pop(&md->deferred);
Mikulas Patockaaf7e4662009-04-09 00:27:16 +01002409 spin_unlock_irq(&md->deferred_lock);
2410
2411 if (!c)
2412 break;
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002413
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002414 if (dm_request_based(md))
2415 generic_make_request(c);
Tejun Heo6a8736d2010-09-08 18:07:00 +02002416 else
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002417 __split_and_process_bio(md, map, c);
Mikulas Patocka022c2612009-04-02 19:55:39 +01002418 }
Milan Broz73d410c2008-02-08 02:10:25 +00002419
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002420 dm_put_live_table(md, srcu_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421}
2422
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002423static void dm_queue_flush(struct mapped_device *md)
Milan Broz304f3f62008-02-08 02:11:17 +00002424{
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002425 clear_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01002426 smp_mb__after_atomic();
Mikulas Patocka53d59142009-04-02 19:55:37 +01002427 queue_work(md->wq, &md->work);
Milan Broz304f3f62008-02-08 02:11:17 +00002428}
2429
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430/*
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002431 * Swap in a new table, returning the old one for the caller to destroy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 */
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002433struct dm_table *dm_swap_table(struct mapped_device *md, struct dm_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434{
Mike Christie87eb5b22013-03-01 22:45:48 +00002435 struct dm_table *live_map = NULL, *map = ERR_PTR(-EINVAL);
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002436 struct queue_limits limits;
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002437 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438
Daniel Walkere61290a2008-02-08 02:10:08 +00002439 mutex_lock(&md->suspend_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440
2441 /* device must be suspended */
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +00002442 if (!dm_suspended_md(md))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 goto out;
2444
Mike Snitzer3ae70652012-09-26 23:45:45 +01002445 /*
2446 * If the new table has no data devices, retain the existing limits.
2447 * This helps multipath with queue_if_no_path if all paths disappear,
2448 * then new I/O is queued based on these limits, and then some paths
2449 * reappear.
2450 */
2451 if (dm_table_has_no_data_devices(table)) {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002452 live_map = dm_get_live_table_fast(md);
Mike Snitzer3ae70652012-09-26 23:45:45 +01002453 if (live_map)
2454 limits = md->queue->limits;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002455 dm_put_live_table_fast(md);
Mike Snitzer3ae70652012-09-26 23:45:45 +01002456 }
2457
Mike Christie87eb5b22013-03-01 22:45:48 +00002458 if (!live_map) {
2459 r = dm_calculate_queue_limits(table, &limits);
2460 if (r) {
2461 map = ERR_PTR(r);
2462 goto out;
2463 }
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002464 }
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002465
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002466 map = __bind(md, table, &limits);
Mikulas Patocka62e08242017-09-20 07:29:49 -04002467 dm_issue_global_event();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07002469out:
Daniel Walkere61290a2008-02-08 02:10:08 +00002470 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002471 return map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472}
2473
2474/*
2475 * Functions to lock and unlock any filesystem running on the
2476 * device.
2477 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002478static int lock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479{
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08002480 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481
2482 WARN_ON(md->frozen_sb);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002483
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002484 md->frozen_sb = freeze_bdev(md->bdev);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002485 if (IS_ERR(md->frozen_sb)) {
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002486 r = PTR_ERR(md->frozen_sb);
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08002487 md->frozen_sb = NULL;
2488 return r;
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002489 }
2490
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002491 set_bit(DMF_FROZEN, &md->flags);
2492
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 return 0;
2494}
2495
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002496static void unlock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497{
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002498 if (!test_bit(DMF_FROZEN, &md->flags))
2499 return;
2500
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002501 thaw_bdev(md->bdev, md->frozen_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 md->frozen_sb = NULL;
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002503 clear_bit(DMF_FROZEN, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504}
2505
2506/*
Bart Van Asscheb48633f2016-08-31 15:16:02 -07002507 * @suspend_flags: DM_SUSPEND_LOCKFS_FLAG and/or DM_SUSPEND_NOFLUSH_FLAG
2508 * @task_state: e.g. TASK_INTERRUPTIBLE or TASK_UNINTERRUPTIBLE
2509 * @dmf_suspended_flag: DMF_SUSPENDED or DMF_SUSPENDED_INTERNALLY
2510 *
Mike Snitzerffcc3932014-10-28 18:34:52 -04002511 * If __dm_suspend returns 0, the device is completely quiescent
2512 * now. There is no request-processing activity. All new requests
2513 * are being added to md->deferred list.
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002514 */
Mike Snitzerffcc3932014-10-28 18:34:52 -04002515static int __dm_suspend(struct mapped_device *md, struct dm_table *map,
Bart Van Asscheb48633f2016-08-31 15:16:02 -07002516 unsigned suspend_flags, long task_state,
Mike Snitzereaf9a732016-08-02 13:07:20 -04002517 int dmf_suspended_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518{
Mike Snitzerffcc3932014-10-28 18:34:52 -04002519 bool do_lockfs = suspend_flags & DM_SUSPEND_LOCKFS_FLAG;
2520 bool noflush = suspend_flags & DM_SUSPEND_NOFLUSH_FLAG;
2521 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522
Bart Van Assche5a8f1f82016-08-31 15:17:04 -07002523 lockdep_assert_held(&md->suspend_lock);
2524
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002525 /*
2526 * DMF_NOFLUSH_SUSPENDING must be set before presuspend.
2527 * This flag is cleared before dm_suspend returns.
2528 */
2529 if (noflush)
2530 set_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
Bart Van Assche86331f32017-04-27 10:11:26 -07002531 else
2532 pr_debug("%s: suspending with flush\n", dm_device_name(md));
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002533
Mike Snitzerd67ee212014-10-28 20:13:31 -04002534 /*
2535 * This gets reverted if there's an error later and the targets
2536 * provide the .presuspend_undo hook.
2537 */
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002538 dm_table_presuspend_targets(map);
2539
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002540 /*
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002541 * Flush I/O to the device.
2542 * Any I/O submitted after lock_fs() may not be flushed.
2543 * noflush takes precedence over do_lockfs.
2544 * (lock_fs() flushes I/Os and waits for them to complete.)
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002545 */
2546 if (!noflush && do_lockfs) {
2547 r = lock_fs(md);
Mike Snitzerd67ee212014-10-28 20:13:31 -04002548 if (r) {
2549 dm_table_presuspend_undo_targets(map);
Mike Snitzerffcc3932014-10-28 18:34:52 -04002550 return r;
Mike Snitzerd67ee212014-10-28 20:13:31 -04002551 }
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002552 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553
2554 /*
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002555 * Here we must make sure that no processes are submitting requests
2556 * to target drivers i.e. no one may be executing
2557 * __split_and_process_bio. This is called from dm_request and
2558 * dm_wq_work.
2559 *
2560 * To get all processes out of __split_and_process_bio in dm_request,
2561 * we take the write lock. To prevent any process from reentering
Tejun Heo6a8736d2010-09-08 18:07:00 +02002562 * __split_and_process_bio from dm_request and quiesce the thread
2563 * (dm_wq_work), we set BMF_BLOCK_IO_FOR_SUSPEND and call
2564 * flush_workqueue(md->wq).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 */
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01002566 set_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
Hannes Reinecke41abc4e2014-11-05 14:35:50 +01002567 if (map)
2568 synchronize_srcu(&md->io_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002570 /*
Tejun Heo29e40132010-09-08 18:07:00 +02002571 * Stop md->queue before flushing md->wq in case request-based
2572 * dm defers requests to md->wq from md->queue.
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002573 */
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002574 if (dm_request_based(md)) {
Mike Snitzereca7ee62016-02-20 13:45:38 -05002575 dm_stop_queue(md->queue);
Mike Snitzer02233342015-03-10 23:49:26 -04002576 if (md->kworker_task)
Petr Mladek39891442016-10-11 13:55:20 -07002577 kthread_flush_worker(&md->kworker);
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002578 }
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002579
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002580 flush_workqueue(md->wq);
2581
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 /*
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002583 * At this point no more requests are entering target request routines.
2584 * We call dm_wait_for_completion to wait for all existing requests
2585 * to finish.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 */
Bart Van Asscheb48633f2016-08-31 15:16:02 -07002587 r = dm_wait_for_completion(md, task_state);
Mike Snitzereaf9a732016-08-02 13:07:20 -04002588 if (!r)
2589 set_bit(dmf_suspended_flag, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590
Milan Broz6d6f10d2008-02-08 02:10:22 +00002591 if (noflush)
Mikulas Patocka022c2612009-04-02 19:55:39 +01002592 clear_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
Hannes Reinecke41abc4e2014-11-05 14:35:50 +01002593 if (map)
2594 synchronize_srcu(&md->io_barrier);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002595
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 /* were we interrupted ? */
Milan Broz46125c12008-02-08 02:10:30 +00002597 if (r < 0) {
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002598 dm_queue_flush(md);
Milan Broz73d410c2008-02-08 02:10:25 +00002599
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002600 if (dm_request_based(md))
Mike Snitzereca7ee62016-02-20 13:45:38 -05002601 dm_start_queue(md->queue);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002602
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002603 unlock_fs(md);
Mike Snitzerd67ee212014-10-28 20:13:31 -04002604 dm_table_presuspend_undo_targets(map);
Mike Snitzerffcc3932014-10-28 18:34:52 -04002605 /* pushback list is already flushed, so skip flush */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002606 }
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002607
Mike Snitzerffcc3932014-10-28 18:34:52 -04002608 return r;
2609}
2610
2611/*
2612 * We need to be able to change a mapping table under a mounted
2613 * filesystem. For example we might want to move some data in
2614 * the background. Before the table can be swapped with
2615 * dm_bind_table, dm_suspend must be called to flush any in
2616 * flight bios and ensure that any further io gets deferred.
2617 */
2618/*
2619 * Suspend mechanism in request-based dm.
2620 *
2621 * 1. Flush all I/Os by lock_fs() if needed.
2622 * 2. Stop dispatching any I/O by stopping the request_queue.
2623 * 3. Wait for all in-flight I/Os to be completed or requeued.
2624 *
2625 * To abort suspend, start the request_queue.
2626 */
2627int dm_suspend(struct mapped_device *md, unsigned suspend_flags)
2628{
2629 struct dm_table *map = NULL;
2630 int r = 0;
2631
2632retry:
2633 mutex_lock_nested(&md->suspend_lock, SINGLE_DEPTH_NESTING);
2634
2635 if (dm_suspended_md(md)) {
2636 r = -EINVAL;
2637 goto out_unlock;
2638 }
2639
2640 if (dm_suspended_internally_md(md)) {
2641 /* already internally suspended, wait for internal resume */
2642 mutex_unlock(&md->suspend_lock);
2643 r = wait_on_bit(&md->flags, DMF_SUSPENDED_INTERNALLY, TASK_INTERRUPTIBLE);
2644 if (r)
2645 return r;
2646 goto retry;
2647 }
2648
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002649 map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mike Snitzerffcc3932014-10-28 18:34:52 -04002650
Mike Snitzereaf9a732016-08-02 13:07:20 -04002651 r = __dm_suspend(md, map, suspend_flags, TASK_INTERRUPTIBLE, DMF_SUSPENDED);
Mike Snitzerffcc3932014-10-28 18:34:52 -04002652 if (r)
2653 goto out_unlock;
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002654
Kiyoshi Ueda4d4471c2009-12-10 23:52:26 +00002655 dm_table_postsuspend_targets(map);
2656
Alasdair G Kergond2874832006-11-08 17:44:43 -08002657out_unlock:
Daniel Walkere61290a2008-02-08 02:10:08 +00002658 mutex_unlock(&md->suspend_lock);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002659 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660}
2661
Mike Snitzerffcc3932014-10-28 18:34:52 -04002662static int __dm_resume(struct mapped_device *md, struct dm_table *map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663{
Mike Snitzerffcc3932014-10-28 18:34:52 -04002664 if (map) {
2665 int r = dm_table_resume_targets(map);
2666 if (r)
2667 return r;
2668 }
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002669
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002670 dm_queue_flush(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002671
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002672 /*
2673 * Flushing deferred I/Os must be done after targets are resumed
2674 * so that mapping of targets can work correctly.
2675 * Request-based dm is queueing the deferred I/Os in its request_queue.
2676 */
2677 if (dm_request_based(md))
Mike Snitzereca7ee62016-02-20 13:45:38 -05002678 dm_start_queue(md->queue);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002679
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002680 unlock_fs(md);
2681
Mike Snitzerffcc3932014-10-28 18:34:52 -04002682 return 0;
2683}
2684
2685int dm_resume(struct mapped_device *md)
2686{
Minfei Huang8dc23652016-09-06 16:00:29 +08002687 int r;
Mike Snitzerffcc3932014-10-28 18:34:52 -04002688 struct dm_table *map = NULL;
2689
2690retry:
Minfei Huang8dc23652016-09-06 16:00:29 +08002691 r = -EINVAL;
Mike Snitzerffcc3932014-10-28 18:34:52 -04002692 mutex_lock_nested(&md->suspend_lock, SINGLE_DEPTH_NESTING);
2693
2694 if (!dm_suspended_md(md))
2695 goto out;
2696
2697 if (dm_suspended_internally_md(md)) {
2698 /* already internally suspended, wait for internal resume */
2699 mutex_unlock(&md->suspend_lock);
2700 r = wait_on_bit(&md->flags, DMF_SUSPENDED_INTERNALLY, TASK_INTERRUPTIBLE);
2701 if (r)
2702 return r;
2703 goto retry;
2704 }
2705
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002706 map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mike Snitzerffcc3932014-10-28 18:34:52 -04002707 if (!map || !dm_table_get_size(map))
2708 goto out;
2709
2710 r = __dm_resume(md, map);
2711 if (r)
2712 goto out;
2713
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002714 clear_bit(DMF_SUSPENDED, &md->flags);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002715out:
Daniel Walkere61290a2008-02-08 02:10:08 +00002716 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002717
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002718 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719}
2720
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002721/*
2722 * Internal suspend/resume works like userspace-driven suspend. It waits
2723 * until all bios finish and prevents issuing new bios to the target drivers.
2724 * It may be used only from the kernel.
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002725 */
2726
Mike Snitzerffcc3932014-10-28 18:34:52 -04002727static void __dm_internal_suspend(struct mapped_device *md, unsigned suspend_flags)
2728{
2729 struct dm_table *map = NULL;
2730
Bart Van Assche1ea06542017-04-27 10:11:21 -07002731 lockdep_assert_held(&md->suspend_lock);
2732
Mikulas Patocka96b26c82015-01-08 18:52:26 -05002733 if (md->internal_suspend_count++)
Mike Snitzerffcc3932014-10-28 18:34:52 -04002734 return; /* nested internal suspend */
2735
2736 if (dm_suspended_md(md)) {
2737 set_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
2738 return; /* nest suspend */
2739 }
2740
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002741 map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mike Snitzerffcc3932014-10-28 18:34:52 -04002742
2743 /*
2744 * Using TASK_UNINTERRUPTIBLE because only NOFLUSH internal suspend is
2745 * supported. Properly supporting a TASK_INTERRUPTIBLE internal suspend
2746 * would require changing .presuspend to return an error -- avoid this
2747 * until there is a need for more elaborate variants of internal suspend.
2748 */
Mike Snitzereaf9a732016-08-02 13:07:20 -04002749 (void) __dm_suspend(md, map, suspend_flags, TASK_UNINTERRUPTIBLE,
2750 DMF_SUSPENDED_INTERNALLY);
Mike Snitzerffcc3932014-10-28 18:34:52 -04002751
2752 dm_table_postsuspend_targets(map);
2753}
2754
2755static void __dm_internal_resume(struct mapped_device *md)
2756{
Mikulas Patocka96b26c82015-01-08 18:52:26 -05002757 BUG_ON(!md->internal_suspend_count);
2758
2759 if (--md->internal_suspend_count)
Mike Snitzerffcc3932014-10-28 18:34:52 -04002760 return; /* resume from nested internal suspend */
2761
2762 if (dm_suspended_md(md))
2763 goto done; /* resume from nested suspend */
2764
2765 /*
2766 * NOTE: existing callers don't need to call dm_table_resume_targets
2767 * (which may fail -- so best to avoid it for now by passing NULL map)
2768 */
2769 (void) __dm_resume(md, NULL);
2770
2771done:
2772 clear_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
2773 smp_mb__after_atomic();
2774 wake_up_bit(&md->flags, DMF_SUSPENDED_INTERNALLY);
2775}
2776
2777void dm_internal_suspend_noflush(struct mapped_device *md)
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002778{
2779 mutex_lock(&md->suspend_lock);
Mike Snitzerffcc3932014-10-28 18:34:52 -04002780 __dm_internal_suspend(md, DM_SUSPEND_NOFLUSH_FLAG);
2781 mutex_unlock(&md->suspend_lock);
2782}
2783EXPORT_SYMBOL_GPL(dm_internal_suspend_noflush);
2784
2785void dm_internal_resume(struct mapped_device *md)
2786{
2787 mutex_lock(&md->suspend_lock);
2788 __dm_internal_resume(md);
2789 mutex_unlock(&md->suspend_lock);
2790}
2791EXPORT_SYMBOL_GPL(dm_internal_resume);
2792
2793/*
2794 * Fast variants of internal suspend/resume hold md->suspend_lock,
2795 * which prevents interaction with userspace-driven suspend.
2796 */
2797
2798void dm_internal_suspend_fast(struct mapped_device *md)
2799{
2800 mutex_lock(&md->suspend_lock);
2801 if (dm_suspended_md(md) || dm_suspended_internally_md(md))
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002802 return;
2803
2804 set_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
2805 synchronize_srcu(&md->io_barrier);
2806 flush_workqueue(md->wq);
2807 dm_wait_for_completion(md, TASK_UNINTERRUPTIBLE);
2808}
Mikulas Patockab735fed2015-02-26 11:40:35 -05002809EXPORT_SYMBOL_GPL(dm_internal_suspend_fast);
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002810
Mike Snitzerffcc3932014-10-28 18:34:52 -04002811void dm_internal_resume_fast(struct mapped_device *md)
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002812{
Mike Snitzerffcc3932014-10-28 18:34:52 -04002813 if (dm_suspended_md(md) || dm_suspended_internally_md(md))
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002814 goto done;
2815
2816 dm_queue_flush(md);
2817
2818done:
2819 mutex_unlock(&md->suspend_lock);
2820}
Mikulas Patockab735fed2015-02-26 11:40:35 -05002821EXPORT_SYMBOL_GPL(dm_internal_resume_fast);
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002822
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823/*-----------------------------------------------------------------
2824 * Event notification.
2825 *---------------------------------------------------------------*/
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00002826int dm_kobject_uevent(struct mapped_device *md, enum kobject_action action,
Milan Broz60935eb2009-06-22 10:12:30 +01002827 unsigned cookie)
Alasdair G Kergon69267a32007-12-13 14:15:57 +00002828{
Milan Broz60935eb2009-06-22 10:12:30 +01002829 char udev_cookie[DM_COOKIE_LENGTH];
2830 char *envp[] = { udev_cookie, NULL };
2831
2832 if (!cookie)
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00002833 return kobject_uevent(&disk_to_dev(md->disk)->kobj, action);
Milan Broz60935eb2009-06-22 10:12:30 +01002834 else {
2835 snprintf(udev_cookie, DM_COOKIE_LENGTH, "%s=%u",
2836 DM_COOKIE_ENV_VAR_NAME, cookie);
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00002837 return kobject_uevent_env(&disk_to_dev(md->disk)->kobj,
2838 action, envp);
Milan Broz60935eb2009-06-22 10:12:30 +01002839 }
Alasdair G Kergon69267a32007-12-13 14:15:57 +00002840}
2841
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002842uint32_t dm_next_uevent_seq(struct mapped_device *md)
2843{
2844 return atomic_add_return(1, &md->uevent_seq);
2845}
2846
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847uint32_t dm_get_event_nr(struct mapped_device *md)
2848{
2849 return atomic_read(&md->event_nr);
2850}
2851
2852int dm_wait_event(struct mapped_device *md, int event_nr)
2853{
2854 return wait_event_interruptible(md->eventq,
2855 (event_nr != atomic_read(&md->event_nr)));
2856}
2857
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002858void dm_uevent_add(struct mapped_device *md, struct list_head *elist)
2859{
2860 unsigned long flags;
2861
2862 spin_lock_irqsave(&md->uevent_lock, flags);
2863 list_add(elist, &md->uevent_list);
2864 spin_unlock_irqrestore(&md->uevent_lock, flags);
2865}
2866
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867/*
2868 * The gendisk is only valid as long as you have a reference
2869 * count on 'md'.
2870 */
2871struct gendisk *dm_disk(struct mapped_device *md)
2872{
2873 return md->disk;
2874}
Sami Tolvanen65ff5b72015-03-18 15:52:14 +00002875EXPORT_SYMBOL_GPL(dm_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876
Milan Broz784aae72009-01-06 03:05:12 +00002877struct kobject *dm_kobject(struct mapped_device *md)
2878{
Mikulas Patocka2995fa72014-01-13 19:37:54 -05002879 return &md->kobj_holder.kobj;
Milan Broz784aae72009-01-06 03:05:12 +00002880}
2881
Milan Broz784aae72009-01-06 03:05:12 +00002882struct mapped_device *dm_get_from_kobject(struct kobject *kobj)
2883{
2884 struct mapped_device *md;
2885
Mikulas Patocka2995fa72014-01-13 19:37:54 -05002886 md = container_of(kobj, struct mapped_device, kobj_holder.kobj);
Milan Broz784aae72009-01-06 03:05:12 +00002887
Hou Taob9a41d22017-11-01 15:42:36 +08002888 spin_lock(&_minor_lock);
2889 if (test_bit(DMF_FREEING, &md->flags) || dm_deleting_md(md)) {
2890 md = NULL;
2891 goto out;
2892 }
Milan Broz784aae72009-01-06 03:05:12 +00002893 dm_get(md);
Hou Taob9a41d22017-11-01 15:42:36 +08002894out:
2895 spin_unlock(&_minor_lock);
2896
Milan Broz784aae72009-01-06 03:05:12 +00002897 return md;
2898}
2899
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +00002900int dm_suspended_md(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901{
2902 return test_bit(DMF_SUSPENDED, &md->flags);
2903}
2904
Mike Snitzerffcc3932014-10-28 18:34:52 -04002905int dm_suspended_internally_md(struct mapped_device *md)
2906{
2907 return test_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
2908}
2909
Mikulas Patocka2c140a22013-11-01 18:27:41 -04002910int dm_test_deferred_remove_flag(struct mapped_device *md)
2911{
2912 return test_bit(DMF_DEFERRED_REMOVE, &md->flags);
2913}
2914
Kiyoshi Ueda64dbce52009-12-10 23:52:27 +00002915int dm_suspended(struct dm_target *ti)
2916{
Kiyoshi Uedaecdb2e22010-03-06 02:29:52 +00002917 return dm_suspended_md(dm_table_get_md(ti->table));
Kiyoshi Ueda64dbce52009-12-10 23:52:27 +00002918}
2919EXPORT_SYMBOL_GPL(dm_suspended);
2920
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002921int dm_noflush_suspending(struct dm_target *ti)
2922{
Kiyoshi Uedaecdb2e22010-03-06 02:29:52 +00002923 return __noflush_suspending(dm_table_get_md(ti->table));
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002924}
2925EXPORT_SYMBOL_GPL(dm_noflush_suspending);
2926
Bart Van Assche7e0d5742017-04-27 10:11:23 -07002927struct dm_md_mempools *dm_alloc_md_mempools(struct mapped_device *md, enum dm_queue_mode type,
Mike Snitzer0776aa02017-12-08 14:40:52 -05002928 unsigned integrity, unsigned per_io_data_size,
2929 unsigned min_pool_size)
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002930{
Mike Snitzer115485e2016-02-22 12:16:21 -05002931 struct dm_md_mempools *pools = kzalloc_node(sizeof(*pools), GFP_KERNEL, md->numa_node_id);
Mike Snitzer78d8e582015-06-26 10:01:13 -04002932 unsigned int pool_size = 0;
Mike Snitzer64f52b02017-12-11 23:17:47 -05002933 unsigned int front_pad, io_front_pad;
Kent Overstreet6f1c8192018-05-20 18:25:53 -04002934 int ret;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002935
2936 if (!pools)
Mike Snitzer4e6e36c2015-06-26 09:42:57 -04002937 return NULL;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002938
Mike Snitzer78d8e582015-06-26 10:01:13 -04002939 switch (type) {
2940 case DM_TYPE_BIO_BASED:
Toshi Kani545ed202016-06-22 17:54:53 -06002941 case DM_TYPE_DAX_BIO_BASED:
Mike Snitzer22c11852017-12-04 21:07:37 -05002942 case DM_TYPE_NVME_BIO_BASED:
Mike Snitzer0776aa02017-12-08 14:40:52 -05002943 pool_size = max(dm_get_reserved_bio_based_ios(), min_pool_size);
Mike Snitzer30187e12016-01-31 13:28:26 -05002944 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 -05002945 io_front_pad = roundup(front_pad, __alignof__(struct dm_io)) + offsetof(struct dm_io, tio);
Kent Overstreet6f1c8192018-05-20 18:25:53 -04002946 ret = bioset_init(&pools->io_bs, pool_size, io_front_pad, 0);
2947 if (ret)
Mike Snitzer64f52b02017-12-11 23:17:47 -05002948 goto out;
Kent Overstreet6f1c8192018-05-20 18:25:53 -04002949 if (integrity && bioset_integrity_create(&pools->io_bs, pool_size))
Christoph Hellwigeb8db832017-01-22 18:32:46 +01002950 goto out;
Mike Snitzer78d8e582015-06-26 10:01:13 -04002951 break;
2952 case DM_TYPE_REQUEST_BASED:
Mike Snitzer78d8e582015-06-26 10:01:13 -04002953 case DM_TYPE_MQ_REQUEST_BASED:
Mike Snitzer0776aa02017-12-08 14:40:52 -05002954 pool_size = max(dm_get_reserved_rq_based_ios(), min_pool_size);
Mike Snitzer78d8e582015-06-26 10:01:13 -04002955 front_pad = offsetof(struct dm_rq_clone_bio_info, clone);
Mike Snitzer591ddcf2016-01-31 12:05:42 -05002956 /* per_io_data_size is used for blk-mq pdu at queue allocation */
Mike Snitzer78d8e582015-06-26 10:01:13 -04002957 break;
2958 default:
2959 BUG();
2960 }
2961
Kent Overstreet6f1c8192018-05-20 18:25:53 -04002962 ret = bioset_init(&pools->bs, pool_size, front_pad, 0);
2963 if (ret)
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00002964 goto out;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002965
Kent Overstreet6f1c8192018-05-20 18:25:53 -04002966 if (integrity && bioset_integrity_create(&pools->bs, pool_size))
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00002967 goto out;
Martin K. Petersena91a2782011-03-17 11:11:05 +01002968
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002969 return pools;
Mike Snitzer78d8e582015-06-26 10:01:13 -04002970
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00002971out:
2972 dm_free_md_mempools(pools);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002973
Mike Snitzer4e6e36c2015-06-26 09:42:57 -04002974 return NULL;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002975}
2976
2977void dm_free_md_mempools(struct dm_md_mempools *pools)
2978{
2979 if (!pools)
2980 return;
2981
Kent Overstreet6f1c8192018-05-20 18:25:53 -04002982 bioset_exit(&pools->bs);
2983 bioset_exit(&pools->io_bs);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002984
2985 kfree(pools);
2986}
2987
Christoph Hellwig9c72bad2016-07-08 21:23:51 +09002988struct dm_pr {
2989 u64 old_key;
2990 u64 new_key;
2991 u32 flags;
2992 bool fail_early;
2993};
2994
2995static int dm_call_pr(struct block_device *bdev, iterate_devices_callout_fn fn,
2996 void *data)
2997{
2998 struct mapped_device *md = bdev->bd_disk->private_data;
2999 struct dm_table *table;
3000 struct dm_target *ti;
3001 int ret = -ENOTTY, srcu_idx;
3002
3003 table = dm_get_live_table(md, &srcu_idx);
3004 if (!table || !dm_table_get_size(table))
3005 goto out;
3006
3007 /* We only support devices that have a single target */
3008 if (dm_table_get_num_targets(table) != 1)
3009 goto out;
3010 ti = dm_table_get_target(table, 0);
3011
3012 ret = -EINVAL;
3013 if (!ti->type->iterate_devices)
3014 goto out;
3015
3016 ret = ti->type->iterate_devices(ti, fn, data);
3017out:
3018 dm_put_live_table(md, srcu_idx);
3019 return ret;
3020}
3021
3022/*
3023 * For register / unregister we need to manually call out to every path.
3024 */
3025static int __dm_pr_register(struct dm_target *ti, struct dm_dev *dev,
3026 sector_t start, sector_t len, void *data)
3027{
3028 struct dm_pr *pr = data;
3029 const struct pr_ops *ops = dev->bdev->bd_disk->fops->pr_ops;
3030
3031 if (!ops || !ops->pr_register)
3032 return -EOPNOTSUPP;
3033 return ops->pr_register(dev->bdev, pr->old_key, pr->new_key, pr->flags);
3034}
3035
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003036static int dm_pr_register(struct block_device *bdev, u64 old_key, u64 new_key,
Mike Snitzer956a4022016-02-18 16:13:51 -05003037 u32 flags)
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003038{
Christoph Hellwig9c72bad2016-07-08 21:23:51 +09003039 struct dm_pr pr = {
3040 .old_key = old_key,
3041 .new_key = new_key,
3042 .flags = flags,
3043 .fail_early = true,
3044 };
3045 int ret;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003046
Christoph Hellwig9c72bad2016-07-08 21:23:51 +09003047 ret = dm_call_pr(bdev, __dm_pr_register, &pr);
3048 if (ret && new_key) {
3049 /* unregister all paths if we failed to register any path */
3050 pr.old_key = new_key;
3051 pr.new_key = 0;
3052 pr.flags = 0;
3053 pr.fail_early = false;
3054 dm_call_pr(bdev, __dm_pr_register, &pr);
3055 }
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003056
Christoph Hellwig9c72bad2016-07-08 21:23:51 +09003057 return ret;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003058}
3059
3060static int dm_pr_reserve(struct block_device *bdev, u64 key, enum pr_type type,
Mike Snitzer956a4022016-02-18 16:13:51 -05003061 u32 flags)
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003062{
3063 struct mapped_device *md = bdev->bd_disk->private_data;
3064 const struct pr_ops *ops;
Mike Snitzer971888c2018-04-03 15:05:12 -04003065 int r, srcu_idx;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003066
Mike Snitzer5bd5e8d2018-04-03 16:54:10 -04003067 r = dm_prepare_ioctl(md, &srcu_idx, &bdev);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003068 if (r < 0)
Mike Snitzer971888c2018-04-03 15:05:12 -04003069 goto out;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003070
3071 ops = bdev->bd_disk->fops->pr_ops;
3072 if (ops && ops->pr_reserve)
3073 r = ops->pr_reserve(bdev, key, type, flags);
3074 else
3075 r = -EOPNOTSUPP;
Mike Snitzer971888c2018-04-03 15:05:12 -04003076out:
3077 dm_unprepare_ioctl(md, srcu_idx);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003078 return r;
3079}
3080
3081static int dm_pr_release(struct block_device *bdev, u64 key, enum pr_type type)
3082{
3083 struct mapped_device *md = bdev->bd_disk->private_data;
3084 const struct pr_ops *ops;
Mike Snitzer971888c2018-04-03 15:05:12 -04003085 int r, srcu_idx;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003086
Mike Snitzer5bd5e8d2018-04-03 16:54:10 -04003087 r = dm_prepare_ioctl(md, &srcu_idx, &bdev);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003088 if (r < 0)
Mike Snitzer971888c2018-04-03 15:05:12 -04003089 goto out;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003090
3091 ops = bdev->bd_disk->fops->pr_ops;
3092 if (ops && ops->pr_release)
3093 r = ops->pr_release(bdev, key, type);
3094 else
3095 r = -EOPNOTSUPP;
Mike Snitzer971888c2018-04-03 15:05:12 -04003096out:
3097 dm_unprepare_ioctl(md, srcu_idx);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003098 return r;
3099}
3100
3101static int dm_pr_preempt(struct block_device *bdev, u64 old_key, u64 new_key,
Mike Snitzer956a4022016-02-18 16:13:51 -05003102 enum pr_type type, bool abort)
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003103{
3104 struct mapped_device *md = bdev->bd_disk->private_data;
3105 const struct pr_ops *ops;
Mike Snitzer971888c2018-04-03 15:05:12 -04003106 int r, srcu_idx;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003107
Mike Snitzer5bd5e8d2018-04-03 16:54:10 -04003108 r = dm_prepare_ioctl(md, &srcu_idx, &bdev);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003109 if (r < 0)
Mike Snitzer971888c2018-04-03 15:05:12 -04003110 goto out;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003111
3112 ops = bdev->bd_disk->fops->pr_ops;
3113 if (ops && ops->pr_preempt)
3114 r = ops->pr_preempt(bdev, old_key, new_key, type, abort);
3115 else
3116 r = -EOPNOTSUPP;
Mike Snitzer971888c2018-04-03 15:05:12 -04003117out:
3118 dm_unprepare_ioctl(md, srcu_idx);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003119 return r;
3120}
3121
3122static int dm_pr_clear(struct block_device *bdev, u64 key)
3123{
3124 struct mapped_device *md = bdev->bd_disk->private_data;
3125 const struct pr_ops *ops;
Mike Snitzer971888c2018-04-03 15:05:12 -04003126 int r, srcu_idx;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003127
Mike Snitzer5bd5e8d2018-04-03 16:54:10 -04003128 r = dm_prepare_ioctl(md, &srcu_idx, &bdev);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003129 if (r < 0)
Mike Snitzer971888c2018-04-03 15:05:12 -04003130 goto out;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003131
3132 ops = bdev->bd_disk->fops->pr_ops;
3133 if (ops && ops->pr_clear)
3134 r = ops->pr_clear(bdev, key);
3135 else
3136 r = -EOPNOTSUPP;
Mike Snitzer971888c2018-04-03 15:05:12 -04003137out:
3138 dm_unprepare_ioctl(md, srcu_idx);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003139 return r;
3140}
3141
3142static const struct pr_ops dm_pr_ops = {
3143 .pr_register = dm_pr_register,
3144 .pr_reserve = dm_pr_reserve,
3145 .pr_release = dm_pr_release,
3146 .pr_preempt = dm_pr_preempt,
3147 .pr_clear = dm_pr_clear,
3148};
3149
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07003150static const struct block_device_operations dm_blk_dops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151 .open = dm_blk_open,
3152 .release = dm_blk_close,
Milan Brozaa129a22006-10-03 01:15:15 -07003153 .ioctl = dm_blk_ioctl,
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08003154 .getgeo = dm_blk_getgeo,
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003155 .pr_ops = &dm_pr_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156 .owner = THIS_MODULE
3157};
3158
Dan Williamsf26c5712017-04-12 12:35:44 -07003159static const struct dax_operations dm_dax_ops = {
3160 .direct_access = dm_dax_direct_access,
Dan Williams7e026c82017-05-29 12:57:56 -07003161 .copy_from_iter = dm_dax_copy_from_iter,
Dan Williamsb3a9a0c2018-05-02 06:46:33 -07003162 .copy_to_iter = dm_dax_copy_to_iter,
Dan Williamsf26c5712017-04-12 12:35:44 -07003163};
3164
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165/*
3166 * module hooks
3167 */
3168module_init(dm_init);
3169module_exit(dm_exit);
3170
3171module_param(major, uint, 0);
3172MODULE_PARM_DESC(major, "The major number of the device mapper");
Mike Snitzerf4790822013-09-12 18:06:12 -04003173
Mike Snitzere8603132013-09-12 18:06:12 -04003174module_param(reserved_bio_based_ios, uint, S_IRUGO | S_IWUSR);
3175MODULE_PARM_DESC(reserved_bio_based_ios, "Reserved IOs in bio-based mempools");
3176
Mike Snitzer115485e2016-02-22 12:16:21 -05003177module_param(dm_numa_node, int, S_IRUGO | S_IWUSR);
3178MODULE_PARM_DESC(dm_numa_node, "NUMA node for DM device memory allocations");
3179
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180MODULE_DESCRIPTION(DM_NAME " driver");
3181MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
3182MODULE_LICENSE("GPL");