blob: 01d0f9c410fb7cb6c1c977268c1a801945885d1d [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 {
66 struct mapped_device *md;
67 struct dm_table *map;
68 struct bio *bio;
69 struct dm_io *io;
70 sector_t sector;
71 unsigned sector_count;
72};
73
74/*
75 * One of these is allocated per clone bio.
76 */
77#define DM_TIO_MAGIC 7282014
78struct dm_target_io {
79 unsigned magic;
80 struct dm_io *io;
81 struct dm_target *ti;
82 unsigned target_bio_nr;
83 unsigned *len_ptr;
84 bool inside_dm_io;
85 struct bio clone;
86};
87
88/*
89 * One of these is allocated per original bio.
90 * It contains the first clone used for that original.
91 */
92#define DM_IO_MAGIC 5191977
Linus Torvalds1da177e2005-04-16 15:20:36 -070093struct dm_io {
Mike Snitzer64f52b02017-12-11 23:17:47 -050094 unsigned magic;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 struct mapped_device *md;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +020096 blk_status_t status;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 atomic_t io_count;
Mike Snitzer745dc572017-12-11 20:51:50 -050098 struct bio *orig_bio;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -080099 unsigned long start_time;
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +0100100 spinlock_t endio_lock;
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400101 struct dm_stats_aux stats_aux;
Mike Snitzer64f52b02017-12-11 23:17:47 -0500102 /* last member of dm_target_io is 'struct bio' */
103 struct dm_target_io tio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104};
105
Mike Snitzer64f52b02017-12-11 23:17:47 -0500106void *dm_per_bio_data(struct bio *bio, size_t data_size)
107{
108 struct dm_target_io *tio = container_of(bio, struct dm_target_io, clone);
109 if (!tio->inside_dm_io)
110 return (char *)bio - offsetof(struct dm_target_io, clone) - data_size;
111 return (char *)bio - offsetof(struct dm_target_io, clone) - offsetof(struct dm_io, tio) - data_size;
112}
113EXPORT_SYMBOL_GPL(dm_per_bio_data);
114
115struct bio *dm_bio_from_per_bio_data(void *data, size_t data_size)
116{
117 struct dm_io *io = (struct dm_io *)((char *)data + data_size);
118 if (io->magic == DM_IO_MAGIC)
119 return (struct bio *)((char *)io + offsetof(struct dm_io, tio) + offsetof(struct dm_target_io, clone));
120 BUG_ON(io->magic != DM_TIO_MAGIC);
121 return (struct bio *)((char *)io + offsetof(struct dm_target_io, clone));
122}
123EXPORT_SYMBOL_GPL(dm_bio_from_per_bio_data);
124
125unsigned dm_bio_get_target_bio_nr(const struct bio *bio)
126{
127 return container_of(bio, struct dm_target_io, clone)->target_bio_nr;
128}
129EXPORT_SYMBOL_GPL(dm_bio_get_target_bio_nr);
130
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -0700131#define MINOR_ALLOCED ((void *)-1)
132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133/*
134 * Bits for the md->flags field.
135 */
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +0100136#define DMF_BLOCK_IO_FOR_SUSPEND 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137#define DMF_SUSPENDED 1
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -0800138#define DMF_FROZEN 2
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700139#define DMF_FREEING 3
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700140#define DMF_DELETING 4
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800141#define DMF_NOFLUSH_SUSPENDING 5
Kent Overstreet8ae12662015-04-27 23:48:34 -0700142#define DMF_DEFERRED_REMOVE 6
143#define DMF_SUSPENDED_INTERNALLY 7
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Mike Snitzer115485e2016-02-22 12:16:21 -0500145#define DM_NUMA_NODE NUMA_NO_NODE
Mike Snitzer115485e2016-02-22 12:16:21 -0500146static int dm_numa_node = DM_NUMA_NODE;
Mike Snitzerfaad87d2016-01-28 16:52:56 -0500147
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +0100148/*
149 * For mempools pre-allocation at the table loading time.
150 */
151struct dm_md_mempools {
152 mempool_t *io_pool;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +0100153 struct bio_set *bs;
Mike Snitzer64f52b02017-12-11 23:17:47 -0500154 struct bio_set *io_bs;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +0100155};
156
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500157struct table_device {
158 struct list_head list;
Elena Reshetovab0b4d7c2017-10-20 10:37:39 +0300159 refcount_t count;
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500160 struct dm_dev dm_dev;
161};
162
Christoph Lametere18b8902006-12-06 20:33:20 -0800163static struct kmem_cache *_io_cache;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000164static struct kmem_cache *_rq_tio_cache;
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500165static struct kmem_cache *_rq_cache;
Kent Overstreet94818742012-09-07 13:44:01 -0700166
Mike Snitzerf4790822013-09-12 18:06:12 -0400167/*
Mike Snitzere8603132013-09-12 18:06:12 -0400168 * Bio-based DM's mempools' reserved IOs set by the user.
169 */
Mike Snitzer4cc96132016-05-12 16:28:10 -0400170#define RESERVED_BIO_BASED_IOS 16
Mike Snitzere8603132013-09-12 18:06:12 -0400171static unsigned reserved_bio_based_ios = RESERVED_BIO_BASED_IOS;
172
Mike Snitzer115485e2016-02-22 12:16:21 -0500173static int __dm_get_module_param_int(int *module_param, int min, int max)
174{
Mark Rutland6aa7de02017-10-23 14:07:29 -0700175 int param = READ_ONCE(*module_param);
Mike Snitzer115485e2016-02-22 12:16:21 -0500176 int modified_param = 0;
177 bool modified = true;
178
179 if (param < min)
180 modified_param = min;
181 else if (param > max)
182 modified_param = max;
183 else
184 modified = false;
185
186 if (modified) {
187 (void)cmpxchg(module_param, param, modified_param);
188 param = modified_param;
189 }
190
191 return param;
192}
193
Mike Snitzer4cc96132016-05-12 16:28:10 -0400194unsigned __dm_get_module_param(unsigned *module_param,
195 unsigned def, unsigned max)
Mike Snitzerf4790822013-09-12 18:06:12 -0400196{
Mark Rutland6aa7de02017-10-23 14:07:29 -0700197 unsigned param = READ_ONCE(*module_param);
Mike Snitzer09c2d532015-02-27 22:25:26 -0500198 unsigned modified_param = 0;
Mike Snitzerf4790822013-09-12 18:06:12 -0400199
Mike Snitzer09c2d532015-02-27 22:25:26 -0500200 if (!param)
201 modified_param = def;
202 else if (param > max)
203 modified_param = max;
Mike Snitzerf4790822013-09-12 18:06:12 -0400204
Mike Snitzer09c2d532015-02-27 22:25:26 -0500205 if (modified_param) {
206 (void)cmpxchg(module_param, param, modified_param);
207 param = modified_param;
Mike Snitzerf4790822013-09-12 18:06:12 -0400208 }
209
Mike Snitzer09c2d532015-02-27 22:25:26 -0500210 return param;
Mike Snitzerf4790822013-09-12 18:06:12 -0400211}
212
Mike Snitzere8603132013-09-12 18:06:12 -0400213unsigned dm_get_reserved_bio_based_ios(void)
214{
Mike Snitzer09c2d532015-02-27 22:25:26 -0500215 return __dm_get_module_param(&reserved_bio_based_ios,
Mike Snitzer4cc96132016-05-12 16:28:10 -0400216 RESERVED_BIO_BASED_IOS, DM_RESERVED_MAX_IOS);
Mike Snitzere8603132013-09-12 18:06:12 -0400217}
218EXPORT_SYMBOL_GPL(dm_get_reserved_bio_based_ios);
219
Mike Snitzer115485e2016-02-22 12:16:21 -0500220static unsigned dm_get_numa_node(void)
221{
222 return __dm_get_module_param_int(&dm_numa_node,
223 DM_NUMA_NODE, num_online_nodes() - 1);
224}
225
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226static int __init local_init(void)
227{
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100228 int r = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 /* allocate a slab for the dm_ios */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100231 _io_cache = KMEM_CACHE(dm_io, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 if (!_io_cache)
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100233 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000235 _rq_tio_cache = KMEM_CACHE(dm_rq_target_io, 0);
236 if (!_rq_tio_cache)
Mikulas Patockadba14162012-10-12 21:02:15 +0100237 goto out_free_io_cache;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000238
Mike Snitzereca7ee62016-02-20 13:45:38 -0500239 _rq_cache = kmem_cache_create("dm_old_clone_request", sizeof(struct request),
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500240 __alignof__(struct request), 0, NULL);
241 if (!_rq_cache)
242 goto out_free_rq_tio_cache;
243
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100244 r = dm_uevent_init();
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100245 if (r)
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500246 goto out_free_rq_cache;
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100247
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400248 deferred_remove_workqueue = alloc_workqueue("kdmremove", WQ_UNBOUND, 1);
249 if (!deferred_remove_workqueue) {
250 r = -ENOMEM;
251 goto out_uevent_exit;
252 }
253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 _major = major;
255 r = register_blkdev(_major, _name);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100256 if (r < 0)
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400257 goto out_free_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259 if (!_major)
260 _major = r;
261
262 return 0;
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100263
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400264out_free_workqueue:
265 destroy_workqueue(deferred_remove_workqueue);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100266out_uevent_exit:
267 dm_uevent_exit();
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500268out_free_rq_cache:
269 kmem_cache_destroy(_rq_cache);
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000270out_free_rq_tio_cache:
271 kmem_cache_destroy(_rq_tio_cache);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100272out_free_io_cache:
273 kmem_cache_destroy(_io_cache);
274
275 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276}
277
278static void local_exit(void)
279{
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400280 flush_scheduled_work();
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400281 destroy_workqueue(deferred_remove_workqueue);
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400282
Mike Snitzer1ae49ea2014-12-05 17:11:05 -0500283 kmem_cache_destroy(_rq_cache);
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000284 kmem_cache_destroy(_rq_tio_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 kmem_cache_destroy(_io_cache);
Akinobu Mita00d59402007-07-17 04:03:46 -0700286 unregister_blkdev(_major, _name);
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100287 dm_uevent_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
289 _major = 0;
290
291 DMINFO("cleaned up");
292}
293
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000294static int (*_inits[])(void) __initdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 local_init,
296 dm_target_init,
297 dm_linear_init,
298 dm_stripe_init,
Mikulas Patocka952b3552009-12-10 23:51:57 +0000299 dm_io_init,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100300 dm_kcopyd_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 dm_interface_init,
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400302 dm_statistics_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303};
304
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000305static void (*_exits[])(void) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 local_exit,
307 dm_target_exit,
308 dm_linear_exit,
309 dm_stripe_exit,
Mikulas Patocka952b3552009-12-10 23:51:57 +0000310 dm_io_exit,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100311 dm_kcopyd_exit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 dm_interface_exit,
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400313 dm_statistics_exit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314};
315
316static int __init dm_init(void)
317{
318 const int count = ARRAY_SIZE(_inits);
319
320 int r, i;
321
322 for (i = 0; i < count; i++) {
323 r = _inits[i]();
324 if (r)
325 goto bad;
326 }
327
328 return 0;
329
330 bad:
331 while (i--)
332 _exits[i]();
333
334 return r;
335}
336
337static void __exit dm_exit(void)
338{
339 int i = ARRAY_SIZE(_exits);
340
341 while (i--)
342 _exits[i]();
Alasdair G Kergond15b7742011-08-02 12:32:01 +0100343
344 /*
345 * Should be empty by this point.
346 */
Alasdair G Kergond15b7742011-08-02 12:32:01 +0100347 idr_destroy(&_minor_idr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348}
349
350/*
351 * Block device functions
352 */
Mike Anderson432a2122009-12-10 23:52:20 +0000353int dm_deleting_md(struct mapped_device *md)
354{
355 return test_bit(DMF_DELETING, &md->flags);
356}
357
Al Virofe5f9f22008-03-02 10:29:31 -0500358static int dm_blk_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359{
360 struct mapped_device *md;
361
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700362 spin_lock(&_minor_lock);
363
Al Virofe5f9f22008-03-02 10:29:31 -0500364 md = bdev->bd_disk->private_data;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700365 if (!md)
366 goto out;
367
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700368 if (test_bit(DMF_FREEING, &md->flags) ||
Mike Anderson432a2122009-12-10 23:52:20 +0000369 dm_deleting_md(md)) {
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700370 md = NULL;
371 goto out;
372 }
373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 dm_get(md);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700375 atomic_inc(&md->open_count);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700376out:
377 spin_unlock(&_minor_lock);
378
379 return md ? 0 : -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380}
381
Al Virodb2a1442013-05-05 21:52:57 -0400382static void dm_blk_close(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383{
Mike Snitzer63a4f062015-03-23 17:01:43 -0400384 struct mapped_device *md;
Arnd Bergmann6e9624b2010-08-07 18:25:34 +0200385
Milan Broz4a1aeb92011-01-13 19:59:48 +0000386 spin_lock(&_minor_lock);
387
Mike Snitzer63a4f062015-03-23 17:01:43 -0400388 md = disk->private_data;
389 if (WARN_ON(!md))
390 goto out;
391
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400392 if (atomic_dec_and_test(&md->open_count) &&
393 (test_bit(DMF_DEFERRED_REMOVE, &md->flags)))
Mikulas Patockaacfe0ad2014-06-14 13:44:31 -0400394 queue_work(deferred_remove_workqueue, &deferred_remove_work);
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 dm_put(md);
Mike Snitzer63a4f062015-03-23 17:01:43 -0400397out:
Milan Broz4a1aeb92011-01-13 19:59:48 +0000398 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399}
400
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700401int dm_open_count(struct mapped_device *md)
402{
403 return atomic_read(&md->open_count);
404}
405
406/*
407 * Guarantees nothing is using the device before it's deleted.
408 */
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400409int dm_lock_for_deletion(struct mapped_device *md, bool mark_deferred, bool only_deferred)
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700410{
411 int r = 0;
412
413 spin_lock(&_minor_lock);
414
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400415 if (dm_open_count(md)) {
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700416 r = -EBUSY;
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400417 if (mark_deferred)
418 set_bit(DMF_DEFERRED_REMOVE, &md->flags);
419 } else if (only_deferred && !test_bit(DMF_DEFERRED_REMOVE, &md->flags))
420 r = -EEXIST;
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700421 else
422 set_bit(DMF_DELETING, &md->flags);
423
424 spin_unlock(&_minor_lock);
425
426 return r;
427}
428
Mikulas Patocka2c140a22013-11-01 18:27:41 -0400429int dm_cancel_deferred_remove(struct mapped_device *md)
430{
431 int r = 0;
432
433 spin_lock(&_minor_lock);
434
435 if (test_bit(DMF_DELETING, &md->flags))
436 r = -EBUSY;
437 else
438 clear_bit(DMF_DEFERRED_REMOVE, &md->flags);
439
440 spin_unlock(&_minor_lock);
441
442 return r;
443}
444
445static void do_deferred_remove(struct work_struct *w)
446{
447 dm_deferred_remove();
448}
449
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400450sector_t dm_get_size(struct mapped_device *md)
451{
452 return get_capacity(md->disk);
453}
454
Mike Snitzer9974fa22014-02-28 15:33:43 +0100455struct request_queue *dm_get_md_queue(struct mapped_device *md)
456{
457 return md->queue;
458}
459
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400460struct dm_stats *dm_get_stats(struct mapped_device *md)
461{
462 return &md->stats;
463}
464
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800465static int dm_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
466{
467 struct mapped_device *md = bdev->bd_disk->private_data;
468
469 return dm_get_geometry(md, geo);
470}
471
Mike Snitzer956a4022016-02-18 16:13:51 -0500472static int dm_grab_bdev_for_ioctl(struct mapped_device *md,
473 struct block_device **bdev,
474 fmode_t *mode)
Milan Brozaa129a22006-10-03 01:15:15 -0700475{
Mike Snitzer66482022016-02-18 15:44:39 -0500476 struct dm_target *tgt;
Hannes Reinecke6c182cd2013-07-10 23:41:15 +0100477 struct dm_table *map;
Mike Snitzer956a4022016-02-18 16:13:51 -0500478 int srcu_idx, r;
Milan Brozaa129a22006-10-03 01:15:15 -0700479
Hannes Reinecke6c182cd2013-07-10 23:41:15 +0100480retry:
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200481 r = -ENOTTY;
Mike Snitzer956a4022016-02-18 16:13:51 -0500482 map = dm_get_live_table(md, &srcu_idx);
Milan Brozaa129a22006-10-03 01:15:15 -0700483 if (!map || !dm_table_get_size(map))
484 goto out;
485
486 /* We only support devices that have a single target */
487 if (dm_table_get_num_targets(map) != 1)
488 goto out;
489
Mike Snitzer66482022016-02-18 15:44:39 -0500490 tgt = dm_table_get_target(map, 0);
491 if (!tgt->type->prepare_ioctl)
Mike Snitzer4d341d82014-11-16 14:21:47 -0500492 goto out;
Milan Brozaa129a22006-10-03 01:15:15 -0700493
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +0000494 if (dm_suspended_md(md)) {
Milan Brozaa129a22006-10-03 01:15:15 -0700495 r = -EAGAIN;
496 goto out;
497 }
498
Mike Snitzer66482022016-02-18 15:44:39 -0500499 r = tgt->type->prepare_ioctl(tgt, bdev, mode);
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200500 if (r < 0)
501 goto out;
502
Mike Snitzer956a4022016-02-18 16:13:51 -0500503 bdgrab(*bdev);
504 dm_put_live_table(md, srcu_idx);
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200505 return r;
Milan Brozaa129a22006-10-03 01:15:15 -0700506
507out:
Mike Snitzer956a4022016-02-18 16:13:51 -0500508 dm_put_live_table(md, srcu_idx);
Junichi Nomura5bbbfdf2015-11-17 09:39:26 +0000509 if (r == -ENOTCONN && !fatal_signal_pending(current)) {
Hannes Reinecke6c182cd2013-07-10 23:41:15 +0100510 msleep(10);
511 goto retry;
512 }
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200513 return r;
514}
Hannes Reinecke6c182cd2013-07-10 23:41:15 +0100515
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200516static int dm_blk_ioctl(struct block_device *bdev, fmode_t mode,
517 unsigned int cmd, unsigned long arg)
518{
519 struct mapped_device *md = bdev->bd_disk->private_data;
Mike Snitzer956a4022016-02-18 16:13:51 -0500520 int r;
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200521
Mike Snitzer956a4022016-02-18 16:13:51 -0500522 r = dm_grab_bdev_for_ioctl(md, &bdev, &mode);
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200523 if (r < 0)
524 return r;
525
526 if (r > 0) {
527 /*
Christoph Hellwige980f622017-02-04 10:45:03 +0100528 * Target determined this ioctl is being issued against a
529 * subset of the parent bdev; require extra privileges.
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200530 */
Christoph Hellwige980f622017-02-04 10:45:03 +0100531 if (!capable(CAP_SYS_RAWIO)) {
532 DMWARN_LIMIT(
533 "%s: sending ioctl %x to DM device without required privilege.",
534 current->comm, cmd);
535 r = -ENOIOCTLCMD;
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200536 goto out;
Christoph Hellwige980f622017-02-04 10:45:03 +0100537 }
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200538 }
539
Mike Snitzer66482022016-02-18 15:44:39 -0500540 r = __blkdev_driver_ioctl(bdev, mode, cmd, arg);
Christoph Hellwige56f81e2015-10-15 14:10:50 +0200541out:
Mike Snitzer956a4022016-02-18 16:13:51 -0500542 bdput(bdev);
Milan Brozaa129a22006-10-03 01:15:15 -0700543 return r;
544}
545
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100546static struct dm_io *alloc_io(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547{
Mike Snitzer64f52b02017-12-11 23:17:47 -0500548 struct dm_io *io;
549 struct dm_target_io *tio;
550 struct bio *clone;
551
552 clone = bio_alloc_bioset(GFP_NOIO, 0, md->io_bs);
553 if (!clone)
554 return NULL;
555
556 tio = container_of(clone, struct dm_target_io, clone);
557 tio->inside_dm_io = true;
558 tio->io = NULL;
559
560 io = container_of(tio, struct dm_io, tio);
561 io->magic = DM_IO_MAGIC;
562
563 return io;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564}
565
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100566static void free_io(struct mapped_device *md, struct dm_io *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567{
Mike Snitzer64f52b02017-12-11 23:17:47 -0500568 bio_put(&io->tio.clone);
569}
570
571static struct dm_target_io *alloc_tio(struct clone_info *ci, struct dm_target *ti,
572 unsigned target_bio_nr, gfp_t gfp_mask)
573{
574 struct dm_target_io *tio;
575
576 if (!ci->io->tio.io) {
577 /* the dm_target_io embedded in ci->io is available */
578 tio = &ci->io->tio;
579 } else {
580 struct bio *clone = bio_alloc_bioset(gfp_mask, 0, ci->md->bs);
581 if (!clone)
582 return NULL;
583
584 tio = container_of(clone, struct dm_target_io, clone);
585 tio->inside_dm_io = false;
586 }
587
588 tio->magic = DM_TIO_MAGIC;
589 tio->io = ci->io;
590 tio->ti = ti;
591 tio->target_bio_nr = target_bio_nr;
592
593 return tio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594}
595
Mike Snitzercfae7522016-04-11 12:05:38 -0400596static void free_tio(struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597{
Mike Snitzer64f52b02017-12-11 23:17:47 -0500598 if (tio->inside_dm_io)
599 return;
Mikulas Patockadba14162012-10-12 21:02:15 +0100600 bio_put(&tio->clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601}
602
Mike Snitzer4cc96132016-05-12 16:28:10 -0400603int md_in_flight(struct mapped_device *md)
Kiyoshi Ueda90abb8c2009-12-10 23:52:13 +0000604{
605 return atomic_read(&md->pending[READ]) +
606 atomic_read(&md->pending[WRITE]);
607}
608
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800609static void start_io_acct(struct dm_io *io)
610{
611 struct mapped_device *md = io->md;
Mike Snitzer745dc572017-12-11 20:51:50 -0500612 struct bio *bio = io->orig_bio;
Tejun Heoc9959052008-08-25 19:47:21 +0900613 int cpu;
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400614 int rw = bio_data_dir(bio);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800615
616 io->start_time = jiffies;
617
Tejun Heo074a7ac2008-08-25 19:56:14 +0900618 cpu = part_stat_lock();
Jens Axboed62e26b2017-06-30 21:55:08 -0600619 part_round_stats(md->queue, cpu, &dm_disk(md)->part0);
Tejun Heo074a7ac2008-08-25 19:56:14 +0900620 part_stat_unlock();
Shaohua Li1e9bb882011-03-22 08:35:35 +0100621 atomic_set(&dm_disk(md)->part0.in_flight[rw],
622 atomic_inc_return(&md->pending[rw]));
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400623
624 if (unlikely(dm_stats_used(&md->stats)))
Mike Christie528ec5a2016-06-05 14:32:03 -0500625 dm_stats_account_io(&md->stats, bio_data_dir(bio),
626 bio->bi_iter.bi_sector, bio_sectors(bio),
627 false, 0, &io->stats_aux);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800628}
629
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000630static void end_io_acct(struct dm_io *io)
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800631{
632 struct mapped_device *md = io->md;
Mike Snitzer745dc572017-12-11 20:51:50 -0500633 struct bio *bio = io->orig_bio;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800634 unsigned long duration = jiffies - io->start_time;
Gu Zheng18c0b222014-11-24 11:05:26 +0800635 int pending;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800636 int rw = bio_data_dir(bio);
637
Jens Axboed62e26b2017-06-30 21:55:08 -0600638 generic_end_io_acct(md->queue, rw, &dm_disk(md)->part0, io->start_time);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800639
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400640 if (unlikely(dm_stats_used(&md->stats)))
Mike Christie528ec5a2016-06-05 14:32:03 -0500641 dm_stats_account_io(&md->stats, bio_data_dir(bio),
642 bio->bi_iter.bi_sector, bio_sectors(bio),
643 true, duration, &io->stats_aux);
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -0400644
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100645 /*
646 * After this is decremented the bio must not be touched if it is
Tejun Heod87f4c12010-09-03 11:56:19 +0200647 * a flush.
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100648 */
Shaohua Li1e9bb882011-03-22 08:35:35 +0100649 pending = atomic_dec_return(&md->pending[rw]);
650 atomic_set(&dm_disk(md)->part0.in_flight[rw], pending);
Nikanth Karthikesan316d3152009-10-06 20:16:55 +0200651 pending += atomic_read(&md->pending[rw^0x1]);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800652
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000653 /* nudge anyone waiting on suspend queue */
654 if (!pending)
655 wake_up(&md->wait);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800656}
657
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658/*
659 * Add the bio to the list of deferred io.
660 */
Mikulas Patocka92c63902009-04-09 00:27:15 +0100661static void queue_io(struct mapped_device *md, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662{
Kiyoshi Ueda054474202010-09-08 18:07:01 +0200663 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
Kiyoshi Ueda054474202010-09-08 18:07:01 +0200665 spin_lock_irqsave(&md->deferred_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 bio_list_add(&md->deferred, bio);
Kiyoshi Ueda054474202010-09-08 18:07:01 +0200667 spin_unlock_irqrestore(&md->deferred_lock, flags);
Tejun Heo6a8736d2010-09-08 18:07:00 +0200668 queue_work(md->wq, &md->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669}
670
671/*
672 * Everyone (including functions in this file), should use this
673 * function to access the md->map field, and make sure they call
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100674 * dm_put_live_table() when finished.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 */
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100676struct dm_table *dm_get_live_table(struct mapped_device *md, int *srcu_idx) __acquires(md->io_barrier)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677{
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100678 *srcu_idx = srcu_read_lock(&md->io_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100680 return srcu_dereference(md->map, &md->io_barrier);
681}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +0100683void dm_put_live_table(struct mapped_device *md, int srcu_idx) __releases(md->io_barrier)
684{
685 srcu_read_unlock(&md->io_barrier, srcu_idx);
686}
687
688void dm_sync_table(struct mapped_device *md)
689{
690 synchronize_srcu(&md->io_barrier);
691 synchronize_rcu_expedited();
692}
693
694/*
695 * A fast alternative to dm_get_live_table/dm_put_live_table.
696 * The caller must not block between these two functions.
697 */
698static struct dm_table *dm_get_live_table_fast(struct mapped_device *md) __acquires(RCU)
699{
700 rcu_read_lock();
701 return rcu_dereference(md->map);
702}
703
704static void dm_put_live_table_fast(struct mapped_device *md) __releases(RCU)
705{
706 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707}
708
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800709/*
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500710 * Open a table device so we can use it as a map destination.
711 */
712static int open_table_device(struct table_device *td, dev_t dev,
713 struct mapped_device *md)
714{
715 static char *_claim_ptr = "I belong to device-mapper";
716 struct block_device *bdev;
717
718 int r;
719
720 BUG_ON(td->dm_dev.bdev);
721
722 bdev = blkdev_get_by_dev(dev, td->dm_dev.mode | FMODE_EXCL, _claim_ptr);
723 if (IS_ERR(bdev))
724 return PTR_ERR(bdev);
725
726 r = bd_link_disk_holder(bdev, dm_disk(md));
727 if (r) {
728 blkdev_put(bdev, td->dm_dev.mode | FMODE_EXCL);
729 return r;
730 }
731
732 td->dm_dev.bdev = bdev;
Dan Williams817bf402017-04-12 13:37:44 -0700733 td->dm_dev.dax_dev = dax_get_by_host(bdev->bd_disk->disk_name);
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500734 return 0;
735}
736
737/*
738 * Close a table device that we've been using.
739 */
740static void close_table_device(struct table_device *td, struct mapped_device *md)
741{
742 if (!td->dm_dev.bdev)
743 return;
744
745 bd_unlink_disk_holder(td->dm_dev.bdev, dm_disk(md));
746 blkdev_put(td->dm_dev.bdev, td->dm_dev.mode | FMODE_EXCL);
Dan Williams817bf402017-04-12 13:37:44 -0700747 put_dax(td->dm_dev.dax_dev);
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500748 td->dm_dev.bdev = NULL;
Dan Williams817bf402017-04-12 13:37:44 -0700749 td->dm_dev.dax_dev = NULL;
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500750}
751
752static struct table_device *find_table_device(struct list_head *l, dev_t dev,
753 fmode_t mode) {
754 struct table_device *td;
755
756 list_for_each_entry(td, l, list)
757 if (td->dm_dev.bdev->bd_dev == dev && td->dm_dev.mode == mode)
758 return td;
759
760 return NULL;
761}
762
763int dm_get_table_device(struct mapped_device *md, dev_t dev, fmode_t mode,
764 struct dm_dev **result) {
765 int r;
766 struct table_device *td;
767
768 mutex_lock(&md->table_devices_lock);
769 td = find_table_device(&md->table_devices, dev, mode);
770 if (!td) {
Mike Snitzer115485e2016-02-22 12:16:21 -0500771 td = kmalloc_node(sizeof(*td), GFP_KERNEL, md->numa_node_id);
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500772 if (!td) {
773 mutex_unlock(&md->table_devices_lock);
774 return -ENOMEM;
775 }
776
777 td->dm_dev.mode = mode;
778 td->dm_dev.bdev = NULL;
779
780 if ((r = open_table_device(td, dev, md))) {
781 mutex_unlock(&md->table_devices_lock);
782 kfree(td);
783 return r;
784 }
785
786 format_dev_t(td->dm_dev.name, dev);
787
Elena Reshetovab0b4d7c2017-10-20 10:37:39 +0300788 refcount_set(&td->count, 1);
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500789 list_add(&td->list, &md->table_devices);
Elena Reshetovab0b4d7c2017-10-20 10:37:39 +0300790 } else {
791 refcount_inc(&td->count);
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500792 }
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500793 mutex_unlock(&md->table_devices_lock);
794
795 *result = &td->dm_dev;
796 return 0;
797}
798EXPORT_SYMBOL_GPL(dm_get_table_device);
799
800void dm_put_table_device(struct mapped_device *md, struct dm_dev *d)
801{
802 struct table_device *td = container_of(d, struct table_device, dm_dev);
803
804 mutex_lock(&md->table_devices_lock);
Elena Reshetovab0b4d7c2017-10-20 10:37:39 +0300805 if (refcount_dec_and_test(&td->count)) {
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500806 close_table_device(td, md);
807 list_del(&td->list);
808 kfree(td);
809 }
810 mutex_unlock(&md->table_devices_lock);
811}
812EXPORT_SYMBOL(dm_put_table_device);
813
814static void free_table_devices(struct list_head *devices)
815{
816 struct list_head *tmp, *next;
817
818 list_for_each_safe(tmp, next, devices) {
819 struct table_device *td = list_entry(tmp, struct table_device, list);
820
821 DMWARN("dm_destroy: %s still exists with %d references",
Elena Reshetovab0b4d7c2017-10-20 10:37:39 +0300822 td->dm_dev.name, refcount_read(&td->count));
Benjamin Marzinski86f11522014-08-13 13:53:43 -0500823 kfree(td);
824 }
825}
826
827/*
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800828 * Get the geometry associated with a dm device
829 */
830int dm_get_geometry(struct mapped_device *md, struct hd_geometry *geo)
831{
832 *geo = md->geometry;
833
834 return 0;
835}
836
837/*
838 * Set the geometry of a device.
839 */
840int dm_set_geometry(struct mapped_device *md, struct hd_geometry *geo)
841{
842 sector_t sz = (sector_t)geo->cylinders * geo->heads * geo->sectors;
843
844 if (geo->start > sz) {
845 DMWARN("Start sector is beyond the geometry limits.");
846 return -EINVAL;
847 }
848
849 md->geometry = *geo;
850
851 return 0;
852}
853
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800854static int __noflush_suspending(struct mapped_device *md)
855{
856 return test_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
857}
858
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859/*
860 * Decrements the number of outstanding ios that a bio has been
861 * cloned into, completing the original io if necc.
862 */
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200863static void dec_pending(struct dm_io *io, blk_status_t error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864{
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800865 unsigned long flags;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200866 blk_status_t io_error;
Milan Brozb35f8ca2009-03-16 17:44:36 +0000867 struct bio *bio;
868 struct mapped_device *md = io->md;
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800869
870 /* Push-back supersedes any I/O errors */
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +0100871 if (unlikely(error)) {
872 spin_lock_irqsave(&io->endio_lock, flags);
Mike Snitzer745dc572017-12-11 20:51:50 -0500873 if (!(io->status == BLK_STS_DM_REQUEUE && __noflush_suspending(md)))
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200874 io->status = error;
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +0100875 spin_unlock_irqrestore(&io->endio_lock, flags);
876 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
878 if (atomic_dec_and_test(&io->io_count)) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200879 if (io->status == BLK_STS_DM_REQUEUE) {
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800880 /*
881 * Target requested pushing back the I/O.
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800882 */
Mikulas Patocka022c2612009-04-02 19:55:39 +0100883 spin_lock_irqsave(&md->deferred_lock, flags);
Tejun Heo6a8736d2010-09-08 18:07:00 +0200884 if (__noflush_suspending(md))
Mike Snitzer745dc572017-12-11 20:51:50 -0500885 /* NOTE early return due to BLK_STS_DM_REQUEUE below */
886 bio_list_add_head(&md->deferred, io->orig_bio);
Tejun Heo6a8736d2010-09-08 18:07:00 +0200887 else
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800888 /* noflush suspend was interrupted. */
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200889 io->status = BLK_STS_IOERR;
Mikulas Patocka022c2612009-04-02 19:55:39 +0100890 spin_unlock_irqrestore(&md->deferred_lock, flags);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800891 }
892
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200893 io_error = io->status;
Mike Snitzer745dc572017-12-11 20:51:50 -0500894 bio = io->orig_bio;
Tejun Heo6a8736d2010-09-08 18:07:00 +0200895 end_io_acct(io);
896 free_io(md, io);
Jens Axboe2056a782006-03-23 20:00:26 +0100897
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200898 if (io_error == BLK_STS_DM_REQUEUE)
Tejun Heo6a8736d2010-09-08 18:07:00 +0200899 return;
900
Jens Axboe1eff9d32016-08-05 15:35:16 -0600901 if ((bio->bi_opf & REQ_PREFLUSH) && bio->bi_iter.bi_size) {
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100902 /*
Tejun Heo6a8736d2010-09-08 18:07:00 +0200903 * Preflush done for flush with data, reissue
Mike Christie28a8f0d2016-06-05 14:32:25 -0500904 * without REQ_PREFLUSH.
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100905 */
Jens Axboe1eff9d32016-08-05 15:35:16 -0600906 bio->bi_opf &= ~REQ_PREFLUSH;
Tejun Heo6a8736d2010-09-08 18:07:00 +0200907 queue_io(md, bio);
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100908 } else {
Mike Snitzerb372d362010-09-08 18:07:01 +0200909 /* done with normal IO or empty flush */
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200910 bio->bi_status = io_error;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200911 bio_endio(bio);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800912 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 }
914}
915
Mike Snitzer4cc96132016-05-12 16:28:10 -0400916void disable_write_same(struct mapped_device *md)
Mike Snitzer7eee4ae2014-06-02 15:50:06 -0400917{
918 struct queue_limits *limits = dm_get_queue_limits(md);
919
920 /* device doesn't really support WRITE SAME, disable it */
921 limits->max_write_same_sectors = 0;
922}
923
Christoph Hellwigac62d622017-04-05 19:21:05 +0200924void disable_write_zeroes(struct mapped_device *md)
925{
926 struct queue_limits *limits = dm_get_queue_limits(md);
927
928 /* device doesn't really support WRITE ZEROES, disable it */
929 limits->max_write_zeroes_sectors = 0;
930}
931
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200932static void clone_endio(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933{
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200934 blk_status_t error = bio->bi_status;
Mikulas Patockabfc6d412014-03-04 18:24:49 -0500935 struct dm_target_io *tio = container_of(bio, struct dm_target_io, clone);
Milan Brozb35f8ca2009-03-16 17:44:36 +0000936 struct dm_io *io = tio->io;
Stefan Bader9faf4002006-10-03 01:15:41 -0700937 struct mapped_device *md = tio->io->md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 dm_endio_fn endio = tio->ti->type->end_io;
939
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200940 if (unlikely(error == BLK_STS_TARGET)) {
Christoph Hellwigac62d622017-04-05 19:21:05 +0200941 if (bio_op(bio) == REQ_OP_WRITE_SAME &&
Christoph Hellwig74d46992017-08-23 19:10:32 +0200942 !bio->bi_disk->queue->limits.max_write_same_sectors)
Christoph Hellwigac62d622017-04-05 19:21:05 +0200943 disable_write_same(md);
944 if (bio_op(bio) == REQ_OP_WRITE_ZEROES &&
Christoph Hellwig74d46992017-08-23 19:10:32 +0200945 !bio->bi_disk->queue->limits.max_write_zeroes_sectors)
Christoph Hellwigac62d622017-04-05 19:21:05 +0200946 disable_write_zeroes(md);
947 }
Mike Snitzer7eee4ae2014-06-02 15:50:06 -0400948
Christoph Hellwig1be56902017-06-03 09:38:03 +0200949 if (endio) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200950 int r = endio(tio->ti, bio, &error);
Christoph Hellwig1be56902017-06-03 09:38:03 +0200951 switch (r) {
952 case DM_ENDIO_REQUEUE:
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200953 error = BLK_STS_DM_REQUEUE;
Christoph Hellwig1be56902017-06-03 09:38:03 +0200954 /*FALLTHRU*/
955 case DM_ENDIO_DONE:
956 break;
957 case DM_ENDIO_INCOMPLETE:
958 /* The target will handle the io */
959 return;
960 default:
961 DMWARN("unimplemented target endio return value: %d", r);
962 BUG();
963 }
964 }
965
Mike Snitzercfae7522016-04-11 12:05:38 -0400966 free_tio(tio);
Milan Brozb35f8ca2009-03-16 17:44:36 +0000967 dec_pending(io, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968}
969
Mike Snitzer78d8e582015-06-26 10:01:13 -0400970/*
Mike Snitzer56a67df2010-08-12 04:14:10 +0100971 * Return maximum size of I/O possible at the supplied sector up to the current
972 * target boundary.
973 */
974static sector_t max_io_len_target_boundary(sector_t sector, struct dm_target *ti)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975{
Mike Snitzer56a67df2010-08-12 04:14:10 +0100976 sector_t target_offset = dm_target_offset(ti, sector);
977
978 return ti->len - target_offset;
979}
980
981static sector_t max_io_len(sector_t sector, struct dm_target *ti)
982{
983 sector_t len = max_io_len_target_boundary(sector, ti);
Mike Snitzer542f9032012-07-27 15:08:00 +0100984 sector_t offset, max_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
986 /*
Mike Snitzer542f9032012-07-27 15:08:00 +0100987 * Does the target need to split even further?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 */
Mike Snitzer542f9032012-07-27 15:08:00 +0100989 if (ti->max_io_len) {
990 offset = dm_target_offset(ti, sector);
991 if (unlikely(ti->max_io_len & (ti->max_io_len - 1)))
992 max_len = sector_div(offset, ti->max_io_len);
993 else
994 max_len = offset & (ti->max_io_len - 1);
995 max_len = ti->max_io_len - max_len;
996
997 if (len > max_len)
998 len = max_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 }
1000
1001 return len;
1002}
1003
Mike Snitzer542f9032012-07-27 15:08:00 +01001004int dm_set_target_max_io_len(struct dm_target *ti, sector_t len)
1005{
1006 if (len > UINT_MAX) {
1007 DMERR("Specified maximum size of target IO (%llu) exceeds limit (%u)",
1008 (unsigned long long)len, UINT_MAX);
1009 ti->error = "Maximum size of target IO is too large";
1010 return -EINVAL;
1011 }
1012
1013 ti->max_io_len = (uint32_t) len;
1014
1015 return 0;
1016}
1017EXPORT_SYMBOL_GPL(dm_set_target_max_io_len);
1018
Dan Williamsf26c5712017-04-12 12:35:44 -07001019static struct dm_target *dm_dax_get_live_target(struct mapped_device *md,
1020 sector_t sector, int *srcu_idx)
Toshi Kani545ed202016-06-22 17:54:53 -06001021{
Toshi Kani545ed202016-06-22 17:54:53 -06001022 struct dm_table *map;
1023 struct dm_target *ti;
Toshi Kani545ed202016-06-22 17:54:53 -06001024
Dan Williamsf26c5712017-04-12 12:35:44 -07001025 map = dm_get_live_table(md, srcu_idx);
Toshi Kani545ed202016-06-22 17:54:53 -06001026 if (!map)
Dan Williamsf26c5712017-04-12 12:35:44 -07001027 return NULL;
Toshi Kani545ed202016-06-22 17:54:53 -06001028
1029 ti = dm_table_find_target(map, sector);
1030 if (!dm_target_is_valid(ti))
Dan Williamsf26c5712017-04-12 12:35:44 -07001031 return NULL;
1032
1033 return ti;
1034}
1035
1036static long dm_dax_direct_access(struct dax_device *dax_dev, pgoff_t pgoff,
1037 long nr_pages, void **kaddr, pfn_t *pfn)
1038{
1039 struct mapped_device *md = dax_get_private(dax_dev);
1040 sector_t sector = pgoff * PAGE_SECTORS;
1041 struct dm_target *ti;
1042 long len, ret = -EIO;
1043 int srcu_idx;
1044
1045 ti = dm_dax_get_live_target(md, sector, &srcu_idx);
1046
1047 if (!ti)
Toshi Kani545ed202016-06-22 17:54:53 -06001048 goto out;
Dan Williamsf26c5712017-04-12 12:35:44 -07001049 if (!ti->type->direct_access)
1050 goto out;
1051 len = max_io_len(sector, ti) / PAGE_SECTORS;
1052 if (len < 1)
1053 goto out;
1054 nr_pages = min(len, nr_pages);
Toshi Kani545ed202016-06-22 17:54:53 -06001055 if (ti->type->direct_access)
Dan Williams817bf402017-04-12 13:37:44 -07001056 ret = ti->type->direct_access(ti, pgoff, nr_pages, kaddr, pfn);
1057
Dan Williamsf26c5712017-04-12 12:35:44 -07001058 out:
Toshi Kani545ed202016-06-22 17:54:53 -06001059 dm_put_live_table(md, srcu_idx);
Dan Williamsf26c5712017-04-12 12:35:44 -07001060
1061 return ret;
Toshi Kani545ed202016-06-22 17:54:53 -06001062}
1063
Dan Williams7e026c82017-05-29 12:57:56 -07001064static size_t dm_dax_copy_from_iter(struct dax_device *dax_dev, pgoff_t pgoff,
1065 void *addr, size_t bytes, struct iov_iter *i)
1066{
1067 struct mapped_device *md = dax_get_private(dax_dev);
1068 sector_t sector = pgoff * PAGE_SECTORS;
1069 struct dm_target *ti;
1070 long ret = 0;
1071 int srcu_idx;
1072
1073 ti = dm_dax_get_live_target(md, sector, &srcu_idx);
1074
1075 if (!ti)
1076 goto out;
1077 if (!ti->type->dax_copy_from_iter) {
1078 ret = copy_from_iter(addr, bytes, i);
1079 goto out;
1080 }
1081 ret = ti->type->dax_copy_from_iter(ti, pgoff, addr, bytes, i);
1082 out:
1083 dm_put_live_table(md, srcu_idx);
1084
1085 return ret;
1086}
1087
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001088/*
1089 * A target may call dm_accept_partial_bio only from the map routine. It is
NeilBrownc06b3e52017-11-21 08:44:35 -05001090 * allowed for all bio types except REQ_PREFLUSH and REQ_OP_ZONE_RESET.
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001091 *
1092 * dm_accept_partial_bio informs the dm that the target only wants to process
1093 * additional n_sectors sectors of the bio and the rest of the data should be
1094 * sent in a next bio.
1095 *
1096 * A diagram that explains the arithmetics:
1097 * +--------------------+---------------+-------+
1098 * | 1 | 2 | 3 |
1099 * +--------------------+---------------+-------+
1100 *
1101 * <-------------- *tio->len_ptr --------------->
1102 * <------- bi_size ------->
1103 * <-- n_sectors -->
1104 *
1105 * Region 1 was already iterated over with bio_advance or similar function.
1106 * (it may be empty if the target doesn't use bio_advance)
1107 * Region 2 is the remaining bio size that the target wants to process.
1108 * (it may be empty if region 1 is non-empty, although there is no reason
1109 * to make it empty)
1110 * The target requires that region 3 is to be sent in the next bio.
1111 *
1112 * If the target wants to receive multiple copies of the bio (via num_*bios, etc),
1113 * the partially processed part (the sum of regions 1+2) must be the same for all
1114 * copies of the bio.
1115 */
1116void dm_accept_partial_bio(struct bio *bio, unsigned n_sectors)
1117{
1118 struct dm_target_io *tio = container_of(bio, struct dm_target_io, clone);
1119 unsigned bi_size = bio->bi_iter.bi_size >> SECTOR_SHIFT;
Jens Axboe1eff9d32016-08-05 15:35:16 -06001120 BUG_ON(bio->bi_opf & REQ_PREFLUSH);
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001121 BUG_ON(bi_size > *tio->len_ptr);
1122 BUG_ON(n_sectors > bi_size);
1123 *tio->len_ptr -= bi_size - n_sectors;
1124 bio->bi_iter.bi_size = n_sectors << SECTOR_SHIFT;
1125}
1126EXPORT_SYMBOL_GPL(dm_accept_partial_bio);
1127
Mikulas Patockad67a5f42017-02-15 11:26:10 -05001128/*
Damien Le Moal10999302017-05-08 16:40:48 -07001129 * The zone descriptors obtained with a zone report indicate
1130 * zone positions within the target device. The zone descriptors
1131 * must be remapped to match their position within the dm device.
1132 * A target may call dm_remap_zone_report after completion of a
1133 * REQ_OP_ZONE_REPORT bio to remap the zone descriptors obtained
1134 * from the target device mapping to the dm device.
1135 */
1136void dm_remap_zone_report(struct dm_target *ti, struct bio *bio, sector_t start)
1137{
1138#ifdef CONFIG_BLK_DEV_ZONED
1139 struct dm_target_io *tio = container_of(bio, struct dm_target_io, clone);
Mike Snitzer745dc572017-12-11 20:51:50 -05001140 struct bio *report_bio = tio->io->orig_bio;
Damien Le Moal10999302017-05-08 16:40:48 -07001141 struct blk_zone_report_hdr *hdr = NULL;
1142 struct blk_zone *zone;
1143 unsigned int nr_rep = 0;
1144 unsigned int ofst;
1145 struct bio_vec bvec;
1146 struct bvec_iter iter;
1147 void *addr;
1148
1149 if (bio->bi_status)
1150 return;
1151
1152 /*
1153 * Remap the start sector of the reported zones. For sequential zones,
1154 * also remap the write pointer position.
1155 */
1156 bio_for_each_segment(bvec, report_bio, iter) {
1157 addr = kmap_atomic(bvec.bv_page);
1158
1159 /* Remember the report header in the first page */
1160 if (!hdr) {
1161 hdr = addr;
1162 ofst = sizeof(struct blk_zone_report_hdr);
1163 } else
1164 ofst = 0;
1165
1166 /* Set zones start sector */
1167 while (hdr->nr_zones && ofst < bvec.bv_len) {
1168 zone = addr + ofst;
1169 if (zone->start >= start + ti->len) {
1170 hdr->nr_zones = 0;
1171 break;
1172 }
1173 zone->start = zone->start + ti->begin - start;
1174 if (zone->type != BLK_ZONE_TYPE_CONVENTIONAL) {
1175 if (zone->cond == BLK_ZONE_COND_FULL)
1176 zone->wp = zone->start + zone->len;
1177 else if (zone->cond == BLK_ZONE_COND_EMPTY)
1178 zone->wp = zone->start;
1179 else
1180 zone->wp = zone->wp + ti->begin - start;
1181 }
1182 ofst += sizeof(struct blk_zone);
1183 hdr->nr_zones--;
1184 nr_rep++;
1185 }
1186
1187 if (addr != hdr)
1188 kunmap_atomic(addr);
1189
1190 if (!hdr->nr_zones)
1191 break;
1192 }
1193
1194 if (hdr) {
1195 hdr->nr_zones = nr_rep;
1196 kunmap_atomic(hdr);
1197 }
1198
1199 bio_advance(report_bio, report_bio->bi_iter.bi_size);
1200
1201#else /* !CONFIG_BLK_DEV_ZONED */
1202 bio->bi_status = BLK_STS_NOTSUPP;
1203#endif
1204}
1205EXPORT_SYMBOL_GPL(dm_remap_zone_report);
1206
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001207static void __map_bio(struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208{
1209 int r;
Jens Axboe2056a782006-03-23 20:00:26 +01001210 sector_t sector;
Mikulas Patockadba14162012-10-12 21:02:15 +01001211 struct bio *clone = &tio->clone;
Mike Snitzer64f52b02017-12-11 23:17:47 -05001212 struct dm_io *io = tio->io;
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001213 struct dm_target *ti = tio->ti;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 clone->bi_end_io = clone_endio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
1217 /*
1218 * Map the clone. If r == 0 we don't need to do
1219 * anything, the target has assumed ownership of
1220 * this io.
1221 */
Mike Snitzer64f52b02017-12-11 23:17:47 -05001222 atomic_inc(&io->io_count);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001223 sector = clone->bi_iter.bi_sector;
Mikulas Patockad67a5f42017-02-15 11:26:10 -05001224
Mikulas Patocka7de3ee52012-12-21 20:23:41 +00001225 r = ti->type->map(ti, clone);
Christoph Hellwig846785e2017-06-03 09:38:02 +02001226 switch (r) {
1227 case DM_MAPIO_SUBMITTED:
1228 break;
1229 case DM_MAPIO_REMAPPED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 /* the bio has been remapped so dispatch it */
Christoph Hellwig74d46992017-08-23 19:10:32 +02001231 trace_block_bio_remap(clone->bi_disk->queue, clone,
Mike Snitzer64f52b02017-12-11 23:17:47 -05001232 bio_dev(io->orig_bio), sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 generic_make_request(clone);
Christoph Hellwig846785e2017-06-03 09:38:02 +02001234 break;
1235 case DM_MAPIO_KILL:
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001236 free_tio(tio);
Mike Snitzer64f52b02017-12-11 23:17:47 -05001237 dec_pending(io, BLK_STS_IOERR);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001238 break;
Christoph Hellwig846785e2017-06-03 09:38:02 +02001239 case DM_MAPIO_REQUEUE:
Mike Snitzercfae7522016-04-11 12:05:38 -04001240 free_tio(tio);
Mike Snitzer64f52b02017-12-11 23:17:47 -05001241 dec_pending(io, BLK_STS_DM_REQUEUE);
Christoph Hellwig846785e2017-06-03 09:38:02 +02001242 break;
1243 default:
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -08001244 DMWARN("unimplemented target map return value: %d", r);
1245 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 }
1247}
1248
Mikulas Patockae0d66092014-03-14 18:40:39 -04001249static void bio_setup_sector(struct bio *bio, sector_t sector, unsigned len)
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001250{
Kent Overstreet4f024f32013-10-11 15:44:27 -07001251 bio->bi_iter.bi_sector = sector;
1252 bio->bi_iter.bi_size = to_bytes(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253}
1254
1255/*
1256 * Creates a bio that consists of range of complete bvecs.
1257 */
Mike Snitzerc80914e2016-03-02 12:33:03 -05001258static int clone_bio(struct dm_target_io *tio, struct bio *bio,
1259 sector_t sector, unsigned len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260{
Mikulas Patockadba14162012-10-12 21:02:15 +01001261 struct bio *clone = &tio->clone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001263 __bio_clone_fast(clone, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
Mikulas Patockae2460f22017-04-18 16:51:48 -04001265 if (unlikely(bio_integrity(bio) != NULL)) {
1266 int r;
1267
1268 if (unlikely(!dm_target_has_integrity(tio->ti->type) &&
1269 !dm_target_passes_integrity(tio->ti->type))) {
1270 DMWARN("%s: the target %s doesn't support integrity data.",
1271 dm_device_name(tio->io->md),
1272 tio->ti->type->name);
1273 return -EIO;
1274 }
1275
1276 r = bio_integrity_clone(clone, bio, GFP_NOIO);
Mike Snitzerc80914e2016-03-02 12:33:03 -05001277 if (r < 0)
1278 return r;
1279 }
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001280
Damien Le Moal264c8692017-05-08 16:40:47 -07001281 if (bio_op(bio) != REQ_OP_ZONE_REPORT)
1282 bio_advance(clone, to_bytes(sector - clone->bi_iter.bi_sector));
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001283 clone->bi_iter.bi_size = to_bytes(len);
1284
Mikulas Patockae2460f22017-04-18 16:51:48 -04001285 if (unlikely(bio_integrity(bio) != NULL))
Dmitry Monakhovfbd08e72017-06-29 11:31:10 -07001286 bio_integrity_trim(clone);
Mike Snitzerc80914e2016-03-02 12:33:03 -05001287
1288 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289}
1290
Mike Snitzer318716d2017-11-22 14:56:12 -05001291static void alloc_multiple_bios(struct bio_list *blist, struct clone_info *ci,
1292 struct dm_target *ti, unsigned num_bios)
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001293{
Mike Snitzer318716d2017-11-22 14:56:12 -05001294 struct dm_target_io *tio;
1295 int try;
1296
1297 if (!num_bios)
1298 return;
1299
1300 if (num_bios == 1) {
1301 tio = alloc_tio(ci, ti, 0, GFP_NOIO);
1302 bio_list_add(blist, &tio->clone);
1303 return;
1304 }
1305
1306 for (try = 0; try < 2; try++) {
1307 int bio_nr;
1308 struct bio *bio;
1309
1310 if (try)
1311 mutex_lock(&ci->md->table_devices_lock);
1312 for (bio_nr = 0; bio_nr < num_bios; bio_nr++) {
1313 tio = alloc_tio(ci, ti, bio_nr, try ? GFP_NOIO : GFP_NOWAIT);
1314 if (!tio)
1315 break;
1316
1317 bio_list_add(blist, &tio->clone);
1318 }
1319 if (try)
1320 mutex_unlock(&ci->md->table_devices_lock);
1321 if (bio_nr == num_bios)
1322 return;
1323
1324 while ((bio = bio_list_pop(blist))) {
1325 tio = container_of(bio, struct dm_target_io, clone);
1326 free_tio(tio);
1327 }
1328 }
1329}
1330
1331static void __clone_and_map_simple_bio(struct clone_info *ci,
1332 struct dm_target_io *tio, unsigned *len)
1333{
Mikulas Patockadba14162012-10-12 21:02:15 +01001334 struct bio *clone = &tio->clone;
Alasdair G Kergon9015df22009-06-22 10:12:21 +01001335
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001336 tio->len_ptr = len;
1337
Junichi Nomura99778272014-10-03 11:55:16 +00001338 __bio_clone_fast(clone, ci->bio);
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001339 if (len)
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001340 bio_setup_sector(clone, ci->sector, *len);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001341
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001342 __map_bio(tio);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001343}
1344
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001345static void __send_duplicate_bios(struct clone_info *ci, struct dm_target *ti,
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001346 unsigned num_bios, unsigned *len)
Mike Snitzer06a426c2010-08-12 04:14:09 +01001347{
Mike Snitzer318716d2017-11-22 14:56:12 -05001348 struct bio_list blist = BIO_EMPTY_LIST;
1349 struct bio *bio;
1350 struct dm_target_io *tio;
Mike Snitzer06a426c2010-08-12 04:14:09 +01001351
Mike Snitzer318716d2017-11-22 14:56:12 -05001352 alloc_multiple_bios(&blist, ci, ti, num_bios);
1353
1354 while ((bio = bio_list_pop(&blist))) {
1355 tio = container_of(bio, struct dm_target_io, clone);
1356 __clone_and_map_simple_bio(ci, tio, len);
1357 }
Mike Snitzer06a426c2010-08-12 04:14:09 +01001358}
1359
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001360static int __send_empty_flush(struct clone_info *ci)
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001361{
Mike Snitzer06a426c2010-08-12 04:14:09 +01001362 unsigned target_nr = 0;
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001363 struct dm_target *ti;
1364
Mike Snitzerb372d362010-09-08 18:07:01 +02001365 BUG_ON(bio_has_data(ci->bio));
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001366 while ((ti = dm_table_get_target(ci->map, target_nr++)))
Mikulas Patocka1dd40c32014-03-14 18:41:24 -04001367 __send_duplicate_bios(ci, ti, ti->num_flush_bios, NULL);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001368
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +01001369 return 0;
1370}
1371
Mike Snitzerc80914e2016-03-02 12:33:03 -05001372static int __clone_and_map_data_bio(struct clone_info *ci, struct dm_target *ti,
NeilBrownf31c21e2017-11-22 14:25:18 +11001373 sector_t sector, unsigned *len)
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001374{
Mikulas Patockadba14162012-10-12 21:02:15 +01001375 struct bio *bio = ci->bio;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001376 struct dm_target_io *tio;
NeilBrownf31c21e2017-11-22 14:25:18 +11001377 int r;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001378
Mike Snitzer318716d2017-11-22 14:56:12 -05001379 tio = alloc_tio(ci, ti, 0, GFP_NOIO);
NeilBrownf31c21e2017-11-22 14:25:18 +11001380 tio->len_ptr = len;
1381 r = clone_bio(tio, bio, sector, *len);
1382 if (r < 0) {
1383 free_tio(tio);
1384 return r;
Alasdair G Kergonb0d8ed42013-03-01 22:45:49 +00001385 }
NeilBrownf31c21e2017-11-22 14:25:18 +11001386 __map_bio(tio);
Mike Snitzerc80914e2016-03-02 12:33:03 -05001387
NeilBrownf31c21e2017-11-22 14:25:18 +11001388 return 0;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001389}
1390
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001391typedef unsigned (*get_num_bios_fn)(struct dm_target *ti);
Mike Snitzer23508a92012-12-21 20:23:37 +00001392
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001393static unsigned get_num_discard_bios(struct dm_target *ti)
Mike Snitzer23508a92012-12-21 20:23:37 +00001394{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001395 return ti->num_discard_bios;
Mike Snitzer23508a92012-12-21 20:23:37 +00001396}
1397
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001398static unsigned get_num_write_same_bios(struct dm_target *ti)
Mike Snitzer23508a92012-12-21 20:23:37 +00001399{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001400 return ti->num_write_same_bios;
Mike Snitzer23508a92012-12-21 20:23:37 +00001401}
1402
Christoph Hellwigac62d622017-04-05 19:21:05 +02001403static unsigned get_num_write_zeroes_bios(struct dm_target *ti)
1404{
1405 return ti->num_write_zeroes_bios;
1406}
1407
Mike Snitzer23508a92012-12-21 20:23:37 +00001408typedef bool (*is_split_required_fn)(struct dm_target *ti);
1409
1410static bool is_split_required_for_discard(struct dm_target *ti)
1411{
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001412 return ti->split_discard_bios;
Mike Snitzer23508a92012-12-21 20:23:37 +00001413}
1414
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001415static int __send_changing_extent_only(struct clone_info *ci, struct dm_target *ti,
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001416 get_num_bios_fn get_num_bios,
1417 is_split_required_fn is_split_required)
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001418{
Mikulas Patockae0d66092014-03-14 18:40:39 -04001419 unsigned len;
Alasdair G Kergon55a62ee2013-03-01 22:45:47 +00001420 unsigned num_bios;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001421
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001422 /*
1423 * Even though the device advertised support for this type of
1424 * request, that does not mean every target supports it, and
1425 * reconfiguration might also have changed that since the
1426 * check was performed.
1427 */
1428 num_bios = get_num_bios ? get_num_bios(ti) : 0;
1429 if (!num_bios)
1430 return -EOPNOTSUPP;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001431
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001432 if (is_split_required && !is_split_required(ti))
1433 len = min((sector_t)ci->sector_count, max_io_len_target_boundary(ci->sector, ti));
1434 else
1435 len = min((sector_t)ci->sector_count, max_io_len(ci->sector, ti));
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001436
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001437 __send_duplicate_bios(ci, ti, num_bios, &len);
Mike Snitzer06a426c2010-08-12 04:14:09 +01001438
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001439 ci->sector += len;
1440 ci->sector_count -= len;
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001441
1442 return 0;
1443}
1444
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001445static int __send_discard(struct clone_info *ci, struct dm_target *ti)
Mike Snitzer23508a92012-12-21 20:23:37 +00001446{
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001447 return __send_changing_extent_only(ci, ti, get_num_discard_bios,
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001448 is_split_required_for_discard);
Mike Snitzer23508a92012-12-21 20:23:37 +00001449}
1450
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001451static int __send_write_same(struct clone_info *ci, struct dm_target *ti)
Mike Snitzer23508a92012-12-21 20:23:37 +00001452{
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001453 return __send_changing_extent_only(ci, ti, get_num_write_same_bios, NULL);
Mike Snitzer23508a92012-12-21 20:23:37 +00001454}
1455
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001456static int __send_write_zeroes(struct clone_info *ci, struct dm_target *ti)
Christoph Hellwigac62d622017-04-05 19:21:05 +02001457{
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001458 return __send_changing_extent_only(ci, ti, get_num_write_zeroes_bios, NULL);
Christoph Hellwigac62d622017-04-05 19:21:05 +02001459}
1460
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001461/*
Alasdair G Kergone4c93812013-03-01 22:45:47 +00001462 * Select the correct strategy for processing a non-flush bio.
1463 */
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001464static int __split_and_process_non_flush(struct clone_info *ci)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465{
Mikulas Patockadba14162012-10-12 21:02:15 +01001466 struct bio *bio = ci->bio;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001467 struct dm_target *ti;
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001468 unsigned len;
Mike Snitzerc80914e2016-03-02 12:33:03 -05001469 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001471 ti = dm_table_find_target(ci->map, ci->sector);
1472 if (!dm_target_is_valid(ti))
1473 return -EIO;
1474
Mike Snitzer3d7f4562017-12-08 15:02:11 -05001475 if (unlikely(bio_op(bio) == REQ_OP_DISCARD))
1476 return __send_discard(ci, ti);
1477 else if (unlikely(bio_op(bio) == REQ_OP_WRITE_SAME))
1478 return __send_write_same(ci, ti);
1479 else if (unlikely(bio_op(bio) == REQ_OP_WRITE_ZEROES))
1480 return __send_write_zeroes(ci, ti);
1481
Damien Le Moal264c8692017-05-08 16:40:47 -07001482 if (bio_op(bio) == REQ_OP_ZONE_REPORT)
1483 len = ci->sector_count;
1484 else
1485 len = min_t(sector_t, max_io_len(ci->sector, ti),
1486 ci->sector_count);
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001487
Mike Snitzerc80914e2016-03-02 12:33:03 -05001488 r = __clone_and_map_data_bio(ci, ti, ci->sector, &len);
1489 if (r < 0)
1490 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001492 ci->sector += len;
1493 ci->sector_count -= len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
Kent Overstreet1c3b13e2013-10-29 17:17:49 -07001495 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496}
1497
1498/*
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001499 * Entry point to split a bio into clones and submit them to the targets.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 */
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001501static void __split_and_process_bio(struct mapped_device *md,
1502 struct dm_table *map, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503{
1504 struct clone_info ci;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001505 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001507 if (unlikely(!map)) {
Tejun Heo6a8736d2010-09-08 18:07:00 +02001508 bio_io_error(bio);
Mikulas Patockaf0b9a452009-04-02 19:55:38 +01001509 return;
1510 }
Mikulas Patocka692d0eb2009-04-09 00:27:13 +01001511
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001512 ci.map = map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 ci.md = md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 ci.io = alloc_io(md);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001515 ci.io->status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 atomic_set(&ci.io->io_count, 1);
Mike Snitzer745dc572017-12-11 20:51:50 -05001517 ci.io->orig_bio = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 ci.io->md = md;
Kiyoshi Uedaf88fb982009-10-16 23:18:15 +01001519 spin_lock_init(&ci.io->endio_lock);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001520 ci.sector = bio->bi_iter.bi_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -08001522 start_io_acct(ci.io);
Alasdair G Kergonbd2a49b2013-03-01 22:45:46 +00001523
Jens Axboe1eff9d32016-08-05 15:35:16 -06001524 if (bio->bi_opf & REQ_PREFLUSH) {
Mike Snitzerb372d362010-09-08 18:07:01 +02001525 ci.bio = &ci.md->flush_bio;
1526 ci.sector_count = 0;
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001527 error = __send_empty_flush(&ci);
Mike Snitzerb372d362010-09-08 18:07:01 +02001528 /* dec_pending submits any data associated with flush */
Damien Le Moala4aa5e52017-05-08 16:40:46 -07001529 } else if (bio_op(bio) == REQ_OP_ZONE_RESET) {
1530 ci.bio = bio;
1531 ci.sector_count = 0;
1532 error = __split_and_process_non_flush(&ci);
Mike Snitzerb372d362010-09-08 18:07:01 +02001533 } else {
Tejun Heo6a8736d2010-09-08 18:07:00 +02001534 ci.bio = bio;
Tejun Heod87f4c12010-09-03 11:56:19 +02001535 ci.sector_count = bio_sectors(bio);
NeilBrown18a25da2017-09-06 09:43:28 +10001536 while (ci.sector_count && !error) {
Alasdair G Kergon14fe5942013-03-01 22:45:47 +00001537 error = __split_and_process_non_flush(&ci);
NeilBrown18a25da2017-09-06 09:43:28 +10001538 if (current->bio_list && ci.sector_count && !error) {
1539 /*
1540 * Remainder must be passed to generic_make_request()
1541 * so that it gets handled *after* bios already submitted
1542 * have been completely processed.
1543 * We take a clone of the original to store in
Mike Snitzer745dc572017-12-11 20:51:50 -05001544 * ci.io->orig_bio to be used by end_io_acct() and
NeilBrown18a25da2017-09-06 09:43:28 +10001545 * for dec_pending to use for completion handling.
1546 * As this path is not used for REQ_OP_ZONE_REPORT,
Mike Snitzer745dc572017-12-11 20:51:50 -05001547 * the usage of io->orig_bio in dm_remap_zone_report()
NeilBrown18a25da2017-09-06 09:43:28 +10001548 * won't be affected by this reassignment.
1549 */
1550 struct bio *b = bio_clone_bioset(bio, GFP_NOIO,
1551 md->queue->bio_split);
Mike Snitzer745dc572017-12-11 20:51:50 -05001552 ci.io->orig_bio = b;
NeilBrown18a25da2017-09-06 09:43:28 +10001553 bio_advance(bio, (bio_sectors(bio) - ci.sector_count) << 9);
1554 bio_chain(b, bio);
1555 generic_make_request(bio);
1556 break;
1557 }
1558 }
Tejun Heod87f4c12010-09-03 11:56:19 +02001559 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560
1561 /* drop the extra reference count */
Bart Van Assche54385bf2017-08-09 11:32:10 -07001562 dec_pending(ci.io, errno_to_blk_status(error));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564
1565/*
NeilBrown18a25da2017-09-06 09:43:28 +10001566 * The request function that remaps the bio to one target and
1567 * splits off any remainder.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 */
Jens Axboedece1632015-11-05 10:41:16 -07001569static blk_qc_t dm_make_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570{
Kevin Corry12f03a42006-02-01 03:04:52 -08001571 int rw = bio_data_dir(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 struct mapped_device *md = q->queuedata;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001573 int srcu_idx;
1574 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001576 map = dm_get_live_table(md, &srcu_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
Jens Axboed62e26b2017-06-30 21:55:08 -06001578 generic_start_io_acct(q, rw, bio_sectors(bio), &dm_disk(md)->part0);
Kevin Corry12f03a42006-02-01 03:04:52 -08001579
Tejun Heo6a8736d2010-09-08 18:07:00 +02001580 /* if we're suspended, we have to queue this io for later */
1581 if (unlikely(test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags))) {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001582 dm_put_live_table(md, srcu_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
Jens Axboe1eff9d32016-08-05 15:35:16 -06001584 if (!(bio->bi_opf & REQ_RAHEAD))
Tejun Heo6a8736d2010-09-08 18:07:00 +02001585 queue_io(md, bio);
1586 else
Alasdair G Kergon54d9a1b2009-04-09 00:27:14 +01001587 bio_io_error(bio);
Jens Axboedece1632015-11-05 10:41:16 -07001588 return BLK_QC_T_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 }
1590
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001591 __split_and_process_bio(md, map, bio);
1592 dm_put_live_table(md, srcu_idx);
Jens Axboedece1632015-11-05 10:41:16 -07001593 return BLK_QC_T_NONE;
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001594}
1595
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596static int dm_any_congested(void *congested_data, int bdi_bits)
1597{
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00001598 int r = bdi_bits;
1599 struct mapped_device *md = congested_data;
1600 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01001602 if (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
Mike Snitzere522c032016-02-02 22:35:06 -05001603 if (dm_request_based(md)) {
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001604 /*
Mike Snitzere522c032016-02-02 22:35:06 -05001605 * With request-based DM we only need to check the
1606 * top-level queue for congestion.
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001607 */
Jan Karadc3b17c2017-02-02 15:56:50 +01001608 r = md->queue->backing_dev_info->wb.state & bdi_bits;
Mike Snitzere522c032016-02-02 22:35:06 -05001609 } else {
1610 map = dm_get_live_table_fast(md);
1611 if (map)
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001612 r = dm_table_any_congested(map, bdi_bits);
Mike Snitzere522c032016-02-02 22:35:06 -05001613 dm_put_live_table_fast(md);
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00001614 }
1615 }
1616
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 return r;
1618}
1619
1620/*-----------------------------------------------------------------
1621 * An IDR is used to keep track of allocated minor numbers.
1622 *---------------------------------------------------------------*/
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001623static void free_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624{
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001625 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 idr_remove(&_minor_idr, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001627 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628}
1629
1630/*
1631 * See if the device with a specific minor # is free.
1632 */
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001633static int specific_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634{
Tejun Heoc9d76be2013-02-27 17:04:26 -08001635 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636
1637 if (minor >= (1 << MINORBITS))
1638 return -EINVAL;
1639
Tejun Heoc9d76be2013-02-27 17:04:26 -08001640 idr_preload(GFP_KERNEL);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001641 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642
Tejun Heoc9d76be2013-02-27 17:04:26 -08001643 r = idr_alloc(&_minor_idr, MINOR_ALLOCED, minor, minor + 1, GFP_NOWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001645 spin_unlock(&_minor_lock);
Tejun Heoc9d76be2013-02-27 17:04:26 -08001646 idr_preload_end();
1647 if (r < 0)
1648 return r == -ENOSPC ? -EBUSY : r;
1649 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650}
1651
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001652static int next_free_minor(int *minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653{
Tejun Heoc9d76be2013-02-27 17:04:26 -08001654 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655
Tejun Heoc9d76be2013-02-27 17:04:26 -08001656 idr_preload(GFP_KERNEL);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001657 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658
Tejun Heoc9d76be2013-02-27 17:04:26 -08001659 r = idr_alloc(&_minor_idr, MINOR_ALLOCED, 0, 1 << MINORBITS, GFP_NOWAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001661 spin_unlock(&_minor_lock);
Tejun Heoc9d76be2013-02-27 17:04:26 -08001662 idr_preload_end();
1663 if (r < 0)
1664 return r;
1665 *minor = r;
1666 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667}
1668
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07001669static const struct block_device_operations dm_blk_dops;
Dan Williamsf26c5712017-04-12 12:35:44 -07001670static const struct dax_operations dm_dax_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671
Mikulas Patocka53d59142009-04-02 19:55:37 +01001672static void dm_wq_work(struct work_struct *work);
1673
Mike Snitzer4cc96132016-05-12 16:28:10 -04001674void dm_init_md_queue(struct mapped_device *md)
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01001675{
1676 /*
Mikulas Patockaad5f4982015-10-27 19:06:55 -04001677 * Initialize data that will only be used by a non-blk-mq DM queue
1678 * - must do so here (in alloc_dev callchain) before queue is used
1679 */
1680 md->queue->queuedata = md;
Jan Karadc3b17c2017-02-02 15:56:50 +01001681 md->queue->backing_dev_info->congested_data = md;
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001682}
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01001683
Mike Snitzer4cc96132016-05-12 16:28:10 -04001684void dm_init_normal_md_queue(struct mapped_device *md)
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001685{
Mike Snitzer17e149b2015-03-11 15:01:09 -04001686 md->use_blk_mq = false;
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05001687 dm_init_md_queue(md);
1688
1689 /*
1690 * Initialize aspects of queue that aren't relevant for blk-mq
1691 */
Jan Karadc3b17c2017-02-02 15:56:50 +01001692 md->queue->backing_dev_info->congested_fn = dm_any_congested;
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01001693}
1694
Mike Snitzer0f209722015-04-28 11:50:29 -04001695static void cleanup_mapped_device(struct mapped_device *md)
1696{
Mike Snitzer0f209722015-04-28 11:50:29 -04001697 if (md->wq)
1698 destroy_workqueue(md->wq);
1699 if (md->kworker_task)
1700 kthread_stop(md->kworker_task);
Julia Lawall6f659852015-09-13 14:15:05 +02001701 mempool_destroy(md->io_pool);
Mike Snitzer0f209722015-04-28 11:50:29 -04001702 if (md->bs)
1703 bioset_free(md->bs);
Mike Snitzer64f52b02017-12-11 23:17:47 -05001704 if (md->io_bs)
1705 bioset_free(md->io_bs);
Mike Snitzer0f209722015-04-28 11:50:29 -04001706
Dan Williamsf26c5712017-04-12 12:35:44 -07001707 if (md->dax_dev) {
1708 kill_dax(md->dax_dev);
1709 put_dax(md->dax_dev);
1710 md->dax_dev = NULL;
1711 }
1712
Mike Snitzer0f209722015-04-28 11:50:29 -04001713 if (md->disk) {
1714 spin_lock(&_minor_lock);
1715 md->disk->private_data = NULL;
1716 spin_unlock(&_minor_lock);
Mike Snitzer0f209722015-04-28 11:50:29 -04001717 del_gendisk(md->disk);
1718 put_disk(md->disk);
1719 }
1720
1721 if (md->queue)
1722 blk_cleanup_queue(md->queue);
1723
Tahsin Erdogand09960b2016-10-10 05:35:19 -07001724 cleanup_srcu_struct(&md->io_barrier);
1725
Mike Snitzer0f209722015-04-28 11:50:29 -04001726 if (md->bdev) {
1727 bdput(md->bdev);
1728 md->bdev = NULL;
1729 }
Mike Snitzer4cc96132016-05-12 16:28:10 -04001730
1731 dm_mq_cleanup_mapped_device(md);
Mike Snitzer0f209722015-04-28 11:50:29 -04001732}
1733
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734/*
1735 * Allocate and initialise a blank device with a given minor.
1736 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001737static struct mapped_device *alloc_dev(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738{
Mike Snitzer115485e2016-02-22 12:16:21 -05001739 int r, numa_node_id = dm_get_numa_node();
Dan Williamsf26c5712017-04-12 12:35:44 -07001740 struct dax_device *dax_dev;
Mike Snitzer115485e2016-02-22 12:16:21 -05001741 struct mapped_device *md;
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001742 void *old_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743
Mikulas Patocka856eb092017-10-31 19:33:02 -04001744 md = kvzalloc_node(sizeof(*md), GFP_KERNEL, numa_node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 if (!md) {
1746 DMWARN("unable to allocate device, out of memory.");
1747 return NULL;
1748 }
1749
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001750 if (!try_module_get(THIS_MODULE))
Milan Broz6ed7ade2008-02-08 02:10:19 +00001751 goto bad_module_get;
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001752
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 /* get a minor number for the dev */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001754 if (minor == DM_ANY_MINOR)
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001755 r = next_free_minor(&minor);
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001756 else
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001757 r = specific_minor(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 if (r < 0)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001759 goto bad_minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001761 r = init_srcu_struct(&md->io_barrier);
1762 if (r < 0)
1763 goto bad_io_barrier;
1764
Mike Snitzer115485e2016-02-22 12:16:21 -05001765 md->numa_node_id = numa_node_id;
Mike Snitzer4cc96132016-05-12 16:28:10 -04001766 md->use_blk_mq = dm_use_blk_mq_default();
Mike Snitzer591ddcf2016-01-31 12:05:42 -05001767 md->init_tio_pdu = false;
Mike Snitzera5664da2010-08-12 04:14:01 +01001768 md->type = DM_TYPE_NONE;
Daniel Walkere61290a2008-02-08 02:10:08 +00001769 mutex_init(&md->suspend_lock);
Mike Snitzera5664da2010-08-12 04:14:01 +01001770 mutex_init(&md->type_lock);
Benjamin Marzinski86f11522014-08-13 13:53:43 -05001771 mutex_init(&md->table_devices_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01001772 spin_lock_init(&md->deferred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 atomic_set(&md->holders, 1);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -07001774 atomic_set(&md->open_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 atomic_set(&md->event_nr, 0);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001776 atomic_set(&md->uevent_seq, 0);
1777 INIT_LIST_HEAD(&md->uevent_list);
Benjamin Marzinski86f11522014-08-13 13:53:43 -05001778 INIT_LIST_HEAD(&md->table_devices);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001779 spin_lock_init(&md->uevent_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780
Mike Snitzer115485e2016-02-22 12:16:21 -05001781 md->queue = blk_alloc_queue_node(GFP_KERNEL, numa_node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 if (!md->queue)
Mike Snitzer0f209722015-04-28 11:50:29 -04001783 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01001785 dm_init_md_queue(md);
Stefan Bader9faf4002006-10-03 01:15:41 -07001786
Mike Snitzer115485e2016-02-22 12:16:21 -05001787 md->disk = alloc_disk_node(1, numa_node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 if (!md->disk)
Mike Snitzer0f209722015-04-28 11:50:29 -04001789 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790
Nikanth Karthikesan316d3152009-10-06 20:16:55 +02001791 atomic_set(&md->pending[0], 0);
1792 atomic_set(&md->pending[1], 0);
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07001793 init_waitqueue_head(&md->wait);
Mikulas Patocka53d59142009-04-02 19:55:37 +01001794 INIT_WORK(&md->work, dm_wq_work);
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07001795 init_waitqueue_head(&md->eventq);
Mikulas Patocka2995fa72014-01-13 19:37:54 -05001796 init_completion(&md->kobj_holder.completion);
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001797 md->kworker_task = NULL;
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07001798
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 md->disk->major = _major;
1800 md->disk->first_minor = minor;
1801 md->disk->fops = &dm_blk_dops;
1802 md->disk->queue = md->queue;
1803 md->disk->private_data = md;
1804 sprintf(md->disk->disk_name, "dm-%d", minor);
Dan Williamsf26c5712017-04-12 12:35:44 -07001805
1806 dax_dev = alloc_dax(md, md->disk->disk_name, &dm_dax_ops);
1807 if (!dax_dev)
1808 goto bad;
1809 md->dax_dev = dax_dev;
1810
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 add_disk(md->disk);
Mike Anderson7e51f252006-03-27 01:17:52 -08001812 format_dev_t(md->name, MKDEV(_major, minor));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813
Tejun Heo670368a2013-07-30 08:40:21 -04001814 md->wq = alloc_workqueue("kdmflush", WQ_MEM_RECLAIM, 0);
Milan Broz304f3f62008-02-08 02:11:17 +00001815 if (!md->wq)
Mike Snitzer0f209722015-04-28 11:50:29 -04001816 goto bad;
Milan Broz304f3f62008-02-08 02:11:17 +00001817
Mikulas Patocka32a926d2009-06-22 10:12:17 +01001818 md->bdev = bdget_disk(md->disk, 0);
1819 if (!md->bdev)
Mike Snitzer0f209722015-04-28 11:50:29 -04001820 goto bad;
Mikulas Patocka32a926d2009-06-22 10:12:17 +01001821
Ming Lei3a83f462016-11-22 08:57:21 -07001822 bio_init(&md->flush_bio, NULL, 0);
Christoph Hellwig74d46992017-08-23 19:10:32 +02001823 bio_set_dev(&md->flush_bio, md->bdev);
Jan Karaff0361b2017-05-31 09:44:32 +02001824 md->flush_bio.bi_opf = REQ_OP_WRITE | REQ_PREFLUSH | REQ_SYNC;
Tejun Heo6a8736d2010-09-08 18:07:00 +02001825
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04001826 dm_stats_init(&md->stats);
1827
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001828 /* Populate the mapping, nobody knows we exist yet */
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001829 spin_lock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001830 old_md = idr_replace(&_minor_idr, md, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001831 spin_unlock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001832
1833 BUG_ON(old_md != MINOR_ALLOCED);
1834
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 return md;
1836
Mike Snitzer0f209722015-04-28 11:50:29 -04001837bad:
1838 cleanup_mapped_device(md);
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01001839bad_io_barrier:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 free_minor(minor);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001841bad_minor:
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001842 module_put(THIS_MODULE);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001843bad_module_get:
Mikulas Patocka856eb092017-10-31 19:33:02 -04001844 kvfree(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 return NULL;
1846}
1847
Jun'ichi Nomuraae9da832007-10-19 22:38:43 +01001848static void unlock_fs(struct mapped_device *md);
1849
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850static void free_dev(struct mapped_device *md)
1851{
Tejun Heof331c022008-09-03 09:01:48 +02001852 int minor = MINOR(disk_devt(md->disk));
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08001853
Mikulas Patocka32a926d2009-06-22 10:12:17 +01001854 unlock_fs(md);
Keith Busch2eb6e1e2014-10-17 17:46:36 -06001855
Mike Snitzer0f209722015-04-28 11:50:29 -04001856 cleanup_mapped_device(md);
Mike Snitzer0f209722015-04-28 11:50:29 -04001857
1858 free_table_devices(&md->table_devices);
1859 dm_stats_cleanup(&md->stats);
Mike Snitzer63a4f062015-03-23 17:01:43 -04001860 free_minor(minor);
1861
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001862 module_put(THIS_MODULE);
Mikulas Patocka856eb092017-10-31 19:33:02 -04001863 kvfree(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864}
1865
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001866static void __bind_mempools(struct mapped_device *md, struct dm_table *t)
1867{
Mikulas Patockac0820cf2012-12-21 20:23:38 +00001868 struct dm_md_mempools *p = dm_table_get_md_mempools(t);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001869
Mike Snitzer0776aa02017-12-08 14:40:52 -05001870 if (dm_table_bio_based(t)) {
Mike Snitzer64f52b02017-12-11 23:17:47 -05001871 /*
1872 * The md may already have mempools that need changing.
1873 * If so, reload bioset because front_pad may have changed
1874 * because a different table was loaded.
1875 */
Mike Snitzer0776aa02017-12-08 14:40:52 -05001876 if (md->bs) {
Jun'ichi Nomura16245bd2013-03-01 22:45:44 +00001877 bioset_free(md->bs);
Mike Snitzer0776aa02017-12-08 14:40:52 -05001878 md->bs = NULL;
Jun'ichi Nomura16245bd2013-03-01 22:45:44 +00001879 }
Mike Snitzer64f52b02017-12-11 23:17:47 -05001880 if (md->io_bs) {
1881 bioset_free(md->io_bs);
1882 md->io_bs = NULL;
1883 }
Mike Snitzer0776aa02017-12-08 14:40:52 -05001884 if (md->io_pool) {
1885 /*
1886 * Reload io_pool because pool_size may have changed
1887 * because a different table was loaded.
1888 */
1889 mempool_destroy(md->io_pool);
1890 md->io_pool = NULL;
1891 }
1892
1893 } else if (md->bs) {
Mike Snitzer4e6e36c2015-06-26 09:42:57 -04001894 /*
1895 * There's no need to reload with request-based dm
1896 * because the size of front_pad doesn't change.
1897 * Note for future: If you are to reload bioset,
1898 * prep-ed requests in the queue may refer
1899 * to bio from the old bioset, so you must walk
1900 * through the queue to unprep.
1901 */
1902 goto out;
Mikulas Patockac0820cf2012-12-21 20:23:38 +00001903 }
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001904
Mike Snitzer64f52b02017-12-11 23:17:47 -05001905 BUG_ON(!p || md->io_pool || md->bs || md->io_bs);
Mike Snitzercbc4e3c2015-04-27 16:37:50 -04001906
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001907 md->io_pool = p->io_pool;
1908 p->io_pool = NULL;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001909 md->bs = p->bs;
1910 p->bs = NULL;
Mike Snitzer64f52b02017-12-11 23:17:47 -05001911 md->io_bs = p->io_bs;
1912 p->io_bs = NULL;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001913out:
Mike Snitzer02233342015-03-10 23:49:26 -04001914 /* mempool bind completed, no longer need any mempools in the table */
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001915 dm_table_free_md_mempools(t);
1916}
1917
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918/*
1919 * Bind a table to the device.
1920 */
1921static void event_callback(void *context)
1922{
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001923 unsigned long flags;
1924 LIST_HEAD(uevents);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 struct mapped_device *md = (struct mapped_device *) context;
1926
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001927 spin_lock_irqsave(&md->uevent_lock, flags);
1928 list_splice_init(&md->uevent_list, &uevents);
1929 spin_unlock_irqrestore(&md->uevent_lock, flags);
1930
Tejun Heoed9e1982008-08-25 19:56:05 +09001931 dm_send_uevents(&uevents, &disk_to_dev(md->disk)->kobj);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001932
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 atomic_inc(&md->event_nr);
1934 wake_up(&md->eventq);
Mikulas Patocka62e08242017-09-20 07:29:49 -04001935 dm_issue_global_event();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936}
1937
Mike Snitzerc2176492011-01-13 19:53:46 +00001938/*
1939 * Protected by md->suspend_lock obtained by dm_swap_table().
1940 */
Alasdair G Kergon4e90188be2005-07-28 21:15:59 -07001941static void __set_size(struct mapped_device *md, sector_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942{
Bart Van Assche1ea06542017-04-27 10:11:21 -07001943 lockdep_assert_held(&md->suspend_lock);
1944
Alasdair G Kergon4e90188be2005-07-28 21:15:59 -07001945 set_capacity(md->disk, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946
Mikulas Patockadb8fef42009-06-22 10:12:15 +01001947 i_size_write(md->bdev->bd_inode, (loff_t)size << SECTOR_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948}
1949
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00001950/*
1951 * Returns old map, which caller must destroy.
1952 */
1953static struct dm_table *__bind(struct mapped_device *md, struct dm_table *t,
1954 struct queue_limits *limits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955{
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00001956 struct dm_table *old_map;
Jens Axboe165125e2007-07-24 09:28:11 +02001957 struct request_queue *q = md->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 sector_t size;
1959
Bart Van Assche5a8f1f82016-08-31 15:17:04 -07001960 lockdep_assert_held(&md->suspend_lock);
1961
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 size = dm_table_get_size(t);
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08001963
1964 /*
1965 * Wipe any geometry if the size of the table changed.
1966 */
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04001967 if (size != dm_get_size(md))
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08001968 memset(&md->geometry, 0, sizeof(md->geometry));
1969
Mikulas Patocka32a926d2009-06-22 10:12:17 +01001970 __set_size(md, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001972 dm_table_event_callback(t, event_callback, md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001973
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001974 /*
1975 * The queue hasn't been stopped yet, if the old table type wasn't
1976 * for request-based during suspension. So stop it to prevent
1977 * I/O mapping before resume.
1978 * This must be done before setting the queue restrictions,
1979 * because request-based dm may be run just after the setting.
1980 */
Mike Snitzer16f12262016-01-31 17:22:27 -05001981 if (dm_table_request_based(t)) {
Mike Snitzereca7ee62016-02-20 13:45:38 -05001982 dm_stop_queue(q);
Mike Snitzer16f12262016-01-31 17:22:27 -05001983 /*
1984 * Leverage the fact that request-based DM targets are
1985 * immutable singletons and establish md->immutable_target
1986 * - used to optimize both dm_request_fn and dm_mq_queue_rq
1987 */
1988 md->immutable_target = dm_table_get_immutable_target(t);
1989 }
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001990
1991 __bind_mempools(md, t);
1992
Eric Dumazeta12f5d42014-11-23 09:34:29 -08001993 old_map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mike Snitzer1d3aa6f2016-02-22 14:14:24 -05001994 rcu_assign_pointer(md->map, (void *)t);
Alasdair G Kergon36a04562011-10-31 20:19:04 +00001995 md->immutable_target_type = dm_table_get_immutable_target_type(t);
1996
Mike Snitzer754c5fc2009-06-22 10:12:34 +01001997 dm_table_set_restrictions(t, q, limits);
Hannes Reinecke41abc4e2014-11-05 14:35:50 +01001998 if (old_map)
1999 dm_sync_table(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002000
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002001 return old_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002}
2003
Alasdair G Kergona7940152009-12-10 23:52:23 +00002004/*
2005 * Returns unbound table for the caller to free.
2006 */
2007static struct dm_table *__unbind(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008{
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002009 struct dm_table *map = rcu_dereference_protected(md->map, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010
2011 if (!map)
Alasdair G Kergona7940152009-12-10 23:52:23 +00002012 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013
2014 dm_table_event_callback(map, NULL, NULL);
Monam Agarwal9cdb8522014-03-23 23:58:27 +05302015 RCU_INIT_POINTER(md->map, NULL);
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002016 dm_sync_table(md);
Alasdair G Kergona7940152009-12-10 23:52:23 +00002017
2018 return map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019}
2020
2021/*
2022 * Constructor for a new device.
2023 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002024int dm_create(int minor, struct mapped_device **result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025{
2026 struct mapped_device *md;
2027
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07002028 md = alloc_dev(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 if (!md)
2030 return -ENXIO;
2031
Milan Broz784aae72009-01-06 03:05:12 +00002032 dm_sysfs_init(md);
2033
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 *result = md;
2035 return 0;
2036}
2037
Mike Snitzera5664da2010-08-12 04:14:01 +01002038/*
2039 * Functions to manage md->type.
2040 * All are required to hold md->type_lock.
2041 */
2042void dm_lock_md_type(struct mapped_device *md)
2043{
2044 mutex_lock(&md->type_lock);
2045}
2046
2047void dm_unlock_md_type(struct mapped_device *md)
2048{
2049 mutex_unlock(&md->type_lock);
2050}
2051
Bart Van Assche7e0d5742017-04-27 10:11:23 -07002052void dm_set_md_type(struct mapped_device *md, enum dm_queue_mode type)
Mike Snitzera5664da2010-08-12 04:14:01 +01002053{
Mike Snitzer00c4fc32013-08-27 18:57:03 -04002054 BUG_ON(!mutex_is_locked(&md->type_lock));
Mike Snitzera5664da2010-08-12 04:14:01 +01002055 md->type = type;
2056}
2057
Bart Van Assche7e0d5742017-04-27 10:11:23 -07002058enum dm_queue_mode dm_get_md_type(struct mapped_device *md)
Mike Snitzera5664da2010-08-12 04:14:01 +01002059{
2060 return md->type;
2061}
2062
Alasdair G Kergon36a04562011-10-31 20:19:04 +00002063struct target_type *dm_get_immutable_target_type(struct mapped_device *md)
2064{
2065 return md->immutable_target_type;
2066}
2067
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002068/*
Mike Snitzerf84cb8a2013-09-19 12:13:58 -04002069 * The queue_limits are only valid as long as you have a reference
2070 * count on 'md'.
2071 */
2072struct queue_limits *dm_get_queue_limits(struct mapped_device *md)
2073{
2074 BUG_ON(!atomic_read(&md->holders));
2075 return &md->queue->limits;
2076}
2077EXPORT_SYMBOL_GPL(dm_get_queue_limits);
2078
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002079/*
2080 * Setup the DM device's queue based on md's type
2081 */
Mike Snitzer591ddcf2016-01-31 12:05:42 -05002082int dm_setup_md_queue(struct mapped_device *md, struct dm_table *t)
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002083{
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002084 int r;
Bart Van Assche7e0d5742017-04-27 10:11:23 -07002085 enum dm_queue_mode type = dm_get_md_type(md);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002086
Toshi Kani545ed202016-06-22 17:54:53 -06002087 switch (type) {
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002088 case DM_TYPE_REQUEST_BASED:
Christoph Hellwigeb8db832017-01-22 18:32:46 +01002089 r = dm_old_init_request_queue(md, t);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002090 if (r) {
Mike Snitzereca7ee62016-02-20 13:45:38 -05002091 DMERR("Cannot initialize queue for request-based mapped device");
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002092 return r;
Mike Snitzerff36ab32015-02-23 17:56:37 -05002093 }
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002094 break;
2095 case DM_TYPE_MQ_REQUEST_BASED:
Mike Snitzere83068a2016-05-24 21:16:51 -04002096 r = dm_mq_init_request_queue(md, t);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002097 if (r) {
Mike Snitzereca7ee62016-02-20 13:45:38 -05002098 DMERR("Cannot initialize queue for request-based dm-mq mapped device");
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002099 return r;
2100 }
2101 break;
2102 case DM_TYPE_BIO_BASED:
Toshi Kani545ed202016-06-22 17:54:53 -06002103 case DM_TYPE_DAX_BIO_BASED:
Mike Snitzereca7ee62016-02-20 13:45:38 -05002104 dm_init_normal_md_queue(md);
Mike Snitzerff36ab32015-02-23 17:56:37 -05002105 blk_queue_make_request(md->queue, dm_make_request);
Mike Snitzerbfebd1c2015-03-08 00:51:47 -05002106 break;
Bart Van Assche7e0d5742017-04-27 10:11:23 -07002107 case DM_TYPE_NONE:
2108 WARN_ON_ONCE(true);
2109 break;
Mike Snitzer4a0b4dd2010-08-12 04:14:02 +01002110 }
2111
2112 return 0;
2113}
2114
Mikulas Patocka2bec1f42015-02-17 14:30:53 -05002115struct mapped_device *dm_get_md(dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116{
2117 struct mapped_device *md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 unsigned minor = MINOR(dev);
2119
2120 if (MAJOR(dev) != _major || minor >= (1 << MINORBITS))
2121 return NULL;
2122
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002123 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124
2125 md = idr_find(&_minor_idr, minor);
Mike Snitzer49de5762017-11-06 16:40:10 -05002126 if (!md || md == MINOR_ALLOCED || (MINOR(disk_devt(dm_disk(md))) != minor) ||
2127 test_bit(DMF_FREEING, &md->flags) || dm_deleting_md(md)) {
2128 md = NULL;
2129 goto out;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002130 }
Mike Snitzer49de5762017-11-06 16:40:10 -05002131 dm_get(md);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002132out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07002133 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134
David Teigland637842c2006-01-06 00:20:00 -08002135 return md;
2136}
Alasdair G Kergon3cf2e4b2011-10-31 20:19:06 +00002137EXPORT_SYMBOL_GPL(dm_get_md);
David Teiglandd229a952006-01-06 00:20:01 -08002138
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08002139void *dm_get_mdptr(struct mapped_device *md)
David Teigland637842c2006-01-06 00:20:00 -08002140{
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08002141 return md->interface_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142}
2143
2144void dm_set_mdptr(struct mapped_device *md, void *ptr)
2145{
2146 md->interface_ptr = ptr;
2147}
2148
2149void dm_get(struct mapped_device *md)
2150{
2151 atomic_inc(&md->holders);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002152 BUG_ON(test_bit(DMF_FREEING, &md->flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153}
2154
Mikulas Patocka09ee96b2015-02-26 11:41:28 -05002155int dm_hold(struct mapped_device *md)
2156{
2157 spin_lock(&_minor_lock);
2158 if (test_bit(DMF_FREEING, &md->flags)) {
2159 spin_unlock(&_minor_lock);
2160 return -EBUSY;
2161 }
2162 dm_get(md);
2163 spin_unlock(&_minor_lock);
2164 return 0;
2165}
2166EXPORT_SYMBOL_GPL(dm_hold);
2167
Alasdair G Kergon72d94862006-06-26 00:27:35 -07002168const char *dm_device_name(struct mapped_device *md)
2169{
2170 return md->name;
2171}
2172EXPORT_SYMBOL_GPL(dm_device_name);
2173
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002174static void __dm_destroy(struct mapped_device *md, bool wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175{
Bart Van Assche3b785fb2016-08-31 15:17:49 -07002176 struct request_queue *q = dm_get_md_queue(md);
Mike Anderson1134e5a2006-03-27 01:17:54 -08002177 struct dm_table *map;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002178 int srcu_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002180 might_sleep();
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07002181
Mike Snitzer63a4f062015-03-23 17:01:43 -04002182 spin_lock(&_minor_lock);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002183 idr_replace(&_minor_idr, MINOR_ALLOCED, MINOR(disk_devt(dm_disk(md))));
2184 set_bit(DMF_FREEING, &md->flags);
2185 spin_unlock(&_minor_lock);
2186
Bart Van Assche2e91c362016-11-18 14:26:47 -08002187 blk_set_queue_dying(q);
Bart Van Assche3b785fb2016-08-31 15:17:49 -07002188
Mike Snitzer02233342015-03-10 23:49:26 -04002189 if (dm_request_based(md) && md->kworker_task)
Petr Mladek39891442016-10-11 13:55:20 -07002190 kthread_flush_worker(&md->kworker);
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002191
Mikulas Patockaab7c7bb2015-02-27 14:04:27 -05002192 /*
2193 * Take suspend_lock so that presuspend and postsuspend methods
2194 * do not race with internal suspend.
2195 */
2196 mutex_lock(&md->suspend_lock);
Junichi Nomura2a708cf2015-10-01 08:31:51 +00002197 map = dm_get_live_table(md, &srcu_idx);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002198 if (!dm_suspended_md(md)) {
2199 dm_table_presuspend_targets(map);
2200 dm_table_postsuspend_targets(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 }
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002202 /* dm_put_live_table must be before msleep, otherwise deadlock is possible */
2203 dm_put_live_table(md, srcu_idx);
Junichi Nomura2a708cf2015-10-01 08:31:51 +00002204 mutex_unlock(&md->suspend_lock);
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002205
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002206 /*
2207 * Rare, but there may be I/O requests still going to complete,
2208 * for example. Wait for all references to disappear.
2209 * No one should increment the reference count of the mapped_device,
2210 * after the mapped_device state becomes DMF_FREEING.
2211 */
2212 if (wait)
2213 while (atomic_read(&md->holders))
2214 msleep(1);
2215 else if (atomic_read(&md->holders))
2216 DMWARN("%s: Forcibly removing mapped_device still in use! (%d users)",
2217 dm_device_name(md), atomic_read(&md->holders));
2218
2219 dm_sysfs_exit(md);
Kiyoshi Ueda3f77316d2010-08-12 04:13:56 +01002220 dm_table_destroy(__unbind(md));
2221 free_dev(md);
2222}
2223
2224void dm_destroy(struct mapped_device *md)
2225{
2226 __dm_destroy(md, true);
2227}
2228
2229void dm_destroy_immediate(struct mapped_device *md)
2230{
2231 __dm_destroy(md, false);
2232}
2233
2234void dm_put(struct mapped_device *md)
2235{
2236 atomic_dec(&md->holders);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237}
Edward Goggin79eb8852007-05-09 02:32:56 -07002238EXPORT_SYMBOL_GPL(dm_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239
Bart Van Asscheb48633f2016-08-31 15:16:02 -07002240static int dm_wait_for_completion(struct mapped_device *md, long task_state)
Milan Broz46125c12008-02-08 02:10:30 +00002241{
2242 int r = 0;
Bart Van Assche9f4c3f82016-08-31 15:16:43 -07002243 DEFINE_WAIT(wait);
Milan Broz46125c12008-02-08 02:10:30 +00002244
2245 while (1) {
Bart Van Assche9f4c3f82016-08-31 15:16:43 -07002246 prepare_to_wait(&md->wait, &wait, task_state);
Milan Broz46125c12008-02-08 02:10:30 +00002247
Kiyoshi Uedab4324fe2009-12-10 23:52:16 +00002248 if (!md_in_flight(md))
Milan Broz46125c12008-02-08 02:10:30 +00002249 break;
2250
Bart Van Asschee3fabdf2016-08-31 15:16:22 -07002251 if (signal_pending_state(task_state, current)) {
Milan Broz46125c12008-02-08 02:10:30 +00002252 r = -EINTR;
2253 break;
2254 }
2255
2256 io_schedule();
2257 }
Bart Van Assche9f4c3f82016-08-31 15:16:43 -07002258 finish_wait(&md->wait, &wait);
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01002259
Milan Broz46125c12008-02-08 02:10:30 +00002260 return r;
2261}
2262
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263/*
2264 * Process the deferred bios
2265 */
Mikulas Patockaef208582009-04-02 19:55:38 +01002266static void dm_wq_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267{
Mikulas Patockaef208582009-04-02 19:55:38 +01002268 struct mapped_device *md = container_of(work, struct mapped_device,
2269 work);
Milan Broz6d6f10d2008-02-08 02:10:22 +00002270 struct bio *c;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002271 int srcu_idx;
2272 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002274 map = dm_get_live_table(md, &srcu_idx);
Mikulas Patockaef208582009-04-02 19:55:38 +01002275
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002276 while (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002277 spin_lock_irq(&md->deferred_lock);
2278 c = bio_list_pop(&md->deferred);
2279 spin_unlock_irq(&md->deferred_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01002280
Tejun Heo6a8736d2010-09-08 18:07:00 +02002281 if (!c)
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002282 break;
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01002283
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002284 if (dm_request_based(md))
2285 generic_make_request(c);
Tejun Heo6a8736d2010-09-08 18:07:00 +02002286 else
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002287 __split_and_process_bio(md, map, c);
Mikulas Patocka022c2612009-04-02 19:55:39 +01002288 }
Milan Broz73d410c2008-02-08 02:10:25 +00002289
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002290 dm_put_live_table(md, srcu_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291}
2292
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002293static void dm_queue_flush(struct mapped_device *md)
Milan Broz304f3f62008-02-08 02:11:17 +00002294{
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002295 clear_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01002296 smp_mb__after_atomic();
Mikulas Patocka53d59142009-04-02 19:55:37 +01002297 queue_work(md->wq, &md->work);
Milan Broz304f3f62008-02-08 02:11:17 +00002298}
2299
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300/*
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002301 * Swap in a new table, returning the old one for the caller to destroy.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 */
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002303struct dm_table *dm_swap_table(struct mapped_device *md, struct dm_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304{
Mike Christie87eb5b22013-03-01 22:45:48 +00002305 struct dm_table *live_map = NULL, *map = ERR_PTR(-EINVAL);
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002306 struct queue_limits limits;
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002307 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308
Daniel Walkere61290a2008-02-08 02:10:08 +00002309 mutex_lock(&md->suspend_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310
2311 /* device must be suspended */
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +00002312 if (!dm_suspended_md(md))
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07002313 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314
Mike Snitzer3ae70652012-09-26 23:45:45 +01002315 /*
2316 * If the new table has no data devices, retain the existing limits.
2317 * This helps multipath with queue_if_no_path if all paths disappear,
2318 * then new I/O is queued based on these limits, and then some paths
2319 * reappear.
2320 */
2321 if (dm_table_has_no_data_devices(table)) {
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002322 live_map = dm_get_live_table_fast(md);
Mike Snitzer3ae70652012-09-26 23:45:45 +01002323 if (live_map)
2324 limits = md->queue->limits;
Mikulas Patocka83d5e5b2013-07-10 23:41:18 +01002325 dm_put_live_table_fast(md);
Mike Snitzer3ae70652012-09-26 23:45:45 +01002326 }
2327
Mike Christie87eb5b22013-03-01 22:45:48 +00002328 if (!live_map) {
2329 r = dm_calculate_queue_limits(table, &limits);
2330 if (r) {
2331 map = ERR_PTR(r);
2332 goto out;
2333 }
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002334 }
Mike Snitzer754c5fc2009-06-22 10:12:34 +01002335
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002336 map = __bind(md, table, &limits);
Mikulas Patocka62e08242017-09-20 07:29:49 -04002337 dm_issue_global_event();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07002339out:
Daniel Walkere61290a2008-02-08 02:10:08 +00002340 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon042d2a92009-12-10 23:52:24 +00002341 return map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342}
2343
2344/*
2345 * Functions to lock and unlock any filesystem running on the
2346 * device.
2347 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002348static int lock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349{
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08002350 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351
2352 WARN_ON(md->frozen_sb);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002353
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002354 md->frozen_sb = freeze_bdev(md->bdev);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002355 if (IS_ERR(md->frozen_sb)) {
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002356 r = PTR_ERR(md->frozen_sb);
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08002357 md->frozen_sb = NULL;
2358 return r;
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07002359 }
2360
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002361 set_bit(DMF_FROZEN, &md->flags);
2362
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 return 0;
2364}
2365
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002366static void unlock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367{
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002368 if (!test_bit(DMF_FROZEN, &md->flags))
2369 return;
2370
Mikulas Patockadb8fef42009-06-22 10:12:15 +01002371 thaw_bdev(md->bdev, md->frozen_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 md->frozen_sb = NULL;
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002373 clear_bit(DMF_FROZEN, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374}
2375
2376/*
Bart Van Asscheb48633f2016-08-31 15:16:02 -07002377 * @suspend_flags: DM_SUSPEND_LOCKFS_FLAG and/or DM_SUSPEND_NOFLUSH_FLAG
2378 * @task_state: e.g. TASK_INTERRUPTIBLE or TASK_UNINTERRUPTIBLE
2379 * @dmf_suspended_flag: DMF_SUSPENDED or DMF_SUSPENDED_INTERNALLY
2380 *
Mike Snitzerffcc3932014-10-28 18:34:52 -04002381 * If __dm_suspend returns 0, the device is completely quiescent
2382 * now. There is no request-processing activity. All new requests
2383 * are being added to md->deferred list.
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002384 */
Mike Snitzerffcc3932014-10-28 18:34:52 -04002385static int __dm_suspend(struct mapped_device *md, struct dm_table *map,
Bart Van Asscheb48633f2016-08-31 15:16:02 -07002386 unsigned suspend_flags, long task_state,
Mike Snitzereaf9a732016-08-02 13:07:20 -04002387 int dmf_suspended_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388{
Mike Snitzerffcc3932014-10-28 18:34:52 -04002389 bool do_lockfs = suspend_flags & DM_SUSPEND_LOCKFS_FLAG;
2390 bool noflush = suspend_flags & DM_SUSPEND_NOFLUSH_FLAG;
2391 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392
Bart Van Assche5a8f1f82016-08-31 15:17:04 -07002393 lockdep_assert_held(&md->suspend_lock);
2394
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002395 /*
2396 * DMF_NOFLUSH_SUSPENDING must be set before presuspend.
2397 * This flag is cleared before dm_suspend returns.
2398 */
2399 if (noflush)
2400 set_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
Bart Van Assche86331f32017-04-27 10:11:26 -07002401 else
2402 pr_debug("%s: suspending with flush\n", dm_device_name(md));
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002403
Mike Snitzerd67ee212014-10-28 20:13:31 -04002404 /*
2405 * This gets reverted if there's an error later and the targets
2406 * provide the .presuspend_undo hook.
2407 */
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002408 dm_table_presuspend_targets(map);
2409
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002410 /*
Kiyoshi Ueda9f518b22009-12-10 23:52:16 +00002411 * Flush I/O to the device.
2412 * Any I/O submitted after lock_fs() may not be flushed.
2413 * noflush takes precedence over do_lockfs.
2414 * (lock_fs() flushes I/Os and waits for them to complete.)
Mikulas Patocka32a926d2009-06-22 10:12:17 +01002415 */
2416 if (!noflush && do_lockfs) {
2417 r = lock_fs(md);
Mike Snitzerd67ee212014-10-28 20:13:31 -04002418 if (r) {
2419 dm_table_presuspend_undo_targets(map);
Mike Snitzerffcc3932014-10-28 18:34:52 -04002420 return r;
Mike Snitzerd67ee212014-10-28 20:13:31 -04002421 }
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08002422 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423
2424 /*
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002425 * Here we must make sure that no processes are submitting requests
2426 * to target drivers i.e. no one may be executing
2427 * __split_and_process_bio. This is called from dm_request and
2428 * dm_wq_work.
2429 *
2430 * To get all processes out of __split_and_process_bio in dm_request,
2431 * we take the write lock. To prevent any process from reentering
Tejun Heo6a8736d2010-09-08 18:07:00 +02002432 * __split_and_process_bio from dm_request and quiesce the thread
2433 * (dm_wq_work), we set BMF_BLOCK_IO_FOR_SUSPEND and call
2434 * flush_workqueue(md->wq).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 */
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01002436 set_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
Hannes Reinecke41abc4e2014-11-05 14:35:50 +01002437 if (map)
2438 synchronize_srcu(&md->io_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002440 /*
Tejun Heo29e40132010-09-08 18:07:00 +02002441 * Stop md->queue before flushing md->wq in case request-based
2442 * dm defers requests to md->wq from md->queue.
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002443 */
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002444 if (dm_request_based(md)) {
Mike Snitzereca7ee62016-02-20 13:45:38 -05002445 dm_stop_queue(md->queue);
Mike Snitzer02233342015-03-10 23:49:26 -04002446 if (md->kworker_task)
Petr Mladek39891442016-10-11 13:55:20 -07002447 kthread_flush_worker(&md->kworker);
Keith Busch2eb6e1e2014-10-17 17:46:36 -06002448 }
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002449
Kiyoshi Uedad0bcb872009-12-10 23:52:18 +00002450 flush_workqueue(md->wq);
2451
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 /*
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002453 * At this point no more requests are entering target request routines.
2454 * We call dm_wait_for_completion to wait for all existing requests
2455 * to finish.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 */
Bart Van Asscheb48633f2016-08-31 15:16:02 -07002457 r = dm_wait_for_completion(md, task_state);
Mike Snitzereaf9a732016-08-02 13:07:20 -04002458 if (!r)
2459 set_bit(dmf_suspended_flag, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460
Milan Broz6d6f10d2008-02-08 02:10:22 +00002461 if (noflush)
Mikulas Patocka022c2612009-04-02 19:55:39 +01002462 clear_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
Hannes Reinecke41abc4e2014-11-05 14:35:50 +01002463 if (map)
2464 synchronize_srcu(&md->io_barrier);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002465
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 /* were we interrupted ? */
Milan Broz46125c12008-02-08 02:10:30 +00002467 if (r < 0) {
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002468 dm_queue_flush(md);
Milan Broz73d410c2008-02-08 02:10:25 +00002469
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002470 if (dm_request_based(md))
Mike Snitzereca7ee62016-02-20 13:45:38 -05002471 dm_start_queue(md->queue);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002472
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002473 unlock_fs(md);
Mike Snitzerd67ee212014-10-28 20:13:31 -04002474 dm_table_presuspend_undo_targets(map);
Mike Snitzerffcc3932014-10-28 18:34:52 -04002475 /* pushback list is already flushed, so skip flush */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002476 }
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002477
Mike Snitzerffcc3932014-10-28 18:34:52 -04002478 return r;
2479}
2480
2481/*
2482 * We need to be able to change a mapping table under a mounted
2483 * filesystem. For example we might want to move some data in
2484 * the background. Before the table can be swapped with
2485 * dm_bind_table, dm_suspend must be called to flush any in
2486 * flight bios and ensure that any further io gets deferred.
2487 */
2488/*
2489 * Suspend mechanism in request-based dm.
2490 *
2491 * 1. Flush all I/Os by lock_fs() if needed.
2492 * 2. Stop dispatching any I/O by stopping the request_queue.
2493 * 3. Wait for all in-flight I/Os to be completed or requeued.
2494 *
2495 * To abort suspend, start the request_queue.
2496 */
2497int dm_suspend(struct mapped_device *md, unsigned suspend_flags)
2498{
2499 struct dm_table *map = NULL;
2500 int r = 0;
2501
2502retry:
2503 mutex_lock_nested(&md->suspend_lock, SINGLE_DEPTH_NESTING);
2504
2505 if (dm_suspended_md(md)) {
2506 r = -EINVAL;
2507 goto out_unlock;
2508 }
2509
2510 if (dm_suspended_internally_md(md)) {
2511 /* already internally suspended, wait for internal resume */
2512 mutex_unlock(&md->suspend_lock);
2513 r = wait_on_bit(&md->flags, DMF_SUSPENDED_INTERNALLY, TASK_INTERRUPTIBLE);
2514 if (r)
2515 return r;
2516 goto retry;
2517 }
2518
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002519 map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mike Snitzerffcc3932014-10-28 18:34:52 -04002520
Mike Snitzereaf9a732016-08-02 13:07:20 -04002521 r = __dm_suspend(md, map, suspend_flags, TASK_INTERRUPTIBLE, DMF_SUSPENDED);
Mike Snitzerffcc3932014-10-28 18:34:52 -04002522 if (r)
2523 goto out_unlock;
Mikulas Patocka3b00b202009-04-09 00:27:15 +01002524
Kiyoshi Ueda4d4471c2009-12-10 23:52:26 +00002525 dm_table_postsuspend_targets(map);
2526
Alasdair G Kergond2874832006-11-08 17:44:43 -08002527out_unlock:
Daniel Walkere61290a2008-02-08 02:10:08 +00002528 mutex_unlock(&md->suspend_lock);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002529 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530}
2531
Mike Snitzerffcc3932014-10-28 18:34:52 -04002532static int __dm_resume(struct mapped_device *md, struct dm_table *map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533{
Mike Snitzerffcc3932014-10-28 18:34:52 -04002534 if (map) {
2535 int r = dm_table_resume_targets(map);
2536 if (r)
2537 return r;
2538 }
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002539
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01002540 dm_queue_flush(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002541
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002542 /*
2543 * Flushing deferred I/Os must be done after targets are resumed
2544 * so that mapping of targets can work correctly.
2545 * Request-based dm is queueing the deferred I/Os in its request_queue.
2546 */
2547 if (dm_request_based(md))
Mike Snitzereca7ee62016-02-20 13:45:38 -05002548 dm_start_queue(md->queue);
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01002549
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002550 unlock_fs(md);
2551
Mike Snitzerffcc3932014-10-28 18:34:52 -04002552 return 0;
2553}
2554
2555int dm_resume(struct mapped_device *md)
2556{
Minfei Huang8dc23652016-09-06 16:00:29 +08002557 int r;
Mike Snitzerffcc3932014-10-28 18:34:52 -04002558 struct dm_table *map = NULL;
2559
2560retry:
Minfei Huang8dc23652016-09-06 16:00:29 +08002561 r = -EINVAL;
Mike Snitzerffcc3932014-10-28 18:34:52 -04002562 mutex_lock_nested(&md->suspend_lock, SINGLE_DEPTH_NESTING);
2563
2564 if (!dm_suspended_md(md))
2565 goto out;
2566
2567 if (dm_suspended_internally_md(md)) {
2568 /* already internally suspended, wait for internal resume */
2569 mutex_unlock(&md->suspend_lock);
2570 r = wait_on_bit(&md->flags, DMF_SUSPENDED_INTERNALLY, TASK_INTERRUPTIBLE);
2571 if (r)
2572 return r;
2573 goto retry;
2574 }
2575
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002576 map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mike Snitzerffcc3932014-10-28 18:34:52 -04002577 if (!map || !dm_table_get_size(map))
2578 goto out;
2579
2580 r = __dm_resume(md, map);
2581 if (r)
2582 goto out;
2583
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002584 clear_bit(DMF_SUSPENDED, &md->flags);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002585out:
Daniel Walkere61290a2008-02-08 02:10:08 +00002586 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07002587
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07002588 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589}
2590
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002591/*
2592 * Internal suspend/resume works like userspace-driven suspend. It waits
2593 * until all bios finish and prevents issuing new bios to the target drivers.
2594 * It may be used only from the kernel.
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002595 */
2596
Mike Snitzerffcc3932014-10-28 18:34:52 -04002597static void __dm_internal_suspend(struct mapped_device *md, unsigned suspend_flags)
2598{
2599 struct dm_table *map = NULL;
2600
Bart Van Assche1ea06542017-04-27 10:11:21 -07002601 lockdep_assert_held(&md->suspend_lock);
2602
Mikulas Patocka96b26c82015-01-08 18:52:26 -05002603 if (md->internal_suspend_count++)
Mike Snitzerffcc3932014-10-28 18:34:52 -04002604 return; /* nested internal suspend */
2605
2606 if (dm_suspended_md(md)) {
2607 set_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
2608 return; /* nest suspend */
2609 }
2610
Eric Dumazeta12f5d42014-11-23 09:34:29 -08002611 map = rcu_dereference_protected(md->map, lockdep_is_held(&md->suspend_lock));
Mike Snitzerffcc3932014-10-28 18:34:52 -04002612
2613 /*
2614 * Using TASK_UNINTERRUPTIBLE because only NOFLUSH internal suspend is
2615 * supported. Properly supporting a TASK_INTERRUPTIBLE internal suspend
2616 * would require changing .presuspend to return an error -- avoid this
2617 * until there is a need for more elaborate variants of internal suspend.
2618 */
Mike Snitzereaf9a732016-08-02 13:07:20 -04002619 (void) __dm_suspend(md, map, suspend_flags, TASK_UNINTERRUPTIBLE,
2620 DMF_SUSPENDED_INTERNALLY);
Mike Snitzerffcc3932014-10-28 18:34:52 -04002621
2622 dm_table_postsuspend_targets(map);
2623}
2624
2625static void __dm_internal_resume(struct mapped_device *md)
2626{
Mikulas Patocka96b26c82015-01-08 18:52:26 -05002627 BUG_ON(!md->internal_suspend_count);
2628
2629 if (--md->internal_suspend_count)
Mike Snitzerffcc3932014-10-28 18:34:52 -04002630 return; /* resume from nested internal suspend */
2631
2632 if (dm_suspended_md(md))
2633 goto done; /* resume from nested suspend */
2634
2635 /*
2636 * NOTE: existing callers don't need to call dm_table_resume_targets
2637 * (which may fail -- so best to avoid it for now by passing NULL map)
2638 */
2639 (void) __dm_resume(md, NULL);
2640
2641done:
2642 clear_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
2643 smp_mb__after_atomic();
2644 wake_up_bit(&md->flags, DMF_SUSPENDED_INTERNALLY);
2645}
2646
2647void dm_internal_suspend_noflush(struct mapped_device *md)
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002648{
2649 mutex_lock(&md->suspend_lock);
Mike Snitzerffcc3932014-10-28 18:34:52 -04002650 __dm_internal_suspend(md, DM_SUSPEND_NOFLUSH_FLAG);
2651 mutex_unlock(&md->suspend_lock);
2652}
2653EXPORT_SYMBOL_GPL(dm_internal_suspend_noflush);
2654
2655void dm_internal_resume(struct mapped_device *md)
2656{
2657 mutex_lock(&md->suspend_lock);
2658 __dm_internal_resume(md);
2659 mutex_unlock(&md->suspend_lock);
2660}
2661EXPORT_SYMBOL_GPL(dm_internal_resume);
2662
2663/*
2664 * Fast variants of internal suspend/resume hold md->suspend_lock,
2665 * which prevents interaction with userspace-driven suspend.
2666 */
2667
2668void dm_internal_suspend_fast(struct mapped_device *md)
2669{
2670 mutex_lock(&md->suspend_lock);
2671 if (dm_suspended_md(md) || dm_suspended_internally_md(md))
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002672 return;
2673
2674 set_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
2675 synchronize_srcu(&md->io_barrier);
2676 flush_workqueue(md->wq);
2677 dm_wait_for_completion(md, TASK_UNINTERRUPTIBLE);
2678}
Mikulas Patockab735fed2015-02-26 11:40:35 -05002679EXPORT_SYMBOL_GPL(dm_internal_suspend_fast);
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002680
Mike Snitzerffcc3932014-10-28 18:34:52 -04002681void dm_internal_resume_fast(struct mapped_device *md)
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002682{
Mike Snitzerffcc3932014-10-28 18:34:52 -04002683 if (dm_suspended_md(md) || dm_suspended_internally_md(md))
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002684 goto done;
2685
2686 dm_queue_flush(md);
2687
2688done:
2689 mutex_unlock(&md->suspend_lock);
2690}
Mikulas Patockab735fed2015-02-26 11:40:35 -05002691EXPORT_SYMBOL_GPL(dm_internal_resume_fast);
Mikulas Patockafd2ed4d2013-08-16 10:54:23 -04002692
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693/*-----------------------------------------------------------------
2694 * Event notification.
2695 *---------------------------------------------------------------*/
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00002696int dm_kobject_uevent(struct mapped_device *md, enum kobject_action action,
Milan Broz60935eb2009-06-22 10:12:30 +01002697 unsigned cookie)
Alasdair G Kergon69267a32007-12-13 14:15:57 +00002698{
Milan Broz60935eb2009-06-22 10:12:30 +01002699 char udev_cookie[DM_COOKIE_LENGTH];
2700 char *envp[] = { udev_cookie, NULL };
2701
2702 if (!cookie)
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00002703 return kobject_uevent(&disk_to_dev(md->disk)->kobj, action);
Milan Broz60935eb2009-06-22 10:12:30 +01002704 else {
2705 snprintf(udev_cookie, DM_COOKIE_LENGTH, "%s=%u",
2706 DM_COOKIE_ENV_VAR_NAME, cookie);
Peter Rajnoha3abf85b2010-03-06 02:32:31 +00002707 return kobject_uevent_env(&disk_to_dev(md->disk)->kobj,
2708 action, envp);
Milan Broz60935eb2009-06-22 10:12:30 +01002709 }
Alasdair G Kergon69267a32007-12-13 14:15:57 +00002710}
2711
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002712uint32_t dm_next_uevent_seq(struct mapped_device *md)
2713{
2714 return atomic_add_return(1, &md->uevent_seq);
2715}
2716
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717uint32_t dm_get_event_nr(struct mapped_device *md)
2718{
2719 return atomic_read(&md->event_nr);
2720}
2721
2722int dm_wait_event(struct mapped_device *md, int event_nr)
2723{
2724 return wait_event_interruptible(md->eventq,
2725 (event_nr != atomic_read(&md->event_nr)));
2726}
2727
Mike Anderson7a8c3d32007-10-19 22:48:01 +01002728void dm_uevent_add(struct mapped_device *md, struct list_head *elist)
2729{
2730 unsigned long flags;
2731
2732 spin_lock_irqsave(&md->uevent_lock, flags);
2733 list_add(elist, &md->uevent_list);
2734 spin_unlock_irqrestore(&md->uevent_lock, flags);
2735}
2736
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737/*
2738 * The gendisk is only valid as long as you have a reference
2739 * count on 'md'.
2740 */
2741struct gendisk *dm_disk(struct mapped_device *md)
2742{
2743 return md->disk;
2744}
Sami Tolvanen65ff5b72015-03-18 15:52:14 +00002745EXPORT_SYMBOL_GPL(dm_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746
Milan Broz784aae72009-01-06 03:05:12 +00002747struct kobject *dm_kobject(struct mapped_device *md)
2748{
Mikulas Patocka2995fa72014-01-13 19:37:54 -05002749 return &md->kobj_holder.kobj;
Milan Broz784aae72009-01-06 03:05:12 +00002750}
2751
Milan Broz784aae72009-01-06 03:05:12 +00002752struct mapped_device *dm_get_from_kobject(struct kobject *kobj)
2753{
2754 struct mapped_device *md;
2755
Mikulas Patocka2995fa72014-01-13 19:37:54 -05002756 md = container_of(kobj, struct mapped_device, kobj_holder.kobj);
Milan Broz784aae72009-01-06 03:05:12 +00002757
Hou Taob9a41d22017-11-01 15:42:36 +08002758 spin_lock(&_minor_lock);
2759 if (test_bit(DMF_FREEING, &md->flags) || dm_deleting_md(md)) {
2760 md = NULL;
2761 goto out;
2762 }
Milan Broz784aae72009-01-06 03:05:12 +00002763 dm_get(md);
Hou Taob9a41d22017-11-01 15:42:36 +08002764out:
2765 spin_unlock(&_minor_lock);
2766
Milan Broz784aae72009-01-06 03:05:12 +00002767 return md;
2768}
2769
Kiyoshi Ueda4f186f82009-12-10 23:52:26 +00002770int dm_suspended_md(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771{
2772 return test_bit(DMF_SUSPENDED, &md->flags);
2773}
2774
Mike Snitzerffcc3932014-10-28 18:34:52 -04002775int dm_suspended_internally_md(struct mapped_device *md)
2776{
2777 return test_bit(DMF_SUSPENDED_INTERNALLY, &md->flags);
2778}
2779
Mikulas Patocka2c140a22013-11-01 18:27:41 -04002780int dm_test_deferred_remove_flag(struct mapped_device *md)
2781{
2782 return test_bit(DMF_DEFERRED_REMOVE, &md->flags);
2783}
2784
Kiyoshi Ueda64dbce52009-12-10 23:52:27 +00002785int dm_suspended(struct dm_target *ti)
2786{
Kiyoshi Uedaecdb2e22010-03-06 02:29:52 +00002787 return dm_suspended_md(dm_table_get_md(ti->table));
Kiyoshi Ueda64dbce52009-12-10 23:52:27 +00002788}
2789EXPORT_SYMBOL_GPL(dm_suspended);
2790
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002791int dm_noflush_suspending(struct dm_target *ti)
2792{
Kiyoshi Uedaecdb2e22010-03-06 02:29:52 +00002793 return __noflush_suspending(dm_table_get_md(ti->table));
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08002794}
2795EXPORT_SYMBOL_GPL(dm_noflush_suspending);
2796
Bart Van Assche7e0d5742017-04-27 10:11:23 -07002797struct dm_md_mempools *dm_alloc_md_mempools(struct mapped_device *md, enum dm_queue_mode type,
Mike Snitzer0776aa02017-12-08 14:40:52 -05002798 unsigned integrity, unsigned per_io_data_size,
2799 unsigned min_pool_size)
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002800{
Mike Snitzer115485e2016-02-22 12:16:21 -05002801 struct dm_md_mempools *pools = kzalloc_node(sizeof(*pools), GFP_KERNEL, md->numa_node_id);
Mike Snitzer78d8e582015-06-26 10:01:13 -04002802 unsigned int pool_size = 0;
Mike Snitzer64f52b02017-12-11 23:17:47 -05002803 unsigned int front_pad, io_front_pad;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002804
2805 if (!pools)
Mike Snitzer4e6e36c2015-06-26 09:42:57 -04002806 return NULL;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002807
Mike Snitzer78d8e582015-06-26 10:01:13 -04002808 switch (type) {
2809 case DM_TYPE_BIO_BASED:
Toshi Kani545ed202016-06-22 17:54:53 -06002810 case DM_TYPE_DAX_BIO_BASED:
Mike Snitzer0776aa02017-12-08 14:40:52 -05002811 pool_size = max(dm_get_reserved_bio_based_ios(), min_pool_size);
Mike Snitzer30187e12016-01-31 13:28:26 -05002812 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 -05002813 io_front_pad = roundup(front_pad, __alignof__(struct dm_io)) + offsetof(struct dm_io, tio);
2814 pools->io_bs = bioset_create(pool_size, io_front_pad, 0);
2815 if (!pools->io_bs)
2816 goto out;
2817 if (integrity && bioset_integrity_create(pools->io_bs, pool_size))
2818 goto out;
Christoph Hellwigeb8db832017-01-22 18:32:46 +01002819 pools->io_pool = mempool_create_slab_pool(pool_size, _io_cache);
2820 if (!pools->io_pool)
2821 goto out;
Mike Snitzer78d8e582015-06-26 10:01:13 -04002822 break;
2823 case DM_TYPE_REQUEST_BASED:
Mike Snitzer78d8e582015-06-26 10:01:13 -04002824 case DM_TYPE_MQ_REQUEST_BASED:
Mike Snitzer0776aa02017-12-08 14:40:52 -05002825 pool_size = max(dm_get_reserved_rq_based_ios(), min_pool_size);
Mike Snitzer78d8e582015-06-26 10:01:13 -04002826 front_pad = offsetof(struct dm_rq_clone_bio_info, clone);
Mike Snitzer591ddcf2016-01-31 12:05:42 -05002827 /* per_io_data_size is used for blk-mq pdu at queue allocation */
Mike Snitzer78d8e582015-06-26 10:01:13 -04002828 break;
2829 default:
2830 BUG();
2831 }
2832
Mike Snitzer4a3f54d2017-11-22 15:37:43 -05002833 pools->bs = bioset_create(pool_size, front_pad, 0);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002834 if (!pools->bs)
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00002835 goto out;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002836
Martin K. Petersena91a2782011-03-17 11:11:05 +01002837 if (integrity && bioset_integrity_create(pools->bs, pool_size))
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00002838 goto out;
Martin K. Petersena91a2782011-03-17 11:11:05 +01002839
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002840 return pools;
Mike Snitzer78d8e582015-06-26 10:01:13 -04002841
Jun'ichi Nomura5f015202013-03-01 22:45:48 +00002842out:
2843 dm_free_md_mempools(pools);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002844
Mike Snitzer4e6e36c2015-06-26 09:42:57 -04002845 return NULL;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002846}
2847
2848void dm_free_md_mempools(struct dm_md_mempools *pools)
2849{
2850 if (!pools)
2851 return;
2852
Julia Lawall6f659852015-09-13 14:15:05 +02002853 mempool_destroy(pools->io_pool);
Mike Snitzer1ae49ea2014-12-05 17:11:05 -05002854
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002855 if (pools->bs)
2856 bioset_free(pools->bs);
Mike Snitzer64f52b02017-12-11 23:17:47 -05002857 if (pools->io_bs)
2858 bioset_free(pools->io_bs);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01002859
2860 kfree(pools);
2861}
2862
Christoph Hellwig9c72bad2016-07-08 21:23:51 +09002863struct dm_pr {
2864 u64 old_key;
2865 u64 new_key;
2866 u32 flags;
2867 bool fail_early;
2868};
2869
2870static int dm_call_pr(struct block_device *bdev, iterate_devices_callout_fn fn,
2871 void *data)
2872{
2873 struct mapped_device *md = bdev->bd_disk->private_data;
2874 struct dm_table *table;
2875 struct dm_target *ti;
2876 int ret = -ENOTTY, srcu_idx;
2877
2878 table = dm_get_live_table(md, &srcu_idx);
2879 if (!table || !dm_table_get_size(table))
2880 goto out;
2881
2882 /* We only support devices that have a single target */
2883 if (dm_table_get_num_targets(table) != 1)
2884 goto out;
2885 ti = dm_table_get_target(table, 0);
2886
2887 ret = -EINVAL;
2888 if (!ti->type->iterate_devices)
2889 goto out;
2890
2891 ret = ti->type->iterate_devices(ti, fn, data);
2892out:
2893 dm_put_live_table(md, srcu_idx);
2894 return ret;
2895}
2896
2897/*
2898 * For register / unregister we need to manually call out to every path.
2899 */
2900static int __dm_pr_register(struct dm_target *ti, struct dm_dev *dev,
2901 sector_t start, sector_t len, void *data)
2902{
2903 struct dm_pr *pr = data;
2904 const struct pr_ops *ops = dev->bdev->bd_disk->fops->pr_ops;
2905
2906 if (!ops || !ops->pr_register)
2907 return -EOPNOTSUPP;
2908 return ops->pr_register(dev->bdev, pr->old_key, pr->new_key, pr->flags);
2909}
2910
Christoph Hellwig71cdb692015-10-15 14:10:51 +02002911static int dm_pr_register(struct block_device *bdev, u64 old_key, u64 new_key,
Mike Snitzer956a4022016-02-18 16:13:51 -05002912 u32 flags)
Christoph Hellwig71cdb692015-10-15 14:10:51 +02002913{
Christoph Hellwig9c72bad2016-07-08 21:23:51 +09002914 struct dm_pr pr = {
2915 .old_key = old_key,
2916 .new_key = new_key,
2917 .flags = flags,
2918 .fail_early = true,
2919 };
2920 int ret;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02002921
Christoph Hellwig9c72bad2016-07-08 21:23:51 +09002922 ret = dm_call_pr(bdev, __dm_pr_register, &pr);
2923 if (ret && new_key) {
2924 /* unregister all paths if we failed to register any path */
2925 pr.old_key = new_key;
2926 pr.new_key = 0;
2927 pr.flags = 0;
2928 pr.fail_early = false;
2929 dm_call_pr(bdev, __dm_pr_register, &pr);
2930 }
Christoph Hellwig71cdb692015-10-15 14:10:51 +02002931
Christoph Hellwig9c72bad2016-07-08 21:23:51 +09002932 return ret;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02002933}
2934
2935static int dm_pr_reserve(struct block_device *bdev, u64 key, enum pr_type type,
Mike Snitzer956a4022016-02-18 16:13:51 -05002936 u32 flags)
Christoph Hellwig71cdb692015-10-15 14:10:51 +02002937{
2938 struct mapped_device *md = bdev->bd_disk->private_data;
2939 const struct pr_ops *ops;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02002940 fmode_t mode;
Mike Snitzer956a4022016-02-18 16:13:51 -05002941 int r;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02002942
Mike Snitzer956a4022016-02-18 16:13:51 -05002943 r = dm_grab_bdev_for_ioctl(md, &bdev, &mode);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02002944 if (r < 0)
2945 return r;
2946
2947 ops = bdev->bd_disk->fops->pr_ops;
2948 if (ops && ops->pr_reserve)
2949 r = ops->pr_reserve(bdev, key, type, flags);
2950 else
2951 r = -EOPNOTSUPP;
2952
Mike Snitzer956a4022016-02-18 16:13:51 -05002953 bdput(bdev);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02002954 return r;
2955}
2956
2957static int dm_pr_release(struct block_device *bdev, u64 key, enum pr_type type)
2958{
2959 struct mapped_device *md = bdev->bd_disk->private_data;
2960 const struct pr_ops *ops;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02002961 fmode_t mode;
Mike Snitzer956a4022016-02-18 16:13:51 -05002962 int r;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02002963
Mike Snitzer956a4022016-02-18 16:13:51 -05002964 r = dm_grab_bdev_for_ioctl(md, &bdev, &mode);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02002965 if (r < 0)
2966 return r;
2967
2968 ops = bdev->bd_disk->fops->pr_ops;
2969 if (ops && ops->pr_release)
2970 r = ops->pr_release(bdev, key, type);
2971 else
2972 r = -EOPNOTSUPP;
2973
Mike Snitzer956a4022016-02-18 16:13:51 -05002974 bdput(bdev);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02002975 return r;
2976}
2977
2978static int dm_pr_preempt(struct block_device *bdev, u64 old_key, u64 new_key,
Mike Snitzer956a4022016-02-18 16:13:51 -05002979 enum pr_type type, bool abort)
Christoph Hellwig71cdb692015-10-15 14:10:51 +02002980{
2981 struct mapped_device *md = bdev->bd_disk->private_data;
2982 const struct pr_ops *ops;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02002983 fmode_t mode;
Mike Snitzer956a4022016-02-18 16:13:51 -05002984 int r;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02002985
Mike Snitzer956a4022016-02-18 16:13:51 -05002986 r = dm_grab_bdev_for_ioctl(md, &bdev, &mode);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02002987 if (r < 0)
2988 return r;
2989
2990 ops = bdev->bd_disk->fops->pr_ops;
2991 if (ops && ops->pr_preempt)
2992 r = ops->pr_preempt(bdev, old_key, new_key, type, abort);
2993 else
2994 r = -EOPNOTSUPP;
2995
Mike Snitzer956a4022016-02-18 16:13:51 -05002996 bdput(bdev);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02002997 return r;
2998}
2999
3000static int dm_pr_clear(struct block_device *bdev, u64 key)
3001{
3002 struct mapped_device *md = bdev->bd_disk->private_data;
3003 const struct pr_ops *ops;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003004 fmode_t mode;
Mike Snitzer956a4022016-02-18 16:13:51 -05003005 int r;
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003006
Mike Snitzer956a4022016-02-18 16:13:51 -05003007 r = dm_grab_bdev_for_ioctl(md, &bdev, &mode);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003008 if (r < 0)
3009 return r;
3010
3011 ops = bdev->bd_disk->fops->pr_ops;
3012 if (ops && ops->pr_clear)
3013 r = ops->pr_clear(bdev, key);
3014 else
3015 r = -EOPNOTSUPP;
3016
Mike Snitzer956a4022016-02-18 16:13:51 -05003017 bdput(bdev);
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003018 return r;
3019}
3020
3021static const struct pr_ops dm_pr_ops = {
3022 .pr_register = dm_pr_register,
3023 .pr_reserve = dm_pr_reserve,
3024 .pr_release = dm_pr_release,
3025 .pr_preempt = dm_pr_preempt,
3026 .pr_clear = dm_pr_clear,
3027};
3028
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07003029static const struct block_device_operations dm_blk_dops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030 .open = dm_blk_open,
3031 .release = dm_blk_close,
Milan Brozaa129a22006-10-03 01:15:15 -07003032 .ioctl = dm_blk_ioctl,
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08003033 .getgeo = dm_blk_getgeo,
Christoph Hellwig71cdb692015-10-15 14:10:51 +02003034 .pr_ops = &dm_pr_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035 .owner = THIS_MODULE
3036};
3037
Dan Williamsf26c5712017-04-12 12:35:44 -07003038static const struct dax_operations dm_dax_ops = {
3039 .direct_access = dm_dax_direct_access,
Dan Williams7e026c82017-05-29 12:57:56 -07003040 .copy_from_iter = dm_dax_copy_from_iter,
Dan Williamsf26c5712017-04-12 12:35:44 -07003041};
3042
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043/*
3044 * module hooks
3045 */
3046module_init(dm_init);
3047module_exit(dm_exit);
3048
3049module_param(major, uint, 0);
3050MODULE_PARM_DESC(major, "The major number of the device mapper");
Mike Snitzerf4790822013-09-12 18:06:12 -04003051
Mike Snitzere8603132013-09-12 18:06:12 -04003052module_param(reserved_bio_based_ios, uint, S_IRUGO | S_IWUSR);
3053MODULE_PARM_DESC(reserved_bio_based_ios, "Reserved IOs in bio-based mempools");
3054
Mike Snitzer115485e2016-02-22 12:16:21 -05003055module_param(dm_numa_node, int, S_IRUGO | S_IWUSR);
3056MODULE_PARM_DESC(dm_numa_node, "NUMA node for DM device memory allocations");
3057
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058MODULE_DESCRIPTION(DM_NAME " driver");
3059MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
3060MODULE_LICENSE("GPL");