]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/md/dm-table.c
dm table: add more context to terse warning messages
[net-next-2.6.git] / drivers / md / dm-table.c
CommitLineData
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
8#include "dm.h"
9
10#include <linux/module.h>
11#include <linux/vmalloc.h>
12#include <linux/blkdev.h>
13#include <linux/namei.h>
14#include <linux/ctype.h>
15#include <linux/slab.h>
16#include <linux/interrupt.h>
48c9c27b 17#include <linux/mutex.h>
d5816876 18#include <linux/delay.h>
1da177e4
LT
19#include <asm/atomic.h>
20
72d94861
AK
21#define DM_MSG_PREFIX "table"
22
1da177e4
LT
23#define MAX_DEPTH 16
24#define NODE_SIZE L1_CACHE_BYTES
25#define KEYS_PER_NODE (NODE_SIZE / sizeof(sector_t))
26#define CHILDREN_PER_NODE (KEYS_PER_NODE + 1)
27
d5816876
MP
28/*
29 * The table has always exactly one reference from either mapped_device->map
30 * or hash_cell->new_map. This reference is not counted in table->holders.
31 * A pair of dm_create_table/dm_destroy_table functions is used for table
32 * creation/destruction.
33 *
34 * Temporary references from the other code increase table->holders. A pair
35 * of dm_table_get/dm_table_put functions is used to manipulate it.
36 *
37 * When the table is about to be destroyed, we wait for table->holders to
38 * drop to zero.
39 */
40
1da177e4 41struct dm_table {
1134e5ae 42 struct mapped_device *md;
1da177e4 43 atomic_t holders;
e6ee8c0b 44 unsigned type;
1da177e4
LT
45
46 /* btree table */
47 unsigned int depth;
48 unsigned int counts[MAX_DEPTH]; /* in nodes */
49 sector_t *index[MAX_DEPTH];
50
51 unsigned int num_targets;
52 unsigned int num_allocated;
53 sector_t *highs;
54 struct dm_target *targets;
55
56 /*
57 * Indicates the rw permissions for the new logical
58 * device. This should be a combination of FMODE_READ
59 * and FMODE_WRITE.
60 */
aeb5d727 61 fmode_t mode;
1da177e4
LT
62
63 /* a list of devices used by this table */
64 struct list_head devices;
65
1da177e4
LT
66 /* events get handed up using this callback */
67 void (*event_fn)(void *);
68 void *event_context;
e6ee8c0b
KU
69
70 struct dm_md_mempools *mempools;
1da177e4
LT
71};
72
73/*
74 * Similar to ceiling(log_size(n))
75 */
76static unsigned int int_log(unsigned int n, unsigned int base)
77{
78 int result = 0;
79
80 while (n > 1) {
81 n = dm_div_up(n, base);
82 result++;
83 }
84
85 return result;
86}
87
1da177e4
LT
88/*
89 * Calculate the index of the child node of the n'th node k'th key.
90 */
91static inline unsigned int get_child(unsigned int n, unsigned int k)
92{
93 return (n * CHILDREN_PER_NODE) + k;
94}
95
96/*
97 * Return the n'th node of level l from table t.
98 */
99static inline sector_t *get_node(struct dm_table *t,
100 unsigned int l, unsigned int n)
101{
102 return t->index[l] + (n * KEYS_PER_NODE);
103}
104
105/*
106 * Return the highest key that you could lookup from the n'th
107 * node on level l of the btree.
108 */
109static sector_t high(struct dm_table *t, unsigned int l, unsigned int n)
110{
111 for (; l < t->depth - 1; l++)
112 n = get_child(n, CHILDREN_PER_NODE - 1);
113
114 if (n >= t->counts[l])
115 return (sector_t) - 1;
116
117 return get_node(t, l, n)[KEYS_PER_NODE - 1];
118}
119
120/*
121 * Fills in a level of the btree based on the highs of the level
122 * below it.
123 */
124static int setup_btree_index(unsigned int l, struct dm_table *t)
125{
126 unsigned int n, k;
127 sector_t *node;
128
129 for (n = 0U; n < t->counts[l]; n++) {
130 node = get_node(t, l, n);
131
132 for (k = 0U; k < KEYS_PER_NODE; k++)
133 node[k] = high(t, l + 1, get_child(n, k));
134 }
135
136 return 0;
137}
138
139void *dm_vcalloc(unsigned long nmemb, unsigned long elem_size)
140{
141 unsigned long size;
142 void *addr;
143
144 /*
145 * Check that we're not going to overflow.
146 */
147 if (nmemb > (ULONG_MAX / elem_size))
148 return NULL;
149
150 size = nmemb * elem_size;
151 addr = vmalloc(size);
152 if (addr)
153 memset(addr, 0, size);
154
155 return addr;
156}
157
158/*
159 * highs, and targets are managed as dynamic arrays during a
160 * table load.
161 */
162static int alloc_targets(struct dm_table *t, unsigned int num)
163{
164 sector_t *n_highs;
165 struct dm_target *n_targets;
166 int n = t->num_targets;
167
168 /*
169 * Allocate both the target array and offset array at once.
512875bd
JN
170 * Append an empty entry to catch sectors beyond the end of
171 * the device.
1da177e4 172 */
512875bd 173 n_highs = (sector_t *) dm_vcalloc(num + 1, sizeof(struct dm_target) +
1da177e4
LT
174 sizeof(sector_t));
175 if (!n_highs)
176 return -ENOMEM;
177
178 n_targets = (struct dm_target *) (n_highs + num);
179
180 if (n) {
181 memcpy(n_highs, t->highs, sizeof(*n_highs) * n);
182 memcpy(n_targets, t->targets, sizeof(*n_targets) * n);
183 }
184
185 memset(n_highs + n, -1, sizeof(*n_highs) * (num - n));
186 vfree(t->highs);
187
188 t->num_allocated = num;
189 t->highs = n_highs;
190 t->targets = n_targets;
191
192 return 0;
193}
194
aeb5d727 195int dm_table_create(struct dm_table **result, fmode_t mode,
1134e5ae 196 unsigned num_targets, struct mapped_device *md)
1da177e4 197{
094262db 198 struct dm_table *t = kzalloc(sizeof(*t), GFP_KERNEL);
1da177e4
LT
199
200 if (!t)
201 return -ENOMEM;
202
1da177e4 203 INIT_LIST_HEAD(&t->devices);
d5816876 204 atomic_set(&t->holders, 0);
1da177e4
LT
205
206 if (!num_targets)
207 num_targets = KEYS_PER_NODE;
208
209 num_targets = dm_round_up(num_targets, KEYS_PER_NODE);
210
211 if (alloc_targets(t, num_targets)) {
212 kfree(t);
213 t = NULL;
214 return -ENOMEM;
215 }
216
217 t->mode = mode;
1134e5ae 218 t->md = md;
1da177e4
LT
219 *result = t;
220 return 0;
221}
222
223static void free_devices(struct list_head *devices)
224{
225 struct list_head *tmp, *next;
226
afb24528 227 list_for_each_safe(tmp, next, devices) {
82b1519b
MP
228 struct dm_dev_internal *dd =
229 list_entry(tmp, struct dm_dev_internal, list);
1b6da754
JB
230 DMWARN("dm_table_destroy: dm_put_device call missing for %s",
231 dd->dm_dev.name);
1da177e4
LT
232 kfree(dd);
233 }
234}
235
d5816876 236void dm_table_destroy(struct dm_table *t)
1da177e4
LT
237{
238 unsigned int i;
239
d5816876
MP
240 while (atomic_read(&t->holders))
241 msleep(1);
242 smp_mb();
243
1da177e4
LT
244 /* free the indexes (see dm_table_complete) */
245 if (t->depth >= 2)
246 vfree(t->index[t->depth - 2]);
247
248 /* free the targets */
249 for (i = 0; i < t->num_targets; i++) {
250 struct dm_target *tgt = t->targets + i;
251
252 if (tgt->type->dtr)
253 tgt->type->dtr(tgt);
254
255 dm_put_target_type(tgt->type);
256 }
257
258 vfree(t->highs);
259
260 /* free the device list */
1b6da754 261 if (t->devices.next != &t->devices)
1da177e4 262 free_devices(&t->devices);
1da177e4 263
e6ee8c0b
KU
264 dm_free_md_mempools(t->mempools);
265
1da177e4
LT
266 kfree(t);
267}
268
269void dm_table_get(struct dm_table *t)
270{
271 atomic_inc(&t->holders);
272}
273
274void dm_table_put(struct dm_table *t)
275{
276 if (!t)
277 return;
278
d5816876
MP
279 smp_mb__before_atomic_dec();
280 atomic_dec(&t->holders);
1da177e4
LT
281}
282
283/*
284 * Checks to see if we need to extend highs or targets.
285 */
286static inline int check_space(struct dm_table *t)
287{
288 if (t->num_targets >= t->num_allocated)
289 return alloc_targets(t, t->num_allocated * 2);
290
291 return 0;
292}
293
1da177e4
LT
294/*
295 * See if we've already got a device in the list.
296 */
82b1519b 297static struct dm_dev_internal *find_device(struct list_head *l, dev_t dev)
1da177e4 298{
82b1519b 299 struct dm_dev_internal *dd;
1da177e4
LT
300
301 list_for_each_entry (dd, l, list)
82b1519b 302 if (dd->dm_dev.bdev->bd_dev == dev)
1da177e4
LT
303 return dd;
304
305 return NULL;
306}
307
308/*
309 * Open a device so we can use it as a map destination.
310 */
82b1519b
MP
311static int open_dev(struct dm_dev_internal *d, dev_t dev,
312 struct mapped_device *md)
1da177e4
LT
313{
314 static char *_claim_ptr = "I belong to device-mapper";
315 struct block_device *bdev;
316
317 int r;
318
82b1519b 319 BUG_ON(d->dm_dev.bdev);
1da177e4 320
82b1519b 321 bdev = open_by_devnum(dev, d->dm_dev.mode);
1da177e4
LT
322 if (IS_ERR(bdev))
323 return PTR_ERR(bdev);
f165921d 324 r = bd_claim_by_disk(bdev, _claim_ptr, dm_disk(md));
1da177e4 325 if (r)
9a1c3542 326 blkdev_put(bdev, d->dm_dev.mode);
1da177e4 327 else
82b1519b 328 d->dm_dev.bdev = bdev;
1da177e4
LT
329 return r;
330}
331
332/*
333 * Close a device that we've been using.
334 */
82b1519b 335static void close_dev(struct dm_dev_internal *d, struct mapped_device *md)
1da177e4 336{
82b1519b 337 if (!d->dm_dev.bdev)
1da177e4
LT
338 return;
339
82b1519b 340 bd_release_from_disk(d->dm_dev.bdev, dm_disk(md));
9a1c3542 341 blkdev_put(d->dm_dev.bdev, d->dm_dev.mode);
82b1519b 342 d->dm_dev.bdev = NULL;
1da177e4
LT
343}
344
345/*
f6a1ed10 346 * If possible, this checks an area of a destination device is invalid.
1da177e4 347 */
f6a1ed10
MP
348static int device_area_is_invalid(struct dm_target *ti, struct dm_dev *dev,
349 sector_t start, sector_t len, void *data)
1da177e4 350{
754c5fc7
MS
351 struct queue_limits *limits = data;
352 struct block_device *bdev = dev->bdev;
353 sector_t dev_size =
354 i_size_read(bdev->bd_inode) >> SECTOR_SHIFT;
02acc3a4 355 unsigned short logical_block_size_sectors =
754c5fc7 356 limits->logical_block_size >> SECTOR_SHIFT;
02acc3a4 357 char b[BDEVNAME_SIZE];
2cd54d9b
MA
358
359 if (!dev_size)
f6a1ed10 360 return 0;
2cd54d9b 361
5dea271b 362 if ((start >= dev_size) || (start + len > dev_size)) {
a963a956
MS
363 DMWARN("%s: %s too small for target: "
364 "start=%llu, len=%llu, dev_size=%llu",
365 dm_device_name(ti->table->md), bdevname(bdev, b),
366 (unsigned long long)start,
367 (unsigned long long)len,
368 (unsigned long long)dev_size);
f6a1ed10 369 return 1;
02acc3a4
MS
370 }
371
372 if (logical_block_size_sectors <= 1)
f6a1ed10 373 return 0;
02acc3a4
MS
374
375 if (start & (logical_block_size_sectors - 1)) {
376 DMWARN("%s: start=%llu not aligned to h/w "
a963a956 377 "logical block size %u of %s",
02acc3a4
MS
378 dm_device_name(ti->table->md),
379 (unsigned long long)start,
754c5fc7 380 limits->logical_block_size, bdevname(bdev, b));
f6a1ed10 381 return 1;
02acc3a4
MS
382 }
383
5dea271b 384 if (len & (logical_block_size_sectors - 1)) {
02acc3a4 385 DMWARN("%s: len=%llu not aligned to h/w "
a963a956 386 "logical block size %u of %s",
02acc3a4 387 dm_device_name(ti->table->md),
5dea271b 388 (unsigned long long)len,
754c5fc7 389 limits->logical_block_size, bdevname(bdev, b));
f6a1ed10 390 return 1;
02acc3a4
MS
391 }
392
f6a1ed10 393 return 0;
1da177e4
LT
394}
395
396/*
570b9d96 397 * This upgrades the mode on an already open dm_dev, being
1da177e4 398 * careful to leave things as they were if we fail to reopen the
570b9d96
AK
399 * device and not to touch the existing bdev field in case
400 * it is accessed concurrently inside dm_table_any_congested().
1da177e4 401 */
aeb5d727 402static int upgrade_mode(struct dm_dev_internal *dd, fmode_t new_mode,
82b1519b 403 struct mapped_device *md)
1da177e4
LT
404{
405 int r;
570b9d96 406 struct dm_dev_internal dd_new, dd_old;
1da177e4 407
570b9d96
AK
408 dd_new = dd_old = *dd;
409
410 dd_new.dm_dev.mode |= new_mode;
411 dd_new.dm_dev.bdev = NULL;
412
413 r = open_dev(&dd_new, dd->dm_dev.bdev->bd_dev, md);
414 if (r)
415 return r;
1da177e4 416
82b1519b 417 dd->dm_dev.mode |= new_mode;
570b9d96 418 close_dev(&dd_old, md);
1da177e4 419
570b9d96 420 return 0;
1da177e4
LT
421}
422
423/*
424 * Add a device to the list, or just increment the usage count if
425 * it's already present.
426 */
427static int __table_get_device(struct dm_table *t, struct dm_target *ti,
428 const char *path, sector_t start, sector_t len,
aeb5d727 429 fmode_t mode, struct dm_dev **result)
1da177e4
LT
430{
431 int r;
69a2ce72 432 dev_t uninitialized_var(dev);
82b1519b 433 struct dm_dev_internal *dd;
1da177e4
LT
434 unsigned int major, minor;
435
547bc926 436 BUG_ON(!t);
1da177e4
LT
437
438 if (sscanf(path, "%u:%u", &major, &minor) == 2) {
439 /* Extract the major/minor numbers */
440 dev = MKDEV(major, minor);
441 if (MAJOR(dev) != major || MINOR(dev) != minor)
442 return -EOVERFLOW;
443 } else {
444 /* convert the path to a device */
72e8264e
CH
445 struct block_device *bdev = lookup_bdev(path);
446
447 if (IS_ERR(bdev))
448 return PTR_ERR(bdev);
449 dev = bdev->bd_dev;
450 bdput(bdev);
1da177e4
LT
451 }
452
453 dd = find_device(&t->devices, dev);
454 if (!dd) {
455 dd = kmalloc(sizeof(*dd), GFP_KERNEL);
456 if (!dd)
457 return -ENOMEM;
458
82b1519b
MP
459 dd->dm_dev.mode = mode;
460 dd->dm_dev.bdev = NULL;
1da177e4 461
f165921d 462 if ((r = open_dev(dd, dev, t->md))) {
1da177e4
LT
463 kfree(dd);
464 return r;
465 }
466
82b1519b 467 format_dev_t(dd->dm_dev.name, dev);
1da177e4
LT
468
469 atomic_set(&dd->count, 0);
470 list_add(&dd->list, &t->devices);
471
82b1519b 472 } else if (dd->dm_dev.mode != (mode | dd->dm_dev.mode)) {
f165921d 473 r = upgrade_mode(dd, mode, t->md);
1da177e4
LT
474 if (r)
475 return r;
476 }
477 atomic_inc(&dd->count);
478
82b1519b 479 *result = &dd->dm_dev;
1da177e4
LT
480 return 0;
481}
482
5ab97588
MS
483/*
484 * Returns the minimum that is _not_ zero, unless both are zero.
485 */
486#define min_not_zero(l, r) (l == 0) ? r : ((r == 0) ? l : min(l, r))
487
754c5fc7 488int dm_set_device_limits(struct dm_target *ti, struct dm_dev *dev,
5dea271b 489 sector_t start, sector_t len, void *data)
1da177e4 490{
754c5fc7
MS
491 struct queue_limits *limits = data;
492 struct block_device *bdev = dev->bdev;
165125e1 493 struct request_queue *q = bdev_get_queue(bdev);
0c2322e4
AK
494 char b[BDEVNAME_SIZE];
495
496 if (unlikely(!q)) {
497 DMWARN("%s: Cannot set limits for nonexistent device %s",
498 dm_device_name(ti->table->md), bdevname(bdev, b));
754c5fc7 499 return 0;
0c2322e4 500 }
3cb40214 501
ea9df47c 502 if (blk_stack_limits(limits, &q->limits, start << 9) < 0)
a963a956
MS
503 DMWARN("%s: target device %s is misaligned: "
504 "physical_block_size=%u, logical_block_size=%u, "
505 "alignment_offset=%u, start=%llu",
506 dm_device_name(ti->table->md), bdevname(bdev, b),
507 q->limits.physical_block_size,
508 q->limits.logical_block_size,
509 q->limits.alignment_offset,
510 (unsigned long long) start << 9);
511
3cb40214 512
9980c638
MB
513 /*
514 * Check if merge fn is supported.
515 * If not we'll force DM to use PAGE_SIZE or
516 * smaller I/O, just to be safe.
3cb40214 517 */
9980c638
MB
518
519 if (q->merge_bvec_fn && !ti->type->merge)
754c5fc7
MS
520 limits->max_sectors =
521 min_not_zero(limits->max_sectors,
3cb40214 522 (unsigned int) (PAGE_SIZE >> 9));
754c5fc7 523 return 0;
3cb40214
BR
524}
525EXPORT_SYMBOL_GPL(dm_set_device_limits);
969429b5 526
3cb40214 527int dm_get_device(struct dm_target *ti, const char *path, sector_t start,
aeb5d727 528 sector_t len, fmode_t mode, struct dm_dev **result)
3cb40214 529{
754c5fc7
MS
530 return __table_get_device(ti->table, ti, path,
531 start, len, mode, result);
1da177e4
LT
532}
533
754c5fc7 534
1da177e4
LT
535/*
536 * Decrement a devices use count and remove it if necessary.
537 */
82b1519b 538void dm_put_device(struct dm_target *ti, struct dm_dev *d)
1da177e4 539{
82b1519b
MP
540 struct dm_dev_internal *dd = container_of(d, struct dm_dev_internal,
541 dm_dev);
542
1da177e4 543 if (atomic_dec_and_test(&dd->count)) {
f165921d 544 close_dev(dd, ti->table->md);
1da177e4
LT
545 list_del(&dd->list);
546 kfree(dd);
547 }
548}
549
550/*
551 * Checks to see if the target joins onto the end of the table.
552 */
553static int adjoin(struct dm_table *table, struct dm_target *ti)
554{
555 struct dm_target *prev;
556
557 if (!table->num_targets)
558 return !ti->begin;
559
560 prev = &table->targets[table->num_targets - 1];
561 return (ti->begin == (prev->begin + prev->len));
562}
563
564/*
565 * Used to dynamically allocate the arg array.
566 */
567static char **realloc_argv(unsigned *array_size, char **old_argv)
568{
569 char **argv;
570 unsigned new_size;
571
572 new_size = *array_size ? *array_size * 2 : 64;
573 argv = kmalloc(new_size * sizeof(*argv), GFP_KERNEL);
574 if (argv) {
575 memcpy(argv, old_argv, *array_size * sizeof(*argv));
576 *array_size = new_size;
577 }
578
579 kfree(old_argv);
580 return argv;
581}
582
583/*
584 * Destructively splits up the argument list to pass to ctr.
585 */
586int dm_split_args(int *argc, char ***argvp, char *input)
587{
588 char *start, *end = input, *out, **argv = NULL;
589 unsigned array_size = 0;
590
591 *argc = 0;
814d6862
DT
592
593 if (!input) {
594 *argvp = NULL;
595 return 0;
596 }
597
1da177e4
LT
598 argv = realloc_argv(&array_size, argv);
599 if (!argv)
600 return -ENOMEM;
601
602 while (1) {
603 start = end;
604
605 /* Skip whitespace */
606 while (*start && isspace(*start))
607 start++;
608
609 if (!*start)
610 break; /* success, we hit the end */
611
612 /* 'out' is used to remove any back-quotes */
613 end = out = start;
614 while (*end) {
615 /* Everything apart from '\0' can be quoted */
616 if (*end == '\\' && *(end + 1)) {
617 *out++ = *(end + 1);
618 end += 2;
619 continue;
620 }
621
622 if (isspace(*end))
623 break; /* end of token */
624
625 *out++ = *end++;
626 }
627
628 /* have we already filled the array ? */
629 if ((*argc + 1) > array_size) {
630 argv = realloc_argv(&array_size, argv);
631 if (!argv)
632 return -ENOMEM;
633 }
634
635 /* we know this is whitespace */
636 if (*end)
637 end++;
638
639 /* terminate the string and put it in the array */
640 *out = '\0';
641 argv[*argc] = start;
642 (*argc)++;
643 }
644
645 *argvp = argv;
646 return 0;
647}
648
be6d4305
MS
649/*
650 * Impose necessary and sufficient conditions on a devices's table such
651 * that any incoming bio which respects its logical_block_size can be
652 * processed successfully. If it falls across the boundary between
653 * two or more targets, the size of each piece it gets split into must
654 * be compatible with the logical_block_size of the target processing it.
655 */
754c5fc7
MS
656static int validate_hardware_logical_block_alignment(struct dm_table *table,
657 struct queue_limits *limits)
be6d4305
MS
658{
659 /*
660 * This function uses arithmetic modulo the logical_block_size
661 * (in units of 512-byte sectors).
662 */
663 unsigned short device_logical_block_size_sects =
754c5fc7 664 limits->logical_block_size >> SECTOR_SHIFT;
be6d4305
MS
665
666 /*
667 * Offset of the start of the next table entry, mod logical_block_size.
668 */
669 unsigned short next_target_start = 0;
670
671 /*
672 * Given an aligned bio that extends beyond the end of a
673 * target, how many sectors must the next target handle?
674 */
675 unsigned short remaining = 0;
676
677 struct dm_target *uninitialized_var(ti);
754c5fc7 678 struct queue_limits ti_limits;
be6d4305
MS
679 unsigned i = 0;
680
681 /*
682 * Check each entry in the table in turn.
683 */
684 while (i < dm_table_get_num_targets(table)) {
685 ti = dm_table_get_target(table, i++);
686
754c5fc7
MS
687 blk_set_default_limits(&ti_limits);
688
689 /* combine all target devices' limits */
690 if (ti->type->iterate_devices)
691 ti->type->iterate_devices(ti, dm_set_device_limits,
692 &ti_limits);
693
be6d4305
MS
694 /*
695 * If the remaining sectors fall entirely within this
696 * table entry are they compatible with its logical_block_size?
697 */
698 if (remaining < ti->len &&
754c5fc7 699 remaining & ((ti_limits.logical_block_size >>
be6d4305
MS
700 SECTOR_SHIFT) - 1))
701 break; /* Error */
702
703 next_target_start =
704 (unsigned short) ((next_target_start + ti->len) &
705 (device_logical_block_size_sects - 1));
706 remaining = next_target_start ?
707 device_logical_block_size_sects - next_target_start : 0;
708 }
709
710 if (remaining) {
711 DMWARN("%s: table line %u (start sect %llu len %llu) "
a963a956 712 "not aligned to h/w logical block size %u",
be6d4305
MS
713 dm_device_name(table->md), i,
714 (unsigned long long) ti->begin,
715 (unsigned long long) ti->len,
754c5fc7 716 limits->logical_block_size);
be6d4305
MS
717 return -EINVAL;
718 }
719
720 return 0;
721}
722
1da177e4
LT
723int dm_table_add_target(struct dm_table *t, const char *type,
724 sector_t start, sector_t len, char *params)
725{
726 int r = -EINVAL, argc;
727 char **argv;
728 struct dm_target *tgt;
729
730 if ((r = check_space(t)))
731 return r;
732
733 tgt = t->targets + t->num_targets;
734 memset(tgt, 0, sizeof(*tgt));
735
736 if (!len) {
72d94861 737 DMERR("%s: zero-length target", dm_device_name(t->md));
1da177e4
LT
738 return -EINVAL;
739 }
740
741 tgt->type = dm_get_target_type(type);
742 if (!tgt->type) {
72d94861
AK
743 DMERR("%s: %s: unknown target type", dm_device_name(t->md),
744 type);
1da177e4
LT
745 return -EINVAL;
746 }
747
748 tgt->table = t;
749 tgt->begin = start;
750 tgt->len = len;
751 tgt->error = "Unknown error";
752
753 /*
754 * Does this target adjoin the previous one ?
755 */
756 if (!adjoin(t, tgt)) {
757 tgt->error = "Gap in table";
758 r = -EINVAL;
759 goto bad;
760 }
761
762 r = dm_split_args(&argc, &argv, params);
763 if (r) {
764 tgt->error = "couldn't split parameters (insufficient memory)";
765 goto bad;
766 }
767
768 r = tgt->type->ctr(tgt, argc, argv);
769 kfree(argv);
770 if (r)
771 goto bad;
772
773 t->highs[t->num_targets++] = tgt->begin + tgt->len - 1;
774
1da177e4
LT
775 return 0;
776
777 bad:
72d94861 778 DMERR("%s: %s: %s", dm_device_name(t->md), type, tgt->error);
1da177e4
LT
779 dm_put_target_type(tgt->type);
780 return r;
781}
782
e6ee8c0b
KU
783int dm_table_set_type(struct dm_table *t)
784{
785 unsigned i;
786 unsigned bio_based = 0, request_based = 0;
787 struct dm_target *tgt;
788 struct dm_dev_internal *dd;
789 struct list_head *devices;
790
791 for (i = 0; i < t->num_targets; i++) {
792 tgt = t->targets + i;
793 if (dm_target_request_based(tgt))
794 request_based = 1;
795 else
796 bio_based = 1;
797
798 if (bio_based && request_based) {
799 DMWARN("Inconsistent table: different target types"
800 " can't be mixed up");
801 return -EINVAL;
802 }
803 }
804
805 if (bio_based) {
806 /* We must use this table as bio-based */
807 t->type = DM_TYPE_BIO_BASED;
808 return 0;
809 }
810
811 BUG_ON(!request_based); /* No targets in this table */
812
813 /* Non-request-stackable devices can't be used for request-based dm */
814 devices = dm_table_get_devices(t);
815 list_for_each_entry(dd, devices, list) {
816 if (!blk_queue_stackable(bdev_get_queue(dd->dm_dev.bdev))) {
817 DMWARN("table load rejected: including"
818 " non-request-stackable devices");
819 return -EINVAL;
820 }
821 }
822
823 /*
824 * Request-based dm supports only tables that have a single target now.
825 * To support multiple targets, request splitting support is needed,
826 * and that needs lots of changes in the block-layer.
827 * (e.g. request completion process for partial completion.)
828 */
829 if (t->num_targets > 1) {
830 DMWARN("Request-based dm doesn't support multiple targets yet");
831 return -EINVAL;
832 }
833
834 t->type = DM_TYPE_REQUEST_BASED;
835
836 return 0;
837}
838
839unsigned dm_table_get_type(struct dm_table *t)
840{
841 return t->type;
842}
843
844bool dm_table_request_based(struct dm_table *t)
845{
846 return dm_table_get_type(t) == DM_TYPE_REQUEST_BASED;
847}
848
849int dm_table_alloc_md_mempools(struct dm_table *t)
850{
851 unsigned type = dm_table_get_type(t);
852
853 if (unlikely(type == DM_TYPE_NONE)) {
854 DMWARN("no table type is set, can't allocate mempools");
855 return -EINVAL;
856 }
857
858 t->mempools = dm_alloc_md_mempools(type);
859 if (!t->mempools)
860 return -ENOMEM;
861
862 return 0;
863}
864
865void dm_table_free_md_mempools(struct dm_table *t)
866{
867 dm_free_md_mempools(t->mempools);
868 t->mempools = NULL;
869}
870
871struct dm_md_mempools *dm_table_get_md_mempools(struct dm_table *t)
872{
873 return t->mempools;
874}
875
1da177e4
LT
876static int setup_indexes(struct dm_table *t)
877{
878 int i;
879 unsigned int total = 0;
880 sector_t *indexes;
881
882 /* allocate the space for *all* the indexes */
883 for (i = t->depth - 2; i >= 0; i--) {
884 t->counts[i] = dm_div_up(t->counts[i + 1], CHILDREN_PER_NODE);
885 total += t->counts[i];
886 }
887
888 indexes = (sector_t *) dm_vcalloc(total, (unsigned long) NODE_SIZE);
889 if (!indexes)
890 return -ENOMEM;
891
892 /* set up internal nodes, bottom-up */
82d601dc 893 for (i = t->depth - 2; i >= 0; i--) {
1da177e4
LT
894 t->index[i] = indexes;
895 indexes += (KEYS_PER_NODE * t->counts[i]);
896 setup_btree_index(i, t);
897 }
898
899 return 0;
900}
901
902/*
903 * Builds the btree to index the map.
904 */
905int dm_table_complete(struct dm_table *t)
906{
907 int r = 0;
908 unsigned int leaf_nodes;
909
1da177e4
LT
910 /* how many indexes will the btree have ? */
911 leaf_nodes = dm_div_up(t->num_targets, KEYS_PER_NODE);
912 t->depth = 1 + int_log(leaf_nodes, CHILDREN_PER_NODE);
913
914 /* leaf layer has already been set up */
915 t->counts[t->depth - 1] = leaf_nodes;
916 t->index[t->depth - 1] = t->highs;
917
918 if (t->depth >= 2)
919 r = setup_indexes(t);
920
921 return r;
922}
923
48c9c27b 924static DEFINE_MUTEX(_event_lock);
1da177e4
LT
925void dm_table_event_callback(struct dm_table *t,
926 void (*fn)(void *), void *context)
927{
48c9c27b 928 mutex_lock(&_event_lock);
1da177e4
LT
929 t->event_fn = fn;
930 t->event_context = context;
48c9c27b 931 mutex_unlock(&_event_lock);
1da177e4
LT
932}
933
934void dm_table_event(struct dm_table *t)
935{
936 /*
937 * You can no longer call dm_table_event() from interrupt
938 * context, use a bottom half instead.
939 */
940 BUG_ON(in_interrupt());
941
48c9c27b 942 mutex_lock(&_event_lock);
1da177e4
LT
943 if (t->event_fn)
944 t->event_fn(t->event_context);
48c9c27b 945 mutex_unlock(&_event_lock);
1da177e4
LT
946}
947
948sector_t dm_table_get_size(struct dm_table *t)
949{
950 return t->num_targets ? (t->highs[t->num_targets - 1] + 1) : 0;
951}
952
953struct dm_target *dm_table_get_target(struct dm_table *t, unsigned int index)
954{
14353539 955 if (index >= t->num_targets)
1da177e4
LT
956 return NULL;
957
958 return t->targets + index;
959}
960
961/*
962 * Search the btree for the correct target.
512875bd
JN
963 *
964 * Caller should check returned pointer with dm_target_is_valid()
965 * to trap I/O beyond end of device.
1da177e4
LT
966 */
967struct dm_target *dm_table_find_target(struct dm_table *t, sector_t sector)
968{
969 unsigned int l, n = 0, k = 0;
970 sector_t *node;
971
972 for (l = 0; l < t->depth; l++) {
973 n = get_child(n, k);
974 node = get_node(t, l, n);
975
976 for (k = 0; k < KEYS_PER_NODE; k++)
977 if (node[k] >= sector)
978 break;
979 }
980
981 return &t->targets[(KEYS_PER_NODE * n) + k];
982}
983
754c5fc7
MS
984/*
985 * Establish the new table's queue_limits and validate them.
986 */
987int dm_calculate_queue_limits(struct dm_table *table,
988 struct queue_limits *limits)
989{
990 struct dm_target *uninitialized_var(ti);
991 struct queue_limits ti_limits;
992 unsigned i = 0;
993
994 blk_set_default_limits(limits);
995
996 while (i < dm_table_get_num_targets(table)) {
997 blk_set_default_limits(&ti_limits);
998
999 ti = dm_table_get_target(table, i++);
1000
1001 if (!ti->type->iterate_devices)
1002 goto combine_limits;
1003
1004 /*
1005 * Combine queue limits of all the devices this target uses.
1006 */
1007 ti->type->iterate_devices(ti, dm_set_device_limits,
1008 &ti_limits);
1009
1010 /*
1011 * Check each device area is consistent with the target's
1012 * overall queue limits.
1013 */
f6a1ed10
MP
1014 if (ti->type->iterate_devices(ti, device_area_is_invalid,
1015 &ti_limits))
754c5fc7
MS
1016 return -EINVAL;
1017
1018combine_limits:
1019 /*
1020 * Merge this target's queue limits into the overall limits
1021 * for the table.
1022 */
1023 if (blk_stack_limits(limits, &ti_limits, 0) < 0)
1024 DMWARN("%s: target device "
1025 "(start sect %llu len %llu) "
1026 "is misaligned",
1027 dm_device_name(table->md),
1028 (unsigned long long) ti->begin,
1029 (unsigned long long) ti->len);
1030 }
1031
1032 return validate_hardware_logical_block_alignment(table, limits);
1033}
1034
9c47008d
MP
1035/*
1036 * Set the integrity profile for this device if all devices used have
1037 * matching profiles.
1038 */
1039static void dm_table_set_integrity(struct dm_table *t)
1040{
1041 struct list_head *devices = dm_table_get_devices(t);
1042 struct dm_dev_internal *prev = NULL, *dd = NULL;
1043
1044 if (!blk_get_integrity(dm_disk(t->md)))
1045 return;
1046
1047 list_for_each_entry(dd, devices, list) {
1048 if (prev &&
1049 blk_integrity_compare(prev->dm_dev.bdev->bd_disk,
1050 dd->dm_dev.bdev->bd_disk) < 0) {
1051 DMWARN("%s: integrity not set: %s and %s mismatch",
1052 dm_device_name(t->md),
1053 prev->dm_dev.bdev->bd_disk->disk_name,
1054 dd->dm_dev.bdev->bd_disk->disk_name);
1055 goto no_integrity;
1056 }
1057 prev = dd;
1058 }
1059
1060 if (!prev || !bdev_get_integrity(prev->dm_dev.bdev))
1061 goto no_integrity;
1062
1063 blk_integrity_register(dm_disk(t->md),
1064 bdev_get_integrity(prev->dm_dev.bdev));
1065
1066 return;
1067
1068no_integrity:
1069 blk_integrity_register(dm_disk(t->md), NULL);
1070
1071 return;
1072}
1073
754c5fc7
MS
1074void dm_table_set_restrictions(struct dm_table *t, struct request_queue *q,
1075 struct queue_limits *limits)
1da177e4 1076{
754c5fc7
MS
1077 /*
1078 * Each target device in the table has a data area that should normally
1079 * be aligned such that the DM device's alignment_offset is 0.
1080 * FIXME: Propagate alignment_offsets up the stack and warn of
1081 * sub-optimal or inconsistent settings.
1082 */
1083 limits->alignment_offset = 0;
1084 limits->misaligned = 0;
1085
1da177e4 1086 /*
1197764e 1087 * Copy table's limits to the DM device's request_queue
1da177e4 1088 */
754c5fc7 1089 q->limits = *limits;
c9a3f6d6 1090
754c5fc7 1091 if (limits->no_cluster)
c9a3f6d6 1092 queue_flag_clear_unlocked(QUEUE_FLAG_CLUSTER, q);
969429b5 1093 else
c9a3f6d6 1094 queue_flag_set_unlocked(QUEUE_FLAG_CLUSTER, q);
969429b5 1095
9c47008d 1096 dm_table_set_integrity(t);
e6ee8c0b
KU
1097
1098 /*
1099 * QUEUE_FLAG_STACKABLE must be set after all queue settings are
1100 * visible to other CPUs because, once the flag is set, incoming bios
1101 * are processed by request-based dm, which refers to the queue
1102 * settings.
1103 * Until the flag set, bios are passed to bio-based dm and queued to
1104 * md->deferred where queue settings are not needed yet.
1105 * Those bios are passed to request-based dm at the resume time.
1106 */
1107 smp_mb();
1108 if (dm_table_request_based(t))
1109 queue_flag_set_unlocked(QUEUE_FLAG_STACKABLE, q);
1da177e4
LT
1110}
1111
1112unsigned int dm_table_get_num_targets(struct dm_table *t)
1113{
1114 return t->num_targets;
1115}
1116
1117struct list_head *dm_table_get_devices(struct dm_table *t)
1118{
1119 return &t->devices;
1120}
1121
aeb5d727 1122fmode_t dm_table_get_mode(struct dm_table *t)
1da177e4
LT
1123{
1124 return t->mode;
1125}
1126
1127static void suspend_targets(struct dm_table *t, unsigned postsuspend)
1128{
1129 int i = t->num_targets;
1130 struct dm_target *ti = t->targets;
1131
1132 while (i--) {
1133 if (postsuspend) {
1134 if (ti->type->postsuspend)
1135 ti->type->postsuspend(ti);
1136 } else if (ti->type->presuspend)
1137 ti->type->presuspend(ti);
1138
1139 ti++;
1140 }
1141}
1142
1143void dm_table_presuspend_targets(struct dm_table *t)
1144{
cf222b37
AK
1145 if (!t)
1146 return;
1147
e8488d08 1148 suspend_targets(t, 0);
1da177e4
LT
1149}
1150
1151void dm_table_postsuspend_targets(struct dm_table *t)
1152{
cf222b37
AK
1153 if (!t)
1154 return;
1155
e8488d08 1156 suspend_targets(t, 1);
1da177e4
LT
1157}
1158
8757b776 1159int dm_table_resume_targets(struct dm_table *t)
1da177e4 1160{
8757b776
MB
1161 int i, r = 0;
1162
1163 for (i = 0; i < t->num_targets; i++) {
1164 struct dm_target *ti = t->targets + i;
1165
1166 if (!ti->type->preresume)
1167 continue;
1168
1169 r = ti->type->preresume(ti);
1170 if (r)
1171 return r;
1172 }
1da177e4
LT
1173
1174 for (i = 0; i < t->num_targets; i++) {
1175 struct dm_target *ti = t->targets + i;
1176
1177 if (ti->type->resume)
1178 ti->type->resume(ti);
1179 }
8757b776
MB
1180
1181 return 0;
1da177e4
LT
1182}
1183
1184int dm_table_any_congested(struct dm_table *t, int bdi_bits)
1185{
82b1519b 1186 struct dm_dev_internal *dd;
afb24528 1187 struct list_head *devices = dm_table_get_devices(t);
1da177e4
LT
1188 int r = 0;
1189
afb24528 1190 list_for_each_entry(dd, devices, list) {
82b1519b 1191 struct request_queue *q = bdev_get_queue(dd->dm_dev.bdev);
0c2322e4
AK
1192 char b[BDEVNAME_SIZE];
1193
1194 if (likely(q))
1195 r |= bdi_congested(&q->backing_dev_info, bdi_bits);
1196 else
1197 DMWARN_LIMIT("%s: any_congested: nonexistent device %s",
1198 dm_device_name(t->md),
1199 bdevname(dd->dm_dev.bdev, b));
1da177e4
LT
1200 }
1201
1202 return r;
1203}
1204
cec47e3d
KU
1205int dm_table_any_busy_target(struct dm_table *t)
1206{
1207 unsigned i;
1208 struct dm_target *ti;
1209
1210 for (i = 0; i < t->num_targets; i++) {
1211 ti = t->targets + i;
1212 if (ti->type->busy && ti->type->busy(ti))
1213 return 1;
1214 }
1215
1216 return 0;
1217}
1218
1da177e4
LT
1219void dm_table_unplug_all(struct dm_table *t)
1220{
82b1519b 1221 struct dm_dev_internal *dd;
afb24528 1222 struct list_head *devices = dm_table_get_devices(t);
1da177e4 1223
afb24528 1224 list_for_each_entry(dd, devices, list) {
82b1519b 1225 struct request_queue *q = bdev_get_queue(dd->dm_dev.bdev);
0c2322e4
AK
1226 char b[BDEVNAME_SIZE];
1227
1228 if (likely(q))
1229 blk_unplug(q);
1230 else
1231 DMWARN_LIMIT("%s: Cannot unplug nonexistent device %s",
1232 dm_device_name(t->md),
1233 bdevname(dd->dm_dev.bdev, b));
1da177e4
LT
1234 }
1235}
1236
1134e5ae
MA
1237struct mapped_device *dm_table_get_md(struct dm_table *t)
1238{
1239 dm_get(t->md);
1240
1241 return t->md;
1242}
1243
1da177e4
LT
1244EXPORT_SYMBOL(dm_vcalloc);
1245EXPORT_SYMBOL(dm_get_device);
1246EXPORT_SYMBOL(dm_put_device);
1247EXPORT_SYMBOL(dm_table_event);
d5e404c1 1248EXPORT_SYMBOL(dm_table_get_size);
1da177e4 1249EXPORT_SYMBOL(dm_table_get_mode);
1134e5ae 1250EXPORT_SYMBOL(dm_table_get_md);
1da177e4
LT
1251EXPORT_SYMBOL(dm_table_put);
1252EXPORT_SYMBOL(dm_table_get);
1253EXPORT_SYMBOL(dm_table_unplug_all);