blob: a1bd7a6ff5226ff9a4116fcf541bc98b2aea9745 [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
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100535static struct dm_io *alloc_io(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536{
Mike Snitzer64f52b02017-12-11 23:17:47 -0500537 struct dm_io *io;
538 struct dm_target_io *tio;
539 struct bio *clone;
540
541 clone = bio_alloc_bioset(GFP_NOIO, 0, md->io_bs);
542 if (!clone)
543 return NULL;
544
545 tio = container_of(clone, struct dm_target_io, clone);
546 tio->inside_dm_io = true;
547 tio->io = NULL;
548
549 io = container_of(tio, struct dm_io, tio);
550 io->magic = DM_IO_MAGIC;
551
552 return io;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553}
554
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100555static void free_io(struct mapped_device *md, struct dm_io *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556{
Mike Snitzer64f52b02017-12-11 23:17:47 -0500557 bio_put(&io->tio.clone);
558}
559
560static struct dm_target_io *alloc_tio(struct clone_info *ci, struct dm_target *ti,
561 unsigned target_bio_nr, gfp_t gfp_mask)
562{
563 struct dm_target_io *tio;
564
565 if (!ci->io->tio.io) {
566 /* the dm_target_io embedded in ci->io is available */
567 tio = &ci->io->tio;
568 } else {
Mike Snitzerbc02cdb2017-12-14 16:30:42 -0500569 struct bio *clone = bio_alloc_bioset(gfp_mask, 0, ci->io->md->bs);
Mike Snitzer64f52b02017-12-11 23:17:47 -0500570 if (!clone)
571 return NULL;
572
573 tio = container_of(clone, struct dm_target_io, clone);
574 tio->inside_dm_io = false;
575 }
576
577 tio->magic = DM_TIO_MAGIC;
578 tio->io = ci->io;
579 tio->ti = ti;
580 tio->target_bio_nr = target_bio_nr;
581
582 return tio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583}
584
Mike Snitzercfae7522016-04-11 12:05:38 -0400585static void free_tio(struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586{
Mike Snitzer64f52b02017-12-11 23:17:47 -0500587 if (tio->inside_dm_io)
588 return;
Mikulas Patockadba14162012-10-12 21:02:15 +0100589 bio_put(&tio->clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590}
591
Mike Snitzer4cc96132016-05-12 16:28:10 -0400592int md_in_flight(struct mapped_device *md)
Kiyoshi Ueda90abb8c2009-12-10 23:52:13 +0000593{
594 return atomic_read(&md->pending[READ]) +
595 atomic_read(&md->pending[WRITE]);
596}
597
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800598static void start_io_acct(struct dm_io *io)
599{
600 struct mapped_device *md = io->md;
Mike Snitzer745dc572017-12-11 20:51:50 -0500601 struct bio *bio = io->orig_bio;
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400602 int rw = bio_data_dir(bio);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800603
604 io->start_time = jiffies;
605
Mike Snitzerf3986372017-12-17 11:56:48 -0500606 generic_start_io_acct(md->queue, rw, bio_sectors(bio), &dm_disk(md)->part0);
607
Shaohua Li1e9bb882011-03-22 08:35:35 +0100608 atomic_set(&dm_disk(md)->part0.in_flight[rw],
Mike Snitzerf3986372017-12-17 11:56:48 -0500609 atomic_inc_return(&md->pending[rw]));
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400610
611 if (unlikely(dm_stats_used(&md->stats)))
Mike Christie528ec5a2016-06-05 14:32:03 -0500612 dm_stats_account_io(&md->stats, bio_data_dir(bio),
613 bio->bi_iter.bi_sector, bio_sectors(bio),
614 false, 0, &io->stats_aux);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800615}
616
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000617static void end_io_acct(struct dm_io *io)
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800618{
619 struct mapped_device *md = io->md;
Mike Snitzer745dc572017-12-11 20:51:50 -0500620 struct bio *bio = io->orig_bio;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800621 unsigned long duration = jiffies - io->start_time;
Gu Zheng18c0b222014-11-24 11:05:26 +0800622 int pending;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800623 int rw = bio_data_dir(bio);
624
Jens Axboed62e26b2017-06-30 21:55:08 -0600625 generic_end_io_acct(md->queue, rw, &dm_disk(md)->part0, io->start_time);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800626
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400627 if (unlikely(dm_stats_used(&md->stats)))
Mike Christie528ec5a2016-06-05 14:32:03 -0500628 dm_stats_account_io(&md->stats, bio_data_dir(bio),
629 bio->bi_iter.bi_sector, bio_sectors(bio),
630 true, duration, &io->stats_aux);
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400631
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100632 /*
633 * After this is decremented the bio must not be touched if it is
Tejun Heod87f4c12010-09-03 11:56:19 +0200634 * a flush.
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100635 */
Shaohua Li1e9bb882011-03-22 08:35:35 +0100636 pending = atomic_dec_return(&md->pending[rw]);
637 atomic_set(&dm_disk(md)->part0.in_flight[rw], pending);
Nikanth Karthikesan316d3152009-10-06 20:16:55 +0200638 pending += atomic_read(&md->pending[rw^0x1]);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800639
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000640 /* nudge anyone waiting on suspend queue */
641 if (!pending)
642 wake_up(&md->wait);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800643}
644
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645/*
646 * Add the bio to the list of deferred io.
647 */
Mikulas Patocka92c63902009-04-09 00:27:15 +0100648static void queue_io(struct mapped_device *md, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649{
Kiyoshi Ueda054474202010-09-08 18:07:01 +0200650 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Kiyoshi Ueda054474202010-09-08 18:07:01 +0200652 spin_lock_irqsave(&md->deferred_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 bio_list_add(&md->deferred, bio);
Kiyoshi Ueda054474202010-09-08 18:07:01 +0200654 spin_unlock_irqrestore(&md->deferred_lock, flags);
Tejun Heo6a8736d2010-09-08 18:07:00 +0200655 queue_work(md->wq, &md->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656}
657
658/*
659 * Everyone (including functions in this file), should use this
660 * function to access the md->map field, and make sure they call
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100661 * dm_put_live_table() when finished.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 */
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100663struct dm_table *dm_get_live_table(struct mapped_device *md, int *srcu_idx) __acquires(md->io_barrier)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664{
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100665 *srcu_idx = srcu_read_lock(&md->io_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100667 return srcu_dereference(md->map, &md->io_barrier);
668}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100670void dm_put_live_table(struct mapped_device *md, int srcu_idx) __releases(md->io_barrier)
671{
672 srcu_read_unlock(&md->io_barrier, srcu_idx);
673}
674
675void dm_sync_table(struct mapped_device *md)
676{
677 synchronize_srcu(&md->io_barrier);
678 synchronize_rcu_expedited();
679}
680
681/*
682 * A fast alternative to dm_get_live_table/dm_put_live_table.
683 * The caller must not block between these two functions.
684 */
685static struct dm_table *dm_get_live_table_fast(struct mapped_device *md) __acquires(RCU)
686{
687 rcu_read_lock();
688 return rcu_dereference(md->map);
689}
690
691static void dm_put_live_table_fast(struct mapped_device *md) __releases(RCU)
692{
693 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694}
695
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800696/*
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500697 * Open a table device so we can use it as a map destination.
698 */
699static int open_table_device(struct table_device *td, dev_t dev,
700 struct mapped_device *md)
701{
702 static char *_claim_ptr = "I belong to device-mapper";
703 struct block_device *bdev;
704
705 int r;
706
707 BUG_ON(td->dm_dev.bdev);
708
709 bdev = blkdev_get_by_dev(dev, td->dm_dev.mode | FMODE_EXCL, _claim_ptr);
710 if (IS_ERR(bdev))
711 return PTR_ERR(bdev);
712
713 r = bd_link_disk_holder(bdev, dm_disk(md));
714 if (r) {
715 blkdev_put(bdev, td->dm_dev.mode | FMODE_EXCL);
716 return r;
717 }
718
719 td->dm_dev.bdev = bdev;
Dan Williams817bf402017-04-12 13:37:44 -0700720 td->dm_dev.dax_dev = dax_get_by_host(bdev->bd_disk->disk_name);
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500721 return 0;
722}
723
724/*
725 * Close a table device that we've been using.
726 */
727static void close_table_device(struct table_device *td, struct mapped_device *md)
728{
729 if (!td->dm_dev.bdev)
730 return;
731
732 bd_unlink_disk_holder(td->dm_dev.bdev, dm_disk(md));
733 blkdev_put(td->dm_dev.bdev, td->dm_dev.mode | FMODE_EXCL);
Dan Williams817bf402017-04-12 13:37:44 -0700734 put_dax(td->dm_dev.dax_dev);
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500735 td->dm_dev.bdev = NULL;
Dan Williams817bf402017-04-12 13:37:44 -0700736 td->dm_dev.dax_dev = NULL;
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500737}
738
739static struct table_device *find_table_device(struct list_head *l, dev_t dev,
740 fmode_t mode) {
741 struct table_device *td;
742
743 list_for_each_entry(td, l, list)
744 if (td->dm_dev.bdev->bd_dev == dev && td->dm_dev.mode == mode)
745 return td;
746
747 return NULL;
748}
749
750int dm_get_table_device(struct mapped_device *md, dev_t dev, fmode_t mode,
751 struct dm_dev **result) {
752 int r;
753 struct table_device *td;
754
755 mutex_lock(&md->table_devices_lock);
756 td = find_table_device(&md->table_devices, dev, mode);
757 if (!td) {
Mike Snitzer115485e2016-02-22 12:16:21 -0500758 td = kmalloc_node(sizeof(*td), GFP_KERNEL, md->numa_node_id);
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500759 if (!td) {
760 mutex_unlock(&md->table_devices_lock);
761 return -ENOMEM;
762 }
763
764 td->dm_dev.mode = mode;
765 td->dm_dev.bdev = NULL;
766
767 if ((r = open_table_device(td, dev, md))) {
768 mutex_unlock(&md->table_devices_lock);
769 kfree(td);
770 return r;
771 }
772
773 format_dev_t(td->dm_dev.name, dev);
774
Elena Reshetovab0b4d7c2017-10-20 10:37:39 +0300775 refcount_set(&td->count, 1);
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500776 list_add(&td->list, &md->table_devices);
Elena Reshetovab0b4d7c2017-10-20 10:37:39 +0300777 } else {
778 refcount_inc(&td->count);
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500779 }
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500780 mutex_unlock(&md->table_devices_lock);
781
782 *result = &td->dm_dev;
783 return 0;
784}
785EXPORT_SYMBOL_GPL(dm_get_table_device);
786
787void dm_put_table_device(struct mapped_device *md, struct dm_dev *d)
788{
789 struct table_device *td = container_of(d, struct table_device, dm_dev);
790
791 mutex_lock(&md->table_devices_lock);
Elena Reshetovab0b4d7c2017-10-20 10:37:39 +0300792 if (refcount_dec_and_test(&td->count)) {
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500793 close_table_device(td, md);
794 list_del(&td->list);
795 kfree(td);
796 }
797 mutex_unlock(&md->table_devices_lock);
798}
799EXPORT_SYMBOL(dm_put_table_device);
800
801static void free_table_devices(struct list_head *devices)
802{
803 struct list_head *tmp, *next;
804
805 list_for_each_safe(tmp, next, devices) {
806 struct table_device *td = list_entry(tmp, struct table_device, list);
807
808 DMWARN("dm_destroy: %s still exists with %d references",
Elena Reshetovab0b4d7c2017-10-20 10:37:39 +0300809 td->dm_dev.name, refcount_read(&td->count));
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500810 kfree(td);
811 }
812}
813
814/*
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800815 * Get the geometry associated with a dm device
816 */
817int dm_get_geometry(struct mapped_device *md, struct hd_geometry *geo)
818{
819 *geo = md->geometry;
820
821 return 0;
822}
823
824/*
825 * Set the geometry of a device.
826 */
827int dm_set_geometry(struct mapped_device *md, struct hd_geometry *geo)
828{
829 sector_t sz = (sector_t)geo->cylinders * geo->heads * geo->sectors;
830
831 if (geo->start > sz) {
832 DMWARN("Start sector is beyond the geometry limits.");
833 return -EINVAL;
834 }
835
836 md->geometry = *geo;
837
838 return 0;
839}
840
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800841static int __noflush_suspending(struct mapped_device *md)
842{
843 return test_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
844}
845
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846/*
847 * Decrements the number of outstanding ios that a bio has been
848 * cloned into, completing the original io if necc.
849 */
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200850static void dec_pending(struct dm_io *io, blk_status_t error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851{
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800852 unsigned long flags;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200853 blk_status_t io_error;
Milan Brozb35f8ca2009-03-16 17:44:36 +0000854 struct bio *bio;
855 struct mapped_device *md = io->md;
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800856
857 /* Push-back supersedes any I/O errors */
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +0100858 if (unlikely(error)) {
859 spin_lock_irqsave(&io->endio_lock, flags);
Mike Snitzer745dc572017-12-11 20:51:50 -0500860 if (!(io->status == BLK_STS_DM_REQUEUE && __noflush_suspending(md)))
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200861 io->status = error;
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +0100862 spin_unlock_irqrestore(&io->endio_lock, flags);
863 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
865 if (atomic_dec_and_test(&io->io_count)) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200866 if (io->status == BLK_STS_DM_REQUEUE) {
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800867 /*
868 * Target requested pushing back the I/O.
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800869 */
Mikulas Patocka022c2612009-04-02 19:55:39 +0100870 spin_lock_irqsave(&md->deferred_lock, flags);
Tejun Heo6a8736d2010-09-08 18:07:00 +0200871 if (__noflush_suspending(md))
Mike Snitzer745dc572017-12-11 20:51:50 -0500872 /* NOTE early return due to BLK_STS_DM_REQUEUE below */
873 bio_list_add_head(&md->deferred, io->orig_bio);
Tejun Heo6a8736d2010-09-08 18:07:00 +0200874 else
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800875 /* noflush suspend was interrupted. */
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200876 io->status = BLK_STS_IOERR;
Mikulas Patocka022c2612009-04-02 19:55:39 +0100877 spin_unlock_irqrestore(&md->deferred_lock, flags);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800878 }
879
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200880 io_error = io->status;
Mike Snitzer745dc572017-12-11 20:51:50 -0500881 bio = io->orig_bio;
Tejun Heo6a8736d2010-09-08 18:07:00 +0200882 end_io_acct(io);
883 free_io(md, io);
Jens Axboe2056a782006-03-23 20:00:26 +0100884
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200885 if (io_error == BLK_STS_DM_REQUEUE)
Tejun Heo6a8736d2010-09-08 18:07:00 +0200886 return;
887
Jens Axboe1eff9d32016-08-05 15:35:16 -0600888 if ((bio->bi_opf & REQ_PREFLUSH) && bio->bi_iter.bi_size) {
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100889 /*
Tejun Heo6a8736d2010-09-08 18:07:00 +0200890 * Preflush done for flush with data, reissue
Mike Christie28a8f0d2016-06-05 14:32:25 -0500891 * without REQ_PREFLUSH.
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100892 */
Jens Axboe1eff9d32016-08-05 15:35:16 -0600893 bio->bi_opf &= ~REQ_PREFLUSH;
Tejun Heo6a8736d2010-09-08 18:07:00 +0200894 queue_io(md, bio);
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100895 } else {
Mike Snitzerb372d362010-09-08 18:07:01 +0200896 /* done with normal IO or empty flush */
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200897 bio->bi_status = io_error;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200898 bio_endio(bio);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800899 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 }
901}
902
Mike Snitzer4cc96132016-05-12 16:28:10 -0400903void disable_write_same(struct mapped_device *md)
Mike Snitzer7eee4ae2014-06-02 15:50:06 -0400904{
905 struct queue_limits *limits = dm_get_queue_limits(md);
906
907 /* device doesn't really support WRITE SAME, disable it */
908 limits->max_write_same_sectors = 0;
909}
910
Christoph Hellwigac62d622017-04-05 19:21:05 +0200911void disable_write_zeroes(struct mapped_device *md)
912{
913 struct queue_limits *limits = dm_get_queue_limits(md);
914
915 /* device doesn't really support WRITE ZEROES, disable it */
916 limits->max_write_zeroes_sectors = 0;
917}
918
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200919static void clone_endio(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920{
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200921 blk_status_t error = bio->bi_status;
Mikulas Patockabfc6d412014-03-04 18:24:49 -0500922 struct dm_target_io *tio = container_of(bio, struct dm_target_io, clone);
Milan Brozb35f8ca2009-03-16 17:44:36 +0000923 struct dm_io *io = tio->io;
Stefan Bader9faf4002006-10-03 01:15:41 -0700924 struct mapped_device *md = tio->io->md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 dm_endio_fn endio = tio->ti->type->end_io;
926
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200927 if (unlikely(error == BLK_STS_TARGET)) {
Christoph Hellwigac62d622017-04-05 19:21:05 +0200928 if (bio_op(bio) == REQ_OP_WRITE_SAME &&
Christoph Hellwig74d46992017-08-23 19:10:32 +0200929 !bio->bi_disk->queue->limits.max_write_same_sectors)
Christoph Hellwigac62d622017-04-05 19:21:05 +0200930 disable_write_same(md);
931 if (bio_op(bio) == REQ_OP_WRITE_ZEROES &&
Christoph Hellwig74d46992017-08-23 19:10:32 +0200932 !bio->bi_disk->queue->limits.max_write_zeroes_sectors)
Christoph Hellwigac62d622017-04-05 19:21:05 +0200933 disable_write_zeroes(md);
934 }
Mike Snitzer7eee4ae2014-06-02 15:50:06 -0400935
Christoph Hellwig1be56902017-06-03 09:38:03 +0200936 if (endio) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200937 int r = endio(tio->ti, bio, &error);
Christoph Hellwig1be56902017-06-03 09:38:03 +0200938 switch (r) {
939 case DM_ENDIO_REQUEUE:
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200940 error = BLK_STS_DM_REQUEUE;
Christoph Hellwig1be56902017-06-03 09:38:03 +0200941 /*FALLTHRU*/
942 case DM_ENDIO_DONE:
943 break;
944 case DM_ENDIO_INCOMPLETE:
945 /* The target will handle the io */
946 return;
947 default:
948 DMWARN("unimplemented target endio return value: %d", r);
949 BUG();
950 }
951 }
952
Mike Snitzercfae7522016-04-11 12:05:38 -0400953 free_tio(tio);
Milan Brozb35f8ca2009-03-16 17:44:36 +0000954 dec_pending(io, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955}
956
Mike Snitzer78d8e582015-06-26 10:01:13 -0400957/*
Mike Snitzer56a67df2010-08-12 04:14:10 +0100958 * Return maximum size of I/O possible at the supplied sector up to the current
959 * target boundary.
960 */
961static sector_t max_io_len_target_boundary(sector_t sector, struct dm_target *ti)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962{
Mike Snitzer56a67df2010-08-12 04:14:10 +0100963 sector_t target_offset = dm_target_offset(ti, sector);
964
965 return ti->len - target_offset;
966}
967
968static sector_t max_io_len(sector_t sector, struct dm_target *ti)
969{
970 sector_t len = max_io_len_target_boundary(sector, ti);
Mike Snitzer542f9032012-07-27 15:08:00 +0100971 sector_t offset, max_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
973 /*
Mike Snitzer542f9032012-07-27 15:08:00 +0100974 * Does the target need to split even further?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 */
Mike Snitzer542f9032012-07-27 15:08:00 +0100976 if (ti->max_io_len) {
977 offset = dm_target_offset(ti, sector);
978 if (unlikely(ti->max_io_len & (ti->max_io_len - 1)))
979 max_len = sector_div(offset, ti->max_io_len);
980 else
981 max_len = offset & (ti->max_io_len - 1);
982 max_len = ti->max_io_len - max_len;
983
984 if (len > max_len)
985 len = max_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 }
987
988 return len;
989}
990
Mike Snitzer542f9032012-07-27 15:08:00 +0100991int dm_set_target_max_io_len(struct dm_target *ti, sector_t len)
992{
993 if (len > UINT_MAX) {
994 DMERR("Specified maximum size of target IO (%llu) exceeds limit (%u)",
995 (unsigned long long)len, UINT_MAX);
996 ti->error = "Maximum size of target IO is too large";
997 return -EINVAL;
998 }
999
1000 ti->max_io_len = (uint32_t) len;
1001
1002 return 0;
1003}
1004EXPORT_SYMBOL_GPL(dm_set_target_max_io_len);
1005
Dan Williamsf26c5712017-04-12 12:35:44 -07001006static struct dm_target *dm_dax_get_live_target(struct mapped_device *md,
1007 sector_t sector, int *srcu_idx)
Toshi Kani545ed202016-06-22 17:54:53 -06001008{
Toshi Kani545ed202016-06-22 17:54:53 -06001009 struct dm_table *map;
1010 struct dm_target *ti;
Toshi Kani545ed202016-06-22 17:54:53 -06001011
Dan Williamsf26c5712017-04-12 12:35:44 -07001012 map = dm_get_live_table(md, srcu_idx);
Toshi Kani545ed202016-06-22 17:54:53 -06001013 if (!map)
Dan Williamsf26c5712017-04-12 12:35:44 -07001014 return NULL;
Toshi Kani545ed202016-06-22 17:54:53 -06001015
1016 ti = dm_table_find_target(map, sector);
1017 if (!dm_target_is_valid(ti))
Dan Williamsf26c5712017-04-12 12:35:44 -07001018 return NULL;
1019
1020 return ti;
1021}
1022
1023static long dm_dax_direct_access(struct dax_device *dax_dev, pgoff_t pgoff,
1024 long nr_pages, void **kaddr, pfn_t *pfn)
1025{
1026 struct mapped_device *md = dax_get_private(dax_dev);
1027 sector_t sector = pgoff * PAGE_SECTORS;
1028 struct dm_target *ti;
1029 long len, ret = -EIO;
1030 int srcu_idx;
1031
1032 ti = dm_dax_get_live_target(md, sector, &srcu_idx);
1033
1034 if (!ti)
Toshi Kani545ed202016-06-22 17:54:53 -06001035 goto out;
Dan Williamsf26c5712017-04-12 12:35:44 -07001036 if (!ti->type->direct_access)
1037 goto out;
1038 len = max_io_len(sector, ti) / PAGE_SECTORS;
1039 if (len < 1)
1040 goto out;
1041 nr_pages = min(len, nr_pages);
Toshi Kani545ed202016-06-22 17:54:53 -06001042 if (ti->type->direct_access)
Dan Williams817bf402017-04-12 13:37:44 -07001043 ret = ti->type->direct_access(ti, pgoff, nr_pages, kaddr, pfn);
1044
Dan Williamsf26c5712017-04-12 12:35:44 -07001045 out:
Toshi Kani545ed202016-06-22 17:54:53 -06001046 dm_put_live_table(md, srcu_idx);
Dan Williamsf26c5712017-04-12 12:35:44 -07001047
1048 return ret;
Toshi Kani545ed202016-06-22 17:54:53 -06001049}
1050
Dan Williams7e026c82017-05-29 12:57:56 -07001051static size_t dm_dax_copy_from_iter(struct dax_device *dax_dev, pgoff_t pgoff,
1052 void *addr, size_t bytes, struct iov_iter *i)
1053{
1054 struct mapped_device *md = dax_get_private(dax_dev);
1055 sector_t sector = pgoff * PAGE_SECTORS;
1056 struct dm_target *ti;
1057 long ret = 0;
1058 int srcu_idx;
1059
1060 ti = dm_dax_get_live_target(md, sector, &srcu_idx);
1061
1062 if (!ti)
1063 goto out;
1064 if (!ti->type->dax_copy_from_iter) {
1065 ret = copy_from_iter(addr, bytes, i);
1066 goto out;
1067 }
1068 ret = ti->type->dax_copy_from_iter(ti, pgoff, addr, bytes, i);
1069 out:
1070 dm_put_live_table(md, srcu_idx);
1071
1072 return ret;
1073}
1074
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001075/*
1076 * A target may call dm_accept_partial_bio only from the map routine. It is
NeilBrownc06b3e52017-11-21 08:44:35 -05001077 * allowed for all bio types except REQ_PREFLUSH and REQ_OP_ZONE_RESET.
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001078 *
1079 * dm_accept_partial_bio informs the dm that the target only wants to process
1080 * additional n_sectors sectors of the bio and the rest of the data should be
1081 * sent in a next bio.
1082 *
1083 * A diagram that explains the arithmetics:
1084 * +--------------------+---------------+-------+
1085 * | 1 | 2 | 3 |
1086 * +--------------------+---------------+-------+
1087 *
1088 * <-------------- *tio->len_ptr --------------->
1089 * <------- bi_size ------->
1090 * <-- n_sectors -->
1091 *
1092 * Region 1 was already iterated over with bio_advance or similar function.
1093 * (it may be empty if the target doesn't use bio_advance)
1094 * Region 2 is the remaining bio size that the target wants to process.
1095 * (it may be empty if region 1 is non-empty, although there is no reason
1096 * to make it empty)
1097 * The target requires that region 3 is to be sent in the next bio.
1098 *
1099 * If the target wants to receive multiple copies of the bio (via num_*bios, etc),
1100 * the partially processed part (the sum of regions 1+2) must be the same for all
1101 * copies of the bio.
1102 */
1103void dm_accept_partial_bio(struct bio *bio, unsigned n_sectors)
1104{
1105 struct dm_target_io *tio = container_of(bio, struct dm_target_io, clone);
1106 unsigned bi_size = bio->bi_iter.bi_size >> SECTOR_SHIFT;
Jens Axboe1eff9d32016-08-05 15:35:16 -06001107 BUG_ON(bio->bi_opf & REQ_PREFLUSH);
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001108 BUG_ON(bi_size > *tio->len_ptr);
1109 BUG_ON(n_sectors > bi_size);
1110 *tio->len_ptr -= bi_size - n_sectors;
1111 bio->bi_iter.bi_size = n_sectors << SECTOR_SHIFT;
1112}
1113EXPORT_SYMBOL_GPL(dm_accept_partial_bio);
1114
Mikulas Patockad67a5f42017-02-15 11:26:10 -05001115/*
Damien Le Moal10999302017-05-08 16:40:48 -07001116 * The zone descriptors obtained with a zone report indicate
1117 * zone positions within the target device. The zone descriptors
1118 * must be remapped to match their position within the dm device.
1119 * A target may call dm_remap_zone_report after completion of a
1120 * REQ_OP_ZONE_REPORT bio to remap the zone descriptors obtained
1121 * from the target device mapping to the dm device.
1122 */
1123void dm_remap_zone_report(struct dm_target *ti, struct bio *bio, sector_t start)
1124{
1125#ifdef CONFIG_BLK_DEV_ZONED
1126 struct dm_target_io *tio = container_of(bio, struct dm_target_io, clone);
Mike Snitzer745dc572017-12-11 20:51:50 -05001127 struct bio *report_bio = tio->io->orig_bio;
Damien Le Moal10999302017-05-08 16:40:48 -07001128 struct blk_zone_report_hdr *hdr = NULL;
1129 struct blk_zone *zone;
1130 unsigned int nr_rep = 0;
1131 unsigned int ofst;
1132 struct bio_vec bvec;
1133 struct bvec_iter iter;
1134 void *addr;
1135
1136 if (bio->bi_status)
1137 return;
1138
1139 /*
1140 * Remap the start sector of the reported zones. For sequential zones,
1141 * also remap the write pointer position.
1142 */
1143 bio_for_each_segment(bvec, report_bio, iter) {
1144 addr = kmap_atomic(bvec.bv_page);
1145
1146 /* Remember the report header in the first page */
1147 if (!hdr) {
1148 hdr = addr;
1149 ofst = sizeof(struct blk_zone_report_hdr);
1150 } else
1151 ofst = 0;
1152
1153 /* Set zones start sector */
1154 while (hdr->nr_zones && ofst < bvec.bv_len) {
1155 zone = addr + ofst;
1156 if (zone->start >= start + ti->len) {
1157 hdr->nr_zones = 0;
1158 break;
1159 }
1160 zone->start = zone->start + ti->begin - start;
1161 if (zone->type != BLK_ZONE_TYPE_CONVENTIONAL) {
1162 if (zone->cond == BLK_ZONE_COND_FULL)
1163 zone->wp = zone->start + zone->len;
1164 else if (zone->cond == BLK_ZONE_COND_EMPTY)
1165 zone->wp = zone->start;
1166 else
1167 zone->wp = zone->wp + ti->begin - start;
1168 }
1169 ofst += sizeof(struct blk_zone);
1170 hdr->nr_zones--;
1171 nr_rep++;
1172 }
1173
1174 if (addr != hdr)
1175 kunmap_atomic(addr);
1176
1177 if (!hdr->nr_zones)
1178 break;
1179 }
1180
1181 if (hdr) {
1182 hdr->nr_zones = nr_rep;
1183 kunmap_atomic(hdr);
1184 }
1185
1186 bio_advance(report_bio, report_bio->bi_iter.bi_size);
1187
1188#else /* !CONFIG_BLK_DEV_ZONED */
1189 bio->bi_status = BLK_STS_NOTSUPP;
1190#endif
1191}
1192EXPORT_SYMBOL_GPL(dm_remap_zone_report);
1193
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001194static void __map_bio(struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195{
1196 int r;
Jens Axboe2056a782006-03-23 20:00:26 +01001197 sector_t sector;
Mikulas Patockadba14162012-10-12 21:02:15 +01001198 struct bio *clone = &tio->clone;
Mike Snitzer64f52b02017-12-11 23:17:47 -05001199 struct dm_io *io = tio->io;
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001200 struct dm_target *ti = tio->ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 clone->bi_end_io = clone_endio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203
1204 /*
1205 * Map the clone. If r == 0 we don't need to do
1206 * anything, the target has assumed ownership of
1207 * this io.
1208 */
Mike Snitzer64f52b02017-12-11 23:17:47 -05001209 atomic_inc(&io->io_count);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001210 sector = clone->bi_iter.bi_sector;
Mikulas Patockad67a5f42017-02-15 11:26:10 -05001211
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00001212 r = ti->type->map(ti, clone);
Christoph Hellwig846785e2017-06-03 09:38:02 +02001213 switch (r) {
1214 case DM_MAPIO_SUBMITTED:
1215 break;
1216 case DM_MAPIO_REMAPPED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 /* the bio has been remapped so dispatch it */
Christoph Hellwig74d46992017-08-23 19:10:32 +02001218 trace_block_bio_remap(clone->bi_disk->queue, clone,
Mike Snitzer64f52b02017-12-11 23:17:47 -05001219 bio_dev(io->orig_bio), sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 generic_make_request(clone);
Christoph Hellwig846785e2017-06-03 09:38:02 +02001221 break;
1222 case DM_MAPIO_KILL:
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001223 free_tio(tio);
Mike Snitzer64f52b02017-12-11 23:17:47 -05001224 dec_pending(io, BLK_STS_IOERR);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001225 break;
Christoph Hellwig846785e2017-06-03 09:38:02 +02001226 case DM_MAPIO_REQUEUE:
Mike Snitzercfae7522016-04-11 12:05:38 -04001227 free_tio(tio);
Mike Snitzer64f52b02017-12-11 23:17:47 -05001228 dec_pending(io, BLK_STS_DM_REQUEUE);
Christoph Hellwig846785e2017-06-03 09:38:02 +02001229 break;
1230 default:
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -08001231 DMWARN("unimplemented target map return value: %d", r);
1232 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 }
1234}
1235
Mikulas Patockae0d66092014-03-14 18:40:39 -04001236static void bio_setup_sector(struct bio *bio, sector_t sector, unsigned len)
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001237{
Kent Overstreet4f024f32013-10-11 15:44:27 -07001238 bio->bi_iter.bi_sector = sector;
1239 bio->bi_iter.bi_size = to_bytes(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240}
1241
1242/*
1243 * Creates a bio that consists of range of complete bvecs.
1244 */
Mike Snitzerc80914e2016-03-02 12:33:03 -05001245static int clone_bio(struct dm_target_io *tio, struct bio *bio,
1246 sector_t sector, unsigned len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247{
Mikulas Patockadba14162012-10-12 21:02:15 +01001248 struct bio *clone = &tio->clone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001250 __bio_clone_fast(clone, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
Mikulas Patockae2460f22017-04-18 16:51:48 -04001252 if (unlikely(bio_integrity(bio) != NULL)) {
1253 int r;
1254
1255 if (unlikely(!dm_target_has_integrity(tio->ti->type) &&
1256 !dm_target_passes_integrity(tio->ti->type))) {
1257 DMWARN("%s: the target %s doesn't support integrity data.",
1258 dm_device_name(tio->io->md),
1259 tio->ti->type->name);
1260 return -EIO;
1261 }
1262
1263 r = bio_integrity_clone(clone, bio, GFP_NOIO);
Mike Snitzerc80914e2016-03-02 12:33:03 -05001264 if (r < 0)
1265 return r;
1266 }
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001267
Damien Le Moal264c8692017-05-08 16:40:47 -07001268 if (bio_op(bio) != REQ_OP_ZONE_REPORT)
1269 bio_advance(clone, to_bytes(sector - clone->bi_iter.bi_sector));
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001270 clone->bi_iter.bi_size = to_bytes(len);
1271
Mikulas Patockae2460f22017-04-18 16:51:48 -04001272 if (unlikely(bio_integrity(bio) != NULL))
Dmitry Monakhovfbd08e72017-06-29 11:31:10 -07001273 bio_integrity_trim(clone);
Mike Snitzerc80914e2016-03-02 12:33:03 -05001274
1275 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276}
1277
Mike Snitzer318716d2017-11-22 14:56:12 -05001278static void alloc_multiple_bios(struct bio_list *blist, struct clone_info *ci,
1279 struct dm_target *ti, unsigned num_bios)
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001280{
Mike Snitzer318716d2017-11-22 14:56:12 -05001281 struct dm_target_io *tio;
1282 int try;
1283
1284 if (!num_bios)
1285 return;
1286
1287 if (num_bios == 1) {
1288 tio = alloc_tio(ci, ti, 0, GFP_NOIO);
1289 bio_list_add(blist, &tio->clone);
1290 return;
1291 }
1292
1293 for (try = 0; try < 2; try++) {
1294 int bio_nr;
1295 struct bio *bio;
1296
1297 if (try)
Mike Snitzerbc02cdb2017-12-14 16:30:42 -05001298 mutex_lock(&ci->io->md->table_devices_lock);
Mike Snitzer318716d2017-11-22 14:56:12 -05001299 for (bio_nr = 0; bio_nr < num_bios; bio_nr++) {
1300 tio = alloc_tio(ci, ti, bio_nr, try ? GFP_NOIO : GFP_NOWAIT);
1301 if (!tio)
1302 break;
1303
1304 bio_list_add(blist, &tio->clone);
1305 }
1306 if (try)
Mike Snitzerbc02cdb2017-12-14 16:30:42 -05001307 mutex_unlock(&ci->io->md->table_devices_lock);
Mike Snitzer318716d2017-11-22 14:56:12 -05001308 if (bio_nr == num_bios)
1309 return;
1310
1311 while ((bio = bio_list_pop(blist))) {
1312 tio = container_of(bio, struct dm_target_io, clone);
1313 free_tio(tio);
1314 }
1315 }
1316}
1317
1318static void __clone_and_map_simple_bio(struct clone_info *ci,
1319 struct dm_target_io *tio, unsigned *len)
1320{
Mikulas Patockadba14162012-10-12 21:02:15 +01001321 struct bio *clone = &tio->clone;
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001322
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001323 tio->len_ptr = len;
1324
Junichi Nomura99778272014-10-03 11:55:16 +00001325 __bio_clone_fast(clone, ci->bio);
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001326 if (len)
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001327 bio_setup_sector(clone, ci->sector, *len);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001328
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001329 __map_bio(tio);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001330}
1331
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001332static void __send_duplicate_bios(struct clone_info *ci, struct dm_target *ti,
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001333 unsigned num_bios, unsigned *len)
Mike Snitzer06a426c2010-08-12 04:14:09 +01001334{
Mike Snitzer318716d2017-11-22 14:56:12 -05001335 struct bio_list blist = BIO_EMPTY_LIST;
1336 struct bio *bio;
1337 struct dm_target_io *tio;
Mike Snitzer06a426c2010-08-12 04:14:09 +01001338
Mike Snitzer318716d2017-11-22 14:56:12 -05001339 alloc_multiple_bios(&blist, ci, ti, num_bios);
1340
1341 while ((bio = bio_list_pop(&blist))) {
1342 tio = container_of(bio, struct dm_target_io, clone);
1343 __clone_and_map_simple_bio(ci, tio, len);
1344 }
Mike Snitzer06a426c2010-08-12 04:14:09 +01001345}
1346
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001347static int __send_empty_flush(struct clone_info *ci)
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001348{
Mike Snitzer06a426c2010-08-12 04:14:09 +01001349 unsigned target_nr = 0;
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001350 struct dm_target *ti;
1351
Mike Snitzerb372d362010-09-08 18:07:01 +02001352 BUG_ON(bio_has_data(ci->bio));
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001353 while ((ti = dm_table_get_target(ci->map, target_nr++)))
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001354 __send_duplicate_bios(ci, ti, ti->num_flush_bios, NULL);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001355
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001356 return 0;
1357}
1358
Mike Snitzerc80914e2016-03-02 12:33:03 -05001359static int __clone_and_map_data_bio(struct clone_info *ci, struct dm_target *ti,
NeilBrownf31c21e2017-11-22 14:25:18 +11001360 sector_t sector, unsigned *len)
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001361{
Mikulas Patockadba14162012-10-12 21:02:15 +01001362 struct bio *bio = ci->bio;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001363 struct dm_target_io *tio;
NeilBrownf31c21e2017-11-22 14:25:18 +11001364 int r;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001365
Mike Snitzer318716d2017-11-22 14:56:12 -05001366 tio = alloc_tio(ci, ti, 0, GFP_NOIO);
NeilBrownf31c21e2017-11-22 14:25:18 +11001367 tio->len_ptr = len;
1368 r = clone_bio(tio, bio, sector, *len);
1369 if (r < 0) {
1370 free_tio(tio);
1371 return r;
Alasdair G Kergonb0d8ed42013-03-01 22:45:49 +00001372 }
NeilBrownf31c21e2017-11-22 14:25:18 +11001373 __map_bio(tio);
Mike Snitzerc80914e2016-03-02 12:33:03 -05001374
NeilBrownf31c21e2017-11-22 14:25:18 +11001375 return 0;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001376}
1377
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001378typedef unsigned (*get_num_bios_fn)(struct dm_target *ti);
Mike Snitzer23508a92012-12-21 20:23:37 +00001379
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001380static unsigned get_num_discard_bios(struct dm_target *ti)
Mike Snitzer23508a92012-12-21 20:23:37 +00001381{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001382 return ti->num_discard_bios;
Mike Snitzer23508a92012-12-21 20:23:37 +00001383}
1384
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001385static unsigned get_num_write_same_bios(struct dm_target *ti)
Mike Snitzer23508a92012-12-21 20:23:37 +00001386{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001387 return ti->num_write_same_bios;
Mike Snitzer23508a92012-12-21 20:23:37 +00001388}
1389
Christoph Hellwigac62d622017-04-05 19:21:05 +02001390static unsigned get_num_write_zeroes_bios(struct dm_target *ti)
1391{
1392 return ti->num_write_zeroes_bios;
1393}
1394
Mike Snitzer23508a92012-12-21 20:23:37 +00001395typedef bool (*is_split_required_fn)(struct dm_target *ti);
1396
1397static bool is_split_required_for_discard(struct dm_target *ti)
1398{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001399 return ti->split_discard_bios;
Mike Snitzer23508a92012-12-21 20:23:37 +00001400}
1401
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001402static int __send_changing_extent_only(struct clone_info *ci, struct dm_target *ti,
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001403 get_num_bios_fn get_num_bios,
1404 is_split_required_fn is_split_required)
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001405{
Mikulas Patockae0d66092014-03-14 18:40:39 -04001406 unsigned len;
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001407 unsigned num_bios;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001408
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001409 /*
1410 * Even though the device advertised support for this type of
1411 * request, that does not mean every target supports it, and
1412 * reconfiguration might also have changed that since the
1413 * check was performed.
1414 */
1415 num_bios = get_num_bios ? get_num_bios(ti) : 0;
1416 if (!num_bios)
1417 return -EOPNOTSUPP;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001418
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001419 if (is_split_required && !is_split_required(ti))
1420 len = min((sector_t)ci->sector_count, max_io_len_target_boundary(ci->sector, ti));
1421 else
1422 len = min((sector_t)ci->sector_count, max_io_len(ci->sector, ti));
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001423
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001424 __send_duplicate_bios(ci, ti, num_bios, &len);
Mike Snitzer06a426c2010-08-12 04:14:09 +01001425
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001426 ci->sector += len;
1427 ci->sector_count -= len;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001428
1429 return 0;
1430}
1431
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001432static int __send_discard(struct clone_info *ci, struct dm_target *ti)
Mike Snitzer23508a92012-12-21 20:23:37 +00001433{
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001434 return __send_changing_extent_only(ci, ti, get_num_discard_bios,
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001435 is_split_required_for_discard);
Mike Snitzer23508a92012-12-21 20:23:37 +00001436}
1437
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001438static int __send_write_same(struct clone_info *ci, struct dm_target *ti)
Mike Snitzer23508a92012-12-21 20:23:37 +00001439{
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001440 return __send_changing_extent_only(ci, ti, get_num_write_same_bios, NULL);
Mike Snitzer23508a92012-12-21 20:23:37 +00001441}
1442
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001443static int __send_write_zeroes(struct clone_info *ci, struct dm_target *ti)
Christoph Hellwigac62d622017-04-05 19:21:05 +02001444{
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001445 return __send_changing_extent_only(ci, ti, get_num_write_zeroes_bios, NULL);
Christoph Hellwigac62d622017-04-05 19:21:05 +02001446}
1447
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001448/*
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001449 * Select the correct strategy for processing a non-flush bio.
1450 */
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001451static int __split_and_process_non_flush(struct clone_info *ci)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452{
Mikulas Patockadba14162012-10-12 21:02:15 +01001453 struct bio *bio = ci->bio;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001454 struct dm_target *ti;
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001455 unsigned len;
Mike Snitzerc80914e2016-03-02 12:33:03 -05001456 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001458 ti = dm_table_find_target(ci->map, ci->sector);
1459 if (!dm_target_is_valid(ti))
1460 return -EIO;
1461
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001462 if (unlikely(bio_op(bio) == REQ_OP_DISCARD))
1463 return __send_discard(ci, ti);
1464 else if (unlikely(bio_op(bio) == REQ_OP_WRITE_SAME))
1465 return __send_write_same(ci, ti);
1466 else if (unlikely(bio_op(bio) == REQ_OP_WRITE_ZEROES))
1467 return __send_write_zeroes(ci, ti);
1468
Damien Le Moal264c8692017-05-08 16:40:47 -07001469 if (bio_op(bio) == REQ_OP_ZONE_REPORT)
1470 len = ci->sector_count;
1471 else
1472 len = min_t(sector_t, max_io_len(ci->sector, ti),
1473 ci->sector_count);
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001474
Mike Snitzerc80914e2016-03-02 12:33:03 -05001475 r = __clone_and_map_data_bio(ci, ti, ci->sector, &len);
1476 if (r < 0)
1477 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001479 ci->sector += len;
1480 ci->sector_count -= len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001482 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483}
1484
1485/*
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001486 * Entry point to split a bio into clones and submit them to the targets.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 */
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001488static void __split_and_process_bio(struct mapped_device *md,
1489 struct dm_table *map, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490{
1491 struct clone_info ci;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001492 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001494 if (unlikely(!map)) {
Tejun Heo6a8736d2010-09-08 18:07:00 +02001495 bio_io_error(bio);
Mikulas Patockaf0b9a452009-04-02 19:55:38 +01001496 return;
1497 }
Mikulas Patocka692d0eb2009-04-09 00:27:13 +01001498
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001499 ci.map = map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 ci.io = alloc_io(md);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001501 ci.io->status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 atomic_set(&ci.io->io_count, 1);
Mike Snitzer745dc572017-12-11 20:51:50 -05001503 ci.io->orig_bio = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 ci.io->md = md;
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +01001505 spin_lock_init(&ci.io->endio_lock);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001506 ci.sector = bio->bi_iter.bi_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -08001508 start_io_acct(ci.io);
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001509
Jens Axboe1eff9d32016-08-05 15:35:16 -06001510 if (bio->bi_opf & REQ_PREFLUSH) {
Mike Snitzerbc02cdb2017-12-14 16:30:42 -05001511 ci.bio = &ci.io->md->flush_bio;
Mike Snitzerb372d362010-09-08 18:07:01 +02001512 ci.sector_count = 0;
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001513 error = __send_empty_flush(&ci);
Mike Snitzerb372d362010-09-08 18:07:01 +02001514 /* dec_pending submits any data associated with flush */
Damien Le Moala4aa5e52017-05-08 16:40:46 -07001515 } else if (bio_op(bio) == REQ_OP_ZONE_RESET) {
1516 ci.bio = bio;
1517 ci.sector_count = 0;
1518 error = __split_and_process_non_flush(&ci);
Mike Snitzerb372d362010-09-08 18:07:01 +02001519 } else {
Tejun Heo6a8736d2010-09-08 18:07:00 +02001520 ci.bio = bio;
Tejun Heod87f4c12010-09-03 11:56:19 +02001521 ci.sector_count = bio_sectors(bio);
NeilBrown18a25da2017-09-06 09:43:28 +10001522 while (ci.sector_count && !error) {
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001523 error = __split_and_process_non_flush(&ci);
NeilBrown18a25da2017-09-06 09:43:28 +10001524 if (current->bio_list && ci.sector_count && !error) {
1525 /*
1526 * Remainder must be passed to generic_make_request()
1527 * so that it gets handled *after* bios already submitted
1528 * have been completely processed.
1529 * We take a clone of the original to store in
Mike Snitzer745dc572017-12-11 20:51:50 -05001530 * ci.io->orig_bio to be used by end_io_acct() and
NeilBrown18a25da2017-09-06 09:43:28 +10001531 * for dec_pending to use for completion handling.
1532 * As this path is not used for REQ_OP_ZONE_REPORT,
Mike Snitzer745dc572017-12-11 20:51:50 -05001533 * the usage of io->orig_bio in dm_remap_zone_report()
NeilBrown18a25da2017-09-06 09:43:28 +10001534 * won't be affected by this reassignment.
1535 */
1536 struct bio *b = bio_clone_bioset(bio, GFP_NOIO,
1537 md->queue->bio_split);
Mike Snitzer745dc572017-12-11 20:51:50 -05001538 ci.io->orig_bio = b;
NeilBrown18a25da2017-09-06 09:43:28 +10001539 bio_advance(bio, (bio_sectors(bio) - ci.sector_count) << 9);
1540 bio_chain(b, bio);
1541 generic_make_request(bio);
1542 break;
1543 }
1544 }
Tejun Heod87f4c12010-09-03 11:56:19 +02001545 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546
1547 /* drop the extra reference count */
Bart Van Assche54385bf2017-08-09 11:32:10 -07001548 dec_pending(ci.io, errno_to_blk_status(error));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
1551/*
NeilBrown18a25da2017-09-06 09:43:28 +10001552 * The request function that remaps the bio to one target and
1553 * splits off any remainder.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 */
Jens Axboedece1632015-11-05 10:41:16 -07001555static blk_qc_t dm_make_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 struct mapped_device *md = q->queuedata;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001558 int srcu_idx;
1559 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001561 map = dm_get_live_table(md, &srcu_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562
Tejun Heo6a8736d2010-09-08 18:07:00 +02001563 /* if we're suspended, we have to queue this io for later */
1564 if (unlikely(test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags))) {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001565 dm_put_live_table(md, srcu_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566
Jens Axboe1eff9d32016-08-05 15:35:16 -06001567 if (!(bio->bi_opf & REQ_RAHEAD))
Tejun Heo6a8736d2010-09-08 18:07:00 +02001568 queue_io(md, bio);
1569 else
Alasdair G Kergon54d9a1b2009-04-09 00:27:14 +01001570 bio_io_error(bio);
Jens Axboedece1632015-11-05 10:41:16 -07001571 return BLK_QC_T_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 }
1573
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001574 __split_and_process_bio(md, map, bio);
1575 dm_put_live_table(md, srcu_idx);
Jens Axboedece1632015-11-05 10:41:16 -07001576 return BLK_QC_T_NONE;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001577}
1578
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579static int dm_any_congested(void *congested_data, int bdi_bits)
1580{
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00001581 int r = bdi_bits;
1582 struct mapped_device *md = congested_data;
1583 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01001585 if (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
Mike Snitzere522c032016-02-02 22:35:06 -05001586 if (dm_request_based(md)) {
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001587 /*
Mike Snitzere522c032016-02-02 22:35:06 -05001588 * With request-based DM we only need to check the
1589 * top-level queue for congestion.
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001590 */
Jan Karadc3b17c2017-02-02 15:56:50 +01001591 r = md->queue->backing_dev_info->wb.state & bdi_bits;
Mike Snitzere522c032016-02-02 22:35:06 -05001592 } else {
1593 map = dm_get_live_table_fast(md);
1594 if (map)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001595 r = dm_table_any_congested(map, bdi_bits);
Mike Snitzere522c032016-02-02 22:35:06 -05001596 dm_put_live_table_fast(md);
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00001597 }
1598 }
1599
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 return r;
1601}
1602
1603/*-----------------------------------------------------------------
1604 * An IDR is used to keep track of allocated minor numbers.
1605 *---------------------------------------------------------------*/
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001606static void free_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607{
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001608 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 idr_remove(&_minor_idr, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001610 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611}
1612
1613/*
1614 * See if the device with a specific minor # is free.
1615 */
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001616static int specific_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617{
Tejun Heoc9d76be2013-02-27 17:04:26 -08001618 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619
1620 if (minor >= (1 << MINORBITS))
1621 return -EINVAL;
1622
Tejun Heoc9d76be2013-02-27 17:04:26 -08001623 idr_preload(GFP_KERNEL);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001624 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
Tejun Heoc9d76be2013-02-27 17:04:26 -08001626 r = idr_alloc(&_minor_idr, MINOR_ALLOCED, minor, minor + 1, GFP_NOWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001628 spin_unlock(&_minor_lock);
Tejun Heoc9d76be2013-02-27 17:04:26 -08001629 idr_preload_end();
1630 if (r < 0)
1631 return r == -ENOSPC ? -EBUSY : r;
1632 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633}
1634
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001635static int next_free_minor(int *minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636{
Tejun Heoc9d76be2013-02-27 17:04:26 -08001637 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638
Tejun Heoc9d76be2013-02-27 17:04:26 -08001639 idr_preload(GFP_KERNEL);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001640 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641
Tejun Heoc9d76be2013-02-27 17:04:26 -08001642 r = idr_alloc(&_minor_idr, MINOR_ALLOCED, 0, 1 << MINORBITS, GFP_NOWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001644 spin_unlock(&_minor_lock);
Tejun Heoc9d76be2013-02-27 17:04:26 -08001645 idr_preload_end();
1646 if (r < 0)
1647 return r;
1648 *minor = r;
1649 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650}
1651
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07001652static const struct block_device_operations dm_blk_dops;
Dan Williamsf26c5712017-04-12 12:35:44 -07001653static const struct dax_operations dm_dax_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654
Mikulas Patocka53d59142009-04-02 19:55:37 +01001655static void dm_wq_work(struct work_struct *work);
1656
Mike Snitzer4cc96132016-05-12 16:28:10 -04001657void dm_init_md_queue(struct mapped_device *md)
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01001658{
1659 /*
Mikulas Patockaad5f4982015-10-27 19:06:55 -04001660 * Initialize data that will only be used by a non-blk-mq DM queue
1661 * - must do so here (in alloc_dev callchain) before queue is used
1662 */
1663 md->queue->queuedata = md;
Jan Karadc3b17c2017-02-02 15:56:50 +01001664 md->queue->backing_dev_info->congested_data = md;
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001665}
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01001666
Mike Snitzer4cc96132016-05-12 16:28:10 -04001667void dm_init_normal_md_queue(struct mapped_device *md)
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001668{
Mike Snitzer17e149b2015-03-11 15:01:09 -04001669 md->use_blk_mq = false;
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001670 dm_init_md_queue(md);
1671
1672 /*
1673 * Initialize aspects of queue that aren't relevant for blk-mq
1674 */
Jan Karadc3b17c2017-02-02 15:56:50 +01001675 md->queue->backing_dev_info->congested_fn = dm_any_congested;
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01001676}
1677
Mike Snitzer0f209722015-04-28 11:50:29 -04001678static void cleanup_mapped_device(struct mapped_device *md)
1679{
Mike Snitzer0f209722015-04-28 11:50:29 -04001680 if (md->wq)
1681 destroy_workqueue(md->wq);
1682 if (md->kworker_task)
1683 kthread_stop(md->kworker_task);
Mike Snitzer0f209722015-04-28 11:50:29 -04001684 if (md->bs)
1685 bioset_free(md->bs);
Mike Snitzer64f52b02017-12-11 23:17:47 -05001686 if (md->io_bs)
1687 bioset_free(md->io_bs);
Mike Snitzer0f209722015-04-28 11:50:29 -04001688
Dan Williamsf26c5712017-04-12 12:35:44 -07001689 if (md->dax_dev) {
1690 kill_dax(md->dax_dev);
1691 put_dax(md->dax_dev);
1692 md->dax_dev = NULL;
1693 }
1694
Mike Snitzer0f209722015-04-28 11:50:29 -04001695 if (md->disk) {
1696 spin_lock(&_minor_lock);
1697 md->disk->private_data = NULL;
1698 spin_unlock(&_minor_lock);
Mike Snitzer0f209722015-04-28 11:50:29 -04001699 del_gendisk(md->disk);
1700 put_disk(md->disk);
1701 }
1702
1703 if (md->queue)
1704 blk_cleanup_queue(md->queue);
1705
Tahsin Erdogand09960b2016-10-10 05:35:19 -07001706 cleanup_srcu_struct(&md->io_barrier);
1707
Mike Snitzer0f209722015-04-28 11:50:29 -04001708 if (md->bdev) {
1709 bdput(md->bdev);
1710 md->bdev = NULL;
1711 }
Mike Snitzer4cc96132016-05-12 16:28:10 -04001712
1713 dm_mq_cleanup_mapped_device(md);
Mike Snitzer0f209722015-04-28 11:50:29 -04001714}
1715
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716/*
1717 * Allocate and initialise a blank device with a given minor.
1718 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001719static struct mapped_device *alloc_dev(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720{
Mike Snitzer115485e2016-02-22 12:16:21 -05001721 int r, numa_node_id = dm_get_numa_node();
Dan Williamsf26c5712017-04-12 12:35:44 -07001722 struct dax_device *dax_dev;
Mike Snitzer115485e2016-02-22 12:16:21 -05001723 struct mapped_device *md;
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001724 void *old_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725
Mikulas Patocka856eb092017-10-31 19:33:02 -04001726 md = kvzalloc_node(sizeof(*md), GFP_KERNEL, numa_node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 if (!md) {
1728 DMWARN("unable to allocate device, out of memory.");
1729 return NULL;
1730 }
1731
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001732 if (!try_module_get(THIS_MODULE))
Milan Broz6ed7ade2008-02-08 02:10:19 +00001733 goto bad_module_get;
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001734
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 /* get a minor number for the dev */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001736 if (minor == DM_ANY_MINOR)
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001737 r = next_free_minor(&minor);
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001738 else
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001739 r = specific_minor(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 if (r < 0)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001741 goto bad_minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001743 r = init_srcu_struct(&md->io_barrier);
1744 if (r < 0)
1745 goto bad_io_barrier;
1746
Mike Snitzer115485e2016-02-22 12:16:21 -05001747 md->numa_node_id = numa_node_id;
Mike Snitzer4cc96132016-05-12 16:28:10 -04001748 md->use_blk_mq = dm_use_blk_mq_default();
Mike Snitzer591ddcf2016-01-31 12:05:42 -05001749 md->init_tio_pdu = false;
Mike Snitzera5664da2010-08-12 04:14:01 +01001750 md->type = DM_TYPE_NONE;
Daniel Walkere61290a2008-02-08 02:10:08 +00001751 mutex_init(&md->suspend_lock);
Mike Snitzera5664da2010-08-12 04:14:01 +01001752 mutex_init(&md->type_lock);
Benjamin Marzinski86f11522014-08-13 13:53:43 -05001753 mutex_init(&md->table_devices_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01001754 spin_lock_init(&md->deferred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 atomic_set(&md->holders, 1);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -07001756 atomic_set(&md->open_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 atomic_set(&md->event_nr, 0);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001758 atomic_set(&md->uevent_seq, 0);
1759 INIT_LIST_HEAD(&md->uevent_list);
Benjamin Marzinski86f11522014-08-13 13:53:43 -05001760 INIT_LIST_HEAD(&md->table_devices);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001761 spin_lock_init(&md->uevent_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762
Mike Snitzer115485e2016-02-22 12:16:21 -05001763 md->queue = blk_alloc_queue_node(GFP_KERNEL, numa_node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 if (!md->queue)
Mike Snitzer0f209722015-04-28 11:50:29 -04001765 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01001767 dm_init_md_queue(md);
Stefan Bader9faf4002006-10-03 01:15:41 -07001768
Mike Snitzer115485e2016-02-22 12:16:21 -05001769 md->disk = alloc_disk_node(1, numa_node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 if (!md->disk)
Mike Snitzer0f209722015-04-28 11:50:29 -04001771 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001773 atomic_set(&md->pending[0], 0);
1774 atomic_set(&md->pending[1], 0);
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07001775 init_waitqueue_head(&md->wait);
Mikulas Patocka53d59142009-04-02 19:55:37 +01001776 INIT_WORK(&md->work, dm_wq_work);
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07001777 init_waitqueue_head(&md->eventq);
Mikulas Patocka2995fa72014-01-13 19:37:54 -05001778 init_completion(&md->kobj_holder.completion);
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001779 md->kworker_task = NULL;
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07001780
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 md->disk->major = _major;
1782 md->disk->first_minor = minor;
1783 md->disk->fops = &dm_blk_dops;
1784 md->disk->queue = md->queue;
1785 md->disk->private_data = md;
1786 sprintf(md->disk->disk_name, "dm-%d", minor);
Dan Williamsf26c5712017-04-12 12:35:44 -07001787
1788 dax_dev = alloc_dax(md, md->disk->disk_name, &dm_dax_ops);
1789 if (!dax_dev)
1790 goto bad;
1791 md->dax_dev = dax_dev;
1792
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 add_disk(md->disk);
Mike Anderson7e51f252006-03-27 01:17:52 -08001794 format_dev_t(md->name, MKDEV(_major, minor));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795
Tejun Heo670368a2013-07-30 08:40:21 -04001796 md->wq = alloc_workqueue("kdmflush", WQ_MEM_RECLAIM, 0);
Milan Broz304f3f62008-02-08 02:11:17 +00001797 if (!md->wq)
Mike Snitzer0f209722015-04-28 11:50:29 -04001798 goto bad;
Milan Broz304f3f62008-02-08 02:11:17 +00001799
Mikulas Patocka32a926d2009-06-22 10:12:17 +01001800 md->bdev = bdget_disk(md->disk, 0);
1801 if (!md->bdev)
Mike Snitzer0f209722015-04-28 11:50:29 -04001802 goto bad;
Mikulas Patocka32a926d2009-06-22 10:12:17 +01001803
Ming Lei3a83f462016-11-22 08:57:21 -07001804 bio_init(&md->flush_bio, NULL, 0);
Christoph Hellwig74d46992017-08-23 19:10:32 +02001805 bio_set_dev(&md->flush_bio, md->bdev);
Jan Karaff0361b2017-05-31 09:44:32 +02001806 md->flush_bio.bi_opf = REQ_OP_WRITE | REQ_PREFLUSH | REQ_SYNC;
Tejun Heo6a8736d2010-09-08 18:07:00 +02001807
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04001808 dm_stats_init(&md->stats);
1809
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001810 /* Populate the mapping, nobody knows we exist yet */
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001811 spin_lock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001812 old_md = idr_replace(&_minor_idr, md, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001813 spin_unlock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001814
1815 BUG_ON(old_md != MINOR_ALLOCED);
1816
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 return md;
1818
Mike Snitzer0f209722015-04-28 11:50:29 -04001819bad:
1820 cleanup_mapped_device(md);
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001821bad_io_barrier:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 free_minor(minor);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001823bad_minor:
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001824 module_put(THIS_MODULE);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001825bad_module_get:
Mikulas Patocka856eb092017-10-31 19:33:02 -04001826 kvfree(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 return NULL;
1828}
1829
Jun'ichi Nomuraae9da832007-10-19 22:38:43 +01001830static void unlock_fs(struct mapped_device *md);
1831
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832static void free_dev(struct mapped_device *md)
1833{
Tejun Heof331c022008-09-03 09:01:48 +02001834 int minor = MINOR(disk_devt(md->disk));
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08001835
Mikulas Patocka32a926d2009-06-22 10:12:17 +01001836 unlock_fs(md);
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001837
Mike Snitzer0f209722015-04-28 11:50:29 -04001838 cleanup_mapped_device(md);
Mike Snitzer0f209722015-04-28 11:50:29 -04001839
1840 free_table_devices(&md->table_devices);
1841 dm_stats_cleanup(&md->stats);
Mike Snitzer63a4f062015-03-23 17:01:43 -04001842 free_minor(minor);
1843
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001844 module_put(THIS_MODULE);
Mikulas Patocka856eb092017-10-31 19:33:02 -04001845 kvfree(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846}
1847
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001848static void __bind_mempools(struct mapped_device *md, struct dm_table *t)
1849{
Mikulas Patockac0820cf2012-12-21 20:23:38 +00001850 struct dm_md_mempools *p = dm_table_get_md_mempools(t);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001851
Mike Snitzer0776aa02017-12-08 14:40:52 -05001852 if (dm_table_bio_based(t)) {
Mike Snitzer64f52b02017-12-11 23:17:47 -05001853 /*
1854 * The md may already have mempools that need changing.
1855 * If so, reload bioset because front_pad may have changed
1856 * because a different table was loaded.
1857 */
Mike Snitzer0776aa02017-12-08 14:40:52 -05001858 if (md->bs) {
Jun'ichi Nomura16245bd2013-03-01 22:45:44 +00001859 bioset_free(md->bs);
Mike Snitzer0776aa02017-12-08 14:40:52 -05001860 md->bs = NULL;
Jun'ichi Nomura16245bd2013-03-01 22:45:44 +00001861 }
Mike Snitzer64f52b02017-12-11 23:17:47 -05001862 if (md->io_bs) {
1863 bioset_free(md->io_bs);
1864 md->io_bs = NULL;
1865 }
Mike Snitzer0776aa02017-12-08 14:40:52 -05001866
1867 } else if (md->bs) {
Mike Snitzer4e6e36c2015-06-26 09:42:57 -04001868 /*
1869 * There's no need to reload with request-based dm
1870 * because the size of front_pad doesn't change.
1871 * Note for future: If you are to reload bioset,
1872 * prep-ed requests in the queue may refer
1873 * to bio from the old bioset, so you must walk
1874 * through the queue to unprep.
1875 */
1876 goto out;
Mikulas Patockac0820cf2012-12-21 20:23:38 +00001877 }
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001878
Mike Snitzerdde1e1e2017-12-11 23:28:13 -05001879 BUG_ON(!p || md->bs || md->io_bs);
Mike Snitzercbc4e3c2015-04-27 16:37:50 -04001880
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001881 md->bs = p->bs;
1882 p->bs = NULL;
Mike Snitzer64f52b02017-12-11 23:17:47 -05001883 md->io_bs = p->io_bs;
1884 p->io_bs = NULL;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001885out:
Mike Snitzer02233342015-03-10 23:49:26 -04001886 /* mempool bind completed, no longer need any mempools in the table */
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001887 dm_table_free_md_mempools(t);
1888}
1889
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890/*
1891 * Bind a table to the device.
1892 */
1893static void event_callback(void *context)
1894{
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001895 unsigned long flags;
1896 LIST_HEAD(uevents);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 struct mapped_device *md = (struct mapped_device *) context;
1898
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001899 spin_lock_irqsave(&md->uevent_lock, flags);
1900 list_splice_init(&md->uevent_list, &uevents);
1901 spin_unlock_irqrestore(&md->uevent_lock, flags);
1902
Tejun Heoed9e1982008-08-25 19:56:05 +09001903 dm_send_uevents(&uevents, &disk_to_dev(md->disk)->kobj);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001904
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 atomic_inc(&md->event_nr);
1906 wake_up(&md->eventq);
Mikulas Patocka62e08242017-09-20 07:29:49 -04001907 dm_issue_global_event();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908}
1909
Mike Snitzerc2176492011-01-13 19:53:46 +00001910/*
1911 * Protected by md->suspend_lock obtained by dm_swap_table().
1912 */
Alasdair G Kergon4e90188be2005-07-28 21:15:59 -07001913static void __set_size(struct mapped_device *md, sector_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914{
Bart Van Assche1ea06542017-04-27 10:11:21 -07001915 lockdep_assert_held(&md->suspend_lock);
1916
Alasdair G Kergon4e90188be2005-07-28 21:15:59 -07001917 set_capacity(md->disk, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918
Mikulas Patockadb8fef42009-06-22 10:12:15 +01001919 i_size_write(md->bdev->bd_inode, (loff_t)size << SECTOR_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920}
1921
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00001922/*
1923 * Returns old map, which caller must destroy.
1924 */
1925static struct dm_table *__bind(struct mapped_device *md, struct dm_table *t,
1926 struct queue_limits *limits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927{
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00001928 struct dm_table *old_map;
Jens Axboe165125e2007-07-24 09:28:11 +02001929 struct request_queue *q = md->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 sector_t size;
1931
Bart Van Assche5a8f1f82016-08-31 15:17:04 -07001932 lockdep_assert_held(&md->suspend_lock);
1933
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 size = dm_table_get_size(t);
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08001935
1936 /*
1937 * Wipe any geometry if the size of the table changed.
1938 */
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04001939 if (size != dm_get_size(md))
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08001940 memset(&md->geometry, 0, sizeof(md->geometry));
1941
Mikulas Patocka32a926d2009-06-22 10:12:17 +01001942 __set_size(md, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001944 dm_table_event_callback(t, event_callback, md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001945
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001946 /*
1947 * The queue hasn't been stopped yet, if the old table type wasn't
1948 * for request-based during suspension. So stop it to prevent
1949 * I/O mapping before resume.
1950 * This must be done before setting the queue restrictions,
1951 * because request-based dm may be run just after the setting.
1952 */
Mike Snitzer16f12262016-01-31 17:22:27 -05001953 if (dm_table_request_based(t)) {
Mike Snitzereca7ee62016-02-20 13:45:38 -05001954 dm_stop_queue(q);
Mike Snitzer16f12262016-01-31 17:22:27 -05001955 /*
1956 * Leverage the fact that request-based DM targets are
1957 * immutable singletons and establish md->immutable_target
1958 * - used to optimize both dm_request_fn and dm_mq_queue_rq
1959 */
1960 md->immutable_target = dm_table_get_immutable_target(t);
1961 }
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001962
1963 __bind_mempools(md, t);
1964
Eric Dumazeta12f5d42014-11-23 09:34:29 -08001965 old_map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mike Snitzer1d3aa6f2016-02-22 14:14:24 -05001966 rcu_assign_pointer(md->map, (void *)t);
Alasdair G Kergon36a04562011-10-31 20:19:04 +00001967 md->immutable_target_type = dm_table_get_immutable_target_type(t);
1968
Mike Snitzer754c5fc2009-06-22 10:12:34 +01001969 dm_table_set_restrictions(t, q, limits);
Hannes Reinecke41abc4e2014-11-05 14:35:50 +01001970 if (old_map)
1971 dm_sync_table(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001972
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00001973 return old_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974}
1975
Alasdair G Kergona7940152009-12-10 23:52:23 +00001976/*
1977 * Returns unbound table for the caller to free.
1978 */
1979static struct dm_table *__unbind(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980{
Eric Dumazeta12f5d42014-11-23 09:34:29 -08001981 struct dm_table *map = rcu_dereference_protected(md->map, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982
1983 if (!map)
Alasdair G Kergona7940152009-12-10 23:52:23 +00001984 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985
1986 dm_table_event_callback(map, NULL, NULL);
Monam Agarwal9cdb8522014-03-23 23:58:27 +05301987 RCU_INIT_POINTER(md->map, NULL);
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001988 dm_sync_table(md);
Alasdair G Kergona7940152009-12-10 23:52:23 +00001989
1990 return map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991}
1992
1993/*
1994 * Constructor for a new device.
1995 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001996int dm_create(int minor, struct mapped_device **result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997{
1998 struct mapped_device *md;
1999
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002000 md = alloc_dev(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 if (!md)
2002 return -ENXIO;
2003
Milan Broz784aae72009-01-06 03:05:12 +00002004 dm_sysfs_init(md);
2005
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 *result = md;
2007 return 0;
2008}
2009
Mike Snitzera5664da2010-08-12 04:14:01 +01002010/*
2011 * Functions to manage md->type.
2012 * All are required to hold md->type_lock.
2013 */
2014void dm_lock_md_type(struct mapped_device *md)
2015{
2016 mutex_lock(&md->type_lock);
2017}
2018
2019void dm_unlock_md_type(struct mapped_device *md)
2020{
2021 mutex_unlock(&md->type_lock);
2022}
2023
Bart Van Assche7e0d5742017-04-27 10:11:23 -07002024void dm_set_md_type(struct mapped_device *md, enum dm_queue_mode type)
Mike Snitzera5664da2010-08-12 04:14:01 +01002025{
Mike Snitzer00c4fc32013-08-27 18:57:03 -04002026 BUG_ON(!mutex_is_locked(&md->type_lock));
Mike Snitzera5664da2010-08-12 04:14:01 +01002027 md->type = type;
2028}
2029
Bart Van Assche7e0d5742017-04-27 10:11:23 -07002030enum dm_queue_mode dm_get_md_type(struct mapped_device *md)
Mike Snitzera5664da2010-08-12 04:14:01 +01002031{
2032 return md->type;
2033}
2034
Alasdair G Kergon36a04562011-10-31 20:19:04 +00002035struct target_type *dm_get_immutable_target_type(struct mapped_device *md)
2036{
2037 return md->immutable_target_type;
2038}
2039
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002040/*
Mike Snitzerf84cb8a2013-09-19 12:13:58 -04002041 * The queue_limits are only valid as long as you have a reference
2042 * count on 'md'.
2043 */
2044struct queue_limits *dm_get_queue_limits(struct mapped_device *md)
2045{
2046 BUG_ON(!atomic_read(&md->holders));
2047 return &md->queue->limits;
2048}
2049EXPORT_SYMBOL_GPL(dm_get_queue_limits);
2050
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002051/*
2052 * Setup the DM device's queue based on md's type
2053 */
Mike Snitzer591ddcf2016-01-31 12:05:42 -05002054int dm_setup_md_queue(struct mapped_device *md, struct dm_table *t)
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002055{
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002056 int r;
Bart Van Assche7e0d5742017-04-27 10:11:23 -07002057 enum dm_queue_mode type = dm_get_md_type(md);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002058
Toshi Kani545ed202016-06-22 17:54:53 -06002059 switch (type) {
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002060 case DM_TYPE_REQUEST_BASED:
Christoph Hellwigeb8db832017-01-22 18:32:46 +01002061 r = dm_old_init_request_queue(md, t);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002062 if (r) {
Mike Snitzereca7ee62016-02-20 13:45:38 -05002063 DMERR("Cannot initialize queue for request-based mapped device");
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002064 return r;
Mike Snitzerff36ab32015-02-23 17:56:37 -05002065 }
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002066 break;
2067 case DM_TYPE_MQ_REQUEST_BASED:
Mike Snitzere83068a2016-05-24 21:16:51 -04002068 r = dm_mq_init_request_queue(md, t);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002069 if (r) {
Mike Snitzereca7ee62016-02-20 13:45:38 -05002070 DMERR("Cannot initialize queue for request-based dm-mq mapped device");
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002071 return r;
2072 }
2073 break;
2074 case DM_TYPE_BIO_BASED:
Toshi Kani545ed202016-06-22 17:54:53 -06002075 case DM_TYPE_DAX_BIO_BASED:
Mike Snitzer22c11852017-12-04 21:07:37 -05002076 case DM_TYPE_NVME_BIO_BASED:
Mike Snitzereca7ee62016-02-20 13:45:38 -05002077 dm_init_normal_md_queue(md);
Mike Snitzerff36ab32015-02-23 17:56:37 -05002078 blk_queue_make_request(md->queue, dm_make_request);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002079 break;
Bart Van Assche7e0d5742017-04-27 10:11:23 -07002080 case DM_TYPE_NONE:
2081 WARN_ON_ONCE(true);
2082 break;
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002083 }
2084
2085 return 0;
2086}
2087
Mikulas Patocka2bec1f42015-02-17 14:30:53 -05002088struct mapped_device *dm_get_md(dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089{
2090 struct mapped_device *md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 unsigned minor = MINOR(dev);
2092
2093 if (MAJOR(dev) != _major || minor >= (1 << MINORBITS))
2094 return NULL;
2095
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002096 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097
2098 md = idr_find(&_minor_idr, minor);
Mike Snitzer49de5762017-11-06 16:40:10 -05002099 if (!md || md == MINOR_ALLOCED || (MINOR(disk_devt(dm_disk(md))) != minor) ||
2100 test_bit(DMF_FREEING, &md->flags) || dm_deleting_md(md)) {
2101 md = NULL;
2102 goto out;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002103 }
Mike Snitzer49de5762017-11-06 16:40:10 -05002104 dm_get(md);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002105out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002106 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107
David Teigland637842c2006-01-06 00:20:00 -08002108 return md;
2109}
Alasdair G Kergon3cf2e4b2011-10-31 20:19:06 +00002110EXPORT_SYMBOL_GPL(dm_get_md);
David Teiglandd229a952006-01-06 00:20:01 -08002111
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08002112void *dm_get_mdptr(struct mapped_device *md)
David Teigland637842c2006-01-06 00:20:00 -08002113{
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08002114 return md->interface_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115}
2116
2117void dm_set_mdptr(struct mapped_device *md, void *ptr)
2118{
2119 md->interface_ptr = ptr;
2120}
2121
2122void dm_get(struct mapped_device *md)
2123{
2124 atomic_inc(&md->holders);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002125 BUG_ON(test_bit(DMF_FREEING, &md->flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126}
2127
Mikulas Patocka09ee96b2015-02-26 11:41:28 -05002128int dm_hold(struct mapped_device *md)
2129{
2130 spin_lock(&_minor_lock);
2131 if (test_bit(DMF_FREEING, &md->flags)) {
2132 spin_unlock(&_minor_lock);
2133 return -EBUSY;
2134 }
2135 dm_get(md);
2136 spin_unlock(&_minor_lock);
2137 return 0;
2138}
2139EXPORT_SYMBOL_GPL(dm_hold);
2140
Alasdair G Kergon72d94862006-06-26 00:27:35 -07002141const char *dm_device_name(struct mapped_device *md)
2142{
2143 return md->name;
2144}
2145EXPORT_SYMBOL_GPL(dm_device_name);
2146
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002147static void __dm_destroy(struct mapped_device *md, bool wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148{
Bart Van Assche3b785fb2016-08-31 15:17:49 -07002149 struct request_queue *q = dm_get_md_queue(md);
Mike Anderson1134e5a2006-03-27 01:17:54 -08002150 struct dm_table *map;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002151 int srcu_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002153 might_sleep();
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002154
Mike Snitzer63a4f062015-03-23 17:01:43 -04002155 spin_lock(&_minor_lock);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002156 idr_replace(&_minor_idr, MINOR_ALLOCED, MINOR(disk_devt(dm_disk(md))));
2157 set_bit(DMF_FREEING, &md->flags);
2158 spin_unlock(&_minor_lock);
2159
Bart Van Assche2e91c362016-11-18 14:26:47 -08002160 blk_set_queue_dying(q);
Bart Van Assche3b785fb2016-08-31 15:17:49 -07002161
Mike Snitzer02233342015-03-10 23:49:26 -04002162 if (dm_request_based(md) && md->kworker_task)
Petr Mladek39891442016-10-11 13:55:20 -07002163 kthread_flush_worker(&md->kworker);
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002164
Mikulas Patockaab7c7bb2015-02-27 14:04:27 -05002165 /*
2166 * Take suspend_lock so that presuspend and postsuspend methods
2167 * do not race with internal suspend.
2168 */
2169 mutex_lock(&md->suspend_lock);
Junichi Nomura2a708cf2015-10-01 08:31:51 +00002170 map = dm_get_live_table(md, &srcu_idx);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002171 if (!dm_suspended_md(md)) {
2172 dm_table_presuspend_targets(map);
2173 dm_table_postsuspend_targets(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 }
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002175 /* dm_put_live_table must be before msleep, otherwise deadlock is possible */
2176 dm_put_live_table(md, srcu_idx);
Junichi Nomura2a708cf2015-10-01 08:31:51 +00002177 mutex_unlock(&md->suspend_lock);
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002178
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002179 /*
2180 * Rare, but there may be I/O requests still going to complete,
2181 * for example. Wait for all references to disappear.
2182 * No one should increment the reference count of the mapped_device,
2183 * after the mapped_device state becomes DMF_FREEING.
2184 */
2185 if (wait)
2186 while (atomic_read(&md->holders))
2187 msleep(1);
2188 else if (atomic_read(&md->holders))
2189 DMWARN("%s: Forcibly removing mapped_device still in use! (%d users)",
2190 dm_device_name(md), atomic_read(&md->holders));
2191
2192 dm_sysfs_exit(md);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002193 dm_table_destroy(__unbind(md));
2194 free_dev(md);
2195}
2196
2197void dm_destroy(struct mapped_device *md)
2198{
2199 __dm_destroy(md, true);
2200}
2201
2202void dm_destroy_immediate(struct mapped_device *md)
2203{
2204 __dm_destroy(md, false);
2205}
2206
2207void dm_put(struct mapped_device *md)
2208{
2209 atomic_dec(&md->holders);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210}
Edward Goggin79eb8852007-05-09 02:32:56 -07002211EXPORT_SYMBOL_GPL(dm_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212
Bart Van Asscheb48633f2016-08-31 15:16:02 -07002213static int dm_wait_for_completion(struct mapped_device *md, long task_state)
Milan Broz46125c12008-02-08 02:10:30 +00002214{
2215 int r = 0;
Bart Van Assche9f4c3f82016-08-31 15:16:43 -07002216 DEFINE_WAIT(wait);
Milan Broz46125c12008-02-08 02:10:30 +00002217
2218 while (1) {
Bart Van Assche9f4c3f82016-08-31 15:16:43 -07002219 prepare_to_wait(&md->wait, &wait, task_state);
Milan Broz46125c12008-02-08 02:10:30 +00002220
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00002221 if (!md_in_flight(md))
Milan Broz46125c12008-02-08 02:10:30 +00002222 break;
2223
Bart Van Asschee3fabdf2016-08-31 15:16:22 -07002224 if (signal_pending_state(task_state, current)) {
Milan Broz46125c12008-02-08 02:10:30 +00002225 r = -EINTR;
2226 break;
2227 }
2228
2229 io_schedule();
2230 }
Bart Van Assche9f4c3f82016-08-31 15:16:43 -07002231 finish_wait(&md->wait, &wait);
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002232
Milan Broz46125c12008-02-08 02:10:30 +00002233 return r;
2234}
2235
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236/*
2237 * Process the deferred bios
2238 */
Mikulas Patockaef208582009-04-02 19:55:38 +01002239static void dm_wq_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240{
Mikulas Patockaef208582009-04-02 19:55:38 +01002241 struct mapped_device *md = container_of(work, struct mapped_device,
2242 work);
Milan Broz6d6f10d2008-02-08 02:10:22 +00002243 struct bio *c;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002244 int srcu_idx;
2245 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002247 map = dm_get_live_table(md, &srcu_idx);
Mikulas Patockaef208582009-04-02 19:55:38 +01002248
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002249 while (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002250 spin_lock_irq(&md->deferred_lock);
2251 c = bio_list_pop(&md->deferred);
2252 spin_unlock_irq(&md->deferred_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01002253
Tejun Heo6a8736d2010-09-08 18:07:00 +02002254 if (!c)
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002255 break;
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002256
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002257 if (dm_request_based(md))
2258 generic_make_request(c);
Tejun Heo6a8736d2010-09-08 18:07:00 +02002259 else
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002260 __split_and_process_bio(md, map, c);
Mikulas Patocka022c2612009-04-02 19:55:39 +01002261 }
Milan Broz73d410c2008-02-08 02:10:25 +00002262
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002263 dm_put_live_table(md, srcu_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264}
2265
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002266static void dm_queue_flush(struct mapped_device *md)
Milan Broz304f3f62008-02-08 02:11:17 +00002267{
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002268 clear_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01002269 smp_mb__after_atomic();
Mikulas Patocka53d59142009-04-02 19:55:37 +01002270 queue_work(md->wq, &md->work);
Milan Broz304f3f62008-02-08 02:11:17 +00002271}
2272
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273/*
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002274 * Swap in a new table, returning the old one for the caller to destroy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 */
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002276struct dm_table *dm_swap_table(struct mapped_device *md, struct dm_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277{
Mike Christie87eb5b22013-03-01 22:45:48 +00002278 struct dm_table *live_map = NULL, *map = ERR_PTR(-EINVAL);
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002279 struct queue_limits limits;
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002280 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281
Daniel Walkere61290a2008-02-08 02:10:08 +00002282 mutex_lock(&md->suspend_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283
2284 /* device must be suspended */
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +00002285 if (!dm_suspended_md(md))
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07002286 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287
Mike Snitzer3ae70652012-09-26 23:45:45 +01002288 /*
2289 * If the new table has no data devices, retain the existing limits.
2290 * This helps multipath with queue_if_no_path if all paths disappear,
2291 * then new I/O is queued based on these limits, and then some paths
2292 * reappear.
2293 */
2294 if (dm_table_has_no_data_devices(table)) {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002295 live_map = dm_get_live_table_fast(md);
Mike Snitzer3ae70652012-09-26 23:45:45 +01002296 if (live_map)
2297 limits = md->queue->limits;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002298 dm_put_live_table_fast(md);
Mike Snitzer3ae70652012-09-26 23:45:45 +01002299 }
2300
Mike Christie87eb5b22013-03-01 22:45:48 +00002301 if (!live_map) {
2302 r = dm_calculate_queue_limits(table, &limits);
2303 if (r) {
2304 map = ERR_PTR(r);
2305 goto out;
2306 }
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002307 }
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002308
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002309 map = __bind(md, table, &limits);
Mikulas Patocka62e08242017-09-20 07:29:49 -04002310 dm_issue_global_event();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07002312out:
Daniel Walkere61290a2008-02-08 02:10:08 +00002313 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002314 return map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315}
2316
2317/*
2318 * Functions to lock and unlock any filesystem running on the
2319 * device.
2320 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002321static int lock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322{
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08002323 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324
2325 WARN_ON(md->frozen_sb);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002326
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002327 md->frozen_sb = freeze_bdev(md->bdev);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002328 if (IS_ERR(md->frozen_sb)) {
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002329 r = PTR_ERR(md->frozen_sb);
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08002330 md->frozen_sb = NULL;
2331 return r;
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002332 }
2333
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002334 set_bit(DMF_FROZEN, &md->flags);
2335
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 return 0;
2337}
2338
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002339static void unlock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340{
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002341 if (!test_bit(DMF_FROZEN, &md->flags))
2342 return;
2343
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002344 thaw_bdev(md->bdev, md->frozen_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 md->frozen_sb = NULL;
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002346 clear_bit(DMF_FROZEN, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347}
2348
2349/*
Bart Van Asscheb48633f2016-08-31 15:16:02 -07002350 * @suspend_flags: DM_SUSPEND_LOCKFS_FLAG and/or DM_SUSPEND_NOFLUSH_FLAG
2351 * @task_state: e.g. TASK_INTERRUPTIBLE or TASK_UNINTERRUPTIBLE
2352 * @dmf_suspended_flag: DMF_SUSPENDED or DMF_SUSPENDED_INTERNALLY
2353 *
Mike Snitzerffcc3932014-10-28 18:34:52 -04002354 * If __dm_suspend returns 0, the device is completely quiescent
2355 * now. There is no request-processing activity. All new requests
2356 * are being added to md->deferred list.
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002357 */
Mike Snitzerffcc3932014-10-28 18:34:52 -04002358static int __dm_suspend(struct mapped_device *md, struct dm_table *map,
Bart Van Asscheb48633f2016-08-31 15:16:02 -07002359 unsigned suspend_flags, long task_state,
Mike Snitzereaf9a732016-08-02 13:07:20 -04002360 int dmf_suspended_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361{
Mike Snitzerffcc3932014-10-28 18:34:52 -04002362 bool do_lockfs = suspend_flags & DM_SUSPEND_LOCKFS_FLAG;
2363 bool noflush = suspend_flags & DM_SUSPEND_NOFLUSH_FLAG;
2364 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365
Bart Van Assche5a8f1f82016-08-31 15:17:04 -07002366 lockdep_assert_held(&md->suspend_lock);
2367
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002368 /*
2369 * DMF_NOFLUSH_SUSPENDING must be set before presuspend.
2370 * This flag is cleared before dm_suspend returns.
2371 */
2372 if (noflush)
2373 set_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
Bart Van Assche86331f32017-04-27 10:11:26 -07002374 else
2375 pr_debug("%s: suspending with flush\n", dm_device_name(md));
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002376
Mike Snitzerd67ee212014-10-28 20:13:31 -04002377 /*
2378 * This gets reverted if there's an error later and the targets
2379 * provide the .presuspend_undo hook.
2380 */
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002381 dm_table_presuspend_targets(map);
2382
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002383 /*
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002384 * Flush I/O to the device.
2385 * Any I/O submitted after lock_fs() may not be flushed.
2386 * noflush takes precedence over do_lockfs.
2387 * (lock_fs() flushes I/Os and waits for them to complete.)
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002388 */
2389 if (!noflush && do_lockfs) {
2390 r = lock_fs(md);
Mike Snitzerd67ee212014-10-28 20:13:31 -04002391 if (r) {
2392 dm_table_presuspend_undo_targets(map);
Mike Snitzerffcc3932014-10-28 18:34:52 -04002393 return r;
Mike Snitzerd67ee212014-10-28 20:13:31 -04002394 }
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002395 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396
2397 /*
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002398 * Here we must make sure that no processes are submitting requests
2399 * to target drivers i.e. no one may be executing
2400 * __split_and_process_bio. This is called from dm_request and
2401 * dm_wq_work.
2402 *
2403 * To get all processes out of __split_and_process_bio in dm_request,
2404 * we take the write lock. To prevent any process from reentering
Tejun Heo6a8736d2010-09-08 18:07:00 +02002405 * __split_and_process_bio from dm_request and quiesce the thread
2406 * (dm_wq_work), we set BMF_BLOCK_IO_FOR_SUSPEND and call
2407 * flush_workqueue(md->wq).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 */
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01002409 set_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
Hannes Reinecke41abc4e2014-11-05 14:35:50 +01002410 if (map)
2411 synchronize_srcu(&md->io_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002413 /*
Tejun Heo29e40132010-09-08 18:07:00 +02002414 * Stop md->queue before flushing md->wq in case request-based
2415 * dm defers requests to md->wq from md->queue.
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002416 */
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002417 if (dm_request_based(md)) {
Mike Snitzereca7ee62016-02-20 13:45:38 -05002418 dm_stop_queue(md->queue);
Mike Snitzer02233342015-03-10 23:49:26 -04002419 if (md->kworker_task)
Petr Mladek39891442016-10-11 13:55:20 -07002420 kthread_flush_worker(&md->kworker);
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002421 }
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002422
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002423 flush_workqueue(md->wq);
2424
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 /*
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002426 * At this point no more requests are entering target request routines.
2427 * We call dm_wait_for_completion to wait for all existing requests
2428 * to finish.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 */
Bart Van Asscheb48633f2016-08-31 15:16:02 -07002430 r = dm_wait_for_completion(md, task_state);
Mike Snitzereaf9a732016-08-02 13:07:20 -04002431 if (!r)
2432 set_bit(dmf_suspended_flag, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433
Milan Broz6d6f10d2008-02-08 02:10:22 +00002434 if (noflush)
Mikulas Patocka022c2612009-04-02 19:55:39 +01002435 clear_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
Hannes Reinecke41abc4e2014-11-05 14:35:50 +01002436 if (map)
2437 synchronize_srcu(&md->io_barrier);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002438
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 /* were we interrupted ? */
Milan Broz46125c12008-02-08 02:10:30 +00002440 if (r < 0) {
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002441 dm_queue_flush(md);
Milan Broz73d410c2008-02-08 02:10:25 +00002442
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002443 if (dm_request_based(md))
Mike Snitzereca7ee62016-02-20 13:45:38 -05002444 dm_start_queue(md->queue);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002445
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002446 unlock_fs(md);
Mike Snitzerd67ee212014-10-28 20:13:31 -04002447 dm_table_presuspend_undo_targets(map);
Mike Snitzerffcc3932014-10-28 18:34:52 -04002448 /* pushback list is already flushed, so skip flush */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002449 }
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002450
Mike Snitzerffcc3932014-10-28 18:34:52 -04002451 return r;
2452}
2453
2454/*
2455 * We need to be able to change a mapping table under a mounted
2456 * filesystem. For example we might want to move some data in
2457 * the background. Before the table can be swapped with
2458 * dm_bind_table, dm_suspend must be called to flush any in
2459 * flight bios and ensure that any further io gets deferred.
2460 */
2461/*
2462 * Suspend mechanism in request-based dm.
2463 *
2464 * 1. Flush all I/Os by lock_fs() if needed.
2465 * 2. Stop dispatching any I/O by stopping the request_queue.
2466 * 3. Wait for all in-flight I/Os to be completed or requeued.
2467 *
2468 * To abort suspend, start the request_queue.
2469 */
2470int dm_suspend(struct mapped_device *md, unsigned suspend_flags)
2471{
2472 struct dm_table *map = NULL;
2473 int r = 0;
2474
2475retry:
2476 mutex_lock_nested(&md->suspend_lock, SINGLE_DEPTH_NESTING);
2477
2478 if (dm_suspended_md(md)) {
2479 r = -EINVAL;
2480 goto out_unlock;
2481 }
2482
2483 if (dm_suspended_internally_md(md)) {
2484 /* already internally suspended, wait for internal resume */
2485 mutex_unlock(&md->suspend_lock);
2486 r = wait_on_bit(&md->flags, DMF_SUSPENDED_INTERNALLY, TASK_INTERRUPTIBLE);
2487 if (r)
2488 return r;
2489 goto retry;
2490 }
2491
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002492 map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mike Snitzerffcc3932014-10-28 18:34:52 -04002493
Mike Snitzereaf9a732016-08-02 13:07:20 -04002494 r = __dm_suspend(md, map, suspend_flags, TASK_INTERRUPTIBLE, DMF_SUSPENDED);
Mike Snitzerffcc3932014-10-28 18:34:52 -04002495 if (r)
2496 goto out_unlock;
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002497
Kiyoshi Ueda4d4471c2009-12-10 23:52:26 +00002498 dm_table_postsuspend_targets(map);
2499
Alasdair G Kergond2874832006-11-08 17:44:43 -08002500out_unlock:
Daniel Walkere61290a2008-02-08 02:10:08 +00002501 mutex_unlock(&md->suspend_lock);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002502 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503}
2504
Mike Snitzerffcc3932014-10-28 18:34:52 -04002505static int __dm_resume(struct mapped_device *md, struct dm_table *map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506{
Mike Snitzerffcc3932014-10-28 18:34:52 -04002507 if (map) {
2508 int r = dm_table_resume_targets(map);
2509 if (r)
2510 return r;
2511 }
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002512
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002513 dm_queue_flush(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002514
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002515 /*
2516 * Flushing deferred I/Os must be done after targets are resumed
2517 * so that mapping of targets can work correctly.
2518 * Request-based dm is queueing the deferred I/Os in its request_queue.
2519 */
2520 if (dm_request_based(md))
Mike Snitzereca7ee62016-02-20 13:45:38 -05002521 dm_start_queue(md->queue);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002522
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002523 unlock_fs(md);
2524
Mike Snitzerffcc3932014-10-28 18:34:52 -04002525 return 0;
2526}
2527
2528int dm_resume(struct mapped_device *md)
2529{
Minfei Huang8dc23652016-09-06 16:00:29 +08002530 int r;
Mike Snitzerffcc3932014-10-28 18:34:52 -04002531 struct dm_table *map = NULL;
2532
2533retry:
Minfei Huang8dc23652016-09-06 16:00:29 +08002534 r = -EINVAL;
Mike Snitzerffcc3932014-10-28 18:34:52 -04002535 mutex_lock_nested(&md->suspend_lock, SINGLE_DEPTH_NESTING);
2536
2537 if (!dm_suspended_md(md))
2538 goto out;
2539
2540 if (dm_suspended_internally_md(md)) {
2541 /* already internally suspended, wait for internal resume */
2542 mutex_unlock(&md->suspend_lock);
2543 r = wait_on_bit(&md->flags, DMF_SUSPENDED_INTERNALLY, TASK_INTERRUPTIBLE);
2544 if (r)
2545 return r;
2546 goto retry;
2547 }
2548
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002549 map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mike Snitzerffcc3932014-10-28 18:34:52 -04002550 if (!map || !dm_table_get_size(map))
2551 goto out;
2552
2553 r = __dm_resume(md, map);
2554 if (r)
2555 goto out;
2556
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002557 clear_bit(DMF_SUSPENDED, &md->flags);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002558out:
Daniel Walkere61290a2008-02-08 02:10:08 +00002559 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002560
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002561 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562}
2563
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002564/*
2565 * Internal suspend/resume works like userspace-driven suspend. It waits
2566 * until all bios finish and prevents issuing new bios to the target drivers.
2567 * It may be used only from the kernel.
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002568 */
2569
Mike Snitzerffcc3932014-10-28 18:34:52 -04002570static void __dm_internal_suspend(struct mapped_device *md, unsigned suspend_flags)
2571{
2572 struct dm_table *map = NULL;
2573
Bart Van Assche1ea06542017-04-27 10:11:21 -07002574 lockdep_assert_held(&md->suspend_lock);
2575
Mikulas Patocka96b26c82015-01-08 18:52:26 -05002576 if (md->internal_suspend_count++)
Mike Snitzerffcc3932014-10-28 18:34:52 -04002577 return; /* nested internal suspend */
2578
2579 if (dm_suspended_md(md)) {
2580 set_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
2581 return; /* nest suspend */
2582 }
2583
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002584 map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mike Snitzerffcc3932014-10-28 18:34:52 -04002585
2586 /*
2587 * Using TASK_UNINTERRUPTIBLE because only NOFLUSH internal suspend is
2588 * supported. Properly supporting a TASK_INTERRUPTIBLE internal suspend
2589 * would require changing .presuspend to return an error -- avoid this
2590 * until there is a need for more elaborate variants of internal suspend.
2591 */
Mike Snitzereaf9a732016-08-02 13:07:20 -04002592 (void) __dm_suspend(md, map, suspend_flags, TASK_UNINTERRUPTIBLE,
2593 DMF_SUSPENDED_INTERNALLY);
Mike Snitzerffcc3932014-10-28 18:34:52 -04002594
2595 dm_table_postsuspend_targets(map);
2596}
2597
2598static void __dm_internal_resume(struct mapped_device *md)
2599{
Mikulas Patocka96b26c82015-01-08 18:52:26 -05002600 BUG_ON(!md->internal_suspend_count);
2601
2602 if (--md->internal_suspend_count)
Mike Snitzerffcc3932014-10-28 18:34:52 -04002603 return; /* resume from nested internal suspend */
2604
2605 if (dm_suspended_md(md))
2606 goto done; /* resume from nested suspend */
2607
2608 /*
2609 * NOTE: existing callers don't need to call dm_table_resume_targets
2610 * (which may fail -- so best to avoid it for now by passing NULL map)
2611 */
2612 (void) __dm_resume(md, NULL);
2613
2614done:
2615 clear_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
2616 smp_mb__after_atomic();
2617 wake_up_bit(&md->flags, DMF_SUSPENDED_INTERNALLY);
2618}
2619
2620void dm_internal_suspend_noflush(struct mapped_device *md)
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002621{
2622 mutex_lock(&md->suspend_lock);
Mike Snitzerffcc3932014-10-28 18:34:52 -04002623 __dm_internal_suspend(md, DM_SUSPEND_NOFLUSH_FLAG);
2624 mutex_unlock(&md->suspend_lock);
2625}
2626EXPORT_SYMBOL_GPL(dm_internal_suspend_noflush);
2627
2628void dm_internal_resume(struct mapped_device *md)
2629{
2630 mutex_lock(&md->suspend_lock);
2631 __dm_internal_resume(md);
2632 mutex_unlock(&md->suspend_lock);
2633}
2634EXPORT_SYMBOL_GPL(dm_internal_resume);
2635
2636/*
2637 * Fast variants of internal suspend/resume hold md->suspend_lock,
2638 * which prevents interaction with userspace-driven suspend.
2639 */
2640
2641void dm_internal_suspend_fast(struct mapped_device *md)
2642{
2643 mutex_lock(&md->suspend_lock);
2644 if (dm_suspended_md(md) || dm_suspended_internally_md(md))
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002645 return;
2646
2647 set_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
2648 synchronize_srcu(&md->io_barrier);
2649 flush_workqueue(md->wq);
2650 dm_wait_for_completion(md, TASK_UNINTERRUPTIBLE);
2651}
Mikulas Patockab735fed2015-02-26 11:40:35 -05002652EXPORT_SYMBOL_GPL(dm_internal_suspend_fast);
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002653
Mike Snitzerffcc3932014-10-28 18:34:52 -04002654void dm_internal_resume_fast(struct mapped_device *md)
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002655{
Mike Snitzerffcc3932014-10-28 18:34:52 -04002656 if (dm_suspended_md(md) || dm_suspended_internally_md(md))
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002657 goto done;
2658
2659 dm_queue_flush(md);
2660
2661done:
2662 mutex_unlock(&md->suspend_lock);
2663}
Mikulas Patockab735fed2015-02-26 11:40:35 -05002664EXPORT_SYMBOL_GPL(dm_internal_resume_fast);
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002665
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666/*-----------------------------------------------------------------
2667 * Event notification.
2668 *---------------------------------------------------------------*/
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00002669int dm_kobject_uevent(struct mapped_device *md, enum kobject_action action,
Milan Broz60935eb2009-06-22 10:12:30 +01002670 unsigned cookie)
Alasdair G Kergon69267a32007-12-13 14:15:57 +00002671{
Milan Broz60935eb2009-06-22 10:12:30 +01002672 char udev_cookie[DM_COOKIE_LENGTH];
2673 char *envp[] = { udev_cookie, NULL };
2674
2675 if (!cookie)
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00002676 return kobject_uevent(&disk_to_dev(md->disk)->kobj, action);
Milan Broz60935eb2009-06-22 10:12:30 +01002677 else {
2678 snprintf(udev_cookie, DM_COOKIE_LENGTH, "%s=%u",
2679 DM_COOKIE_ENV_VAR_NAME, cookie);
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00002680 return kobject_uevent_env(&disk_to_dev(md->disk)->kobj,
2681 action, envp);
Milan Broz60935eb2009-06-22 10:12:30 +01002682 }
Alasdair G Kergon69267a32007-12-13 14:15:57 +00002683}
2684
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002685uint32_t dm_next_uevent_seq(struct mapped_device *md)
2686{
2687 return atomic_add_return(1, &md->uevent_seq);
2688}
2689
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690uint32_t dm_get_event_nr(struct mapped_device *md)
2691{
2692 return atomic_read(&md->event_nr);
2693}
2694
2695int dm_wait_event(struct mapped_device *md, int event_nr)
2696{
2697 return wait_event_interruptible(md->eventq,
2698 (event_nr != atomic_read(&md->event_nr)));
2699}
2700
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002701void dm_uevent_add(struct mapped_device *md, struct list_head *elist)
2702{
2703 unsigned long flags;
2704
2705 spin_lock_irqsave(&md->uevent_lock, flags);
2706 list_add(elist, &md->uevent_list);
2707 spin_unlock_irqrestore(&md->uevent_lock, flags);
2708}
2709
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710/*
2711 * The gendisk is only valid as long as you have a reference
2712 * count on 'md'.
2713 */
2714struct gendisk *dm_disk(struct mapped_device *md)
2715{
2716 return md->disk;
2717}
Sami Tolvanen65ff5b72015-03-18 15:52:14 +00002718EXPORT_SYMBOL_GPL(dm_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719
Milan Broz784aae72009-01-06 03:05:12 +00002720struct kobject *dm_kobject(struct mapped_device *md)
2721{
Mikulas Patocka2995fa72014-01-13 19:37:54 -05002722 return &md->kobj_holder.kobj;
Milan Broz784aae72009-01-06 03:05:12 +00002723}
2724
Milan Broz784aae72009-01-06 03:05:12 +00002725struct mapped_device *dm_get_from_kobject(struct kobject *kobj)
2726{
2727 struct mapped_device *md;
2728
Mikulas Patocka2995fa72014-01-13 19:37:54 -05002729 md = container_of(kobj, struct mapped_device, kobj_holder.kobj);
Milan Broz784aae72009-01-06 03:05:12 +00002730
Hou Taob9a41d22017-11-01 15:42:36 +08002731 spin_lock(&_minor_lock);
2732 if (test_bit(DMF_FREEING, &md->flags) || dm_deleting_md(md)) {
2733 md = NULL;
2734 goto out;
2735 }
Milan Broz784aae72009-01-06 03:05:12 +00002736 dm_get(md);
Hou Taob9a41d22017-11-01 15:42:36 +08002737out:
2738 spin_unlock(&_minor_lock);
2739
Milan Broz784aae72009-01-06 03:05:12 +00002740 return md;
2741}
2742
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +00002743int dm_suspended_md(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744{
2745 return test_bit(DMF_SUSPENDED, &md->flags);
2746}
2747
Mike Snitzerffcc3932014-10-28 18:34:52 -04002748int dm_suspended_internally_md(struct mapped_device *md)
2749{
2750 return test_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
2751}
2752
Mikulas Patocka2c140a22013-11-01 18:27:41 -04002753int dm_test_deferred_remove_flag(struct mapped_device *md)
2754{
2755 return test_bit(DMF_DEFERRED_REMOVE, &md->flags);
2756}
2757
Kiyoshi Ueda64dbce52009-12-10 23:52:27 +00002758int dm_suspended(struct dm_target *ti)
2759{
Kiyoshi Uedaecdb2e22010-03-06 02:29:52 +00002760 return dm_suspended_md(dm_table_get_md(ti->table));
Kiyoshi Ueda64dbce52009-12-10 23:52:27 +00002761}
2762EXPORT_SYMBOL_GPL(dm_suspended);
2763
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002764int dm_noflush_suspending(struct dm_target *ti)
2765{
Kiyoshi Uedaecdb2e22010-03-06 02:29:52 +00002766 return __noflush_suspending(dm_table_get_md(ti->table));
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002767}
2768EXPORT_SYMBOL_GPL(dm_noflush_suspending);
2769
Bart Van Assche7e0d5742017-04-27 10:11:23 -07002770struct dm_md_mempools *dm_alloc_md_mempools(struct mapped_device *md, enum dm_queue_mode type,
Mike Snitzer0776aa02017-12-08 14:40:52 -05002771 unsigned integrity, unsigned per_io_data_size,
2772 unsigned min_pool_size)
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002773{
Mike Snitzer115485e2016-02-22 12:16:21 -05002774 struct dm_md_mempools *pools = kzalloc_node(sizeof(*pools), GFP_KERNEL, md->numa_node_id);
Mike Snitzer78d8e582015-06-26 10:01:13 -04002775 unsigned int pool_size = 0;
Mike Snitzer64f52b02017-12-11 23:17:47 -05002776 unsigned int front_pad, io_front_pad;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002777
2778 if (!pools)
Mike Snitzer4e6e36c2015-06-26 09:42:57 -04002779 return NULL;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002780
Mike Snitzer78d8e582015-06-26 10:01:13 -04002781 switch (type) {
2782 case DM_TYPE_BIO_BASED:
Toshi Kani545ed202016-06-22 17:54:53 -06002783 case DM_TYPE_DAX_BIO_BASED:
Mike Snitzer22c11852017-12-04 21:07:37 -05002784 case DM_TYPE_NVME_BIO_BASED:
Mike Snitzer0776aa02017-12-08 14:40:52 -05002785 pool_size = max(dm_get_reserved_bio_based_ios(), min_pool_size);
Mike Snitzer30187e12016-01-31 13:28:26 -05002786 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 -05002787 io_front_pad = roundup(front_pad, __alignof__(struct dm_io)) + offsetof(struct dm_io, tio);
2788 pools->io_bs = bioset_create(pool_size, io_front_pad, 0);
2789 if (!pools->io_bs)
2790 goto out;
2791 if (integrity && bioset_integrity_create(pools->io_bs, pool_size))
2792 goto out;
Mike Snitzer78d8e582015-06-26 10:01:13 -04002793 break;
2794 case DM_TYPE_REQUEST_BASED:
Mike Snitzer78d8e582015-06-26 10:01:13 -04002795 case DM_TYPE_MQ_REQUEST_BASED:
Mike Snitzer0776aa02017-12-08 14:40:52 -05002796 pool_size = max(dm_get_reserved_rq_based_ios(), min_pool_size);
Mike Snitzer78d8e582015-06-26 10:01:13 -04002797 front_pad = offsetof(struct dm_rq_clone_bio_info, clone);
Mike Snitzer591ddcf2016-01-31 12:05:42 -05002798 /* per_io_data_size is used for blk-mq pdu at queue allocation */
Mike Snitzer78d8e582015-06-26 10:01:13 -04002799 break;
2800 default:
2801 BUG();
2802 }
2803
Mike Snitzer4a3f54d2017-11-22 15:37:43 -05002804 pools->bs = bioset_create(pool_size, front_pad, 0);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002805 if (!pools->bs)
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00002806 goto out;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002807
Martin K. Petersena91a2782011-03-17 11:11:05 +01002808 if (integrity && bioset_integrity_create(pools->bs, pool_size))
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00002809 goto out;
Martin K. Petersena91a2782011-03-17 11:11:05 +01002810
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002811 return pools;
Mike Snitzer78d8e582015-06-26 10:01:13 -04002812
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00002813out:
2814 dm_free_md_mempools(pools);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002815
Mike Snitzer4e6e36c2015-06-26 09:42:57 -04002816 return NULL;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002817}
2818
2819void dm_free_md_mempools(struct dm_md_mempools *pools)
2820{
2821 if (!pools)
2822 return;
2823
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002824 if (pools->bs)
2825 bioset_free(pools->bs);
Mike Snitzer64f52b02017-12-11 23:17:47 -05002826 if (pools->io_bs)
2827 bioset_free(pools->io_bs);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002828
2829 kfree(pools);
2830}
2831
Christoph Hellwig9c72bad2016-07-08 21:23:51 +09002832struct dm_pr {
2833 u64 old_key;
2834 u64 new_key;
2835 u32 flags;
2836 bool fail_early;
2837};
2838
2839static int dm_call_pr(struct block_device *bdev, iterate_devices_callout_fn fn,
2840 void *data)
2841{
2842 struct mapped_device *md = bdev->bd_disk->private_data;
2843 struct dm_table *table;
2844 struct dm_target *ti;
2845 int ret = -ENOTTY, srcu_idx;
2846
2847 table = dm_get_live_table(md, &srcu_idx);
2848 if (!table || !dm_table_get_size(table))
2849 goto out;
2850
2851 /* We only support devices that have a single target */
2852 if (dm_table_get_num_targets(table) != 1)
2853 goto out;
2854 ti = dm_table_get_target(table, 0);
2855
2856 ret = -EINVAL;
2857 if (!ti->type->iterate_devices)
2858 goto out;
2859
2860 ret = ti->type->iterate_devices(ti, fn, data);
2861out:
2862 dm_put_live_table(md, srcu_idx);
2863 return ret;
2864}
2865
2866/*
2867 * For register / unregister we need to manually call out to every path.
2868 */
2869static int __dm_pr_register(struct dm_target *ti, struct dm_dev *dev,
2870 sector_t start, sector_t len, void *data)
2871{
2872 struct dm_pr *pr = data;
2873 const struct pr_ops *ops = dev->bdev->bd_disk->fops->pr_ops;
2874
2875 if (!ops || !ops->pr_register)
2876 return -EOPNOTSUPP;
2877 return ops->pr_register(dev->bdev, pr->old_key, pr->new_key, pr->flags);
2878}
2879
Christoph Hellwig71cdb692015-10-15 14:10:51 +02002880static int dm_pr_register(struct block_device *bdev, u64 old_key, u64 new_key,
Mike Snitzer956a4022016-02-18 16:13:51 -05002881 u32 flags)
Christoph Hellwig71cdb692015-10-15 14:10:51 +02002882{
Christoph Hellwig9c72bad2016-07-08 21:23:51 +09002883 struct dm_pr pr = {
2884 .old_key = old_key,
2885 .new_key = new_key,
2886 .flags = flags,
2887 .fail_early = true,
2888 };
2889 int ret;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02002890
Christoph Hellwig9c72bad2016-07-08 21:23:51 +09002891 ret = dm_call_pr(bdev, __dm_pr_register, &pr);
2892 if (ret && new_key) {
2893 /* unregister all paths if we failed to register any path */
2894 pr.old_key = new_key;
2895 pr.new_key = 0;
2896 pr.flags = 0;
2897 pr.fail_early = false;
2898 dm_call_pr(bdev, __dm_pr_register, &pr);
2899 }
Christoph Hellwig71cdb692015-10-15 14:10:51 +02002900
Christoph Hellwig9c72bad2016-07-08 21:23:51 +09002901 return ret;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02002902}
2903
2904static int dm_pr_reserve(struct block_device *bdev, u64 key, enum pr_type type,
Mike Snitzer956a4022016-02-18 16:13:51 -05002905 u32 flags)
Christoph Hellwig71cdb692015-10-15 14:10:51 +02002906{
2907 struct mapped_device *md = bdev->bd_disk->private_data;
2908 const struct pr_ops *ops;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02002909 fmode_t mode;
Mike Snitzer956a4022016-02-18 16:13:51 -05002910 int r;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02002911
Mike Snitzer956a4022016-02-18 16:13:51 -05002912 r = dm_grab_bdev_for_ioctl(md, &bdev, &mode);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02002913 if (r < 0)
2914 return r;
2915
2916 ops = bdev->bd_disk->fops->pr_ops;
2917 if (ops && ops->pr_reserve)
2918 r = ops->pr_reserve(bdev, key, type, flags);
2919 else
2920 r = -EOPNOTSUPP;
2921
Mike Snitzer956a4022016-02-18 16:13:51 -05002922 bdput(bdev);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02002923 return r;
2924}
2925
2926static int dm_pr_release(struct block_device *bdev, u64 key, enum pr_type type)
2927{
2928 struct mapped_device *md = bdev->bd_disk->private_data;
2929 const struct pr_ops *ops;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02002930 fmode_t mode;
Mike Snitzer956a4022016-02-18 16:13:51 -05002931 int r;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02002932
Mike Snitzer956a4022016-02-18 16:13:51 -05002933 r = dm_grab_bdev_for_ioctl(md, &bdev, &mode);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02002934 if (r < 0)
2935 return r;
2936
2937 ops = bdev->bd_disk->fops->pr_ops;
2938 if (ops && ops->pr_release)
2939 r = ops->pr_release(bdev, key, type);
2940 else
2941 r = -EOPNOTSUPP;
2942
Mike Snitzer956a4022016-02-18 16:13:51 -05002943 bdput(bdev);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02002944 return r;
2945}
2946
2947static int dm_pr_preempt(struct block_device *bdev, u64 old_key, u64 new_key,
Mike Snitzer956a4022016-02-18 16:13:51 -05002948 enum pr_type type, bool abort)
Christoph Hellwig71cdb692015-10-15 14:10:51 +02002949{
2950 struct mapped_device *md = bdev->bd_disk->private_data;
2951 const struct pr_ops *ops;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02002952 fmode_t mode;
Mike Snitzer956a4022016-02-18 16:13:51 -05002953 int r;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02002954
Mike Snitzer956a4022016-02-18 16:13:51 -05002955 r = dm_grab_bdev_for_ioctl(md, &bdev, &mode);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02002956 if (r < 0)
2957 return r;
2958
2959 ops = bdev->bd_disk->fops->pr_ops;
2960 if (ops && ops->pr_preempt)
2961 r = ops->pr_preempt(bdev, old_key, new_key, type, abort);
2962 else
2963 r = -EOPNOTSUPP;
2964
Mike Snitzer956a4022016-02-18 16:13:51 -05002965 bdput(bdev);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02002966 return r;
2967}
2968
2969static int dm_pr_clear(struct block_device *bdev, u64 key)
2970{
2971 struct mapped_device *md = bdev->bd_disk->private_data;
2972 const struct pr_ops *ops;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02002973 fmode_t mode;
Mike Snitzer956a4022016-02-18 16:13:51 -05002974 int r;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02002975
Mike Snitzer956a4022016-02-18 16:13:51 -05002976 r = dm_grab_bdev_for_ioctl(md, &bdev, &mode);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02002977 if (r < 0)
2978 return r;
2979
2980 ops = bdev->bd_disk->fops->pr_ops;
2981 if (ops && ops->pr_clear)
2982 r = ops->pr_clear(bdev, key);
2983 else
2984 r = -EOPNOTSUPP;
2985
Mike Snitzer956a4022016-02-18 16:13:51 -05002986 bdput(bdev);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02002987 return r;
2988}
2989
2990static const struct pr_ops dm_pr_ops = {
2991 .pr_register = dm_pr_register,
2992 .pr_reserve = dm_pr_reserve,
2993 .pr_release = dm_pr_release,
2994 .pr_preempt = dm_pr_preempt,
2995 .pr_clear = dm_pr_clear,
2996};
2997
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07002998static const struct block_device_operations dm_blk_dops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 .open = dm_blk_open,
3000 .release = dm_blk_close,
Milan Brozaa129a22006-10-03 01:15:15 -07003001 .ioctl = dm_blk_ioctl,
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08003002 .getgeo = dm_blk_getgeo,
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003003 .pr_ops = &dm_pr_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004 .owner = THIS_MODULE
3005};
3006
Dan Williamsf26c5712017-04-12 12:35:44 -07003007static const struct dax_operations dm_dax_ops = {
3008 .direct_access = dm_dax_direct_access,
Dan Williams7e026c82017-05-29 12:57:56 -07003009 .copy_from_iter = dm_dax_copy_from_iter,
Dan Williamsf26c5712017-04-12 12:35:44 -07003010};
3011
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012/*
3013 * module hooks
3014 */
3015module_init(dm_init);
3016module_exit(dm_exit);
3017
3018module_param(major, uint, 0);
3019MODULE_PARM_DESC(major, "The major number of the device mapper");
Mike Snitzerf4790822013-09-12 18:06:12 -04003020
Mike Snitzere8603132013-09-12 18:06:12 -04003021module_param(reserved_bio_based_ios, uint, S_IRUGO | S_IWUSR);
3022MODULE_PARM_DESC(reserved_bio_based_ios, "Reserved IOs in bio-based mempools");
3023
Mike Snitzer115485e2016-02-22 12:16:21 -05003024module_param(dm_numa_node, int, S_IRUGO | S_IWUSR);
3025MODULE_PARM_DESC(dm_numa_node, "NUMA node for DM device memory allocations");
3026
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027MODULE_DESCRIPTION(DM_NAME " driver");
3028MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
3029MODULE_LICENSE("GPL");