dm table: fix missing dm_put_target_type() in dm_table_add_target()
[pandora-kernel.git] / drivers / md / dm-table.c
1 /*
2  * Copyright (C) 2001 Sistina Software (UK) Limited.
3  * Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved.
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/string.h>
16 #include <linux/slab.h>
17 #include <linux/interrupt.h>
18 #include <linux/mutex.h>
19 #include <linux/delay.h>
20 #include <linux/atomic.h>
21
22 #define DM_MSG_PREFIX "table"
23
24 #define MAX_DEPTH 16
25 #define NODE_SIZE L1_CACHE_BYTES
26 #define KEYS_PER_NODE (NODE_SIZE / sizeof(sector_t))
27 #define CHILDREN_PER_NODE (KEYS_PER_NODE + 1)
28
29 /*
30  * The table has always exactly one reference from either mapped_device->map
31  * or hash_cell->new_map. This reference is not counted in table->holders.
32  * A pair of dm_create_table/dm_destroy_table functions is used for table
33  * creation/destruction.
34  *
35  * Temporary references from the other code increase table->holders. A pair
36  * of dm_table_get/dm_table_put functions is used to manipulate it.
37  *
38  * When the table is about to be destroyed, we wait for table->holders to
39  * drop to zero.
40  */
41
42 struct dm_table {
43         struct mapped_device *md;
44         atomic_t holders;
45         unsigned type;
46
47         /* btree table */
48         unsigned int depth;
49         unsigned int counts[MAX_DEPTH]; /* in nodes */
50         sector_t *index[MAX_DEPTH];
51
52         unsigned int num_targets;
53         unsigned int num_allocated;
54         sector_t *highs;
55         struct dm_target *targets;
56
57         struct target_type *immutable_target_type;
58         unsigned integrity_supported:1;
59         unsigned singleton:1;
60
61         /*
62          * Indicates the rw permissions for the new logical
63          * device.  This should be a combination of FMODE_READ
64          * and FMODE_WRITE.
65          */
66         fmode_t mode;
67
68         /* a list of devices used by this table */
69         struct list_head devices;
70
71         /* events get handed up using this callback */
72         void (*event_fn)(void *);
73         void *event_context;
74
75         struct dm_md_mempools *mempools;
76
77         struct list_head target_callbacks;
78 };
79
80 /*
81  * Similar to ceiling(log_size(n))
82  */
83 static unsigned int int_log(unsigned int n, unsigned int base)
84 {
85         int result = 0;
86
87         while (n > 1) {
88                 n = dm_div_up(n, base);
89                 result++;
90         }
91
92         return result;
93 }
94
95 /*
96  * Calculate the index of the child node of the n'th node k'th key.
97  */
98 static inline unsigned int get_child(unsigned int n, unsigned int k)
99 {
100         return (n * CHILDREN_PER_NODE) + k;
101 }
102
103 /*
104  * Return the n'th node of level l from table t.
105  */
106 static inline sector_t *get_node(struct dm_table *t,
107                                  unsigned int l, unsigned int n)
108 {
109         return t->index[l] + (n * KEYS_PER_NODE);
110 }
111
112 /*
113  * Return the highest key that you could lookup from the n'th
114  * node on level l of the btree.
115  */
116 static sector_t high(struct dm_table *t, unsigned int l, unsigned int n)
117 {
118         for (; l < t->depth - 1; l++)
119                 n = get_child(n, CHILDREN_PER_NODE - 1);
120
121         if (n >= t->counts[l])
122                 return (sector_t) - 1;
123
124         return get_node(t, l, n)[KEYS_PER_NODE - 1];
125 }
126
127 /*
128  * Fills in a level of the btree based on the highs of the level
129  * below it.
130  */
131 static int setup_btree_index(unsigned int l, struct dm_table *t)
132 {
133         unsigned int n, k;
134         sector_t *node;
135
136         for (n = 0U; n < t->counts[l]; n++) {
137                 node = get_node(t, l, n);
138
139                 for (k = 0U; k < KEYS_PER_NODE; k++)
140                         node[k] = high(t, l + 1, get_child(n, k));
141         }
142
143         return 0;
144 }
145
146 void *dm_vcalloc(unsigned long nmemb, unsigned long elem_size)
147 {
148         unsigned long size;
149         void *addr;
150
151         /*
152          * Check that we're not going to overflow.
153          */
154         if (nmemb > (ULONG_MAX / elem_size))
155                 return NULL;
156
157         size = nmemb * elem_size;
158         addr = vzalloc(size);
159
160         return addr;
161 }
162 EXPORT_SYMBOL(dm_vcalloc);
163
164 /*
165  * highs, and targets are managed as dynamic arrays during a
166  * table load.
167  */
168 static int alloc_targets(struct dm_table *t, unsigned int num)
169 {
170         sector_t *n_highs;
171         struct dm_target *n_targets;
172         int n = t->num_targets;
173
174         /*
175          * Allocate both the target array and offset array at once.
176          * Append an empty entry to catch sectors beyond the end of
177          * the device.
178          */
179         n_highs = (sector_t *) dm_vcalloc(num + 1, sizeof(struct dm_target) +
180                                           sizeof(sector_t));
181         if (!n_highs)
182                 return -ENOMEM;
183
184         n_targets = (struct dm_target *) (n_highs + num);
185
186         if (n) {
187                 memcpy(n_highs, t->highs, sizeof(*n_highs) * n);
188                 memcpy(n_targets, t->targets, sizeof(*n_targets) * n);
189         }
190
191         memset(n_highs + n, -1, sizeof(*n_highs) * (num - n));
192         vfree(t->highs);
193
194         t->num_allocated = num;
195         t->highs = n_highs;
196         t->targets = n_targets;
197
198         return 0;
199 }
200
201 int dm_table_create(struct dm_table **result, fmode_t mode,
202                     unsigned num_targets, struct mapped_device *md)
203 {
204         struct dm_table *t = kzalloc(sizeof(*t), GFP_KERNEL);
205
206         if (!t)
207                 return -ENOMEM;
208
209         INIT_LIST_HEAD(&t->devices);
210         INIT_LIST_HEAD(&t->target_callbacks);
211         atomic_set(&t->holders, 0);
212
213         if (!num_targets)
214                 num_targets = KEYS_PER_NODE;
215
216         num_targets = dm_round_up(num_targets, KEYS_PER_NODE);
217
218         if (!num_targets) {
219                 kfree(t);
220                 return -ENOMEM;
221         }
222
223         if (alloc_targets(t, num_targets)) {
224                 kfree(t);
225                 t = NULL;
226                 return -ENOMEM;
227         }
228
229         t->mode = mode;
230         t->md = md;
231         *result = t;
232         return 0;
233 }
234
235 static void free_devices(struct list_head *devices)
236 {
237         struct list_head *tmp, *next;
238
239         list_for_each_safe(tmp, next, devices) {
240                 struct dm_dev_internal *dd =
241                     list_entry(tmp, struct dm_dev_internal, list);
242                 DMWARN("dm_table_destroy: dm_put_device call missing for %s",
243                        dd->dm_dev.name);
244                 kfree(dd);
245         }
246 }
247
248 void dm_table_destroy(struct dm_table *t)
249 {
250         unsigned int i;
251
252         if (!t)
253                 return;
254
255         while (atomic_read(&t->holders))
256                 msleep(1);
257         smp_mb();
258
259         /* free the indexes */
260         if (t->depth >= 2)
261                 vfree(t->index[t->depth - 2]);
262
263         /* free the targets */
264         for (i = 0; i < t->num_targets; i++) {
265                 struct dm_target *tgt = t->targets + i;
266
267                 if (tgt->type->dtr)
268                         tgt->type->dtr(tgt);
269
270                 dm_put_target_type(tgt->type);
271         }
272
273         vfree(t->highs);
274
275         /* free the device list */
276         if (t->devices.next != &t->devices)
277                 free_devices(&t->devices);
278
279         dm_free_md_mempools(t->mempools);
280
281         kfree(t);
282 }
283
284 void dm_table_get(struct dm_table *t)
285 {
286         atomic_inc(&t->holders);
287 }
288 EXPORT_SYMBOL(dm_table_get);
289
290 void dm_table_put(struct dm_table *t)
291 {
292         if (!t)
293                 return;
294
295         smp_mb__before_atomic_dec();
296         atomic_dec(&t->holders);
297 }
298 EXPORT_SYMBOL(dm_table_put);
299
300 /*
301  * Checks to see if we need to extend highs or targets.
302  */
303 static inline int check_space(struct dm_table *t)
304 {
305         if (t->num_targets >= t->num_allocated)
306                 return alloc_targets(t, t->num_allocated * 2);
307
308         return 0;
309 }
310
311 /*
312  * See if we've already got a device in the list.
313  */
314 static struct dm_dev_internal *find_device(struct list_head *l, dev_t dev)
315 {
316         struct dm_dev_internal *dd;
317
318         list_for_each_entry (dd, l, list)
319                 if (dd->dm_dev.bdev->bd_dev == dev)
320                         return dd;
321
322         return NULL;
323 }
324
325 /*
326  * Open a device so we can use it as a map destination.
327  */
328 static int open_dev(struct dm_dev_internal *d, dev_t dev,
329                     struct mapped_device *md)
330 {
331         static char *_claim_ptr = "I belong to device-mapper";
332         struct block_device *bdev;
333
334         int r;
335
336         BUG_ON(d->dm_dev.bdev);
337
338         bdev = blkdev_get_by_dev(dev, d->dm_dev.mode | FMODE_EXCL, _claim_ptr);
339         if (IS_ERR(bdev))
340                 return PTR_ERR(bdev);
341
342         r = bd_link_disk_holder(bdev, dm_disk(md));
343         if (r) {
344                 blkdev_put(bdev, d->dm_dev.mode | FMODE_EXCL);
345                 return r;
346         }
347
348         d->dm_dev.bdev = bdev;
349         return 0;
350 }
351
352 /*
353  * Close a device that we've been using.
354  */
355 static void close_dev(struct dm_dev_internal *d, struct mapped_device *md)
356 {
357         if (!d->dm_dev.bdev)
358                 return;
359
360         bd_unlink_disk_holder(d->dm_dev.bdev, dm_disk(md));
361         blkdev_put(d->dm_dev.bdev, d->dm_dev.mode | FMODE_EXCL);
362         d->dm_dev.bdev = NULL;
363 }
364
365 /*
366  * If possible, this checks an area of a destination device is invalid.
367  */
368 static int device_area_is_invalid(struct dm_target *ti, struct dm_dev *dev,
369                                   sector_t start, sector_t len, void *data)
370 {
371         struct request_queue *q;
372         struct queue_limits *limits = data;
373         struct block_device *bdev = dev->bdev;
374         sector_t dev_size =
375                 i_size_read(bdev->bd_inode) >> SECTOR_SHIFT;
376         unsigned short logical_block_size_sectors =
377                 limits->logical_block_size >> SECTOR_SHIFT;
378         char b[BDEVNAME_SIZE];
379
380         /*
381          * Some devices exist without request functions,
382          * such as loop devices not yet bound to backing files.
383          * Forbid the use of such devices.
384          */
385         q = bdev_get_queue(bdev);
386         if (!q || !q->make_request_fn) {
387                 DMWARN("%s: %s is not yet initialised: "
388                        "start=%llu, len=%llu, dev_size=%llu",
389                        dm_device_name(ti->table->md), bdevname(bdev, b),
390                        (unsigned long long)start,
391                        (unsigned long long)len,
392                        (unsigned long long)dev_size);
393                 return 1;
394         }
395
396         if (!dev_size)
397                 return 0;
398
399         if ((start >= dev_size) || (start + len > dev_size)) {
400                 DMWARN("%s: %s too small for target: "
401                        "start=%llu, len=%llu, dev_size=%llu",
402                        dm_device_name(ti->table->md), bdevname(bdev, b),
403                        (unsigned long long)start,
404                        (unsigned long long)len,
405                        (unsigned long long)dev_size);
406                 return 1;
407         }
408
409         if (logical_block_size_sectors <= 1)
410                 return 0;
411
412         if (start & (logical_block_size_sectors - 1)) {
413                 DMWARN("%s: start=%llu not aligned to h/w "
414                        "logical block size %u of %s",
415                        dm_device_name(ti->table->md),
416                        (unsigned long long)start,
417                        limits->logical_block_size, bdevname(bdev, b));
418                 return 1;
419         }
420
421         if (len & (logical_block_size_sectors - 1)) {
422                 DMWARN("%s: len=%llu not aligned to h/w "
423                        "logical block size %u of %s",
424                        dm_device_name(ti->table->md),
425                        (unsigned long long)len,
426                        limits->logical_block_size, bdevname(bdev, b));
427                 return 1;
428         }
429
430         return 0;
431 }
432
433 /*
434  * This upgrades the mode on an already open dm_dev, being
435  * careful to leave things as they were if we fail to reopen the
436  * device and not to touch the existing bdev field in case
437  * it is accessed concurrently inside dm_table_any_congested().
438  */
439 static int upgrade_mode(struct dm_dev_internal *dd, fmode_t new_mode,
440                         struct mapped_device *md)
441 {
442         int r;
443         struct dm_dev_internal dd_new, dd_old;
444
445         dd_new = dd_old = *dd;
446
447         dd_new.dm_dev.mode |= new_mode;
448         dd_new.dm_dev.bdev = NULL;
449
450         r = open_dev(&dd_new, dd->dm_dev.bdev->bd_dev, md);
451         if (r)
452                 return r;
453
454         dd->dm_dev.mode |= new_mode;
455         close_dev(&dd_old, md);
456
457         return 0;
458 }
459
460 /*
461  * Convert the path to a device
462  */
463 dev_t dm_get_dev_t(const char *path)
464 {
465         dev_t uninitialized_var(dev);
466         unsigned int major, minor;
467
468         if (sscanf(path, "%u:%u", &major, &minor) == 2) {
469                 /* Extract the major/minor numbers */
470                 dev = MKDEV(major, minor);
471                 if (MAJOR(dev) != major || MINOR(dev) != minor)
472                         return 0;
473         } else {
474                 /* convert the path to a device */
475                 struct block_device *bdev = lookup_bdev(path);
476
477                 if (IS_ERR(bdev))
478                         return 0;
479                 dev = bdev->bd_dev;
480                 bdput(bdev);
481         }
482
483         return dev;
484 }
485 EXPORT_SYMBOL_GPL(dm_get_dev_t);
486
487 /*
488  * Add a device to the list, or just increment the usage count if
489  * it's already present.
490  */
491 int dm_get_device(struct dm_target *ti, const char *path, fmode_t mode,
492                   struct dm_dev **result)
493 {
494         int r;
495         dev_t dev;
496         struct dm_dev_internal *dd;
497         struct dm_table *t = ti->table;
498
499         BUG_ON(!t);
500
501         dev = dm_get_dev_t(path);
502         if (!dev)
503                 return -ENODEV;
504
505         dd = find_device(&t->devices, dev);
506         if (!dd) {
507                 dd = kmalloc(sizeof(*dd), GFP_KERNEL);
508                 if (!dd)
509                         return -ENOMEM;
510
511                 dd->dm_dev.mode = mode;
512                 dd->dm_dev.bdev = NULL;
513
514                 if ((r = open_dev(dd, dev, t->md))) {
515                         kfree(dd);
516                         return r;
517                 }
518
519                 format_dev_t(dd->dm_dev.name, dev);
520
521                 atomic_set(&dd->count, 0);
522                 list_add(&dd->list, &t->devices);
523
524         } else if (dd->dm_dev.mode != (mode | dd->dm_dev.mode)) {
525                 r = upgrade_mode(dd, mode, t->md);
526                 if (r)
527                         return r;
528         }
529         atomic_inc(&dd->count);
530
531         *result = &dd->dm_dev;
532         return 0;
533 }
534 EXPORT_SYMBOL(dm_get_device);
535
536 int dm_set_device_limits(struct dm_target *ti, struct dm_dev *dev,
537                          sector_t start, sector_t len, void *data)
538 {
539         struct queue_limits *limits = data;
540         struct block_device *bdev = dev->bdev;
541         struct request_queue *q = bdev_get_queue(bdev);
542         char b[BDEVNAME_SIZE];
543
544         if (unlikely(!q)) {
545                 DMWARN("%s: Cannot set limits for nonexistent device %s",
546                        dm_device_name(ti->table->md), bdevname(bdev, b));
547                 return 0;
548         }
549
550         if (bdev_stack_limits(limits, bdev, start) < 0)
551                 DMWARN("%s: adding target device %s caused an alignment inconsistency: "
552                        "physical_block_size=%u, logical_block_size=%u, "
553                        "alignment_offset=%u, start=%llu",
554                        dm_device_name(ti->table->md), bdevname(bdev, b),
555                        q->limits.physical_block_size,
556                        q->limits.logical_block_size,
557                        q->limits.alignment_offset,
558                        (unsigned long long) start << SECTOR_SHIFT);
559
560         /*
561          * Check if merge fn is supported.
562          * If not we'll force DM to use PAGE_SIZE or
563          * smaller I/O, just to be safe.
564          */
565         if (dm_queue_merge_is_compulsory(q) && !ti->type->merge)
566                 blk_limits_max_hw_sectors(limits,
567                                           (unsigned int) (PAGE_SIZE >> 9));
568         return 0;
569 }
570 EXPORT_SYMBOL_GPL(dm_set_device_limits);
571
572 /*
573  * Decrement a device's use count and remove it if necessary.
574  */
575 void dm_put_device(struct dm_target *ti, struct dm_dev *d)
576 {
577         struct dm_dev_internal *dd = container_of(d, struct dm_dev_internal,
578                                                   dm_dev);
579
580         if (atomic_dec_and_test(&dd->count)) {
581                 close_dev(dd, ti->table->md);
582                 list_del(&dd->list);
583                 kfree(dd);
584         }
585 }
586 EXPORT_SYMBOL(dm_put_device);
587
588 /*
589  * Checks to see if the target joins onto the end of the table.
590  */
591 static int adjoin(struct dm_table *table, struct dm_target *ti)
592 {
593         struct dm_target *prev;
594
595         if (!table->num_targets)
596                 return !ti->begin;
597
598         prev = &table->targets[table->num_targets - 1];
599         return (ti->begin == (prev->begin + prev->len));
600 }
601
602 /*
603  * Used to dynamically allocate the arg array.
604  *
605  * We do first allocation with GFP_NOIO because dm-mpath and dm-thin must
606  * process messages even if some device is suspended. These messages have a
607  * small fixed number of arguments.
608  *
609  * On the other hand, dm-switch needs to process bulk data using messages and
610  * excessive use of GFP_NOIO could cause trouble.
611  */
612 static char **realloc_argv(unsigned *array_size, char **old_argv)
613 {
614         char **argv;
615         unsigned new_size;
616         gfp_t gfp;
617
618         if (*array_size) {
619                 new_size = *array_size * 2;
620                 gfp = GFP_KERNEL;
621         } else {
622                 new_size = 8;
623                 gfp = GFP_NOIO;
624         }
625         argv = kmalloc(new_size * sizeof(*argv), gfp);
626         if (argv) {
627                 memcpy(argv, old_argv, *array_size * sizeof(*argv));
628                 *array_size = new_size;
629         }
630
631         kfree(old_argv);
632         return argv;
633 }
634
635 /*
636  * Destructively splits up the argument list to pass to ctr.
637  */
638 int dm_split_args(int *argc, char ***argvp, char *input)
639 {
640         char *start, *end = input, *out, **argv = NULL;
641         unsigned array_size = 0;
642
643         *argc = 0;
644
645         if (!input) {
646                 *argvp = NULL;
647                 return 0;
648         }
649
650         argv = realloc_argv(&array_size, argv);
651         if (!argv)
652                 return -ENOMEM;
653
654         while (1) {
655                 /* Skip whitespace */
656                 start = skip_spaces(end);
657
658                 if (!*start)
659                         break;  /* success, we hit the end */
660
661                 /* 'out' is used to remove any back-quotes */
662                 end = out = start;
663                 while (*end) {
664                         /* Everything apart from '\0' can be quoted */
665                         if (*end == '\\' && *(end + 1)) {
666                                 *out++ = *(end + 1);
667                                 end += 2;
668                                 continue;
669                         }
670
671                         if (isspace(*end))
672                                 break;  /* end of token */
673
674                         *out++ = *end++;
675                 }
676
677                 /* have we already filled the array ? */
678                 if ((*argc + 1) > array_size) {
679                         argv = realloc_argv(&array_size, argv);
680                         if (!argv)
681                                 return -ENOMEM;
682                 }
683
684                 /* we know this is whitespace */
685                 if (*end)
686                         end++;
687
688                 /* terminate the string and put it in the array */
689                 *out = '\0';
690                 argv[*argc] = start;
691                 (*argc)++;
692         }
693
694         *argvp = argv;
695         return 0;
696 }
697
698 /*
699  * Impose necessary and sufficient conditions on a devices's table such
700  * that any incoming bio which respects its logical_block_size can be
701  * processed successfully.  If it falls across the boundary between
702  * two or more targets, the size of each piece it gets split into must
703  * be compatible with the logical_block_size of the target processing it.
704  */
705 static int validate_hardware_logical_block_alignment(struct dm_table *table,
706                                                  struct queue_limits *limits)
707 {
708         /*
709          * This function uses arithmetic modulo the logical_block_size
710          * (in units of 512-byte sectors).
711          */
712         unsigned short device_logical_block_size_sects =
713                 limits->logical_block_size >> SECTOR_SHIFT;
714
715         /*
716          * Offset of the start of the next table entry, mod logical_block_size.
717          */
718         unsigned short next_target_start = 0;
719
720         /*
721          * Given an aligned bio that extends beyond the end of a
722          * target, how many sectors must the next target handle?
723          */
724         unsigned short remaining = 0;
725
726         struct dm_target *uninitialized_var(ti);
727         struct queue_limits ti_limits;
728         unsigned i = 0;
729
730         /*
731          * Check each entry in the table in turn.
732          */
733         while (i < dm_table_get_num_targets(table)) {
734                 ti = dm_table_get_target(table, i++);
735
736                 blk_set_default_limits(&ti_limits);
737
738                 /* combine all target devices' limits */
739                 if (ti->type->iterate_devices)
740                         ti->type->iterate_devices(ti, dm_set_device_limits,
741                                                   &ti_limits);
742
743                 /*
744                  * If the remaining sectors fall entirely within this
745                  * table entry are they compatible with its logical_block_size?
746                  */
747                 if (remaining < ti->len &&
748                     remaining & ((ti_limits.logical_block_size >>
749                                   SECTOR_SHIFT) - 1))
750                         break;  /* Error */
751
752                 next_target_start =
753                     (unsigned short) ((next_target_start + ti->len) &
754                                       (device_logical_block_size_sects - 1));
755                 remaining = next_target_start ?
756                     device_logical_block_size_sects - next_target_start : 0;
757         }
758
759         if (remaining) {
760                 DMWARN("%s: table line %u (start sect %llu len %llu) "
761                        "not aligned to h/w logical block size %u",
762                        dm_device_name(table->md), i,
763                        (unsigned long long) ti->begin,
764                        (unsigned long long) ti->len,
765                        limits->logical_block_size);
766                 return -EINVAL;
767         }
768
769         return 0;
770 }
771
772 int dm_table_add_target(struct dm_table *t, const char *type,
773                         sector_t start, sector_t len, char *params)
774 {
775         int r = -EINVAL, argc;
776         char **argv;
777         struct dm_target *tgt;
778
779         if (t->singleton) {
780                 DMERR("%s: target type %s must appear alone in table",
781                       dm_device_name(t->md), t->targets->type->name);
782                 return -EINVAL;
783         }
784
785         if ((r = check_space(t)))
786                 return r;
787
788         tgt = t->targets + t->num_targets;
789         memset(tgt, 0, sizeof(*tgt));
790
791         if (!len) {
792                 DMERR("%s: zero-length target", dm_device_name(t->md));
793                 return -EINVAL;
794         }
795
796         tgt->type = dm_get_target_type(type);
797         if (!tgt->type) {
798                 DMERR("%s: %s: unknown target type", dm_device_name(t->md), type);
799                 return -EINVAL;
800         }
801
802         if (dm_target_needs_singleton(tgt->type)) {
803                 if (t->num_targets) {
804                         tgt->error = "singleton target type must appear alone in table";
805                         goto bad;
806                 }
807                 t->singleton = 1;
808         }
809
810         if (dm_target_always_writeable(tgt->type) && !(t->mode & FMODE_WRITE)) {
811                 tgt->error = "target type may not be included in a read-only table";
812                 goto bad;
813         }
814
815         if (t->immutable_target_type) {
816                 if (t->immutable_target_type != tgt->type) {
817                         tgt->error = "immutable target type cannot be mixed with other target types";
818                         goto bad;
819                 }
820         } else if (dm_target_is_immutable(tgt->type)) {
821                 if (t->num_targets) {
822                         tgt->error = "immutable target type cannot be mixed with other target types";
823                         goto bad;
824                 }
825                 t->immutable_target_type = tgt->type;
826         }
827
828         tgt->table = t;
829         tgt->begin = start;
830         tgt->len = len;
831         tgt->error = "Unknown error";
832
833         /*
834          * Does this target adjoin the previous one ?
835          */
836         if (!adjoin(t, tgt)) {
837                 tgt->error = "Gap in table";
838                 goto bad;
839         }
840
841         r = dm_split_args(&argc, &argv, params);
842         if (r) {
843                 tgt->error = "couldn't split parameters (insufficient memory)";
844                 goto bad;
845         }
846
847         r = tgt->type->ctr(tgt, argc, argv);
848         kfree(argv);
849         if (r)
850                 goto bad;
851
852         t->highs[t->num_targets++] = tgt->begin + tgt->len - 1;
853
854         if (!tgt->num_discard_requests && tgt->discards_supported)
855                 DMWARN("%s: %s: ignoring discards_supported because num_discard_requests is zero.",
856                        dm_device_name(t->md), type);
857
858         return 0;
859
860  bad:
861         DMERR("%s: %s: %s", dm_device_name(t->md), type, tgt->error);
862         dm_put_target_type(tgt->type);
863         return r;
864 }
865
866 /*
867  * Target argument parsing helpers.
868  */
869 static int validate_next_arg(struct dm_arg *arg, struct dm_arg_set *arg_set,
870                              unsigned *value, char **error, unsigned grouped)
871 {
872         const char *arg_str = dm_shift_arg(arg_set);
873
874         if (!arg_str ||
875             (sscanf(arg_str, "%u", value) != 1) ||
876             (*value < arg->min) ||
877             (*value > arg->max) ||
878             (grouped && arg_set->argc < *value)) {
879                 *error = arg->error;
880                 return -EINVAL;
881         }
882
883         return 0;
884 }
885
886 int dm_read_arg(struct dm_arg *arg, struct dm_arg_set *arg_set,
887                 unsigned *value, char **error)
888 {
889         return validate_next_arg(arg, arg_set, value, error, 0);
890 }
891 EXPORT_SYMBOL(dm_read_arg);
892
893 int dm_read_arg_group(struct dm_arg *arg, struct dm_arg_set *arg_set,
894                       unsigned *value, char **error)
895 {
896         return validate_next_arg(arg, arg_set, value, error, 1);
897 }
898 EXPORT_SYMBOL(dm_read_arg_group);
899
900 const char *dm_shift_arg(struct dm_arg_set *as)
901 {
902         char *r;
903
904         if (as->argc) {
905                 as->argc--;
906                 r = *as->argv;
907                 as->argv++;
908                 return r;
909         }
910
911         return NULL;
912 }
913 EXPORT_SYMBOL(dm_shift_arg);
914
915 void dm_consume_args(struct dm_arg_set *as, unsigned num_args)
916 {
917         BUG_ON(as->argc < num_args);
918         as->argc -= num_args;
919         as->argv += num_args;
920 }
921 EXPORT_SYMBOL(dm_consume_args);
922
923 static int dm_table_set_type(struct dm_table *t)
924 {
925         unsigned i;
926         unsigned bio_based = 0, request_based = 0;
927         struct dm_target *tgt;
928         struct dm_dev_internal *dd;
929         struct list_head *devices;
930
931         for (i = 0; i < t->num_targets; i++) {
932                 tgt = t->targets + i;
933                 if (dm_target_request_based(tgt))
934                         request_based = 1;
935                 else
936                         bio_based = 1;
937
938                 if (bio_based && request_based) {
939                         DMWARN("Inconsistent table: different target types"
940                                " can't be mixed up");
941                         return -EINVAL;
942                 }
943         }
944
945         if (bio_based) {
946                 /* We must use this table as bio-based */
947                 t->type = DM_TYPE_BIO_BASED;
948                 return 0;
949         }
950
951         BUG_ON(!request_based); /* No targets in this table */
952
953         /* Non-request-stackable devices can't be used for request-based dm */
954         devices = dm_table_get_devices(t);
955         list_for_each_entry(dd, devices, list) {
956                 if (!blk_queue_stackable(bdev_get_queue(dd->dm_dev.bdev))) {
957                         DMWARN("table load rejected: including"
958                                " non-request-stackable devices");
959                         return -EINVAL;
960                 }
961         }
962
963         /*
964          * Request-based dm supports only tables that have a single target now.
965          * To support multiple targets, request splitting support is needed,
966          * and that needs lots of changes in the block-layer.
967          * (e.g. request completion process for partial completion.)
968          */
969         if (t->num_targets > 1) {
970                 DMWARN("Request-based dm doesn't support multiple targets yet");
971                 return -EINVAL;
972         }
973
974         t->type = DM_TYPE_REQUEST_BASED;
975
976         return 0;
977 }
978
979 unsigned dm_table_get_type(struct dm_table *t)
980 {
981         return t->type;
982 }
983
984 struct target_type *dm_table_get_immutable_target_type(struct dm_table *t)
985 {
986         return t->immutable_target_type;
987 }
988
989 bool dm_table_request_based(struct dm_table *t)
990 {
991         return dm_table_get_type(t) == DM_TYPE_REQUEST_BASED;
992 }
993
994 int dm_table_alloc_md_mempools(struct dm_table *t)
995 {
996         unsigned type = dm_table_get_type(t);
997
998         if (unlikely(type == DM_TYPE_NONE)) {
999                 DMWARN("no table type is set, can't allocate mempools");
1000                 return -EINVAL;
1001         }
1002
1003         t->mempools = dm_alloc_md_mempools(type, t->integrity_supported);
1004         if (!t->mempools)
1005                 return -ENOMEM;
1006
1007         return 0;
1008 }
1009
1010 void dm_table_free_md_mempools(struct dm_table *t)
1011 {
1012         dm_free_md_mempools(t->mempools);
1013         t->mempools = NULL;
1014 }
1015
1016 struct dm_md_mempools *dm_table_get_md_mempools(struct dm_table *t)
1017 {
1018         return t->mempools;
1019 }
1020
1021 static int setup_indexes(struct dm_table *t)
1022 {
1023         int i;
1024         unsigned int total = 0;
1025         sector_t *indexes;
1026
1027         /* allocate the space for *all* the indexes */
1028         for (i = t->depth - 2; i >= 0; i--) {
1029                 t->counts[i] = dm_div_up(t->counts[i + 1], CHILDREN_PER_NODE);
1030                 total += t->counts[i];
1031         }
1032
1033         indexes = (sector_t *) dm_vcalloc(total, (unsigned long) NODE_SIZE);
1034         if (!indexes)
1035                 return -ENOMEM;
1036
1037         /* set up internal nodes, bottom-up */
1038         for (i = t->depth - 2; i >= 0; i--) {
1039                 t->index[i] = indexes;
1040                 indexes += (KEYS_PER_NODE * t->counts[i]);
1041                 setup_btree_index(i, t);
1042         }
1043
1044         return 0;
1045 }
1046
1047 /*
1048  * Builds the btree to index the map.
1049  */
1050 static int dm_table_build_index(struct dm_table *t)
1051 {
1052         int r = 0;
1053         unsigned int leaf_nodes;
1054
1055         /* how many indexes will the btree have ? */
1056         leaf_nodes = dm_div_up(t->num_targets, KEYS_PER_NODE);
1057         t->depth = 1 + int_log(leaf_nodes, CHILDREN_PER_NODE);
1058
1059         /* leaf layer has already been set up */
1060         t->counts[t->depth - 1] = leaf_nodes;
1061         t->index[t->depth - 1] = t->highs;
1062
1063         if (t->depth >= 2)
1064                 r = setup_indexes(t);
1065
1066         return r;
1067 }
1068
1069 /*
1070  * Get a disk whose integrity profile reflects the table's profile.
1071  * If %match_all is true, all devices' profiles must match.
1072  * If %match_all is false, all devices must at least have an
1073  * allocated integrity profile; but uninitialized is ok.
1074  * Returns NULL if integrity support was inconsistent or unavailable.
1075  */
1076 static struct gendisk * dm_table_get_integrity_disk(struct dm_table *t,
1077                                                     bool match_all)
1078 {
1079         struct list_head *devices = dm_table_get_devices(t);
1080         struct dm_dev_internal *dd = NULL;
1081         struct gendisk *prev_disk = NULL, *template_disk = NULL;
1082
1083         list_for_each_entry(dd, devices, list) {
1084                 template_disk = dd->dm_dev.bdev->bd_disk;
1085                 if (!blk_get_integrity(template_disk))
1086                         goto no_integrity;
1087                 if (!match_all && !blk_integrity_is_initialized(template_disk))
1088                         continue; /* skip uninitialized profiles */
1089                 else if (prev_disk &&
1090                          blk_integrity_compare(prev_disk, template_disk) < 0)
1091                         goto no_integrity;
1092                 prev_disk = template_disk;
1093         }
1094
1095         return template_disk;
1096
1097 no_integrity:
1098         if (prev_disk)
1099                 DMWARN("%s: integrity not set: %s and %s profile mismatch",
1100                        dm_device_name(t->md),
1101                        prev_disk->disk_name,
1102                        template_disk->disk_name);
1103         return NULL;
1104 }
1105
1106 /*
1107  * Register the mapped device for blk_integrity support if
1108  * the underlying devices have an integrity profile.  But all devices
1109  * may not have matching profiles (checking all devices isn't reliable
1110  * during table load because this table may use other DM device(s) which
1111  * must be resumed before they will have an initialized integity profile).
1112  * Stacked DM devices force a 2 stage integrity profile validation:
1113  * 1 - during load, validate all initialized integrity profiles match
1114  * 2 - during resume, validate all integrity profiles match
1115  */
1116 static int dm_table_prealloc_integrity(struct dm_table *t, struct mapped_device *md)
1117 {
1118         struct gendisk *template_disk = NULL;
1119
1120         template_disk = dm_table_get_integrity_disk(t, false);
1121         if (!template_disk)
1122                 return 0;
1123
1124         if (!blk_integrity_is_initialized(dm_disk(md))) {
1125                 t->integrity_supported = 1;
1126                 return blk_integrity_register(dm_disk(md), NULL);
1127         }
1128
1129         /*
1130          * If DM device already has an initalized integrity
1131          * profile the new profile should not conflict.
1132          */
1133         if (blk_integrity_is_initialized(template_disk) &&
1134             blk_integrity_compare(dm_disk(md), template_disk) < 0) {
1135                 DMWARN("%s: conflict with existing integrity profile: "
1136                        "%s profile mismatch",
1137                        dm_device_name(t->md),
1138                        template_disk->disk_name);
1139                 return 1;
1140         }
1141
1142         /* Preserve existing initialized integrity profile */
1143         t->integrity_supported = 1;
1144         return 0;
1145 }
1146
1147 /*
1148  * Prepares the table for use by building the indices,
1149  * setting the type, and allocating mempools.
1150  */
1151 int dm_table_complete(struct dm_table *t)
1152 {
1153         int r;
1154
1155         r = dm_table_set_type(t);
1156         if (r) {
1157                 DMERR("unable to set table type");
1158                 return r;
1159         }
1160
1161         r = dm_table_build_index(t);
1162         if (r) {
1163                 DMERR("unable to build btrees");
1164                 return r;
1165         }
1166
1167         r = dm_table_prealloc_integrity(t, t->md);
1168         if (r) {
1169                 DMERR("could not register integrity profile.");
1170                 return r;
1171         }
1172
1173         r = dm_table_alloc_md_mempools(t);
1174         if (r)
1175                 DMERR("unable to allocate mempools");
1176
1177         return r;
1178 }
1179
1180 static DEFINE_MUTEX(_event_lock);
1181 void dm_table_event_callback(struct dm_table *t,
1182                              void (*fn)(void *), void *context)
1183 {
1184         mutex_lock(&_event_lock);
1185         t->event_fn = fn;
1186         t->event_context = context;
1187         mutex_unlock(&_event_lock);
1188 }
1189
1190 void dm_table_event(struct dm_table *t)
1191 {
1192         /*
1193          * You can no longer call dm_table_event() from interrupt
1194          * context, use a bottom half instead.
1195          */
1196         BUG_ON(in_interrupt());
1197
1198         mutex_lock(&_event_lock);
1199         if (t->event_fn)
1200                 t->event_fn(t->event_context);
1201         mutex_unlock(&_event_lock);
1202 }
1203 EXPORT_SYMBOL(dm_table_event);
1204
1205 sector_t dm_table_get_size(struct dm_table *t)
1206 {
1207         return t->num_targets ? (t->highs[t->num_targets - 1] + 1) : 0;
1208 }
1209 EXPORT_SYMBOL(dm_table_get_size);
1210
1211 struct dm_target *dm_table_get_target(struct dm_table *t, unsigned int index)
1212 {
1213         if (index >= t->num_targets)
1214                 return NULL;
1215
1216         return t->targets + index;
1217 }
1218
1219 /*
1220  * Search the btree for the correct target.
1221  *
1222  * Caller should check returned pointer with dm_target_is_valid()
1223  * to trap I/O beyond end of device.
1224  */
1225 struct dm_target *dm_table_find_target(struct dm_table *t, sector_t sector)
1226 {
1227         unsigned int l, n = 0, k = 0;
1228         sector_t *node;
1229
1230         for (l = 0; l < t->depth; l++) {
1231                 n = get_child(n, k);
1232                 node = get_node(t, l, n);
1233
1234                 for (k = 0; k < KEYS_PER_NODE; k++)
1235                         if (node[k] >= sector)
1236                                 break;
1237         }
1238
1239         return &t->targets[(KEYS_PER_NODE * n) + k];
1240 }
1241
1242 /*
1243  * Establish the new table's queue_limits and validate them.
1244  */
1245 int dm_calculate_queue_limits(struct dm_table *table,
1246                               struct queue_limits *limits)
1247 {
1248         struct dm_target *uninitialized_var(ti);
1249         struct queue_limits ti_limits;
1250         unsigned i = 0;
1251
1252         blk_set_default_limits(limits);
1253
1254         while (i < dm_table_get_num_targets(table)) {
1255                 blk_set_default_limits(&ti_limits);
1256
1257                 ti = dm_table_get_target(table, i++);
1258
1259                 if (!ti->type->iterate_devices)
1260                         goto combine_limits;
1261
1262                 /*
1263                  * Combine queue limits of all the devices this target uses.
1264                  */
1265                 ti->type->iterate_devices(ti, dm_set_device_limits,
1266                                           &ti_limits);
1267
1268                 /* Set I/O hints portion of queue limits */
1269                 if (ti->type->io_hints)
1270                         ti->type->io_hints(ti, &ti_limits);
1271
1272                 /*
1273                  * Check each device area is consistent with the target's
1274                  * overall queue limits.
1275                  */
1276                 if (ti->type->iterate_devices(ti, device_area_is_invalid,
1277                                               &ti_limits))
1278                         return -EINVAL;
1279
1280 combine_limits:
1281                 /*
1282                  * Merge this target's queue limits into the overall limits
1283                  * for the table.
1284                  */
1285                 if (blk_stack_limits(limits, &ti_limits, 0) < 0)
1286                         DMWARN("%s: adding target device "
1287                                "(start sect %llu len %llu) "
1288                                "caused an alignment inconsistency",
1289                                dm_device_name(table->md),
1290                                (unsigned long long) ti->begin,
1291                                (unsigned long long) ti->len);
1292         }
1293
1294         return validate_hardware_logical_block_alignment(table, limits);
1295 }
1296
1297 /*
1298  * Set the integrity profile for this device if all devices used have
1299  * matching profiles.  We're quite deep in the resume path but still
1300  * don't know if all devices (particularly DM devices this device
1301  * may be stacked on) have matching profiles.  Even if the profiles
1302  * don't match we have no way to fail (to resume) at this point.
1303  */
1304 static void dm_table_set_integrity(struct dm_table *t)
1305 {
1306         struct gendisk *template_disk = NULL;
1307
1308         if (!blk_get_integrity(dm_disk(t->md)))
1309                 return;
1310
1311         template_disk = dm_table_get_integrity_disk(t, true);
1312         if (template_disk)
1313                 blk_integrity_register(dm_disk(t->md),
1314                                        blk_get_integrity(template_disk));
1315         else if (blk_integrity_is_initialized(dm_disk(t->md)))
1316                 DMWARN("%s: device no longer has a valid integrity profile",
1317                        dm_device_name(t->md));
1318         else
1319                 DMWARN("%s: unable to establish an integrity profile",
1320                        dm_device_name(t->md));
1321 }
1322
1323 static int device_flush_capable(struct dm_target *ti, struct dm_dev *dev,
1324                                 sector_t start, sector_t len, void *data)
1325 {
1326         unsigned flush = (*(unsigned *)data);
1327         struct request_queue *q = bdev_get_queue(dev->bdev);
1328
1329         return q && (q->flush_flags & flush);
1330 }
1331
1332 static bool dm_table_supports_flush(struct dm_table *t, unsigned flush)
1333 {
1334         struct dm_target *ti;
1335         unsigned i = 0;
1336
1337         /*
1338          * Require at least one underlying device to support flushes.
1339          * t->devices includes internal dm devices such as mirror logs
1340          * so we need to use iterate_devices here, which targets
1341          * supporting flushes must provide.
1342          */
1343         while (i < dm_table_get_num_targets(t)) {
1344                 ti = dm_table_get_target(t, i++);
1345
1346                 if (!ti->num_flush_requests)
1347                         continue;
1348
1349                 if (ti->type->iterate_devices &&
1350                     ti->type->iterate_devices(ti, device_flush_capable, &flush))
1351                         return 1;
1352         }
1353
1354         return 0;
1355 }
1356
1357 static bool dm_table_discard_zeroes_data(struct dm_table *t)
1358 {
1359         struct dm_target *ti;
1360         unsigned i = 0;
1361
1362         /* Ensure that all targets supports discard_zeroes_data. */
1363         while (i < dm_table_get_num_targets(t)) {
1364                 ti = dm_table_get_target(t, i++);
1365
1366                 if (ti->discard_zeroes_data_unsupported)
1367                         return 0;
1368         }
1369
1370         return 1;
1371 }
1372
1373 static int device_is_nonrot(struct dm_target *ti, struct dm_dev *dev,
1374                             sector_t start, sector_t len, void *data)
1375 {
1376         struct request_queue *q = bdev_get_queue(dev->bdev);
1377
1378         return q && blk_queue_nonrot(q);
1379 }
1380
1381 static int device_is_not_random(struct dm_target *ti, struct dm_dev *dev,
1382                              sector_t start, sector_t len, void *data)
1383 {
1384         struct request_queue *q = bdev_get_queue(dev->bdev);
1385
1386         return q && !blk_queue_add_random(q);
1387 }
1388
1389 static bool dm_table_all_devices_attribute(struct dm_table *t,
1390                                            iterate_devices_callout_fn func)
1391 {
1392         struct dm_target *ti;
1393         unsigned i = 0;
1394
1395         while (i < dm_table_get_num_targets(t)) {
1396                 ti = dm_table_get_target(t, i++);
1397
1398                 if (!ti->type->iterate_devices ||
1399                     !ti->type->iterate_devices(ti, func, NULL))
1400                         return 0;
1401         }
1402
1403         return 1;
1404 }
1405
1406 void dm_table_set_restrictions(struct dm_table *t, struct request_queue *q,
1407                                struct queue_limits *limits)
1408 {
1409         unsigned flush = 0;
1410
1411         /*
1412          * Copy table's limits to the DM device's request_queue
1413          */
1414         q->limits = *limits;
1415
1416         if (!dm_table_supports_discards(t))
1417                 queue_flag_clear_unlocked(QUEUE_FLAG_DISCARD, q);
1418         else
1419                 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, q);
1420
1421         if (dm_table_supports_flush(t, REQ_FLUSH)) {
1422                 flush |= REQ_FLUSH;
1423                 if (dm_table_supports_flush(t, REQ_FUA))
1424                         flush |= REQ_FUA;
1425         }
1426         blk_queue_flush(q, flush);
1427
1428         if (!dm_table_discard_zeroes_data(t))
1429                 q->limits.discard_zeroes_data = 0;
1430
1431         /* Ensure that all underlying devices are non-rotational. */
1432         if (dm_table_all_devices_attribute(t, device_is_nonrot))
1433                 queue_flag_set_unlocked(QUEUE_FLAG_NONROT, q);
1434         else
1435                 queue_flag_clear_unlocked(QUEUE_FLAG_NONROT, q);
1436
1437         dm_table_set_integrity(t);
1438
1439         /*
1440          * Determine whether or not this queue's I/O timings contribute
1441          * to the entropy pool, Only request-based targets use this.
1442          * Clear QUEUE_FLAG_ADD_RANDOM if any underlying device does not
1443          * have it set.
1444          */
1445         if (blk_queue_add_random(q) && dm_table_all_devices_attribute(t, device_is_not_random))
1446                 queue_flag_clear_unlocked(QUEUE_FLAG_ADD_RANDOM, q);
1447
1448         /*
1449          * QUEUE_FLAG_STACKABLE must be set after all queue settings are
1450          * visible to other CPUs because, once the flag is set, incoming bios
1451          * are processed by request-based dm, which refers to the queue
1452          * settings.
1453          * Until the flag set, bios are passed to bio-based dm and queued to
1454          * md->deferred where queue settings are not needed yet.
1455          * Those bios are passed to request-based dm at the resume time.
1456          */
1457         smp_mb();
1458         if (dm_table_request_based(t))
1459                 queue_flag_set_unlocked(QUEUE_FLAG_STACKABLE, q);
1460 }
1461
1462 unsigned int dm_table_get_num_targets(struct dm_table *t)
1463 {
1464         return t->num_targets;
1465 }
1466
1467 struct list_head *dm_table_get_devices(struct dm_table *t)
1468 {
1469         return &t->devices;
1470 }
1471
1472 fmode_t dm_table_get_mode(struct dm_table *t)
1473 {
1474         return t->mode;
1475 }
1476 EXPORT_SYMBOL(dm_table_get_mode);
1477
1478 static void suspend_targets(struct dm_table *t, unsigned postsuspend)
1479 {
1480         int i = t->num_targets;
1481         struct dm_target *ti = t->targets;
1482
1483         while (i--) {
1484                 if (postsuspend) {
1485                         if (ti->type->postsuspend)
1486                                 ti->type->postsuspend(ti);
1487                 } else if (ti->type->presuspend)
1488                         ti->type->presuspend(ti);
1489
1490                 ti++;
1491         }
1492 }
1493
1494 void dm_table_presuspend_targets(struct dm_table *t)
1495 {
1496         if (!t)
1497                 return;
1498
1499         suspend_targets(t, 0);
1500 }
1501
1502 void dm_table_postsuspend_targets(struct dm_table *t)
1503 {
1504         if (!t)
1505                 return;
1506
1507         suspend_targets(t, 1);
1508 }
1509
1510 int dm_table_resume_targets(struct dm_table *t)
1511 {
1512         int i, r = 0;
1513
1514         for (i = 0; i < t->num_targets; i++) {
1515                 struct dm_target *ti = t->targets + i;
1516
1517                 if (!ti->type->preresume)
1518                         continue;
1519
1520                 r = ti->type->preresume(ti);
1521                 if (r)
1522                         return r;
1523         }
1524
1525         for (i = 0; i < t->num_targets; i++) {
1526                 struct dm_target *ti = t->targets + i;
1527
1528                 if (ti->type->resume)
1529                         ti->type->resume(ti);
1530         }
1531
1532         return 0;
1533 }
1534
1535 void dm_table_add_target_callbacks(struct dm_table *t, struct dm_target_callbacks *cb)
1536 {
1537         list_add(&cb->list, &t->target_callbacks);
1538 }
1539 EXPORT_SYMBOL_GPL(dm_table_add_target_callbacks);
1540
1541 int dm_table_any_congested(struct dm_table *t, int bdi_bits)
1542 {
1543         struct dm_dev_internal *dd;
1544         struct list_head *devices = dm_table_get_devices(t);
1545         struct dm_target_callbacks *cb;
1546         int r = 0;
1547
1548         list_for_each_entry(dd, devices, list) {
1549                 struct request_queue *q = bdev_get_queue(dd->dm_dev.bdev);
1550                 char b[BDEVNAME_SIZE];
1551
1552                 if (likely(q))
1553                         r |= bdi_congested(&q->backing_dev_info, bdi_bits);
1554                 else
1555                         DMWARN_LIMIT("%s: any_congested: nonexistent device %s",
1556                                      dm_device_name(t->md),
1557                                      bdevname(dd->dm_dev.bdev, b));
1558         }
1559
1560         list_for_each_entry(cb, &t->target_callbacks, list)
1561                 if (cb->congested_fn)
1562                         r |= cb->congested_fn(cb, bdi_bits);
1563
1564         return r;
1565 }
1566
1567 int dm_table_any_busy_target(struct dm_table *t)
1568 {
1569         unsigned i;
1570         struct dm_target *ti;
1571
1572         for (i = 0; i < t->num_targets; i++) {
1573                 ti = t->targets + i;
1574                 if (ti->type->busy && ti->type->busy(ti))
1575                         return 1;
1576         }
1577
1578         return 0;
1579 }
1580
1581 struct mapped_device *dm_table_get_md(struct dm_table *t)
1582 {
1583         return t->md;
1584 }
1585 EXPORT_SYMBOL(dm_table_get_md);
1586
1587 static int device_discard_capable(struct dm_target *ti, struct dm_dev *dev,
1588                                   sector_t start, sector_t len, void *data)
1589 {
1590         struct request_queue *q = bdev_get_queue(dev->bdev);
1591
1592         return q && blk_queue_discard(q);
1593 }
1594
1595 bool dm_table_supports_discards(struct dm_table *t)
1596 {
1597         struct dm_target *ti;
1598         unsigned i = 0;
1599
1600         /*
1601          * Unless any target used by the table set discards_supported,
1602          * require at least one underlying device to support discards.
1603          * t->devices includes internal dm devices such as mirror logs
1604          * so we need to use iterate_devices here, which targets
1605          * supporting discard selectively must provide.
1606          */
1607         while (i < dm_table_get_num_targets(t)) {
1608                 ti = dm_table_get_target(t, i++);
1609
1610                 if (!ti->num_discard_requests)
1611                         continue;
1612
1613                 if (ti->discards_supported)
1614                         return 1;
1615
1616                 if (ti->type->iterate_devices &&
1617                     ti->type->iterate_devices(ti, device_discard_capable, NULL))
1618                         return 1;
1619         }
1620
1621         return 0;
1622 }