]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | /* |
2 | * Copyright (C) 2001 Sistina Software (UK) Limited. | |
d5816876 | 3 | * Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved. |
1da177e4 LT |
4 | * |
5 | * This file is released under the GPL. | |
6 | */ | |
7 | ||
4cc96131 | 8 | #include "dm-core.h" |
1da177e4 LT |
9 | |
10 | #include <linux/module.h> | |
11 | #include <linux/vmalloc.h> | |
12 | #include <linux/blkdev.h> | |
fe45e630 | 13 | #include <linux/blk-integrity.h> |
1da177e4 LT |
14 | #include <linux/namei.h> |
15 | #include <linux/ctype.h> | |
e7d2860b | 16 | #include <linux/string.h> |
1da177e4 LT |
17 | #include <linux/slab.h> |
18 | #include <linux/interrupt.h> | |
48c9c27b | 19 | #include <linux/mutex.h> |
d5816876 | 20 | #include <linux/delay.h> |
60063497 | 21 | #include <linux/atomic.h> |
bfebd1cd | 22 | #include <linux/blk-mq.h> |
644bda6f | 23 | #include <linux/mount.h> |
273752c9 | 24 | #include <linux/dax.h> |
1da177e4 | 25 | |
72d94861 AK |
26 | #define DM_MSG_PREFIX "table" |
27 | ||
1da177e4 LT |
28 | #define NODE_SIZE L1_CACHE_BYTES |
29 | #define KEYS_PER_NODE (NODE_SIZE / sizeof(sector_t)) | |
30 | #define CHILDREN_PER_NODE (KEYS_PER_NODE + 1) | |
31 | ||
1da177e4 LT |
32 | /* |
33 | * Similar to ceiling(log_size(n)) | |
34 | */ | |
35 | static unsigned int int_log(unsigned int n, unsigned int base) | |
36 | { | |
37 | int result = 0; | |
38 | ||
39 | while (n > 1) { | |
40 | n = dm_div_up(n, base); | |
41 | result++; | |
42 | } | |
43 | ||
44 | return result; | |
45 | } | |
46 | ||
1da177e4 LT |
47 | /* |
48 | * Calculate the index of the child node of the n'th node k'th key. | |
49 | */ | |
50 | static inline unsigned int get_child(unsigned int n, unsigned int k) | |
51 | { | |
52 | return (n * CHILDREN_PER_NODE) + k; | |
53 | } | |
54 | ||
55 | /* | |
56 | * Return the n'th node of level l from table t. | |
57 | */ | |
58 | static inline sector_t *get_node(struct dm_table *t, | |
59 | unsigned int l, unsigned int n) | |
60 | { | |
61 | return t->index[l] + (n * KEYS_PER_NODE); | |
62 | } | |
63 | ||
64 | /* | |
65 | * Return the highest key that you could lookup from the n'th | |
66 | * node on level l of the btree. | |
67 | */ | |
68 | static sector_t high(struct dm_table *t, unsigned int l, unsigned int n) | |
69 | { | |
70 | for (; l < t->depth - 1; l++) | |
71 | n = get_child(n, CHILDREN_PER_NODE - 1); | |
72 | ||
73 | if (n >= t->counts[l]) | |
74 | return (sector_t) - 1; | |
75 | ||
76 | return get_node(t, l, n)[KEYS_PER_NODE - 1]; | |
77 | } | |
78 | ||
79 | /* | |
80 | * Fills in a level of the btree based on the highs of the level | |
81 | * below it. | |
82 | */ | |
83 | static int setup_btree_index(unsigned int l, struct dm_table *t) | |
84 | { | |
85 | unsigned int n, k; | |
86 | sector_t *node; | |
87 | ||
88 | for (n = 0U; n < t->counts[l]; n++) { | |
89 | node = get_node(t, l, n); | |
90 | ||
91 | for (k = 0U; k < KEYS_PER_NODE; k++) | |
92 | node[k] = high(t, l + 1, get_child(n, k)); | |
93 | } | |
94 | ||
95 | return 0; | |
96 | } | |
97 | ||
1da177e4 LT |
98 | /* |
99 | * highs, and targets are managed as dynamic arrays during a | |
100 | * table load. | |
101 | */ | |
102 | static int alloc_targets(struct dm_table *t, unsigned int num) | |
103 | { | |
104 | sector_t *n_highs; | |
105 | struct dm_target *n_targets; | |
1da177e4 LT |
106 | |
107 | /* | |
108 | * Allocate both the target array and offset array at once. | |
109 | */ | |
7a35693a MWO |
110 | n_highs = kvcalloc(num, sizeof(struct dm_target) + sizeof(sector_t), |
111 | GFP_KERNEL); | |
1da177e4 LT |
112 | if (!n_highs) |
113 | return -ENOMEM; | |
114 | ||
115 | n_targets = (struct dm_target *) (n_highs + num); | |
116 | ||
57a2f238 | 117 | memset(n_highs, -1, sizeof(*n_highs) * num); |
7a35693a | 118 | kvfree(t->highs); |
1da177e4 LT |
119 | |
120 | t->num_allocated = num; | |
121 | t->highs = n_highs; | |
122 | t->targets = n_targets; | |
123 | ||
124 | return 0; | |
125 | } | |
126 | ||
aeb5d727 | 127 | int dm_table_create(struct dm_table **result, fmode_t mode, |
1134e5ae | 128 | unsigned num_targets, struct mapped_device *md) |
1da177e4 | 129 | { |
094262db | 130 | struct dm_table *t = kzalloc(sizeof(*t), GFP_KERNEL); |
1da177e4 LT |
131 | |
132 | if (!t) | |
133 | return -ENOMEM; | |
134 | ||
1da177e4 | 135 | INIT_LIST_HEAD(&t->devices); |
1da177e4 LT |
136 | |
137 | if (!num_targets) | |
138 | num_targets = KEYS_PER_NODE; | |
139 | ||
140 | num_targets = dm_round_up(num_targets, KEYS_PER_NODE); | |
141 | ||
5b2d0657 MP |
142 | if (!num_targets) { |
143 | kfree(t); | |
144 | return -ENOMEM; | |
145 | } | |
146 | ||
1da177e4 LT |
147 | if (alloc_targets(t, num_targets)) { |
148 | kfree(t); | |
1da177e4 LT |
149 | return -ENOMEM; |
150 | } | |
151 | ||
e83068a5 | 152 | t->type = DM_TYPE_NONE; |
1da177e4 | 153 | t->mode = mode; |
1134e5ae | 154 | t->md = md; |
1da177e4 LT |
155 | *result = t; |
156 | return 0; | |
157 | } | |
158 | ||
86f1152b | 159 | static void free_devices(struct list_head *devices, struct mapped_device *md) |
1da177e4 LT |
160 | { |
161 | struct list_head *tmp, *next; | |
162 | ||
afb24528 | 163 | list_for_each_safe(tmp, next, devices) { |
82b1519b MP |
164 | struct dm_dev_internal *dd = |
165 | list_entry(tmp, struct dm_dev_internal, list); | |
86f1152b BM |
166 | DMWARN("%s: dm_table_destroy: dm_put_device call missing for %s", |
167 | dm_device_name(md), dd->dm_dev->name); | |
168 | dm_put_table_device(md, dd->dm_dev); | |
1da177e4 LT |
169 | kfree(dd); |
170 | } | |
171 | } | |
172 | ||
cb77cb5a | 173 | static void dm_table_destroy_crypto_profile(struct dm_table *t); |
aa6ce87a | 174 | |
d5816876 | 175 | void dm_table_destroy(struct dm_table *t) |
1da177e4 LT |
176 | { |
177 | unsigned int i; | |
178 | ||
a7940155 AK |
179 | if (!t) |
180 | return; | |
181 | ||
26803b9f | 182 | /* free the indexes */ |
1da177e4 | 183 | if (t->depth >= 2) |
7a35693a | 184 | kvfree(t->index[t->depth - 2]); |
1da177e4 LT |
185 | |
186 | /* free the targets */ | |
187 | for (i = 0; i < t->num_targets; i++) { | |
188 | struct dm_target *tgt = t->targets + i; | |
189 | ||
190 | if (tgt->type->dtr) | |
191 | tgt->type->dtr(tgt); | |
192 | ||
193 | dm_put_target_type(tgt->type); | |
194 | } | |
195 | ||
7a35693a | 196 | kvfree(t->highs); |
1da177e4 LT |
197 | |
198 | /* free the device list */ | |
86f1152b | 199 | free_devices(&t->devices, t->md); |
1da177e4 | 200 | |
e6ee8c0b KU |
201 | dm_free_md_mempools(t->mempools); |
202 | ||
cb77cb5a | 203 | dm_table_destroy_crypto_profile(t); |
aa6ce87a | 204 | |
1da177e4 LT |
205 | kfree(t); |
206 | } | |
207 | ||
1da177e4 LT |
208 | /* |
209 | * See if we've already got a device in the list. | |
210 | */ | |
82b1519b | 211 | static struct dm_dev_internal *find_device(struct list_head *l, dev_t dev) |
1da177e4 | 212 | { |
82b1519b | 213 | struct dm_dev_internal *dd; |
1da177e4 LT |
214 | |
215 | list_for_each_entry (dd, l, list) | |
86f1152b | 216 | if (dd->dm_dev->bdev->bd_dev == dev) |
1da177e4 LT |
217 | return dd; |
218 | ||
219 | return NULL; | |
220 | } | |
221 | ||
1da177e4 | 222 | /* |
f6a1ed10 | 223 | * If possible, this checks an area of a destination device is invalid. |
1da177e4 | 224 | */ |
f6a1ed10 MP |
225 | static int device_area_is_invalid(struct dm_target *ti, struct dm_dev *dev, |
226 | sector_t start, sector_t len, void *data) | |
1da177e4 | 227 | { |
754c5fc7 MS |
228 | struct queue_limits *limits = data; |
229 | struct block_device *bdev = dev->bdev; | |
6dcbb52c | 230 | sector_t dev_size = bdev_nr_sectors(bdev); |
02acc3a4 | 231 | unsigned short logical_block_size_sectors = |
754c5fc7 | 232 | limits->logical_block_size >> SECTOR_SHIFT; |
2cd54d9b MA |
233 | |
234 | if (!dev_size) | |
f6a1ed10 | 235 | return 0; |
2cd54d9b | 236 | |
5dea271b | 237 | if ((start >= dev_size) || (start + len > dev_size)) { |
385411ff | 238 | DMWARN("%s: %pg too small for target: " |
a963a956 | 239 | "start=%llu, len=%llu, dev_size=%llu", |
385411ff | 240 | dm_device_name(ti->table->md), bdev, |
a963a956 MS |
241 | (unsigned long long)start, |
242 | (unsigned long long)len, | |
243 | (unsigned long long)dev_size); | |
f6a1ed10 | 244 | return 1; |
02acc3a4 MS |
245 | } |
246 | ||
dd88d313 DLM |
247 | /* |
248 | * If the target is mapped to zoned block device(s), check | |
249 | * that the zones are not partially mapped. | |
250 | */ | |
dd73c320 | 251 | if (bdev_is_zoned(bdev)) { |
dd88d313 DLM |
252 | unsigned int zone_sectors = bdev_zone_sectors(bdev); |
253 | ||
254 | if (start & (zone_sectors - 1)) { | |
385411ff | 255 | DMWARN("%s: start=%llu not aligned to h/w zone size %u of %pg", |
dd88d313 DLM |
256 | dm_device_name(ti->table->md), |
257 | (unsigned long long)start, | |
385411ff | 258 | zone_sectors, bdev); |
dd88d313 DLM |
259 | return 1; |
260 | } | |
261 | ||
262 | /* | |
263 | * Note: The last zone of a zoned block device may be smaller | |
264 | * than other zones. So for a target mapping the end of a | |
265 | * zoned block device with such a zone, len would not be zone | |
266 | * aligned. We do not allow such last smaller zone to be part | |
267 | * of the mapping here to ensure that mappings with multiple | |
268 | * devices do not end up with a smaller zone in the middle of | |
269 | * the sector range. | |
270 | */ | |
271 | if (len & (zone_sectors - 1)) { | |
385411ff | 272 | DMWARN("%s: len=%llu not aligned to h/w zone size %u of %pg", |
dd88d313 DLM |
273 | dm_device_name(ti->table->md), |
274 | (unsigned long long)len, | |
385411ff | 275 | zone_sectors, bdev); |
dd88d313 DLM |
276 | return 1; |
277 | } | |
278 | } | |
279 | ||
02acc3a4 | 280 | if (logical_block_size_sectors <= 1) |
f6a1ed10 | 281 | return 0; |
02acc3a4 MS |
282 | |
283 | if (start & (logical_block_size_sectors - 1)) { | |
284 | DMWARN("%s: start=%llu not aligned to h/w " | |
385411ff | 285 | "logical block size %u of %pg", |
02acc3a4 MS |
286 | dm_device_name(ti->table->md), |
287 | (unsigned long long)start, | |
385411ff | 288 | limits->logical_block_size, bdev); |
f6a1ed10 | 289 | return 1; |
02acc3a4 MS |
290 | } |
291 | ||
5dea271b | 292 | if (len & (logical_block_size_sectors - 1)) { |
02acc3a4 | 293 | DMWARN("%s: len=%llu not aligned to h/w " |
385411ff | 294 | "logical block size %u of %pg", |
02acc3a4 | 295 | dm_device_name(ti->table->md), |
5dea271b | 296 | (unsigned long long)len, |
385411ff | 297 | limits->logical_block_size, bdev); |
f6a1ed10 | 298 | return 1; |
02acc3a4 MS |
299 | } |
300 | ||
f6a1ed10 | 301 | return 0; |
1da177e4 LT |
302 | } |
303 | ||
304 | /* | |
570b9d96 | 305 | * This upgrades the mode on an already open dm_dev, being |
1da177e4 | 306 | * careful to leave things as they were if we fail to reopen the |
570b9d96 | 307 | * device and not to touch the existing bdev field in case |
21cf8661 | 308 | * it is accessed concurrently. |
1da177e4 | 309 | */ |
aeb5d727 | 310 | static int upgrade_mode(struct dm_dev_internal *dd, fmode_t new_mode, |
82b1519b | 311 | struct mapped_device *md) |
1da177e4 LT |
312 | { |
313 | int r; | |
86f1152b | 314 | struct dm_dev *old_dev, *new_dev; |
1da177e4 | 315 | |
86f1152b | 316 | old_dev = dd->dm_dev; |
570b9d96 | 317 | |
86f1152b BM |
318 | r = dm_get_table_device(md, dd->dm_dev->bdev->bd_dev, |
319 | dd->dm_dev->mode | new_mode, &new_dev); | |
570b9d96 AK |
320 | if (r) |
321 | return r; | |
1da177e4 | 322 | |
86f1152b BM |
323 | dd->dm_dev = new_dev; |
324 | dm_put_table_device(md, old_dev); | |
1da177e4 | 325 | |
570b9d96 | 326 | return 0; |
1da177e4 LT |
327 | } |
328 | ||
4df2bf46 D |
329 | /* |
330 | * Convert the path to a device | |
331 | */ | |
332 | dev_t dm_get_dev_t(const char *path) | |
333 | { | |
3c120169 | 334 | dev_t dev; |
4df2bf46 | 335 | |
4e7b5671 | 336 | if (lookup_bdev(path, &dev)) |
4df2bf46 | 337 | dev = name_to_dev_t(path); |
4df2bf46 D |
338 | return dev; |
339 | } | |
340 | EXPORT_SYMBOL_GPL(dm_get_dev_t); | |
341 | ||
1da177e4 LT |
342 | /* |
343 | * Add a device to the list, or just increment the usage count if | |
344 | * it's already present. | |
345 | */ | |
08649012 MS |
346 | int dm_get_device(struct dm_target *ti, const char *path, fmode_t mode, |
347 | struct dm_dev **result) | |
1da177e4 LT |
348 | { |
349 | int r; | |
4df2bf46 | 350 | dev_t dev; |
809b1e49 HR |
351 | unsigned int major, minor; |
352 | char dummy; | |
82b1519b | 353 | struct dm_dev_internal *dd; |
08649012 | 354 | struct dm_table *t = ti->table; |
1da177e4 | 355 | |
547bc926 | 356 | BUG_ON(!t); |
1da177e4 | 357 | |
809b1e49 HR |
358 | if (sscanf(path, "%u:%u%c", &major, &minor, &dummy) == 2) { |
359 | /* Extract the major/minor numbers */ | |
360 | dev = MKDEV(major, minor); | |
361 | if (MAJOR(dev) != major || MINOR(dev) != minor) | |
362 | return -EOVERFLOW; | |
363 | } else { | |
364 | dev = dm_get_dev_t(path); | |
365 | if (!dev) | |
366 | return -ENODEV; | |
367 | } | |
1da177e4 LT |
368 | |
369 | dd = find_device(&t->devices, dev); | |
370 | if (!dd) { | |
371 | dd = kmalloc(sizeof(*dd), GFP_KERNEL); | |
372 | if (!dd) | |
373 | return -ENOMEM; | |
374 | ||
86f1152b | 375 | if ((r = dm_get_table_device(t->md, dev, mode, &dd->dm_dev))) { |
1da177e4 LT |
376 | kfree(dd); |
377 | return r; | |
378 | } | |
379 | ||
2a0b4682 | 380 | refcount_set(&dd->count, 1); |
1da177e4 | 381 | list_add(&dd->list, &t->devices); |
afc567a4 | 382 | goto out; |
1da177e4 | 383 | |
86f1152b | 384 | } else if (dd->dm_dev->mode != (mode | dd->dm_dev->mode)) { |
f165921d | 385 | r = upgrade_mode(dd, mode, t->md); |
1da177e4 LT |
386 | if (r) |
387 | return r; | |
388 | } | |
afc567a4 MS |
389 | refcount_inc(&dd->count); |
390 | out: | |
86f1152b | 391 | *result = dd->dm_dev; |
1da177e4 LT |
392 | return 0; |
393 | } | |
08649012 | 394 | EXPORT_SYMBOL(dm_get_device); |
1da177e4 | 395 | |
11f0431b MS |
396 | static int dm_set_device_limits(struct dm_target *ti, struct dm_dev *dev, |
397 | sector_t start, sector_t len, void *data) | |
1da177e4 | 398 | { |
754c5fc7 MS |
399 | struct queue_limits *limits = data; |
400 | struct block_device *bdev = dev->bdev; | |
165125e1 | 401 | struct request_queue *q = bdev_get_queue(bdev); |
0c2322e4 AK |
402 | |
403 | if (unlikely(!q)) { | |
385411ff CH |
404 | DMWARN("%s: Cannot set limits for nonexistent device %pg", |
405 | dm_device_name(ti->table->md), bdev); | |
754c5fc7 | 406 | return 0; |
0c2322e4 | 407 | } |
3cb40214 | 408 | |
9efa82ef CH |
409 | if (blk_stack_limits(limits, &q->limits, |
410 | get_start_sect(bdev) + start) < 0) | |
385411ff | 411 | DMWARN("%s: adding target device %pg caused an alignment inconsistency: " |
a963a956 MS |
412 | "physical_block_size=%u, logical_block_size=%u, " |
413 | "alignment_offset=%u, start=%llu", | |
385411ff | 414 | dm_device_name(ti->table->md), bdev, |
a963a956 MS |
415 | q->limits.physical_block_size, |
416 | q->limits.logical_block_size, | |
417 | q->limits.alignment_offset, | |
b27d7f16 | 418 | (unsigned long long) start << SECTOR_SHIFT); |
754c5fc7 | 419 | return 0; |
3cb40214 | 420 | } |
969429b5 | 421 | |
1da177e4 | 422 | /* |
08649012 | 423 | * Decrement a device's use count and remove it if necessary. |
1da177e4 | 424 | */ |
82b1519b | 425 | void dm_put_device(struct dm_target *ti, struct dm_dev *d) |
1da177e4 | 426 | { |
86f1152b BM |
427 | int found = 0; |
428 | struct list_head *devices = &ti->table->devices; | |
429 | struct dm_dev_internal *dd; | |
82b1519b | 430 | |
86f1152b BM |
431 | list_for_each_entry(dd, devices, list) { |
432 | if (dd->dm_dev == d) { | |
433 | found = 1; | |
434 | break; | |
435 | } | |
436 | } | |
437 | if (!found) { | |
438 | DMWARN("%s: device %s not in table devices list", | |
439 | dm_device_name(ti->table->md), d->name); | |
440 | return; | |
441 | } | |
2a0b4682 | 442 | if (refcount_dec_and_test(&dd->count)) { |
86f1152b | 443 | dm_put_table_device(ti->table->md, d); |
1da177e4 LT |
444 | list_del(&dd->list); |
445 | kfree(dd); | |
446 | } | |
447 | } | |
08649012 | 448 | EXPORT_SYMBOL(dm_put_device); |
1da177e4 LT |
449 | |
450 | /* | |
451 | * Checks to see if the target joins onto the end of the table. | |
452 | */ | |
453 | static int adjoin(struct dm_table *table, struct dm_target *ti) | |
454 | { | |
455 | struct dm_target *prev; | |
456 | ||
457 | if (!table->num_targets) | |
458 | return !ti->begin; | |
459 | ||
460 | prev = &table->targets[table->num_targets - 1]; | |
461 | return (ti->begin == (prev->begin + prev->len)); | |
462 | } | |
463 | ||
464 | /* | |
465 | * Used to dynamically allocate the arg array. | |
f36afb39 MP |
466 | * |
467 | * We do first allocation with GFP_NOIO because dm-mpath and dm-thin must | |
468 | * process messages even if some device is suspended. These messages have a | |
469 | * small fixed number of arguments. | |
470 | * | |
471 | * On the other hand, dm-switch needs to process bulk data using messages and | |
472 | * excessive use of GFP_NOIO could cause trouble. | |
1da177e4 | 473 | */ |
610b15c5 | 474 | static char **realloc_argv(unsigned *size, char **old_argv) |
1da177e4 LT |
475 | { |
476 | char **argv; | |
477 | unsigned new_size; | |
f36afb39 | 478 | gfp_t gfp; |
1da177e4 | 479 | |
610b15c5 KC |
480 | if (*size) { |
481 | new_size = *size * 2; | |
f36afb39 MP |
482 | gfp = GFP_KERNEL; |
483 | } else { | |
484 | new_size = 8; | |
485 | gfp = GFP_NOIO; | |
486 | } | |
6da2ec56 | 487 | argv = kmalloc_array(new_size, sizeof(*argv), gfp); |
a0651926 | 488 | if (argv && old_argv) { |
610b15c5 KC |
489 | memcpy(argv, old_argv, *size * sizeof(*argv)); |
490 | *size = new_size; | |
1da177e4 LT |
491 | } |
492 | ||
493 | kfree(old_argv); | |
494 | return argv; | |
495 | } | |
496 | ||
497 | /* | |
498 | * Destructively splits up the argument list to pass to ctr. | |
499 | */ | |
500 | int dm_split_args(int *argc, char ***argvp, char *input) | |
501 | { | |
502 | char *start, *end = input, *out, **argv = NULL; | |
503 | unsigned array_size = 0; | |
504 | ||
505 | *argc = 0; | |
814d6862 DT |
506 | |
507 | if (!input) { | |
508 | *argvp = NULL; | |
509 | return 0; | |
510 | } | |
511 | ||
1da177e4 LT |
512 | argv = realloc_argv(&array_size, argv); |
513 | if (!argv) | |
514 | return -ENOMEM; | |
515 | ||
516 | while (1) { | |
1da177e4 | 517 | /* Skip whitespace */ |
e7d2860b | 518 | start = skip_spaces(end); |
1da177e4 LT |
519 | |
520 | if (!*start) | |
521 | break; /* success, we hit the end */ | |
522 | ||
523 | /* 'out' is used to remove any back-quotes */ | |
524 | end = out = start; | |
525 | while (*end) { | |
526 | /* Everything apart from '\0' can be quoted */ | |
527 | if (*end == '\\' && *(end + 1)) { | |
528 | *out++ = *(end + 1); | |
529 | end += 2; | |
530 | continue; | |
531 | } | |
532 | ||
533 | if (isspace(*end)) | |
534 | break; /* end of token */ | |
535 | ||
536 | *out++ = *end++; | |
537 | } | |
538 | ||
539 | /* have we already filled the array ? */ | |
540 | if ((*argc + 1) > array_size) { | |
541 | argv = realloc_argv(&array_size, argv); | |
542 | if (!argv) | |
543 | return -ENOMEM; | |
544 | } | |
545 | ||
546 | /* we know this is whitespace */ | |
547 | if (*end) | |
548 | end++; | |
549 | ||
550 | /* terminate the string and put it in the array */ | |
551 | *out = '\0'; | |
552 | argv[*argc] = start; | |
553 | (*argc)++; | |
554 | } | |
555 | ||
556 | *argvp = argv; | |
557 | return 0; | |
558 | } | |
559 | ||
be6d4305 MS |
560 | /* |
561 | * Impose necessary and sufficient conditions on a devices's table such | |
562 | * that any incoming bio which respects its logical_block_size can be | |
563 | * processed successfully. If it falls across the boundary between | |
564 | * two or more targets, the size of each piece it gets split into must | |
565 | * be compatible with the logical_block_size of the target processing it. | |
566 | */ | |
754c5fc7 MS |
567 | static int validate_hardware_logical_block_alignment(struct dm_table *table, |
568 | struct queue_limits *limits) | |
be6d4305 MS |
569 | { |
570 | /* | |
571 | * This function uses arithmetic modulo the logical_block_size | |
572 | * (in units of 512-byte sectors). | |
573 | */ | |
574 | unsigned short device_logical_block_size_sects = | |
754c5fc7 | 575 | limits->logical_block_size >> SECTOR_SHIFT; |
be6d4305 MS |
576 | |
577 | /* | |
578 | * Offset of the start of the next table entry, mod logical_block_size. | |
579 | */ | |
580 | unsigned short next_target_start = 0; | |
581 | ||
582 | /* | |
583 | * Given an aligned bio that extends beyond the end of a | |
584 | * target, how many sectors must the next target handle? | |
585 | */ | |
586 | unsigned short remaining = 0; | |
587 | ||
3f649ab7 | 588 | struct dm_target *ti; |
754c5fc7 | 589 | struct queue_limits ti_limits; |
3c120169 | 590 | unsigned i; |
be6d4305 MS |
591 | |
592 | /* | |
593 | * Check each entry in the table in turn. | |
594 | */ | |
3c120169 MP |
595 | for (i = 0; i < dm_table_get_num_targets(table); i++) { |
596 | ti = dm_table_get_target(table, i); | |
be6d4305 | 597 | |
b1bd055d | 598 | blk_set_stacking_limits(&ti_limits); |
754c5fc7 MS |
599 | |
600 | /* combine all target devices' limits */ | |
601 | if (ti->type->iterate_devices) | |
602 | ti->type->iterate_devices(ti, dm_set_device_limits, | |
603 | &ti_limits); | |
604 | ||
be6d4305 MS |
605 | /* |
606 | * If the remaining sectors fall entirely within this | |
607 | * table entry are they compatible with its logical_block_size? | |
608 | */ | |
609 | if (remaining < ti->len && | |
754c5fc7 | 610 | remaining & ((ti_limits.logical_block_size >> |
be6d4305 MS |
611 | SECTOR_SHIFT) - 1)) |
612 | break; /* Error */ | |
613 | ||
614 | next_target_start = | |
615 | (unsigned short) ((next_target_start + ti->len) & | |
616 | (device_logical_block_size_sects - 1)); | |
617 | remaining = next_target_start ? | |
618 | device_logical_block_size_sects - next_target_start : 0; | |
619 | } | |
620 | ||
621 | if (remaining) { | |
622 | DMWARN("%s: table line %u (start sect %llu len %llu) " | |
a963a956 | 623 | "not aligned to h/w logical block size %u", |
be6d4305 MS |
624 | dm_device_name(table->md), i, |
625 | (unsigned long long) ti->begin, | |
626 | (unsigned long long) ti->len, | |
754c5fc7 | 627 | limits->logical_block_size); |
be6d4305 MS |
628 | return -EINVAL; |
629 | } | |
630 | ||
631 | return 0; | |
632 | } | |
633 | ||
1da177e4 LT |
634 | int dm_table_add_target(struct dm_table *t, const char *type, |
635 | sector_t start, sector_t len, char *params) | |
636 | { | |
637 | int r = -EINVAL, argc; | |
638 | char **argv; | |
639 | struct dm_target *tgt; | |
640 | ||
3791e2fc AK |
641 | if (t->singleton) { |
642 | DMERR("%s: target type %s must appear alone in table", | |
643 | dm_device_name(t->md), t->targets->type->name); | |
644 | return -EINVAL; | |
645 | } | |
646 | ||
57a2f238 | 647 | BUG_ON(t->num_targets >= t->num_allocated); |
1da177e4 LT |
648 | |
649 | tgt = t->targets + t->num_targets; | |
650 | memset(tgt, 0, sizeof(*tgt)); | |
651 | ||
652 | if (!len) { | |
72d94861 | 653 | DMERR("%s: zero-length target", dm_device_name(t->md)); |
1da177e4 LT |
654 | return -EINVAL; |
655 | } | |
656 | ||
657 | tgt->type = dm_get_target_type(type); | |
658 | if (!tgt->type) { | |
dafa724b | 659 | DMERR("%s: %s: unknown target type", dm_device_name(t->md), type); |
1da177e4 LT |
660 | return -EINVAL; |
661 | } | |
662 | ||
3791e2fc AK |
663 | if (dm_target_needs_singleton(tgt->type)) { |
664 | if (t->num_targets) { | |
dafa724b | 665 | tgt->error = "singleton target type must appear alone in table"; |
666 | goto bad; | |
3791e2fc | 667 | } |
e83068a5 | 668 | t->singleton = true; |
3791e2fc AK |
669 | } |
670 | ||
cc6cbe14 | 671 | if (dm_target_always_writeable(tgt->type) && !(t->mode & FMODE_WRITE)) { |
dafa724b | 672 | tgt->error = "target type may not be included in a read-only table"; |
673 | goto bad; | |
cc6cbe14 AK |
674 | } |
675 | ||
36a0456f AK |
676 | if (t->immutable_target_type) { |
677 | if (t->immutable_target_type != tgt->type) { | |
dafa724b | 678 | tgt->error = "immutable target type cannot be mixed with other target types"; |
679 | goto bad; | |
36a0456f AK |
680 | } |
681 | } else if (dm_target_is_immutable(tgt->type)) { | |
682 | if (t->num_targets) { | |
dafa724b | 683 | tgt->error = "immutable target type cannot be mixed with other target types"; |
684 | goto bad; | |
36a0456f AK |
685 | } |
686 | t->immutable_target_type = tgt->type; | |
687 | } | |
688 | ||
9b4b5a79 MB |
689 | if (dm_target_has_integrity(tgt->type)) |
690 | t->integrity_added = 1; | |
691 | ||
1da177e4 LT |
692 | tgt->table = t; |
693 | tgt->begin = start; | |
694 | tgt->len = len; | |
695 | tgt->error = "Unknown error"; | |
696 | ||
697 | /* | |
698 | * Does this target adjoin the previous one ? | |
699 | */ | |
700 | if (!adjoin(t, tgt)) { | |
701 | tgt->error = "Gap in table"; | |
1da177e4 LT |
702 | goto bad; |
703 | } | |
704 | ||
705 | r = dm_split_args(&argc, &argv, params); | |
706 | if (r) { | |
7552750d | 707 | tgt->error = "couldn't split parameters"; |
1da177e4 LT |
708 | goto bad; |
709 | } | |
710 | ||
711 | r = tgt->type->ctr(tgt, argc, argv); | |
712 | kfree(argv); | |
713 | if (r) | |
714 | goto bad; | |
715 | ||
716 | t->highs[t->num_targets++] = tgt->begin + tgt->len - 1; | |
717 | ||
55a62eef AK |
718 | if (!tgt->num_discard_bios && tgt->discards_supported) |
719 | DMWARN("%s: %s: ignoring discards_supported because num_discard_bios is zero.", | |
936688d7 | 720 | dm_device_name(t->md), type); |
5ae89a87 | 721 | |
442761fd MS |
722 | if (tgt->limit_swap_bios && !static_key_enabled(&swap_bios_enabled.key)) |
723 | static_branch_enable(&swap_bios_enabled); | |
724 | ||
1da177e4 LT |
725 | return 0; |
726 | ||
727 | bad: | |
7552750d | 728 | DMERR("%s: %s: %s (%pe)", dm_device_name(t->md), type, tgt->error, ERR_PTR(r)); |
1da177e4 LT |
729 | dm_put_target_type(tgt->type); |
730 | return r; | |
731 | } | |
732 | ||
498f0103 MS |
733 | /* |
734 | * Target argument parsing helpers. | |
735 | */ | |
5916a22b EB |
736 | static int validate_next_arg(const struct dm_arg *arg, |
737 | struct dm_arg_set *arg_set, | |
498f0103 MS |
738 | unsigned *value, char **error, unsigned grouped) |
739 | { | |
740 | const char *arg_str = dm_shift_arg(arg_set); | |
31998ef1 | 741 | char dummy; |
498f0103 MS |
742 | |
743 | if (!arg_str || | |
31998ef1 | 744 | (sscanf(arg_str, "%u%c", value, &dummy) != 1) || |
498f0103 MS |
745 | (*value < arg->min) || |
746 | (*value > arg->max) || | |
747 | (grouped && arg_set->argc < *value)) { | |
748 | *error = arg->error; | |
749 | return -EINVAL; | |
750 | } | |
751 | ||
752 | return 0; | |
753 | } | |
754 | ||
5916a22b | 755 | int dm_read_arg(const struct dm_arg *arg, struct dm_arg_set *arg_set, |
498f0103 MS |
756 | unsigned *value, char **error) |
757 | { | |
758 | return validate_next_arg(arg, arg_set, value, error, 0); | |
759 | } | |
760 | EXPORT_SYMBOL(dm_read_arg); | |
761 | ||
5916a22b | 762 | int dm_read_arg_group(const struct dm_arg *arg, struct dm_arg_set *arg_set, |
498f0103 MS |
763 | unsigned *value, char **error) |
764 | { | |
765 | return validate_next_arg(arg, arg_set, value, error, 1); | |
766 | } | |
767 | EXPORT_SYMBOL(dm_read_arg_group); | |
768 | ||
769 | const char *dm_shift_arg(struct dm_arg_set *as) | |
770 | { | |
771 | char *r; | |
772 | ||
773 | if (as->argc) { | |
774 | as->argc--; | |
775 | r = *as->argv; | |
776 | as->argv++; | |
777 | return r; | |
778 | } | |
779 | ||
780 | return NULL; | |
781 | } | |
782 | EXPORT_SYMBOL(dm_shift_arg); | |
783 | ||
784 | void dm_consume_args(struct dm_arg_set *as, unsigned num_args) | |
785 | { | |
786 | BUG_ON(as->argc < num_args); | |
787 | as->argc -= num_args; | |
788 | as->argv += num_args; | |
789 | } | |
790 | EXPORT_SYMBOL(dm_consume_args); | |
791 | ||
7e0d574f | 792 | static bool __table_type_bio_based(enum dm_queue_mode table_type) |
545ed20e TK |
793 | { |
794 | return (table_type == DM_TYPE_BIO_BASED || | |
9c37de29 | 795 | table_type == DM_TYPE_DAX_BIO_BASED); |
545ed20e TK |
796 | } |
797 | ||
7e0d574f | 798 | static bool __table_type_request_based(enum dm_queue_mode table_type) |
15b94a69 | 799 | { |
953923c0 | 800 | return table_type == DM_TYPE_REQUEST_BASED; |
15b94a69 JN |
801 | } |
802 | ||
7e0d574f | 803 | void dm_table_set_type(struct dm_table *t, enum dm_queue_mode type) |
e83068a5 MS |
804 | { |
805 | t->type = type; | |
806 | } | |
807 | EXPORT_SYMBOL_GPL(dm_table_set_type); | |
808 | ||
7bf7eac8 | 809 | /* validate the dax capability of the target device span */ |
7b0800d0 | 810 | static int device_not_dax_capable(struct dm_target *ti, struct dm_dev *dev, |
9c50a98f | 811 | sector_t start, sector_t len, void *data) |
545ed20e | 812 | { |
7b0800d0 CH |
813 | if (dev->dax_dev) |
814 | return false; | |
7bf7eac8 | 815 | |
7b0800d0 CH |
816 | DMDEBUG("%pg: error: dax unsupported by block device", dev->bdev); |
817 | return true; | |
545ed20e TK |
818 | } |
819 | ||
2e9ee095 | 820 | /* Check devices support synchronous DAX */ |
5b0fab50 JX |
821 | static int device_not_dax_synchronous_capable(struct dm_target *ti, struct dm_dev *dev, |
822 | sector_t start, sector_t len, void *data) | |
2e9ee095 | 823 | { |
5b0fab50 | 824 | return !dev->dax_dev || !dax_synchronous(dev->dax_dev); |
2e9ee095 PG |
825 | } |
826 | ||
7b0800d0 CH |
827 | static bool dm_table_supports_dax(struct dm_table *t, |
828 | iterate_devices_callout_fn iterate_fn) | |
545ed20e TK |
829 | { |
830 | struct dm_target *ti; | |
3c120169 | 831 | unsigned i; |
545ed20e TK |
832 | |
833 | /* Ensure that all targets support DAX. */ | |
3c120169 MP |
834 | for (i = 0; i < dm_table_get_num_targets(t); i++) { |
835 | ti = dm_table_get_target(t, i); | |
545ed20e TK |
836 | |
837 | if (!ti->type->direct_access) | |
838 | return false; | |
839 | ||
840 | if (!ti->type->iterate_devices || | |
7b0800d0 | 841 | ti->type->iterate_devices(ti, iterate_fn, NULL)) |
545ed20e TK |
842 | return false; |
843 | } | |
844 | ||
845 | return true; | |
846 | } | |
847 | ||
6ba01df7 MS |
848 | static int device_is_rq_stackable(struct dm_target *ti, struct dm_dev *dev, |
849 | sector_t start, sector_t len, void *data) | |
eaa160ed | 850 | { |
6ba01df7 MS |
851 | struct block_device *bdev = dev->bdev; |
852 | struct request_queue *q = bdev_get_queue(bdev); | |
eaa160ed | 853 | |
6ba01df7 | 854 | /* request-based cannot stack on partitions! */ |
fa01b1e9 | 855 | if (bdev_is_partition(bdev)) |
6ba01df7 | 856 | return false; |
eaa160ed | 857 | |
344e9ffc | 858 | return queue_is_mq(q); |
eaa160ed MS |
859 | } |
860 | ||
e83068a5 | 861 | static int dm_table_determine_type(struct dm_table *t) |
e6ee8c0b KU |
862 | { |
863 | unsigned i; | |
169e2cc2 | 864 | unsigned bio_based = 0, request_based = 0, hybrid = 0; |
e6ee8c0b | 865 | struct dm_target *tgt; |
e83068a5 | 866 | struct list_head *devices = dm_table_get_devices(t); |
7e0d574f | 867 | enum dm_queue_mode live_md_type = dm_get_md_type(t->md); |
e6ee8c0b | 868 | |
e83068a5 MS |
869 | if (t->type != DM_TYPE_NONE) { |
870 | /* target already set the table's type */ | |
c934edad MS |
871 | if (t->type == DM_TYPE_BIO_BASED) { |
872 | /* possibly upgrade to a variant of bio-based */ | |
873 | goto verify_bio_based; | |
22c11858 | 874 | } |
545ed20e | 875 | BUG_ON(t->type == DM_TYPE_DAX_BIO_BASED); |
e83068a5 MS |
876 | goto verify_rq_based; |
877 | } | |
878 | ||
e6ee8c0b KU |
879 | for (i = 0; i < t->num_targets; i++) { |
880 | tgt = t->targets + i; | |
169e2cc2 MS |
881 | if (dm_target_hybrid(tgt)) |
882 | hybrid = 1; | |
883 | else if (dm_target_request_based(tgt)) | |
e6ee8c0b KU |
884 | request_based = 1; |
885 | else | |
886 | bio_based = 1; | |
887 | ||
888 | if (bio_based && request_based) { | |
22c11858 MS |
889 | DMERR("Inconsistent table: different target types" |
890 | " can't be mixed up"); | |
e6ee8c0b KU |
891 | return -EINVAL; |
892 | } | |
893 | } | |
894 | ||
169e2cc2 MS |
895 | if (hybrid && !bio_based && !request_based) { |
896 | /* | |
897 | * The targets can work either way. | |
898 | * Determine the type from the live device. | |
899 | * Default to bio-based if device is new. | |
900 | */ | |
15b94a69 | 901 | if (__table_type_request_based(live_md_type)) |
169e2cc2 MS |
902 | request_based = 1; |
903 | else | |
904 | bio_based = 1; | |
905 | } | |
906 | ||
e6ee8c0b | 907 | if (bio_based) { |
c934edad | 908 | verify_bio_based: |
e6ee8c0b KU |
909 | /* We must use this table as bio-based */ |
910 | t->type = DM_TYPE_BIO_BASED; | |
7b0800d0 | 911 | if (dm_table_supports_dax(t, device_not_dax_capable) || |
22c11858 | 912 | (list_empty(devices) && live_md_type == DM_TYPE_DAX_BIO_BASED)) { |
545ed20e | 913 | t->type = DM_TYPE_DAX_BIO_BASED; |
22c11858 | 914 | } |
e6ee8c0b KU |
915 | return 0; |
916 | } | |
917 | ||
918 | BUG_ON(!request_based); /* No targets in this table */ | |
919 | ||
e83068a5 MS |
920 | t->type = DM_TYPE_REQUEST_BASED; |
921 | ||
922 | verify_rq_based: | |
65803c20 MS |
923 | /* |
924 | * Request-based dm supports only tables that have a single target now. | |
925 | * To support multiple targets, request splitting support is needed, | |
926 | * and that needs lots of changes in the block-layer. | |
927 | * (e.g. request completion process for partial completion.) | |
928 | */ | |
929 | if (t->num_targets > 1) { | |
9c37de29 | 930 | DMERR("request-based DM doesn't support multiple targets"); |
65803c20 MS |
931 | return -EINVAL; |
932 | } | |
933 | ||
6936c12c MS |
934 | if (list_empty(devices)) { |
935 | int srcu_idx; | |
936 | struct dm_table *live_table = dm_get_live_table(t->md, &srcu_idx); | |
937 | ||
6a23e05c JA |
938 | /* inherit live table's type */ |
939 | if (live_table) | |
6936c12c | 940 | t->type = live_table->type; |
6936c12c MS |
941 | dm_put_live_table(t->md, srcu_idx); |
942 | return 0; | |
943 | } | |
944 | ||
22c11858 MS |
945 | tgt = dm_table_get_immutable_target(t); |
946 | if (!tgt) { | |
947 | DMERR("table load rejected: immutable target is required"); | |
948 | return -EINVAL; | |
949 | } else if (tgt->max_io_len) { | |
950 | DMERR("table load rejected: immutable target that splits IO is not supported"); | |
951 | return -EINVAL; | |
952 | } | |
953 | ||
e6ee8c0b | 954 | /* Non-request-stackable devices can't be used for request-based dm */ |
eaa160ed | 955 | if (!tgt->type->iterate_devices || |
6ba01df7 | 956 | !tgt->type->iterate_devices(tgt, device_is_rq_stackable, NULL)) { |
eaa160ed MS |
957 | DMERR("table load rejected: including non-request-stackable devices"); |
958 | return -EINVAL; | |
e5863d9a | 959 | } |
301fc3f5 | 960 | |
e6ee8c0b KU |
961 | return 0; |
962 | } | |
963 | ||
7e0d574f | 964 | enum dm_queue_mode dm_table_get_type(struct dm_table *t) |
e6ee8c0b KU |
965 | { |
966 | return t->type; | |
967 | } | |
968 | ||
36a0456f AK |
969 | struct target_type *dm_table_get_immutable_target_type(struct dm_table *t) |
970 | { | |
971 | return t->immutable_target_type; | |
972 | } | |
973 | ||
16f12266 MS |
974 | struct dm_target *dm_table_get_immutable_target(struct dm_table *t) |
975 | { | |
976 | /* Immutable target is implicitly a singleton */ | |
977 | if (t->num_targets > 1 || | |
978 | !dm_target_is_immutable(t->targets[0].type)) | |
979 | return NULL; | |
980 | ||
981 | return t->targets; | |
982 | } | |
983 | ||
f083b09b MS |
984 | struct dm_target *dm_table_get_wildcard_target(struct dm_table *t) |
985 | { | |
3c120169 MP |
986 | struct dm_target *ti; |
987 | unsigned i; | |
f083b09b | 988 | |
3c120169 MP |
989 | for (i = 0; i < dm_table_get_num_targets(t); i++) { |
990 | ti = dm_table_get_target(t, i); | |
f083b09b MS |
991 | if (dm_target_is_wildcard(ti->type)) |
992 | return ti; | |
993 | } | |
994 | ||
995 | return NULL; | |
996 | } | |
997 | ||
545ed20e TK |
998 | bool dm_table_bio_based(struct dm_table *t) |
999 | { | |
1000 | return __table_type_bio_based(dm_table_get_type(t)); | |
1001 | } | |
1002 | ||
e6ee8c0b KU |
1003 | bool dm_table_request_based(struct dm_table *t) |
1004 | { | |
15b94a69 | 1005 | return __table_type_request_based(dm_table_get_type(t)); |
e5863d9a MS |
1006 | } |
1007 | ||
9571f829 | 1008 | static bool dm_table_supports_poll(struct dm_table *t); |
cfc97abc | 1009 | |
17e149b8 | 1010 | static int dm_table_alloc_md_mempools(struct dm_table *t, struct mapped_device *md) |
e6ee8c0b | 1011 | { |
7e0d574f | 1012 | enum dm_queue_mode type = dm_table_get_type(t); |
30187e1d | 1013 | unsigned per_io_data_size = 0; |
0776aa0e MS |
1014 | unsigned min_pool_size = 0; |
1015 | struct dm_target *ti; | |
c0820cf5 | 1016 | unsigned i; |
cfc97abc | 1017 | bool poll_supported = false; |
e6ee8c0b | 1018 | |
78d8e58a | 1019 | if (unlikely(type == DM_TYPE_NONE)) { |
e6ee8c0b KU |
1020 | DMWARN("no table type is set, can't allocate mempools"); |
1021 | return -EINVAL; | |
1022 | } | |
1023 | ||
cfc97abc | 1024 | if (__table_type_bio_based(type)) { |
78d8e58a | 1025 | for (i = 0; i < t->num_targets; i++) { |
0776aa0e MS |
1026 | ti = t->targets + i; |
1027 | per_io_data_size = max(per_io_data_size, ti->per_io_data_size); | |
1028 | min_pool_size = max(min_pool_size, ti->num_flush_bios); | |
78d8e58a | 1029 | } |
9571f829 | 1030 | poll_supported = dm_table_supports_poll(t); |
cfc97abc | 1031 | } |
78d8e58a | 1032 | |
cfc97abc MS |
1033 | t->mempools = dm_alloc_md_mempools(md, type, per_io_data_size, min_pool_size, |
1034 | t->integrity_supported, poll_supported); | |
4e6e36c3 MS |
1035 | if (!t->mempools) |
1036 | return -ENOMEM; | |
e6ee8c0b KU |
1037 | |
1038 | return 0; | |
1039 | } | |
1040 | ||
1da177e4 LT |
1041 | static int setup_indexes(struct dm_table *t) |
1042 | { | |
1043 | int i; | |
1044 | unsigned int total = 0; | |
1045 | sector_t *indexes; | |
1046 | ||
1047 | /* allocate the space for *all* the indexes */ | |
1048 | for (i = t->depth - 2; i >= 0; i--) { | |
1049 | t->counts[i] = dm_div_up(t->counts[i + 1], CHILDREN_PER_NODE); | |
1050 | total += t->counts[i]; | |
1051 | } | |
1052 | ||
7a35693a | 1053 | indexes = kvcalloc(total, NODE_SIZE, GFP_KERNEL); |
1da177e4 LT |
1054 | if (!indexes) |
1055 | return -ENOMEM; | |
1056 | ||
1057 | /* set up internal nodes, bottom-up */ | |
82d601dc | 1058 | for (i = t->depth - 2; i >= 0; i--) { |
1da177e4 LT |
1059 | t->index[i] = indexes; |
1060 | indexes += (KEYS_PER_NODE * t->counts[i]); | |
1061 | setup_btree_index(i, t); | |
1062 | } | |
1063 | ||
1064 | return 0; | |
1065 | } | |
1066 | ||
1067 | /* | |
1068 | * Builds the btree to index the map. | |
1069 | */ | |
26803b9f | 1070 | static int dm_table_build_index(struct dm_table *t) |
1da177e4 LT |
1071 | { |
1072 | int r = 0; | |
1073 | unsigned int leaf_nodes; | |
1074 | ||
1da177e4 LT |
1075 | /* how many indexes will the btree have ? */ |
1076 | leaf_nodes = dm_div_up(t->num_targets, KEYS_PER_NODE); | |
1077 | t->depth = 1 + int_log(leaf_nodes, CHILDREN_PER_NODE); | |
1078 | ||
1079 | /* leaf layer has already been set up */ | |
1080 | t->counts[t->depth - 1] = leaf_nodes; | |
1081 | t->index[t->depth - 1] = t->highs; | |
1082 | ||
1083 | if (t->depth >= 2) | |
1084 | r = setup_indexes(t); | |
1085 | ||
1086 | return r; | |
1087 | } | |
1088 | ||
25520d55 MP |
1089 | static bool integrity_profile_exists(struct gendisk *disk) |
1090 | { | |
1091 | return !!blk_get_integrity(disk); | |
1092 | } | |
1093 | ||
a63a5cf8 MS |
1094 | /* |
1095 | * Get a disk whose integrity profile reflects the table's profile. | |
a63a5cf8 MS |
1096 | * Returns NULL if integrity support was inconsistent or unavailable. |
1097 | */ | |
25520d55 | 1098 | static struct gendisk * dm_table_get_integrity_disk(struct dm_table *t) |
a63a5cf8 MS |
1099 | { |
1100 | struct list_head *devices = dm_table_get_devices(t); | |
1101 | struct dm_dev_internal *dd = NULL; | |
1102 | struct gendisk *prev_disk = NULL, *template_disk = NULL; | |
e2460f2a MP |
1103 | unsigned i; |
1104 | ||
1105 | for (i = 0; i < dm_table_get_num_targets(t); i++) { | |
1106 | struct dm_target *ti = dm_table_get_target(t, i); | |
1107 | if (!dm_target_passes_integrity(ti->type)) | |
1108 | goto no_integrity; | |
1109 | } | |
a63a5cf8 MS |
1110 | |
1111 | list_for_each_entry(dd, devices, list) { | |
86f1152b | 1112 | template_disk = dd->dm_dev->bdev->bd_disk; |
25520d55 | 1113 | if (!integrity_profile_exists(template_disk)) |
a63a5cf8 | 1114 | goto no_integrity; |
a63a5cf8 MS |
1115 | else if (prev_disk && |
1116 | blk_integrity_compare(prev_disk, template_disk) < 0) | |
1117 | goto no_integrity; | |
1118 | prev_disk = template_disk; | |
1119 | } | |
1120 | ||
1121 | return template_disk; | |
1122 | ||
1123 | no_integrity: | |
1124 | if (prev_disk) | |
1125 | DMWARN("%s: integrity not set: %s and %s profile mismatch", | |
1126 | dm_device_name(t->md), | |
1127 | prev_disk->disk_name, | |
1128 | template_disk->disk_name); | |
1129 | return NULL; | |
1130 | } | |
1131 | ||
26803b9f | 1132 | /* |
25520d55 MP |
1133 | * Register the mapped device for blk_integrity support if the |
1134 | * underlying devices have an integrity profile. But all devices may | |
1135 | * not have matching profiles (checking all devices isn't reliable | |
a63a5cf8 | 1136 | * during table load because this table may use other DM device(s) which |
25520d55 MP |
1137 | * must be resumed before they will have an initialized integity |
1138 | * profile). Consequently, stacked DM devices force a 2 stage integrity | |
1139 | * profile validation: First pass during table load, final pass during | |
1140 | * resume. | |
26803b9f | 1141 | */ |
25520d55 | 1142 | static int dm_table_register_integrity(struct dm_table *t) |
26803b9f | 1143 | { |
25520d55 | 1144 | struct mapped_device *md = t->md; |
a63a5cf8 | 1145 | struct gendisk *template_disk = NULL; |
26803b9f | 1146 | |
9b4b5a79 MB |
1147 | /* If target handles integrity itself do not register it here. */ |
1148 | if (t->integrity_added) | |
1149 | return 0; | |
1150 | ||
25520d55 | 1151 | template_disk = dm_table_get_integrity_disk(t); |
a63a5cf8 MS |
1152 | if (!template_disk) |
1153 | return 0; | |
26803b9f | 1154 | |
25520d55 | 1155 | if (!integrity_profile_exists(dm_disk(md))) { |
e83068a5 | 1156 | t->integrity_supported = true; |
25520d55 MP |
1157 | /* |
1158 | * Register integrity profile during table load; we can do | |
1159 | * this because the final profile must match during resume. | |
1160 | */ | |
1161 | blk_integrity_register(dm_disk(md), | |
1162 | blk_get_integrity(template_disk)); | |
1163 | return 0; | |
a63a5cf8 MS |
1164 | } |
1165 | ||
1166 | /* | |
25520d55 | 1167 | * If DM device already has an initialized integrity |
a63a5cf8 MS |
1168 | * profile the new profile should not conflict. |
1169 | */ | |
25520d55 | 1170 | if (blk_integrity_compare(dm_disk(md), template_disk) < 0) { |
a63a5cf8 MS |
1171 | DMWARN("%s: conflict with existing integrity profile: " |
1172 | "%s profile mismatch", | |
1173 | dm_device_name(t->md), | |
1174 | template_disk->disk_name); | |
1175 | return 1; | |
1176 | } | |
1177 | ||
25520d55 | 1178 | /* Preserve existing integrity profile */ |
e83068a5 | 1179 | t->integrity_supported = true; |
26803b9f WD |
1180 | return 0; |
1181 | } | |
1182 | ||
aa6ce87a ST |
1183 | #ifdef CONFIG_BLK_INLINE_ENCRYPTION |
1184 | ||
cb77cb5a EB |
1185 | struct dm_crypto_profile { |
1186 | struct blk_crypto_profile profile; | |
aa6ce87a ST |
1187 | struct mapped_device *md; |
1188 | }; | |
1189 | ||
9355a9eb ST |
1190 | struct dm_keyslot_evict_args { |
1191 | const struct blk_crypto_key *key; | |
1192 | int err; | |
1193 | }; | |
1194 | ||
1195 | static int dm_keyslot_evict_callback(struct dm_target *ti, struct dm_dev *dev, | |
1196 | sector_t start, sector_t len, void *data) | |
1197 | { | |
1198 | struct dm_keyslot_evict_args *args = data; | |
1199 | int err; | |
1200 | ||
1201 | err = blk_crypto_evict_key(bdev_get_queue(dev->bdev), args->key); | |
1202 | if (!args->err) | |
1203 | args->err = err; | |
1204 | /* Always try to evict the key from all devices. */ | |
1205 | return 0; | |
1206 | } | |
1207 | ||
1208 | /* | |
1209 | * When an inline encryption key is evicted from a device-mapper device, evict | |
1210 | * it from all the underlying devices. | |
1211 | */ | |
cb77cb5a | 1212 | static int dm_keyslot_evict(struct blk_crypto_profile *profile, |
9355a9eb ST |
1213 | const struct blk_crypto_key *key, unsigned int slot) |
1214 | { | |
cb77cb5a EB |
1215 | struct mapped_device *md = |
1216 | container_of(profile, struct dm_crypto_profile, profile)->md; | |
9355a9eb ST |
1217 | struct dm_keyslot_evict_args args = { key }; |
1218 | struct dm_table *t; | |
1219 | int srcu_idx; | |
1220 | int i; | |
1221 | struct dm_target *ti; | |
1222 | ||
1223 | t = dm_get_live_table(md, &srcu_idx); | |
1224 | if (!t) | |
1225 | return 0; | |
1226 | for (i = 0; i < dm_table_get_num_targets(t); i++) { | |
1227 | ti = dm_table_get_target(t, i); | |
1228 | if (!ti->type->iterate_devices) | |
1229 | continue; | |
1230 | ti->type->iterate_devices(ti, dm_keyslot_evict_callback, &args); | |
1231 | } | |
1232 | dm_put_live_table(md, srcu_idx); | |
1233 | return args.err; | |
1234 | } | |
1235 | ||
cb77cb5a EB |
1236 | static int |
1237 | device_intersect_crypto_capabilities(struct dm_target *ti, struct dm_dev *dev, | |
1238 | sector_t start, sector_t len, void *data) | |
aa6ce87a | 1239 | { |
cb77cb5a EB |
1240 | struct blk_crypto_profile *parent = data; |
1241 | struct blk_crypto_profile *child = | |
1242 | bdev_get_queue(dev->bdev)->crypto_profile; | |
aa6ce87a | 1243 | |
cb77cb5a | 1244 | blk_crypto_intersect_capabilities(parent, child); |
aa6ce87a ST |
1245 | return 0; |
1246 | } | |
1247 | ||
cb77cb5a | 1248 | void dm_destroy_crypto_profile(struct blk_crypto_profile *profile) |
aa6ce87a | 1249 | { |
cb77cb5a EB |
1250 | struct dm_crypto_profile *dmcp = container_of(profile, |
1251 | struct dm_crypto_profile, | |
1252 | profile); | |
aa6ce87a | 1253 | |
cb77cb5a | 1254 | if (!profile) |
aa6ce87a ST |
1255 | return; |
1256 | ||
cb77cb5a EB |
1257 | blk_crypto_profile_destroy(profile); |
1258 | kfree(dmcp); | |
aa6ce87a ST |
1259 | } |
1260 | ||
cb77cb5a | 1261 | static void dm_table_destroy_crypto_profile(struct dm_table *t) |
aa6ce87a | 1262 | { |
cb77cb5a EB |
1263 | dm_destroy_crypto_profile(t->crypto_profile); |
1264 | t->crypto_profile = NULL; | |
aa6ce87a ST |
1265 | } |
1266 | ||
1267 | /* | |
cb77cb5a EB |
1268 | * Constructs and initializes t->crypto_profile with a crypto profile that |
1269 | * represents the common set of crypto capabilities of the devices described by | |
1270 | * the dm_table. However, if the constructed crypto profile doesn't support all | |
1271 | * crypto capabilities that are supported by the current mapped_device, it | |
1272 | * returns an error instead, since we don't support removing crypto capabilities | |
1273 | * on table changes. Finally, if the constructed crypto profile is "empty" (has | |
1274 | * no crypto capabilities at all), it just sets t->crypto_profile to NULL. | |
aa6ce87a | 1275 | */ |
cb77cb5a | 1276 | static int dm_table_construct_crypto_profile(struct dm_table *t) |
aa6ce87a | 1277 | { |
cb77cb5a EB |
1278 | struct dm_crypto_profile *dmcp; |
1279 | struct blk_crypto_profile *profile; | |
aa6ce87a ST |
1280 | struct dm_target *ti; |
1281 | unsigned int i; | |
cb77cb5a | 1282 | bool empty_profile = true; |
aa6ce87a | 1283 | |
cb77cb5a EB |
1284 | dmcp = kmalloc(sizeof(*dmcp), GFP_KERNEL); |
1285 | if (!dmcp) | |
aa6ce87a | 1286 | return -ENOMEM; |
cb77cb5a | 1287 | dmcp->md = t->md; |
aa6ce87a | 1288 | |
cb77cb5a EB |
1289 | profile = &dmcp->profile; |
1290 | blk_crypto_profile_init(profile, 0); | |
1291 | profile->ll_ops.keyslot_evict = dm_keyslot_evict; | |
1292 | profile->max_dun_bytes_supported = UINT_MAX; | |
1293 | memset(profile->modes_supported, 0xFF, | |
1294 | sizeof(profile->modes_supported)); | |
aa6ce87a ST |
1295 | |
1296 | for (i = 0; i < dm_table_get_num_targets(t); i++) { | |
1297 | ti = dm_table_get_target(t, i); | |
1298 | ||
1299 | if (!dm_target_passes_crypto(ti->type)) { | |
cb77cb5a | 1300 | blk_crypto_intersect_capabilities(profile, NULL); |
aa6ce87a ST |
1301 | break; |
1302 | } | |
1303 | if (!ti->type->iterate_devices) | |
1304 | continue; | |
cb77cb5a EB |
1305 | ti->type->iterate_devices(ti, |
1306 | device_intersect_crypto_capabilities, | |
1307 | profile); | |
aa6ce87a ST |
1308 | } |
1309 | ||
cb77cb5a EB |
1310 | if (t->md->queue && |
1311 | !blk_crypto_has_capabilities(profile, | |
1312 | t->md->queue->crypto_profile)) { | |
aa6ce87a | 1313 | DMWARN("Inline encryption capabilities of new DM table were more restrictive than the old table's. This is not supported!"); |
cb77cb5a | 1314 | dm_destroy_crypto_profile(profile); |
aa6ce87a ST |
1315 | return -EINVAL; |
1316 | } | |
1317 | ||
1318 | /* | |
cb77cb5a EB |
1319 | * If the new profile doesn't actually support any crypto capabilities, |
1320 | * we may as well represent it with a NULL profile. | |
aa6ce87a | 1321 | */ |
cb77cb5a EB |
1322 | for (i = 0; i < ARRAY_SIZE(profile->modes_supported); i++) { |
1323 | if (profile->modes_supported[i]) { | |
1324 | empty_profile = false; | |
aa6ce87a ST |
1325 | break; |
1326 | } | |
1327 | } | |
1328 | ||
cb77cb5a EB |
1329 | if (empty_profile) { |
1330 | dm_destroy_crypto_profile(profile); | |
1331 | profile = NULL; | |
aa6ce87a ST |
1332 | } |
1333 | ||
1334 | /* | |
cb77cb5a EB |
1335 | * t->crypto_profile is only set temporarily while the table is being |
1336 | * set up, and it gets set to NULL after the profile has been | |
1337 | * transferred to the request_queue. | |
aa6ce87a | 1338 | */ |
cb77cb5a | 1339 | t->crypto_profile = profile; |
aa6ce87a ST |
1340 | |
1341 | return 0; | |
1342 | } | |
1343 | ||
cb77cb5a EB |
1344 | static void dm_update_crypto_profile(struct request_queue *q, |
1345 | struct dm_table *t) | |
aa6ce87a | 1346 | { |
cb77cb5a | 1347 | if (!t->crypto_profile) |
aa6ce87a ST |
1348 | return; |
1349 | ||
cb77cb5a EB |
1350 | /* Make the crypto profile less restrictive. */ |
1351 | if (!q->crypto_profile) { | |
1352 | blk_crypto_register(t->crypto_profile, q); | |
aa6ce87a | 1353 | } else { |
cb77cb5a EB |
1354 | blk_crypto_update_capabilities(q->crypto_profile, |
1355 | t->crypto_profile); | |
1356 | dm_destroy_crypto_profile(t->crypto_profile); | |
aa6ce87a | 1357 | } |
cb77cb5a | 1358 | t->crypto_profile = NULL; |
aa6ce87a ST |
1359 | } |
1360 | ||
1361 | #else /* CONFIG_BLK_INLINE_ENCRYPTION */ | |
1362 | ||
cb77cb5a | 1363 | static int dm_table_construct_crypto_profile(struct dm_table *t) |
aa6ce87a ST |
1364 | { |
1365 | return 0; | |
1366 | } | |
1367 | ||
cb77cb5a | 1368 | void dm_destroy_crypto_profile(struct blk_crypto_profile *profile) |
aa6ce87a ST |
1369 | { |
1370 | } | |
1371 | ||
cb77cb5a | 1372 | static void dm_table_destroy_crypto_profile(struct dm_table *t) |
aa6ce87a ST |
1373 | { |
1374 | } | |
1375 | ||
cb77cb5a EB |
1376 | static void dm_update_crypto_profile(struct request_queue *q, |
1377 | struct dm_table *t) | |
aa6ce87a ST |
1378 | { |
1379 | } | |
1380 | ||
1381 | #endif /* !CONFIG_BLK_INLINE_ENCRYPTION */ | |
1382 | ||
26803b9f WD |
1383 | /* |
1384 | * Prepares the table for use by building the indices, | |
1385 | * setting the type, and allocating mempools. | |
1386 | */ | |
1387 | int dm_table_complete(struct dm_table *t) | |
1388 | { | |
1389 | int r; | |
1390 | ||
e83068a5 | 1391 | r = dm_table_determine_type(t); |
26803b9f | 1392 | if (r) { |
e83068a5 | 1393 | DMERR("unable to determine table type"); |
26803b9f WD |
1394 | return r; |
1395 | } | |
1396 | ||
1397 | r = dm_table_build_index(t); | |
1398 | if (r) { | |
1399 | DMERR("unable to build btrees"); | |
1400 | return r; | |
1401 | } | |
1402 | ||
25520d55 | 1403 | r = dm_table_register_integrity(t); |
26803b9f WD |
1404 | if (r) { |
1405 | DMERR("could not register integrity profile."); | |
1406 | return r; | |
1407 | } | |
1408 | ||
cb77cb5a | 1409 | r = dm_table_construct_crypto_profile(t); |
aa6ce87a | 1410 | if (r) { |
cb77cb5a | 1411 | DMERR("could not construct crypto profile."); |
aa6ce87a ST |
1412 | return r; |
1413 | } | |
1414 | ||
17e149b8 | 1415 | r = dm_table_alloc_md_mempools(t, t->md); |
26803b9f WD |
1416 | if (r) |
1417 | DMERR("unable to allocate mempools"); | |
1418 | ||
1419 | return r; | |
1420 | } | |
1421 | ||
48c9c27b | 1422 | static DEFINE_MUTEX(_event_lock); |
1da177e4 LT |
1423 | void dm_table_event_callback(struct dm_table *t, |
1424 | void (*fn)(void *), void *context) | |
1425 | { | |
48c9c27b | 1426 | mutex_lock(&_event_lock); |
1da177e4 LT |
1427 | t->event_fn = fn; |
1428 | t->event_context = context; | |
48c9c27b | 1429 | mutex_unlock(&_event_lock); |
1da177e4 LT |
1430 | } |
1431 | ||
1432 | void dm_table_event(struct dm_table *t) | |
1433 | { | |
48c9c27b | 1434 | mutex_lock(&_event_lock); |
1da177e4 LT |
1435 | if (t->event_fn) |
1436 | t->event_fn(t->event_context); | |
48c9c27b | 1437 | mutex_unlock(&_event_lock); |
1da177e4 | 1438 | } |
08649012 | 1439 | EXPORT_SYMBOL(dm_table_event); |
1da177e4 | 1440 | |
1cfd5d33 | 1441 | inline sector_t dm_table_get_size(struct dm_table *t) |
1da177e4 LT |
1442 | { |
1443 | return t->num_targets ? (t->highs[t->num_targets - 1] + 1) : 0; | |
1444 | } | |
08649012 | 1445 | EXPORT_SYMBOL(dm_table_get_size); |
1da177e4 LT |
1446 | |
1447 | struct dm_target *dm_table_get_target(struct dm_table *t, unsigned int index) | |
1448 | { | |
14353539 | 1449 | if (index >= t->num_targets) |
1da177e4 LT |
1450 | return NULL; |
1451 | ||
1452 | return t->targets + index; | |
1453 | } | |
1454 | ||
1455 | /* | |
1456 | * Search the btree for the correct target. | |
512875bd | 1457 | * |
123d87d5 | 1458 | * Caller should check returned pointer for NULL |
512875bd | 1459 | * to trap I/O beyond end of device. |
1da177e4 LT |
1460 | */ |
1461 | struct dm_target *dm_table_find_target(struct dm_table *t, sector_t sector) | |
1462 | { | |
1463 | unsigned int l, n = 0, k = 0; | |
1464 | sector_t *node; | |
1465 | ||
1cfd5d33 | 1466 | if (unlikely(sector >= dm_table_get_size(t))) |
123d87d5 | 1467 | return NULL; |
1cfd5d33 | 1468 | |
1da177e4 LT |
1469 | for (l = 0; l < t->depth; l++) { |
1470 | n = get_child(n, k); | |
1471 | node = get_node(t, l, n); | |
1472 | ||
1473 | for (k = 0; k < KEYS_PER_NODE; k++) | |
1474 | if (node[k] >= sector) | |
1475 | break; | |
1476 | } | |
1477 | ||
1478 | return &t->targets[(KEYS_PER_NODE * n) + k]; | |
1479 | } | |
1480 | ||
b99fdcdc ML |
1481 | static int device_not_poll_capable(struct dm_target *ti, struct dm_dev *dev, |
1482 | sector_t start, sector_t len, void *data) | |
1483 | { | |
1484 | struct request_queue *q = bdev_get_queue(dev->bdev); | |
1485 | ||
1486 | return !test_bit(QUEUE_FLAG_POLL, &q->queue_flags); | |
1487 | } | |
1488 | ||
a4c8dd9c JX |
1489 | /* |
1490 | * type->iterate_devices() should be called when the sanity check needs to | |
1491 | * iterate and check all underlying data devices. iterate_devices() will | |
1492 | * iterate all underlying data devices until it encounters a non-zero return | |
1493 | * code, returned by whether the input iterate_devices_callout_fn, or | |
1494 | * iterate_devices() itself internally. | |
1495 | * | |
1496 | * For some target type (e.g. dm-stripe), one call of iterate_devices() may | |
1497 | * iterate multiple underlying devices internally, in which case a non-zero | |
1498 | * return code returned by iterate_devices_callout_fn will stop the iteration | |
1499 | * in advance. | |
1500 | * | |
1501 | * Cases requiring _any_ underlying device supporting some kind of attribute, | |
1502 | * should use the iteration structure like dm_table_any_dev_attr(), or call | |
1503 | * it directly. @func should handle semantics of positive examples, e.g. | |
1504 | * capable of something. | |
1505 | * | |
1506 | * Cases requiring _all_ underlying devices supporting some kind of attribute, | |
1507 | * should use the iteration structure like dm_table_supports_nowait() or | |
1508 | * dm_table_supports_discards(). Or introduce dm_table_all_devs_attr() that | |
1509 | * uses an @anti_func that handle semantics of counter examples, e.g. not | |
24f6b603 | 1510 | * capable of something. So: return !dm_table_any_dev_attr(t, anti_func, data); |
a4c8dd9c JX |
1511 | */ |
1512 | static bool dm_table_any_dev_attr(struct dm_table *t, | |
24f6b603 | 1513 | iterate_devices_callout_fn func, void *data) |
a4c8dd9c JX |
1514 | { |
1515 | struct dm_target *ti; | |
1516 | unsigned int i; | |
1517 | ||
1518 | for (i = 0; i < dm_table_get_num_targets(t); i++) { | |
1519 | ti = dm_table_get_target(t, i); | |
1520 | ||
1521 | if (ti->type->iterate_devices && | |
24f6b603 | 1522 | ti->type->iterate_devices(ti, func, data)) |
a4c8dd9c JX |
1523 | return true; |
1524 | } | |
1525 | ||
1526 | return false; | |
1527 | } | |
1528 | ||
3ae70656 MS |
1529 | static int count_device(struct dm_target *ti, struct dm_dev *dev, |
1530 | sector_t start, sector_t len, void *data) | |
1531 | { | |
1532 | unsigned *num_devices = data; | |
1533 | ||
1534 | (*num_devices)++; | |
1535 | ||
1536 | return 0; | |
1537 | } | |
1538 | ||
9571f829 | 1539 | static bool dm_table_supports_poll(struct dm_table *t) |
b99fdcdc | 1540 | { |
9571f829 MS |
1541 | struct dm_target *ti; |
1542 | unsigned i = 0; | |
1543 | ||
1544 | while (i < dm_table_get_num_targets(t)) { | |
1545 | ti = dm_table_get_target(t, i++); | |
1546 | ||
1547 | if (!ti->type->iterate_devices || | |
1548 | ti->type->iterate_devices(ti, device_not_poll_capable, NULL)) | |
1549 | return false; | |
1550 | } | |
1551 | ||
1552 | return true; | |
b99fdcdc ML |
1553 | } |
1554 | ||
3ae70656 MS |
1555 | /* |
1556 | * Check whether a table has no data devices attached using each | |
1557 | * target's iterate_devices method. | |
1558 | * Returns false if the result is unknown because a target doesn't | |
1559 | * support iterate_devices. | |
1560 | */ | |
1561 | bool dm_table_has_no_data_devices(struct dm_table *table) | |
1562 | { | |
3c120169 MP |
1563 | struct dm_target *ti; |
1564 | unsigned i, num_devices; | |
3ae70656 | 1565 | |
3c120169 MP |
1566 | for (i = 0; i < dm_table_get_num_targets(table); i++) { |
1567 | ti = dm_table_get_target(table, i); | |
3ae70656 MS |
1568 | |
1569 | if (!ti->type->iterate_devices) | |
1570 | return false; | |
1571 | ||
3c120169 | 1572 | num_devices = 0; |
3ae70656 MS |
1573 | ti->type->iterate_devices(ti, count_device, &num_devices); |
1574 | if (num_devices) | |
1575 | return false; | |
1576 | } | |
1577 | ||
1578 | return true; | |
1579 | } | |
1580 | ||
24f6b603 JX |
1581 | static int device_not_zoned_model(struct dm_target *ti, struct dm_dev *dev, |
1582 | sector_t start, sector_t len, void *data) | |
dd88d313 DLM |
1583 | { |
1584 | struct request_queue *q = bdev_get_queue(dev->bdev); | |
1585 | enum blk_zoned_model *zoned_model = data; | |
1586 | ||
cccb493c | 1587 | return blk_queue_zoned_model(q) != *zoned_model; |
dd88d313 DLM |
1588 | } |
1589 | ||
2d669ceb SK |
1590 | /* |
1591 | * Check the device zoned model based on the target feature flag. If the target | |
1592 | * has the DM_TARGET_ZONED_HM feature flag set, host-managed zoned devices are | |
1593 | * also accepted but all devices must have the same zoned model. If the target | |
1594 | * has the DM_TARGET_MIXED_ZONED_MODEL feature set, the devices can have any | |
1595 | * zoned model with all zoned devices having the same zone size. | |
1596 | */ | |
dd88d313 DLM |
1597 | static bool dm_table_supports_zoned_model(struct dm_table *t, |
1598 | enum blk_zoned_model zoned_model) | |
1599 | { | |
1600 | struct dm_target *ti; | |
1601 | unsigned i; | |
1602 | ||
1603 | for (i = 0; i < dm_table_get_num_targets(t); i++) { | |
1604 | ti = dm_table_get_target(t, i); | |
1605 | ||
2d669ceb SK |
1606 | if (dm_target_supports_zoned_hm(ti->type)) { |
1607 | if (!ti->type->iterate_devices || | |
1608 | ti->type->iterate_devices(ti, device_not_zoned_model, | |
1609 | &zoned_model)) | |
1610 | return false; | |
1611 | } else if (!dm_target_supports_mixed_zoned_model(ti->type)) { | |
1612 | if (zoned_model == BLK_ZONED_HM) | |
1613 | return false; | |
1614 | } | |
dd88d313 DLM |
1615 | } |
1616 | ||
1617 | return true; | |
1618 | } | |
1619 | ||
24f6b603 JX |
1620 | static int device_not_matches_zone_sectors(struct dm_target *ti, struct dm_dev *dev, |
1621 | sector_t start, sector_t len, void *data) | |
dd88d313 DLM |
1622 | { |
1623 | struct request_queue *q = bdev_get_queue(dev->bdev); | |
1624 | unsigned int *zone_sectors = data; | |
1625 | ||
2d669ceb SK |
1626 | if (!blk_queue_is_zoned(q)) |
1627 | return 0; | |
1628 | ||
cccb493c | 1629 | return blk_queue_zone_sectors(q) != *zone_sectors; |
dd88d313 DLM |
1630 | } |
1631 | ||
2d669ceb SK |
1632 | /* |
1633 | * Check consistency of zoned model and zone sectors across all targets. For | |
1634 | * zone sectors, if the destination device is a zoned block device, it shall | |
1635 | * have the specified zone_sectors. | |
1636 | */ | |
dd88d313 DLM |
1637 | static int validate_hardware_zoned_model(struct dm_table *table, |
1638 | enum blk_zoned_model zoned_model, | |
1639 | unsigned int zone_sectors) | |
1640 | { | |
1641 | if (zoned_model == BLK_ZONED_NONE) | |
1642 | return 0; | |
1643 | ||
1644 | if (!dm_table_supports_zoned_model(table, zoned_model)) { | |
1645 | DMERR("%s: zoned model is not consistent across all devices", | |
1646 | dm_device_name(table->md)); | |
1647 | return -EINVAL; | |
1648 | } | |
1649 | ||
1650 | /* Check zone size validity and compatibility */ | |
1651 | if (!zone_sectors || !is_power_of_2(zone_sectors)) | |
1652 | return -EINVAL; | |
1653 | ||
24f6b603 | 1654 | if (dm_table_any_dev_attr(table, device_not_matches_zone_sectors, &zone_sectors)) { |
2d669ceb | 1655 | DMERR("%s: zone sectors is not consistent across all zoned devices", |
dd88d313 DLM |
1656 | dm_device_name(table->md)); |
1657 | return -EINVAL; | |
1658 | } | |
1659 | ||
1660 | return 0; | |
1661 | } | |
1662 | ||
754c5fc7 MS |
1663 | /* |
1664 | * Establish the new table's queue_limits and validate them. | |
1665 | */ | |
1666 | int dm_calculate_queue_limits(struct dm_table *table, | |
1667 | struct queue_limits *limits) | |
1668 | { | |
3c120169 | 1669 | struct dm_target *ti; |
754c5fc7 | 1670 | struct queue_limits ti_limits; |
3c120169 | 1671 | unsigned i; |
dd88d313 DLM |
1672 | enum blk_zoned_model zoned_model = BLK_ZONED_NONE; |
1673 | unsigned int zone_sectors = 0; | |
754c5fc7 | 1674 | |
b1bd055d | 1675 | blk_set_stacking_limits(limits); |
754c5fc7 | 1676 | |
3c120169 | 1677 | for (i = 0; i < dm_table_get_num_targets(table); i++) { |
b1bd055d | 1678 | blk_set_stacking_limits(&ti_limits); |
754c5fc7 | 1679 | |
3c120169 | 1680 | ti = dm_table_get_target(table, i); |
754c5fc7 MS |
1681 | |
1682 | if (!ti->type->iterate_devices) | |
1683 | goto combine_limits; | |
1684 | ||
1685 | /* | |
1686 | * Combine queue limits of all the devices this target uses. | |
1687 | */ | |
1688 | ti->type->iterate_devices(ti, dm_set_device_limits, | |
1689 | &ti_limits); | |
1690 | ||
dd88d313 DLM |
1691 | if (zoned_model == BLK_ZONED_NONE && ti_limits.zoned != BLK_ZONED_NONE) { |
1692 | /* | |
1693 | * After stacking all limits, validate all devices | |
1694 | * in table support this zoned model and zone sectors. | |
1695 | */ | |
1696 | zoned_model = ti_limits.zoned; | |
1697 | zone_sectors = ti_limits.chunk_sectors; | |
1698 | } | |
1699 | ||
40bea431 MS |
1700 | /* Set I/O hints portion of queue limits */ |
1701 | if (ti->type->io_hints) | |
1702 | ti->type->io_hints(ti, &ti_limits); | |
1703 | ||
754c5fc7 MS |
1704 | /* |
1705 | * Check each device area is consistent with the target's | |
1706 | * overall queue limits. | |
1707 | */ | |
f6a1ed10 MP |
1708 | if (ti->type->iterate_devices(ti, device_area_is_invalid, |
1709 | &ti_limits)) | |
754c5fc7 MS |
1710 | return -EINVAL; |
1711 | ||
1712 | combine_limits: | |
1713 | /* | |
1714 | * Merge this target's queue limits into the overall limits | |
1715 | * for the table. | |
1716 | */ | |
1717 | if (blk_stack_limits(limits, &ti_limits, 0) < 0) | |
b27d7f16 | 1718 | DMWARN("%s: adding target device " |
754c5fc7 | 1719 | "(start sect %llu len %llu) " |
b27d7f16 | 1720 | "caused an alignment inconsistency", |
754c5fc7 MS |
1721 | dm_device_name(table->md), |
1722 | (unsigned long long) ti->begin, | |
1723 | (unsigned long long) ti->len); | |
1724 | } | |
1725 | ||
dd88d313 DLM |
1726 | /* |
1727 | * Verify that the zoned model and zone sectors, as determined before | |
1728 | * any .io_hints override, are the same across all devices in the table. | |
1729 | * - this is especially relevant if .io_hints is emulating a disk-managed | |
1730 | * zoned model (aka BLK_ZONED_NONE) on host-managed zoned block devices. | |
1731 | * BUT... | |
1732 | */ | |
1733 | if (limits->zoned != BLK_ZONED_NONE) { | |
1734 | /* | |
1735 | * ...IF the above limits stacking determined a zoned model | |
1736 | * validate that all of the table's devices conform to it. | |
1737 | */ | |
1738 | zoned_model = limits->zoned; | |
1739 | zone_sectors = limits->chunk_sectors; | |
1740 | } | |
1741 | if (validate_hardware_zoned_model(table, zoned_model, zone_sectors)) | |
1742 | return -EINVAL; | |
1743 | ||
754c5fc7 MS |
1744 | return validate_hardware_logical_block_alignment(table, limits); |
1745 | } | |
1746 | ||
9c47008d | 1747 | /* |
25520d55 MP |
1748 | * Verify that all devices have an integrity profile that matches the |
1749 | * DM device's registered integrity profile. If the profiles don't | |
1750 | * match then unregister the DM device's integrity profile. | |
9c47008d | 1751 | */ |
25520d55 | 1752 | static void dm_table_verify_integrity(struct dm_table *t) |
9c47008d | 1753 | { |
a63a5cf8 | 1754 | struct gendisk *template_disk = NULL; |
9c47008d | 1755 | |
9b4b5a79 MB |
1756 | if (t->integrity_added) |
1757 | return; | |
1758 | ||
25520d55 MP |
1759 | if (t->integrity_supported) { |
1760 | /* | |
1761 | * Verify that the original integrity profile | |
1762 | * matches all the devices in this table. | |
1763 | */ | |
1764 | template_disk = dm_table_get_integrity_disk(t); | |
1765 | if (template_disk && | |
1766 | blk_integrity_compare(dm_disk(t->md), template_disk) >= 0) | |
1767 | return; | |
1768 | } | |
9c47008d | 1769 | |
25520d55 | 1770 | if (integrity_profile_exists(dm_disk(t->md))) { |
876fbba1 MS |
1771 | DMWARN("%s: unable to establish an integrity profile", |
1772 | dm_device_name(t->md)); | |
25520d55 MP |
1773 | blk_integrity_unregister(dm_disk(t->md)); |
1774 | } | |
9c47008d MP |
1775 | } |
1776 | ||
ed8b752b MS |
1777 | static int device_flush_capable(struct dm_target *ti, struct dm_dev *dev, |
1778 | sector_t start, sector_t len, void *data) | |
1779 | { | |
c888a8f9 | 1780 | unsigned long flush = (unsigned long) data; |
ed8b752b MS |
1781 | struct request_queue *q = bdev_get_queue(dev->bdev); |
1782 | ||
cccb493c | 1783 | return (q->queue_flags & flush); |
ed8b752b MS |
1784 | } |
1785 | ||
c888a8f9 | 1786 | static bool dm_table_supports_flush(struct dm_table *t, unsigned long flush) |
ed8b752b MS |
1787 | { |
1788 | struct dm_target *ti; | |
3c120169 | 1789 | unsigned i; |
ed8b752b MS |
1790 | |
1791 | /* | |
1792 | * Require at least one underlying device to support flushes. | |
1793 | * t->devices includes internal dm devices such as mirror logs | |
1794 | * so we need to use iterate_devices here, which targets | |
1795 | * supporting flushes must provide. | |
1796 | */ | |
3c120169 MP |
1797 | for (i = 0; i < dm_table_get_num_targets(t); i++) { |
1798 | ti = dm_table_get_target(t, i); | |
ed8b752b | 1799 | |
55a62eef | 1800 | if (!ti->num_flush_bios) |
ed8b752b MS |
1801 | continue; |
1802 | ||
0e9c24ed | 1803 | if (ti->flush_supported) |
7f61f5a0 | 1804 | return true; |
0e9c24ed | 1805 | |
ed8b752b | 1806 | if (ti->type->iterate_devices && |
c888a8f9 | 1807 | ti->type->iterate_devices(ti, device_flush_capable, (void *) flush)) |
7f61f5a0 | 1808 | return true; |
ed8b752b MS |
1809 | } |
1810 | ||
7f61f5a0 | 1811 | return false; |
ed8b752b MS |
1812 | } |
1813 | ||
273752c9 VG |
1814 | static int device_dax_write_cache_enabled(struct dm_target *ti, |
1815 | struct dm_dev *dev, sector_t start, | |
1816 | sector_t len, void *data) | |
1817 | { | |
1818 | struct dax_device *dax_dev = dev->dax_dev; | |
1819 | ||
1820 | if (!dax_dev) | |
1821 | return false; | |
1822 | ||
1823 | if (dax_write_cache_enabled(dax_dev)) | |
1824 | return true; | |
1825 | return false; | |
1826 | } | |
1827 | ||
a4c8dd9c JX |
1828 | static int device_is_rotational(struct dm_target *ti, struct dm_dev *dev, |
1829 | sector_t start, sector_t len, void *data) | |
4693c966 | 1830 | { |
10f0d2a5 | 1831 | return !bdev_nonrot(dev->bdev); |
4693c966 MSB |
1832 | } |
1833 | ||
c3c4555e MB |
1834 | static int device_is_not_random(struct dm_target *ti, struct dm_dev *dev, |
1835 | sector_t start, sector_t len, void *data) | |
1836 | { | |
1837 | struct request_queue *q = bdev_get_queue(dev->bdev); | |
1838 | ||
cccb493c | 1839 | return !blk_queue_add_random(q); |
c3c4555e MB |
1840 | } |
1841 | ||
ac62d620 CH |
1842 | static int device_not_write_zeroes_capable(struct dm_target *ti, struct dm_dev *dev, |
1843 | sector_t start, sector_t len, void *data) | |
1844 | { | |
1845 | struct request_queue *q = bdev_get_queue(dev->bdev); | |
1846 | ||
cccb493c | 1847 | return !q->limits.max_write_zeroes_sectors; |
ac62d620 CH |
1848 | } |
1849 | ||
1850 | static bool dm_table_supports_write_zeroes(struct dm_table *t) | |
1851 | { | |
1852 | struct dm_target *ti; | |
1853 | unsigned i = 0; | |
1854 | ||
1855 | while (i < dm_table_get_num_targets(t)) { | |
1856 | ti = dm_table_get_target(t, i++); | |
1857 | ||
1858 | if (!ti->num_write_zeroes_bios) | |
1859 | return false; | |
1860 | ||
1861 | if (!ti->type->iterate_devices || | |
1862 | ti->type->iterate_devices(ti, device_not_write_zeroes_capable, NULL)) | |
1863 | return false; | |
1864 | } | |
1865 | ||
1866 | return true; | |
1867 | } | |
1868 | ||
6abc4946 KK |
1869 | static int device_not_nowait_capable(struct dm_target *ti, struct dm_dev *dev, |
1870 | sector_t start, sector_t len, void *data) | |
1871 | { | |
1872 | struct request_queue *q = bdev_get_queue(dev->bdev); | |
1873 | ||
cccb493c | 1874 | return !blk_queue_nowait(q); |
6abc4946 KK |
1875 | } |
1876 | ||
1877 | static bool dm_table_supports_nowait(struct dm_table *t) | |
1878 | { | |
1879 | struct dm_target *ti; | |
1880 | unsigned i = 0; | |
1881 | ||
1882 | while (i < dm_table_get_num_targets(t)) { | |
1883 | ti = dm_table_get_target(t, i++); | |
1884 | ||
1885 | if (!dm_target_supports_nowait(ti->type)) | |
1886 | return false; | |
1887 | ||
1888 | if (!ti->type->iterate_devices || | |
1889 | ti->type->iterate_devices(ti, device_not_nowait_capable, NULL)) | |
1890 | return false; | |
1891 | } | |
1892 | ||
1893 | return true; | |
1894 | } | |
1895 | ||
8a74d29d MS |
1896 | static int device_not_discard_capable(struct dm_target *ti, struct dm_dev *dev, |
1897 | sector_t start, sector_t len, void *data) | |
a7ffb6a5 | 1898 | { |
70200574 | 1899 | return !bdev_max_discard_sectors(dev->bdev); |
a7ffb6a5 MP |
1900 | } |
1901 | ||
1902 | static bool dm_table_supports_discards(struct dm_table *t) | |
1903 | { | |
1904 | struct dm_target *ti; | |
3c120169 | 1905 | unsigned i; |
a7ffb6a5 | 1906 | |
3c120169 MP |
1907 | for (i = 0; i < dm_table_get_num_targets(t); i++) { |
1908 | ti = dm_table_get_target(t, i); | |
a7ffb6a5 MP |
1909 | |
1910 | if (!ti->num_discard_bios) | |
8a74d29d | 1911 | return false; |
a7ffb6a5 | 1912 | |
8a74d29d MS |
1913 | /* |
1914 | * Either the target provides discard support (as implied by setting | |
1915 | * 'discards_supported') or it relies on _all_ data devices having | |
1916 | * discard support. | |
1917 | */ | |
1918 | if (!ti->discards_supported && | |
1919 | (!ti->type->iterate_devices || | |
1920 | ti->type->iterate_devices(ti, device_not_discard_capable, NULL))) | |
1921 | return false; | |
a7ffb6a5 MP |
1922 | } |
1923 | ||
8a74d29d | 1924 | return true; |
a7ffb6a5 MP |
1925 | } |
1926 | ||
00716545 DS |
1927 | static int device_not_secure_erase_capable(struct dm_target *ti, |
1928 | struct dm_dev *dev, sector_t start, | |
1929 | sector_t len, void *data) | |
1930 | { | |
44abff2c | 1931 | return !bdev_max_secure_erase_sectors(dev->bdev); |
00716545 DS |
1932 | } |
1933 | ||
1934 | static bool dm_table_supports_secure_erase(struct dm_table *t) | |
1935 | { | |
1936 | struct dm_target *ti; | |
1937 | unsigned int i; | |
1938 | ||
1939 | for (i = 0; i < dm_table_get_num_targets(t); i++) { | |
1940 | ti = dm_table_get_target(t, i); | |
1941 | ||
1942 | if (!ti->num_secure_erase_bios) | |
1943 | return false; | |
1944 | ||
1945 | if (!ti->type->iterate_devices || | |
1946 | ti->type->iterate_devices(ti, device_not_secure_erase_capable, NULL)) | |
1947 | return false; | |
1948 | } | |
1949 | ||
1950 | return true; | |
1951 | } | |
1952 | ||
eb40c0ac ID |
1953 | static int device_requires_stable_pages(struct dm_target *ti, |
1954 | struct dm_dev *dev, sector_t start, | |
1955 | sector_t len, void *data) | |
1956 | { | |
36d25489 | 1957 | return bdev_stable_writes(dev->bdev); |
eb40c0ac ID |
1958 | } |
1959 | ||
bb37d772 DLM |
1960 | int dm_table_set_restrictions(struct dm_table *t, struct request_queue *q, |
1961 | struct queue_limits *limits) | |
1da177e4 | 1962 | { |
519a7e16 | 1963 | bool wc = false, fua = false; |
bb37d772 | 1964 | int r; |
ed8b752b | 1965 | |
1da177e4 | 1966 | /* |
1197764e | 1967 | * Copy table's limits to the DM device's request_queue |
1da177e4 | 1968 | */ |
754c5fc7 | 1969 | q->limits = *limits; |
c9a3f6d6 | 1970 | |
6abc4946 KK |
1971 | if (dm_table_supports_nowait(t)) |
1972 | blk_queue_flag_set(QUEUE_FLAG_NOWAIT, q); | |
1973 | else | |
1974 | blk_queue_flag_clear(QUEUE_FLAG_NOWAIT, q); | |
1975 | ||
5d47c89f | 1976 | if (!dm_table_supports_discards(t)) { |
5d47c89f MS |
1977 | q->limits.max_discard_sectors = 0; |
1978 | q->limits.max_hw_discard_sectors = 0; | |
1979 | q->limits.discard_granularity = 0; | |
1980 | q->limits.discard_alignment = 0; | |
1981 | q->limits.discard_misaligned = 0; | |
70200574 | 1982 | } |
5ae89a87 | 1983 | |
44abff2c CH |
1984 | if (!dm_table_supports_secure_erase(t)) |
1985 | q->limits.max_secure_erase_sectors = 0; | |
00716545 | 1986 | |
c888a8f9 | 1987 | if (dm_table_supports_flush(t, (1UL << QUEUE_FLAG_WC))) { |
519a7e16 | 1988 | wc = true; |
c888a8f9 | 1989 | if (dm_table_supports_flush(t, (1UL << QUEUE_FLAG_FUA))) |
519a7e16 | 1990 | fua = true; |
ed8b752b | 1991 | } |
519a7e16 | 1992 | blk_queue_write_cache(q, wc, fua); |
ed8b752b | 1993 | |
7b0800d0 | 1994 | if (dm_table_supports_dax(t, device_not_dax_capable)) { |
8b904b5b | 1995 | blk_queue_flag_set(QUEUE_FLAG_DAX, q); |
7b0800d0 | 1996 | if (dm_table_supports_dax(t, device_not_dax_synchronous_capable)) |
2e9ee095 PG |
1997 | set_dax_synchronous(t->md->dax_dev); |
1998 | } | |
dbc62659 RZ |
1999 | else |
2000 | blk_queue_flag_clear(QUEUE_FLAG_DAX, q); | |
2001 | ||
24f6b603 | 2002 | if (dm_table_any_dev_attr(t, device_dax_write_cache_enabled, NULL)) |
273752c9 VG |
2003 | dax_write_cache(t->md->dax_dev, true); |
2004 | ||
c3c4555e | 2005 | /* Ensure that all underlying devices are non-rotational. */ |
24f6b603 | 2006 | if (dm_table_any_dev_attr(t, device_is_rotational, NULL)) |
8b904b5b | 2007 | blk_queue_flag_clear(QUEUE_FLAG_NONROT, q); |
a4c8dd9c JX |
2008 | else |
2009 | blk_queue_flag_set(QUEUE_FLAG_NONROT, q); | |
4693c966 | 2010 | |
ac62d620 CH |
2011 | if (!dm_table_supports_write_zeroes(t)) |
2012 | q->limits.max_write_zeroes_sectors = 0; | |
c1a94672 | 2013 | |
25520d55 | 2014 | dm_table_verify_integrity(t); |
e6ee8c0b | 2015 | |
eb40c0ac ID |
2016 | /* |
2017 | * Some devices don't use blk_integrity but still want stable pages | |
2018 | * because they do their own checksumming. | |
a4c8dd9c JX |
2019 | * If any underlying device requires stable pages, a table must require |
2020 | * them as well. Only targets that support iterate_devices are considered: | |
2021 | * don't want error, zero, etc to require stable pages. | |
eb40c0ac | 2022 | */ |
24f6b603 | 2023 | if (dm_table_any_dev_attr(t, device_requires_stable_pages, NULL)) |
1cb039f3 | 2024 | blk_queue_flag_set(QUEUE_FLAG_STABLE_WRITES, q); |
eb40c0ac | 2025 | else |
1cb039f3 | 2026 | blk_queue_flag_clear(QUEUE_FLAG_STABLE_WRITES, q); |
eb40c0ac | 2027 | |
c3c4555e MB |
2028 | /* |
2029 | * Determine whether or not this queue's I/O timings contribute | |
2030 | * to the entropy pool, Only request-based targets use this. | |
2031 | * Clear QUEUE_FLAG_ADD_RANDOM if any underlying device does not | |
2032 | * have it set. | |
2033 | */ | |
24f6b603 JX |
2034 | if (blk_queue_add_random(q) && |
2035 | dm_table_any_dev_attr(t, device_is_not_random, NULL)) | |
8b904b5b | 2036 | blk_queue_flag_clear(QUEUE_FLAG_ADD_RANDOM, q); |
bf505456 | 2037 | |
bb37d772 DLM |
2038 | /* |
2039 | * For a zoned target, setup the zones related queue attributes | |
2040 | * and resources necessary for zone append emulation if necessary. | |
2041 | */ | |
2042 | if (blk_queue_is_zoned(q)) { | |
2043 | r = dm_set_zones_restrictions(t, q); | |
2044 | if (r) | |
2045 | return r; | |
442761fd MS |
2046 | if (!static_key_enabled(&zoned_enabled.key)) |
2047 | static_branch_enable(&zoned_enabled); | |
bb37d772 | 2048 | } |
c6d6e9b0 | 2049 | |
cb77cb5a | 2050 | dm_update_crypto_profile(q, t); |
471aa704 | 2051 | disk_update_readahead(t->md->disk); |
bb37d772 | 2052 | |
b99fdcdc ML |
2053 | /* |
2054 | * Check for request-based device is left to | |
2055 | * dm_mq_init_request_queue()->blk_mq_init_allocated_queue(). | |
2056 | * | |
2057 | * For bio-based device, only set QUEUE_FLAG_POLL when all | |
2058 | * underlying devices supporting polling. | |
2059 | */ | |
2060 | if (__table_type_bio_based(t->type)) { | |
2061 | if (dm_table_supports_poll(t)) | |
2062 | blk_queue_flag_set(QUEUE_FLAG_POLL, q); | |
2063 | else | |
2064 | blk_queue_flag_clear(QUEUE_FLAG_POLL, q); | |
2065 | } | |
2066 | ||
bb37d772 | 2067 | return 0; |
1da177e4 LT |
2068 | } |
2069 | ||
2070 | unsigned int dm_table_get_num_targets(struct dm_table *t) | |
2071 | { | |
2072 | return t->num_targets; | |
2073 | } | |
2074 | ||
2075 | struct list_head *dm_table_get_devices(struct dm_table *t) | |
2076 | { | |
2077 | return &t->devices; | |
2078 | } | |
2079 | ||
aeb5d727 | 2080 | fmode_t dm_table_get_mode(struct dm_table *t) |
1da177e4 LT |
2081 | { |
2082 | return t->mode; | |
2083 | } | |
08649012 | 2084 | EXPORT_SYMBOL(dm_table_get_mode); |
1da177e4 | 2085 | |
d67ee213 MS |
2086 | enum suspend_mode { |
2087 | PRESUSPEND, | |
2088 | PRESUSPEND_UNDO, | |
2089 | POSTSUSPEND, | |
2090 | }; | |
2091 | ||
2092 | static void suspend_targets(struct dm_table *t, enum suspend_mode mode) | |
1da177e4 LT |
2093 | { |
2094 | int i = t->num_targets; | |
2095 | struct dm_target *ti = t->targets; | |
2096 | ||
1ea0654e BVA |
2097 | lockdep_assert_held(&t->md->suspend_lock); |
2098 | ||
1da177e4 | 2099 | while (i--) { |
d67ee213 MS |
2100 | switch (mode) { |
2101 | case PRESUSPEND: | |
2102 | if (ti->type->presuspend) | |
2103 | ti->type->presuspend(ti); | |
2104 | break; | |
2105 | case PRESUSPEND_UNDO: | |
2106 | if (ti->type->presuspend_undo) | |
2107 | ti->type->presuspend_undo(ti); | |
2108 | break; | |
2109 | case POSTSUSPEND: | |
1da177e4 LT |
2110 | if (ti->type->postsuspend) |
2111 | ti->type->postsuspend(ti); | |
d67ee213 MS |
2112 | break; |
2113 | } | |
1da177e4 LT |
2114 | ti++; |
2115 | } | |
2116 | } | |
2117 | ||
2118 | void dm_table_presuspend_targets(struct dm_table *t) | |
2119 | { | |
cf222b37 AK |
2120 | if (!t) |
2121 | return; | |
2122 | ||
d67ee213 MS |
2123 | suspend_targets(t, PRESUSPEND); |
2124 | } | |
2125 | ||
2126 | void dm_table_presuspend_undo_targets(struct dm_table *t) | |
2127 | { | |
2128 | if (!t) | |
2129 | return; | |
2130 | ||
2131 | suspend_targets(t, PRESUSPEND_UNDO); | |
1da177e4 LT |
2132 | } |
2133 | ||
2134 | void dm_table_postsuspend_targets(struct dm_table *t) | |
2135 | { | |
cf222b37 AK |
2136 | if (!t) |
2137 | return; | |
2138 | ||
d67ee213 | 2139 | suspend_targets(t, POSTSUSPEND); |
1da177e4 LT |
2140 | } |
2141 | ||
8757b776 | 2142 | int dm_table_resume_targets(struct dm_table *t) |
1da177e4 | 2143 | { |
8757b776 MB |
2144 | int i, r = 0; |
2145 | ||
1ea0654e BVA |
2146 | lockdep_assert_held(&t->md->suspend_lock); |
2147 | ||
8757b776 MB |
2148 | for (i = 0; i < t->num_targets; i++) { |
2149 | struct dm_target *ti = t->targets + i; | |
2150 | ||
2151 | if (!ti->type->preresume) | |
2152 | continue; | |
2153 | ||
2154 | r = ti->type->preresume(ti); | |
7833b08e MS |
2155 | if (r) { |
2156 | DMERR("%s: %s: preresume failed, error = %d", | |
2157 | dm_device_name(t->md), ti->type->name, r); | |
8757b776 | 2158 | return r; |
7833b08e | 2159 | } |
8757b776 | 2160 | } |
1da177e4 LT |
2161 | |
2162 | for (i = 0; i < t->num_targets; i++) { | |
2163 | struct dm_target *ti = t->targets + i; | |
2164 | ||
2165 | if (ti->type->resume) | |
2166 | ti->type->resume(ti); | |
2167 | } | |
8757b776 MB |
2168 | |
2169 | return 0; | |
1da177e4 LT |
2170 | } |
2171 | ||
1134e5ae MA |
2172 | struct mapped_device *dm_table_get_md(struct dm_table *t) |
2173 | { | |
1134e5ae MA |
2174 | return t->md; |
2175 | } | |
08649012 | 2176 | EXPORT_SYMBOL(dm_table_get_md); |
1134e5ae | 2177 | |
f349b0a3 MM |
2178 | const char *dm_table_device_name(struct dm_table *t) |
2179 | { | |
2180 | return dm_device_name(t->md); | |
2181 | } | |
2182 | EXPORT_SYMBOL_GPL(dm_table_device_name); | |
2183 | ||
9974fa2c MS |
2184 | void dm_table_run_md_queue_async(struct dm_table *t) |
2185 | { | |
9974fa2c MS |
2186 | if (!dm_table_request_based(t)) |
2187 | return; | |
2188 | ||
33bd6f06 MS |
2189 | if (t->md->queue) |
2190 | blk_mq_run_hw_queues(t->md->queue, true); | |
9974fa2c MS |
2191 | } |
2192 | EXPORT_SYMBOL(dm_table_run_md_queue_async); | |
2193 |