Revert "Merge remote branch 'linux-2.6.32.y/master' into develop"
[firefly-linux-kernel-4.4.55.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/slab.h>
16 #include <linux/interrupt.h>
17 #include <linux/mutex.h>
18 #include <linux/delay.h>
19 #include <asm/atomic.h>
20
21 #define DM_MSG_PREFIX "table"
22
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
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
41 struct dm_table {
42         struct mapped_device *md;
43         atomic_t holders;
44         unsigned type;
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          */
61         fmode_t mode;
62
63         /* a list of devices used by this table */
64         struct list_head devices;
65
66         /* events get handed up using this callback */
67         void (*event_fn)(void *);
68         void *event_context;
69
70         struct dm_md_mempools *mempools;
71 };
72
73 /*
74  * Similar to ceiling(log_size(n))
75  */
76 static 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
88 /*
89  * Calculate the index of the child node of the n'th node k'th key.
90  */
91 static 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  */
99 static 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  */
109 static 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  */
124 static 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
139 void *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  */
162 static 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.
170          * Append an empty entry to catch sectors beyond the end of
171          * the device.
172          */
173         n_highs = (sector_t *) dm_vcalloc(num + 1, sizeof(struct dm_target) +
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
195 int dm_table_create(struct dm_table **result, fmode_t mode,
196                     unsigned num_targets, struct mapped_device *md)
197 {
198         struct dm_table *t = kzalloc(sizeof(*t), GFP_KERNEL);
199
200         if (!t)
201                 return -ENOMEM;
202
203         INIT_LIST_HEAD(&t->devices);
204         atomic_set(&t->holders, 0);
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;
218         t->md = md;
219         *result = t;
220         return 0;
221 }
222
223 static void free_devices(struct list_head *devices)
224 {
225         struct list_head *tmp, *next;
226
227         list_for_each_safe(tmp, next, devices) {
228                 struct dm_dev_internal *dd =
229                     list_entry(tmp, struct dm_dev_internal, list);
230                 DMWARN("dm_table_destroy: dm_put_device call missing for %s",
231                        dd->dm_dev.name);
232                 kfree(dd);
233         }
234 }
235
236 void dm_table_destroy(struct dm_table *t)
237 {
238         unsigned int i;
239
240         while (atomic_read(&t->holders))
241                 msleep(1);
242         smp_mb();
243
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 */
261         if (t->devices.next != &t->devices)
262                 free_devices(&t->devices);
263
264         dm_free_md_mempools(t->mempools);
265
266         kfree(t);
267 }
268
269 void dm_table_get(struct dm_table *t)
270 {
271         atomic_inc(&t->holders);
272 }
273
274 void dm_table_put(struct dm_table *t)
275 {
276         if (!t)
277                 return;
278
279         smp_mb__before_atomic_dec();
280         atomic_dec(&t->holders);
281 }
282
283 /*
284  * Checks to see if we need to extend highs or targets.
285  */
286 static 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
294 /*
295  * See if we've already got a device in the list.
296  */
297 static struct dm_dev_internal *find_device(struct list_head *l, dev_t dev)
298 {
299         struct dm_dev_internal *dd;
300
301         list_for_each_entry (dd, l, list)
302                 if (dd->dm_dev.bdev->bd_dev == dev)
303                         return dd;
304
305         return NULL;
306 }
307
308 /*
309  * Open a device so we can use it as a map destination.
310  */
311 static int open_dev(struct dm_dev_internal *d, dev_t dev,
312                     struct mapped_device *md)
313 {
314         static char *_claim_ptr = "I belong to device-mapper";
315         struct block_device *bdev;
316
317         int r;
318
319         BUG_ON(d->dm_dev.bdev);
320
321         bdev = open_by_devnum(dev, d->dm_dev.mode);
322         if (IS_ERR(bdev))
323                 return PTR_ERR(bdev);
324         r = bd_claim_by_disk(bdev, _claim_ptr, dm_disk(md));
325         if (r)
326                 blkdev_put(bdev, d->dm_dev.mode);
327         else
328                 d->dm_dev.bdev = bdev;
329         return r;
330 }
331
332 /*
333  * Close a device that we've been using.
334  */
335 static void close_dev(struct dm_dev_internal *d, struct mapped_device *md)
336 {
337         if (!d->dm_dev.bdev)
338                 return;
339
340         bd_release_from_disk(d->dm_dev.bdev, dm_disk(md));
341         blkdev_put(d->dm_dev.bdev, d->dm_dev.mode);
342         d->dm_dev.bdev = NULL;
343 }
344
345 /*
346  * If possible, this checks an area of a destination device is invalid.
347  */
348 static int device_area_is_invalid(struct dm_target *ti, struct dm_dev *dev,
349                                   sector_t start, sector_t len, void *data)
350 {
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;
355         unsigned short logical_block_size_sectors =
356                 limits->logical_block_size >> SECTOR_SHIFT;
357         char b[BDEVNAME_SIZE];
358
359         if (!dev_size)
360                 return 0;
361
362         if ((start >= dev_size) || (start + len > dev_size)) {
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);
369                 return 1;
370         }
371
372         if (logical_block_size_sectors <= 1)
373                 return 0;
374
375         if (start & (logical_block_size_sectors - 1)) {
376                 DMWARN("%s: start=%llu not aligned to h/w "
377                        "logical block size %u of %s",
378                        dm_device_name(ti->table->md),
379                        (unsigned long long)start,
380                        limits->logical_block_size, bdevname(bdev, b));
381                 return 1;
382         }
383
384         if (len & (logical_block_size_sectors - 1)) {
385                 DMWARN("%s: len=%llu not aligned to h/w "
386                        "logical block size %u of %s",
387                        dm_device_name(ti->table->md),
388                        (unsigned long long)len,
389                        limits->logical_block_size, bdevname(bdev, b));
390                 return 1;
391         }
392
393         return 0;
394 }
395
396 /*
397  * This upgrades the mode on an already open dm_dev, being
398  * careful to leave things as they were if we fail to reopen the
399  * device and not to touch the existing bdev field in case
400  * it is accessed concurrently inside dm_table_any_congested().
401  */
402 static int upgrade_mode(struct dm_dev_internal *dd, fmode_t new_mode,
403                         struct mapped_device *md)
404 {
405         int r;
406         struct dm_dev_internal dd_new, dd_old;
407
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;
416
417         dd->dm_dev.mode |= new_mode;
418         close_dev(&dd_old, md);
419
420         return 0;
421 }
422
423 /*
424  * Add a device to the list, or just increment the usage count if
425  * it's already present.
426  */
427 static int __table_get_device(struct dm_table *t, struct dm_target *ti,
428                               const char *path, sector_t start, sector_t len,
429                               fmode_t mode, struct dm_dev **result)
430 {
431         int r;
432         dev_t uninitialized_var(dev);
433         struct dm_dev_internal *dd;
434         unsigned int major, minor;
435
436         BUG_ON(!t);
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 */
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);
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
459                 dd->dm_dev.mode = mode;
460                 dd->dm_dev.bdev = NULL;
461
462                 if ((r = open_dev(dd, dev, t->md))) {
463                         kfree(dd);
464                         return r;
465                 }
466
467                 format_dev_t(dd->dm_dev.name, dev);
468
469                 atomic_set(&dd->count, 0);
470                 list_add(&dd->list, &t->devices);
471
472         } else if (dd->dm_dev.mode != (mode | dd->dm_dev.mode)) {
473                 r = upgrade_mode(dd, mode, t->md);
474                 if (r)
475                         return r;
476         }
477         atomic_inc(&dd->count);
478
479         *result = &dd->dm_dev;
480         return 0;
481 }
482
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
488 int dm_set_device_limits(struct dm_target *ti, struct dm_dev *dev,
489                          sector_t start, sector_t len, void *data)
490 {
491         struct queue_limits *limits = data;
492         struct block_device *bdev = dev->bdev;
493         struct request_queue *q = bdev_get_queue(bdev);
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));
499                 return 0;
500         }
501
502         if (bdev_stack_limits(limits, bdev, start) < 0)
503                 DMWARN("%s: adding target device %s caused an alignment inconsistency: "
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 << SECTOR_SHIFT);
511
512         /*
513          * Check if merge fn is supported.
514          * If not we'll force DM to use PAGE_SIZE or
515          * smaller I/O, just to be safe.
516          */
517
518         if (q->merge_bvec_fn && !ti->type->merge)
519                 limits->max_sectors =
520                         min_not_zero(limits->max_sectors,
521                                      (unsigned int) (PAGE_SIZE >> 9));
522         return 0;
523 }
524 EXPORT_SYMBOL_GPL(dm_set_device_limits);
525
526 int dm_get_device(struct dm_target *ti, const char *path, sector_t start,
527                   sector_t len, fmode_t mode, struct dm_dev **result)
528 {
529         return __table_get_device(ti->table, ti, path,
530                                   start, len, mode, result);
531 }
532
533
534 /*
535  * Decrement a devices use count and remove it if necessary.
536  */
537 void dm_put_device(struct dm_target *ti, struct dm_dev *d)
538 {
539         struct dm_dev_internal *dd = container_of(d, struct dm_dev_internal,
540                                                   dm_dev);
541
542         if (atomic_dec_and_test(&dd->count)) {
543                 close_dev(dd, ti->table->md);
544                 list_del(&dd->list);
545                 kfree(dd);
546         }
547 }
548
549 /*
550  * Checks to see if the target joins onto the end of the table.
551  */
552 static int adjoin(struct dm_table *table, struct dm_target *ti)
553 {
554         struct dm_target *prev;
555
556         if (!table->num_targets)
557                 return !ti->begin;
558
559         prev = &table->targets[table->num_targets - 1];
560         return (ti->begin == (prev->begin + prev->len));
561 }
562
563 /*
564  * Used to dynamically allocate the arg array.
565  */
566 static char **realloc_argv(unsigned *array_size, char **old_argv)
567 {
568         char **argv;
569         unsigned new_size;
570
571         new_size = *array_size ? *array_size * 2 : 64;
572         argv = kmalloc(new_size * sizeof(*argv), GFP_KERNEL);
573         if (argv) {
574                 memcpy(argv, old_argv, *array_size * sizeof(*argv));
575                 *array_size = new_size;
576         }
577
578         kfree(old_argv);
579         return argv;
580 }
581
582 /*
583  * Destructively splits up the argument list to pass to ctr.
584  */
585 int dm_split_args(int *argc, char ***argvp, char *input)
586 {
587         char *start, *end = input, *out, **argv = NULL;
588         unsigned array_size = 0;
589
590         *argc = 0;
591
592         if (!input) {
593                 *argvp = NULL;
594                 return 0;
595         }
596
597         argv = realloc_argv(&array_size, argv);
598         if (!argv)
599                 return -ENOMEM;
600
601         while (1) {
602                 start = end;
603
604                 /* Skip whitespace */
605                 while (*start && isspace(*start))
606                         start++;
607
608                 if (!*start)
609                         break;  /* success, we hit the end */
610
611                 /* 'out' is used to remove any back-quotes */
612                 end = out = start;
613                 while (*end) {
614                         /* Everything apart from '\0' can be quoted */
615                         if (*end == '\\' && *(end + 1)) {
616                                 *out++ = *(end + 1);
617                                 end += 2;
618                                 continue;
619                         }
620
621                         if (isspace(*end))
622                                 break;  /* end of token */
623
624                         *out++ = *end++;
625                 }
626
627                 /* have we already filled the array ? */
628                 if ((*argc + 1) > array_size) {
629                         argv = realloc_argv(&array_size, argv);
630                         if (!argv)
631                                 return -ENOMEM;
632                 }
633
634                 /* we know this is whitespace */
635                 if (*end)
636                         end++;
637
638                 /* terminate the string and put it in the array */
639                 *out = '\0';
640                 argv[*argc] = start;
641                 (*argc)++;
642         }
643
644         *argvp = argv;
645         return 0;
646 }
647
648 /*
649  * Impose necessary and sufficient conditions on a devices's table such
650  * that any incoming bio which respects its logical_block_size can be
651  * processed successfully.  If it falls across the boundary between
652  * two or more targets, the size of each piece it gets split into must
653  * be compatible with the logical_block_size of the target processing it.
654  */
655 static int validate_hardware_logical_block_alignment(struct dm_table *table,
656                                                  struct queue_limits *limits)
657 {
658         /*
659          * This function uses arithmetic modulo the logical_block_size
660          * (in units of 512-byte sectors).
661          */
662         unsigned short device_logical_block_size_sects =
663                 limits->logical_block_size >> SECTOR_SHIFT;
664
665         /*
666          * Offset of the start of the next table entry, mod logical_block_size.
667          */
668         unsigned short next_target_start = 0;
669
670         /*
671          * Given an aligned bio that extends beyond the end of a
672          * target, how many sectors must the next target handle?
673          */
674         unsigned short remaining = 0;
675
676         struct dm_target *uninitialized_var(ti);
677         struct queue_limits ti_limits;
678         unsigned i = 0;
679
680         /*
681          * Check each entry in the table in turn.
682          */
683         while (i < dm_table_get_num_targets(table)) {
684                 ti = dm_table_get_target(table, i++);
685
686                 blk_set_default_limits(&ti_limits);
687
688                 /* combine all target devices' limits */
689                 if (ti->type->iterate_devices)
690                         ti->type->iterate_devices(ti, dm_set_device_limits,
691                                                   &ti_limits);
692
693                 /*
694                  * If the remaining sectors fall entirely within this
695                  * table entry are they compatible with its logical_block_size?
696                  */
697                 if (remaining < ti->len &&
698                     remaining & ((ti_limits.logical_block_size >>
699                                   SECTOR_SHIFT) - 1))
700                         break;  /* Error */
701
702                 next_target_start =
703                     (unsigned short) ((next_target_start + ti->len) &
704                                       (device_logical_block_size_sects - 1));
705                 remaining = next_target_start ?
706                     device_logical_block_size_sects - next_target_start : 0;
707         }
708
709         if (remaining) {
710                 DMWARN("%s: table line %u (start sect %llu len %llu) "
711                        "not aligned to h/w logical block size %u",
712                        dm_device_name(table->md), i,
713                        (unsigned long long) ti->begin,
714                        (unsigned long long) ti->len,
715                        limits->logical_block_size);
716                 return -EINVAL;
717         }
718
719         return 0;
720 }
721
722 int dm_table_add_target(struct dm_table *t, const char *type,
723                         sector_t start, sector_t len, char *params)
724 {
725         int r = -EINVAL, argc;
726         char **argv;
727         struct dm_target *tgt;
728
729         if ((r = check_space(t)))
730                 return r;
731
732         tgt = t->targets + t->num_targets;
733         memset(tgt, 0, sizeof(*tgt));
734
735         if (!len) {
736                 DMERR("%s: zero-length target", dm_device_name(t->md));
737                 return -EINVAL;
738         }
739
740         tgt->type = dm_get_target_type(type);
741         if (!tgt->type) {
742                 DMERR("%s: %s: unknown target type", dm_device_name(t->md),
743                       type);
744                 return -EINVAL;
745         }
746
747         tgt->table = t;
748         tgt->begin = start;
749         tgt->len = len;
750         tgt->error = "Unknown error";
751
752         /*
753          * Does this target adjoin the previous one ?
754          */
755         if (!adjoin(t, tgt)) {
756                 tgt->error = "Gap in table";
757                 r = -EINVAL;
758                 goto bad;
759         }
760
761         r = dm_split_args(&argc, &argv, params);
762         if (r) {
763                 tgt->error = "couldn't split parameters (insufficient memory)";
764                 goto bad;
765         }
766
767         r = tgt->type->ctr(tgt, argc, argv);
768         kfree(argv);
769         if (r)
770                 goto bad;
771
772         t->highs[t->num_targets++] = tgt->begin + tgt->len - 1;
773
774         return 0;
775
776  bad:
777         DMERR("%s: %s: %s", dm_device_name(t->md), type, tgt->error);
778         dm_put_target_type(tgt->type);
779         return r;
780 }
781
782 int dm_table_set_type(struct dm_table *t)
783 {
784         unsigned i;
785         unsigned bio_based = 0, request_based = 0;
786         struct dm_target *tgt;
787         struct dm_dev_internal *dd;
788         struct list_head *devices;
789
790         for (i = 0; i < t->num_targets; i++) {
791                 tgt = t->targets + i;
792                 if (dm_target_request_based(tgt))
793                         request_based = 1;
794                 else
795                         bio_based = 1;
796
797                 if (bio_based && request_based) {
798                         DMWARN("Inconsistent table: different target types"
799                                " can't be mixed up");
800                         return -EINVAL;
801                 }
802         }
803
804         if (bio_based) {
805                 /* We must use this table as bio-based */
806                 t->type = DM_TYPE_BIO_BASED;
807                 return 0;
808         }
809
810         BUG_ON(!request_based); /* No targets in this table */
811
812         /* Non-request-stackable devices can't be used for request-based dm */
813         devices = dm_table_get_devices(t);
814         list_for_each_entry(dd, devices, list) {
815                 if (!blk_queue_stackable(bdev_get_queue(dd->dm_dev.bdev))) {
816                         DMWARN("table load rejected: including"
817                                " non-request-stackable devices");
818                         return -EINVAL;
819                 }
820         }
821
822         /*
823          * Request-based dm supports only tables that have a single target now.
824          * To support multiple targets, request splitting support is needed,
825          * and that needs lots of changes in the block-layer.
826          * (e.g. request completion process for partial completion.)
827          */
828         if (t->num_targets > 1) {
829                 DMWARN("Request-based dm doesn't support multiple targets yet");
830                 return -EINVAL;
831         }
832
833         t->type = DM_TYPE_REQUEST_BASED;
834
835         return 0;
836 }
837
838 unsigned dm_table_get_type(struct dm_table *t)
839 {
840         return t->type;
841 }
842
843 bool dm_table_request_based(struct dm_table *t)
844 {
845         return dm_table_get_type(t) == DM_TYPE_REQUEST_BASED;
846 }
847
848 int dm_table_alloc_md_mempools(struct dm_table *t)
849 {
850         unsigned type = dm_table_get_type(t);
851
852         if (unlikely(type == DM_TYPE_NONE)) {
853                 DMWARN("no table type is set, can't allocate mempools");
854                 return -EINVAL;
855         }
856
857         t->mempools = dm_alloc_md_mempools(type);
858         if (!t->mempools)
859                 return -ENOMEM;
860
861         return 0;
862 }
863
864 void dm_table_free_md_mempools(struct dm_table *t)
865 {
866         dm_free_md_mempools(t->mempools);
867         t->mempools = NULL;
868 }
869
870 struct dm_md_mempools *dm_table_get_md_mempools(struct dm_table *t)
871 {
872         return t->mempools;
873 }
874
875 static int setup_indexes(struct dm_table *t)
876 {
877         int i;
878         unsigned int total = 0;
879         sector_t *indexes;
880
881         /* allocate the space for *all* the indexes */
882         for (i = t->depth - 2; i >= 0; i--) {
883                 t->counts[i] = dm_div_up(t->counts[i + 1], CHILDREN_PER_NODE);
884                 total += t->counts[i];
885         }
886
887         indexes = (sector_t *) dm_vcalloc(total, (unsigned long) NODE_SIZE);
888         if (!indexes)
889                 return -ENOMEM;
890
891         /* set up internal nodes, bottom-up */
892         for (i = t->depth - 2; i >= 0; i--) {
893                 t->index[i] = indexes;
894                 indexes += (KEYS_PER_NODE * t->counts[i]);
895                 setup_btree_index(i, t);
896         }
897
898         return 0;
899 }
900
901 /*
902  * Builds the btree to index the map.
903  */
904 int dm_table_complete(struct dm_table *t)
905 {
906         int r = 0;
907         unsigned int leaf_nodes;
908
909         /* how many indexes will the btree have ? */
910         leaf_nodes = dm_div_up(t->num_targets, KEYS_PER_NODE);
911         t->depth = 1 + int_log(leaf_nodes, CHILDREN_PER_NODE);
912
913         /* leaf layer has already been set up */
914         t->counts[t->depth - 1] = leaf_nodes;
915         t->index[t->depth - 1] = t->highs;
916
917         if (t->depth >= 2)
918                 r = setup_indexes(t);
919
920         return r;
921 }
922
923 static DEFINE_MUTEX(_event_lock);
924 void dm_table_event_callback(struct dm_table *t,
925                              void (*fn)(void *), void *context)
926 {
927         mutex_lock(&_event_lock);
928         t->event_fn = fn;
929         t->event_context = context;
930         mutex_unlock(&_event_lock);
931 }
932
933 void dm_table_event(struct dm_table *t)
934 {
935         /*
936          * You can no longer call dm_table_event() from interrupt
937          * context, use a bottom half instead.
938          */
939         BUG_ON(in_interrupt());
940
941         mutex_lock(&_event_lock);
942         if (t->event_fn)
943                 t->event_fn(t->event_context);
944         mutex_unlock(&_event_lock);
945 }
946
947 sector_t dm_table_get_size(struct dm_table *t)
948 {
949         return t->num_targets ? (t->highs[t->num_targets - 1] + 1) : 0;
950 }
951
952 struct dm_target *dm_table_get_target(struct dm_table *t, unsigned int index)
953 {
954         if (index >= t->num_targets)
955                 return NULL;
956
957         return t->targets + index;
958 }
959
960 /*
961  * Search the btree for the correct target.
962  *
963  * Caller should check returned pointer with dm_target_is_valid()
964  * to trap I/O beyond end of device.
965  */
966 struct dm_target *dm_table_find_target(struct dm_table *t, sector_t sector)
967 {
968         unsigned int l, n = 0, k = 0;
969         sector_t *node;
970
971         for (l = 0; l < t->depth; l++) {
972                 n = get_child(n, k);
973                 node = get_node(t, l, n);
974
975                 for (k = 0; k < KEYS_PER_NODE; k++)
976                         if (node[k] >= sector)
977                                 break;
978         }
979
980         return &t->targets[(KEYS_PER_NODE * n) + k];
981 }
982
983 /*
984  * Establish the new table's queue_limits and validate them.
985  */
986 int dm_calculate_queue_limits(struct dm_table *table,
987                               struct queue_limits *limits)
988 {
989         struct dm_target *uninitialized_var(ti);
990         struct queue_limits ti_limits;
991         unsigned i = 0;
992
993         blk_set_default_limits(limits);
994
995         while (i < dm_table_get_num_targets(table)) {
996                 blk_set_default_limits(&ti_limits);
997
998                 ti = dm_table_get_target(table, i++);
999
1000                 if (!ti->type->iterate_devices)
1001                         goto combine_limits;
1002
1003                 /*
1004                  * Combine queue limits of all the devices this target uses.
1005                  */
1006                 ti->type->iterate_devices(ti, dm_set_device_limits,
1007                                           &ti_limits);
1008
1009                 /* Set I/O hints portion of queue limits */
1010                 if (ti->type->io_hints)
1011                         ti->type->io_hints(ti, &ti_limits);
1012
1013                 /*
1014                  * Check each device area is consistent with the target's
1015                  * overall queue limits.
1016                  */
1017                 if (ti->type->iterate_devices(ti, device_area_is_invalid,
1018                                               &ti_limits))
1019                         return -EINVAL;
1020
1021 combine_limits:
1022                 /*
1023                  * Merge this target's queue limits into the overall limits
1024                  * for the table.
1025                  */
1026                 if (blk_stack_limits(limits, &ti_limits, 0) < 0)
1027                         DMWARN("%s: adding target device "
1028                                "(start sect %llu len %llu) "
1029                                "caused an alignment inconsistency",
1030                                dm_device_name(table->md),
1031                                (unsigned long long) ti->begin,
1032                                (unsigned long long) ti->len);
1033         }
1034
1035         return validate_hardware_logical_block_alignment(table, limits);
1036 }
1037
1038 /*
1039  * Set the integrity profile for this device if all devices used have
1040  * matching profiles.
1041  */
1042 static void dm_table_set_integrity(struct dm_table *t)
1043 {
1044         struct list_head *devices = dm_table_get_devices(t);
1045         struct dm_dev_internal *prev = NULL, *dd = NULL;
1046
1047         if (!blk_get_integrity(dm_disk(t->md)))
1048                 return;
1049
1050         list_for_each_entry(dd, devices, list) {
1051                 if (prev &&
1052                     blk_integrity_compare(prev->dm_dev.bdev->bd_disk,
1053                                           dd->dm_dev.bdev->bd_disk) < 0) {
1054                         DMWARN("%s: integrity not set: %s and %s mismatch",
1055                                dm_device_name(t->md),
1056                                prev->dm_dev.bdev->bd_disk->disk_name,
1057                                dd->dm_dev.bdev->bd_disk->disk_name);
1058                         goto no_integrity;
1059                 }
1060                 prev = dd;
1061         }
1062
1063         if (!prev || !bdev_get_integrity(prev->dm_dev.bdev))
1064                 goto no_integrity;
1065
1066         blk_integrity_register(dm_disk(t->md),
1067                                bdev_get_integrity(prev->dm_dev.bdev));
1068
1069         return;
1070
1071 no_integrity:
1072         blk_integrity_register(dm_disk(t->md), NULL);
1073
1074         return;
1075 }
1076
1077 void dm_table_set_restrictions(struct dm_table *t, struct request_queue *q,
1078                                struct queue_limits *limits)
1079 {
1080         /*
1081          * Copy table's limits to the DM device's request_queue
1082          */
1083         q->limits = *limits;
1084
1085         if (limits->no_cluster)
1086                 queue_flag_clear_unlocked(QUEUE_FLAG_CLUSTER, q);
1087         else
1088                 queue_flag_set_unlocked(QUEUE_FLAG_CLUSTER, q);
1089
1090         dm_table_set_integrity(t);
1091
1092         /*
1093          * QUEUE_FLAG_STACKABLE must be set after all queue settings are
1094          * visible to other CPUs because, once the flag is set, incoming bios
1095          * are processed by request-based dm, which refers to the queue
1096          * settings.
1097          * Until the flag set, bios are passed to bio-based dm and queued to
1098          * md->deferred where queue settings are not needed yet.
1099          * Those bios are passed to request-based dm at the resume time.
1100          */
1101         smp_mb();
1102         if (dm_table_request_based(t))
1103                 queue_flag_set_unlocked(QUEUE_FLAG_STACKABLE, q);
1104 }
1105
1106 unsigned int dm_table_get_num_targets(struct dm_table *t)
1107 {
1108         return t->num_targets;
1109 }
1110
1111 struct list_head *dm_table_get_devices(struct dm_table *t)
1112 {
1113         return &t->devices;
1114 }
1115
1116 fmode_t dm_table_get_mode(struct dm_table *t)
1117 {
1118         return t->mode;
1119 }
1120
1121 static void suspend_targets(struct dm_table *t, unsigned postsuspend)
1122 {
1123         int i = t->num_targets;
1124         struct dm_target *ti = t->targets;
1125
1126         while (i--) {
1127                 if (postsuspend) {
1128                         if (ti->type->postsuspend)
1129                                 ti->type->postsuspend(ti);
1130                 } else if (ti->type->presuspend)
1131                         ti->type->presuspend(ti);
1132
1133                 ti++;
1134         }
1135 }
1136
1137 void dm_table_presuspend_targets(struct dm_table *t)
1138 {
1139         if (!t)
1140                 return;
1141
1142         suspend_targets(t, 0);
1143 }
1144
1145 void dm_table_postsuspend_targets(struct dm_table *t)
1146 {
1147         if (!t)
1148                 return;
1149
1150         suspend_targets(t, 1);
1151 }
1152
1153 int dm_table_resume_targets(struct dm_table *t)
1154 {
1155         int i, r = 0;
1156
1157         for (i = 0; i < t->num_targets; i++) {
1158                 struct dm_target *ti = t->targets + i;
1159
1160                 if (!ti->type->preresume)
1161                         continue;
1162
1163                 r = ti->type->preresume(ti);
1164                 if (r)
1165                         return r;
1166         }
1167
1168         for (i = 0; i < t->num_targets; i++) {
1169                 struct dm_target *ti = t->targets + i;
1170
1171                 if (ti->type->resume)
1172                         ti->type->resume(ti);
1173         }
1174
1175         return 0;
1176 }
1177
1178 int dm_table_any_congested(struct dm_table *t, int bdi_bits)
1179 {
1180         struct dm_dev_internal *dd;
1181         struct list_head *devices = dm_table_get_devices(t);
1182         int r = 0;
1183
1184         list_for_each_entry(dd, devices, list) {
1185                 struct request_queue *q = bdev_get_queue(dd->dm_dev.bdev);
1186                 char b[BDEVNAME_SIZE];
1187
1188                 if (likely(q))
1189                         r |= bdi_congested(&q->backing_dev_info, bdi_bits);
1190                 else
1191                         DMWARN_LIMIT("%s: any_congested: nonexistent device %s",
1192                                      dm_device_name(t->md),
1193                                      bdevname(dd->dm_dev.bdev, b));
1194         }
1195
1196         return r;
1197 }
1198
1199 int dm_table_any_busy_target(struct dm_table *t)
1200 {
1201         unsigned i;
1202         struct dm_target *ti;
1203
1204         for (i = 0; i < t->num_targets; i++) {
1205                 ti = t->targets + i;
1206                 if (ti->type->busy && ti->type->busy(ti))
1207                         return 1;
1208         }
1209
1210         return 0;
1211 }
1212
1213 void dm_table_unplug_all(struct dm_table *t)
1214 {
1215         struct dm_dev_internal *dd;
1216         struct list_head *devices = dm_table_get_devices(t);
1217
1218         list_for_each_entry(dd, devices, list) {
1219                 struct request_queue *q = bdev_get_queue(dd->dm_dev.bdev);
1220                 char b[BDEVNAME_SIZE];
1221
1222                 if (likely(q))
1223                         blk_unplug(q);
1224                 else
1225                         DMWARN_LIMIT("%s: Cannot unplug nonexistent device %s",
1226                                      dm_device_name(t->md),
1227                                      bdevname(dd->dm_dev.bdev, b));
1228         }
1229 }
1230
1231 struct mapped_device *dm_table_get_md(struct dm_table *t)
1232 {
1233         dm_get(t->md);
1234
1235         return t->md;
1236 }
1237
1238 EXPORT_SYMBOL(dm_vcalloc);
1239 EXPORT_SYMBOL(dm_get_device);
1240 EXPORT_SYMBOL(dm_put_device);
1241 EXPORT_SYMBOL(dm_table_event);
1242 EXPORT_SYMBOL(dm_table_get_size);
1243 EXPORT_SYMBOL(dm_table_get_mode);
1244 EXPORT_SYMBOL(dm_table_get_md);
1245 EXPORT_SYMBOL(dm_table_put);
1246 EXPORT_SYMBOL(dm_table_get);
1247 EXPORT_SYMBOL(dm_table_unplug_all);