blob: d8a844c522e6ee7818f7e0caf26c9daaf078c93e [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
Mike Snitzerf4790822013-09-12 18:06:12 -0400161/*
Mike Snitzere8603132013-09-12 18:06:12 -0400162 * Bio-based DM's mempools' reserved IOs set by the user.
163 */
Mike Snitzer4cc96132016-05-12 16:28:10 -0400164#define RESERVED_BIO_BASED_IOS 16
Mike Snitzere8603132013-09-12 18:06:12 -0400165static unsigned reserved_bio_based_ios = RESERVED_BIO_BASED_IOS;
166
Mike Snitzer115485e2016-02-22 12:16:21 -0500167static int __dm_get_module_param_int(int *module_param, int min, int max)
168{
Mark Rutland6aa7de02017-10-23 14:07:29 -0700169 int param = READ_ONCE(*module_param);
Mike Snitzer115485e2016-02-22 12:16:21 -0500170 int modified_param = 0;
171 bool modified = true;
172
173 if (param < min)
174 modified_param = min;
175 else if (param > max)
176 modified_param = max;
177 else
178 modified = false;
179
180 if (modified) {
181 (void)cmpxchg(module_param, param, modified_param);
182 param = modified_param;
183 }
184
185 return param;
186}
187
Mike Snitzer4cc96132016-05-12 16:28:10 -0400188unsigned __dm_get_module_param(unsigned *module_param,
189 unsigned def, unsigned max)
Mike Snitzerf4790822013-09-12 18:06:12 -0400190{
Mark Rutland6aa7de02017-10-23 14:07:29 -0700191 unsigned param = READ_ONCE(*module_param);
Mike Snitzer09c2d532015-02-27 22:25:26 -0500192 unsigned modified_param = 0;
Mike Snitzerf4790822013-09-12 18:06:12 -0400193
Mike Snitzer09c2d532015-02-27 22:25:26 -0500194 if (!param)
195 modified_param = def;
196 else if (param > max)
197 modified_param = max;
Mike Snitzerf4790822013-09-12 18:06:12 -0400198
Mike Snitzer09c2d532015-02-27 22:25:26 -0500199 if (modified_param) {
200 (void)cmpxchg(module_param, param, modified_param);
201 param = modified_param;
Mike Snitzerf4790822013-09-12 18:06:12 -0400202 }
203
Mike Snitzer09c2d532015-02-27 22:25:26 -0500204 return param;
Mike Snitzerf4790822013-09-12 18:06:12 -0400205}
206
Mike Snitzere8603132013-09-12 18:06:12 -0400207unsigned dm_get_reserved_bio_based_ios(void)
208{
Mike Snitzer09c2d532015-02-27 22:25:26 -0500209 return __dm_get_module_param(&reserved_bio_based_ios,
Mike Snitzer4cc96132016-05-12 16:28:10 -0400210 RESERVED_BIO_BASED_IOS, DM_RESERVED_MAX_IOS);
Mike Snitzere8603132013-09-12 18:06:12 -0400211}
212EXPORT_SYMBOL_GPL(dm_get_reserved_bio_based_ios);
213
Mike Snitzer115485e2016-02-22 12:16:21 -0500214static unsigned dm_get_numa_node(void)
215{
216 return __dm_get_module_param_int(&dm_numa_node,
217 DM_NUMA_NODE, num_online_nodes() - 1);
218}
219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220static int __init local_init(void)
221{
Mike Snitzere689fba2019-02-20 15:37:44 -0500222 int r;
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500223
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100224 r = dm_uevent_init();
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100225 if (r)
Mike Snitzere689fba2019-02-20 15:37:44 -0500226 return r;
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100227
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400228 deferred_remove_workqueue = alloc_workqueue("kdmremove", WQ_UNBOUND, 1);
229 if (!deferred_remove_workqueue) {
230 r = -ENOMEM;
231 goto out_uevent_exit;
232 }
233
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 _major = major;
235 r = register_blkdev(_major, _name);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100236 if (r < 0)
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400237 goto out_free_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
239 if (!_major)
240 _major = r;
241
242 return 0;
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100243
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400244out_free_workqueue:
245 destroy_workqueue(deferred_remove_workqueue);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100246out_uevent_exit:
247 dm_uevent_exit();
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100248
249 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250}
251
252static void local_exit(void)
253{
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400254 flush_scheduled_work();
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400255 destroy_workqueue(deferred_remove_workqueue);
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400256
Akinobu Mita00d59402007-07-17 04:03:46 -0700257 unregister_blkdev(_major, _name);
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100258 dm_uevent_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
260 _major = 0;
261
262 DMINFO("cleaned up");
263}
264
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000265static int (*_inits[])(void) __initdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 local_init,
267 dm_target_init,
268 dm_linear_init,
269 dm_stripe_init,
Mikulas Patocka952b3552009-12-10 23:51:57 +0000270 dm_io_init,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100271 dm_kcopyd_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 dm_interface_init,
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400273 dm_statistics_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274};
275
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000276static void (*_exits[])(void) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 local_exit,
278 dm_target_exit,
279 dm_linear_exit,
280 dm_stripe_exit,
Mikulas Patocka952b3552009-12-10 23:51:57 +0000281 dm_io_exit,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100282 dm_kcopyd_exit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 dm_interface_exit,
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400284 dm_statistics_exit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285};
286
287static int __init dm_init(void)
288{
289 const int count = ARRAY_SIZE(_inits);
290
291 int r, i;
292
293 for (i = 0; i < count; i++) {
294 r = _inits[i]();
295 if (r)
296 goto bad;
297 }
298
299 return 0;
300
301 bad:
302 while (i--)
303 _exits[i]();
304
305 return r;
306}
307
308static void __exit dm_exit(void)
309{
310 int i = ARRAY_SIZE(_exits);
311
312 while (i--)
313 _exits[i]();
Alasdair G Kergond15b7742011-08-02 12:32:01 +0100314
315 /*
316 * Should be empty by this point.
317 */
Alasdair G Kergond15b7742011-08-02 12:32:01 +0100318 idr_destroy(&_minor_idr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319}
320
321/*
322 * Block device functions
323 */
Mike Anderson432a2122009-12-10 23:52:20 +0000324int dm_deleting_md(struct mapped_device *md)
325{
326 return test_bit(DMF_DELETING, &md->flags);
327}
328
Al Virofe5f9f22008-03-02 10:29:31 -0500329static int dm_blk_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
331 struct mapped_device *md;
332
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700333 spin_lock(&_minor_lock);
334
Al Virofe5f9f22008-03-02 10:29:31 -0500335 md = bdev->bd_disk->private_data;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700336 if (!md)
337 goto out;
338
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700339 if (test_bit(DMF_FREEING, &md->flags) ||
Mike Anderson432a2122009-12-10 23:52:20 +0000340 dm_deleting_md(md)) {
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700341 md = NULL;
342 goto out;
343 }
344
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 dm_get(md);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700346 atomic_inc(&md->open_count);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700347out:
348 spin_unlock(&_minor_lock);
349
350 return md ? 0 : -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351}
352
Al Virodb2a1442013-05-05 21:52:57 -0400353static void dm_blk_close(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
Mike Snitzer63a4f062015-03-23 17:01:43 -0400355 struct mapped_device *md;
Arnd Bergmann6e9624b2010-08-07 18:25:34 +0200356
Milan Broz4a1aeb92011-01-13 19:59:48 +0000357 spin_lock(&_minor_lock);
358
Mike Snitzer63a4f062015-03-23 17:01:43 -0400359 md = disk->private_data;
360 if (WARN_ON(!md))
361 goto out;
362
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400363 if (atomic_dec_and_test(&md->open_count) &&
364 (test_bit(DMF_DEFERRED_REMOVE, &md->flags)))
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400365 queue_work(deferred_remove_workqueue, &deferred_remove_work);
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 dm_put(md);
Mike Snitzer63a4f062015-03-23 17:01:43 -0400368out:
Milan Broz4a1aeb92011-01-13 19:59:48 +0000369 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370}
371
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700372int dm_open_count(struct mapped_device *md)
373{
374 return atomic_read(&md->open_count);
375}
376
377/*
378 * Guarantees nothing is using the device before it's deleted.
379 */
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400380int dm_lock_for_deletion(struct mapped_device *md, bool mark_deferred, bool only_deferred)
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700381{
382 int r = 0;
383
384 spin_lock(&_minor_lock);
385
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400386 if (dm_open_count(md)) {
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700387 r = -EBUSY;
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400388 if (mark_deferred)
389 set_bit(DMF_DEFERRED_REMOVE, &md->flags);
390 } else if (only_deferred && !test_bit(DMF_DEFERRED_REMOVE, &md->flags))
391 r = -EEXIST;
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700392 else
393 set_bit(DMF_DELETING, &md->flags);
394
395 spin_unlock(&_minor_lock);
396
397 return r;
398}
399
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400400int dm_cancel_deferred_remove(struct mapped_device *md)
401{
402 int r = 0;
403
404 spin_lock(&_minor_lock);
405
406 if (test_bit(DMF_DELETING, &md->flags))
407 r = -EBUSY;
408 else
409 clear_bit(DMF_DEFERRED_REMOVE, &md->flags);
410
411 spin_unlock(&_minor_lock);
412
413 return r;
414}
415
416static void do_deferred_remove(struct work_struct *w)
417{
418 dm_deferred_remove();
419}
420
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400421sector_t dm_get_size(struct mapped_device *md)
422{
423 return get_capacity(md->disk);
424}
425
Mike Snitzer9974fa22014-02-28 15:33:43 +0100426struct request_queue *dm_get_md_queue(struct mapped_device *md)
427{
428 return md->queue;
429}
430
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400431struct dm_stats *dm_get_stats(struct mapped_device *md)
432{
433 return &md->stats;
434}
435
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800436static int dm_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
437{
438 struct mapped_device *md = bdev->bd_disk->private_data;
439
440 return dm_get_geometry(md, geo);
441}
442
Christoph Hellwige76239a2018-10-12 19:08:49 +0900443static int dm_blk_report_zones(struct gendisk *disk, sector_t sector,
444 struct blk_zone *zones, unsigned int *nr_zones,
445 gfp_t gfp_mask)
446{
447#ifdef CONFIG_BLK_DEV_ZONED
448 struct mapped_device *md = disk->private_data;
449 struct dm_target *tgt;
450 struct dm_table *map;
451 int srcu_idx, ret;
452
453 if (dm_suspended_md(md))
454 return -EAGAIN;
455
456 map = dm_get_live_table(md, &srcu_idx);
457 if (!map)
458 return -EIO;
459
460 tgt = dm_table_find_target(map, sector);
461 if (!dm_target_is_valid(tgt)) {
462 ret = -EIO;
463 goto out;
464 }
465
466 /*
467 * If we are executing this, we already know that the block device
468 * is a zoned device and so each target should have support for that
469 * type of drive. A missing report_zones method means that the target
470 * driver has a problem.
471 */
472 if (WARN_ON(!tgt->type->report_zones)) {
473 ret = -EIO;
474 goto out;
475 }
476
477 /*
478 * blkdev_report_zones() will loop and call this again to cover all the
479 * zones of the target, eventually moving on to the next target.
480 * So there is no need to loop here trying to fill the entire array
481 * of zones.
482 */
483 ret = tgt->type->report_zones(tgt, sector, zones,
484 nr_zones, gfp_mask);
485
486out:
487 dm_put_live_table(md, srcu_idx);
488 return ret;
489#else
490 return -ENOTSUPP;
491#endif
492}
493
Mike Snitzer971888c2018-04-03 15:05:12 -0400494static int dm_prepare_ioctl(struct mapped_device *md, int *srcu_idx,
Mike Snitzer5bd5e8d2018-04-03 16:54:10 -0400495 struct block_device **bdev)
Mike Snitzer971888c2018-04-03 15:05:12 -0400496 __acquires(md->io_barrier)
Milan Brozaa129a22006-10-03 01:15:15 -0700497{
Mike Snitzer66482022016-02-18 15:44:39 -0500498 struct dm_target *tgt;
Hannes Reinecke6c182cd2013-07-10 23:41:15 +0100499 struct dm_table *map;
Mike Snitzer971888c2018-04-03 15:05:12 -0400500 int r;
Milan Brozaa129a22006-10-03 01:15:15 -0700501
Hannes Reinecke6c182cd2013-07-10 23:41:15 +0100502retry:
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200503 r = -ENOTTY;
Mike Snitzer971888c2018-04-03 15:05:12 -0400504 map = dm_get_live_table(md, srcu_idx);
Milan Brozaa129a22006-10-03 01:15:15 -0700505 if (!map || !dm_table_get_size(map))
Mike Snitzer971888c2018-04-03 15:05:12 -0400506 return r;
Milan Brozaa129a22006-10-03 01:15:15 -0700507
508 /* We only support devices that have a single target */
509 if (dm_table_get_num_targets(map) != 1)
Mike Snitzer971888c2018-04-03 15:05:12 -0400510 return r;
Milan Brozaa129a22006-10-03 01:15:15 -0700511
Mike Snitzer66482022016-02-18 15:44:39 -0500512 tgt = dm_table_get_target(map, 0);
513 if (!tgt->type->prepare_ioctl)
Mike Snitzer971888c2018-04-03 15:05:12 -0400514 return r;
Milan Brozaa129a22006-10-03 01:15:15 -0700515
Mike Snitzer971888c2018-04-03 15:05:12 -0400516 if (dm_suspended_md(md))
517 return -EAGAIN;
Milan Brozaa129a22006-10-03 01:15:15 -0700518
Mike Snitzer5bd5e8d2018-04-03 16:54:10 -0400519 r = tgt->type->prepare_ioctl(tgt, bdev);
Junichi Nomura5bbbfdf2015-11-17 09:39:26 +0000520 if (r == -ENOTCONN && !fatal_signal_pending(current)) {
Mike Snitzer971888c2018-04-03 15:05:12 -0400521 dm_put_live_table(md, *srcu_idx);
Hannes Reinecke6c182cd2013-07-10 23:41:15 +0100522 msleep(10);
523 goto retry;
524 }
Mike Snitzer971888c2018-04-03 15:05:12 -0400525
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200526 return r;
527}
Hannes Reinecke6c182cd2013-07-10 23:41:15 +0100528
Mike Snitzer971888c2018-04-03 15:05:12 -0400529static void dm_unprepare_ioctl(struct mapped_device *md, int srcu_idx)
530 __releases(md->io_barrier)
531{
532 dm_put_live_table(md, srcu_idx);
533}
534
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200535static int dm_blk_ioctl(struct block_device *bdev, fmode_t mode,
536 unsigned int cmd, unsigned long arg)
537{
538 struct mapped_device *md = bdev->bd_disk->private_data;
Mike Snitzer971888c2018-04-03 15:05:12 -0400539 int r, srcu_idx;
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200540
Mike Snitzer5bd5e8d2018-04-03 16:54:10 -0400541 r = dm_prepare_ioctl(md, &srcu_idx, &bdev);
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200542 if (r < 0)
Mike Snitzer971888c2018-04-03 15:05:12 -0400543 goto out;
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200544
545 if (r > 0) {
546 /*
Christoph Hellwige980f622017-02-04 10:45:03 +0100547 * Target determined this ioctl is being issued against a
548 * subset of the parent bdev; require extra privileges.
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200549 */
Christoph Hellwige980f622017-02-04 10:45:03 +0100550 if (!capable(CAP_SYS_RAWIO)) {
551 DMWARN_LIMIT(
552 "%s: sending ioctl %x to DM device without required privilege.",
553 current->comm, cmd);
554 r = -ENOIOCTLCMD;
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200555 goto out;
Christoph Hellwige980f622017-02-04 10:45:03 +0100556 }
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200557 }
558
Mike Snitzer66482022016-02-18 15:44:39 -0500559 r = __blkdev_driver_ioctl(bdev, mode, cmd, arg);
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200560out:
Mike Snitzer971888c2018-04-03 15:05:12 -0400561 dm_unprepare_ioctl(md, srcu_idx);
Milan Brozaa129a22006-10-03 01:15:15 -0700562 return r;
563}
564
Mike Snitzer978e51b2017-12-09 15:16:42 -0500565static void start_io_acct(struct dm_io *io);
566
567static struct dm_io *alloc_io(struct mapped_device *md, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568{
Mike Snitzer64f52b02017-12-11 23:17:47 -0500569 struct dm_io *io;
570 struct dm_target_io *tio;
571 struct bio *clone;
572
Kent Overstreet6f1c8192018-05-20 18:25:53 -0400573 clone = bio_alloc_bioset(GFP_NOIO, 0, &md->io_bs);
Mike Snitzer64f52b02017-12-11 23:17:47 -0500574 if (!clone)
575 return NULL;
576
577 tio = container_of(clone, struct dm_target_io, clone);
578 tio->inside_dm_io = true;
579 tio->io = NULL;
580
581 io = container_of(tio, struct dm_io, tio);
582 io->magic = DM_IO_MAGIC;
Mike Snitzer978e51b2017-12-09 15:16:42 -0500583 io->status = 0;
584 atomic_set(&io->io_count, 1);
585 io->orig_bio = bio;
586 io->md = md;
587 spin_lock_init(&io->endio_lock);
588
589 start_io_acct(io);
Mike Snitzer64f52b02017-12-11 23:17:47 -0500590
591 return io;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592}
593
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100594static void free_io(struct mapped_device *md, struct dm_io *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
Mike Snitzer64f52b02017-12-11 23:17:47 -0500596 bio_put(&io->tio.clone);
597}
598
599static struct dm_target_io *alloc_tio(struct clone_info *ci, struct dm_target *ti,
600 unsigned target_bio_nr, gfp_t gfp_mask)
601{
602 struct dm_target_io *tio;
603
604 if (!ci->io->tio.io) {
605 /* the dm_target_io embedded in ci->io is available */
606 tio = &ci->io->tio;
607 } else {
Kent Overstreet6f1c8192018-05-20 18:25:53 -0400608 struct bio *clone = bio_alloc_bioset(gfp_mask, 0, &ci->io->md->bs);
Mike Snitzer64f52b02017-12-11 23:17:47 -0500609 if (!clone)
610 return NULL;
611
612 tio = container_of(clone, struct dm_target_io, clone);
613 tio->inside_dm_io = false;
614 }
615
616 tio->magic = DM_TIO_MAGIC;
617 tio->io = ci->io;
618 tio->ti = ti;
619 tio->target_bio_nr = target_bio_nr;
620
621 return tio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622}
623
Mike Snitzercfae7522016-04-11 12:05:38 -0400624static void free_tio(struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625{
Mike Snitzer64f52b02017-12-11 23:17:47 -0500626 if (tio->inside_dm_io)
627 return;
Mikulas Patockadba14162012-10-12 21:02:15 +0100628 bio_put(&tio->clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629}
630
Mike Snitzerc4576ae2018-12-11 09:10:26 -0500631static bool md_in_flight_bios(struct mapped_device *md)
Kiyoshi Ueda90abb8c2009-12-10 23:52:13 +0000632{
Mikulas Patocka6f757232018-12-06 11:41:22 -0500633 int cpu;
634 struct hd_struct *part = &dm_disk(md)->part0;
Jens Axboeb7934ba2018-12-10 15:45:53 -0700635 long sum = 0;
Mikulas Patocka6f757232018-12-06 11:41:22 -0500636
637 for_each_possible_cpu(cpu) {
Jens Axboeb7934ba2018-12-10 15:45:53 -0700638 sum += part_stat_local_read_cpu(part, in_flight[0], cpu);
639 sum += part_stat_local_read_cpu(part, in_flight[1], cpu);
Mikulas Patocka6f757232018-12-06 11:41:22 -0500640 }
641
Jens Axboeb7934ba2018-12-10 15:45:53 -0700642 return sum != 0;
Kiyoshi Ueda90abb8c2009-12-10 23:52:13 +0000643}
644
Mike Snitzerc4576ae2018-12-11 09:10:26 -0500645static bool md_in_flight(struct mapped_device *md)
646{
647 if (queue_is_mq(md->queue))
Jens Axboe3c94d832018-12-17 21:11:17 -0700648 return blk_mq_queue_inflight(md->queue);
Mike Snitzerc4576ae2018-12-11 09:10:26 -0500649 else
650 return md_in_flight_bios(md);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +0100651}
652
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800653static void start_io_acct(struct dm_io *io)
654{
655 struct mapped_device *md = io->md;
Mike Snitzer745dc572017-12-11 20:51:50 -0500656 struct bio *bio = io->orig_bio;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800657
658 io->start_time = jiffies;
659
Michael Callahanddcf35d2018-07-18 04:47:39 -0700660 generic_start_io_acct(md->queue, bio_op(bio), bio_sectors(bio),
661 &dm_disk(md)->part0);
Mike Snitzerf3986372017-12-17 11:56:48 -0500662
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400663 if (unlikely(dm_stats_used(&md->stats)))
Mike Christie528ec5a2016-06-05 14:32:03 -0500664 dm_stats_account_io(&md->stats, bio_data_dir(bio),
665 bio->bi_iter.bi_sector, bio_sectors(bio),
666 false, 0, &io->stats_aux);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800667}
668
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000669static void end_io_acct(struct dm_io *io)
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800670{
671 struct mapped_device *md = io->md;
Mike Snitzer745dc572017-12-11 20:51:50 -0500672 struct bio *bio = io->orig_bio;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800673 unsigned long duration = jiffies - io->start_time;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800674
Michael Callahanddcf35d2018-07-18 04:47:39 -0700675 generic_end_io_acct(md->queue, bio_op(bio), &dm_disk(md)->part0,
676 io->start_time);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800677
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400678 if (unlikely(dm_stats_used(&md->stats)))
Mike Christie528ec5a2016-06-05 14:32:03 -0500679 dm_stats_account_io(&md->stats, bio_data_dir(bio),
680 bio->bi_iter.bi_sector, bio_sectors(bio),
681 true, duration, &io->stats_aux);
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400682
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000683 /* nudge anyone waiting on suspend queue */
Mikulas Patocka645efa82019-02-05 05:09:00 -0500684 if (unlikely(wq_has_sleeper(&md->wait)))
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000685 wake_up(&md->wait);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800686}
687
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688/*
689 * Add the bio to the list of deferred io.
690 */
Mikulas Patocka92c63902009-04-09 00:27:15 +0100691static void queue_io(struct mapped_device *md, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692{
Kiyoshi Ueda054474202010-09-08 18:07:01 +0200693 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Kiyoshi Ueda054474202010-09-08 18:07:01 +0200695 spin_lock_irqsave(&md->deferred_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 bio_list_add(&md->deferred, bio);
Kiyoshi Ueda054474202010-09-08 18:07:01 +0200697 spin_unlock_irqrestore(&md->deferred_lock, flags);
Tejun Heo6a8736d2010-09-08 18:07:00 +0200698 queue_work(md->wq, &md->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699}
700
701/*
702 * Everyone (including functions in this file), should use this
703 * function to access the md->map field, and make sure they call
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100704 * dm_put_live_table() when finished.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 */
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100706struct dm_table *dm_get_live_table(struct mapped_device *md, int *srcu_idx) __acquires(md->io_barrier)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707{
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100708 *srcu_idx = srcu_read_lock(&md->io_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100710 return srcu_dereference(md->map, &md->io_barrier);
711}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100713void dm_put_live_table(struct mapped_device *md, int srcu_idx) __releases(md->io_barrier)
714{
715 srcu_read_unlock(&md->io_barrier, srcu_idx);
716}
717
718void dm_sync_table(struct mapped_device *md)
719{
720 synchronize_srcu(&md->io_barrier);
721 synchronize_rcu_expedited();
722}
723
724/*
725 * A fast alternative to dm_get_live_table/dm_put_live_table.
726 * The caller must not block between these two functions.
727 */
728static struct dm_table *dm_get_live_table_fast(struct mapped_device *md) __acquires(RCU)
729{
730 rcu_read_lock();
731 return rcu_dereference(md->map);
732}
733
734static void dm_put_live_table_fast(struct mapped_device *md) __releases(RCU)
735{
736 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737}
738
Mike Snitzer971888c2018-04-03 15:05:12 -0400739static char *_dm_claim_ptr = "I belong to device-mapper";
740
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800741/*
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500742 * Open a table device so we can use it as a map destination.
743 */
744static int open_table_device(struct table_device *td, dev_t dev,
745 struct mapped_device *md)
746{
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500747 struct block_device *bdev;
748
749 int r;
750
751 BUG_ON(td->dm_dev.bdev);
752
Mike Snitzer519049a2018-02-22 13:31:20 -0500753 bdev = blkdev_get_by_dev(dev, td->dm_dev.mode | FMODE_EXCL, _dm_claim_ptr);
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500754 if (IS_ERR(bdev))
755 return PTR_ERR(bdev);
756
757 r = bd_link_disk_holder(bdev, dm_disk(md));
758 if (r) {
759 blkdev_put(bdev, td->dm_dev.mode | FMODE_EXCL);
760 return r;
761 }
762
763 td->dm_dev.bdev = bdev;
Dan Williams817bf402017-04-12 13:37:44 -0700764 td->dm_dev.dax_dev = dax_get_by_host(bdev->bd_disk->disk_name);
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500765 return 0;
766}
767
768/*
769 * Close a table device that we've been using.
770 */
771static void close_table_device(struct table_device *td, struct mapped_device *md)
772{
773 if (!td->dm_dev.bdev)
774 return;
775
776 bd_unlink_disk_holder(td->dm_dev.bdev, dm_disk(md));
777 blkdev_put(td->dm_dev.bdev, td->dm_dev.mode | FMODE_EXCL);
Dan Williams817bf402017-04-12 13:37:44 -0700778 put_dax(td->dm_dev.dax_dev);
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500779 td->dm_dev.bdev = NULL;
Dan Williams817bf402017-04-12 13:37:44 -0700780 td->dm_dev.dax_dev = NULL;
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500781}
782
783static struct table_device *find_table_device(struct list_head *l, dev_t dev,
784 fmode_t mode) {
785 struct table_device *td;
786
787 list_for_each_entry(td, l, list)
788 if (td->dm_dev.bdev->bd_dev == dev && td->dm_dev.mode == mode)
789 return td;
790
791 return NULL;
792}
793
794int dm_get_table_device(struct mapped_device *md, dev_t dev, fmode_t mode,
795 struct dm_dev **result) {
796 int r;
797 struct table_device *td;
798
799 mutex_lock(&md->table_devices_lock);
800 td = find_table_device(&md->table_devices, dev, mode);
801 if (!td) {
Mike Snitzer115485e2016-02-22 12:16:21 -0500802 td = kmalloc_node(sizeof(*td), GFP_KERNEL, md->numa_node_id);
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500803 if (!td) {
804 mutex_unlock(&md->table_devices_lock);
805 return -ENOMEM;
806 }
807
808 td->dm_dev.mode = mode;
809 td->dm_dev.bdev = NULL;
810
811 if ((r = open_table_device(td, dev, md))) {
812 mutex_unlock(&md->table_devices_lock);
813 kfree(td);
814 return r;
815 }
816
817 format_dev_t(td->dm_dev.name, dev);
818
Elena Reshetovab0b4d7c2017-10-20 10:37:39 +0300819 refcount_set(&td->count, 1);
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500820 list_add(&td->list, &md->table_devices);
Elena Reshetovab0b4d7c2017-10-20 10:37:39 +0300821 } else {
822 refcount_inc(&td->count);
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500823 }
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500824 mutex_unlock(&md->table_devices_lock);
825
826 *result = &td->dm_dev;
827 return 0;
828}
829EXPORT_SYMBOL_GPL(dm_get_table_device);
830
831void dm_put_table_device(struct mapped_device *md, struct dm_dev *d)
832{
833 struct table_device *td = container_of(d, struct table_device, dm_dev);
834
835 mutex_lock(&md->table_devices_lock);
Elena Reshetovab0b4d7c2017-10-20 10:37:39 +0300836 if (refcount_dec_and_test(&td->count)) {
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500837 close_table_device(td, md);
838 list_del(&td->list);
839 kfree(td);
840 }
841 mutex_unlock(&md->table_devices_lock);
842}
843EXPORT_SYMBOL(dm_put_table_device);
844
845static void free_table_devices(struct list_head *devices)
846{
847 struct list_head *tmp, *next;
848
849 list_for_each_safe(tmp, next, devices) {
850 struct table_device *td = list_entry(tmp, struct table_device, list);
851
852 DMWARN("dm_destroy: %s still exists with %d references",
Elena Reshetovab0b4d7c2017-10-20 10:37:39 +0300853 td->dm_dev.name, refcount_read(&td->count));
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500854 kfree(td);
855 }
856}
857
858/*
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800859 * Get the geometry associated with a dm device
860 */
861int dm_get_geometry(struct mapped_device *md, struct hd_geometry *geo)
862{
863 *geo = md->geometry;
864
865 return 0;
866}
867
868/*
869 * Set the geometry of a device.
870 */
871int dm_set_geometry(struct mapped_device *md, struct hd_geometry *geo)
872{
873 sector_t sz = (sector_t)geo->cylinders * geo->heads * geo->sectors;
874
875 if (geo->start > sz) {
876 DMWARN("Start sector is beyond the geometry limits.");
877 return -EINVAL;
878 }
879
880 md->geometry = *geo;
881
882 return 0;
883}
884
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800885static int __noflush_suspending(struct mapped_device *md)
886{
887 return test_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
888}
889
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890/*
891 * Decrements the number of outstanding ios that a bio has been
892 * cloned into, completing the original io if necc.
893 */
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200894static void dec_pending(struct dm_io *io, blk_status_t error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895{
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800896 unsigned long flags;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200897 blk_status_t io_error;
Milan Brozb35f8ca2009-03-16 17:44:36 +0000898 struct bio *bio;
899 struct mapped_device *md = io->md;
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800900
901 /* Push-back supersedes any I/O errors */
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +0100902 if (unlikely(error)) {
903 spin_lock_irqsave(&io->endio_lock, flags);
Mike Snitzer745dc572017-12-11 20:51:50 -0500904 if (!(io->status == BLK_STS_DM_REQUEUE && __noflush_suspending(md)))
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200905 io->status = error;
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +0100906 spin_unlock_irqrestore(&io->endio_lock, flags);
907 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
909 if (atomic_dec_and_test(&io->io_count)) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200910 if (io->status == BLK_STS_DM_REQUEUE) {
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800911 /*
912 * Target requested pushing back the I/O.
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800913 */
Mikulas Patocka022c2612009-04-02 19:55:39 +0100914 spin_lock_irqsave(&md->deferred_lock, flags);
Tejun Heo6a8736d2010-09-08 18:07:00 +0200915 if (__noflush_suspending(md))
Mike Snitzer745dc572017-12-11 20:51:50 -0500916 /* NOTE early return due to BLK_STS_DM_REQUEUE below */
917 bio_list_add_head(&md->deferred, io->orig_bio);
Tejun Heo6a8736d2010-09-08 18:07:00 +0200918 else
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800919 /* noflush suspend was interrupted. */
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200920 io->status = BLK_STS_IOERR;
Mikulas Patocka022c2612009-04-02 19:55:39 +0100921 spin_unlock_irqrestore(&md->deferred_lock, flags);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800922 }
923
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200924 io_error = io->status;
Mike Snitzer745dc572017-12-11 20:51:50 -0500925 bio = io->orig_bio;
Tejun Heo6a8736d2010-09-08 18:07:00 +0200926 end_io_acct(io);
927 free_io(md, io);
Jens Axboe2056a782006-03-23 20:00:26 +0100928
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200929 if (io_error == BLK_STS_DM_REQUEUE)
Tejun Heo6a8736d2010-09-08 18:07:00 +0200930 return;
931
Jens Axboe1eff9d32016-08-05 15:35:16 -0600932 if ((bio->bi_opf & REQ_PREFLUSH) && bio->bi_iter.bi_size) {
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100933 /*
Tejun Heo6a8736d2010-09-08 18:07:00 +0200934 * Preflush done for flush with data, reissue
Mike Christie28a8f0d2016-06-05 14:32:25 -0500935 * without REQ_PREFLUSH.
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100936 */
Jens Axboe1eff9d32016-08-05 15:35:16 -0600937 bio->bi_opf &= ~REQ_PREFLUSH;
Tejun Heo6a8736d2010-09-08 18:07:00 +0200938 queue_io(md, bio);
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100939 } else {
Mike Snitzerb372d362010-09-08 18:07:01 +0200940 /* done with normal IO or empty flush */
NeilBrown8dd601f2018-02-15 20:00:15 +1100941 if (io_error)
942 bio->bi_status = io_error;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200943 bio_endio(bio);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800944 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 }
946}
947
Mike Snitzer4cc96132016-05-12 16:28:10 -0400948void disable_write_same(struct mapped_device *md)
Mike Snitzer7eee4ae2014-06-02 15:50:06 -0400949{
950 struct queue_limits *limits = dm_get_queue_limits(md);
951
952 /* device doesn't really support WRITE SAME, disable it */
953 limits->max_write_same_sectors = 0;
954}
955
Christoph Hellwigac62d622017-04-05 19:21:05 +0200956void disable_write_zeroes(struct mapped_device *md)
957{
958 struct queue_limits *limits = dm_get_queue_limits(md);
959
960 /* device doesn't really support WRITE ZEROES, disable it */
961 limits->max_write_zeroes_sectors = 0;
962}
963
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200964static void clone_endio(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965{
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200966 blk_status_t error = bio->bi_status;
Mikulas Patockabfc6d412014-03-04 18:24:49 -0500967 struct dm_target_io *tio = container_of(bio, struct dm_target_io, clone);
Milan Brozb35f8ca2009-03-16 17:44:36 +0000968 struct dm_io *io = tio->io;
Stefan Bader9faf4002006-10-03 01:15:41 -0700969 struct mapped_device *md = tio->io->md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 dm_endio_fn endio = tio->ti->type->end_io;
971
Mike Snitzer978e51b2017-12-09 15:16:42 -0500972 if (unlikely(error == BLK_STS_TARGET) && md->type != DM_TYPE_NVME_BIO_BASED) {
Christoph Hellwigac62d622017-04-05 19:21:05 +0200973 if (bio_op(bio) == REQ_OP_WRITE_SAME &&
Christoph Hellwig74d46992017-08-23 19:10:32 +0200974 !bio->bi_disk->queue->limits.max_write_same_sectors)
Christoph Hellwigac62d622017-04-05 19:21:05 +0200975 disable_write_same(md);
976 if (bio_op(bio) == REQ_OP_WRITE_ZEROES &&
Christoph Hellwig74d46992017-08-23 19:10:32 +0200977 !bio->bi_disk->queue->limits.max_write_zeroes_sectors)
Christoph Hellwigac62d622017-04-05 19:21:05 +0200978 disable_write_zeroes(md);
979 }
Mike Snitzer7eee4ae2014-06-02 15:50:06 -0400980
Christoph Hellwig1be56902017-06-03 09:38:03 +0200981 if (endio) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200982 int r = endio(tio->ti, bio, &error);
Christoph Hellwig1be56902017-06-03 09:38:03 +0200983 switch (r) {
984 case DM_ENDIO_REQUEUE:
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200985 error = BLK_STS_DM_REQUEUE;
Christoph Hellwig1be56902017-06-03 09:38:03 +0200986 /*FALLTHRU*/
987 case DM_ENDIO_DONE:
988 break;
989 case DM_ENDIO_INCOMPLETE:
990 /* The target will handle the io */
991 return;
992 default:
993 DMWARN("unimplemented target endio return value: %d", r);
994 BUG();
995 }
996 }
997
Mike Snitzercfae7522016-04-11 12:05:38 -0400998 free_tio(tio);
Milan Brozb35f8ca2009-03-16 17:44:36 +0000999 dec_pending(io, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000}
1001
Mike Snitzer78d8e582015-06-26 10:01:13 -04001002/*
Mike Snitzer56a67df2010-08-12 04:14:10 +01001003 * Return maximum size of I/O possible at the supplied sector up to the current
1004 * target boundary.
1005 */
1006static sector_t max_io_len_target_boundary(sector_t sector, struct dm_target *ti)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007{
Mike Snitzer56a67df2010-08-12 04:14:10 +01001008 sector_t target_offset = dm_target_offset(ti, sector);
1009
1010 return ti->len - target_offset;
1011}
1012
1013static sector_t max_io_len(sector_t sector, struct dm_target *ti)
1014{
1015 sector_t len = max_io_len_target_boundary(sector, ti);
Mike Snitzer542f9032012-07-27 15:08:00 +01001016 sector_t offset, max_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
1018 /*
Mike Snitzer542f9032012-07-27 15:08:00 +01001019 * Does the target need to split even further?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 */
Mike Snitzer542f9032012-07-27 15:08:00 +01001021 if (ti->max_io_len) {
1022 offset = dm_target_offset(ti, sector);
1023 if (unlikely(ti->max_io_len & (ti->max_io_len - 1)))
1024 max_len = sector_div(offset, ti->max_io_len);
1025 else
1026 max_len = offset & (ti->max_io_len - 1);
1027 max_len = ti->max_io_len - max_len;
1028
1029 if (len > max_len)
1030 len = max_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 }
1032
1033 return len;
1034}
1035
Mike Snitzer542f9032012-07-27 15:08:00 +01001036int dm_set_target_max_io_len(struct dm_target *ti, sector_t len)
1037{
1038 if (len > UINT_MAX) {
1039 DMERR("Specified maximum size of target IO (%llu) exceeds limit (%u)",
1040 (unsigned long long)len, UINT_MAX);
1041 ti->error = "Maximum size of target IO is too large";
1042 return -EINVAL;
1043 }
1044
Ming Lei8f50e352017-12-18 20:22:08 +08001045 /*
1046 * BIO based queue uses its own splitting. When multipage bvecs
1047 * is switched on, size of the incoming bio may be too big to
1048 * be handled in some targets, such as crypt.
1049 *
1050 * When these targets are ready for the big bio, we can remove
1051 * the limit.
1052 */
1053 ti->max_io_len = min_t(uint32_t, len, BIO_MAX_PAGES * PAGE_SIZE);
Mike Snitzer542f9032012-07-27 15:08:00 +01001054
1055 return 0;
1056}
1057EXPORT_SYMBOL_GPL(dm_set_target_max_io_len);
1058
Dan Williamsf26c5712017-04-12 12:35:44 -07001059static struct dm_target *dm_dax_get_live_target(struct mapped_device *md,
Mike Snitzer3d97c822018-04-30 16:06:28 -04001060 sector_t sector, int *srcu_idx)
1061 __acquires(md->io_barrier)
Toshi Kani545ed202016-06-22 17:54:53 -06001062{
Toshi Kani545ed202016-06-22 17:54:53 -06001063 struct dm_table *map;
1064 struct dm_target *ti;
Toshi Kani545ed202016-06-22 17:54:53 -06001065
Dan Williamsf26c5712017-04-12 12:35:44 -07001066 map = dm_get_live_table(md, srcu_idx);
Toshi Kani545ed202016-06-22 17:54:53 -06001067 if (!map)
Dan Williamsf26c5712017-04-12 12:35:44 -07001068 return NULL;
Toshi Kani545ed202016-06-22 17:54:53 -06001069
1070 ti = dm_table_find_target(map, sector);
1071 if (!dm_target_is_valid(ti))
Dan Williamsf26c5712017-04-12 12:35:44 -07001072 return NULL;
1073
1074 return ti;
1075}
1076
1077static long dm_dax_direct_access(struct dax_device *dax_dev, pgoff_t pgoff,
Mike Snitzer3d97c822018-04-30 16:06:28 -04001078 long nr_pages, void **kaddr, pfn_t *pfn)
Dan Williamsf26c5712017-04-12 12:35:44 -07001079{
1080 struct mapped_device *md = dax_get_private(dax_dev);
1081 sector_t sector = pgoff * PAGE_SECTORS;
1082 struct dm_target *ti;
1083 long len, ret = -EIO;
1084 int srcu_idx;
1085
1086 ti = dm_dax_get_live_target(md, sector, &srcu_idx);
1087
1088 if (!ti)
Toshi Kani545ed202016-06-22 17:54:53 -06001089 goto out;
Dan Williamsf26c5712017-04-12 12:35:44 -07001090 if (!ti->type->direct_access)
1091 goto out;
1092 len = max_io_len(sector, ti) / PAGE_SECTORS;
1093 if (len < 1)
1094 goto out;
1095 nr_pages = min(len, nr_pages);
Ross Zwislerdbc62652018-06-26 16:30:41 -06001096 ret = ti->type->direct_access(ti, pgoff, nr_pages, kaddr, pfn);
Dan Williams817bf402017-04-12 13:37:44 -07001097
Dan Williamsf26c5712017-04-12 12:35:44 -07001098 out:
Toshi Kani545ed202016-06-22 17:54:53 -06001099 dm_put_live_table(md, srcu_idx);
Dan Williamsf26c5712017-04-12 12:35:44 -07001100
1101 return ret;
Toshi Kani545ed202016-06-22 17:54:53 -06001102}
1103
Dan Williams7e026c82017-05-29 12:57:56 -07001104static size_t dm_dax_copy_from_iter(struct dax_device *dax_dev, pgoff_t pgoff,
Mike Snitzer3d97c822018-04-30 16:06:28 -04001105 void *addr, size_t bytes, struct iov_iter *i)
Dan Williams7e026c82017-05-29 12:57:56 -07001106{
1107 struct mapped_device *md = dax_get_private(dax_dev);
1108 sector_t sector = pgoff * PAGE_SECTORS;
1109 struct dm_target *ti;
1110 long ret = 0;
1111 int srcu_idx;
1112
1113 ti = dm_dax_get_live_target(md, sector, &srcu_idx);
1114
1115 if (!ti)
1116 goto out;
1117 if (!ti->type->dax_copy_from_iter) {
1118 ret = copy_from_iter(addr, bytes, i);
1119 goto out;
1120 }
1121 ret = ti->type->dax_copy_from_iter(ti, pgoff, addr, bytes, i);
1122 out:
1123 dm_put_live_table(md, srcu_idx);
1124
1125 return ret;
1126}
1127
Dan Williamsb3a9a0c2018-05-02 06:46:33 -07001128static size_t dm_dax_copy_to_iter(struct dax_device *dax_dev, pgoff_t pgoff,
1129 void *addr, size_t bytes, struct iov_iter *i)
1130{
1131 struct mapped_device *md = dax_get_private(dax_dev);
1132 sector_t sector = pgoff * PAGE_SECTORS;
1133 struct dm_target *ti;
1134 long ret = 0;
1135 int srcu_idx;
1136
1137 ti = dm_dax_get_live_target(md, sector, &srcu_idx);
1138
1139 if (!ti)
1140 goto out;
1141 if (!ti->type->dax_copy_to_iter) {
1142 ret = copy_to_iter(addr, bytes, i);
1143 goto out;
1144 }
1145 ret = ti->type->dax_copy_to_iter(ti, pgoff, addr, bytes, i);
1146 out:
1147 dm_put_live_table(md, srcu_idx);
1148
1149 return ret;
1150}
1151
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001152/*
1153 * A target may call dm_accept_partial_bio only from the map routine. It is
NeilBrownc06b3e52017-11-21 08:44:35 -05001154 * allowed for all bio types except REQ_PREFLUSH and REQ_OP_ZONE_RESET.
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001155 *
1156 * dm_accept_partial_bio informs the dm that the target only wants to process
1157 * additional n_sectors sectors of the bio and the rest of the data should be
1158 * sent in a next bio.
1159 *
1160 * A diagram that explains the arithmetics:
1161 * +--------------------+---------------+-------+
1162 * | 1 | 2 | 3 |
1163 * +--------------------+---------------+-------+
1164 *
1165 * <-------------- *tio->len_ptr --------------->
1166 * <------- bi_size ------->
1167 * <-- n_sectors -->
1168 *
1169 * Region 1 was already iterated over with bio_advance or similar function.
1170 * (it may be empty if the target doesn't use bio_advance)
1171 * Region 2 is the remaining bio size that the target wants to process.
1172 * (it may be empty if region 1 is non-empty, although there is no reason
1173 * to make it empty)
1174 * The target requires that region 3 is to be sent in the next bio.
1175 *
1176 * If the target wants to receive multiple copies of the bio (via num_*bios, etc),
1177 * the partially processed part (the sum of regions 1+2) must be the same for all
1178 * copies of the bio.
1179 */
1180void dm_accept_partial_bio(struct bio *bio, unsigned n_sectors)
1181{
1182 struct dm_target_io *tio = container_of(bio, struct dm_target_io, clone);
1183 unsigned bi_size = bio->bi_iter.bi_size >> SECTOR_SHIFT;
Jens Axboe1eff9d32016-08-05 15:35:16 -06001184 BUG_ON(bio->bi_opf & REQ_PREFLUSH);
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001185 BUG_ON(bi_size > *tio->len_ptr);
1186 BUG_ON(n_sectors > bi_size);
1187 *tio->len_ptr -= bi_size - n_sectors;
1188 bio->bi_iter.bi_size = n_sectors << SECTOR_SHIFT;
1189}
1190EXPORT_SYMBOL_GPL(dm_accept_partial_bio);
1191
Mikulas Patockad67a5f42017-02-15 11:26:10 -05001192/*
Christoph Hellwige76239a2018-10-12 19:08:49 +09001193 * The zone descriptors obtained with a zone report indicate
1194 * zone positions within the underlying device of the target. The zone
1195 * descriptors must be remapped to match their position within the dm device.
1196 * The caller target should obtain the zones information using
1197 * blkdev_report_zones() to ensure that remapping for partition offset is
1198 * already handled.
Damien Le Moal10999302017-05-08 16:40:48 -07001199 */
Christoph Hellwige76239a2018-10-12 19:08:49 +09001200void dm_remap_zone_report(struct dm_target *ti, sector_t start,
1201 struct blk_zone *zones, unsigned int *nr_zones)
Damien Le Moal10999302017-05-08 16:40:48 -07001202{
1203#ifdef CONFIG_BLK_DEV_ZONED
Damien Le Moal10999302017-05-08 16:40:48 -07001204 struct blk_zone *zone;
Christoph Hellwige76239a2018-10-12 19:08:49 +09001205 unsigned int nrz = *nr_zones;
1206 int i;
Damien Le Moal10999302017-05-08 16:40:48 -07001207
1208 /*
Christoph Hellwige76239a2018-10-12 19:08:49 +09001209 * Remap the start sector and write pointer position of the zones in
1210 * the array. Since we may have obtained from the target underlying
1211 * device more zones that the target size, also adjust the number
1212 * of zones.
Damien Le Moal9864cd5dc52018-10-09 14:24:31 +09001213 */
Christoph Hellwige76239a2018-10-12 19:08:49 +09001214 for (i = 0; i < nrz; i++) {
1215 zone = zones + i;
1216 if (zone->start >= start + ti->len) {
1217 memset(zone, 0, sizeof(struct blk_zone) * (nrz - i));
1218 break;
Damien Le Moal10999302017-05-08 16:40:48 -07001219 }
1220
Christoph Hellwige76239a2018-10-12 19:08:49 +09001221 zone->start = zone->start + ti->begin - start;
1222 if (zone->type == BLK_ZONE_TYPE_CONVENTIONAL)
1223 continue;
Damien Le Moal10999302017-05-08 16:40:48 -07001224
Christoph Hellwige76239a2018-10-12 19:08:49 +09001225 if (zone->cond == BLK_ZONE_COND_FULL)
1226 zone->wp = zone->start + zone->len;
1227 else if (zone->cond == BLK_ZONE_COND_EMPTY)
1228 zone->wp = zone->start;
1229 else
1230 zone->wp = zone->wp + ti->begin - start;
Damien Le Moal10999302017-05-08 16:40:48 -07001231 }
1232
Christoph Hellwige76239a2018-10-12 19:08:49 +09001233 *nr_zones = i;
Damien Le Moal10999302017-05-08 16:40:48 -07001234#else /* !CONFIG_BLK_DEV_ZONED */
Christoph Hellwige76239a2018-10-12 19:08:49 +09001235 *nr_zones = 0;
Damien Le Moal10999302017-05-08 16:40:48 -07001236#endif
1237}
1238EXPORT_SYMBOL_GPL(dm_remap_zone_report);
1239
Mike Snitzer978e51b2017-12-09 15:16:42 -05001240static blk_qc_t __map_bio(struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241{
1242 int r;
Jens Axboe2056a782006-03-23 20:00:26 +01001243 sector_t sector;
Mikulas Patockadba14162012-10-12 21:02:15 +01001244 struct bio *clone = &tio->clone;
Mike Snitzer64f52b02017-12-11 23:17:47 -05001245 struct dm_io *io = tio->io;
Mike Snitzer978e51b2017-12-09 15:16:42 -05001246 struct mapped_device *md = io->md;
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001247 struct dm_target *ti = tio->ti;
Mike Snitzer978e51b2017-12-09 15:16:42 -05001248 blk_qc_t ret = BLK_QC_T_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 clone->bi_end_io = clone_endio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
1252 /*
1253 * Map the clone. If r == 0 we don't need to do
1254 * anything, the target has assumed ownership of
1255 * this io.
1256 */
Mike Snitzer64f52b02017-12-11 23:17:47 -05001257 atomic_inc(&io->io_count);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001258 sector = clone->bi_iter.bi_sector;
Mikulas Patockad67a5f42017-02-15 11:26:10 -05001259
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00001260 r = ti->type->map(ti, clone);
Christoph Hellwig846785e2017-06-03 09:38:02 +02001261 switch (r) {
1262 case DM_MAPIO_SUBMITTED:
1263 break;
1264 case DM_MAPIO_REMAPPED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 /* the bio has been remapped so dispatch it */
Christoph Hellwig74d46992017-08-23 19:10:32 +02001266 trace_block_bio_remap(clone->bi_disk->queue, clone,
Mike Snitzer64f52b02017-12-11 23:17:47 -05001267 bio_dev(io->orig_bio), sector);
Mike Snitzer978e51b2017-12-09 15:16:42 -05001268 if (md->type == DM_TYPE_NVME_BIO_BASED)
1269 ret = direct_make_request(clone);
1270 else
1271 ret = generic_make_request(clone);
Christoph Hellwig846785e2017-06-03 09:38:02 +02001272 break;
1273 case DM_MAPIO_KILL:
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001274 free_tio(tio);
Mike Snitzer64f52b02017-12-11 23:17:47 -05001275 dec_pending(io, BLK_STS_IOERR);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001276 break;
Christoph Hellwig846785e2017-06-03 09:38:02 +02001277 case DM_MAPIO_REQUEUE:
Mike Snitzercfae7522016-04-11 12:05:38 -04001278 free_tio(tio);
Mike Snitzer64f52b02017-12-11 23:17:47 -05001279 dec_pending(io, BLK_STS_DM_REQUEUE);
Christoph Hellwig846785e2017-06-03 09:38:02 +02001280 break;
1281 default:
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -08001282 DMWARN("unimplemented target map return value: %d", r);
1283 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
Mike Snitzer978e51b2017-12-09 15:16:42 -05001286 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
Mikulas Patockae0d66092014-03-14 18:40:39 -04001289static void bio_setup_sector(struct bio *bio, sector_t sector, unsigned len)
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001290{
Kent Overstreet4f024f32013-10-11 15:44:27 -07001291 bio->bi_iter.bi_sector = sector;
1292 bio->bi_iter.bi_size = to_bytes(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293}
1294
1295/*
1296 * Creates a bio that consists of range of complete bvecs.
1297 */
Mike Snitzerc80914e2016-03-02 12:33:03 -05001298static int clone_bio(struct dm_target_io *tio, struct bio *bio,
1299 sector_t sector, unsigned len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300{
Mikulas Patockadba14162012-10-12 21:02:15 +01001301 struct bio *clone = &tio->clone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001303 __bio_clone_fast(clone, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
Mike Snitzer57c36512019-01-16 18:53:26 -05001305 if (bio_integrity(bio)) {
Mikulas Patockae2460f22017-04-18 16:51:48 -04001306 int r;
1307
1308 if (unlikely(!dm_target_has_integrity(tio->ti->type) &&
1309 !dm_target_passes_integrity(tio->ti->type))) {
1310 DMWARN("%s: the target %s doesn't support integrity data.",
1311 dm_device_name(tio->io->md),
1312 tio->ti->type->name);
1313 return -EIO;
1314 }
1315
1316 r = bio_integrity_clone(clone, bio, GFP_NOIO);
Mike Snitzerc80914e2016-03-02 12:33:03 -05001317 if (r < 0)
1318 return r;
1319 }
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001320
Mike Snitzerfa8db492019-02-05 17:07:58 -05001321 bio_advance(clone, to_bytes(sector - clone->bi_iter.bi_sector));
1322 clone->bi_iter.bi_size = to_bytes(len);
1323
1324 if (bio_integrity(bio))
1325 bio_integrity_trim(clone);
Mike Snitzerc80914e2016-03-02 12:33:03 -05001326
1327 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328}
1329
Mike Snitzer318716d2017-11-22 14:56:12 -05001330static void alloc_multiple_bios(struct bio_list *blist, struct clone_info *ci,
1331 struct dm_target *ti, unsigned num_bios)
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001332{
Mikulas Patockadba14162012-10-12 21:02:15 +01001333 struct dm_target_io *tio;
Mike Snitzer318716d2017-11-22 14:56:12 -05001334 int try;
Mikulas Patockadba14162012-10-12 21:02:15 +01001335
Mike Snitzer318716d2017-11-22 14:56:12 -05001336 if (!num_bios)
1337 return;
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001338
Mike Snitzer318716d2017-11-22 14:56:12 -05001339 if (num_bios == 1) {
1340 tio = alloc_tio(ci, ti, 0, GFP_NOIO);
1341 bio_list_add(blist, &tio->clone);
1342 return;
1343 }
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001344
Mike Snitzer318716d2017-11-22 14:56:12 -05001345 for (try = 0; try < 2; try++) {
1346 int bio_nr;
1347 struct bio *bio;
1348
1349 if (try)
Mike Snitzerbc02cdb2017-12-14 16:30:42 -05001350 mutex_lock(&ci->io->md->table_devices_lock);
Mike Snitzer318716d2017-11-22 14:56:12 -05001351 for (bio_nr = 0; bio_nr < num_bios; bio_nr++) {
1352 tio = alloc_tio(ci, ti, bio_nr, try ? GFP_NOIO : GFP_NOWAIT);
1353 if (!tio)
1354 break;
1355
1356 bio_list_add(blist, &tio->clone);
1357 }
1358 if (try)
Mike Snitzerbc02cdb2017-12-14 16:30:42 -05001359 mutex_unlock(&ci->io->md->table_devices_lock);
Mike Snitzer318716d2017-11-22 14:56:12 -05001360 if (bio_nr == num_bios)
1361 return;
1362
1363 while ((bio = bio_list_pop(blist))) {
1364 tio = container_of(bio, struct dm_target_io, clone);
1365 free_tio(tio);
1366 }
1367 }
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001368}
1369
Mike Snitzer978e51b2017-12-09 15:16:42 -05001370static blk_qc_t __clone_and_map_simple_bio(struct clone_info *ci,
1371 struct dm_target_io *tio, unsigned *len)
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001372{
Mikulas Patockadba14162012-10-12 21:02:15 +01001373 struct bio *clone = &tio->clone;
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001374
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001375 tio->len_ptr = len;
1376
Junichi Nomura99778272014-10-03 11:55:16 +00001377 __bio_clone_fast(clone, ci->bio);
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001378 if (len)
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001379 bio_setup_sector(clone, ci->sector, *len);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001380
Mike Snitzer978e51b2017-12-09 15:16:42 -05001381 return __map_bio(tio);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001382}
1383
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001384static void __send_duplicate_bios(struct clone_info *ci, struct dm_target *ti,
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001385 unsigned num_bios, unsigned *len)
Mike Snitzer06a426c2010-08-12 04:14:09 +01001386{
Mike Snitzer318716d2017-11-22 14:56:12 -05001387 struct bio_list blist = BIO_EMPTY_LIST;
1388 struct bio *bio;
1389 struct dm_target_io *tio;
Mike Snitzer06a426c2010-08-12 04:14:09 +01001390
Mike Snitzer318716d2017-11-22 14:56:12 -05001391 alloc_multiple_bios(&blist, ci, ti, num_bios);
1392
1393 while ((bio = bio_list_pop(&blist))) {
1394 tio = container_of(bio, struct dm_target_io, clone);
Mike Snitzer978e51b2017-12-09 15:16:42 -05001395 (void) __clone_and_map_simple_bio(ci, tio, len);
Mike Snitzer318716d2017-11-22 14:56:12 -05001396 }
Mike Snitzer06a426c2010-08-12 04:14:09 +01001397}
1398
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001399static int __send_empty_flush(struct clone_info *ci)
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001400{
Mike Snitzer06a426c2010-08-12 04:14:09 +01001401 unsigned target_nr = 0;
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001402 struct dm_target *ti;
1403
Dennis Zhou892ad712018-12-05 12:10:30 -05001404 /*
Jens Axboedbe3ece2018-12-19 09:13:34 -07001405 * Empty flush uses a statically initialized bio, as the base for
1406 * cloning. However, blkg association requires that a bdev is
1407 * associated with a gendisk, which doesn't happen until the bdev is
1408 * opened. So, blkg association is done at issue time of the flush
1409 * rather than when the device is created in alloc_dev().
Dennis Zhou892ad712018-12-05 12:10:30 -05001410 */
1411 bio_set_dev(ci->bio, ci->io->md->bdev);
1412
Mike Snitzerb372d362010-09-08 18:07:01 +02001413 BUG_ON(bio_has_data(ci->bio));
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001414 while ((ti = dm_table_get_target(ci->map, target_nr++)))
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001415 __send_duplicate_bios(ci, ti, ti->num_flush_bios, NULL);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001416
Dennis Zhou892ad712018-12-05 12:10:30 -05001417 bio_disassociate_blkg(ci->bio);
1418
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001419 return 0;
1420}
1421
Mike Snitzerc80914e2016-03-02 12:33:03 -05001422static int __clone_and_map_data_bio(struct clone_info *ci, struct dm_target *ti,
NeilBrownf31c21e2017-11-22 14:25:18 +11001423 sector_t sector, unsigned *len)
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001424{
Mikulas Patockadba14162012-10-12 21:02:15 +01001425 struct bio *bio = ci->bio;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001426 struct dm_target_io *tio;
NeilBrownf31c21e2017-11-22 14:25:18 +11001427 int r;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001428
Mike Snitzer318716d2017-11-22 14:56:12 -05001429 tio = alloc_tio(ci, ti, 0, GFP_NOIO);
NeilBrownf31c21e2017-11-22 14:25:18 +11001430 tio->len_ptr = len;
1431 r = clone_bio(tio, bio, sector, *len);
1432 if (r < 0) {
1433 free_tio(tio);
1434 return r;
Alasdair G Kergonb0d8ed42013-03-01 22:45:49 +00001435 }
Mike Snitzer978e51b2017-12-09 15:16:42 -05001436 (void) __map_bio(tio);
Mike Snitzerc80914e2016-03-02 12:33:03 -05001437
NeilBrownf31c21e2017-11-22 14:25:18 +11001438 return 0;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001439}
1440
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001441typedef unsigned (*get_num_bios_fn)(struct dm_target *ti);
Mike Snitzer23508a92012-12-21 20:23:37 +00001442
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001443static unsigned get_num_discard_bios(struct dm_target *ti)
Mike Snitzer23508a92012-12-21 20:23:37 +00001444{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001445 return ti->num_discard_bios;
Mike Snitzer23508a92012-12-21 20:23:37 +00001446}
1447
Denis Semakin00716542018-03-13 13:23:45 +04001448static unsigned get_num_secure_erase_bios(struct dm_target *ti)
1449{
1450 return ti->num_secure_erase_bios;
1451}
1452
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001453static unsigned get_num_write_same_bios(struct dm_target *ti)
Mike Snitzer23508a92012-12-21 20:23:37 +00001454{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001455 return ti->num_write_same_bios;
Mike Snitzer23508a92012-12-21 20:23:37 +00001456}
1457
Christoph Hellwigac62d622017-04-05 19:21:05 +02001458static unsigned get_num_write_zeroes_bios(struct dm_target *ti)
1459{
1460 return ti->num_write_zeroes_bios;
1461}
1462
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001463static int __send_changing_extent_only(struct clone_info *ci, struct dm_target *ti,
Mike Snitzer61697a62019-01-18 14:19:26 -05001464 unsigned num_bios)
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001465{
Mike Snitzer61697a62019-01-18 14:19:26 -05001466 unsigned len = ci->sector_count;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001467
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001468 /*
1469 * Even though the device advertised support for this type of
1470 * request, that does not mean every target supports it, and
1471 * reconfiguration might also have changed that since the
1472 * check was performed.
1473 */
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001474 if (!num_bios)
1475 return -EOPNOTSUPP;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001476
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001477 __send_duplicate_bios(ci, ti, num_bios, &len);
Mike Snitzer06a426c2010-08-12 04:14:09 +01001478
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001479 ci->sector += len;
1480 ci->sector_count -= len;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001481
1482 return 0;
1483}
1484
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001485static int __send_discard(struct clone_info *ci, struct dm_target *ti)
Mike Snitzer23508a92012-12-21 20:23:37 +00001486{
Mike Snitzer61697a62019-01-18 14:19:26 -05001487 return __send_changing_extent_only(ci, ti, get_num_discard_bios(ti));
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{
Mike Snitzer61697a62019-01-18 14:19:26 -05001492 return __send_changing_extent_only(ci, ti, get_num_secure_erase_bios(ti));
Denis Semakin00716542018-03-13 13:23:45 +04001493}
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 Snitzer61697a62019-01-18 14:19:26 -05001497 return __send_changing_extent_only(ci, ti, get_num_write_same_bios(ti));
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 Snitzer61697a62019-01-18 14:19:26 -05001502 return __send_changing_extent_only(ci, ti, get_num_write_zeroes_bios(ti));
Christoph Hellwigac62d622017-04-05 19:21:05 +02001503}
1504
Mike Snitzer568c73a2019-01-18 14:10:37 -05001505static bool is_abnormal_io(struct bio *bio)
1506{
1507 bool r = false;
1508
1509 switch (bio_op(bio)) {
1510 case REQ_OP_DISCARD:
1511 case REQ_OP_SECURE_ERASE:
1512 case REQ_OP_WRITE_SAME:
1513 case REQ_OP_WRITE_ZEROES:
1514 r = true;
1515 break;
1516 }
1517
1518 return r;
1519}
1520
Mike Snitzer0519c712018-03-26 11:49:16 -04001521static bool __process_abnormal_io(struct clone_info *ci, struct dm_target *ti,
1522 int *result)
1523{
1524 struct bio *bio = ci->bio;
1525
1526 if (bio_op(bio) == REQ_OP_DISCARD)
1527 *result = __send_discard(ci, ti);
Denis Semakin00716542018-03-13 13:23:45 +04001528 else if (bio_op(bio) == REQ_OP_SECURE_ERASE)
1529 *result = __send_secure_erase(ci, ti);
Mike Snitzer0519c712018-03-26 11:49:16 -04001530 else if (bio_op(bio) == REQ_OP_WRITE_SAME)
1531 *result = __send_write_same(ci, ti);
1532 else if (bio_op(bio) == REQ_OP_WRITE_ZEROES)
1533 *result = __send_write_zeroes(ci, ti);
1534 else
1535 return false;
1536
1537 return true;
1538}
1539
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001540/*
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001541 * Select the correct strategy for processing a non-flush bio.
1542 */
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001543static int __split_and_process_non_flush(struct clone_info *ci)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544{
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001545 struct dm_target *ti;
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001546 unsigned len;
Mike Snitzerc80914e2016-03-02 12:33:03 -05001547 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001549 ti = dm_table_find_target(ci->map, ci->sector);
1550 if (!dm_target_is_valid(ti))
1551 return -EIO;
1552
Mike Snitzer568c73a2019-01-18 14:10:37 -05001553 if (__process_abnormal_io(ci, ti, &r))
Mike Snitzer0519c712018-03-26 11:49:16 -04001554 return r;
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001555
Christoph Hellwige76239a2018-10-12 19:08:49 +09001556 len = min_t(sector_t, max_io_len(ci->sector, ti), ci->sector_count);
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001557
Mike Snitzerc80914e2016-03-02 12:33:03 -05001558 r = __clone_and_map_data_bio(ci, ti, ci->sector, &len);
1559 if (r < 0)
1560 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001562 ci->sector += len;
1563 ci->sector_count -= len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001565 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566}
1567
Mike Snitzer978e51b2017-12-09 15:16:42 -05001568static void init_clone_info(struct clone_info *ci, struct mapped_device *md,
1569 struct dm_table *map, struct bio *bio)
1570{
1571 ci->map = map;
1572 ci->io = alloc_io(md, bio);
1573 ci->sector = bio->bi_iter.bi_sector;
1574}
1575
Mike Snitzera1e1cb72019-01-17 10:48:01 -05001576#define __dm_part_stat_sub(part, field, subnd) \
1577 (part_stat_get(part, field) -= (subnd))
1578
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579/*
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001580 * Entry point to split a bio into clones and submit them to the targets.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 */
Mike Snitzer978e51b2017-12-09 15:16:42 -05001582static blk_qc_t __split_and_process_bio(struct mapped_device *md,
1583 struct dm_table *map, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584{
1585 struct clone_info ci;
Mike Snitzer978e51b2017-12-09 15:16:42 -05001586 blk_qc_t ret = BLK_QC_T_NONE;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001587 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588
Mike Snitzer978e51b2017-12-09 15:16:42 -05001589 init_clone_info(&ci, md, map, bio);
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001590
Jens Axboe1eff9d32016-08-05 15:35:16 -06001591 if (bio->bi_opf & REQ_PREFLUSH) {
Jens Axboedbe3ece2018-12-19 09:13:34 -07001592 struct bio flush_bio;
1593
1594 /*
1595 * Use an on-stack bio for this, it's safe since we don't
1596 * need to reference it after submit. It's just used as
1597 * the basis for the clone(s).
1598 */
1599 bio_init(&flush_bio, NULL, 0);
1600 flush_bio.bi_opf = REQ_OP_WRITE | REQ_PREFLUSH | REQ_SYNC;
1601 ci.bio = &flush_bio;
Mike Snitzerb372d362010-09-08 18:07:01 +02001602 ci.sector_count = 0;
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001603 error = __send_empty_flush(&ci);
Mike Snitzerb372d362010-09-08 18:07:01 +02001604 /* dec_pending submits any data associated with flush */
Damien Le Moala4aa5e52017-05-08 16:40:46 -07001605 } else if (bio_op(bio) == REQ_OP_ZONE_RESET) {
1606 ci.bio = bio;
1607 ci.sector_count = 0;
1608 error = __split_and_process_non_flush(&ci);
Mike Snitzerb372d362010-09-08 18:07:01 +02001609 } else {
Tejun Heo6a8736d2010-09-08 18:07:00 +02001610 ci.bio = bio;
Tejun Heod87f4c12010-09-03 11:56:19 +02001611 ci.sector_count = bio_sectors(bio);
NeilBrown18a25da2017-09-06 09:43:28 +10001612 while (ci.sector_count && !error) {
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001613 error = __split_and_process_non_flush(&ci);
NeilBrown18a25da2017-09-06 09:43:28 +10001614 if (current->bio_list && ci.sector_count && !error) {
1615 /*
1616 * Remainder must be passed to generic_make_request()
1617 * so that it gets handled *after* bios already submitted
1618 * have been completely processed.
1619 * We take a clone of the original to store in
Mike Snitzer745dc572017-12-11 20:51:50 -05001620 * ci.io->orig_bio to be used by end_io_acct() and
NeilBrown18a25da2017-09-06 09:43:28 +10001621 * for dec_pending to use for completion handling.
NeilBrown18a25da2017-09-06 09:43:28 +10001622 */
Mike Snitzerf21c6012018-06-15 09:35:33 -04001623 struct bio *b = bio_split(bio, bio_sectors(bio) - ci.sector_count,
1624 GFP_NOIO, &md->queue->bio_split);
Mike Snitzer745dc572017-12-11 20:51:50 -05001625 ci.io->orig_bio = b;
Mike Snitzera1e1cb72019-01-17 10:48:01 -05001626
1627 /*
1628 * Adjust IO stats for each split, otherwise upon queue
1629 * reentry there will be redundant IO accounting.
1630 * NOTE: this is a stop-gap fix, a proper fix involves
1631 * significant refactoring of DM core's bio splitting
1632 * (by eliminating DM's splitting and just using bio_split)
1633 */
1634 part_stat_lock();
1635 __dm_part_stat_sub(&dm_disk(md)->part0,
1636 sectors[op_stat_group(bio_op(bio))], ci.sector_count);
1637 part_stat_unlock();
1638
NeilBrown18a25da2017-09-06 09:43:28 +10001639 bio_chain(b, bio);
Mike Snitzer075c18c32019-01-18 01:21:11 -05001640 trace_block_split(md->queue, b, bio->bi_iter.bi_sector);
Mike Snitzer978e51b2017-12-09 15:16:42 -05001641 ret = generic_make_request(bio);
NeilBrown18a25da2017-09-06 09:43:28 +10001642 break;
1643 }
1644 }
Tejun Heod87f4c12010-09-03 11:56:19 +02001645 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646
1647 /* drop the extra reference count */
Bart Van Assche54385bf2017-08-09 11:32:10 -07001648 dec_pending(ci.io, errno_to_blk_status(error));
Mike Snitzer978e51b2017-12-09 15:16:42 -05001649 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651
1652/*
Mike Snitzer978e51b2017-12-09 15:16:42 -05001653 * Optimized variant of __split_and_process_bio that leverages the
1654 * fact that targets that use it do _not_ have a need to split bios.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 */
Mike Snitzer568c73a2019-01-18 14:10:37 -05001656static blk_qc_t __process_bio(struct mapped_device *md, struct dm_table *map,
1657 struct bio *bio, struct dm_target *ti)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658{
Mike Snitzer978e51b2017-12-09 15:16:42 -05001659 struct clone_info ci;
1660 blk_qc_t ret = BLK_QC_T_NONE;
1661 int error = 0;
1662
Mike Snitzer978e51b2017-12-09 15:16:42 -05001663 init_clone_info(&ci, md, map, bio);
1664
1665 if (bio->bi_opf & REQ_PREFLUSH) {
Jens Axboedbe3ece2018-12-19 09:13:34 -07001666 struct bio flush_bio;
1667
1668 /*
1669 * Use an on-stack bio for this, it's safe since we don't
1670 * need to reference it after submit. It's just used as
1671 * the basis for the clone(s).
1672 */
1673 bio_init(&flush_bio, NULL, 0);
1674 flush_bio.bi_opf = REQ_OP_WRITE | REQ_PREFLUSH | REQ_SYNC;
1675 ci.bio = &flush_bio;
Mike Snitzer978e51b2017-12-09 15:16:42 -05001676 ci.sector_count = 0;
1677 error = __send_empty_flush(&ci);
1678 /* dec_pending submits any data associated with flush */
1679 } else {
Mike Snitzer978e51b2017-12-09 15:16:42 -05001680 struct dm_target_io *tio;
1681
Mike Snitzer978e51b2017-12-09 15:16:42 -05001682 ci.bio = bio;
1683 ci.sector_count = bio_sectors(bio);
Mike Snitzer568c73a2019-01-18 14:10:37 -05001684 if (__process_abnormal_io(&ci, ti, &error))
Mike Snitzer0519c712018-03-26 11:49:16 -04001685 goto out;
1686
1687 tio = alloc_tio(&ci, ti, 0, GFP_NOIO);
Mike Snitzer978e51b2017-12-09 15:16:42 -05001688 ret = __clone_and_map_simple_bio(&ci, tio, NULL);
1689 }
1690out:
1691 /* drop the extra reference count */
1692 dec_pending(ci.io, errno_to_blk_status(error));
1693 return ret;
1694}
1695
Mike Snitzer568c73a2019-01-18 14:10:37 -05001696static void dm_queue_split(struct mapped_device *md, struct dm_target *ti, struct bio **bio)
1697{
1698 unsigned len, sector_count;
1699
1700 sector_count = bio_sectors(*bio);
1701 len = min_t(sector_t, max_io_len((*bio)->bi_iter.bi_sector, ti), sector_count);
1702
1703 if (sector_count > len) {
1704 struct bio *split = bio_split(*bio, len, GFP_NOIO, &md->queue->bio_split);
1705
1706 bio_chain(split, *bio);
1707 trace_block_split(md->queue, split, (*bio)->bi_iter.bi_sector);
1708 generic_make_request(*bio);
1709 *bio = split;
1710 }
1711}
1712
Mike Snitzer6548c7c2019-01-17 14:33:01 -05001713static blk_qc_t dm_process_bio(struct mapped_device *md,
1714 struct dm_table *map, struct bio *bio)
1715{
Mike Snitzer568c73a2019-01-18 14:10:37 -05001716 blk_qc_t ret = BLK_QC_T_NONE;
1717 struct dm_target *ti = md->immutable_target;
1718
1719 if (unlikely(!map)) {
1720 bio_io_error(bio);
1721 return ret;
1722 }
1723
1724 if (!ti) {
1725 ti = dm_table_find_target(map, bio->bi_iter.bi_sector);
1726 if (unlikely(!ti || !dm_target_is_valid(ti))) {
1727 bio_io_error(bio);
1728 return ret;
1729 }
1730 }
1731
1732 /*
1733 * If in ->make_request_fn we need to use blk_queue_split(), otherwise
1734 * queue_limits for abnormal requests (e.g. discard, writesame, etc)
1735 * won't be imposed.
1736 */
1737 if (current->bio_list) {
1738 if (is_abnormal_io(bio))
1739 blk_queue_split(md->queue, &bio);
1740 else
1741 dm_queue_split(md, ti, &bio);
1742 }
1743
Mike Snitzer6548c7c2019-01-17 14:33:01 -05001744 if (dm_get_md_type(md) == DM_TYPE_NVME_BIO_BASED)
Mike Snitzer568c73a2019-01-18 14:10:37 -05001745 return __process_bio(md, map, bio, ti);
Mike Snitzer6548c7c2019-01-17 14:33:01 -05001746 else
1747 return __split_and_process_bio(md, map, bio);
1748}
1749
Mikulas Patocka24113d42018-11-06 22:34:59 +01001750static blk_qc_t dm_make_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 struct mapped_device *md = q->queuedata;
Mike Snitzer978e51b2017-12-09 15:16:42 -05001753 blk_qc_t ret = BLK_QC_T_NONE;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001754 int srcu_idx;
1755 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001757 map = dm_get_live_table(md, &srcu_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
Tejun Heo6a8736d2010-09-08 18:07:00 +02001759 /* if we're suspended, we have to queue this io for later */
1760 if (unlikely(test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags))) {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001761 dm_put_live_table(md, srcu_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762
Jens Axboe1eff9d32016-08-05 15:35:16 -06001763 if (!(bio->bi_opf & REQ_RAHEAD))
Tejun Heo6a8736d2010-09-08 18:07:00 +02001764 queue_io(md, bio);
1765 else
Alasdair G Kergon54d9a1b2009-04-09 00:27:14 +01001766 bio_io_error(bio);
Mike Snitzer978e51b2017-12-09 15:16:42 -05001767 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 }
1769
Mike Snitzer6548c7c2019-01-17 14:33:01 -05001770 ret = dm_process_bio(md, map, bio);
Mike Snitzer978e51b2017-12-09 15:16:42 -05001771
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001772 dm_put_live_table(md, srcu_idx);
Mike Snitzer978e51b2017-12-09 15:16:42 -05001773 return ret;
1774}
1775
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776static int dm_any_congested(void *congested_data, int bdi_bits)
1777{
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00001778 int r = bdi_bits;
1779 struct mapped_device *md = congested_data;
1780 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01001782 if (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
Mike Snitzere522c032016-02-02 22:35:06 -05001783 if (dm_request_based(md)) {
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001784 /*
Mike Snitzere522c032016-02-02 22:35:06 -05001785 * With request-based DM we only need to check the
1786 * top-level queue for congestion.
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001787 */
Jan Karadc3b17c2017-02-02 15:56:50 +01001788 r = md->queue->backing_dev_info->wb.state & bdi_bits;
Mike Snitzere522c032016-02-02 22:35:06 -05001789 } else {
1790 map = dm_get_live_table_fast(md);
1791 if (map)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001792 r = dm_table_any_congested(map, bdi_bits);
Mike Snitzere522c032016-02-02 22:35:06 -05001793 dm_put_live_table_fast(md);
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00001794 }
1795 }
1796
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 return r;
1798}
1799
1800/*-----------------------------------------------------------------
1801 * An IDR is used to keep track of allocated minor numbers.
1802 *---------------------------------------------------------------*/
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001803static void free_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804{
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001805 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 idr_remove(&_minor_idr, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001807 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808}
1809
1810/*
1811 * See if the device with a specific minor # is free.
1812 */
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001813static int specific_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814{
Tejun Heoc9d76be2013-02-27 17:04:26 -08001815 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816
1817 if (minor >= (1 << MINORBITS))
1818 return -EINVAL;
1819
Tejun Heoc9d76be2013-02-27 17:04:26 -08001820 idr_preload(GFP_KERNEL);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001821 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822
Tejun Heoc9d76be2013-02-27 17:04:26 -08001823 r = idr_alloc(&_minor_idr, MINOR_ALLOCED, minor, minor + 1, GFP_NOWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001825 spin_unlock(&_minor_lock);
Tejun Heoc9d76be2013-02-27 17:04:26 -08001826 idr_preload_end();
1827 if (r < 0)
1828 return r == -ENOSPC ? -EBUSY : r;
1829 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830}
1831
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001832static int next_free_minor(int *minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833{
Tejun Heoc9d76be2013-02-27 17:04:26 -08001834 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835
Tejun Heoc9d76be2013-02-27 17:04:26 -08001836 idr_preload(GFP_KERNEL);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001837 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838
Tejun Heoc9d76be2013-02-27 17:04:26 -08001839 r = idr_alloc(&_minor_idr, MINOR_ALLOCED, 0, 1 << MINORBITS, GFP_NOWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001841 spin_unlock(&_minor_lock);
Tejun Heoc9d76be2013-02-27 17:04:26 -08001842 idr_preload_end();
1843 if (r < 0)
1844 return r;
1845 *minor = r;
1846 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847}
1848
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07001849static const struct block_device_operations dm_blk_dops;
Dan Williamsf26c5712017-04-12 12:35:44 -07001850static const struct dax_operations dm_dax_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851
Mikulas Patocka53d59142009-04-02 19:55:37 +01001852static void dm_wq_work(struct work_struct *work);
1853
Mike Snitzerc12c9a32018-01-12 09:32:21 -05001854static void dm_init_normal_md_queue(struct mapped_device *md)
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001855{
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001856 /*
1857 * Initialize aspects of queue that aren't relevant for blk-mq
1858 */
Jan Karadc3b17c2017-02-02 15:56:50 +01001859 md->queue->backing_dev_info->congested_fn = dm_any_congested;
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01001860}
1861
Mike Snitzer0f209722015-04-28 11:50:29 -04001862static void cleanup_mapped_device(struct mapped_device *md)
1863{
Mike Snitzer0f209722015-04-28 11:50:29 -04001864 if (md->wq)
1865 destroy_workqueue(md->wq);
Kent Overstreet6f1c8192018-05-20 18:25:53 -04001866 bioset_exit(&md->bs);
1867 bioset_exit(&md->io_bs);
Mike Snitzer0f209722015-04-28 11:50:29 -04001868
Dan Williamsf26c5712017-04-12 12:35:44 -07001869 if (md->dax_dev) {
1870 kill_dax(md->dax_dev);
1871 put_dax(md->dax_dev);
1872 md->dax_dev = NULL;
1873 }
1874
Mike Snitzer0f209722015-04-28 11:50:29 -04001875 if (md->disk) {
1876 spin_lock(&_minor_lock);
1877 md->disk->private_data = NULL;
1878 spin_unlock(&_minor_lock);
Mike Snitzer0f209722015-04-28 11:50:29 -04001879 del_gendisk(md->disk);
1880 put_disk(md->disk);
1881 }
1882
1883 if (md->queue)
1884 blk_cleanup_queue(md->queue);
1885
Tahsin Erdogand09960b2016-10-10 05:35:19 -07001886 cleanup_srcu_struct(&md->io_barrier);
1887
Mike Snitzer0f209722015-04-28 11:50:29 -04001888 if (md->bdev) {
1889 bdput(md->bdev);
1890 md->bdev = NULL;
1891 }
Mike Snitzer4cc96132016-05-12 16:28:10 -04001892
Mike Snitzerd5ffebd2018-01-05 21:17:20 -05001893 mutex_destroy(&md->suspend_lock);
1894 mutex_destroy(&md->type_lock);
1895 mutex_destroy(&md->table_devices_lock);
1896
Mike Snitzer4cc96132016-05-12 16:28:10 -04001897 dm_mq_cleanup_mapped_device(md);
Mike Snitzer0f209722015-04-28 11:50:29 -04001898}
1899
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900/*
1901 * Allocate and initialise a blank device with a given minor.
1902 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001903static struct mapped_device *alloc_dev(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904{
Mike Snitzer115485e2016-02-22 12:16:21 -05001905 int r, numa_node_id = dm_get_numa_node();
Dan Williams976431b2018-03-29 17:22:13 -07001906 struct dax_device *dax_dev = NULL;
Mike Snitzer115485e2016-02-22 12:16:21 -05001907 struct mapped_device *md;
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001908 void *old_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909
Mikulas Patocka856eb092017-10-31 19:33:02 -04001910 md = kvzalloc_node(sizeof(*md), GFP_KERNEL, numa_node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 if (!md) {
1912 DMWARN("unable to allocate device, out of memory.");
1913 return NULL;
1914 }
1915
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001916 if (!try_module_get(THIS_MODULE))
Milan Broz6ed7ade2008-02-08 02:10:19 +00001917 goto bad_module_get;
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001918
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 /* get a minor number for the dev */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001920 if (minor == DM_ANY_MINOR)
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001921 r = next_free_minor(&minor);
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001922 else
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001923 r = specific_minor(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 if (r < 0)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001925 goto bad_minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001927 r = init_srcu_struct(&md->io_barrier);
1928 if (r < 0)
1929 goto bad_io_barrier;
1930
Mike Snitzer115485e2016-02-22 12:16:21 -05001931 md->numa_node_id = numa_node_id;
Mike Snitzer591ddcf2016-01-31 12:05:42 -05001932 md->init_tio_pdu = false;
Mike Snitzera5664da2010-08-12 04:14:01 +01001933 md->type = DM_TYPE_NONE;
Daniel Walkere61290a2008-02-08 02:10:08 +00001934 mutex_init(&md->suspend_lock);
Mike Snitzera5664da2010-08-12 04:14:01 +01001935 mutex_init(&md->type_lock);
Benjamin Marzinski86f11522014-08-13 13:53:43 -05001936 mutex_init(&md->table_devices_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01001937 spin_lock_init(&md->deferred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 atomic_set(&md->holders, 1);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -07001939 atomic_set(&md->open_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 atomic_set(&md->event_nr, 0);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001941 atomic_set(&md->uevent_seq, 0);
1942 INIT_LIST_HEAD(&md->uevent_list);
Benjamin Marzinski86f11522014-08-13 13:53:43 -05001943 INIT_LIST_HEAD(&md->table_devices);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001944 spin_lock_init(&md->uevent_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945
Christoph Hellwig6d469642018-11-14 17:02:18 +01001946 md->queue = blk_alloc_queue_node(GFP_KERNEL, numa_node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 if (!md->queue)
Mike Snitzer0f209722015-04-28 11:50:29 -04001948 goto bad;
Mike Snitzerc12c9a32018-01-12 09:32:21 -05001949 md->queue->queuedata = md;
1950 md->queue->backing_dev_info->congested_data = md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951
Mike Snitzerc12c9a32018-01-12 09:32:21 -05001952 md->disk = alloc_disk_node(1, md->numa_node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 if (!md->disk)
Mike Snitzer0f209722015-04-28 11:50:29 -04001954 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07001956 init_waitqueue_head(&md->wait);
Mikulas Patocka53d59142009-04-02 19:55:37 +01001957 INIT_WORK(&md->work, dm_wq_work);
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07001958 init_waitqueue_head(&md->eventq);
Mikulas Patocka2995fa72014-01-13 19:37:54 -05001959 init_completion(&md->kobj_holder.completion);
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07001960
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 md->disk->major = _major;
1962 md->disk->first_minor = minor;
1963 md->disk->fops = &dm_blk_dops;
1964 md->disk->queue = md->queue;
1965 md->disk->private_data = md;
1966 sprintf(md->disk->disk_name, "dm-%d", minor);
Dan Williamsf26c5712017-04-12 12:35:44 -07001967
Dan Williams976431b2018-03-29 17:22:13 -07001968 if (IS_ENABLED(CONFIG_DAX_DRIVER)) {
1969 dax_dev = alloc_dax(md, md->disk->disk_name, &dm_dax_ops);
1970 if (!dax_dev)
1971 goto bad;
1972 }
Dan Williamsf26c5712017-04-12 12:35:44 -07001973 md->dax_dev = dax_dev;
1974
Mike Snitzerc100ec42018-01-08 20:03:04 -05001975 add_disk_no_queue_reg(md->disk);
Mike Anderson7e51f252006-03-27 01:17:52 -08001976 format_dev_t(md->name, MKDEV(_major, minor));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977
Tejun Heo670368a2013-07-30 08:40:21 -04001978 md->wq = alloc_workqueue("kdmflush", WQ_MEM_RECLAIM, 0);
Milan Broz304f3f62008-02-08 02:11:17 +00001979 if (!md->wq)
Mike Snitzer0f209722015-04-28 11:50:29 -04001980 goto bad;
Milan Broz304f3f62008-02-08 02:11:17 +00001981
Mikulas Patocka32a926d2009-06-22 10:12:17 +01001982 md->bdev = bdget_disk(md->disk, 0);
1983 if (!md->bdev)
Mike Snitzer0f209722015-04-28 11:50:29 -04001984 goto bad;
Mikulas Patocka32a926d2009-06-22 10:12:17 +01001985
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04001986 dm_stats_init(&md->stats);
1987
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001988 /* Populate the mapping, nobody knows we exist yet */
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001989 spin_lock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001990 old_md = idr_replace(&_minor_idr, md, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001991 spin_unlock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001992
1993 BUG_ON(old_md != MINOR_ALLOCED);
1994
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 return md;
1996
Mike Snitzer0f209722015-04-28 11:50:29 -04001997bad:
1998 cleanup_mapped_device(md);
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001999bad_io_barrier:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 free_minor(minor);
Milan Broz6ed7ade2008-02-08 02:10:19 +00002001bad_minor:
Jeff Mahoney10da4f72006-06-26 00:27:25 -07002002 module_put(THIS_MODULE);
Milan Broz6ed7ade2008-02-08 02:10:19 +00002003bad_module_get:
Mikulas Patocka856eb092017-10-31 19:33:02 -04002004 kvfree(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 return NULL;
2006}
2007
Jun'ichi Nomuraae9da832007-10-19 22:38:43 +01002008static void unlock_fs(struct mapped_device *md);
2009
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010static void free_dev(struct mapped_device *md)
2011{
Tejun Heof331c022008-09-03 09:01:48 +02002012 int minor = MINOR(disk_devt(md->disk));
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08002013
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002014 unlock_fs(md);
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002015
Mike Snitzer0f209722015-04-28 11:50:29 -04002016 cleanup_mapped_device(md);
Mike Snitzer0f209722015-04-28 11:50:29 -04002017
2018 free_table_devices(&md->table_devices);
2019 dm_stats_cleanup(&md->stats);
Mike Snitzer63a4f062015-03-23 17:01:43 -04002020 free_minor(minor);
2021
Jeff Mahoney10da4f72006-06-26 00:27:25 -07002022 module_put(THIS_MODULE);
Mikulas Patocka856eb092017-10-31 19:33:02 -04002023 kvfree(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024}
2025
Jens Axboe2a2a4c52018-06-07 14:42:06 -06002026static int __bind_mempools(struct mapped_device *md, struct dm_table *t)
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002027{
Mikulas Patockac0820cf2012-12-21 20:23:38 +00002028 struct dm_md_mempools *p = dm_table_get_md_mempools(t);
Jens Axboe2a2a4c52018-06-07 14:42:06 -06002029 int ret = 0;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002030
Mike Snitzer0776aa02017-12-08 14:40:52 -05002031 if (dm_table_bio_based(t)) {
Mike Snitzer64f52b02017-12-11 23:17:47 -05002032 /*
2033 * The md may already have mempools that need changing.
2034 * If so, reload bioset because front_pad may have changed
2035 * because a different table was loaded.
2036 */
Kent Overstreet6f1c8192018-05-20 18:25:53 -04002037 bioset_exit(&md->bs);
2038 bioset_exit(&md->io_bs);
Mike Snitzer0776aa02017-12-08 14:40:52 -05002039
Kent Overstreet6f1c8192018-05-20 18:25:53 -04002040 } else if (bioset_initialized(&md->bs)) {
Mike Snitzer4e6e36c2015-06-26 09:42:57 -04002041 /*
2042 * There's no need to reload with request-based dm
2043 * because the size of front_pad doesn't change.
2044 * Note for future: If you are to reload bioset,
2045 * prep-ed requests in the queue may refer
2046 * to bio from the old bioset, so you must walk
2047 * through the queue to unprep.
2048 */
2049 goto out;
Mikulas Patockac0820cf2012-12-21 20:23:38 +00002050 }
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002051
Kent Overstreet6f1c8192018-05-20 18:25:53 -04002052 BUG_ON(!p ||
2053 bioset_initialized(&md->bs) ||
2054 bioset_initialized(&md->io_bs));
Mike Snitzercbc4e3c2015-04-27 16:37:50 -04002055
Jens Axboe2a2a4c52018-06-07 14:42:06 -06002056 ret = bioset_init_from_src(&md->bs, &p->bs);
2057 if (ret)
2058 goto out;
2059 ret = bioset_init_from_src(&md->io_bs, &p->io_bs);
2060 if (ret)
2061 bioset_exit(&md->bs);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002062out:
Mike Snitzer02233342015-03-10 23:49:26 -04002063 /* mempool bind completed, no longer need any mempools in the table */
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002064 dm_table_free_md_mempools(t);
Jens Axboe2a2a4c52018-06-07 14:42:06 -06002065 return ret;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002066}
2067
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068/*
2069 * Bind a table to the device.
2070 */
2071static void event_callback(void *context)
2072{
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002073 unsigned long flags;
2074 LIST_HEAD(uevents);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 struct mapped_device *md = (struct mapped_device *) context;
2076
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002077 spin_lock_irqsave(&md->uevent_lock, flags);
2078 list_splice_init(&md->uevent_list, &uevents);
2079 spin_unlock_irqrestore(&md->uevent_lock, flags);
2080
Tejun Heoed9e1982008-08-25 19:56:05 +09002081 dm_send_uevents(&uevents, &disk_to_dev(md->disk)->kobj);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002082
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 atomic_inc(&md->event_nr);
2084 wake_up(&md->eventq);
Mikulas Patocka62e08242017-09-20 07:29:49 -04002085 dm_issue_global_event();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086}
2087
Mike Snitzerc2176492011-01-13 19:53:46 +00002088/*
2089 * Protected by md->suspend_lock obtained by dm_swap_table().
2090 */
Alasdair G Kergon4e90188be2005-07-28 21:15:59 -07002091static void __set_size(struct mapped_device *md, sector_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092{
Bart Van Assche1ea06542017-04-27 10:11:21 -07002093 lockdep_assert_held(&md->suspend_lock);
2094
Alasdair G Kergon4e90188be2005-07-28 21:15:59 -07002095 set_capacity(md->disk, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002097 i_size_write(md->bdev->bd_inode, (loff_t)size << SECTOR_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098}
2099
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002100/*
2101 * Returns old map, which caller must destroy.
2102 */
2103static struct dm_table *__bind(struct mapped_device *md, struct dm_table *t,
2104 struct queue_limits *limits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105{
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002106 struct dm_table *old_map;
Jens Axboe165125e2007-07-24 09:28:11 +02002107 struct request_queue *q = md->queue;
Mike Snitzer978e51b2017-12-09 15:16:42 -05002108 bool request_based = dm_table_request_based(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 sector_t size;
Jens Axboe2a2a4c52018-06-07 14:42:06 -06002110 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111
Bart Van Assche5a8f1f82016-08-31 15:17:04 -07002112 lockdep_assert_held(&md->suspend_lock);
2113
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 size = dm_table_get_size(t);
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08002115
2116 /*
2117 * Wipe any geometry if the size of the table changed.
2118 */
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002119 if (size != dm_get_size(md))
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08002120 memset(&md->geometry, 0, sizeof(md->geometry));
2121
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002122 __set_size(md, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002124 dm_table_event_callback(t, event_callback, md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002125
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002126 /*
2127 * The queue hasn't been stopped yet, if the old table type wasn't
2128 * for request-based during suspension. So stop it to prevent
2129 * I/O mapping before resume.
2130 * This must be done before setting the queue restrictions,
2131 * because request-based dm may be run just after the setting.
2132 */
Mike Snitzer978e51b2017-12-09 15:16:42 -05002133 if (request_based)
Mike Snitzereca7ee62016-02-20 13:45:38 -05002134 dm_stop_queue(q);
Mike Snitzer978e51b2017-12-09 15:16:42 -05002135
2136 if (request_based || md->type == DM_TYPE_NVME_BIO_BASED) {
Mike Snitzer16f12262016-01-31 17:22:27 -05002137 /*
Mike Snitzer978e51b2017-12-09 15:16:42 -05002138 * Leverage the fact that request-based DM targets and
2139 * NVMe bio based targets are immutable singletons
2140 * - used to optimize both dm_request_fn and dm_mq_queue_rq;
2141 * and __process_bio.
Mike Snitzer16f12262016-01-31 17:22:27 -05002142 */
2143 md->immutable_target = dm_table_get_immutable_target(t);
2144 }
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002145
Jens Axboe2a2a4c52018-06-07 14:42:06 -06002146 ret = __bind_mempools(md, t);
2147 if (ret) {
2148 old_map = ERR_PTR(ret);
2149 goto out;
2150 }
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002151
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002152 old_map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mike Snitzer1d3aa6f2016-02-22 14:14:24 -05002153 rcu_assign_pointer(md->map, (void *)t);
Alasdair G Kergon36a04562011-10-31 20:19:04 +00002154 md->immutable_target_type = dm_table_get_immutable_target_type(t);
2155
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002156 dm_table_set_restrictions(t, q, limits);
Hannes Reinecke41abc4e2014-11-05 14:35:50 +01002157 if (old_map)
2158 dm_sync_table(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002159
Jens Axboe2a2a4c52018-06-07 14:42:06 -06002160out:
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002161 return old_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162}
2163
Alasdair G Kergona7940152009-12-10 23:52:23 +00002164/*
2165 * Returns unbound table for the caller to free.
2166 */
2167static struct dm_table *__unbind(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168{
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002169 struct dm_table *map = rcu_dereference_protected(md->map, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170
2171 if (!map)
Alasdair G Kergona7940152009-12-10 23:52:23 +00002172 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173
2174 dm_table_event_callback(map, NULL, NULL);
Monam Agarwal9cdb8522014-03-23 23:58:27 +05302175 RCU_INIT_POINTER(md->map, NULL);
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002176 dm_sync_table(md);
Alasdair G Kergona7940152009-12-10 23:52:23 +00002177
2178 return map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179}
2180
2181/*
2182 * Constructor for a new device.
2183 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002184int dm_create(int minor, struct mapped_device **result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185{
Mike Snitzerc12c9a32018-01-12 09:32:21 -05002186 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 struct mapped_device *md;
2188
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002189 md = alloc_dev(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 if (!md)
2191 return -ENXIO;
2192
Mike Snitzerc12c9a32018-01-12 09:32:21 -05002193 r = dm_sysfs_init(md);
2194 if (r) {
2195 free_dev(md);
2196 return r;
2197 }
Milan Broz784aae72009-01-06 03:05:12 +00002198
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 *result = md;
2200 return 0;
2201}
2202
Mike Snitzera5664da2010-08-12 04:14:01 +01002203/*
2204 * Functions to manage md->type.
2205 * All are required to hold md->type_lock.
2206 */
2207void dm_lock_md_type(struct mapped_device *md)
2208{
2209 mutex_lock(&md->type_lock);
2210}
2211
2212void dm_unlock_md_type(struct mapped_device *md)
2213{
2214 mutex_unlock(&md->type_lock);
2215}
2216
Bart Van Assche7e0d5742017-04-27 10:11:23 -07002217void dm_set_md_type(struct mapped_device *md, enum dm_queue_mode type)
Mike Snitzera5664da2010-08-12 04:14:01 +01002218{
Mike Snitzer00c4fc32013-08-27 18:57:03 -04002219 BUG_ON(!mutex_is_locked(&md->type_lock));
Mike Snitzera5664da2010-08-12 04:14:01 +01002220 md->type = type;
2221}
2222
Bart Van Assche7e0d5742017-04-27 10:11:23 -07002223enum dm_queue_mode dm_get_md_type(struct mapped_device *md)
Mike Snitzera5664da2010-08-12 04:14:01 +01002224{
2225 return md->type;
2226}
2227
Alasdair G Kergon36a04562011-10-31 20:19:04 +00002228struct target_type *dm_get_immutable_target_type(struct mapped_device *md)
2229{
2230 return md->immutable_target_type;
2231}
2232
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002233/*
Mike Snitzerf84cb8a2013-09-19 12:13:58 -04002234 * The queue_limits are only valid as long as you have a reference
2235 * count on 'md'.
2236 */
2237struct queue_limits *dm_get_queue_limits(struct mapped_device *md)
2238{
2239 BUG_ON(!atomic_read(&md->holders));
2240 return &md->queue->limits;
2241}
2242EXPORT_SYMBOL_GPL(dm_get_queue_limits);
2243
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002244/*
2245 * Setup the DM device's queue based on md's type
2246 */
Mike Snitzer591ddcf2016-01-31 12:05:42 -05002247int dm_setup_md_queue(struct mapped_device *md, struct dm_table *t)
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002248{
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002249 int r;
Mike Snitzerc100ec42018-01-08 20:03:04 -05002250 struct queue_limits limits;
Bart Van Assche7e0d5742017-04-27 10:11:23 -07002251 enum dm_queue_mode type = dm_get_md_type(md);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002252
Toshi Kani545ed202016-06-22 17:54:53 -06002253 switch (type) {
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002254 case DM_TYPE_REQUEST_BASED:
Mike Snitzere83068a2016-05-24 21:16:51 -04002255 r = dm_mq_init_request_queue(md, t);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002256 if (r) {
Mike Snitzereca7ee62016-02-20 13:45:38 -05002257 DMERR("Cannot initialize queue for request-based dm-mq mapped device");
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002258 return r;
2259 }
2260 break;
2261 case DM_TYPE_BIO_BASED:
Toshi Kani545ed202016-06-22 17:54:53 -06002262 case DM_TYPE_DAX_BIO_BASED:
Mike Snitzer978e51b2017-12-09 15:16:42 -05002263 case DM_TYPE_NVME_BIO_BASED:
2264 dm_init_normal_md_queue(md);
Mikulas Patocka24113d42018-11-06 22:34:59 +01002265 blk_queue_make_request(md->queue, dm_make_request);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002266 break;
Bart Van Assche7e0d5742017-04-27 10:11:23 -07002267 case DM_TYPE_NONE:
2268 WARN_ON_ONCE(true);
2269 break;
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002270 }
2271
Mike Snitzerc100ec42018-01-08 20:03:04 -05002272 r = dm_calculate_queue_limits(t, &limits);
2273 if (r) {
2274 DMERR("Cannot calculate initial queue limits");
2275 return r;
2276 }
2277 dm_table_set_restrictions(t, md->queue, &limits);
2278 blk_register_queue(md->disk);
2279
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002280 return 0;
2281}
2282
Mikulas Patocka2bec1f42015-02-17 14:30:53 -05002283struct mapped_device *dm_get_md(dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284{
2285 struct mapped_device *md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 unsigned minor = MINOR(dev);
2287
2288 if (MAJOR(dev) != _major || minor >= (1 << MINORBITS))
2289 return NULL;
2290
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002291 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292
2293 md = idr_find(&_minor_idr, minor);
Mike Snitzer49de5762017-11-06 16:40:10 -05002294 if (!md || md == MINOR_ALLOCED || (MINOR(disk_devt(dm_disk(md))) != minor) ||
2295 test_bit(DMF_FREEING, &md->flags) || dm_deleting_md(md)) {
2296 md = NULL;
2297 goto out;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002298 }
Mike Snitzer49de5762017-11-06 16:40:10 -05002299 dm_get(md);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002300out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002301 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302
David Teigland637842c2006-01-06 00:20:00 -08002303 return md;
2304}
Alasdair G Kergon3cf2e4b2011-10-31 20:19:06 +00002305EXPORT_SYMBOL_GPL(dm_get_md);
David Teiglandd229a952006-01-06 00:20:01 -08002306
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08002307void *dm_get_mdptr(struct mapped_device *md)
David Teigland637842c2006-01-06 00:20:00 -08002308{
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08002309 return md->interface_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310}
2311
2312void dm_set_mdptr(struct mapped_device *md, void *ptr)
2313{
2314 md->interface_ptr = ptr;
2315}
2316
2317void dm_get(struct mapped_device *md)
2318{
2319 atomic_inc(&md->holders);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002320 BUG_ON(test_bit(DMF_FREEING, &md->flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321}
2322
Mikulas Patocka09ee96b2015-02-26 11:41:28 -05002323int dm_hold(struct mapped_device *md)
2324{
2325 spin_lock(&_minor_lock);
2326 if (test_bit(DMF_FREEING, &md->flags)) {
2327 spin_unlock(&_minor_lock);
2328 return -EBUSY;
2329 }
2330 dm_get(md);
2331 spin_unlock(&_minor_lock);
2332 return 0;
2333}
2334EXPORT_SYMBOL_GPL(dm_hold);
2335
Alasdair G Kergon72d94862006-06-26 00:27:35 -07002336const char *dm_device_name(struct mapped_device *md)
2337{
2338 return md->name;
2339}
2340EXPORT_SYMBOL_GPL(dm_device_name);
2341
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002342static void __dm_destroy(struct mapped_device *md, bool wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343{
Mike Anderson1134e5a2006-03-27 01:17:54 -08002344 struct dm_table *map;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002345 int srcu_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002347 might_sleep();
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002348
Mike Snitzer63a4f062015-03-23 17:01:43 -04002349 spin_lock(&_minor_lock);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002350 idr_replace(&_minor_idr, MINOR_ALLOCED, MINOR(disk_devt(dm_disk(md))));
2351 set_bit(DMF_FREEING, &md->flags);
2352 spin_unlock(&_minor_lock);
2353
Mike Snitzerc12c9a32018-01-12 09:32:21 -05002354 blk_set_queue_dying(md->queue);
Bart Van Assche3b785fb2016-08-31 15:17:49 -07002355
Mikulas Patockaab7c7bb2015-02-27 14:04:27 -05002356 /*
2357 * Take suspend_lock so that presuspend and postsuspend methods
2358 * do not race with internal suspend.
2359 */
2360 mutex_lock(&md->suspend_lock);
Junichi Nomura2a708cf2015-10-01 08:31:51 +00002361 map = dm_get_live_table(md, &srcu_idx);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002362 if (!dm_suspended_md(md)) {
2363 dm_table_presuspend_targets(map);
2364 dm_table_postsuspend_targets(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 }
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002366 /* dm_put_live_table must be before msleep, otherwise deadlock is possible */
2367 dm_put_live_table(md, srcu_idx);
Junichi Nomura2a708cf2015-10-01 08:31:51 +00002368 mutex_unlock(&md->suspend_lock);
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002369
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002370 /*
2371 * Rare, but there may be I/O requests still going to complete,
2372 * for example. Wait for all references to disappear.
2373 * No one should increment the reference count of the mapped_device,
2374 * after the mapped_device state becomes DMF_FREEING.
2375 */
2376 if (wait)
2377 while (atomic_read(&md->holders))
2378 msleep(1);
2379 else if (atomic_read(&md->holders))
2380 DMWARN("%s: Forcibly removing mapped_device still in use! (%d users)",
2381 dm_device_name(md), atomic_read(&md->holders));
2382
2383 dm_sysfs_exit(md);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002384 dm_table_destroy(__unbind(md));
2385 free_dev(md);
2386}
2387
2388void dm_destroy(struct mapped_device *md)
2389{
2390 __dm_destroy(md, true);
2391}
2392
2393void dm_destroy_immediate(struct mapped_device *md)
2394{
2395 __dm_destroy(md, false);
2396}
2397
2398void dm_put(struct mapped_device *md)
2399{
2400 atomic_dec(&md->holders);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401}
Edward Goggin79eb8852007-05-09 02:32:56 -07002402EXPORT_SYMBOL_GPL(dm_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403
Bart Van Asscheb48633f2016-08-31 15:16:02 -07002404static int dm_wait_for_completion(struct mapped_device *md, long task_state)
Milan Broz46125c12008-02-08 02:10:30 +00002405{
2406 int r = 0;
Bart Van Assche9f4c3f82016-08-31 15:16:43 -07002407 DEFINE_WAIT(wait);
Milan Broz46125c12008-02-08 02:10:30 +00002408
2409 while (1) {
Bart Van Assche9f4c3f82016-08-31 15:16:43 -07002410 prepare_to_wait(&md->wait, &wait, task_state);
Milan Broz46125c12008-02-08 02:10:30 +00002411
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00002412 if (!md_in_flight(md))
Milan Broz46125c12008-02-08 02:10:30 +00002413 break;
2414
Bart Van Asschee3fabdf2016-08-31 15:16:22 -07002415 if (signal_pending_state(task_state, current)) {
Milan Broz46125c12008-02-08 02:10:30 +00002416 r = -EINTR;
2417 break;
2418 }
2419
2420 io_schedule();
2421 }
Bart Van Assche9f4c3f82016-08-31 15:16:43 -07002422 finish_wait(&md->wait, &wait);
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002423
Milan Broz46125c12008-02-08 02:10:30 +00002424 return r;
2425}
2426
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427/*
2428 * Process the deferred bios
2429 */
Mikulas Patockaef208582009-04-02 19:55:38 +01002430static void dm_wq_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431{
Mikulas Patockaef208582009-04-02 19:55:38 +01002432 struct mapped_device *md = container_of(work, struct mapped_device,
2433 work);
Milan Broz6d6f10d2008-02-08 02:10:22 +00002434 struct bio *c;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002435 int srcu_idx;
2436 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002438 map = dm_get_live_table(md, &srcu_idx);
Mikulas Patockaef208582009-04-02 19:55:38 +01002439
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002440 while (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002441 spin_lock_irq(&md->deferred_lock);
2442 c = bio_list_pop(&md->deferred);
2443 spin_unlock_irq(&md->deferred_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01002444
Tejun Heo6a8736d2010-09-08 18:07:00 +02002445 if (!c)
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002446 break;
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002447
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002448 if (dm_request_based(md))
Mike Snitzer6548c7c2019-01-17 14:33:01 -05002449 (void) generic_make_request(c);
Tejun Heo6a8736d2010-09-08 18:07:00 +02002450 else
Mike Snitzer6548c7c2019-01-17 14:33:01 -05002451 (void) dm_process_bio(md, map, c);
Mikulas Patocka022c2612009-04-02 19:55:39 +01002452 }
Milan Broz73d410c2008-02-08 02:10:25 +00002453
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002454 dm_put_live_table(md, srcu_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455}
2456
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002457static void dm_queue_flush(struct mapped_device *md)
Milan Broz304f3f62008-02-08 02:11:17 +00002458{
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002459 clear_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01002460 smp_mb__after_atomic();
Mikulas Patocka53d59142009-04-02 19:55:37 +01002461 queue_work(md->wq, &md->work);
Milan Broz304f3f62008-02-08 02:11:17 +00002462}
2463
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464/*
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002465 * Swap in a new table, returning the old one for the caller to destroy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 */
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002467struct dm_table *dm_swap_table(struct mapped_device *md, struct dm_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468{
Mike Christie87eb5b22013-03-01 22:45:48 +00002469 struct dm_table *live_map = NULL, *map = ERR_PTR(-EINVAL);
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002470 struct queue_limits limits;
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002471 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472
Daniel Walkere61290a2008-02-08 02:10:08 +00002473 mutex_lock(&md->suspend_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474
2475 /* device must be suspended */
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +00002476 if (!dm_suspended_md(md))
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07002477 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478
Mike Snitzer3ae70652012-09-26 23:45:45 +01002479 /*
2480 * If the new table has no data devices, retain the existing limits.
2481 * This helps multipath with queue_if_no_path if all paths disappear,
2482 * then new I/O is queued based on these limits, and then some paths
2483 * reappear.
2484 */
2485 if (dm_table_has_no_data_devices(table)) {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002486 live_map = dm_get_live_table_fast(md);
Mike Snitzer3ae70652012-09-26 23:45:45 +01002487 if (live_map)
2488 limits = md->queue->limits;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002489 dm_put_live_table_fast(md);
Mike Snitzer3ae70652012-09-26 23:45:45 +01002490 }
2491
Mike Christie87eb5b22013-03-01 22:45:48 +00002492 if (!live_map) {
2493 r = dm_calculate_queue_limits(table, &limits);
2494 if (r) {
2495 map = ERR_PTR(r);
2496 goto out;
2497 }
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002498 }
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002499
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002500 map = __bind(md, table, &limits);
Mikulas Patocka62e08242017-09-20 07:29:49 -04002501 dm_issue_global_event();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07002503out:
Daniel Walkere61290a2008-02-08 02:10:08 +00002504 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002505 return map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506}
2507
2508/*
2509 * Functions to lock and unlock any filesystem running on the
2510 * device.
2511 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002512static int lock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513{
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08002514 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515
2516 WARN_ON(md->frozen_sb);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002517
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002518 md->frozen_sb = freeze_bdev(md->bdev);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002519 if (IS_ERR(md->frozen_sb)) {
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002520 r = PTR_ERR(md->frozen_sb);
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08002521 md->frozen_sb = NULL;
2522 return r;
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002523 }
2524
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002525 set_bit(DMF_FROZEN, &md->flags);
2526
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 return 0;
2528}
2529
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002530static void unlock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531{
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002532 if (!test_bit(DMF_FROZEN, &md->flags))
2533 return;
2534
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002535 thaw_bdev(md->bdev, md->frozen_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 md->frozen_sb = NULL;
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002537 clear_bit(DMF_FROZEN, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538}
2539
2540/*
Bart Van Asscheb48633f2016-08-31 15:16:02 -07002541 * @suspend_flags: DM_SUSPEND_LOCKFS_FLAG and/or DM_SUSPEND_NOFLUSH_FLAG
2542 * @task_state: e.g. TASK_INTERRUPTIBLE or TASK_UNINTERRUPTIBLE
2543 * @dmf_suspended_flag: DMF_SUSPENDED or DMF_SUSPENDED_INTERNALLY
2544 *
Mike Snitzerffcc3932014-10-28 18:34:52 -04002545 * If __dm_suspend returns 0, the device is completely quiescent
2546 * now. There is no request-processing activity. All new requests
2547 * are being added to md->deferred list.
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002548 */
Mike Snitzerffcc3932014-10-28 18:34:52 -04002549static int __dm_suspend(struct mapped_device *md, struct dm_table *map,
Bart Van Asscheb48633f2016-08-31 15:16:02 -07002550 unsigned suspend_flags, long task_state,
Mike Snitzereaf9a732016-08-02 13:07:20 -04002551 int dmf_suspended_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552{
Mike Snitzerffcc3932014-10-28 18:34:52 -04002553 bool do_lockfs = suspend_flags & DM_SUSPEND_LOCKFS_FLAG;
2554 bool noflush = suspend_flags & DM_SUSPEND_NOFLUSH_FLAG;
2555 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556
Bart Van Assche5a8f1f82016-08-31 15:17:04 -07002557 lockdep_assert_held(&md->suspend_lock);
2558
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002559 /*
2560 * DMF_NOFLUSH_SUSPENDING must be set before presuspend.
2561 * This flag is cleared before dm_suspend returns.
2562 */
2563 if (noflush)
2564 set_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
Bart Van Assche86331f32017-04-27 10:11:26 -07002565 else
2566 pr_debug("%s: suspending with flush\n", dm_device_name(md));
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002567
Mike Snitzerd67ee212014-10-28 20:13:31 -04002568 /*
2569 * This gets reverted if there's an error later and the targets
2570 * provide the .presuspend_undo hook.
2571 */
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002572 dm_table_presuspend_targets(map);
2573
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002574 /*
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002575 * Flush I/O to the device.
2576 * Any I/O submitted after lock_fs() may not be flushed.
2577 * noflush takes precedence over do_lockfs.
2578 * (lock_fs() flushes I/Os and waits for them to complete.)
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002579 */
2580 if (!noflush && do_lockfs) {
2581 r = lock_fs(md);
Mike Snitzerd67ee212014-10-28 20:13:31 -04002582 if (r) {
2583 dm_table_presuspend_undo_targets(map);
Mike Snitzerffcc3932014-10-28 18:34:52 -04002584 return r;
Mike Snitzerd67ee212014-10-28 20:13:31 -04002585 }
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002586 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587
2588 /*
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002589 * Here we must make sure that no processes are submitting requests
2590 * to target drivers i.e. no one may be executing
2591 * __split_and_process_bio. This is called from dm_request and
2592 * dm_wq_work.
2593 *
2594 * To get all processes out of __split_and_process_bio in dm_request,
2595 * we take the write lock. To prevent any process from reentering
Tejun Heo6a8736d2010-09-08 18:07:00 +02002596 * __split_and_process_bio from dm_request and quiesce the thread
2597 * (dm_wq_work), we set BMF_BLOCK_IO_FOR_SUSPEND and call
2598 * flush_workqueue(md->wq).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 */
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01002600 set_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
Hannes Reinecke41abc4e2014-11-05 14:35:50 +01002601 if (map)
2602 synchronize_srcu(&md->io_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002604 /*
Tejun Heo29e40132010-09-08 18:07:00 +02002605 * Stop md->queue before flushing md->wq in case request-based
2606 * dm defers requests to md->wq from md->queue.
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002607 */
Jens Axboe6a23e052018-10-10 20:49:26 -06002608 if (dm_request_based(md))
Mike Snitzereca7ee62016-02-20 13:45:38 -05002609 dm_stop_queue(md->queue);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002610
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002611 flush_workqueue(md->wq);
2612
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 /*
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002614 * At this point no more requests are entering target request routines.
2615 * We call dm_wait_for_completion to wait for all existing requests
2616 * to finish.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 */
Bart Van Asscheb48633f2016-08-31 15:16:02 -07002618 r = dm_wait_for_completion(md, task_state);
Mike Snitzereaf9a732016-08-02 13:07:20 -04002619 if (!r)
2620 set_bit(dmf_suspended_flag, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621
Milan Broz6d6f10d2008-02-08 02:10:22 +00002622 if (noflush)
Mikulas Patocka022c2612009-04-02 19:55:39 +01002623 clear_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
Hannes Reinecke41abc4e2014-11-05 14:35:50 +01002624 if (map)
2625 synchronize_srcu(&md->io_barrier);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002626
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 /* were we interrupted ? */
Milan Broz46125c12008-02-08 02:10:30 +00002628 if (r < 0) {
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002629 dm_queue_flush(md);
Milan Broz73d410c2008-02-08 02:10:25 +00002630
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002631 if (dm_request_based(md))
Mike Snitzereca7ee62016-02-20 13:45:38 -05002632 dm_start_queue(md->queue);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002633
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002634 unlock_fs(md);
Mike Snitzerd67ee212014-10-28 20:13:31 -04002635 dm_table_presuspend_undo_targets(map);
Mike Snitzerffcc3932014-10-28 18:34:52 -04002636 /* pushback list is already flushed, so skip flush */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002637 }
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002638
Mike Snitzerffcc3932014-10-28 18:34:52 -04002639 return r;
2640}
2641
2642/*
2643 * We need to be able to change a mapping table under a mounted
2644 * filesystem. For example we might want to move some data in
2645 * the background. Before the table can be swapped with
2646 * dm_bind_table, dm_suspend must be called to flush any in
2647 * flight bios and ensure that any further io gets deferred.
2648 */
2649/*
2650 * Suspend mechanism in request-based dm.
2651 *
2652 * 1. Flush all I/Os by lock_fs() if needed.
2653 * 2. Stop dispatching any I/O by stopping the request_queue.
2654 * 3. Wait for all in-flight I/Os to be completed or requeued.
2655 *
2656 * To abort suspend, start the request_queue.
2657 */
2658int dm_suspend(struct mapped_device *md, unsigned suspend_flags)
2659{
2660 struct dm_table *map = NULL;
2661 int r = 0;
2662
2663retry:
2664 mutex_lock_nested(&md->suspend_lock, SINGLE_DEPTH_NESTING);
2665
2666 if (dm_suspended_md(md)) {
2667 r = -EINVAL;
2668 goto out_unlock;
2669 }
2670
2671 if (dm_suspended_internally_md(md)) {
2672 /* already internally suspended, wait for internal resume */
2673 mutex_unlock(&md->suspend_lock);
2674 r = wait_on_bit(&md->flags, DMF_SUSPENDED_INTERNALLY, TASK_INTERRUPTIBLE);
2675 if (r)
2676 return r;
2677 goto retry;
2678 }
2679
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002680 map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mike Snitzerffcc3932014-10-28 18:34:52 -04002681
Mike Snitzereaf9a732016-08-02 13:07:20 -04002682 r = __dm_suspend(md, map, suspend_flags, TASK_INTERRUPTIBLE, DMF_SUSPENDED);
Mike Snitzerffcc3932014-10-28 18:34:52 -04002683 if (r)
2684 goto out_unlock;
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002685
Kiyoshi Ueda4d4471c2009-12-10 23:52:26 +00002686 dm_table_postsuspend_targets(map);
2687
Alasdair G Kergond2874832006-11-08 17:44:43 -08002688out_unlock:
Daniel Walkere61290a2008-02-08 02:10:08 +00002689 mutex_unlock(&md->suspend_lock);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002690 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691}
2692
Mike Snitzerffcc3932014-10-28 18:34:52 -04002693static int __dm_resume(struct mapped_device *md, struct dm_table *map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694{
Mike Snitzerffcc3932014-10-28 18:34:52 -04002695 if (map) {
2696 int r = dm_table_resume_targets(map);
2697 if (r)
2698 return r;
2699 }
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002700
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002701 dm_queue_flush(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002702
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002703 /*
2704 * Flushing deferred I/Os must be done after targets are resumed
2705 * so that mapping of targets can work correctly.
2706 * Request-based dm is queueing the deferred I/Os in its request_queue.
2707 */
2708 if (dm_request_based(md))
Mike Snitzereca7ee62016-02-20 13:45:38 -05002709 dm_start_queue(md->queue);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002710
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002711 unlock_fs(md);
2712
Mike Snitzerffcc3932014-10-28 18:34:52 -04002713 return 0;
2714}
2715
2716int dm_resume(struct mapped_device *md)
2717{
Minfei Huang8dc23652016-09-06 16:00:29 +08002718 int r;
Mike Snitzerffcc3932014-10-28 18:34:52 -04002719 struct dm_table *map = NULL;
2720
2721retry:
Minfei Huang8dc23652016-09-06 16:00:29 +08002722 r = -EINVAL;
Mike Snitzerffcc3932014-10-28 18:34:52 -04002723 mutex_lock_nested(&md->suspend_lock, SINGLE_DEPTH_NESTING);
2724
2725 if (!dm_suspended_md(md))
2726 goto out;
2727
2728 if (dm_suspended_internally_md(md)) {
2729 /* already internally suspended, wait for internal resume */
2730 mutex_unlock(&md->suspend_lock);
2731 r = wait_on_bit(&md->flags, DMF_SUSPENDED_INTERNALLY, TASK_INTERRUPTIBLE);
2732 if (r)
2733 return r;
2734 goto retry;
2735 }
2736
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002737 map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mike Snitzerffcc3932014-10-28 18:34:52 -04002738 if (!map || !dm_table_get_size(map))
2739 goto out;
2740
2741 r = __dm_resume(md, map);
2742 if (r)
2743 goto out;
2744
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002745 clear_bit(DMF_SUSPENDED, &md->flags);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002746out:
Daniel Walkere61290a2008-02-08 02:10:08 +00002747 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002748
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002749 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750}
2751
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002752/*
2753 * Internal suspend/resume works like userspace-driven suspend. It waits
2754 * until all bios finish and prevents issuing new bios to the target drivers.
2755 * It may be used only from the kernel.
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002756 */
2757
Mike Snitzerffcc3932014-10-28 18:34:52 -04002758static void __dm_internal_suspend(struct mapped_device *md, unsigned suspend_flags)
2759{
2760 struct dm_table *map = NULL;
2761
Bart Van Assche1ea06542017-04-27 10:11:21 -07002762 lockdep_assert_held(&md->suspend_lock);
2763
Mikulas Patocka96b26c82015-01-08 18:52:26 -05002764 if (md->internal_suspend_count++)
Mike Snitzerffcc3932014-10-28 18:34:52 -04002765 return; /* nested internal suspend */
2766
2767 if (dm_suspended_md(md)) {
2768 set_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
2769 return; /* nest suspend */
2770 }
2771
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002772 map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mike Snitzerffcc3932014-10-28 18:34:52 -04002773
2774 /*
2775 * Using TASK_UNINTERRUPTIBLE because only NOFLUSH internal suspend is
2776 * supported. Properly supporting a TASK_INTERRUPTIBLE internal suspend
2777 * would require changing .presuspend to return an error -- avoid this
2778 * until there is a need for more elaborate variants of internal suspend.
2779 */
Mike Snitzereaf9a732016-08-02 13:07:20 -04002780 (void) __dm_suspend(md, map, suspend_flags, TASK_UNINTERRUPTIBLE,
2781 DMF_SUSPENDED_INTERNALLY);
Mike Snitzerffcc3932014-10-28 18:34:52 -04002782
2783 dm_table_postsuspend_targets(map);
2784}
2785
2786static void __dm_internal_resume(struct mapped_device *md)
2787{
Mikulas Patocka96b26c82015-01-08 18:52:26 -05002788 BUG_ON(!md->internal_suspend_count);
2789
2790 if (--md->internal_suspend_count)
Mike Snitzerffcc3932014-10-28 18:34:52 -04002791 return; /* resume from nested internal suspend */
2792
2793 if (dm_suspended_md(md))
2794 goto done; /* resume from nested suspend */
2795
2796 /*
2797 * NOTE: existing callers don't need to call dm_table_resume_targets
2798 * (which may fail -- so best to avoid it for now by passing NULL map)
2799 */
2800 (void) __dm_resume(md, NULL);
2801
2802done:
2803 clear_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
2804 smp_mb__after_atomic();
2805 wake_up_bit(&md->flags, DMF_SUSPENDED_INTERNALLY);
2806}
2807
2808void dm_internal_suspend_noflush(struct mapped_device *md)
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002809{
2810 mutex_lock(&md->suspend_lock);
Mike Snitzerffcc3932014-10-28 18:34:52 -04002811 __dm_internal_suspend(md, DM_SUSPEND_NOFLUSH_FLAG);
2812 mutex_unlock(&md->suspend_lock);
2813}
2814EXPORT_SYMBOL_GPL(dm_internal_suspend_noflush);
2815
2816void dm_internal_resume(struct mapped_device *md)
2817{
2818 mutex_lock(&md->suspend_lock);
2819 __dm_internal_resume(md);
2820 mutex_unlock(&md->suspend_lock);
2821}
2822EXPORT_SYMBOL_GPL(dm_internal_resume);
2823
2824/*
2825 * Fast variants of internal suspend/resume hold md->suspend_lock,
2826 * which prevents interaction with userspace-driven suspend.
2827 */
2828
2829void dm_internal_suspend_fast(struct mapped_device *md)
2830{
2831 mutex_lock(&md->suspend_lock);
2832 if (dm_suspended_md(md) || dm_suspended_internally_md(md))
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002833 return;
2834
2835 set_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
2836 synchronize_srcu(&md->io_barrier);
2837 flush_workqueue(md->wq);
2838 dm_wait_for_completion(md, TASK_UNINTERRUPTIBLE);
2839}
Mikulas Patockab735fed2015-02-26 11:40:35 -05002840EXPORT_SYMBOL_GPL(dm_internal_suspend_fast);
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002841
Mike Snitzerffcc3932014-10-28 18:34:52 -04002842void dm_internal_resume_fast(struct mapped_device *md)
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002843{
Mike Snitzerffcc3932014-10-28 18:34:52 -04002844 if (dm_suspended_md(md) || dm_suspended_internally_md(md))
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002845 goto done;
2846
2847 dm_queue_flush(md);
2848
2849done:
2850 mutex_unlock(&md->suspend_lock);
2851}
Mikulas Patockab735fed2015-02-26 11:40:35 -05002852EXPORT_SYMBOL_GPL(dm_internal_resume_fast);
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002853
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854/*-----------------------------------------------------------------
2855 * Event notification.
2856 *---------------------------------------------------------------*/
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00002857int dm_kobject_uevent(struct mapped_device *md, enum kobject_action action,
Milan Broz60935eb2009-06-22 10:12:30 +01002858 unsigned cookie)
Alasdair G Kergon69267a32007-12-13 14:15:57 +00002859{
Milan Broz60935eb2009-06-22 10:12:30 +01002860 char udev_cookie[DM_COOKIE_LENGTH];
2861 char *envp[] = { udev_cookie, NULL };
2862
2863 if (!cookie)
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00002864 return kobject_uevent(&disk_to_dev(md->disk)->kobj, action);
Milan Broz60935eb2009-06-22 10:12:30 +01002865 else {
2866 snprintf(udev_cookie, DM_COOKIE_LENGTH, "%s=%u",
2867 DM_COOKIE_ENV_VAR_NAME, cookie);
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00002868 return kobject_uevent_env(&disk_to_dev(md->disk)->kobj,
2869 action, envp);
Milan Broz60935eb2009-06-22 10:12:30 +01002870 }
Alasdair G Kergon69267a32007-12-13 14:15:57 +00002871}
2872
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002873uint32_t dm_next_uevent_seq(struct mapped_device *md)
2874{
2875 return atomic_add_return(1, &md->uevent_seq);
2876}
2877
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878uint32_t dm_get_event_nr(struct mapped_device *md)
2879{
2880 return atomic_read(&md->event_nr);
2881}
2882
2883int dm_wait_event(struct mapped_device *md, int event_nr)
2884{
2885 return wait_event_interruptible(md->eventq,
2886 (event_nr != atomic_read(&md->event_nr)));
2887}
2888
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002889void dm_uevent_add(struct mapped_device *md, struct list_head *elist)
2890{
2891 unsigned long flags;
2892
2893 spin_lock_irqsave(&md->uevent_lock, flags);
2894 list_add(elist, &md->uevent_list);
2895 spin_unlock_irqrestore(&md->uevent_lock, flags);
2896}
2897
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898/*
2899 * The gendisk is only valid as long as you have a reference
2900 * count on 'md'.
2901 */
2902struct gendisk *dm_disk(struct mapped_device *md)
2903{
2904 return md->disk;
2905}
Sami Tolvanen65ff5b72015-03-18 15:52:14 +00002906EXPORT_SYMBOL_GPL(dm_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907
Milan Broz784aae72009-01-06 03:05:12 +00002908struct kobject *dm_kobject(struct mapped_device *md)
2909{
Mikulas Patocka2995fa72014-01-13 19:37:54 -05002910 return &md->kobj_holder.kobj;
Milan Broz784aae72009-01-06 03:05:12 +00002911}
2912
Milan Broz784aae72009-01-06 03:05:12 +00002913struct mapped_device *dm_get_from_kobject(struct kobject *kobj)
2914{
2915 struct mapped_device *md;
2916
Mikulas Patocka2995fa72014-01-13 19:37:54 -05002917 md = container_of(kobj, struct mapped_device, kobj_holder.kobj);
Milan Broz784aae72009-01-06 03:05:12 +00002918
Hou Taob9a41d22017-11-01 15:42:36 +08002919 spin_lock(&_minor_lock);
2920 if (test_bit(DMF_FREEING, &md->flags) || dm_deleting_md(md)) {
2921 md = NULL;
2922 goto out;
2923 }
Milan Broz784aae72009-01-06 03:05:12 +00002924 dm_get(md);
Hou Taob9a41d22017-11-01 15:42:36 +08002925out:
2926 spin_unlock(&_minor_lock);
2927
Milan Broz784aae72009-01-06 03:05:12 +00002928 return md;
2929}
2930
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +00002931int dm_suspended_md(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932{
2933 return test_bit(DMF_SUSPENDED, &md->flags);
2934}
2935
Mike Snitzerffcc3932014-10-28 18:34:52 -04002936int dm_suspended_internally_md(struct mapped_device *md)
2937{
2938 return test_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
2939}
2940
Mikulas Patocka2c140a22013-11-01 18:27:41 -04002941int dm_test_deferred_remove_flag(struct mapped_device *md)
2942{
2943 return test_bit(DMF_DEFERRED_REMOVE, &md->flags);
2944}
2945
Kiyoshi Ueda64dbce52009-12-10 23:52:27 +00002946int dm_suspended(struct dm_target *ti)
2947{
Kiyoshi Uedaecdb2e22010-03-06 02:29:52 +00002948 return dm_suspended_md(dm_table_get_md(ti->table));
Kiyoshi Ueda64dbce52009-12-10 23:52:27 +00002949}
2950EXPORT_SYMBOL_GPL(dm_suspended);
2951
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002952int dm_noflush_suspending(struct dm_target *ti)
2953{
Kiyoshi Uedaecdb2e22010-03-06 02:29:52 +00002954 return __noflush_suspending(dm_table_get_md(ti->table));
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002955}
2956EXPORT_SYMBOL_GPL(dm_noflush_suspending);
2957
Bart Van Assche7e0d5742017-04-27 10:11:23 -07002958struct dm_md_mempools *dm_alloc_md_mempools(struct mapped_device *md, enum dm_queue_mode type,
Mike Snitzer0776aa02017-12-08 14:40:52 -05002959 unsigned integrity, unsigned per_io_data_size,
2960 unsigned min_pool_size)
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002961{
Mike Snitzer115485e2016-02-22 12:16:21 -05002962 struct dm_md_mempools *pools = kzalloc_node(sizeof(*pools), GFP_KERNEL, md->numa_node_id);
Mike Snitzer78d8e582015-06-26 10:01:13 -04002963 unsigned int pool_size = 0;
Mike Snitzer64f52b02017-12-11 23:17:47 -05002964 unsigned int front_pad, io_front_pad;
Kent Overstreet6f1c8192018-05-20 18:25:53 -04002965 int ret;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002966
2967 if (!pools)
Mike Snitzer4e6e36c2015-06-26 09:42:57 -04002968 return NULL;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002969
Mike Snitzer78d8e582015-06-26 10:01:13 -04002970 switch (type) {
2971 case DM_TYPE_BIO_BASED:
Toshi Kani545ed202016-06-22 17:54:53 -06002972 case DM_TYPE_DAX_BIO_BASED:
Mike Snitzer22c11852017-12-04 21:07:37 -05002973 case DM_TYPE_NVME_BIO_BASED:
Mike Snitzer0776aa02017-12-08 14:40:52 -05002974 pool_size = max(dm_get_reserved_bio_based_ios(), min_pool_size);
Mike Snitzer30187e12016-01-31 13:28:26 -05002975 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 -05002976 io_front_pad = roundup(front_pad, __alignof__(struct dm_io)) + offsetof(struct dm_io, tio);
Kent Overstreet6f1c8192018-05-20 18:25:53 -04002977 ret = bioset_init(&pools->io_bs, pool_size, io_front_pad, 0);
2978 if (ret)
Mike Snitzer64f52b02017-12-11 23:17:47 -05002979 goto out;
Kent Overstreet6f1c8192018-05-20 18:25:53 -04002980 if (integrity && bioset_integrity_create(&pools->io_bs, pool_size))
Christoph Hellwigeb8db832017-01-22 18:32:46 +01002981 goto out;
Mike Snitzer78d8e582015-06-26 10:01:13 -04002982 break;
2983 case DM_TYPE_REQUEST_BASED:
Mike Snitzer0776aa02017-12-08 14:40:52 -05002984 pool_size = max(dm_get_reserved_rq_based_ios(), min_pool_size);
Mike Snitzer78d8e582015-06-26 10:01:13 -04002985 front_pad = offsetof(struct dm_rq_clone_bio_info, clone);
Mike Snitzer591ddcf2016-01-31 12:05:42 -05002986 /* per_io_data_size is used for blk-mq pdu at queue allocation */
Mike Snitzer78d8e582015-06-26 10:01:13 -04002987 break;
2988 default:
2989 BUG();
2990 }
2991
Kent Overstreet6f1c8192018-05-20 18:25:53 -04002992 ret = bioset_init(&pools->bs, pool_size, front_pad, 0);
2993 if (ret)
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00002994 goto out;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002995
Kent Overstreet6f1c8192018-05-20 18:25:53 -04002996 if (integrity && bioset_integrity_create(&pools->bs, pool_size))
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00002997 goto out;
Martin K. Petersena91a2782011-03-17 11:11:05 +01002998
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002999 return pools;
Mike Snitzer78d8e582015-06-26 10:01:13 -04003000
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00003001out:
3002 dm_free_md_mempools(pools);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003003
Mike Snitzer4e6e36c2015-06-26 09:42:57 -04003004 return NULL;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003005}
3006
3007void dm_free_md_mempools(struct dm_md_mempools *pools)
3008{
3009 if (!pools)
3010 return;
3011
Kent Overstreet6f1c8192018-05-20 18:25:53 -04003012 bioset_exit(&pools->bs);
3013 bioset_exit(&pools->io_bs);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01003014
3015 kfree(pools);
3016}
3017
Christoph Hellwig9c72bad2016-07-08 21:23:51 +09003018struct dm_pr {
3019 u64 old_key;
3020 u64 new_key;
3021 u32 flags;
3022 bool fail_early;
3023};
3024
3025static int dm_call_pr(struct block_device *bdev, iterate_devices_callout_fn fn,
3026 void *data)
3027{
3028 struct mapped_device *md = bdev->bd_disk->private_data;
3029 struct dm_table *table;
3030 struct dm_target *ti;
3031 int ret = -ENOTTY, srcu_idx;
3032
3033 table = dm_get_live_table(md, &srcu_idx);
3034 if (!table || !dm_table_get_size(table))
3035 goto out;
3036
3037 /* We only support devices that have a single target */
3038 if (dm_table_get_num_targets(table) != 1)
3039 goto out;
3040 ti = dm_table_get_target(table, 0);
3041
3042 ret = -EINVAL;
3043 if (!ti->type->iterate_devices)
3044 goto out;
3045
3046 ret = ti->type->iterate_devices(ti, fn, data);
3047out:
3048 dm_put_live_table(md, srcu_idx);
3049 return ret;
3050}
3051
3052/*
3053 * For register / unregister we need to manually call out to every path.
3054 */
3055static int __dm_pr_register(struct dm_target *ti, struct dm_dev *dev,
3056 sector_t start, sector_t len, void *data)
3057{
3058 struct dm_pr *pr = data;
3059 const struct pr_ops *ops = dev->bdev->bd_disk->fops->pr_ops;
3060
3061 if (!ops || !ops->pr_register)
3062 return -EOPNOTSUPP;
3063 return ops->pr_register(dev->bdev, pr->old_key, pr->new_key, pr->flags);
3064}
3065
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003066static int dm_pr_register(struct block_device *bdev, u64 old_key, u64 new_key,
Mike Snitzer956a4022016-02-18 16:13:51 -05003067 u32 flags)
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003068{
Christoph Hellwig9c72bad2016-07-08 21:23:51 +09003069 struct dm_pr pr = {
3070 .old_key = old_key,
3071 .new_key = new_key,
3072 .flags = flags,
3073 .fail_early = true,
3074 };
3075 int ret;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003076
Christoph Hellwig9c72bad2016-07-08 21:23:51 +09003077 ret = dm_call_pr(bdev, __dm_pr_register, &pr);
3078 if (ret && new_key) {
3079 /* unregister all paths if we failed to register any path */
3080 pr.old_key = new_key;
3081 pr.new_key = 0;
3082 pr.flags = 0;
3083 pr.fail_early = false;
3084 dm_call_pr(bdev, __dm_pr_register, &pr);
3085 }
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003086
Christoph Hellwig9c72bad2016-07-08 21:23:51 +09003087 return ret;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003088}
3089
3090static int dm_pr_reserve(struct block_device *bdev, u64 key, enum pr_type type,
Mike Snitzer956a4022016-02-18 16:13:51 -05003091 u32 flags)
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003092{
3093 struct mapped_device *md = bdev->bd_disk->private_data;
3094 const struct pr_ops *ops;
Mike Snitzer971888c2018-04-03 15:05:12 -04003095 int r, srcu_idx;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003096
Mike Snitzer5bd5e8d2018-04-03 16:54:10 -04003097 r = dm_prepare_ioctl(md, &srcu_idx, &bdev);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003098 if (r < 0)
Mike Snitzer971888c2018-04-03 15:05:12 -04003099 goto out;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003100
3101 ops = bdev->bd_disk->fops->pr_ops;
3102 if (ops && ops->pr_reserve)
3103 r = ops->pr_reserve(bdev, key, type, flags);
3104 else
3105 r = -EOPNOTSUPP;
Mike Snitzer971888c2018-04-03 15:05:12 -04003106out:
3107 dm_unprepare_ioctl(md, srcu_idx);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003108 return r;
3109}
3110
3111static int dm_pr_release(struct block_device *bdev, u64 key, enum pr_type type)
3112{
3113 struct mapped_device *md = bdev->bd_disk->private_data;
3114 const struct pr_ops *ops;
Mike Snitzer971888c2018-04-03 15:05:12 -04003115 int r, srcu_idx;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003116
Mike Snitzer5bd5e8d2018-04-03 16:54:10 -04003117 r = dm_prepare_ioctl(md, &srcu_idx, &bdev);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003118 if (r < 0)
Mike Snitzer971888c2018-04-03 15:05:12 -04003119 goto out;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003120
3121 ops = bdev->bd_disk->fops->pr_ops;
3122 if (ops && ops->pr_release)
3123 r = ops->pr_release(bdev, key, type);
3124 else
3125 r = -EOPNOTSUPP;
Mike Snitzer971888c2018-04-03 15:05:12 -04003126out:
3127 dm_unprepare_ioctl(md, srcu_idx);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003128 return r;
3129}
3130
3131static int dm_pr_preempt(struct block_device *bdev, u64 old_key, u64 new_key,
Mike Snitzer956a4022016-02-18 16:13:51 -05003132 enum pr_type type, bool abort)
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003133{
3134 struct mapped_device *md = bdev->bd_disk->private_data;
3135 const struct pr_ops *ops;
Mike Snitzer971888c2018-04-03 15:05:12 -04003136 int r, srcu_idx;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003137
Mike Snitzer5bd5e8d2018-04-03 16:54:10 -04003138 r = dm_prepare_ioctl(md, &srcu_idx, &bdev);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003139 if (r < 0)
Mike Snitzer971888c2018-04-03 15:05:12 -04003140 goto out;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003141
3142 ops = bdev->bd_disk->fops->pr_ops;
3143 if (ops && ops->pr_preempt)
3144 r = ops->pr_preempt(bdev, old_key, new_key, type, abort);
3145 else
3146 r = -EOPNOTSUPP;
Mike Snitzer971888c2018-04-03 15:05:12 -04003147out:
3148 dm_unprepare_ioctl(md, srcu_idx);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003149 return r;
3150}
3151
3152static int dm_pr_clear(struct block_device *bdev, u64 key)
3153{
3154 struct mapped_device *md = bdev->bd_disk->private_data;
3155 const struct pr_ops *ops;
Mike Snitzer971888c2018-04-03 15:05:12 -04003156 int r, srcu_idx;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003157
Mike Snitzer5bd5e8d2018-04-03 16:54:10 -04003158 r = dm_prepare_ioctl(md, &srcu_idx, &bdev);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003159 if (r < 0)
Mike Snitzer971888c2018-04-03 15:05:12 -04003160 goto out;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003161
3162 ops = bdev->bd_disk->fops->pr_ops;
3163 if (ops && ops->pr_clear)
3164 r = ops->pr_clear(bdev, key);
3165 else
3166 r = -EOPNOTSUPP;
Mike Snitzer971888c2018-04-03 15:05:12 -04003167out:
3168 dm_unprepare_ioctl(md, srcu_idx);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003169 return r;
3170}
3171
3172static const struct pr_ops dm_pr_ops = {
3173 .pr_register = dm_pr_register,
3174 .pr_reserve = dm_pr_reserve,
3175 .pr_release = dm_pr_release,
3176 .pr_preempt = dm_pr_preempt,
3177 .pr_clear = dm_pr_clear,
3178};
3179
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07003180static const struct block_device_operations dm_blk_dops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181 .open = dm_blk_open,
3182 .release = dm_blk_close,
Milan Brozaa129a22006-10-03 01:15:15 -07003183 .ioctl = dm_blk_ioctl,
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08003184 .getgeo = dm_blk_getgeo,
Christoph Hellwige76239a2018-10-12 19:08:49 +09003185 .report_zones = dm_blk_report_zones,
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003186 .pr_ops = &dm_pr_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187 .owner = THIS_MODULE
3188};
3189
Dan Williamsf26c5712017-04-12 12:35:44 -07003190static const struct dax_operations dm_dax_ops = {
3191 .direct_access = dm_dax_direct_access,
Dan Williams7e026c82017-05-29 12:57:56 -07003192 .copy_from_iter = dm_dax_copy_from_iter,
Dan Williamsb3a9a0c2018-05-02 06:46:33 -07003193 .copy_to_iter = dm_dax_copy_to_iter,
Dan Williamsf26c5712017-04-12 12:35:44 -07003194};
3195
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196/*
3197 * module hooks
3198 */
3199module_init(dm_init);
3200module_exit(dm_exit);
3201
3202module_param(major, uint, 0);
3203MODULE_PARM_DESC(major, "The major number of the device mapper");
Mike Snitzerf4790822013-09-12 18:06:12 -04003204
Mike Snitzere8603132013-09-12 18:06:12 -04003205module_param(reserved_bio_based_ios, uint, S_IRUGO | S_IWUSR);
3206MODULE_PARM_DESC(reserved_bio_based_ios, "Reserved IOs in bio-based mempools");
3207
Mike Snitzer115485e2016-02-22 12:16:21 -05003208module_param(dm_numa_node, int, S_IRUGO | S_IWUSR);
3209MODULE_PARM_DESC(dm_numa_node, "NUMA node for DM device memory allocations");
3210
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211MODULE_DESCRIPTION(DM_NAME " driver");
3212MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
3213MODULE_LICENSE("GPL");