blob: 68136806d365821f63ace7675ce21ba2bf10ed8d [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 {
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +0100151 struct bio_set *bs;
Mike Snitzer64f52b02017-12-11 23:17:47 -0500152 struct bio_set *io_bs;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +0100153};
154
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500155struct table_device {
156 struct list_head list;
Elena Reshetovab0b4d7c2017-10-20 10:37:39 +0300157 refcount_t count;
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500158 struct dm_dev dm_dev;
159};
160
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000161static struct kmem_cache *_rq_tio_cache;
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500162static struct kmem_cache *_rq_cache;
Kent Overstreet94818742012-09-07 13:44:01 -0700163
Mike Snitzerf4790822013-09-12 18:06:12 -0400164/*
Mike Snitzere8603132013-09-12 18:06:12 -0400165 * Bio-based DM's mempools' reserved IOs set by the user.
166 */
Mike Snitzer4cc96132016-05-12 16:28:10 -0400167#define RESERVED_BIO_BASED_IOS 16
Mike Snitzere8603132013-09-12 18:06:12 -0400168static unsigned reserved_bio_based_ios = RESERVED_BIO_BASED_IOS;
169
Mike Snitzer115485e2016-02-22 12:16:21 -0500170static int __dm_get_module_param_int(int *module_param, int min, int max)
171{
Mark Rutland6aa7de02017-10-23 14:07:29 -0700172 int param = READ_ONCE(*module_param);
Mike Snitzer115485e2016-02-22 12:16:21 -0500173 int modified_param = 0;
174 bool modified = true;
175
176 if (param < min)
177 modified_param = min;
178 else if (param > max)
179 modified_param = max;
180 else
181 modified = false;
182
183 if (modified) {
184 (void)cmpxchg(module_param, param, modified_param);
185 param = modified_param;
186 }
187
188 return param;
189}
190
Mike Snitzer4cc96132016-05-12 16:28:10 -0400191unsigned __dm_get_module_param(unsigned *module_param,
192 unsigned def, unsigned max)
Mike Snitzerf4790822013-09-12 18:06:12 -0400193{
Mark Rutland6aa7de02017-10-23 14:07:29 -0700194 unsigned param = READ_ONCE(*module_param);
Mike Snitzer09c2d532015-02-27 22:25:26 -0500195 unsigned modified_param = 0;
Mike Snitzerf4790822013-09-12 18:06:12 -0400196
Mike Snitzer09c2d532015-02-27 22:25:26 -0500197 if (!param)
198 modified_param = def;
199 else if (param > max)
200 modified_param = max;
Mike Snitzerf4790822013-09-12 18:06:12 -0400201
Mike Snitzer09c2d532015-02-27 22:25:26 -0500202 if (modified_param) {
203 (void)cmpxchg(module_param, param, modified_param);
204 param = modified_param;
Mike Snitzerf4790822013-09-12 18:06:12 -0400205 }
206
Mike Snitzer09c2d532015-02-27 22:25:26 -0500207 return param;
Mike Snitzerf4790822013-09-12 18:06:12 -0400208}
209
Mike Snitzere8603132013-09-12 18:06:12 -0400210unsigned dm_get_reserved_bio_based_ios(void)
211{
Mike Snitzer09c2d532015-02-27 22:25:26 -0500212 return __dm_get_module_param(&reserved_bio_based_ios,
Mike Snitzer4cc96132016-05-12 16:28:10 -0400213 RESERVED_BIO_BASED_IOS, DM_RESERVED_MAX_IOS);
Mike Snitzere8603132013-09-12 18:06:12 -0400214}
215EXPORT_SYMBOL_GPL(dm_get_reserved_bio_based_ios);
216
Mike Snitzer115485e2016-02-22 12:16:21 -0500217static unsigned dm_get_numa_node(void)
218{
219 return __dm_get_module_param_int(&dm_numa_node,
220 DM_NUMA_NODE, num_online_nodes() - 1);
221}
222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223static int __init local_init(void)
224{
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100225 int r = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000227 _rq_tio_cache = KMEM_CACHE(dm_rq_target_io, 0);
228 if (!_rq_tio_cache)
Mike Snitzerdde1e1e2017-12-11 23:28:13 -0500229 return r;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000230
Mike Snitzereca7ee62016-02-20 13:45:38 -0500231 _rq_cache = kmem_cache_create("dm_old_clone_request", sizeof(struct request),
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500232 __alignof__(struct request), 0, NULL);
233 if (!_rq_cache)
234 goto out_free_rq_tio_cache;
235
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100236 r = dm_uevent_init();
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100237 if (r)
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500238 goto out_free_rq_cache;
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100239
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400240 deferred_remove_workqueue = alloc_workqueue("kdmremove", WQ_UNBOUND, 1);
241 if (!deferred_remove_workqueue) {
242 r = -ENOMEM;
243 goto out_uevent_exit;
244 }
245
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 _major = major;
247 r = register_blkdev(_major, _name);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100248 if (r < 0)
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400249 goto out_free_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251 if (!_major)
252 _major = r;
253
254 return 0;
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100255
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400256out_free_workqueue:
257 destroy_workqueue(deferred_remove_workqueue);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100258out_uevent_exit:
259 dm_uevent_exit();
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500260out_free_rq_cache:
261 kmem_cache_destroy(_rq_cache);
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000262out_free_rq_tio_cache:
263 kmem_cache_destroy(_rq_tio_cache);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100264
265 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266}
267
268static void local_exit(void)
269{
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400270 flush_scheduled_work();
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400271 destroy_workqueue(deferred_remove_workqueue);
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400272
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500273 kmem_cache_destroy(_rq_cache);
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000274 kmem_cache_destroy(_rq_tio_cache);
Akinobu Mita00d59402007-07-17 04:03:46 -0700275 unregister_blkdev(_major, _name);
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100276 dm_uevent_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
278 _major = 0;
279
280 DMINFO("cleaned up");
281}
282
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000283static int (*_inits[])(void) __initdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 local_init,
285 dm_target_init,
286 dm_linear_init,
287 dm_stripe_init,
Mikulas Patocka952b3552009-12-10 23:51:57 +0000288 dm_io_init,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100289 dm_kcopyd_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 dm_interface_init,
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400291 dm_statistics_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292};
293
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000294static void (*_exits[])(void) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 local_exit,
296 dm_target_exit,
297 dm_linear_exit,
298 dm_stripe_exit,
Mikulas Patocka952b3552009-12-10 23:51:57 +0000299 dm_io_exit,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100300 dm_kcopyd_exit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 dm_interface_exit,
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400302 dm_statistics_exit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303};
304
305static int __init dm_init(void)
306{
307 const int count = ARRAY_SIZE(_inits);
308
309 int r, i;
310
311 for (i = 0; i < count; i++) {
312 r = _inits[i]();
313 if (r)
314 goto bad;
315 }
316
317 return 0;
318
319 bad:
320 while (i--)
321 _exits[i]();
322
323 return r;
324}
325
326static void __exit dm_exit(void)
327{
328 int i = ARRAY_SIZE(_exits);
329
330 while (i--)
331 _exits[i]();
Alasdair G Kergond15b7742011-08-02 12:32:01 +0100332
333 /*
334 * Should be empty by this point.
335 */
Alasdair G Kergond15b7742011-08-02 12:32:01 +0100336 idr_destroy(&_minor_idr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337}
338
339/*
340 * Block device functions
341 */
Mike Anderson432a2122009-12-10 23:52:20 +0000342int dm_deleting_md(struct mapped_device *md)
343{
344 return test_bit(DMF_DELETING, &md->flags);
345}
346
Al Virofe5f9f22008-03-02 10:29:31 -0500347static int dm_blk_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348{
349 struct mapped_device *md;
350
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700351 spin_lock(&_minor_lock);
352
Al Virofe5f9f22008-03-02 10:29:31 -0500353 md = bdev->bd_disk->private_data;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700354 if (!md)
355 goto out;
356
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700357 if (test_bit(DMF_FREEING, &md->flags) ||
Mike Anderson432a2122009-12-10 23:52:20 +0000358 dm_deleting_md(md)) {
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700359 md = NULL;
360 goto out;
361 }
362
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 dm_get(md);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700364 atomic_inc(&md->open_count);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700365out:
366 spin_unlock(&_minor_lock);
367
368 return md ? 0 : -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369}
370
Al Virodb2a1442013-05-05 21:52:57 -0400371static void dm_blk_close(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372{
Mike Snitzer63a4f062015-03-23 17:01:43 -0400373 struct mapped_device *md;
Arnd Bergmann6e9624b2010-08-07 18:25:34 +0200374
Milan Broz4a1aeb92011-01-13 19:59:48 +0000375 spin_lock(&_minor_lock);
376
Mike Snitzer63a4f062015-03-23 17:01:43 -0400377 md = disk->private_data;
378 if (WARN_ON(!md))
379 goto out;
380
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400381 if (atomic_dec_and_test(&md->open_count) &&
382 (test_bit(DMF_DEFERRED_REMOVE, &md->flags)))
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400383 queue_work(deferred_remove_workqueue, &deferred_remove_work);
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400384
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 dm_put(md);
Mike Snitzer63a4f062015-03-23 17:01:43 -0400386out:
Milan Broz4a1aeb92011-01-13 19:59:48 +0000387 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388}
389
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700390int dm_open_count(struct mapped_device *md)
391{
392 return atomic_read(&md->open_count);
393}
394
395/*
396 * Guarantees nothing is using the device before it's deleted.
397 */
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400398int dm_lock_for_deletion(struct mapped_device *md, bool mark_deferred, bool only_deferred)
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700399{
400 int r = 0;
401
402 spin_lock(&_minor_lock);
403
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400404 if (dm_open_count(md)) {
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700405 r = -EBUSY;
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400406 if (mark_deferred)
407 set_bit(DMF_DEFERRED_REMOVE, &md->flags);
408 } else if (only_deferred && !test_bit(DMF_DEFERRED_REMOVE, &md->flags))
409 r = -EEXIST;
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700410 else
411 set_bit(DMF_DELETING, &md->flags);
412
413 spin_unlock(&_minor_lock);
414
415 return r;
416}
417
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400418int dm_cancel_deferred_remove(struct mapped_device *md)
419{
420 int r = 0;
421
422 spin_lock(&_minor_lock);
423
424 if (test_bit(DMF_DELETING, &md->flags))
425 r = -EBUSY;
426 else
427 clear_bit(DMF_DEFERRED_REMOVE, &md->flags);
428
429 spin_unlock(&_minor_lock);
430
431 return r;
432}
433
434static void do_deferred_remove(struct work_struct *w)
435{
436 dm_deferred_remove();
437}
438
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400439sector_t dm_get_size(struct mapped_device *md)
440{
441 return get_capacity(md->disk);
442}
443
Mike Snitzer9974fa22014-02-28 15:33:43 +0100444struct request_queue *dm_get_md_queue(struct mapped_device *md)
445{
446 return md->queue;
447}
448
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400449struct dm_stats *dm_get_stats(struct mapped_device *md)
450{
451 return &md->stats;
452}
453
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800454static int dm_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
455{
456 struct mapped_device *md = bdev->bd_disk->private_data;
457
458 return dm_get_geometry(md, geo);
459}
460
Mike Snitzer956a4022016-02-18 16:13:51 -0500461static int dm_grab_bdev_for_ioctl(struct mapped_device *md,
462 struct block_device **bdev,
463 fmode_t *mode)
Milan Brozaa129a22006-10-03 01:15:15 -0700464{
Mike Snitzer66482022016-02-18 15:44:39 -0500465 struct dm_target *tgt;
Hannes Reinecke6c182cd2013-07-10 23:41:15 +0100466 struct dm_table *map;
Mike Snitzer956a4022016-02-18 16:13:51 -0500467 int srcu_idx, r;
Milan Brozaa129a22006-10-03 01:15:15 -0700468
Hannes Reinecke6c182cd2013-07-10 23:41:15 +0100469retry:
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200470 r = -ENOTTY;
Mike Snitzer956a4022016-02-18 16:13:51 -0500471 map = dm_get_live_table(md, &srcu_idx);
Milan Brozaa129a22006-10-03 01:15:15 -0700472 if (!map || !dm_table_get_size(map))
473 goto out;
474
475 /* We only support devices that have a single target */
476 if (dm_table_get_num_targets(map) != 1)
477 goto out;
478
Mike Snitzer66482022016-02-18 15:44:39 -0500479 tgt = dm_table_get_target(map, 0);
480 if (!tgt->type->prepare_ioctl)
Mike Snitzer4d341d82014-11-16 14:21:47 -0500481 goto out;
Milan Brozaa129a22006-10-03 01:15:15 -0700482
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +0000483 if (dm_suspended_md(md)) {
Milan Brozaa129a22006-10-03 01:15:15 -0700484 r = -EAGAIN;
485 goto out;
486 }
487
Mike Snitzer66482022016-02-18 15:44:39 -0500488 r = tgt->type->prepare_ioctl(tgt, bdev, mode);
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200489 if (r < 0)
490 goto out;
491
Mike Snitzer956a4022016-02-18 16:13:51 -0500492 bdgrab(*bdev);
493 dm_put_live_table(md, srcu_idx);
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200494 return r;
Milan Brozaa129a22006-10-03 01:15:15 -0700495
496out:
Mike Snitzer956a4022016-02-18 16:13:51 -0500497 dm_put_live_table(md, srcu_idx);
Junichi Nomura5bbbfdf2015-11-17 09:39:26 +0000498 if (r == -ENOTCONN && !fatal_signal_pending(current)) {
Hannes Reinecke6c182cd2013-07-10 23:41:15 +0100499 msleep(10);
500 goto retry;
501 }
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200502 return r;
503}
Hannes Reinecke6c182cd2013-07-10 23:41:15 +0100504
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200505static int dm_blk_ioctl(struct block_device *bdev, fmode_t mode,
506 unsigned int cmd, unsigned long arg)
507{
508 struct mapped_device *md = bdev->bd_disk->private_data;
Mike Snitzer956a4022016-02-18 16:13:51 -0500509 int r;
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200510
Mike Snitzer956a4022016-02-18 16:13:51 -0500511 r = dm_grab_bdev_for_ioctl(md, &bdev, &mode);
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200512 if (r < 0)
513 return r;
514
515 if (r > 0) {
516 /*
Christoph Hellwige980f622017-02-04 10:45:03 +0100517 * Target determined this ioctl is being issued against a
518 * subset of the parent bdev; require extra privileges.
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200519 */
Christoph Hellwige980f622017-02-04 10:45:03 +0100520 if (!capable(CAP_SYS_RAWIO)) {
521 DMWARN_LIMIT(
522 "%s: sending ioctl %x to DM device without required privilege.",
523 current->comm, cmd);
524 r = -ENOIOCTLCMD;
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200525 goto out;
Christoph Hellwige980f622017-02-04 10:45:03 +0100526 }
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200527 }
528
Mike Snitzer66482022016-02-18 15:44:39 -0500529 r = __blkdev_driver_ioctl(bdev, mode, cmd, arg);
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200530out:
Mike Snitzer956a4022016-02-18 16:13:51 -0500531 bdput(bdev);
Milan Brozaa129a22006-10-03 01:15:15 -0700532 return r;
533}
534
Mike Snitzer978e51b2017-12-09 15:16:42 -0500535static void start_io_acct(struct dm_io *io);
536
537static struct dm_io *alloc_io(struct mapped_device *md, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538{
Mike Snitzer64f52b02017-12-11 23:17:47 -0500539 struct dm_io *io;
540 struct dm_target_io *tio;
541 struct bio *clone;
542
543 clone = bio_alloc_bioset(GFP_NOIO, 0, md->io_bs);
544 if (!clone)
545 return NULL;
546
547 tio = container_of(clone, struct dm_target_io, clone);
548 tio->inside_dm_io = true;
549 tio->io = NULL;
550
551 io = container_of(tio, struct dm_io, tio);
552 io->magic = DM_IO_MAGIC;
Mike Snitzer978e51b2017-12-09 15:16:42 -0500553 io->status = 0;
554 atomic_set(&io->io_count, 1);
555 io->orig_bio = bio;
556 io->md = md;
557 spin_lock_init(&io->endio_lock);
558
559 start_io_acct(io);
Mike Snitzer64f52b02017-12-11 23:17:47 -0500560
561 return io;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562}
563
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100564static void free_io(struct mapped_device *md, struct dm_io *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565{
Mike Snitzer64f52b02017-12-11 23:17:47 -0500566 bio_put(&io->tio.clone);
567}
568
569static struct dm_target_io *alloc_tio(struct clone_info *ci, struct dm_target *ti,
570 unsigned target_bio_nr, gfp_t gfp_mask)
571{
572 struct dm_target_io *tio;
573
574 if (!ci->io->tio.io) {
575 /* the dm_target_io embedded in ci->io is available */
576 tio = &ci->io->tio;
577 } else {
Mike Snitzerbc02cdb2017-12-14 16:30:42 -0500578 struct bio *clone = bio_alloc_bioset(gfp_mask, 0, ci->io->md->bs);
Mike Snitzer64f52b02017-12-11 23:17:47 -0500579 if (!clone)
580 return NULL;
581
582 tio = container_of(clone, struct dm_target_io, clone);
583 tio->inside_dm_io = false;
584 }
585
586 tio->magic = DM_TIO_MAGIC;
587 tio->io = ci->io;
588 tio->ti = ti;
589 tio->target_bio_nr = target_bio_nr;
590
591 return tio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592}
593
Mike Snitzercfae7522016-04-11 12:05:38 -0400594static void free_tio(struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
Mike Snitzer64f52b02017-12-11 23:17:47 -0500596 if (tio->inside_dm_io)
597 return;
Mikulas Patockadba14162012-10-12 21:02:15 +0100598 bio_put(&tio->clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599}
600
Mike Snitzer4cc96132016-05-12 16:28:10 -0400601int md_in_flight(struct mapped_device *md)
Kiyoshi Ueda90abb8c2009-12-10 23:52:13 +0000602{
603 return atomic_read(&md->pending[READ]) +
604 atomic_read(&md->pending[WRITE]);
605}
606
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800607static void start_io_acct(struct dm_io *io)
608{
609 struct mapped_device *md = io->md;
Mike Snitzer745dc572017-12-11 20:51:50 -0500610 struct bio *bio = io->orig_bio;
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400611 int rw = bio_data_dir(bio);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800612
613 io->start_time = jiffies;
614
Mike Snitzerf3986372017-12-17 11:56:48 -0500615 generic_start_io_acct(md->queue, rw, bio_sectors(bio), &dm_disk(md)->part0);
616
Shaohua Li1e9bb882011-03-22 08:35:35 +0100617 atomic_set(&dm_disk(md)->part0.in_flight[rw],
Mike Snitzerf3986372017-12-17 11:56:48 -0500618 atomic_inc_return(&md->pending[rw]));
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400619
620 if (unlikely(dm_stats_used(&md->stats)))
Mike Christie528ec5a2016-06-05 14:32:03 -0500621 dm_stats_account_io(&md->stats, bio_data_dir(bio),
622 bio->bi_iter.bi_sector, bio_sectors(bio),
623 false, 0, &io->stats_aux);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800624}
625
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000626static void end_io_acct(struct dm_io *io)
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800627{
628 struct mapped_device *md = io->md;
Mike Snitzer745dc572017-12-11 20:51:50 -0500629 struct bio *bio = io->orig_bio;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800630 unsigned long duration = jiffies - io->start_time;
Gu Zheng18c0b222014-11-24 11:05:26 +0800631 int pending;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800632 int rw = bio_data_dir(bio);
633
Jens Axboed62e26b2017-06-30 21:55:08 -0600634 generic_end_io_acct(md->queue, rw, &dm_disk(md)->part0, io->start_time);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800635
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400636 if (unlikely(dm_stats_used(&md->stats)))
Mike Christie528ec5a2016-06-05 14:32:03 -0500637 dm_stats_account_io(&md->stats, bio_data_dir(bio),
638 bio->bi_iter.bi_sector, bio_sectors(bio),
639 true, duration, &io->stats_aux);
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400640
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100641 /*
642 * After this is decremented the bio must not be touched if it is
Tejun Heod87f4c12010-09-03 11:56:19 +0200643 * a flush.
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100644 */
Shaohua Li1e9bb882011-03-22 08:35:35 +0100645 pending = atomic_dec_return(&md->pending[rw]);
646 atomic_set(&dm_disk(md)->part0.in_flight[rw], pending);
Nikanth Karthikesan316d3152009-10-06 20:16:55 +0200647 pending += atomic_read(&md->pending[rw^0x1]);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800648
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000649 /* nudge anyone waiting on suspend queue */
650 if (!pending)
651 wake_up(&md->wait);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800652}
653
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654/*
655 * Add the bio to the list of deferred io.
656 */
Mikulas Patocka92c63902009-04-09 00:27:15 +0100657static void queue_io(struct mapped_device *md, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658{
Kiyoshi Ueda054474202010-09-08 18:07:01 +0200659 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
Kiyoshi Ueda054474202010-09-08 18:07:01 +0200661 spin_lock_irqsave(&md->deferred_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 bio_list_add(&md->deferred, bio);
Kiyoshi Ueda054474202010-09-08 18:07:01 +0200663 spin_unlock_irqrestore(&md->deferred_lock, flags);
Tejun Heo6a8736d2010-09-08 18:07:00 +0200664 queue_work(md->wq, &md->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665}
666
667/*
668 * Everyone (including functions in this file), should use this
669 * function to access the md->map field, and make sure they call
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100670 * dm_put_live_table() when finished.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 */
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100672struct dm_table *dm_get_live_table(struct mapped_device *md, int *srcu_idx) __acquires(md->io_barrier)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673{
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100674 *srcu_idx = srcu_read_lock(&md->io_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100676 return srcu_dereference(md->map, &md->io_barrier);
677}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100679void dm_put_live_table(struct mapped_device *md, int srcu_idx) __releases(md->io_barrier)
680{
681 srcu_read_unlock(&md->io_barrier, srcu_idx);
682}
683
684void dm_sync_table(struct mapped_device *md)
685{
686 synchronize_srcu(&md->io_barrier);
687 synchronize_rcu_expedited();
688}
689
690/*
691 * A fast alternative to dm_get_live_table/dm_put_live_table.
692 * The caller must not block between these two functions.
693 */
694static struct dm_table *dm_get_live_table_fast(struct mapped_device *md) __acquires(RCU)
695{
696 rcu_read_lock();
697 return rcu_dereference(md->map);
698}
699
700static void dm_put_live_table_fast(struct mapped_device *md) __releases(RCU)
701{
702 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703}
704
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800705/*
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500706 * Open a table device so we can use it as a map destination.
707 */
708static int open_table_device(struct table_device *td, dev_t dev,
709 struct mapped_device *md)
710{
711 static char *_claim_ptr = "I belong to device-mapper";
712 struct block_device *bdev;
713
714 int r;
715
716 BUG_ON(td->dm_dev.bdev);
717
718 bdev = blkdev_get_by_dev(dev, td->dm_dev.mode | FMODE_EXCL, _claim_ptr);
719 if (IS_ERR(bdev))
720 return PTR_ERR(bdev);
721
722 r = bd_link_disk_holder(bdev, dm_disk(md));
723 if (r) {
724 blkdev_put(bdev, td->dm_dev.mode | FMODE_EXCL);
725 return r;
726 }
727
728 td->dm_dev.bdev = bdev;
Dan Williams817bf402017-04-12 13:37:44 -0700729 td->dm_dev.dax_dev = dax_get_by_host(bdev->bd_disk->disk_name);
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500730 return 0;
731}
732
733/*
734 * Close a table device that we've been using.
735 */
736static void close_table_device(struct table_device *td, struct mapped_device *md)
737{
738 if (!td->dm_dev.bdev)
739 return;
740
741 bd_unlink_disk_holder(td->dm_dev.bdev, dm_disk(md));
742 blkdev_put(td->dm_dev.bdev, td->dm_dev.mode | FMODE_EXCL);
Dan Williams817bf402017-04-12 13:37:44 -0700743 put_dax(td->dm_dev.dax_dev);
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500744 td->dm_dev.bdev = NULL;
Dan Williams817bf402017-04-12 13:37:44 -0700745 td->dm_dev.dax_dev = NULL;
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500746}
747
748static struct table_device *find_table_device(struct list_head *l, dev_t dev,
749 fmode_t mode) {
750 struct table_device *td;
751
752 list_for_each_entry(td, l, list)
753 if (td->dm_dev.bdev->bd_dev == dev && td->dm_dev.mode == mode)
754 return td;
755
756 return NULL;
757}
758
759int dm_get_table_device(struct mapped_device *md, dev_t dev, fmode_t mode,
760 struct dm_dev **result) {
761 int r;
762 struct table_device *td;
763
764 mutex_lock(&md->table_devices_lock);
765 td = find_table_device(&md->table_devices, dev, mode);
766 if (!td) {
Mike Snitzer115485e2016-02-22 12:16:21 -0500767 td = kmalloc_node(sizeof(*td), GFP_KERNEL, md->numa_node_id);
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500768 if (!td) {
769 mutex_unlock(&md->table_devices_lock);
770 return -ENOMEM;
771 }
772
773 td->dm_dev.mode = mode;
774 td->dm_dev.bdev = NULL;
775
776 if ((r = open_table_device(td, dev, md))) {
777 mutex_unlock(&md->table_devices_lock);
778 kfree(td);
779 return r;
780 }
781
782 format_dev_t(td->dm_dev.name, dev);
783
Elena Reshetovab0b4d7c2017-10-20 10:37:39 +0300784 refcount_set(&td->count, 1);
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500785 list_add(&td->list, &md->table_devices);
Elena Reshetovab0b4d7c2017-10-20 10:37:39 +0300786 } else {
787 refcount_inc(&td->count);
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500788 }
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500789 mutex_unlock(&md->table_devices_lock);
790
791 *result = &td->dm_dev;
792 return 0;
793}
794EXPORT_SYMBOL_GPL(dm_get_table_device);
795
796void dm_put_table_device(struct mapped_device *md, struct dm_dev *d)
797{
798 struct table_device *td = container_of(d, struct table_device, dm_dev);
799
800 mutex_lock(&md->table_devices_lock);
Elena Reshetovab0b4d7c2017-10-20 10:37:39 +0300801 if (refcount_dec_and_test(&td->count)) {
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500802 close_table_device(td, md);
803 list_del(&td->list);
804 kfree(td);
805 }
806 mutex_unlock(&md->table_devices_lock);
807}
808EXPORT_SYMBOL(dm_put_table_device);
809
810static void free_table_devices(struct list_head *devices)
811{
812 struct list_head *tmp, *next;
813
814 list_for_each_safe(tmp, next, devices) {
815 struct table_device *td = list_entry(tmp, struct table_device, list);
816
817 DMWARN("dm_destroy: %s still exists with %d references",
Elena Reshetovab0b4d7c2017-10-20 10:37:39 +0300818 td->dm_dev.name, refcount_read(&td->count));
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500819 kfree(td);
820 }
821}
822
823/*
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800824 * Get the geometry associated with a dm device
825 */
826int dm_get_geometry(struct mapped_device *md, struct hd_geometry *geo)
827{
828 *geo = md->geometry;
829
830 return 0;
831}
832
833/*
834 * Set the geometry of a device.
835 */
836int dm_set_geometry(struct mapped_device *md, struct hd_geometry *geo)
837{
838 sector_t sz = (sector_t)geo->cylinders * geo->heads * geo->sectors;
839
840 if (geo->start > sz) {
841 DMWARN("Start sector is beyond the geometry limits.");
842 return -EINVAL;
843 }
844
845 md->geometry = *geo;
846
847 return 0;
848}
849
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800850static int __noflush_suspending(struct mapped_device *md)
851{
852 return test_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
853}
854
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855/*
856 * Decrements the number of outstanding ios that a bio has been
857 * cloned into, completing the original io if necc.
858 */
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200859static void dec_pending(struct dm_io *io, blk_status_t error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860{
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800861 unsigned long flags;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200862 blk_status_t io_error;
Milan Brozb35f8ca2009-03-16 17:44:36 +0000863 struct bio *bio;
864 struct mapped_device *md = io->md;
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800865
866 /* Push-back supersedes any I/O errors */
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +0100867 if (unlikely(error)) {
868 spin_lock_irqsave(&io->endio_lock, flags);
Mike Snitzer745dc572017-12-11 20:51:50 -0500869 if (!(io->status == BLK_STS_DM_REQUEUE && __noflush_suspending(md)))
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200870 io->status = error;
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +0100871 spin_unlock_irqrestore(&io->endio_lock, flags);
872 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
874 if (atomic_dec_and_test(&io->io_count)) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200875 if (io->status == BLK_STS_DM_REQUEUE) {
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800876 /*
877 * Target requested pushing back the I/O.
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800878 */
Mikulas Patocka022c2612009-04-02 19:55:39 +0100879 spin_lock_irqsave(&md->deferred_lock, flags);
Tejun Heo6a8736d2010-09-08 18:07:00 +0200880 if (__noflush_suspending(md))
Mike Snitzer745dc572017-12-11 20:51:50 -0500881 /* NOTE early return due to BLK_STS_DM_REQUEUE below */
882 bio_list_add_head(&md->deferred, io->orig_bio);
Tejun Heo6a8736d2010-09-08 18:07:00 +0200883 else
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800884 /* noflush suspend was interrupted. */
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200885 io->status = BLK_STS_IOERR;
Mikulas Patocka022c2612009-04-02 19:55:39 +0100886 spin_unlock_irqrestore(&md->deferred_lock, flags);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800887 }
888
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200889 io_error = io->status;
Mike Snitzer745dc572017-12-11 20:51:50 -0500890 bio = io->orig_bio;
Tejun Heo6a8736d2010-09-08 18:07:00 +0200891 end_io_acct(io);
892 free_io(md, io);
Jens Axboe2056a782006-03-23 20:00:26 +0100893
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200894 if (io_error == BLK_STS_DM_REQUEUE)
Tejun Heo6a8736d2010-09-08 18:07:00 +0200895 return;
896
Jens Axboe1eff9d32016-08-05 15:35:16 -0600897 if ((bio->bi_opf & REQ_PREFLUSH) && bio->bi_iter.bi_size) {
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100898 /*
Tejun Heo6a8736d2010-09-08 18:07:00 +0200899 * Preflush done for flush with data, reissue
Mike Christie28a8f0d2016-06-05 14:32:25 -0500900 * without REQ_PREFLUSH.
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100901 */
Jens Axboe1eff9d32016-08-05 15:35:16 -0600902 bio->bi_opf &= ~REQ_PREFLUSH;
Tejun Heo6a8736d2010-09-08 18:07:00 +0200903 queue_io(md, bio);
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100904 } else {
Mike Snitzerb372d362010-09-08 18:07:01 +0200905 /* done with normal IO or empty flush */
NeilBrown8dd601f2018-02-15 20:00:15 +1100906 if (io_error)
907 bio->bi_status = io_error;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200908 bio_endio(bio);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800909 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 }
911}
912
Mike Snitzer4cc96132016-05-12 16:28:10 -0400913void disable_write_same(struct mapped_device *md)
Mike Snitzer7eee4ae2014-06-02 15:50:06 -0400914{
915 struct queue_limits *limits = dm_get_queue_limits(md);
916
917 /* device doesn't really support WRITE SAME, disable it */
918 limits->max_write_same_sectors = 0;
919}
920
Christoph Hellwigac62d622017-04-05 19:21:05 +0200921void disable_write_zeroes(struct mapped_device *md)
922{
923 struct queue_limits *limits = dm_get_queue_limits(md);
924
925 /* device doesn't really support WRITE ZEROES, disable it */
926 limits->max_write_zeroes_sectors = 0;
927}
928
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200929static void clone_endio(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930{
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200931 blk_status_t error = bio->bi_status;
Mikulas Patockabfc6d412014-03-04 18:24:49 -0500932 struct dm_target_io *tio = container_of(bio, struct dm_target_io, clone);
Milan Brozb35f8ca2009-03-16 17:44:36 +0000933 struct dm_io *io = tio->io;
Stefan Bader9faf4002006-10-03 01:15:41 -0700934 struct mapped_device *md = tio->io->md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 dm_endio_fn endio = tio->ti->type->end_io;
936
Mike Snitzer978e51b2017-12-09 15:16:42 -0500937 if (unlikely(error == BLK_STS_TARGET) && md->type != DM_TYPE_NVME_BIO_BASED) {
Christoph Hellwigac62d622017-04-05 19:21:05 +0200938 if (bio_op(bio) == REQ_OP_WRITE_SAME &&
Christoph Hellwig74d46992017-08-23 19:10:32 +0200939 !bio->bi_disk->queue->limits.max_write_same_sectors)
Christoph Hellwigac62d622017-04-05 19:21:05 +0200940 disable_write_same(md);
941 if (bio_op(bio) == REQ_OP_WRITE_ZEROES &&
Christoph Hellwig74d46992017-08-23 19:10:32 +0200942 !bio->bi_disk->queue->limits.max_write_zeroes_sectors)
Christoph Hellwigac62d622017-04-05 19:21:05 +0200943 disable_write_zeroes(md);
944 }
Mike Snitzer7eee4ae2014-06-02 15:50:06 -0400945
Christoph Hellwig1be56902017-06-03 09:38:03 +0200946 if (endio) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200947 int r = endio(tio->ti, bio, &error);
Christoph Hellwig1be56902017-06-03 09:38:03 +0200948 switch (r) {
949 case DM_ENDIO_REQUEUE:
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200950 error = BLK_STS_DM_REQUEUE;
Christoph Hellwig1be56902017-06-03 09:38:03 +0200951 /*FALLTHRU*/
952 case DM_ENDIO_DONE:
953 break;
954 case DM_ENDIO_INCOMPLETE:
955 /* The target will handle the io */
956 return;
957 default:
958 DMWARN("unimplemented target endio return value: %d", r);
959 BUG();
960 }
961 }
962
Mike Snitzercfae7522016-04-11 12:05:38 -0400963 free_tio(tio);
Milan Brozb35f8ca2009-03-16 17:44:36 +0000964 dec_pending(io, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965}
966
Mike Snitzer78d8e582015-06-26 10:01:13 -0400967/*
Mike Snitzer56a67df2010-08-12 04:14:10 +0100968 * Return maximum size of I/O possible at the supplied sector up to the current
969 * target boundary.
970 */
971static sector_t max_io_len_target_boundary(sector_t sector, struct dm_target *ti)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972{
Mike Snitzer56a67df2010-08-12 04:14:10 +0100973 sector_t target_offset = dm_target_offset(ti, sector);
974
975 return ti->len - target_offset;
976}
977
978static sector_t max_io_len(sector_t sector, struct dm_target *ti)
979{
980 sector_t len = max_io_len_target_boundary(sector, ti);
Mike Snitzer542f9032012-07-27 15:08:00 +0100981 sector_t offset, max_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
983 /*
Mike Snitzer542f9032012-07-27 15:08:00 +0100984 * Does the target need to split even further?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 */
Mike Snitzer542f9032012-07-27 15:08:00 +0100986 if (ti->max_io_len) {
987 offset = dm_target_offset(ti, sector);
988 if (unlikely(ti->max_io_len & (ti->max_io_len - 1)))
989 max_len = sector_div(offset, ti->max_io_len);
990 else
991 max_len = offset & (ti->max_io_len - 1);
992 max_len = ti->max_io_len - max_len;
993
994 if (len > max_len)
995 len = max_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 }
997
998 return len;
999}
1000
Mike Snitzer542f9032012-07-27 15:08:00 +01001001int dm_set_target_max_io_len(struct dm_target *ti, sector_t len)
1002{
1003 if (len > UINT_MAX) {
1004 DMERR("Specified maximum size of target IO (%llu) exceeds limit (%u)",
1005 (unsigned long long)len, UINT_MAX);
1006 ti->error = "Maximum size of target IO is too large";
1007 return -EINVAL;
1008 }
1009
Ming Lei8f50e352017-12-18 20:22:08 +08001010 /*
1011 * BIO based queue uses its own splitting. When multipage bvecs
1012 * is switched on, size of the incoming bio may be too big to
1013 * be handled in some targets, such as crypt.
1014 *
1015 * When these targets are ready for the big bio, we can remove
1016 * the limit.
1017 */
1018 ti->max_io_len = min_t(uint32_t, len, BIO_MAX_PAGES * PAGE_SIZE);
Mike Snitzer542f9032012-07-27 15:08:00 +01001019
1020 return 0;
1021}
1022EXPORT_SYMBOL_GPL(dm_set_target_max_io_len);
1023
Dan Williamsf26c5712017-04-12 12:35:44 -07001024static struct dm_target *dm_dax_get_live_target(struct mapped_device *md,
1025 sector_t sector, int *srcu_idx)
Toshi Kani545ed202016-06-22 17:54:53 -06001026{
Toshi Kani545ed202016-06-22 17:54:53 -06001027 struct dm_table *map;
1028 struct dm_target *ti;
Toshi Kani545ed202016-06-22 17:54:53 -06001029
Dan Williamsf26c5712017-04-12 12:35:44 -07001030 map = dm_get_live_table(md, srcu_idx);
Toshi Kani545ed202016-06-22 17:54:53 -06001031 if (!map)
Dan Williamsf26c5712017-04-12 12:35:44 -07001032 return NULL;
Toshi Kani545ed202016-06-22 17:54:53 -06001033
1034 ti = dm_table_find_target(map, sector);
1035 if (!dm_target_is_valid(ti))
Dan Williamsf26c5712017-04-12 12:35:44 -07001036 return NULL;
1037
1038 return ti;
1039}
1040
1041static long dm_dax_direct_access(struct dax_device *dax_dev, pgoff_t pgoff,
1042 long nr_pages, void **kaddr, pfn_t *pfn)
1043{
1044 struct mapped_device *md = dax_get_private(dax_dev);
1045 sector_t sector = pgoff * PAGE_SECTORS;
1046 struct dm_target *ti;
1047 long len, ret = -EIO;
1048 int srcu_idx;
1049
1050 ti = dm_dax_get_live_target(md, sector, &srcu_idx);
1051
1052 if (!ti)
Toshi Kani545ed202016-06-22 17:54:53 -06001053 goto out;
Dan Williamsf26c5712017-04-12 12:35:44 -07001054 if (!ti->type->direct_access)
1055 goto out;
1056 len = max_io_len(sector, ti) / PAGE_SECTORS;
1057 if (len < 1)
1058 goto out;
1059 nr_pages = min(len, nr_pages);
Toshi Kani545ed202016-06-22 17:54:53 -06001060 if (ti->type->direct_access)
Dan Williams817bf402017-04-12 13:37:44 -07001061 ret = ti->type->direct_access(ti, pgoff, nr_pages, kaddr, pfn);
1062
Dan Williamsf26c5712017-04-12 12:35:44 -07001063 out:
Toshi Kani545ed202016-06-22 17:54:53 -06001064 dm_put_live_table(md, srcu_idx);
Dan Williamsf26c5712017-04-12 12:35:44 -07001065
1066 return ret;
Toshi Kani545ed202016-06-22 17:54:53 -06001067}
1068
Dan Williams7e026c82017-05-29 12:57:56 -07001069static size_t dm_dax_copy_from_iter(struct dax_device *dax_dev, pgoff_t pgoff,
1070 void *addr, size_t bytes, struct iov_iter *i)
1071{
1072 struct mapped_device *md = dax_get_private(dax_dev);
1073 sector_t sector = pgoff * PAGE_SECTORS;
1074 struct dm_target *ti;
1075 long ret = 0;
1076 int srcu_idx;
1077
1078 ti = dm_dax_get_live_target(md, sector, &srcu_idx);
1079
1080 if (!ti)
1081 goto out;
1082 if (!ti->type->dax_copy_from_iter) {
1083 ret = copy_from_iter(addr, bytes, i);
1084 goto out;
1085 }
1086 ret = ti->type->dax_copy_from_iter(ti, pgoff, addr, bytes, i);
1087 out:
1088 dm_put_live_table(md, srcu_idx);
1089
1090 return ret;
1091}
1092
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001093/*
1094 * A target may call dm_accept_partial_bio only from the map routine. It is
NeilBrownc06b3e52017-11-21 08:44:35 -05001095 * allowed for all bio types except REQ_PREFLUSH and REQ_OP_ZONE_RESET.
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001096 *
1097 * dm_accept_partial_bio informs the dm that the target only wants to process
1098 * additional n_sectors sectors of the bio and the rest of the data should be
1099 * sent in a next bio.
1100 *
1101 * A diagram that explains the arithmetics:
1102 * +--------------------+---------------+-------+
1103 * | 1 | 2 | 3 |
1104 * +--------------------+---------------+-------+
1105 *
1106 * <-------------- *tio->len_ptr --------------->
1107 * <------- bi_size ------->
1108 * <-- n_sectors -->
1109 *
1110 * Region 1 was already iterated over with bio_advance or similar function.
1111 * (it may be empty if the target doesn't use bio_advance)
1112 * Region 2 is the remaining bio size that the target wants to process.
1113 * (it may be empty if region 1 is non-empty, although there is no reason
1114 * to make it empty)
1115 * The target requires that region 3 is to be sent in the next bio.
1116 *
1117 * If the target wants to receive multiple copies of the bio (via num_*bios, etc),
1118 * the partially processed part (the sum of regions 1+2) must be the same for all
1119 * copies of the bio.
1120 */
1121void dm_accept_partial_bio(struct bio *bio, unsigned n_sectors)
1122{
1123 struct dm_target_io *tio = container_of(bio, struct dm_target_io, clone);
1124 unsigned bi_size = bio->bi_iter.bi_size >> SECTOR_SHIFT;
Jens Axboe1eff9d32016-08-05 15:35:16 -06001125 BUG_ON(bio->bi_opf & REQ_PREFLUSH);
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001126 BUG_ON(bi_size > *tio->len_ptr);
1127 BUG_ON(n_sectors > bi_size);
1128 *tio->len_ptr -= bi_size - n_sectors;
1129 bio->bi_iter.bi_size = n_sectors << SECTOR_SHIFT;
1130}
1131EXPORT_SYMBOL_GPL(dm_accept_partial_bio);
1132
Mikulas Patockad67a5f42017-02-15 11:26:10 -05001133/*
Damien Le Moal10999302017-05-08 16:40:48 -07001134 * The zone descriptors obtained with a zone report indicate
1135 * zone positions within the target device. The zone descriptors
1136 * must be remapped to match their position within the dm device.
1137 * A target may call dm_remap_zone_report after completion of a
1138 * REQ_OP_ZONE_REPORT bio to remap the zone descriptors obtained
1139 * from the target device mapping to the dm device.
1140 */
1141void dm_remap_zone_report(struct dm_target *ti, struct bio *bio, sector_t start)
1142{
1143#ifdef CONFIG_BLK_DEV_ZONED
1144 struct dm_target_io *tio = container_of(bio, struct dm_target_io, clone);
Mike Snitzer745dc572017-12-11 20:51:50 -05001145 struct bio *report_bio = tio->io->orig_bio;
Damien Le Moal10999302017-05-08 16:40:48 -07001146 struct blk_zone_report_hdr *hdr = NULL;
1147 struct blk_zone *zone;
1148 unsigned int nr_rep = 0;
1149 unsigned int ofst;
1150 struct bio_vec bvec;
1151 struct bvec_iter iter;
1152 void *addr;
1153
1154 if (bio->bi_status)
1155 return;
1156
1157 /*
1158 * Remap the start sector of the reported zones. For sequential zones,
1159 * also remap the write pointer position.
1160 */
1161 bio_for_each_segment(bvec, report_bio, iter) {
1162 addr = kmap_atomic(bvec.bv_page);
1163
1164 /* Remember the report header in the first page */
1165 if (!hdr) {
1166 hdr = addr;
1167 ofst = sizeof(struct blk_zone_report_hdr);
1168 } else
1169 ofst = 0;
1170
1171 /* Set zones start sector */
1172 while (hdr->nr_zones && ofst < bvec.bv_len) {
1173 zone = addr + ofst;
1174 if (zone->start >= start + ti->len) {
1175 hdr->nr_zones = 0;
1176 break;
1177 }
1178 zone->start = zone->start + ti->begin - start;
1179 if (zone->type != BLK_ZONE_TYPE_CONVENTIONAL) {
1180 if (zone->cond == BLK_ZONE_COND_FULL)
1181 zone->wp = zone->start + zone->len;
1182 else if (zone->cond == BLK_ZONE_COND_EMPTY)
1183 zone->wp = zone->start;
1184 else
1185 zone->wp = zone->wp + ti->begin - start;
1186 }
1187 ofst += sizeof(struct blk_zone);
1188 hdr->nr_zones--;
1189 nr_rep++;
1190 }
1191
1192 if (addr != hdr)
1193 kunmap_atomic(addr);
1194
1195 if (!hdr->nr_zones)
1196 break;
1197 }
1198
1199 if (hdr) {
1200 hdr->nr_zones = nr_rep;
1201 kunmap_atomic(hdr);
1202 }
1203
1204 bio_advance(report_bio, report_bio->bi_iter.bi_size);
1205
1206#else /* !CONFIG_BLK_DEV_ZONED */
1207 bio->bi_status = BLK_STS_NOTSUPP;
1208#endif
1209}
1210EXPORT_SYMBOL_GPL(dm_remap_zone_report);
1211
Mike Snitzer978e51b2017-12-09 15:16:42 -05001212static blk_qc_t __map_bio(struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213{
1214 int r;
Jens Axboe2056a782006-03-23 20:00:26 +01001215 sector_t sector;
Mikulas Patockadba14162012-10-12 21:02:15 +01001216 struct bio *clone = &tio->clone;
Mike Snitzer64f52b02017-12-11 23:17:47 -05001217 struct dm_io *io = tio->io;
Mike Snitzer978e51b2017-12-09 15:16:42 -05001218 struct mapped_device *md = io->md;
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001219 struct dm_target *ti = tio->ti;
Mike Snitzer978e51b2017-12-09 15:16:42 -05001220 blk_qc_t ret = BLK_QC_T_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 clone->bi_end_io = clone_endio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
1224 /*
1225 * Map the clone. If r == 0 we don't need to do
1226 * anything, the target has assumed ownership of
1227 * this io.
1228 */
Mike Snitzer64f52b02017-12-11 23:17:47 -05001229 atomic_inc(&io->io_count);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001230 sector = clone->bi_iter.bi_sector;
Mikulas Patockad67a5f42017-02-15 11:26:10 -05001231
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00001232 r = ti->type->map(ti, clone);
Christoph Hellwig846785e2017-06-03 09:38:02 +02001233 switch (r) {
1234 case DM_MAPIO_SUBMITTED:
1235 break;
1236 case DM_MAPIO_REMAPPED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 /* the bio has been remapped so dispatch it */
Christoph Hellwig74d46992017-08-23 19:10:32 +02001238 trace_block_bio_remap(clone->bi_disk->queue, clone,
Mike Snitzer64f52b02017-12-11 23:17:47 -05001239 bio_dev(io->orig_bio), sector);
Mike Snitzer978e51b2017-12-09 15:16:42 -05001240 if (md->type == DM_TYPE_NVME_BIO_BASED)
1241 ret = direct_make_request(clone);
1242 else
1243 ret = generic_make_request(clone);
Christoph Hellwig846785e2017-06-03 09:38:02 +02001244 break;
1245 case DM_MAPIO_KILL:
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001246 free_tio(tio);
Mike Snitzer64f52b02017-12-11 23:17:47 -05001247 dec_pending(io, BLK_STS_IOERR);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001248 break;
Christoph Hellwig846785e2017-06-03 09:38:02 +02001249 case DM_MAPIO_REQUEUE:
Mike Snitzercfae7522016-04-11 12:05:38 -04001250 free_tio(tio);
Mike Snitzer64f52b02017-12-11 23:17:47 -05001251 dec_pending(io, BLK_STS_DM_REQUEUE);
Christoph Hellwig846785e2017-06-03 09:38:02 +02001252 break;
1253 default:
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -08001254 DMWARN("unimplemented target map return value: %d", r);
1255 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
Mike Snitzer978e51b2017-12-09 15:16:42 -05001258 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260
Mikulas Patockae0d66092014-03-14 18:40:39 -04001261static void bio_setup_sector(struct bio *bio, sector_t sector, unsigned len)
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001262{
Kent Overstreet4f024f32013-10-11 15:44:27 -07001263 bio->bi_iter.bi_sector = sector;
1264 bio->bi_iter.bi_size = to_bytes(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265}
1266
1267/*
1268 * Creates a bio that consists of range of complete bvecs.
1269 */
Mike Snitzerc80914e2016-03-02 12:33:03 -05001270static int clone_bio(struct dm_target_io *tio, struct bio *bio,
1271 sector_t sector, unsigned len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272{
Mikulas Patockadba14162012-10-12 21:02:15 +01001273 struct bio *clone = &tio->clone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001275 __bio_clone_fast(clone, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
Mikulas Patockae2460f22017-04-18 16:51:48 -04001277 if (unlikely(bio_integrity(bio) != NULL)) {
1278 int r;
1279
1280 if (unlikely(!dm_target_has_integrity(tio->ti->type) &&
1281 !dm_target_passes_integrity(tio->ti->type))) {
1282 DMWARN("%s: the target %s doesn't support integrity data.",
1283 dm_device_name(tio->io->md),
1284 tio->ti->type->name);
1285 return -EIO;
1286 }
1287
1288 r = bio_integrity_clone(clone, bio, GFP_NOIO);
Mike Snitzerc80914e2016-03-02 12:33:03 -05001289 if (r < 0)
1290 return r;
1291 }
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001292
Damien Le Moal264c8692017-05-08 16:40:47 -07001293 if (bio_op(bio) != REQ_OP_ZONE_REPORT)
1294 bio_advance(clone, to_bytes(sector - clone->bi_iter.bi_sector));
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001295 clone->bi_iter.bi_size = to_bytes(len);
1296
Mikulas Patockae2460f22017-04-18 16:51:48 -04001297 if (unlikely(bio_integrity(bio) != NULL))
Dmitry Monakhovfbd08e72017-06-29 11:31:10 -07001298 bio_integrity_trim(clone);
Mike Snitzerc80914e2016-03-02 12:33:03 -05001299
1300 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301}
1302
Mike Snitzer318716d2017-11-22 14:56:12 -05001303static void alloc_multiple_bios(struct bio_list *blist, struct clone_info *ci,
1304 struct dm_target *ti, unsigned num_bios)
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001305{
Mikulas Patockadba14162012-10-12 21:02:15 +01001306 struct dm_target_io *tio;
Mike Snitzer318716d2017-11-22 14:56:12 -05001307 int try;
Mikulas Patockadba14162012-10-12 21:02:15 +01001308
Mike Snitzer318716d2017-11-22 14:56:12 -05001309 if (!num_bios)
1310 return;
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001311
Mike Snitzer318716d2017-11-22 14:56:12 -05001312 if (num_bios == 1) {
1313 tio = alloc_tio(ci, ti, 0, GFP_NOIO);
1314 bio_list_add(blist, &tio->clone);
1315 return;
1316 }
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001317
Mike Snitzer318716d2017-11-22 14:56:12 -05001318 for (try = 0; try < 2; try++) {
1319 int bio_nr;
1320 struct bio *bio;
1321
1322 if (try)
Mike Snitzerbc02cdb2017-12-14 16:30:42 -05001323 mutex_lock(&ci->io->md->table_devices_lock);
Mike Snitzer318716d2017-11-22 14:56:12 -05001324 for (bio_nr = 0; bio_nr < num_bios; bio_nr++) {
1325 tio = alloc_tio(ci, ti, bio_nr, try ? GFP_NOIO : GFP_NOWAIT);
1326 if (!tio)
1327 break;
1328
1329 bio_list_add(blist, &tio->clone);
1330 }
1331 if (try)
Mike Snitzerbc02cdb2017-12-14 16:30:42 -05001332 mutex_unlock(&ci->io->md->table_devices_lock);
Mike Snitzer318716d2017-11-22 14:56:12 -05001333 if (bio_nr == num_bios)
1334 return;
1335
1336 while ((bio = bio_list_pop(blist))) {
1337 tio = container_of(bio, struct dm_target_io, clone);
1338 free_tio(tio);
1339 }
1340 }
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001341}
1342
Mike Snitzer978e51b2017-12-09 15:16:42 -05001343static blk_qc_t __clone_and_map_simple_bio(struct clone_info *ci,
1344 struct dm_target_io *tio, unsigned *len)
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001345{
Mikulas Patockadba14162012-10-12 21:02:15 +01001346 struct bio *clone = &tio->clone;
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001347
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001348 tio->len_ptr = len;
1349
Junichi Nomura99778272014-10-03 11:55:16 +00001350 __bio_clone_fast(clone, ci->bio);
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001351 if (len)
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001352 bio_setup_sector(clone, ci->sector, *len);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001353
Mike Snitzer978e51b2017-12-09 15:16:42 -05001354 return __map_bio(tio);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001355}
1356
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001357static void __send_duplicate_bios(struct clone_info *ci, struct dm_target *ti,
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001358 unsigned num_bios, unsigned *len)
Mike Snitzer06a426c2010-08-12 04:14:09 +01001359{
Mike Snitzer318716d2017-11-22 14:56:12 -05001360 struct bio_list blist = BIO_EMPTY_LIST;
1361 struct bio *bio;
1362 struct dm_target_io *tio;
Mike Snitzer06a426c2010-08-12 04:14:09 +01001363
Mike Snitzer318716d2017-11-22 14:56:12 -05001364 alloc_multiple_bios(&blist, ci, ti, num_bios);
1365
1366 while ((bio = bio_list_pop(&blist))) {
1367 tio = container_of(bio, struct dm_target_io, clone);
Mike Snitzer978e51b2017-12-09 15:16:42 -05001368 (void) __clone_and_map_simple_bio(ci, tio, len);
Mike Snitzer318716d2017-11-22 14:56:12 -05001369 }
Mike Snitzer06a426c2010-08-12 04:14:09 +01001370}
1371
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001372static int __send_empty_flush(struct clone_info *ci)
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001373{
Mike Snitzer06a426c2010-08-12 04:14:09 +01001374 unsigned target_nr = 0;
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001375 struct dm_target *ti;
1376
Mike Snitzerb372d362010-09-08 18:07:01 +02001377 BUG_ON(bio_has_data(ci->bio));
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001378 while ((ti = dm_table_get_target(ci->map, target_nr++)))
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001379 __send_duplicate_bios(ci, ti, ti->num_flush_bios, NULL);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001380
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001381 return 0;
1382}
1383
Mike Snitzerc80914e2016-03-02 12:33:03 -05001384static int __clone_and_map_data_bio(struct clone_info *ci, struct dm_target *ti,
NeilBrownf31c21e2017-11-22 14:25:18 +11001385 sector_t sector, unsigned *len)
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001386{
Mikulas Patockadba14162012-10-12 21:02:15 +01001387 struct bio *bio = ci->bio;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001388 struct dm_target_io *tio;
NeilBrownf31c21e2017-11-22 14:25:18 +11001389 int r;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001390
Mike Snitzer318716d2017-11-22 14:56:12 -05001391 tio = alloc_tio(ci, ti, 0, GFP_NOIO);
NeilBrownf31c21e2017-11-22 14:25:18 +11001392 tio->len_ptr = len;
1393 r = clone_bio(tio, bio, sector, *len);
1394 if (r < 0) {
1395 free_tio(tio);
1396 return r;
Alasdair G Kergonb0d8ed42013-03-01 22:45:49 +00001397 }
Mike Snitzer978e51b2017-12-09 15:16:42 -05001398 (void) __map_bio(tio);
Mike Snitzerc80914e2016-03-02 12:33:03 -05001399
NeilBrownf31c21e2017-11-22 14:25:18 +11001400 return 0;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001401}
1402
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001403typedef unsigned (*get_num_bios_fn)(struct dm_target *ti);
Mike Snitzer23508a92012-12-21 20:23:37 +00001404
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001405static unsigned get_num_discard_bios(struct dm_target *ti)
Mike Snitzer23508a92012-12-21 20:23:37 +00001406{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001407 return ti->num_discard_bios;
Mike Snitzer23508a92012-12-21 20:23:37 +00001408}
1409
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001410static unsigned get_num_write_same_bios(struct dm_target *ti)
Mike Snitzer23508a92012-12-21 20:23:37 +00001411{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001412 return ti->num_write_same_bios;
Mike Snitzer23508a92012-12-21 20:23:37 +00001413}
1414
Christoph Hellwigac62d622017-04-05 19:21:05 +02001415static unsigned get_num_write_zeroes_bios(struct dm_target *ti)
1416{
1417 return ti->num_write_zeroes_bios;
1418}
1419
Mike Snitzer23508a92012-12-21 20:23:37 +00001420typedef bool (*is_split_required_fn)(struct dm_target *ti);
1421
1422static bool is_split_required_for_discard(struct dm_target *ti)
1423{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001424 return ti->split_discard_bios;
Mike Snitzer23508a92012-12-21 20:23:37 +00001425}
1426
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001427static int __send_changing_extent_only(struct clone_info *ci, struct dm_target *ti,
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001428 get_num_bios_fn get_num_bios,
1429 is_split_required_fn is_split_required)
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001430{
Mikulas Patockae0d66092014-03-14 18:40:39 -04001431 unsigned len;
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001432 unsigned num_bios;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001433
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001434 /*
1435 * Even though the device advertised support for this type of
1436 * request, that does not mean every target supports it, and
1437 * reconfiguration might also have changed that since the
1438 * check was performed.
1439 */
1440 num_bios = get_num_bios ? get_num_bios(ti) : 0;
1441 if (!num_bios)
1442 return -EOPNOTSUPP;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001443
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001444 if (is_split_required && !is_split_required(ti))
1445 len = min((sector_t)ci->sector_count, max_io_len_target_boundary(ci->sector, ti));
1446 else
1447 len = min((sector_t)ci->sector_count, max_io_len(ci->sector, ti));
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001448
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001449 __send_duplicate_bios(ci, ti, num_bios, &len);
Mike Snitzer06a426c2010-08-12 04:14:09 +01001450
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001451 ci->sector += len;
1452 ci->sector_count -= len;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001453
1454 return 0;
1455}
1456
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001457static int __send_discard(struct clone_info *ci, struct dm_target *ti)
Mike Snitzer23508a92012-12-21 20:23:37 +00001458{
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001459 return __send_changing_extent_only(ci, ti, get_num_discard_bios,
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001460 is_split_required_for_discard);
Mike Snitzer23508a92012-12-21 20:23:37 +00001461}
1462
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001463static int __send_write_same(struct clone_info *ci, struct dm_target *ti)
Mike Snitzer23508a92012-12-21 20:23:37 +00001464{
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001465 return __send_changing_extent_only(ci, ti, get_num_write_same_bios, NULL);
Mike Snitzer23508a92012-12-21 20:23:37 +00001466}
1467
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001468static int __send_write_zeroes(struct clone_info *ci, struct dm_target *ti)
Christoph Hellwigac62d622017-04-05 19:21:05 +02001469{
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001470 return __send_changing_extent_only(ci, ti, get_num_write_zeroes_bios, NULL);
Christoph Hellwigac62d622017-04-05 19:21:05 +02001471}
1472
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001473/*
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001474 * Select the correct strategy for processing a non-flush bio.
1475 */
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001476static int __split_and_process_non_flush(struct clone_info *ci)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477{
Mikulas Patockadba14162012-10-12 21:02:15 +01001478 struct bio *bio = ci->bio;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001479 struct dm_target *ti;
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001480 unsigned len;
Mike Snitzerc80914e2016-03-02 12:33:03 -05001481 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001483 ti = dm_table_find_target(ci->map, ci->sector);
1484 if (!dm_target_is_valid(ti))
1485 return -EIO;
1486
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001487 if (unlikely(bio_op(bio) == REQ_OP_DISCARD))
1488 return __send_discard(ci, ti);
1489 else if (unlikely(bio_op(bio) == REQ_OP_WRITE_SAME))
1490 return __send_write_same(ci, ti);
1491 else if (unlikely(bio_op(bio) == REQ_OP_WRITE_ZEROES))
1492 return __send_write_zeroes(ci, ti);
1493
Damien Le Moal264c8692017-05-08 16:40:47 -07001494 if (bio_op(bio) == REQ_OP_ZONE_REPORT)
1495 len = ci->sector_count;
1496 else
1497 len = min_t(sector_t, max_io_len(ci->sector, ti),
1498 ci->sector_count);
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001499
Mike Snitzerc80914e2016-03-02 12:33:03 -05001500 r = __clone_and_map_data_bio(ci, ti, ci->sector, &len);
1501 if (r < 0)
1502 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001504 ci->sector += len;
1505 ci->sector_count -= len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001507 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508}
1509
Mike Snitzer978e51b2017-12-09 15:16:42 -05001510static void init_clone_info(struct clone_info *ci, struct mapped_device *md,
1511 struct dm_table *map, struct bio *bio)
1512{
1513 ci->map = map;
1514 ci->io = alloc_io(md, bio);
1515 ci->sector = bio->bi_iter.bi_sector;
1516}
1517
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518/*
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001519 * Entry point to split a bio into clones and submit them to the targets.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 */
Mike Snitzer978e51b2017-12-09 15:16:42 -05001521static blk_qc_t __split_and_process_bio(struct mapped_device *md,
1522 struct dm_table *map, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523{
1524 struct clone_info ci;
Mike Snitzer978e51b2017-12-09 15:16:42 -05001525 blk_qc_t ret = BLK_QC_T_NONE;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001526 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001528 if (unlikely(!map)) {
Tejun Heo6a8736d2010-09-08 18:07:00 +02001529 bio_io_error(bio);
Mike Snitzer978e51b2017-12-09 15:16:42 -05001530 return ret;
Mikulas Patockaf0b9a452009-04-02 19:55:38 +01001531 }
Mikulas Patocka692d0eb2009-04-09 00:27:13 +01001532
Mike Snitzer978e51b2017-12-09 15:16:42 -05001533 init_clone_info(&ci, md, map, bio);
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001534
Jens Axboe1eff9d32016-08-05 15:35:16 -06001535 if (bio->bi_opf & REQ_PREFLUSH) {
Mike Snitzerbc02cdb2017-12-14 16:30:42 -05001536 ci.bio = &ci.io->md->flush_bio;
Mike Snitzerb372d362010-09-08 18:07:01 +02001537 ci.sector_count = 0;
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001538 error = __send_empty_flush(&ci);
Mike Snitzerb372d362010-09-08 18:07:01 +02001539 /* dec_pending submits any data associated with flush */
Damien Le Moala4aa5e52017-05-08 16:40:46 -07001540 } else if (bio_op(bio) == REQ_OP_ZONE_RESET) {
1541 ci.bio = bio;
1542 ci.sector_count = 0;
1543 error = __split_and_process_non_flush(&ci);
Mike Snitzerb372d362010-09-08 18:07:01 +02001544 } else {
Tejun Heo6a8736d2010-09-08 18:07:00 +02001545 ci.bio = bio;
Tejun Heod87f4c12010-09-03 11:56:19 +02001546 ci.sector_count = bio_sectors(bio);
NeilBrown18a25da2017-09-06 09:43:28 +10001547 while (ci.sector_count && !error) {
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001548 error = __split_and_process_non_flush(&ci);
NeilBrown18a25da2017-09-06 09:43:28 +10001549 if (current->bio_list && ci.sector_count && !error) {
1550 /*
1551 * Remainder must be passed to generic_make_request()
1552 * so that it gets handled *after* bios already submitted
1553 * have been completely processed.
1554 * We take a clone of the original to store in
Mike Snitzer745dc572017-12-11 20:51:50 -05001555 * ci.io->orig_bio to be used by end_io_acct() and
NeilBrown18a25da2017-09-06 09:43:28 +10001556 * for dec_pending to use for completion handling.
1557 * As this path is not used for REQ_OP_ZONE_REPORT,
Mike Snitzer745dc572017-12-11 20:51:50 -05001558 * the usage of io->orig_bio in dm_remap_zone_report()
NeilBrown18a25da2017-09-06 09:43:28 +10001559 * won't be affected by this reassignment.
1560 */
1561 struct bio *b = bio_clone_bioset(bio, GFP_NOIO,
1562 md->queue->bio_split);
Mike Snitzer745dc572017-12-11 20:51:50 -05001563 ci.io->orig_bio = b;
NeilBrown18a25da2017-09-06 09:43:28 +10001564 bio_advance(bio, (bio_sectors(bio) - ci.sector_count) << 9);
1565 bio_chain(b, bio);
Mike Snitzer978e51b2017-12-09 15:16:42 -05001566 ret = generic_make_request(bio);
NeilBrown18a25da2017-09-06 09:43:28 +10001567 break;
1568 }
1569 }
Tejun Heod87f4c12010-09-03 11:56:19 +02001570 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
1572 /* drop the extra reference count */
Bart Van Assche54385bf2017-08-09 11:32:10 -07001573 dec_pending(ci.io, errno_to_blk_status(error));
Mike Snitzer978e51b2017-12-09 15:16:42 -05001574 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
1577/*
Mike Snitzer978e51b2017-12-09 15:16:42 -05001578 * Optimized variant of __split_and_process_bio that leverages the
1579 * fact that targets that use it do _not_ have a need to split bios.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 */
Mike Snitzer978e51b2017-12-09 15:16:42 -05001581static blk_qc_t __process_bio(struct mapped_device *md,
1582 struct dm_table *map, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583{
Mike Snitzer978e51b2017-12-09 15:16:42 -05001584 struct clone_info ci;
1585 blk_qc_t ret = BLK_QC_T_NONE;
1586 int error = 0;
1587
1588 if (unlikely(!map)) {
1589 bio_io_error(bio);
1590 return ret;
1591 }
1592
1593 init_clone_info(&ci, md, map, bio);
1594
1595 if (bio->bi_opf & REQ_PREFLUSH) {
1596 ci.bio = &ci.io->md->flush_bio;
1597 ci.sector_count = 0;
1598 error = __send_empty_flush(&ci);
1599 /* dec_pending submits any data associated with flush */
1600 } else {
1601 struct dm_target *ti = md->immutable_target;
1602 struct dm_target_io *tio;
1603
1604 /*
1605 * Defend against IO still getting in during teardown
1606 * - as was seen for a time with nvme-fcloop
1607 */
1608 if (unlikely(WARN_ON_ONCE(!ti || !dm_target_is_valid(ti)))) {
1609 error = -EIO;
1610 goto out;
1611 }
1612
1613 tio = alloc_tio(&ci, ti, 0, GFP_NOIO);
1614 ci.bio = bio;
1615 ci.sector_count = bio_sectors(bio);
1616 ret = __clone_and_map_simple_bio(&ci, tio, NULL);
1617 }
1618out:
1619 /* drop the extra reference count */
1620 dec_pending(ci.io, errno_to_blk_status(error));
1621 return ret;
1622}
1623
1624typedef blk_qc_t (process_bio_fn)(struct mapped_device *, struct dm_table *, struct bio *);
1625
1626static blk_qc_t __dm_make_request(struct request_queue *q, struct bio *bio,
1627 process_bio_fn process_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 struct mapped_device *md = q->queuedata;
Mike Snitzer978e51b2017-12-09 15:16:42 -05001630 blk_qc_t ret = BLK_QC_T_NONE;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001631 int srcu_idx;
1632 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001634 map = dm_get_live_table(md, &srcu_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635
Tejun Heo6a8736d2010-09-08 18:07:00 +02001636 /* if we're suspended, we have to queue this io for later */
1637 if (unlikely(test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags))) {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001638 dm_put_live_table(md, srcu_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639
Jens Axboe1eff9d32016-08-05 15:35:16 -06001640 if (!(bio->bi_opf & REQ_RAHEAD))
Tejun Heo6a8736d2010-09-08 18:07:00 +02001641 queue_io(md, bio);
1642 else
Alasdair G Kergon54d9a1b2009-04-09 00:27:14 +01001643 bio_io_error(bio);
Mike Snitzer978e51b2017-12-09 15:16:42 -05001644 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 }
1646
Mike Snitzer978e51b2017-12-09 15:16:42 -05001647 ret = process_bio(md, map, bio);
1648
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001649 dm_put_live_table(md, srcu_idx);
Mike Snitzer978e51b2017-12-09 15:16:42 -05001650 return ret;
1651}
1652
1653/*
1654 * The request function that remaps the bio to one target and
1655 * splits off any remainder.
1656 */
1657static blk_qc_t dm_make_request(struct request_queue *q, struct bio *bio)
1658{
1659 return __dm_make_request(q, bio, __split_and_process_bio);
1660}
1661
1662static blk_qc_t dm_make_request_nvme(struct request_queue *q, struct bio *bio)
1663{
1664 return __dm_make_request(q, bio, __process_bio);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001665}
1666
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667static int dm_any_congested(void *congested_data, int bdi_bits)
1668{
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00001669 int r = bdi_bits;
1670 struct mapped_device *md = congested_data;
1671 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01001673 if (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
Mike Snitzere522c032016-02-02 22:35:06 -05001674 if (dm_request_based(md)) {
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001675 /*
Mike Snitzere522c032016-02-02 22:35:06 -05001676 * With request-based DM we only need to check the
1677 * top-level queue for congestion.
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001678 */
Jan Karadc3b17c2017-02-02 15:56:50 +01001679 r = md->queue->backing_dev_info->wb.state & bdi_bits;
Mike Snitzere522c032016-02-02 22:35:06 -05001680 } else {
1681 map = dm_get_live_table_fast(md);
1682 if (map)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001683 r = dm_table_any_congested(map, bdi_bits);
Mike Snitzere522c032016-02-02 22:35:06 -05001684 dm_put_live_table_fast(md);
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00001685 }
1686 }
1687
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 return r;
1689}
1690
1691/*-----------------------------------------------------------------
1692 * An IDR is used to keep track of allocated minor numbers.
1693 *---------------------------------------------------------------*/
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001694static void free_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695{
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001696 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 idr_remove(&_minor_idr, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001698 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699}
1700
1701/*
1702 * See if the device with a specific minor # is free.
1703 */
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001704static int specific_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705{
Tejun Heoc9d76be2013-02-27 17:04:26 -08001706 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707
1708 if (minor >= (1 << MINORBITS))
1709 return -EINVAL;
1710
Tejun Heoc9d76be2013-02-27 17:04:26 -08001711 idr_preload(GFP_KERNEL);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001712 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713
Tejun Heoc9d76be2013-02-27 17:04:26 -08001714 r = idr_alloc(&_minor_idr, MINOR_ALLOCED, minor, minor + 1, GFP_NOWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001716 spin_unlock(&_minor_lock);
Tejun Heoc9d76be2013-02-27 17:04:26 -08001717 idr_preload_end();
1718 if (r < 0)
1719 return r == -ENOSPC ? -EBUSY : r;
1720 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721}
1722
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001723static int next_free_minor(int *minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724{
Tejun Heoc9d76be2013-02-27 17:04:26 -08001725 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726
Tejun Heoc9d76be2013-02-27 17:04:26 -08001727 idr_preload(GFP_KERNEL);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001728 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729
Tejun Heoc9d76be2013-02-27 17:04:26 -08001730 r = idr_alloc(&_minor_idr, MINOR_ALLOCED, 0, 1 << MINORBITS, GFP_NOWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001732 spin_unlock(&_minor_lock);
Tejun Heoc9d76be2013-02-27 17:04:26 -08001733 idr_preload_end();
1734 if (r < 0)
1735 return r;
1736 *minor = r;
1737 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738}
1739
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07001740static const struct block_device_operations dm_blk_dops;
Dan Williamsf26c5712017-04-12 12:35:44 -07001741static const struct dax_operations dm_dax_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742
Mikulas Patocka53d59142009-04-02 19:55:37 +01001743static void dm_wq_work(struct work_struct *work);
1744
Mike Snitzerc12c9a32018-01-12 09:32:21 -05001745static void dm_init_normal_md_queue(struct mapped_device *md)
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001746{
Mike Snitzer17e149b2015-03-11 15:01:09 -04001747 md->use_blk_mq = false;
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001748
1749 /*
1750 * Initialize aspects of queue that aren't relevant for blk-mq
1751 */
Jan Karadc3b17c2017-02-02 15:56:50 +01001752 md->queue->backing_dev_info->congested_fn = dm_any_congested;
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01001753}
1754
Mike Snitzer0f209722015-04-28 11:50:29 -04001755static void cleanup_mapped_device(struct mapped_device *md)
1756{
Mike Snitzer0f209722015-04-28 11:50:29 -04001757 if (md->wq)
1758 destroy_workqueue(md->wq);
1759 if (md->kworker_task)
1760 kthread_stop(md->kworker_task);
Mike Snitzer0f209722015-04-28 11:50:29 -04001761 if (md->bs)
1762 bioset_free(md->bs);
Mike Snitzer64f52b02017-12-11 23:17:47 -05001763 if (md->io_bs)
1764 bioset_free(md->io_bs);
Mike Snitzer0f209722015-04-28 11:50:29 -04001765
Dan Williamsf26c5712017-04-12 12:35:44 -07001766 if (md->dax_dev) {
1767 kill_dax(md->dax_dev);
1768 put_dax(md->dax_dev);
1769 md->dax_dev = NULL;
1770 }
1771
Mike Snitzer0f209722015-04-28 11:50:29 -04001772 if (md->disk) {
1773 spin_lock(&_minor_lock);
1774 md->disk->private_data = NULL;
1775 spin_unlock(&_minor_lock);
Mike Snitzer0f209722015-04-28 11:50:29 -04001776 del_gendisk(md->disk);
1777 put_disk(md->disk);
1778 }
1779
1780 if (md->queue)
1781 blk_cleanup_queue(md->queue);
1782
Tahsin Erdogand09960b2016-10-10 05:35:19 -07001783 cleanup_srcu_struct(&md->io_barrier);
1784
Mike Snitzer0f209722015-04-28 11:50:29 -04001785 if (md->bdev) {
1786 bdput(md->bdev);
1787 md->bdev = NULL;
1788 }
Mike Snitzer4cc96132016-05-12 16:28:10 -04001789
Mike Snitzerd5ffebd2018-01-05 21:17:20 -05001790 mutex_destroy(&md->suspend_lock);
1791 mutex_destroy(&md->type_lock);
1792 mutex_destroy(&md->table_devices_lock);
1793
Mike Snitzer4cc96132016-05-12 16:28:10 -04001794 dm_mq_cleanup_mapped_device(md);
Mike Snitzer0f209722015-04-28 11:50:29 -04001795}
1796
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797/*
1798 * Allocate and initialise a blank device with a given minor.
1799 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001800static struct mapped_device *alloc_dev(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801{
Mike Snitzer115485e2016-02-22 12:16:21 -05001802 int r, numa_node_id = dm_get_numa_node();
Dan Williamsf26c5712017-04-12 12:35:44 -07001803 struct dax_device *dax_dev;
Mike Snitzer115485e2016-02-22 12:16:21 -05001804 struct mapped_device *md;
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001805 void *old_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
Mikulas Patocka856eb092017-10-31 19:33:02 -04001807 md = kvzalloc_node(sizeof(*md), GFP_KERNEL, numa_node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 if (!md) {
1809 DMWARN("unable to allocate device, out of memory.");
1810 return NULL;
1811 }
1812
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001813 if (!try_module_get(THIS_MODULE))
Milan Broz6ed7ade2008-02-08 02:10:19 +00001814 goto bad_module_get;
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001815
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 /* get a minor number for the dev */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001817 if (minor == DM_ANY_MINOR)
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001818 r = next_free_minor(&minor);
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001819 else
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001820 r = specific_minor(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 if (r < 0)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001822 goto bad_minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001824 r = init_srcu_struct(&md->io_barrier);
1825 if (r < 0)
1826 goto bad_io_barrier;
1827
Mike Snitzer115485e2016-02-22 12:16:21 -05001828 md->numa_node_id = numa_node_id;
Mike Snitzer4cc96132016-05-12 16:28:10 -04001829 md->use_blk_mq = dm_use_blk_mq_default();
Mike Snitzer591ddcf2016-01-31 12:05:42 -05001830 md->init_tio_pdu = false;
Mike Snitzera5664da2010-08-12 04:14:01 +01001831 md->type = DM_TYPE_NONE;
Daniel Walkere61290a2008-02-08 02:10:08 +00001832 mutex_init(&md->suspend_lock);
Mike Snitzera5664da2010-08-12 04:14:01 +01001833 mutex_init(&md->type_lock);
Benjamin Marzinski86f11522014-08-13 13:53:43 -05001834 mutex_init(&md->table_devices_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01001835 spin_lock_init(&md->deferred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 atomic_set(&md->holders, 1);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -07001837 atomic_set(&md->open_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 atomic_set(&md->event_nr, 0);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001839 atomic_set(&md->uevent_seq, 0);
1840 INIT_LIST_HEAD(&md->uevent_list);
Benjamin Marzinski86f11522014-08-13 13:53:43 -05001841 INIT_LIST_HEAD(&md->table_devices);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001842 spin_lock_init(&md->uevent_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843
Mike Snitzer115485e2016-02-22 12:16:21 -05001844 md->queue = blk_alloc_queue_node(GFP_KERNEL, numa_node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 if (!md->queue)
Mike Snitzer0f209722015-04-28 11:50:29 -04001846 goto bad;
Mike Snitzerc12c9a32018-01-12 09:32:21 -05001847 md->queue->queuedata = md;
1848 md->queue->backing_dev_info->congested_data = md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
Mike Snitzerc12c9a32018-01-12 09:32:21 -05001850 md->disk = alloc_disk_node(1, md->numa_node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 if (!md->disk)
Mike Snitzer0f209722015-04-28 11:50:29 -04001852 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001854 atomic_set(&md->pending[0], 0);
1855 atomic_set(&md->pending[1], 0);
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07001856 init_waitqueue_head(&md->wait);
Mikulas Patocka53d59142009-04-02 19:55:37 +01001857 INIT_WORK(&md->work, dm_wq_work);
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07001858 init_waitqueue_head(&md->eventq);
Mikulas Patocka2995fa72014-01-13 19:37:54 -05001859 init_completion(&md->kobj_holder.completion);
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001860 md->kworker_task = NULL;
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07001861
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 md->disk->major = _major;
1863 md->disk->first_minor = minor;
1864 md->disk->fops = &dm_blk_dops;
1865 md->disk->queue = md->queue;
1866 md->disk->private_data = md;
1867 sprintf(md->disk->disk_name, "dm-%d", minor);
Dan Williamsf26c5712017-04-12 12:35:44 -07001868
1869 dax_dev = alloc_dax(md, md->disk->disk_name, &dm_dax_ops);
1870 if (!dax_dev)
1871 goto bad;
1872 md->dax_dev = dax_dev;
1873
Mike Snitzerc100ec42018-01-08 20:03:04 -05001874 add_disk_no_queue_reg(md->disk);
Mike Anderson7e51f252006-03-27 01:17:52 -08001875 format_dev_t(md->name, MKDEV(_major, minor));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876
Tejun Heo670368a2013-07-30 08:40:21 -04001877 md->wq = alloc_workqueue("kdmflush", WQ_MEM_RECLAIM, 0);
Milan Broz304f3f62008-02-08 02:11:17 +00001878 if (!md->wq)
Mike Snitzer0f209722015-04-28 11:50:29 -04001879 goto bad;
Milan Broz304f3f62008-02-08 02:11:17 +00001880
Mikulas Patocka32a926d2009-06-22 10:12:17 +01001881 md->bdev = bdget_disk(md->disk, 0);
1882 if (!md->bdev)
Mike Snitzer0f209722015-04-28 11:50:29 -04001883 goto bad;
Mikulas Patocka32a926d2009-06-22 10:12:17 +01001884
Ming Lei3a83f462016-11-22 08:57:21 -07001885 bio_init(&md->flush_bio, NULL, 0);
Christoph Hellwig74d46992017-08-23 19:10:32 +02001886 bio_set_dev(&md->flush_bio, md->bdev);
Jan Karaff0361b2017-05-31 09:44:32 +02001887 md->flush_bio.bi_opf = REQ_OP_WRITE | REQ_PREFLUSH | REQ_SYNC;
Tejun Heo6a8736d2010-09-08 18:07:00 +02001888
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04001889 dm_stats_init(&md->stats);
1890
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001891 /* Populate the mapping, nobody knows we exist yet */
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001892 spin_lock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001893 old_md = idr_replace(&_minor_idr, md, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001894 spin_unlock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001895
1896 BUG_ON(old_md != MINOR_ALLOCED);
1897
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 return md;
1899
Mike Snitzer0f209722015-04-28 11:50:29 -04001900bad:
1901 cleanup_mapped_device(md);
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001902bad_io_barrier:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 free_minor(minor);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001904bad_minor:
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001905 module_put(THIS_MODULE);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001906bad_module_get:
Mikulas Patocka856eb092017-10-31 19:33:02 -04001907 kvfree(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 return NULL;
1909}
1910
Jun'ichi Nomuraae9da832007-10-19 22:38:43 +01001911static void unlock_fs(struct mapped_device *md);
1912
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913static void free_dev(struct mapped_device *md)
1914{
Tejun Heof331c022008-09-03 09:01:48 +02001915 int minor = MINOR(disk_devt(md->disk));
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08001916
Mikulas Patocka32a926d2009-06-22 10:12:17 +01001917 unlock_fs(md);
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001918
Mike Snitzer0f209722015-04-28 11:50:29 -04001919 cleanup_mapped_device(md);
Mike Snitzer0f209722015-04-28 11:50:29 -04001920
1921 free_table_devices(&md->table_devices);
1922 dm_stats_cleanup(&md->stats);
Mike Snitzer63a4f062015-03-23 17:01:43 -04001923 free_minor(minor);
1924
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001925 module_put(THIS_MODULE);
Mikulas Patocka856eb092017-10-31 19:33:02 -04001926 kvfree(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927}
1928
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001929static void __bind_mempools(struct mapped_device *md, struct dm_table *t)
1930{
Mikulas Patockac0820cf2012-12-21 20:23:38 +00001931 struct dm_md_mempools *p = dm_table_get_md_mempools(t);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001932
Mike Snitzer0776aa02017-12-08 14:40:52 -05001933 if (dm_table_bio_based(t)) {
Mike Snitzer64f52b02017-12-11 23:17:47 -05001934 /*
1935 * The md may already have mempools that need changing.
1936 * If so, reload bioset because front_pad may have changed
1937 * because a different table was loaded.
1938 */
Mike Snitzer0776aa02017-12-08 14:40:52 -05001939 if (md->bs) {
Jun'ichi Nomura16245bd2013-03-01 22:45:44 +00001940 bioset_free(md->bs);
Mike Snitzer0776aa02017-12-08 14:40:52 -05001941 md->bs = NULL;
Jun'ichi Nomura16245bd2013-03-01 22:45:44 +00001942 }
Mike Snitzer64f52b02017-12-11 23:17:47 -05001943 if (md->io_bs) {
1944 bioset_free(md->io_bs);
1945 md->io_bs = NULL;
1946 }
Mike Snitzer0776aa02017-12-08 14:40:52 -05001947
1948 } else if (md->bs) {
Mike Snitzer4e6e36c2015-06-26 09:42:57 -04001949 /*
1950 * There's no need to reload with request-based dm
1951 * because the size of front_pad doesn't change.
1952 * Note for future: If you are to reload bioset,
1953 * prep-ed requests in the queue may refer
1954 * to bio from the old bioset, so you must walk
1955 * through the queue to unprep.
1956 */
1957 goto out;
Mikulas Patockac0820cf2012-12-21 20:23:38 +00001958 }
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001959
Mike Snitzerdde1e1e2017-12-11 23:28:13 -05001960 BUG_ON(!p || md->bs || md->io_bs);
Mike Snitzercbc4e3c2015-04-27 16:37:50 -04001961
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001962 md->bs = p->bs;
1963 p->bs = NULL;
Mike Snitzer64f52b02017-12-11 23:17:47 -05001964 md->io_bs = p->io_bs;
1965 p->io_bs = NULL;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001966out:
Mike Snitzer02233342015-03-10 23:49:26 -04001967 /* mempool bind completed, no longer need any mempools in the table */
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001968 dm_table_free_md_mempools(t);
1969}
1970
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971/*
1972 * Bind a table to the device.
1973 */
1974static void event_callback(void *context)
1975{
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001976 unsigned long flags;
1977 LIST_HEAD(uevents);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 struct mapped_device *md = (struct mapped_device *) context;
1979
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001980 spin_lock_irqsave(&md->uevent_lock, flags);
1981 list_splice_init(&md->uevent_list, &uevents);
1982 spin_unlock_irqrestore(&md->uevent_lock, flags);
1983
Tejun Heoed9e1982008-08-25 19:56:05 +09001984 dm_send_uevents(&uevents, &disk_to_dev(md->disk)->kobj);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001985
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 atomic_inc(&md->event_nr);
1987 wake_up(&md->eventq);
Mikulas Patocka62e08242017-09-20 07:29:49 -04001988 dm_issue_global_event();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989}
1990
Mike Snitzerc2176492011-01-13 19:53:46 +00001991/*
1992 * Protected by md->suspend_lock obtained by dm_swap_table().
1993 */
Alasdair G Kergon4e90188be2005-07-28 21:15:59 -07001994static void __set_size(struct mapped_device *md, sector_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995{
Bart Van Assche1ea06542017-04-27 10:11:21 -07001996 lockdep_assert_held(&md->suspend_lock);
1997
Alasdair G Kergon4e90188be2005-07-28 21:15:59 -07001998 set_capacity(md->disk, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002000 i_size_write(md->bdev->bd_inode, (loff_t)size << SECTOR_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001}
2002
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002003/*
2004 * Returns old map, which caller must destroy.
2005 */
2006static struct dm_table *__bind(struct mapped_device *md, struct dm_table *t,
2007 struct queue_limits *limits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008{
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002009 struct dm_table *old_map;
Jens Axboe165125e2007-07-24 09:28:11 +02002010 struct request_queue *q = md->queue;
Mike Snitzer978e51b2017-12-09 15:16:42 -05002011 bool request_based = dm_table_request_based(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 sector_t size;
2013
Bart Van Assche5a8f1f82016-08-31 15:17:04 -07002014 lockdep_assert_held(&md->suspend_lock);
2015
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 size = dm_table_get_size(t);
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08002017
2018 /*
2019 * Wipe any geometry if the size of the table changed.
2020 */
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002021 if (size != dm_get_size(md))
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08002022 memset(&md->geometry, 0, sizeof(md->geometry));
2023
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002024 __set_size(md, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002026 dm_table_event_callback(t, event_callback, md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002027
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002028 /*
2029 * The queue hasn't been stopped yet, if the old table type wasn't
2030 * for request-based during suspension. So stop it to prevent
2031 * I/O mapping before resume.
2032 * This must be done before setting the queue restrictions,
2033 * because request-based dm may be run just after the setting.
2034 */
Mike Snitzer978e51b2017-12-09 15:16:42 -05002035 if (request_based)
Mike Snitzereca7ee62016-02-20 13:45:38 -05002036 dm_stop_queue(q);
Mike Snitzer978e51b2017-12-09 15:16:42 -05002037
2038 if (request_based || md->type == DM_TYPE_NVME_BIO_BASED) {
Mike Snitzer16f12262016-01-31 17:22:27 -05002039 /*
Mike Snitzer978e51b2017-12-09 15:16:42 -05002040 * Leverage the fact that request-based DM targets and
2041 * NVMe bio based targets are immutable singletons
2042 * - used to optimize both dm_request_fn and dm_mq_queue_rq;
2043 * and __process_bio.
Mike Snitzer16f12262016-01-31 17:22:27 -05002044 */
2045 md->immutable_target = dm_table_get_immutable_target(t);
2046 }
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002047
2048 __bind_mempools(md, t);
2049
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002050 old_map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mike Snitzer1d3aa6f2016-02-22 14:14:24 -05002051 rcu_assign_pointer(md->map, (void *)t);
Alasdair G Kergon36a04562011-10-31 20:19:04 +00002052 md->immutable_target_type = dm_table_get_immutable_target_type(t);
2053
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002054 dm_table_set_restrictions(t, q, limits);
Hannes Reinecke41abc4e2014-11-05 14:35:50 +01002055 if (old_map)
2056 dm_sync_table(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002057
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002058 return old_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059}
2060
Alasdair G Kergona7940152009-12-10 23:52:23 +00002061/*
2062 * Returns unbound table for the caller to free.
2063 */
2064static struct dm_table *__unbind(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065{
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002066 struct dm_table *map = rcu_dereference_protected(md->map, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067
2068 if (!map)
Alasdair G Kergona7940152009-12-10 23:52:23 +00002069 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070
2071 dm_table_event_callback(map, NULL, NULL);
Monam Agarwal9cdb8522014-03-23 23:58:27 +05302072 RCU_INIT_POINTER(md->map, NULL);
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002073 dm_sync_table(md);
Alasdair G Kergona7940152009-12-10 23:52:23 +00002074
2075 return map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076}
2077
2078/*
2079 * Constructor for a new device.
2080 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002081int dm_create(int minor, struct mapped_device **result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082{
Mike Snitzerc12c9a32018-01-12 09:32:21 -05002083 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 struct mapped_device *md;
2085
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002086 md = alloc_dev(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 if (!md)
2088 return -ENXIO;
2089
Mike Snitzerc12c9a32018-01-12 09:32:21 -05002090 r = dm_sysfs_init(md);
2091 if (r) {
2092 free_dev(md);
2093 return r;
2094 }
Milan Broz784aae72009-01-06 03:05:12 +00002095
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 *result = md;
2097 return 0;
2098}
2099
Mike Snitzera5664da2010-08-12 04:14:01 +01002100/*
2101 * Functions to manage md->type.
2102 * All are required to hold md->type_lock.
2103 */
2104void dm_lock_md_type(struct mapped_device *md)
2105{
2106 mutex_lock(&md->type_lock);
2107}
2108
2109void dm_unlock_md_type(struct mapped_device *md)
2110{
2111 mutex_unlock(&md->type_lock);
2112}
2113
Bart Van Assche7e0d5742017-04-27 10:11:23 -07002114void dm_set_md_type(struct mapped_device *md, enum dm_queue_mode type)
Mike Snitzera5664da2010-08-12 04:14:01 +01002115{
Mike Snitzer00c4fc32013-08-27 18:57:03 -04002116 BUG_ON(!mutex_is_locked(&md->type_lock));
Mike Snitzera5664da2010-08-12 04:14:01 +01002117 md->type = type;
2118}
2119
Bart Van Assche7e0d5742017-04-27 10:11:23 -07002120enum dm_queue_mode dm_get_md_type(struct mapped_device *md)
Mike Snitzera5664da2010-08-12 04:14:01 +01002121{
2122 return md->type;
2123}
2124
Alasdair G Kergon36a04562011-10-31 20:19:04 +00002125struct target_type *dm_get_immutable_target_type(struct mapped_device *md)
2126{
2127 return md->immutable_target_type;
2128}
2129
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002130/*
Mike Snitzerf84cb8a2013-09-19 12:13:58 -04002131 * The queue_limits are only valid as long as you have a reference
2132 * count on 'md'.
2133 */
2134struct queue_limits *dm_get_queue_limits(struct mapped_device *md)
2135{
2136 BUG_ON(!atomic_read(&md->holders));
2137 return &md->queue->limits;
2138}
2139EXPORT_SYMBOL_GPL(dm_get_queue_limits);
2140
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002141/*
2142 * Setup the DM device's queue based on md's type
2143 */
Mike Snitzer591ddcf2016-01-31 12:05:42 -05002144int dm_setup_md_queue(struct mapped_device *md, struct dm_table *t)
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002145{
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002146 int r;
Mike Snitzerc100ec42018-01-08 20:03:04 -05002147 struct queue_limits limits;
Bart Van Assche7e0d5742017-04-27 10:11:23 -07002148 enum dm_queue_mode type = dm_get_md_type(md);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002149
Toshi Kani545ed202016-06-22 17:54:53 -06002150 switch (type) {
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002151 case DM_TYPE_REQUEST_BASED:
Mike Snitzerc12c9a32018-01-12 09:32:21 -05002152 dm_init_normal_md_queue(md);
Christoph Hellwigeb8db832017-01-22 18:32:46 +01002153 r = dm_old_init_request_queue(md, t);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002154 if (r) {
Mike Snitzereca7ee62016-02-20 13:45:38 -05002155 DMERR("Cannot initialize queue for request-based mapped device");
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002156 return r;
Mike Snitzerff36ab32015-02-23 17:56:37 -05002157 }
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002158 break;
2159 case DM_TYPE_MQ_REQUEST_BASED:
Mike Snitzere83068a2016-05-24 21:16:51 -04002160 r = dm_mq_init_request_queue(md, t);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002161 if (r) {
Mike Snitzereca7ee62016-02-20 13:45:38 -05002162 DMERR("Cannot initialize queue for request-based dm-mq mapped device");
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002163 return r;
2164 }
2165 break;
2166 case DM_TYPE_BIO_BASED:
Toshi Kani545ed202016-06-22 17:54:53 -06002167 case DM_TYPE_DAX_BIO_BASED:
Mike Snitzereca7ee62016-02-20 13:45:38 -05002168 dm_init_normal_md_queue(md);
Mike Snitzerff36ab32015-02-23 17:56:37 -05002169 blk_queue_make_request(md->queue, dm_make_request);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002170 break;
Mike Snitzer978e51b2017-12-09 15:16:42 -05002171 case DM_TYPE_NVME_BIO_BASED:
2172 dm_init_normal_md_queue(md);
2173 blk_queue_make_request(md->queue, dm_make_request_nvme);
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002174 break;
Bart Van Assche7e0d5742017-04-27 10:11:23 -07002175 case DM_TYPE_NONE:
2176 WARN_ON_ONCE(true);
2177 break;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002178 }
Tejun Heof331c022008-09-03 09:01:48 +02002179
Mike Snitzerc100ec42018-01-08 20:03:04 -05002180 r = dm_calculate_queue_limits(t, &limits);
2181 if (r) {
2182 DMERR("Cannot calculate initial queue limits");
2183 return r;
2184 }
2185 dm_table_set_restrictions(t, md->queue, &limits);
2186 blk_register_queue(md->disk);
2187
Alasdair G Kergon17b2f662006-06-26 00:27:33 -07002188 return 0;
David Teigland637842c2006-01-06 00:20:00 -08002189}
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002190
2191struct mapped_device *dm_get_md(dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192{
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002193 struct mapped_device *md;
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002194 unsigned minor = MINOR(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195
David Teigland637842c2006-01-06 00:20:00 -08002196 if (MAJOR(dev) != _major || minor >= (1 << MINORBITS))
2197 return NULL;
2198
David Teiglandd229a952006-01-06 00:20:01 -08002199 spin_lock(&_minor_lock);
2200
2201 md = idr_find(&_minor_idr, minor);
Mike Snitzer49de5762017-11-06 16:40:10 -05002202 if (!md || md == MINOR_ALLOCED || (MINOR(disk_devt(dm_disk(md))) != minor) ||
2203 test_bit(DMF_FREEING, &md->flags) || dm_deleting_md(md)) {
2204 md = NULL;
2205 goto out;
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08002206 }
Mike Snitzer49de5762017-11-06 16:40:10 -05002207 dm_get(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208out:
2209 spin_unlock(&_minor_lock);
2210
2211 return md;
Alasdair G Kergon72d94862006-06-26 00:27:35 -07002212}
2213EXPORT_SYMBOL_GPL(dm_get_md);
2214
2215void *dm_get_mdptr(struct mapped_device *md)
2216{
2217 return md->interface_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218}
2219
Mike Anderson1134e5a2006-03-27 01:17:54 -08002220void dm_set_mdptr(struct mapped_device *md, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221{
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002222 md->interface_ptr = ptr;
2223}
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002224
Mike Anderson1134e5a2006-03-27 01:17:54 -08002225void dm_get(struct mapped_device *md)
Tejun Heof331c022008-09-03 09:01:48 +02002226{
2227 atomic_inc(&md->holders);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002228 BUG_ON(test_bit(DMF_FREEING, &md->flags));
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002229}
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002230
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231int dm_hold(struct mapped_device *md)
2232{
2233 spin_lock(&_minor_lock);
Milan Broz784aae72009-01-06 03:05:12 +00002234 if (test_bit(DMF_FREEING, &md->flags)) {
Mike Anderson1134e5a2006-03-27 01:17:54 -08002235 spin_unlock(&_minor_lock);
Mikulas Patockaa1b51e92009-01-06 03:04:53 +00002236 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 }
2238 dm_get(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 spin_unlock(&_minor_lock);
Edward Goggin79eb8852007-05-09 02:32:56 -07002240 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241}
Mikulas Patocka401600d2009-04-02 19:55:38 +01002242EXPORT_SYMBOL_GPL(dm_hold);
Milan Broz46125c12008-02-08 02:10:30 +00002243
2244const char *dm_device_name(struct mapped_device *md)
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002245{
2246 return md->name;
2247}
2248EXPORT_SYMBOL_GPL(dm_device_name);
2249
Milan Broz46125c12008-02-08 02:10:30 +00002250static void __dm_destroy(struct mapped_device *md, bool wait)
2251{
Mikulas Patocka401600d2009-04-02 19:55:38 +01002252 struct dm_table *map;
Milan Broz46125c12008-02-08 02:10:30 +00002253 int srcu_idx;
2254
2255 might_sleep();
2256
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 spin_lock(&_minor_lock);
2258 idr_replace(&_minor_idr, MINOR_ALLOCED, MINOR(disk_devt(dm_disk(md))));
2259 set_bit(DMF_FREEING, &md->flags);
2260 spin_unlock(&_minor_lock);
2261
Mike Snitzerc12c9a32018-01-12 09:32:21 -05002262 blk_set_queue_dying(md->queue);
Bart Van Assche3b785fb2016-08-31 15:17:49 -07002263
Mike Snitzer02233342015-03-10 23:49:26 -04002264 if (dm_request_based(md) && md->kworker_task)
Petr Mladek39891442016-10-11 13:55:20 -07002265 kthread_flush_worker(&md->kworker);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266
2267 /*
2268 * Take suspend_lock so that presuspend and postsuspend methods
2269 * do not race with internal suspend.
2270 */
2271 mutex_lock(&md->suspend_lock);
Junichi Nomura2a708cf2015-10-01 08:31:51 +00002272 map = dm_get_live_table(md, &srcu_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 if (!dm_suspended_md(md)) {
2274 dm_table_presuspend_targets(map);
2275 dm_table_postsuspend_targets(map);
2276 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 /* dm_put_live_table must be before msleep, otherwise deadlock is possible */
2278 dm_put_live_table(md, srcu_idx);
Junichi Nomura2a708cf2015-10-01 08:31:51 +00002279 mutex_unlock(&md->suspend_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280
2281 /*
2282 * Rare, but there may be I/O requests still going to complete,
2283 * for example. Wait for all references to disappear.
2284 * No one should increment the reference count of the mapped_device,
2285 * after the mapped_device state becomes DMF_FREEING.
2286 */
2287 if (wait)
2288 while (atomic_read(&md->holders))
2289 msleep(1);
2290 else if (atomic_read(&md->holders))
2291 DMWARN("%s: Forcibly removing mapped_device still in use! (%d users)",
2292 dm_device_name(md), atomic_read(&md->holders));
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07002293
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 dm_sysfs_exit(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002295 dm_table_destroy(__unbind(md));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 free_dev(md);
2297}
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002298
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07002299void dm_destroy(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300{
2301 __dm_destroy(md, true);
Milan Broz46125c12008-02-08 02:10:30 +00002302}
2303
2304void dm_destroy_immediate(struct mapped_device *md)
2305{
2306 __dm_destroy(md, false);
2307}
2308
2309void dm_put(struct mapped_device *md)
2310{
2311 atomic_dec(&md->holders);
2312}
2313EXPORT_SYMBOL_GPL(dm_put);
Mikulas Patocka401600d2009-04-02 19:55:38 +01002314
Bart Van Asscheb48633f2016-08-31 15:16:02 -07002315static int dm_wait_for_completion(struct mapped_device *md, long task_state)
Milan Broz46125c12008-02-08 02:10:30 +00002316{
2317 int r = 0;
Bart Van Assche9f4c3f82016-08-31 15:16:43 -07002318 DEFINE_WAIT(wait);
Milan Broz46125c12008-02-08 02:10:30 +00002319
2320 while (1) {
Bart Van Assche9f4c3f82016-08-31 15:16:43 -07002321 prepare_to_wait(&md->wait, &wait, task_state);
Milan Broz46125c12008-02-08 02:10:30 +00002322
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002323 if (!md_in_flight(md))
2324 break;
Milan Broz46125c12008-02-08 02:10:30 +00002325
Bart Van Asschee3fabdf2016-08-31 15:16:22 -07002326 if (signal_pending_state(task_state, current)) {
Milan Broz46125c12008-02-08 02:10:30 +00002327 r = -EINTR;
2328 break;
2329 }
2330
2331 io_schedule();
2332 }
Bart Van Assche9f4c3f82016-08-31 15:16:43 -07002333 finish_wait(&md->wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334
2335 return r;
2336}
2337
Mikulas Patockaef208582009-04-02 19:55:38 +01002338/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 * Process the deferred bios
Mikulas Patockaef208582009-04-02 19:55:38 +01002340 */
2341static void dm_wq_work(struct work_struct *work)
Milan Broz6d6f10d2008-02-08 02:10:22 +00002342{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 struct mapped_device *md = container_of(work, struct mapped_device,
Mikulas Patockaef208582009-04-02 19:55:38 +01002344 work);
2345 struct bio *c;
Mikulas Patocka022c2612009-04-02 19:55:39 +01002346 int srcu_idx;
2347 struct dm_table *map;
2348
2349 map = dm_get_live_table(md, &srcu_idx);
2350
2351 while (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002352 spin_lock_irq(&md->deferred_lock);
2353 c = bio_list_pop(&md->deferred);
Mikulas Patockaaf7e4662009-04-09 00:27:16 +01002354 spin_unlock_irq(&md->deferred_lock);
2355
2356 if (!c)
2357 break;
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002358
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002359 if (dm_request_based(md))
2360 generic_make_request(c);
Tejun Heo6a8736d2010-09-08 18:07:00 +02002361 else
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002362 __split_and_process_bio(md, map, c);
Mikulas Patocka022c2612009-04-02 19:55:39 +01002363 }
Milan Broz73d410c2008-02-08 02:10:25 +00002364
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002365 dm_put_live_table(md, srcu_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366}
2367
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002368static void dm_queue_flush(struct mapped_device *md)
Milan Broz304f3f62008-02-08 02:11:17 +00002369{
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002370 clear_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01002371 smp_mb__after_atomic();
Mikulas Patocka53d59142009-04-02 19:55:37 +01002372 queue_work(md->wq, &md->work);
Milan Broz304f3f62008-02-08 02:11:17 +00002373}
2374
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375/*
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002376 * Swap in a new table, returning the old one for the caller to destroy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 */
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002378struct dm_table *dm_swap_table(struct mapped_device *md, struct dm_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379{
Mike Christie87eb5b22013-03-01 22:45:48 +00002380 struct dm_table *live_map = NULL, *map = ERR_PTR(-EINVAL);
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002381 struct queue_limits limits;
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002382 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383
Daniel Walkere61290a2008-02-08 02:10:08 +00002384 mutex_lock(&md->suspend_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385
2386 /* device must be suspended */
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +00002387 if (!dm_suspended_md(md))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 goto out;
2389
Mike Snitzer3ae70652012-09-26 23:45:45 +01002390 /*
2391 * If the new table has no data devices, retain the existing limits.
2392 * This helps multipath with queue_if_no_path if all paths disappear,
2393 * then new I/O is queued based on these limits, and then some paths
2394 * reappear.
2395 */
2396 if (dm_table_has_no_data_devices(table)) {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002397 live_map = dm_get_live_table_fast(md);
Mike Snitzer3ae70652012-09-26 23:45:45 +01002398 if (live_map)
2399 limits = md->queue->limits;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002400 dm_put_live_table_fast(md);
Mike Snitzer3ae70652012-09-26 23:45:45 +01002401 }
2402
Mike Christie87eb5b22013-03-01 22:45:48 +00002403 if (!live_map) {
2404 r = dm_calculate_queue_limits(table, &limits);
2405 if (r) {
2406 map = ERR_PTR(r);
2407 goto out;
2408 }
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002409 }
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002410
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002411 map = __bind(md, table, &limits);
Mikulas Patocka62e08242017-09-20 07:29:49 -04002412 dm_issue_global_event();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07002414out:
Daniel Walkere61290a2008-02-08 02:10:08 +00002415 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002416 return map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417}
2418
2419/*
2420 * Functions to lock and unlock any filesystem running on the
2421 * device.
2422 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002423static int lock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424{
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08002425 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426
2427 WARN_ON(md->frozen_sb);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002428
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002429 md->frozen_sb = freeze_bdev(md->bdev);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002430 if (IS_ERR(md->frozen_sb)) {
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002431 r = PTR_ERR(md->frozen_sb);
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08002432 md->frozen_sb = NULL;
2433 return r;
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002434 }
2435
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002436 set_bit(DMF_FROZEN, &md->flags);
2437
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 return 0;
2439}
2440
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002441static void unlock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442{
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002443 if (!test_bit(DMF_FROZEN, &md->flags))
2444 return;
2445
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002446 thaw_bdev(md->bdev, md->frozen_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 md->frozen_sb = NULL;
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002448 clear_bit(DMF_FROZEN, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449}
2450
2451/*
Bart Van Asscheb48633f2016-08-31 15:16:02 -07002452 * @suspend_flags: DM_SUSPEND_LOCKFS_FLAG and/or DM_SUSPEND_NOFLUSH_FLAG
2453 * @task_state: e.g. TASK_INTERRUPTIBLE or TASK_UNINTERRUPTIBLE
2454 * @dmf_suspended_flag: DMF_SUSPENDED or DMF_SUSPENDED_INTERNALLY
2455 *
Mike Snitzerffcc3932014-10-28 18:34:52 -04002456 * If __dm_suspend returns 0, the device is completely quiescent
2457 * now. There is no request-processing activity. All new requests
2458 * are being added to md->deferred list.
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002459 */
Mike Snitzerffcc3932014-10-28 18:34:52 -04002460static int __dm_suspend(struct mapped_device *md, struct dm_table *map,
Bart Van Asscheb48633f2016-08-31 15:16:02 -07002461 unsigned suspend_flags, long task_state,
Mike Snitzereaf9a732016-08-02 13:07:20 -04002462 int dmf_suspended_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463{
Mike Snitzerffcc3932014-10-28 18:34:52 -04002464 bool do_lockfs = suspend_flags & DM_SUSPEND_LOCKFS_FLAG;
2465 bool noflush = suspend_flags & DM_SUSPEND_NOFLUSH_FLAG;
2466 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467
Bart Van Assche5a8f1f82016-08-31 15:17:04 -07002468 lockdep_assert_held(&md->suspend_lock);
2469
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002470 /*
2471 * DMF_NOFLUSH_SUSPENDING must be set before presuspend.
2472 * This flag is cleared before dm_suspend returns.
2473 */
2474 if (noflush)
2475 set_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
Bart Van Assche86331f32017-04-27 10:11:26 -07002476 else
2477 pr_debug("%s: suspending with flush\n", dm_device_name(md));
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002478
Mike Snitzerd67ee212014-10-28 20:13:31 -04002479 /*
2480 * This gets reverted if there's an error later and the targets
2481 * provide the .presuspend_undo hook.
2482 */
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002483 dm_table_presuspend_targets(map);
2484
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002485 /*
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002486 * Flush I/O to the device.
2487 * Any I/O submitted after lock_fs() may not be flushed.
2488 * noflush takes precedence over do_lockfs.
2489 * (lock_fs() flushes I/Os and waits for them to complete.)
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002490 */
2491 if (!noflush && do_lockfs) {
2492 r = lock_fs(md);
Mike Snitzerd67ee212014-10-28 20:13:31 -04002493 if (r) {
2494 dm_table_presuspend_undo_targets(map);
Mike Snitzerffcc3932014-10-28 18:34:52 -04002495 return r;
Mike Snitzerd67ee212014-10-28 20:13:31 -04002496 }
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002497 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498
2499 /*
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002500 * Here we must make sure that no processes are submitting requests
2501 * to target drivers i.e. no one may be executing
2502 * __split_and_process_bio. This is called from dm_request and
2503 * dm_wq_work.
2504 *
2505 * To get all processes out of __split_and_process_bio in dm_request,
2506 * we take the write lock. To prevent any process from reentering
Tejun Heo6a8736d2010-09-08 18:07:00 +02002507 * __split_and_process_bio from dm_request and quiesce the thread
2508 * (dm_wq_work), we set BMF_BLOCK_IO_FOR_SUSPEND and call
2509 * flush_workqueue(md->wq).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 */
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01002511 set_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
Hannes Reinecke41abc4e2014-11-05 14:35:50 +01002512 if (map)
2513 synchronize_srcu(&md->io_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002515 /*
Tejun Heo29e40132010-09-08 18:07:00 +02002516 * Stop md->queue before flushing md->wq in case request-based
2517 * dm defers requests to md->wq from md->queue.
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002518 */
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002519 if (dm_request_based(md)) {
Mike Snitzereca7ee62016-02-20 13:45:38 -05002520 dm_stop_queue(md->queue);
Mike Snitzer02233342015-03-10 23:49:26 -04002521 if (md->kworker_task)
Petr Mladek39891442016-10-11 13:55:20 -07002522 kthread_flush_worker(&md->kworker);
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002523 }
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002524
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002525 flush_workqueue(md->wq);
2526
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 /*
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002528 * At this point no more requests are entering target request routines.
2529 * We call dm_wait_for_completion to wait for all existing requests
2530 * to finish.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 */
Bart Van Asscheb48633f2016-08-31 15:16:02 -07002532 r = dm_wait_for_completion(md, task_state);
Mike Snitzereaf9a732016-08-02 13:07:20 -04002533 if (!r)
2534 set_bit(dmf_suspended_flag, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535
Milan Broz6d6f10d2008-02-08 02:10:22 +00002536 if (noflush)
Mikulas Patocka022c2612009-04-02 19:55:39 +01002537 clear_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
Hannes Reinecke41abc4e2014-11-05 14:35:50 +01002538 if (map)
2539 synchronize_srcu(&md->io_barrier);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002540
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 /* were we interrupted ? */
Milan Broz46125c12008-02-08 02:10:30 +00002542 if (r < 0) {
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002543 dm_queue_flush(md);
Milan Broz73d410c2008-02-08 02:10:25 +00002544
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002545 if (dm_request_based(md))
Mike Snitzereca7ee62016-02-20 13:45:38 -05002546 dm_start_queue(md->queue);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002547
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002548 unlock_fs(md);
Mike Snitzerd67ee212014-10-28 20:13:31 -04002549 dm_table_presuspend_undo_targets(map);
Mike Snitzerffcc3932014-10-28 18:34:52 -04002550 /* pushback list is already flushed, so skip flush */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002551 }
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002552
Mike Snitzerffcc3932014-10-28 18:34:52 -04002553 return r;
2554}
2555
2556/*
2557 * We need to be able to change a mapping table under a mounted
2558 * filesystem. For example we might want to move some data in
2559 * the background. Before the table can be swapped with
2560 * dm_bind_table, dm_suspend must be called to flush any in
2561 * flight bios and ensure that any further io gets deferred.
2562 */
2563/*
2564 * Suspend mechanism in request-based dm.
2565 *
2566 * 1. Flush all I/Os by lock_fs() if needed.
2567 * 2. Stop dispatching any I/O by stopping the request_queue.
2568 * 3. Wait for all in-flight I/Os to be completed or requeued.
2569 *
2570 * To abort suspend, start the request_queue.
2571 */
2572int dm_suspend(struct mapped_device *md, unsigned suspend_flags)
2573{
2574 struct dm_table *map = NULL;
2575 int r = 0;
2576
2577retry:
2578 mutex_lock_nested(&md->suspend_lock, SINGLE_DEPTH_NESTING);
2579
2580 if (dm_suspended_md(md)) {
2581 r = -EINVAL;
2582 goto out_unlock;
2583 }
2584
2585 if (dm_suspended_internally_md(md)) {
2586 /* already internally suspended, wait for internal resume */
2587 mutex_unlock(&md->suspend_lock);
2588 r = wait_on_bit(&md->flags, DMF_SUSPENDED_INTERNALLY, TASK_INTERRUPTIBLE);
2589 if (r)
2590 return r;
2591 goto retry;
2592 }
2593
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002594 map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mike Snitzerffcc3932014-10-28 18:34:52 -04002595
Mike Snitzereaf9a732016-08-02 13:07:20 -04002596 r = __dm_suspend(md, map, suspend_flags, TASK_INTERRUPTIBLE, DMF_SUSPENDED);
Mike Snitzerffcc3932014-10-28 18:34:52 -04002597 if (r)
2598 goto out_unlock;
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002599
Kiyoshi Ueda4d4471c2009-12-10 23:52:26 +00002600 dm_table_postsuspend_targets(map);
2601
Alasdair G Kergond2874832006-11-08 17:44:43 -08002602out_unlock:
Daniel Walkere61290a2008-02-08 02:10:08 +00002603 mutex_unlock(&md->suspend_lock);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002604 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605}
2606
Mike Snitzerffcc3932014-10-28 18:34:52 -04002607static int __dm_resume(struct mapped_device *md, struct dm_table *map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608{
Mike Snitzerffcc3932014-10-28 18:34:52 -04002609 if (map) {
2610 int r = dm_table_resume_targets(map);
2611 if (r)
2612 return r;
2613 }
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002614
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002615 dm_queue_flush(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002616
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002617 /*
2618 * Flushing deferred I/Os must be done after targets are resumed
2619 * so that mapping of targets can work correctly.
2620 * Request-based dm is queueing the deferred I/Os in its request_queue.
2621 */
2622 if (dm_request_based(md))
Mike Snitzereca7ee62016-02-20 13:45:38 -05002623 dm_start_queue(md->queue);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002624
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002625 unlock_fs(md);
2626
Mike Snitzerffcc3932014-10-28 18:34:52 -04002627 return 0;
2628}
2629
2630int dm_resume(struct mapped_device *md)
2631{
Minfei Huang8dc23652016-09-06 16:00:29 +08002632 int r;
Mike Snitzerffcc3932014-10-28 18:34:52 -04002633 struct dm_table *map = NULL;
2634
2635retry:
Minfei Huang8dc23652016-09-06 16:00:29 +08002636 r = -EINVAL;
Mike Snitzerffcc3932014-10-28 18:34:52 -04002637 mutex_lock_nested(&md->suspend_lock, SINGLE_DEPTH_NESTING);
2638
2639 if (!dm_suspended_md(md))
2640 goto out;
2641
2642 if (dm_suspended_internally_md(md)) {
2643 /* already internally suspended, wait for internal resume */
2644 mutex_unlock(&md->suspend_lock);
2645 r = wait_on_bit(&md->flags, DMF_SUSPENDED_INTERNALLY, TASK_INTERRUPTIBLE);
2646 if (r)
2647 return r;
2648 goto retry;
2649 }
2650
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002651 map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mike Snitzerffcc3932014-10-28 18:34:52 -04002652 if (!map || !dm_table_get_size(map))
2653 goto out;
2654
2655 r = __dm_resume(md, map);
2656 if (r)
2657 goto out;
2658
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002659 clear_bit(DMF_SUSPENDED, &md->flags);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002660out:
Daniel Walkere61290a2008-02-08 02:10:08 +00002661 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002662
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002663 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664}
2665
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002666/*
2667 * Internal suspend/resume works like userspace-driven suspend. It waits
2668 * until all bios finish and prevents issuing new bios to the target drivers.
2669 * It may be used only from the kernel.
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002670 */
2671
Mike Snitzerffcc3932014-10-28 18:34:52 -04002672static void __dm_internal_suspend(struct mapped_device *md, unsigned suspend_flags)
2673{
2674 struct dm_table *map = NULL;
2675
Bart Van Assche1ea06542017-04-27 10:11:21 -07002676 lockdep_assert_held(&md->suspend_lock);
2677
Mikulas Patocka96b26c82015-01-08 18:52:26 -05002678 if (md->internal_suspend_count++)
Mike Snitzerffcc3932014-10-28 18:34:52 -04002679 return; /* nested internal suspend */
2680
2681 if (dm_suspended_md(md)) {
2682 set_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
2683 return; /* nest suspend */
2684 }
2685
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002686 map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mike Snitzerffcc3932014-10-28 18:34:52 -04002687
2688 /*
2689 * Using TASK_UNINTERRUPTIBLE because only NOFLUSH internal suspend is
2690 * supported. Properly supporting a TASK_INTERRUPTIBLE internal suspend
2691 * would require changing .presuspend to return an error -- avoid this
2692 * until there is a need for more elaborate variants of internal suspend.
2693 */
Mike Snitzereaf9a732016-08-02 13:07:20 -04002694 (void) __dm_suspend(md, map, suspend_flags, TASK_UNINTERRUPTIBLE,
2695 DMF_SUSPENDED_INTERNALLY);
Mike Snitzerffcc3932014-10-28 18:34:52 -04002696
2697 dm_table_postsuspend_targets(map);
2698}
2699
2700static void __dm_internal_resume(struct mapped_device *md)
2701{
Mikulas Patocka96b26c82015-01-08 18:52:26 -05002702 BUG_ON(!md->internal_suspend_count);
2703
2704 if (--md->internal_suspend_count)
Mike Snitzerffcc3932014-10-28 18:34:52 -04002705 return; /* resume from nested internal suspend */
2706
2707 if (dm_suspended_md(md))
2708 goto done; /* resume from nested suspend */
2709
2710 /*
2711 * NOTE: existing callers don't need to call dm_table_resume_targets
2712 * (which may fail -- so best to avoid it for now by passing NULL map)
2713 */
2714 (void) __dm_resume(md, NULL);
2715
2716done:
2717 clear_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
2718 smp_mb__after_atomic();
2719 wake_up_bit(&md->flags, DMF_SUSPENDED_INTERNALLY);
2720}
2721
2722void dm_internal_suspend_noflush(struct mapped_device *md)
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002723{
2724 mutex_lock(&md->suspend_lock);
Mike Snitzerffcc3932014-10-28 18:34:52 -04002725 __dm_internal_suspend(md, DM_SUSPEND_NOFLUSH_FLAG);
2726 mutex_unlock(&md->suspend_lock);
2727}
2728EXPORT_SYMBOL_GPL(dm_internal_suspend_noflush);
2729
2730void dm_internal_resume(struct mapped_device *md)
2731{
2732 mutex_lock(&md->suspend_lock);
2733 __dm_internal_resume(md);
2734 mutex_unlock(&md->suspend_lock);
2735}
2736EXPORT_SYMBOL_GPL(dm_internal_resume);
2737
2738/*
2739 * Fast variants of internal suspend/resume hold md->suspend_lock,
2740 * which prevents interaction with userspace-driven suspend.
2741 */
2742
2743void dm_internal_suspend_fast(struct mapped_device *md)
2744{
2745 mutex_lock(&md->suspend_lock);
2746 if (dm_suspended_md(md) || dm_suspended_internally_md(md))
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002747 return;
2748
2749 set_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
2750 synchronize_srcu(&md->io_barrier);
2751 flush_workqueue(md->wq);
2752 dm_wait_for_completion(md, TASK_UNINTERRUPTIBLE);
2753}
Mikulas Patockab735fed2015-02-26 11:40:35 -05002754EXPORT_SYMBOL_GPL(dm_internal_suspend_fast);
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002755
Mike Snitzerffcc3932014-10-28 18:34:52 -04002756void dm_internal_resume_fast(struct mapped_device *md)
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002757{
Mike Snitzerffcc3932014-10-28 18:34:52 -04002758 if (dm_suspended_md(md) || dm_suspended_internally_md(md))
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002759 goto done;
2760
2761 dm_queue_flush(md);
2762
2763done:
2764 mutex_unlock(&md->suspend_lock);
2765}
Mikulas Patockab735fed2015-02-26 11:40:35 -05002766EXPORT_SYMBOL_GPL(dm_internal_resume_fast);
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002767
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768/*-----------------------------------------------------------------
2769 * Event notification.
2770 *---------------------------------------------------------------*/
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00002771int dm_kobject_uevent(struct mapped_device *md, enum kobject_action action,
Milan Broz60935eb2009-06-22 10:12:30 +01002772 unsigned cookie)
Alasdair G Kergon69267a32007-12-13 14:15:57 +00002773{
Milan Broz60935eb2009-06-22 10:12:30 +01002774 char udev_cookie[DM_COOKIE_LENGTH];
2775 char *envp[] = { udev_cookie, NULL };
2776
2777 if (!cookie)
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00002778 return kobject_uevent(&disk_to_dev(md->disk)->kobj, action);
Milan Broz60935eb2009-06-22 10:12:30 +01002779 else {
2780 snprintf(udev_cookie, DM_COOKIE_LENGTH, "%s=%u",
2781 DM_COOKIE_ENV_VAR_NAME, cookie);
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00002782 return kobject_uevent_env(&disk_to_dev(md->disk)->kobj,
2783 action, envp);
Milan Broz60935eb2009-06-22 10:12:30 +01002784 }
Alasdair G Kergon69267a32007-12-13 14:15:57 +00002785}
2786
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002787uint32_t dm_next_uevent_seq(struct mapped_device *md)
2788{
2789 return atomic_add_return(1, &md->uevent_seq);
2790}
2791
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792uint32_t dm_get_event_nr(struct mapped_device *md)
2793{
2794 return atomic_read(&md->event_nr);
2795}
2796
2797int dm_wait_event(struct mapped_device *md, int event_nr)
2798{
2799 return wait_event_interruptible(md->eventq,
2800 (event_nr != atomic_read(&md->event_nr)));
2801}
2802
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002803void dm_uevent_add(struct mapped_device *md, struct list_head *elist)
2804{
2805 unsigned long flags;
2806
2807 spin_lock_irqsave(&md->uevent_lock, flags);
2808 list_add(elist, &md->uevent_list);
2809 spin_unlock_irqrestore(&md->uevent_lock, flags);
2810}
2811
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812/*
2813 * The gendisk is only valid as long as you have a reference
2814 * count on 'md'.
2815 */
2816struct gendisk *dm_disk(struct mapped_device *md)
2817{
2818 return md->disk;
2819}
Sami Tolvanen65ff5b72015-03-18 15:52:14 +00002820EXPORT_SYMBOL_GPL(dm_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821
Milan Broz784aae72009-01-06 03:05:12 +00002822struct kobject *dm_kobject(struct mapped_device *md)
2823{
Mikulas Patocka2995fa72014-01-13 19:37:54 -05002824 return &md->kobj_holder.kobj;
Milan Broz784aae72009-01-06 03:05:12 +00002825}
2826
Milan Broz784aae72009-01-06 03:05:12 +00002827struct mapped_device *dm_get_from_kobject(struct kobject *kobj)
2828{
2829 struct mapped_device *md;
2830
Mikulas Patocka2995fa72014-01-13 19:37:54 -05002831 md = container_of(kobj, struct mapped_device, kobj_holder.kobj);
Milan Broz784aae72009-01-06 03:05:12 +00002832
Hou Taob9a41d22017-11-01 15:42:36 +08002833 spin_lock(&_minor_lock);
2834 if (test_bit(DMF_FREEING, &md->flags) || dm_deleting_md(md)) {
2835 md = NULL;
2836 goto out;
2837 }
Milan Broz784aae72009-01-06 03:05:12 +00002838 dm_get(md);
Hou Taob9a41d22017-11-01 15:42:36 +08002839out:
2840 spin_unlock(&_minor_lock);
2841
Milan Broz784aae72009-01-06 03:05:12 +00002842 return md;
2843}
2844
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +00002845int dm_suspended_md(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846{
2847 return test_bit(DMF_SUSPENDED, &md->flags);
2848}
2849
Mike Snitzerffcc3932014-10-28 18:34:52 -04002850int dm_suspended_internally_md(struct mapped_device *md)
2851{
2852 return test_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
2853}
2854
Mikulas Patocka2c140a22013-11-01 18:27:41 -04002855int dm_test_deferred_remove_flag(struct mapped_device *md)
2856{
2857 return test_bit(DMF_DEFERRED_REMOVE, &md->flags);
2858}
2859
Kiyoshi Ueda64dbce52009-12-10 23:52:27 +00002860int dm_suspended(struct dm_target *ti)
2861{
Kiyoshi Uedaecdb2e22010-03-06 02:29:52 +00002862 return dm_suspended_md(dm_table_get_md(ti->table));
Kiyoshi Ueda64dbce52009-12-10 23:52:27 +00002863}
2864EXPORT_SYMBOL_GPL(dm_suspended);
2865
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002866int dm_noflush_suspending(struct dm_target *ti)
2867{
Kiyoshi Uedaecdb2e22010-03-06 02:29:52 +00002868 return __noflush_suspending(dm_table_get_md(ti->table));
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002869}
2870EXPORT_SYMBOL_GPL(dm_noflush_suspending);
2871
Bart Van Assche7e0d5742017-04-27 10:11:23 -07002872struct dm_md_mempools *dm_alloc_md_mempools(struct mapped_device *md, enum dm_queue_mode type,
Mike Snitzer0776aa02017-12-08 14:40:52 -05002873 unsigned integrity, unsigned per_io_data_size,
2874 unsigned min_pool_size)
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002875{
Mike Snitzer115485e2016-02-22 12:16:21 -05002876 struct dm_md_mempools *pools = kzalloc_node(sizeof(*pools), GFP_KERNEL, md->numa_node_id);
Mike Snitzer78d8e582015-06-26 10:01:13 -04002877 unsigned int pool_size = 0;
Mike Snitzer64f52b02017-12-11 23:17:47 -05002878 unsigned int front_pad, io_front_pad;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002879
2880 if (!pools)
Mike Snitzer4e6e36c2015-06-26 09:42:57 -04002881 return NULL;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002882
Mike Snitzer78d8e582015-06-26 10:01:13 -04002883 switch (type) {
2884 case DM_TYPE_BIO_BASED:
Toshi Kani545ed202016-06-22 17:54:53 -06002885 case DM_TYPE_DAX_BIO_BASED:
Mike Snitzer22c11852017-12-04 21:07:37 -05002886 case DM_TYPE_NVME_BIO_BASED:
Mike Snitzer0776aa02017-12-08 14:40:52 -05002887 pool_size = max(dm_get_reserved_bio_based_ios(), min_pool_size);
Mike Snitzer30187e12016-01-31 13:28:26 -05002888 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 -05002889 io_front_pad = roundup(front_pad, __alignof__(struct dm_io)) + offsetof(struct dm_io, tio);
2890 pools->io_bs = bioset_create(pool_size, io_front_pad, 0);
2891 if (!pools->io_bs)
2892 goto out;
2893 if (integrity && bioset_integrity_create(pools->io_bs, pool_size))
Christoph Hellwigeb8db832017-01-22 18:32:46 +01002894 goto out;
Mike Snitzer78d8e582015-06-26 10:01:13 -04002895 break;
2896 case DM_TYPE_REQUEST_BASED:
Mike Snitzer78d8e582015-06-26 10:01:13 -04002897 case DM_TYPE_MQ_REQUEST_BASED:
Mike Snitzer0776aa02017-12-08 14:40:52 -05002898 pool_size = max(dm_get_reserved_rq_based_ios(), min_pool_size);
Mike Snitzer78d8e582015-06-26 10:01:13 -04002899 front_pad = offsetof(struct dm_rq_clone_bio_info, clone);
Mike Snitzer591ddcf2016-01-31 12:05:42 -05002900 /* per_io_data_size is used for blk-mq pdu at queue allocation */
Mike Snitzer78d8e582015-06-26 10:01:13 -04002901 break;
2902 default:
2903 BUG();
2904 }
2905
Mike Snitzer4a3f54d2017-11-22 15:37:43 -05002906 pools->bs = bioset_create(pool_size, front_pad, 0);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002907 if (!pools->bs)
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00002908 goto out;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002909
Martin K. Petersena91a2782011-03-17 11:11:05 +01002910 if (integrity && bioset_integrity_create(pools->bs, pool_size))
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00002911 goto out;
Martin K. Petersena91a2782011-03-17 11:11:05 +01002912
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002913 return pools;
Mike Snitzer78d8e582015-06-26 10:01:13 -04002914
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00002915out:
2916 dm_free_md_mempools(pools);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002917
Mike Snitzer4e6e36c2015-06-26 09:42:57 -04002918 return NULL;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002919}
2920
2921void dm_free_md_mempools(struct dm_md_mempools *pools)
2922{
2923 if (!pools)
2924 return;
2925
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002926 if (pools->bs)
2927 bioset_free(pools->bs);
Mike Snitzer64f52b02017-12-11 23:17:47 -05002928 if (pools->io_bs)
2929 bioset_free(pools->io_bs);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002930
2931 kfree(pools);
2932}
2933
Christoph Hellwig9c72bad2016-07-08 21:23:51 +09002934struct dm_pr {
2935 u64 old_key;
2936 u64 new_key;
2937 u32 flags;
2938 bool fail_early;
2939};
2940
2941static int dm_call_pr(struct block_device *bdev, iterate_devices_callout_fn fn,
2942 void *data)
2943{
2944 struct mapped_device *md = bdev->bd_disk->private_data;
2945 struct dm_table *table;
2946 struct dm_target *ti;
2947 int ret = -ENOTTY, srcu_idx;
2948
2949 table = dm_get_live_table(md, &srcu_idx);
2950 if (!table || !dm_table_get_size(table))
2951 goto out;
2952
2953 /* We only support devices that have a single target */
2954 if (dm_table_get_num_targets(table) != 1)
2955 goto out;
2956 ti = dm_table_get_target(table, 0);
2957
2958 ret = -EINVAL;
2959 if (!ti->type->iterate_devices)
2960 goto out;
2961
2962 ret = ti->type->iterate_devices(ti, fn, data);
2963out:
2964 dm_put_live_table(md, srcu_idx);
2965 return ret;
2966}
2967
2968/*
2969 * For register / unregister we need to manually call out to every path.
2970 */
2971static int __dm_pr_register(struct dm_target *ti, struct dm_dev *dev,
2972 sector_t start, sector_t len, void *data)
2973{
2974 struct dm_pr *pr = data;
2975 const struct pr_ops *ops = dev->bdev->bd_disk->fops->pr_ops;
2976
2977 if (!ops || !ops->pr_register)
2978 return -EOPNOTSUPP;
2979 return ops->pr_register(dev->bdev, pr->old_key, pr->new_key, pr->flags);
2980}
2981
Christoph Hellwig71cdb692015-10-15 14:10:51 +02002982static int dm_pr_register(struct block_device *bdev, u64 old_key, u64 new_key,
Mike Snitzer956a4022016-02-18 16:13:51 -05002983 u32 flags)
Christoph Hellwig71cdb692015-10-15 14:10:51 +02002984{
Christoph Hellwig9c72bad2016-07-08 21:23:51 +09002985 struct dm_pr pr = {
2986 .old_key = old_key,
2987 .new_key = new_key,
2988 .flags = flags,
2989 .fail_early = true,
2990 };
2991 int ret;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02002992
Christoph Hellwig9c72bad2016-07-08 21:23:51 +09002993 ret = dm_call_pr(bdev, __dm_pr_register, &pr);
2994 if (ret && new_key) {
2995 /* unregister all paths if we failed to register any path */
2996 pr.old_key = new_key;
2997 pr.new_key = 0;
2998 pr.flags = 0;
2999 pr.fail_early = false;
3000 dm_call_pr(bdev, __dm_pr_register, &pr);
3001 }
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003002
Christoph Hellwig9c72bad2016-07-08 21:23:51 +09003003 return ret;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003004}
3005
3006static int dm_pr_reserve(struct block_device *bdev, u64 key, enum pr_type type,
Mike Snitzer956a4022016-02-18 16:13:51 -05003007 u32 flags)
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003008{
3009 struct mapped_device *md = bdev->bd_disk->private_data;
3010 const struct pr_ops *ops;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003011 fmode_t mode;
Mike Snitzer956a4022016-02-18 16:13:51 -05003012 int r;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003013
Mike Snitzer956a4022016-02-18 16:13:51 -05003014 r = dm_grab_bdev_for_ioctl(md, &bdev, &mode);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003015 if (r < 0)
3016 return r;
3017
3018 ops = bdev->bd_disk->fops->pr_ops;
3019 if (ops && ops->pr_reserve)
3020 r = ops->pr_reserve(bdev, key, type, flags);
3021 else
3022 r = -EOPNOTSUPP;
3023
Mike Snitzer956a4022016-02-18 16:13:51 -05003024 bdput(bdev);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003025 return r;
3026}
3027
3028static int dm_pr_release(struct block_device *bdev, u64 key, enum pr_type type)
3029{
3030 struct mapped_device *md = bdev->bd_disk->private_data;
3031 const struct pr_ops *ops;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003032 fmode_t mode;
Mike Snitzer956a4022016-02-18 16:13:51 -05003033 int r;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003034
Mike Snitzer956a4022016-02-18 16:13:51 -05003035 r = dm_grab_bdev_for_ioctl(md, &bdev, &mode);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003036 if (r < 0)
3037 return r;
3038
3039 ops = bdev->bd_disk->fops->pr_ops;
3040 if (ops && ops->pr_release)
3041 r = ops->pr_release(bdev, key, type);
3042 else
3043 r = -EOPNOTSUPP;
3044
Mike Snitzer956a4022016-02-18 16:13:51 -05003045 bdput(bdev);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003046 return r;
3047}
3048
3049static int dm_pr_preempt(struct block_device *bdev, u64 old_key, u64 new_key,
Mike Snitzer956a4022016-02-18 16:13:51 -05003050 enum pr_type type, bool abort)
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003051{
3052 struct mapped_device *md = bdev->bd_disk->private_data;
3053 const struct pr_ops *ops;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003054 fmode_t mode;
Mike Snitzer956a4022016-02-18 16:13:51 -05003055 int r;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003056
Mike Snitzer956a4022016-02-18 16:13:51 -05003057 r = dm_grab_bdev_for_ioctl(md, &bdev, &mode);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003058 if (r < 0)
3059 return r;
3060
3061 ops = bdev->bd_disk->fops->pr_ops;
3062 if (ops && ops->pr_preempt)
3063 r = ops->pr_preempt(bdev, old_key, new_key, type, abort);
3064 else
3065 r = -EOPNOTSUPP;
3066
Mike Snitzer956a4022016-02-18 16:13:51 -05003067 bdput(bdev);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003068 return r;
3069}
3070
3071static int dm_pr_clear(struct block_device *bdev, u64 key)
3072{
3073 struct mapped_device *md = bdev->bd_disk->private_data;
3074 const struct pr_ops *ops;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003075 fmode_t mode;
Mike Snitzer956a4022016-02-18 16:13:51 -05003076 int r;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003077
Mike Snitzer956a4022016-02-18 16:13:51 -05003078 r = dm_grab_bdev_for_ioctl(md, &bdev, &mode);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003079 if (r < 0)
3080 return r;
3081
3082 ops = bdev->bd_disk->fops->pr_ops;
3083 if (ops && ops->pr_clear)
3084 r = ops->pr_clear(bdev, key);
3085 else
3086 r = -EOPNOTSUPP;
3087
Mike Snitzer956a4022016-02-18 16:13:51 -05003088 bdput(bdev);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003089 return r;
3090}
3091
3092static const struct pr_ops dm_pr_ops = {
3093 .pr_register = dm_pr_register,
3094 .pr_reserve = dm_pr_reserve,
3095 .pr_release = dm_pr_release,
3096 .pr_preempt = dm_pr_preempt,
3097 .pr_clear = dm_pr_clear,
3098};
3099
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07003100static const struct block_device_operations dm_blk_dops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101 .open = dm_blk_open,
3102 .release = dm_blk_close,
Milan Brozaa129a22006-10-03 01:15:15 -07003103 .ioctl = dm_blk_ioctl,
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08003104 .getgeo = dm_blk_getgeo,
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003105 .pr_ops = &dm_pr_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106 .owner = THIS_MODULE
3107};
3108
Dan Williamsf26c5712017-04-12 12:35:44 -07003109static const struct dax_operations dm_dax_ops = {
3110 .direct_access = dm_dax_direct_access,
Dan Williams7e026c82017-05-29 12:57:56 -07003111 .copy_from_iter = dm_dax_copy_from_iter,
Dan Williamsf26c5712017-04-12 12:35:44 -07003112};
3113
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114/*
3115 * module hooks
3116 */
3117module_init(dm_init);
3118module_exit(dm_exit);
3119
3120module_param(major, uint, 0);
3121MODULE_PARM_DESC(major, "The major number of the device mapper");
Mike Snitzerf4790822013-09-12 18:06:12 -04003122
Mike Snitzere8603132013-09-12 18:06:12 -04003123module_param(reserved_bio_based_ios, uint, S_IRUGO | S_IWUSR);
3124MODULE_PARM_DESC(reserved_bio_based_ios, "Reserved IOs in bio-based mempools");
3125
Mike Snitzer115485e2016-02-22 12:16:21 -05003126module_param(dm_numa_node, int, S_IRUGO | S_IWUSR);
3127MODULE_PARM_DESC(dm_numa_node, "NUMA node for DM device memory allocations");
3128
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129MODULE_DESCRIPTION(DM_NAME " driver");
3130MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
3131MODULE_LICENSE("GPL");