blob: dffa0ac7c4f0e135ec410bcc0e30dff9a443a78d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2001 Sistina Software (UK) Limited.
Mikulas Patockad5816872009-01-06 03:05:10 +00003 * Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * This file is released under the GPL.
6 */
7
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>
André Goddard Rosae7d28602009-12-14 18:01:06 -080015#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/slab.h>
17#include <linux/interrupt.h>
Arjan van de Ven48c9c272006-03-27 01:18:20 -080018#include <linux/mutex.h>
Mikulas Patockad5816872009-01-06 03:05:10 +000019#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <asm/atomic.h>
21
Alasdair G Kergon72d94862006-06-26 00:27:35 -070022#define DM_MSG_PREFIX "table"
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#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
Mikulas Patockad5816872009-01-06 03:05:10 +000029/*
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070042struct dm_table {
Mike Anderson1134e5a2006-03-27 01:17:54 -080043 struct mapped_device *md;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 atomic_t holders;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +010045 unsigned type;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
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
Mike Snitzer5ae89a82010-08-12 04:14:08 +010057 unsigned discards_supported:1;
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 /*
60 * Indicates the rw permissions for the new logical
61 * device. This should be a combination of FMODE_READ
62 * and FMODE_WRITE.
63 */
Al Viroaeb5d722008-09-02 15:28:45 -040064 fmode_t mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66 /* a list of devices used by this table */
67 struct list_head devices;
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 /* events get handed up using this callback */
70 void (*event_fn)(void *);
71 void *event_context;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +010072
73 struct dm_md_mempools *mempools;
NeilBrown9d357b02011-01-13 20:00:01 +000074
75 struct list_head target_callbacks;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076};
77
78/*
79 * Similar to ceiling(log_size(n))
80 */
81static unsigned int int_log(unsigned int n, unsigned int base)
82{
83 int result = 0;
84
85 while (n > 1) {
86 n = dm_div_up(n, base);
87 result++;
88 }
89
90 return result;
91}
92
93/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 * Calculate the index of the child node of the n'th node k'th key.
95 */
96static inline unsigned int get_child(unsigned int n, unsigned int k)
97{
98 return (n * CHILDREN_PER_NODE) + k;
99}
100
101/*
102 * Return the n'th node of level l from table t.
103 */
104static inline sector_t *get_node(struct dm_table *t,
105 unsigned int l, unsigned int n)
106{
107 return t->index[l] + (n * KEYS_PER_NODE);
108}
109
110/*
111 * Return the highest key that you could lookup from the n'th
112 * node on level l of the btree.
113 */
114static sector_t high(struct dm_table *t, unsigned int l, unsigned int n)
115{
116 for (; l < t->depth - 1; l++)
117 n = get_child(n, CHILDREN_PER_NODE - 1);
118
119 if (n >= t->counts[l])
120 return (sector_t) - 1;
121
122 return get_node(t, l, n)[KEYS_PER_NODE - 1];
123}
124
125/*
126 * Fills in a level of the btree based on the highs of the level
127 * below it.
128 */
129static int setup_btree_index(unsigned int l, struct dm_table *t)
130{
131 unsigned int n, k;
132 sector_t *node;
133
134 for (n = 0U; n < t->counts[l]; n++) {
135 node = get_node(t, l, n);
136
137 for (k = 0U; k < KEYS_PER_NODE; k++)
138 node[k] = high(t, l + 1, get_child(n, k));
139 }
140
141 return 0;
142}
143
144void *dm_vcalloc(unsigned long nmemb, unsigned long elem_size)
145{
146 unsigned long size;
147 void *addr;
148
149 /*
150 * Check that we're not going to overflow.
151 */
152 if (nmemb > (ULONG_MAX / elem_size))
153 return NULL;
154
155 size = nmemb * elem_size;
156 addr = vmalloc(size);
157 if (addr)
158 memset(addr, 0, size);
159
160 return addr;
161}
162
163/*
164 * highs, and targets are managed as dynamic arrays during a
165 * table load.
166 */
167static int alloc_targets(struct dm_table *t, unsigned int num)
168{
169 sector_t *n_highs;
170 struct dm_target *n_targets;
171 int n = t->num_targets;
172
173 /*
174 * Allocate both the target array and offset array at once.
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000175 * Append an empty entry to catch sectors beyond the end of
176 * the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 */
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000178 n_highs = (sector_t *) dm_vcalloc(num + 1, sizeof(struct dm_target) +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 sizeof(sector_t));
180 if (!n_highs)
181 return -ENOMEM;
182
183 n_targets = (struct dm_target *) (n_highs + num);
184
185 if (n) {
186 memcpy(n_highs, t->highs, sizeof(*n_highs) * n);
187 memcpy(n_targets, t->targets, sizeof(*n_targets) * n);
188 }
189
190 memset(n_highs + n, -1, sizeof(*n_highs) * (num - n));
191 vfree(t->highs);
192
193 t->num_allocated = num;
194 t->highs = n_highs;
195 t->targets = n_targets;
196
197 return 0;
198}
199
Al Viroaeb5d722008-09-02 15:28:45 -0400200int dm_table_create(struct dm_table **result, fmode_t mode,
Mike Anderson1134e5a2006-03-27 01:17:54 -0800201 unsigned num_targets, struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
Dmitry Monakhov094262d2007-10-19 22:38:51 +0100203 struct dm_table *t = kzalloc(sizeof(*t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
205 if (!t)
206 return -ENOMEM;
207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 INIT_LIST_HEAD(&t->devices);
NeilBrown9d357b02011-01-13 20:00:01 +0000209 INIT_LIST_HEAD(&t->target_callbacks);
Mikulas Patockad5816872009-01-06 03:05:10 +0000210 atomic_set(&t->holders, 0);
Mike Snitzer5ae89a82010-08-12 04:14:08 +0100211 t->discards_supported = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
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 (alloc_targets(t, num_targets)) {
219 kfree(t);
220 t = NULL;
221 return -ENOMEM;
222 }
223
224 t->mode = mode;
Mike Anderson1134e5a2006-03-27 01:17:54 -0800225 t->md = md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 *result = t;
227 return 0;
228}
229
230static void free_devices(struct list_head *devices)
231{
232 struct list_head *tmp, *next;
233
Paul Jimenezafb24522008-02-08 02:09:59 +0000234 list_for_each_safe(tmp, next, devices) {
Mikulas Patocka82b15192008-10-10 13:37:09 +0100235 struct dm_dev_internal *dd =
236 list_entry(tmp, struct dm_dev_internal, list);
Jonthan Brassow1b6da752009-06-22 10:12:29 +0100237 DMWARN("dm_table_destroy: dm_put_device call missing for %s",
238 dd->dm_dev.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 kfree(dd);
240 }
241}
242
Mikulas Patockad5816872009-01-06 03:05:10 +0000243void dm_table_destroy(struct dm_table *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
245 unsigned int i;
246
Alasdair G Kergona7940152009-12-10 23:52:23 +0000247 if (!t)
248 return;
249
Mikulas Patockad5816872009-01-06 03:05:10 +0000250 while (atomic_read(&t->holders))
251 msleep(1);
252 smp_mb();
253
Will Drewry26803b92010-08-12 04:14:03 +0100254 /* free the indexes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 if (t->depth >= 2)
256 vfree(t->index[t->depth - 2]);
257
258 /* free the targets */
259 for (i = 0; i < t->num_targets; i++) {
260 struct dm_target *tgt = t->targets + i;
261
262 if (tgt->type->dtr)
263 tgt->type->dtr(tgt);
264
265 dm_put_target_type(tgt->type);
266 }
267
268 vfree(t->highs);
269
270 /* free the device list */
Jonthan Brassow1b6da752009-06-22 10:12:29 +0100271 if (t->devices.next != &t->devices)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 free_devices(&t->devices);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +0100274 dm_free_md_mempools(t->mempools);
275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 kfree(t);
277}
278
279void dm_table_get(struct dm_table *t)
280{
281 atomic_inc(&t->holders);
282}
283
284void dm_table_put(struct dm_table *t)
285{
286 if (!t)
287 return;
288
Mikulas Patockad5816872009-01-06 03:05:10 +0000289 smp_mb__before_atomic_dec();
290 atomic_dec(&t->holders);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291}
292
293/*
294 * Checks to see if we need to extend highs or targets.
295 */
296static inline int check_space(struct dm_table *t)
297{
298 if (t->num_targets >= t->num_allocated)
299 return alloc_targets(t, t->num_allocated * 2);
300
301 return 0;
302}
303
304/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 * See if we've already got a device in the list.
306 */
Mikulas Patocka82b15192008-10-10 13:37:09 +0100307static struct dm_dev_internal *find_device(struct list_head *l, dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
Mikulas Patocka82b15192008-10-10 13:37:09 +0100309 struct dm_dev_internal *dd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
311 list_for_each_entry (dd, l, list)
Mikulas Patocka82b15192008-10-10 13:37:09 +0100312 if (dd->dm_dev.bdev->bd_dev == dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 return dd;
314
315 return NULL;
316}
317
318/*
319 * Open a device so we can use it as a map destination.
320 */
Mikulas Patocka82b15192008-10-10 13:37:09 +0100321static int open_dev(struct dm_dev_internal *d, dev_t dev,
322 struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323{
324 static char *_claim_ptr = "I belong to device-mapper";
325 struct block_device *bdev;
326
327 int r;
328
Mikulas Patocka82b15192008-10-10 13:37:09 +0100329 BUG_ON(d->dm_dev.bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Tejun Heod4d77622010-11-13 11:55:18 +0100331 bdev = blkdev_get_by_dev(dev, d->dm_dev.mode | FMODE_EXCL, _claim_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 if (IS_ERR(bdev))
333 return PTR_ERR(bdev);
Tejun Heoe09b4572010-11-13 11:55:17 +0100334
Tejun Heoe09b4572010-11-13 11:55:17 +0100335 r = bd_link_disk_holder(bdev, dm_disk(md));
336 if (r) {
Tejun Heoe525fd82010-11-13 11:55:17 +0100337 blkdev_put(bdev, d->dm_dev.mode | FMODE_EXCL);
Tejun Heoe09b4572010-11-13 11:55:17 +0100338 return r;
339 }
340
341 d->dm_dev.bdev = bdev;
342 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343}
344
345/*
346 * Close a device that we've been using.
347 */
Mikulas Patocka82b15192008-10-10 13:37:09 +0100348static void close_dev(struct dm_dev_internal *d, struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349{
Mikulas Patocka82b15192008-10-10 13:37:09 +0100350 if (!d->dm_dev.bdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 return;
352
Tejun Heoe525fd82010-11-13 11:55:17 +0100353 blkdev_put(d->dm_dev.bdev, d->dm_dev.mode | FMODE_EXCL);
Mikulas Patocka82b15192008-10-10 13:37:09 +0100354 d->dm_dev.bdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355}
356
357/*
Mikulas Patockaf6a1ed12009-09-04 20:40:22 +0100358 * If possible, this checks an area of a destination device is invalid.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 */
Mikulas Patockaf6a1ed12009-09-04 20:40:22 +0100360static int device_area_is_invalid(struct dm_target *ti, struct dm_dev *dev,
361 sector_t start, sector_t len, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362{
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100363 struct queue_limits *limits = data;
364 struct block_device *bdev = dev->bdev;
365 sector_t dev_size =
366 i_size_read(bdev->bd_inode) >> SECTOR_SHIFT;
Mike Snitzer02acc3a2009-06-22 10:12:30 +0100367 unsigned short logical_block_size_sectors =
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100368 limits->logical_block_size >> SECTOR_SHIFT;
Mike Snitzer02acc3a2009-06-22 10:12:30 +0100369 char b[BDEVNAME_SIZE];
Mike Anderson2cd54d92007-05-09 02:32:57 -0700370
371 if (!dev_size)
Mikulas Patockaf6a1ed12009-09-04 20:40:22 +0100372 return 0;
Mike Anderson2cd54d92007-05-09 02:32:57 -0700373
Mike Snitzer5dea2712009-07-23 20:30:42 +0100374 if ((start >= dev_size) || (start + len > dev_size)) {
Mike Snitzera963a952009-09-04 20:40:24 +0100375 DMWARN("%s: %s too small for target: "
376 "start=%llu, len=%llu, dev_size=%llu",
377 dm_device_name(ti->table->md), bdevname(bdev, b),
378 (unsigned long long)start,
379 (unsigned long long)len,
380 (unsigned long long)dev_size);
Mikulas Patockaf6a1ed12009-09-04 20:40:22 +0100381 return 1;
Mike Snitzer02acc3a2009-06-22 10:12:30 +0100382 }
383
384 if (logical_block_size_sectors <= 1)
Mikulas Patockaf6a1ed12009-09-04 20:40:22 +0100385 return 0;
Mike Snitzer02acc3a2009-06-22 10:12:30 +0100386
387 if (start & (logical_block_size_sectors - 1)) {
388 DMWARN("%s: start=%llu not aligned to h/w "
Mike Snitzera963a952009-09-04 20:40:24 +0100389 "logical block size %u of %s",
Mike Snitzer02acc3a2009-06-22 10:12:30 +0100390 dm_device_name(ti->table->md),
391 (unsigned long long)start,
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100392 limits->logical_block_size, bdevname(bdev, b));
Mikulas Patockaf6a1ed12009-09-04 20:40:22 +0100393 return 1;
Mike Snitzer02acc3a2009-06-22 10:12:30 +0100394 }
395
Mike Snitzer5dea2712009-07-23 20:30:42 +0100396 if (len & (logical_block_size_sectors - 1)) {
Mike Snitzer02acc3a2009-06-22 10:12:30 +0100397 DMWARN("%s: len=%llu not aligned to h/w "
Mike Snitzera963a952009-09-04 20:40:24 +0100398 "logical block size %u of %s",
Mike Snitzer02acc3a2009-06-22 10:12:30 +0100399 dm_device_name(ti->table->md),
Mike Snitzer5dea2712009-07-23 20:30:42 +0100400 (unsigned long long)len,
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100401 limits->logical_block_size, bdevname(bdev, b));
Mikulas Patockaf6a1ed12009-09-04 20:40:22 +0100402 return 1;
Mike Snitzer02acc3a2009-06-22 10:12:30 +0100403 }
404
Mikulas Patockaf6a1ed12009-09-04 20:40:22 +0100405 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406}
407
408/*
Alasdair G Kergon570b9d92009-04-02 19:55:28 +0100409 * This upgrades the mode on an already open dm_dev, being
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 * careful to leave things as they were if we fail to reopen the
Alasdair G Kergon570b9d92009-04-02 19:55:28 +0100411 * device and not to touch the existing bdev field in case
412 * it is accessed concurrently inside dm_table_any_congested().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 */
Al Viroaeb5d722008-09-02 15:28:45 -0400414static int upgrade_mode(struct dm_dev_internal *dd, fmode_t new_mode,
Mikulas Patocka82b15192008-10-10 13:37:09 +0100415 struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416{
417 int r;
Alasdair G Kergon570b9d92009-04-02 19:55:28 +0100418 struct dm_dev_internal dd_new, dd_old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Alasdair G Kergon570b9d92009-04-02 19:55:28 +0100420 dd_new = dd_old = *dd;
421
422 dd_new.dm_dev.mode |= new_mode;
423 dd_new.dm_dev.bdev = NULL;
424
425 r = open_dev(&dd_new, dd->dm_dev.bdev->bd_dev, md);
426 if (r)
427 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Mikulas Patocka82b15192008-10-10 13:37:09 +0100429 dd->dm_dev.mode |= new_mode;
Alasdair G Kergon570b9d92009-04-02 19:55:28 +0100430 close_dev(&dd_old, md);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Alasdair G Kergon570b9d92009-04-02 19:55:28 +0100432 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433}
434
435/*
436 * Add a device to the list, or just increment the usage count if
437 * it's already present.
438 */
439static int __table_get_device(struct dm_table *t, struct dm_target *ti,
Nikanth Karthikesan8215d6e2010-03-06 02:32:27 +0000440 const char *path, fmode_t mode, struct dm_dev **result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441{
442 int r;
Andrew Morton69a2ce72008-02-08 02:10:14 +0000443 dev_t uninitialized_var(dev);
Mikulas Patocka82b15192008-10-10 13:37:09 +0100444 struct dm_dev_internal *dd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 unsigned int major, minor;
446
Eric Sesterhenn547bc922006-03-26 18:22:50 +0200447 BUG_ON(!t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
449 if (sscanf(path, "%u:%u", &major, &minor) == 2) {
450 /* Extract the major/minor numbers */
451 dev = MKDEV(major, minor);
452 if (MAJOR(dev) != major || MINOR(dev) != minor)
453 return -EOVERFLOW;
454 } else {
455 /* convert the path to a device */
Christoph Hellwig72e82642008-08-11 00:24:08 +0200456 struct block_device *bdev = lookup_bdev(path);
457
458 if (IS_ERR(bdev))
459 return PTR_ERR(bdev);
460 dev = bdev->bd_dev;
461 bdput(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 }
463
464 dd = find_device(&t->devices, dev);
465 if (!dd) {
466 dd = kmalloc(sizeof(*dd), GFP_KERNEL);
467 if (!dd)
468 return -ENOMEM;
469
Mikulas Patocka82b15192008-10-10 13:37:09 +0100470 dd->dm_dev.mode = mode;
471 dd->dm_dev.bdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
Jun'ichi Nomuraf1659212006-03-27 01:17:59 -0800473 if ((r = open_dev(dd, dev, t->md))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 kfree(dd);
475 return r;
476 }
477
Mikulas Patocka82b15192008-10-10 13:37:09 +0100478 format_dev_t(dd->dm_dev.name, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
480 atomic_set(&dd->count, 0);
481 list_add(&dd->list, &t->devices);
482
Mikulas Patocka82b15192008-10-10 13:37:09 +0100483 } else if (dd->dm_dev.mode != (mode | dd->dm_dev.mode)) {
Jun'ichi Nomuraf1659212006-03-27 01:17:59 -0800484 r = upgrade_mode(dd, mode, t->md);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 if (r)
486 return r;
487 }
488 atomic_inc(&dd->count);
489
Mikulas Patocka82b15192008-10-10 13:37:09 +0100490 *result = &dd->dm_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 return 0;
492}
493
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100494int dm_set_device_limits(struct dm_target *ti, struct dm_dev *dev,
Mike Snitzer5dea2712009-07-23 20:30:42 +0100495 sector_t start, sector_t len, void *data)
Bryn Reeves3cb40212006-10-03 01:15:42 -0700496{
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100497 struct queue_limits *limits = data;
498 struct block_device *bdev = dev->bdev;
Jens Axboe165125e2007-07-24 09:28:11 +0200499 struct request_queue *q = bdev_get_queue(bdev);
Alasdair G Kergon0c2322e2008-10-10 13:37:13 +0100500 char b[BDEVNAME_SIZE];
501
502 if (unlikely(!q)) {
503 DMWARN("%s: Cannot set limits for nonexistent device %s",
504 dm_device_name(ti->table->md), bdevname(bdev, b));
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100505 return 0;
Alasdair G Kergon0c2322e2008-10-10 13:37:13 +0100506 }
Bryn Reeves3cb40212006-10-03 01:15:42 -0700507
Martin K. Petersenb27d7f12010-01-11 03:21:50 -0500508 if (bdev_stack_limits(limits, bdev, start) < 0)
509 DMWARN("%s: adding target device %s caused an alignment inconsistency: "
Mike Snitzera963a952009-09-04 20:40:24 +0100510 "physical_block_size=%u, logical_block_size=%u, "
511 "alignment_offset=%u, start=%llu",
512 dm_device_name(ti->table->md), bdevname(bdev, b),
513 q->limits.physical_block_size,
514 q->limits.logical_block_size,
515 q->limits.alignment_offset,
Martin K. Petersenb27d7f12010-01-11 03:21:50 -0500516 (unsigned long long) start << SECTOR_SHIFT);
Bryn Reeves3cb40212006-10-03 01:15:42 -0700517
Milan Broz9980c632008-07-21 12:00:39 +0100518 /*
519 * Check if merge fn is supported.
520 * If not we'll force DM to use PAGE_SIZE or
521 * smaller I/O, just to be safe.
Bryn Reeves3cb40212006-10-03 01:15:42 -0700522 */
Milan Broz9980c632008-07-21 12:00:39 +0100523
524 if (q->merge_bvec_fn && !ti->type->merge)
Mike Snitzer72d4cd92010-12-17 08:34:20 +0100525 blk_limits_max_hw_sectors(limits,
526 (unsigned int) (PAGE_SIZE >> 9));
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100527 return 0;
Bryn Reeves3cb40212006-10-03 01:15:42 -0700528}
529EXPORT_SYMBOL_GPL(dm_set_device_limits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Nikanth Karthikesan8215d6e2010-03-06 02:32:27 +0000531int dm_get_device(struct dm_target *ti, const char *path, fmode_t mode,
532 struct dm_dev **result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533{
Nikanth Karthikesan8215d6e2010-03-06 02:32:27 +0000534 return __table_get_device(ti->table, ti, path, mode, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535}
536
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100537
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538/*
539 * Decrement a devices use count and remove it if necessary.
540 */
Mikulas Patocka82b15192008-10-10 13:37:09 +0100541void dm_put_device(struct dm_target *ti, struct dm_dev *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542{
Mikulas Patocka82b15192008-10-10 13:37:09 +0100543 struct dm_dev_internal *dd = container_of(d, struct dm_dev_internal,
544 dm_dev);
545
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 if (atomic_dec_and_test(&dd->count)) {
Jun'ichi Nomuraf1659212006-03-27 01:17:59 -0800547 close_dev(dd, ti->table->md);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 list_del(&dd->list);
549 kfree(dd);
550 }
551}
552
553/*
554 * Checks to see if the target joins onto the end of the table.
555 */
556static int adjoin(struct dm_table *table, struct dm_target *ti)
557{
558 struct dm_target *prev;
559
560 if (!table->num_targets)
561 return !ti->begin;
562
563 prev = &table->targets[table->num_targets - 1];
564 return (ti->begin == (prev->begin + prev->len));
565}
566
567/*
568 * Used to dynamically allocate the arg array.
569 */
570static char **realloc_argv(unsigned *array_size, char **old_argv)
571{
572 char **argv;
573 unsigned new_size;
574
575 new_size = *array_size ? *array_size * 2 : 64;
576 argv = kmalloc(new_size * sizeof(*argv), GFP_KERNEL);
577 if (argv) {
578 memcpy(argv, old_argv, *array_size * sizeof(*argv));
579 *array_size = new_size;
580 }
581
582 kfree(old_argv);
583 return argv;
584}
585
586/*
587 * Destructively splits up the argument list to pass to ctr.
588 */
589int dm_split_args(int *argc, char ***argvp, char *input)
590{
591 char *start, *end = input, *out, **argv = NULL;
592 unsigned array_size = 0;
593
594 *argc = 0;
David Teigland814d6862006-06-26 00:27:31 -0700595
596 if (!input) {
597 *argvp = NULL;
598 return 0;
599 }
600
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 argv = realloc_argv(&array_size, argv);
602 if (!argv)
603 return -ENOMEM;
604
605 while (1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 /* Skip whitespace */
André Goddard Rosae7d28602009-12-14 18:01:06 -0800607 start = skip_spaces(end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
609 if (!*start)
610 break; /* success, we hit the end */
611
612 /* 'out' is used to remove any back-quotes */
613 end = out = start;
614 while (*end) {
615 /* Everything apart from '\0' can be quoted */
616 if (*end == '\\' && *(end + 1)) {
617 *out++ = *(end + 1);
618 end += 2;
619 continue;
620 }
621
622 if (isspace(*end))
623 break; /* end of token */
624
625 *out++ = *end++;
626 }
627
628 /* have we already filled the array ? */
629 if ((*argc + 1) > array_size) {
630 argv = realloc_argv(&array_size, argv);
631 if (!argv)
632 return -ENOMEM;
633 }
634
635 /* we know this is whitespace */
636 if (*end)
637 end++;
638
639 /* terminate the string and put it in the array */
640 *out = '\0';
641 argv[*argc] = start;
642 (*argc)++;
643 }
644
645 *argvp = argv;
646 return 0;
647}
648
Mike Snitzerbe6d4302009-06-22 10:12:31 +0100649/*
650 * Impose necessary and sufficient conditions on a devices's table such
651 * that any incoming bio which respects its logical_block_size can be
652 * processed successfully. If it falls across the boundary between
653 * two or more targets, the size of each piece it gets split into must
654 * be compatible with the logical_block_size of the target processing it.
655 */
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100656static int validate_hardware_logical_block_alignment(struct dm_table *table,
657 struct queue_limits *limits)
Mike Snitzerbe6d4302009-06-22 10:12:31 +0100658{
659 /*
660 * This function uses arithmetic modulo the logical_block_size
661 * (in units of 512-byte sectors).
662 */
663 unsigned short device_logical_block_size_sects =
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100664 limits->logical_block_size >> SECTOR_SHIFT;
Mike Snitzerbe6d4302009-06-22 10:12:31 +0100665
666 /*
667 * Offset of the start of the next table entry, mod logical_block_size.
668 */
669 unsigned short next_target_start = 0;
670
671 /*
672 * Given an aligned bio that extends beyond the end of a
673 * target, how many sectors must the next target handle?
674 */
675 unsigned short remaining = 0;
676
677 struct dm_target *uninitialized_var(ti);
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100678 struct queue_limits ti_limits;
Mike Snitzerbe6d4302009-06-22 10:12:31 +0100679 unsigned i = 0;
680
681 /*
682 * Check each entry in the table in turn.
683 */
684 while (i < dm_table_get_num_targets(table)) {
685 ti = dm_table_get_target(table, i++);
686
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100687 blk_set_default_limits(&ti_limits);
688
689 /* combine all target devices' limits */
690 if (ti->type->iterate_devices)
691 ti->type->iterate_devices(ti, dm_set_device_limits,
692 &ti_limits);
693
Mike Snitzerbe6d4302009-06-22 10:12:31 +0100694 /*
695 * If the remaining sectors fall entirely within this
696 * table entry are they compatible with its logical_block_size?
697 */
698 if (remaining < ti->len &&
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100699 remaining & ((ti_limits.logical_block_size >>
Mike Snitzerbe6d4302009-06-22 10:12:31 +0100700 SECTOR_SHIFT) - 1))
701 break; /* Error */
702
703 next_target_start =
704 (unsigned short) ((next_target_start + ti->len) &
705 (device_logical_block_size_sects - 1));
706 remaining = next_target_start ?
707 device_logical_block_size_sects - next_target_start : 0;
708 }
709
710 if (remaining) {
711 DMWARN("%s: table line %u (start sect %llu len %llu) "
Mike Snitzera963a952009-09-04 20:40:24 +0100712 "not aligned to h/w logical block size %u",
Mike Snitzerbe6d4302009-06-22 10:12:31 +0100713 dm_device_name(table->md), i,
714 (unsigned long long) ti->begin,
715 (unsigned long long) ti->len,
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100716 limits->logical_block_size);
Mike Snitzerbe6d4302009-06-22 10:12:31 +0100717 return -EINVAL;
718 }
719
720 return 0;
721}
722
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723int dm_table_add_target(struct dm_table *t, const char *type,
724 sector_t start, sector_t len, char *params)
725{
726 int r = -EINVAL, argc;
727 char **argv;
728 struct dm_target *tgt;
729
730 if ((r = check_space(t)))
731 return r;
732
733 tgt = t->targets + t->num_targets;
734 memset(tgt, 0, sizeof(*tgt));
735
736 if (!len) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700737 DMERR("%s: zero-length target", dm_device_name(t->md));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 return -EINVAL;
739 }
740
741 tgt->type = dm_get_target_type(type);
742 if (!tgt->type) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700743 DMERR("%s: %s: unknown target type", dm_device_name(t->md),
744 type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 return -EINVAL;
746 }
747
748 tgt->table = t;
749 tgt->begin = start;
750 tgt->len = len;
751 tgt->error = "Unknown error";
752
753 /*
754 * Does this target adjoin the previous one ?
755 */
756 if (!adjoin(t, tgt)) {
757 tgt->error = "Gap in table";
758 r = -EINVAL;
759 goto bad;
760 }
761
762 r = dm_split_args(&argc, &argv, params);
763 if (r) {
764 tgt->error = "couldn't split parameters (insufficient memory)";
765 goto bad;
766 }
767
768 r = tgt->type->ctr(tgt, argc, argv);
769 kfree(argv);
770 if (r)
771 goto bad;
772
773 t->highs[t->num_targets++] = tgt->begin + tgt->len - 1;
774
Mike Snitzer5ae89a82010-08-12 04:14:08 +0100775 if (!tgt->num_discard_requests)
776 t->discards_supported = 0;
777
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 return 0;
779
780 bad:
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700781 DMERR("%s: %s: %s", dm_device_name(t->md), type, tgt->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 dm_put_target_type(tgt->type);
783 return r;
784}
785
Will Drewry26803b92010-08-12 04:14:03 +0100786static int dm_table_set_type(struct dm_table *t)
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +0100787{
788 unsigned i;
789 unsigned bio_based = 0, request_based = 0;
790 struct dm_target *tgt;
791 struct dm_dev_internal *dd;
792 struct list_head *devices;
793
794 for (i = 0; i < t->num_targets; i++) {
795 tgt = t->targets + i;
796 if (dm_target_request_based(tgt))
797 request_based = 1;
798 else
799 bio_based = 1;
800
801 if (bio_based && request_based) {
802 DMWARN("Inconsistent table: different target types"
803 " can't be mixed up");
804 return -EINVAL;
805 }
806 }
807
808 if (bio_based) {
809 /* We must use this table as bio-based */
810 t->type = DM_TYPE_BIO_BASED;
811 return 0;
812 }
813
814 BUG_ON(!request_based); /* No targets in this table */
815
816 /* Non-request-stackable devices can't be used for request-based dm */
817 devices = dm_table_get_devices(t);
818 list_for_each_entry(dd, devices, list) {
819 if (!blk_queue_stackable(bdev_get_queue(dd->dm_dev.bdev))) {
820 DMWARN("table load rejected: including"
821 " non-request-stackable devices");
822 return -EINVAL;
823 }
824 }
825
826 /*
827 * Request-based dm supports only tables that have a single target now.
828 * To support multiple targets, request splitting support is needed,
829 * and that needs lots of changes in the block-layer.
830 * (e.g. request completion process for partial completion.)
831 */
832 if (t->num_targets > 1) {
833 DMWARN("Request-based dm doesn't support multiple targets yet");
834 return -EINVAL;
835 }
836
837 t->type = DM_TYPE_REQUEST_BASED;
838
839 return 0;
840}
841
842unsigned dm_table_get_type(struct dm_table *t)
843{
844 return t->type;
845}
846
847bool dm_table_request_based(struct dm_table *t)
848{
849 return dm_table_get_type(t) == DM_TYPE_REQUEST_BASED;
850}
851
852int dm_table_alloc_md_mempools(struct dm_table *t)
853{
854 unsigned type = dm_table_get_type(t);
855
856 if (unlikely(type == DM_TYPE_NONE)) {
857 DMWARN("no table type is set, can't allocate mempools");
858 return -EINVAL;
859 }
860
861 t->mempools = dm_alloc_md_mempools(type);
862 if (!t->mempools)
863 return -ENOMEM;
864
865 return 0;
866}
867
868void dm_table_free_md_mempools(struct dm_table *t)
869{
870 dm_free_md_mempools(t->mempools);
871 t->mempools = NULL;
872}
873
874struct dm_md_mempools *dm_table_get_md_mempools(struct dm_table *t)
875{
876 return t->mempools;
877}
878
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879static int setup_indexes(struct dm_table *t)
880{
881 int i;
882 unsigned int total = 0;
883 sector_t *indexes;
884
885 /* allocate the space for *all* the indexes */
886 for (i = t->depth - 2; i >= 0; i--) {
887 t->counts[i] = dm_div_up(t->counts[i + 1], CHILDREN_PER_NODE);
888 total += t->counts[i];
889 }
890
891 indexes = (sector_t *) dm_vcalloc(total, (unsigned long) NODE_SIZE);
892 if (!indexes)
893 return -ENOMEM;
894
895 /* set up internal nodes, bottom-up */
Jun'ichi Nomura82d601dc2008-02-08 02:10:04 +0000896 for (i = t->depth - 2; i >= 0; i--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 t->index[i] = indexes;
898 indexes += (KEYS_PER_NODE * t->counts[i]);
899 setup_btree_index(i, t);
900 }
901
902 return 0;
903}
904
905/*
906 * Builds the btree to index the map.
907 */
Will Drewry26803b92010-08-12 04:14:03 +0100908static int dm_table_build_index(struct dm_table *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909{
910 int r = 0;
911 unsigned int leaf_nodes;
912
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 /* how many indexes will the btree have ? */
914 leaf_nodes = dm_div_up(t->num_targets, KEYS_PER_NODE);
915 t->depth = 1 + int_log(leaf_nodes, CHILDREN_PER_NODE);
916
917 /* leaf layer has already been set up */
918 t->counts[t->depth - 1] = leaf_nodes;
919 t->index[t->depth - 1] = t->highs;
920
921 if (t->depth >= 2)
922 r = setup_indexes(t);
923
924 return r;
925}
926
Will Drewry26803b92010-08-12 04:14:03 +0100927/*
928 * Register the mapped device for blk_integrity support if
929 * the underlying devices support it.
930 */
931static int dm_table_prealloc_integrity(struct dm_table *t, struct mapped_device *md)
932{
933 struct list_head *devices = dm_table_get_devices(t);
934 struct dm_dev_internal *dd;
935
936 list_for_each_entry(dd, devices, list)
937 if (bdev_get_integrity(dd->dm_dev.bdev))
938 return blk_integrity_register(dm_disk(md), NULL);
939
940 return 0;
941}
942
943/*
944 * Prepares the table for use by building the indices,
945 * setting the type, and allocating mempools.
946 */
947int dm_table_complete(struct dm_table *t)
948{
949 int r;
950
951 r = dm_table_set_type(t);
952 if (r) {
953 DMERR("unable to set table type");
954 return r;
955 }
956
957 r = dm_table_build_index(t);
958 if (r) {
959 DMERR("unable to build btrees");
960 return r;
961 }
962
963 r = dm_table_prealloc_integrity(t, t->md);
964 if (r) {
965 DMERR("could not register integrity profile.");
966 return r;
967 }
968
969 r = dm_table_alloc_md_mempools(t);
970 if (r)
971 DMERR("unable to allocate mempools");
972
973 return r;
974}
975
Arjan van de Ven48c9c272006-03-27 01:18:20 -0800976static DEFINE_MUTEX(_event_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977void dm_table_event_callback(struct dm_table *t,
978 void (*fn)(void *), void *context)
979{
Arjan van de Ven48c9c272006-03-27 01:18:20 -0800980 mutex_lock(&_event_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 t->event_fn = fn;
982 t->event_context = context;
Arjan van de Ven48c9c272006-03-27 01:18:20 -0800983 mutex_unlock(&_event_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984}
985
986void dm_table_event(struct dm_table *t)
987{
988 /*
989 * You can no longer call dm_table_event() from interrupt
990 * context, use a bottom half instead.
991 */
992 BUG_ON(in_interrupt());
993
Arjan van de Ven48c9c272006-03-27 01:18:20 -0800994 mutex_lock(&_event_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 if (t->event_fn)
996 t->event_fn(t->event_context);
Arjan van de Ven48c9c272006-03-27 01:18:20 -0800997 mutex_unlock(&_event_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998}
999
1000sector_t dm_table_get_size(struct dm_table *t)
1001{
1002 return t->num_targets ? (t->highs[t->num_targets - 1] + 1) : 0;
1003}
1004
1005struct dm_target *dm_table_get_target(struct dm_table *t, unsigned int index)
1006{
Milan Broz14353532006-06-26 00:27:27 -07001007 if (index >= t->num_targets)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 return NULL;
1009
1010 return t->targets + index;
1011}
1012
1013/*
1014 * Search the btree for the correct target.
Jun'ichi Nomura512875b2007-12-13 14:15:25 +00001015 *
1016 * Caller should check returned pointer with dm_target_is_valid()
1017 * to trap I/O beyond end of device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 */
1019struct dm_target *dm_table_find_target(struct dm_table *t, sector_t sector)
1020{
1021 unsigned int l, n = 0, k = 0;
1022 sector_t *node;
1023
1024 for (l = 0; l < t->depth; l++) {
1025 n = get_child(n, k);
1026 node = get_node(t, l, n);
1027
1028 for (k = 0; k < KEYS_PER_NODE; k++)
1029 if (node[k] >= sector)
1030 break;
1031 }
1032
1033 return &t->targets[(KEYS_PER_NODE * n) + k];
1034}
1035
Martin K. Petersen9c470082009-04-09 00:27:12 +01001036/*
Mike Snitzer754c5fc2009-06-22 10:12:34 +01001037 * Establish the new table's queue_limits and validate them.
1038 */
1039int dm_calculate_queue_limits(struct dm_table *table,
1040 struct queue_limits *limits)
1041{
1042 struct dm_target *uninitialized_var(ti);
1043 struct queue_limits ti_limits;
1044 unsigned i = 0;
1045
1046 blk_set_default_limits(limits);
1047
1048 while (i < dm_table_get_num_targets(table)) {
1049 blk_set_default_limits(&ti_limits);
1050
1051 ti = dm_table_get_target(table, i++);
1052
1053 if (!ti->type->iterate_devices)
1054 goto combine_limits;
1055
1056 /*
1057 * Combine queue limits of all the devices this target uses.
1058 */
1059 ti->type->iterate_devices(ti, dm_set_device_limits,
1060 &ti_limits);
1061
Mike Snitzer40bea432009-09-04 20:40:25 +01001062 /* Set I/O hints portion of queue limits */
1063 if (ti->type->io_hints)
1064 ti->type->io_hints(ti, &ti_limits);
1065
Mike Snitzer754c5fc2009-06-22 10:12:34 +01001066 /*
1067 * Check each device area is consistent with the target's
1068 * overall queue limits.
1069 */
Mikulas Patockaf6a1ed12009-09-04 20:40:22 +01001070 if (ti->type->iterate_devices(ti, device_area_is_invalid,
1071 &ti_limits))
Mike Snitzer754c5fc2009-06-22 10:12:34 +01001072 return -EINVAL;
1073
1074combine_limits:
1075 /*
1076 * Merge this target's queue limits into the overall limits
1077 * for the table.
1078 */
1079 if (blk_stack_limits(limits, &ti_limits, 0) < 0)
Martin K. Petersenb27d7f12010-01-11 03:21:50 -05001080 DMWARN("%s: adding target device "
Mike Snitzer754c5fc2009-06-22 10:12:34 +01001081 "(start sect %llu len %llu) "
Martin K. Petersenb27d7f12010-01-11 03:21:50 -05001082 "caused an alignment inconsistency",
Mike Snitzer754c5fc2009-06-22 10:12:34 +01001083 dm_device_name(table->md),
1084 (unsigned long long) ti->begin,
1085 (unsigned long long) ti->len);
1086 }
1087
1088 return validate_hardware_logical_block_alignment(table, limits);
1089}
1090
1091/*
Martin K. Petersen9c470082009-04-09 00:27:12 +01001092 * Set the integrity profile for this device if all devices used have
1093 * matching profiles.
1094 */
1095static void dm_table_set_integrity(struct dm_table *t)
1096{
1097 struct list_head *devices = dm_table_get_devices(t);
1098 struct dm_dev_internal *prev = NULL, *dd = NULL;
1099
1100 if (!blk_get_integrity(dm_disk(t->md)))
1101 return;
1102
1103 list_for_each_entry(dd, devices, list) {
1104 if (prev &&
1105 blk_integrity_compare(prev->dm_dev.bdev->bd_disk,
1106 dd->dm_dev.bdev->bd_disk) < 0) {
1107 DMWARN("%s: integrity not set: %s and %s mismatch",
1108 dm_device_name(t->md),
1109 prev->dm_dev.bdev->bd_disk->disk_name,
1110 dd->dm_dev.bdev->bd_disk->disk_name);
1111 goto no_integrity;
1112 }
1113 prev = dd;
1114 }
1115
1116 if (!prev || !bdev_get_integrity(prev->dm_dev.bdev))
1117 goto no_integrity;
1118
1119 blk_integrity_register(dm_disk(t->md),
1120 bdev_get_integrity(prev->dm_dev.bdev));
1121
1122 return;
1123
1124no_integrity:
1125 blk_integrity_register(dm_disk(t->md), NULL);
1126
1127 return;
1128}
1129
Mike Snitzer754c5fc2009-06-22 10:12:34 +01001130void dm_table_set_restrictions(struct dm_table *t, struct request_queue *q,
1131 struct queue_limits *limits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132{
1133 /*
Mike Snitzer11977642009-06-22 10:12:32 +01001134 * Copy table's limits to the DM device's request_queue
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 */
Mike Snitzer754c5fc2009-06-22 10:12:34 +01001136 q->limits = *limits;
Jens Axboec9a3f6d2008-04-29 19:12:35 +02001137
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001138 if (!dm_table_supports_discards(t))
1139 queue_flag_clear_unlocked(QUEUE_FLAG_DISCARD, q);
1140 else
1141 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, q);
1142
Martin K. Petersen9c470082009-04-09 00:27:12 +01001143 dm_table_set_integrity(t);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001144
1145 /*
1146 * QUEUE_FLAG_STACKABLE must be set after all queue settings are
1147 * visible to other CPUs because, once the flag is set, incoming bios
1148 * are processed by request-based dm, which refers to the queue
1149 * settings.
1150 * Until the flag set, bios are passed to bio-based dm and queued to
1151 * md->deferred where queue settings are not needed yet.
1152 * Those bios are passed to request-based dm at the resume time.
1153 */
1154 smp_mb();
1155 if (dm_table_request_based(t))
1156 queue_flag_set_unlocked(QUEUE_FLAG_STACKABLE, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157}
1158
1159unsigned int dm_table_get_num_targets(struct dm_table *t)
1160{
1161 return t->num_targets;
1162}
1163
1164struct list_head *dm_table_get_devices(struct dm_table *t)
1165{
1166 return &t->devices;
1167}
1168
Al Viroaeb5d722008-09-02 15:28:45 -04001169fmode_t dm_table_get_mode(struct dm_table *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170{
1171 return t->mode;
1172}
1173
1174static void suspend_targets(struct dm_table *t, unsigned postsuspend)
1175{
1176 int i = t->num_targets;
1177 struct dm_target *ti = t->targets;
1178
1179 while (i--) {
1180 if (postsuspend) {
1181 if (ti->type->postsuspend)
1182 ti->type->postsuspend(ti);
1183 } else if (ti->type->presuspend)
1184 ti->type->presuspend(ti);
1185
1186 ti++;
1187 }
1188}
1189
1190void dm_table_presuspend_targets(struct dm_table *t)
1191{
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001192 if (!t)
1193 return;
1194
Adrian Bunke8488d02008-04-24 22:10:51 +01001195 suspend_targets(t, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196}
1197
1198void dm_table_postsuspend_targets(struct dm_table *t)
1199{
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001200 if (!t)
1201 return;
1202
Adrian Bunke8488d02008-04-24 22:10:51 +01001203 suspend_targets(t, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204}
1205
Milan Broz8757b772006-10-03 01:15:36 -07001206int dm_table_resume_targets(struct dm_table *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207{
Milan Broz8757b772006-10-03 01:15:36 -07001208 int i, r = 0;
1209
1210 for (i = 0; i < t->num_targets; i++) {
1211 struct dm_target *ti = t->targets + i;
1212
1213 if (!ti->type->preresume)
1214 continue;
1215
1216 r = ti->type->preresume(ti);
1217 if (r)
1218 return r;
1219 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
1221 for (i = 0; i < t->num_targets; i++) {
1222 struct dm_target *ti = t->targets + i;
1223
1224 if (ti->type->resume)
1225 ti->type->resume(ti);
1226 }
Milan Broz8757b772006-10-03 01:15:36 -07001227
1228 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229}
1230
NeilBrown9d357b02011-01-13 20:00:01 +00001231void dm_table_add_target_callbacks(struct dm_table *t, struct dm_target_callbacks *cb)
1232{
1233 list_add(&cb->list, &t->target_callbacks);
1234}
1235EXPORT_SYMBOL_GPL(dm_table_add_target_callbacks);
1236
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237int dm_table_any_congested(struct dm_table *t, int bdi_bits)
1238{
Mikulas Patocka82b15192008-10-10 13:37:09 +01001239 struct dm_dev_internal *dd;
Paul Jimenezafb24522008-02-08 02:09:59 +00001240 struct list_head *devices = dm_table_get_devices(t);
NeilBrown9d357b02011-01-13 20:00:01 +00001241 struct dm_target_callbacks *cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 int r = 0;
1243
Paul Jimenezafb24522008-02-08 02:09:59 +00001244 list_for_each_entry(dd, devices, list) {
Mikulas Patocka82b15192008-10-10 13:37:09 +01001245 struct request_queue *q = bdev_get_queue(dd->dm_dev.bdev);
Alasdair G Kergon0c2322e2008-10-10 13:37:13 +01001246 char b[BDEVNAME_SIZE];
1247
1248 if (likely(q))
1249 r |= bdi_congested(&q->backing_dev_info, bdi_bits);
1250 else
1251 DMWARN_LIMIT("%s: any_congested: nonexistent device %s",
1252 dm_device_name(t->md),
1253 bdevname(dd->dm_dev.bdev, b));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 }
1255
NeilBrown9d357b02011-01-13 20:00:01 +00001256 list_for_each_entry(cb, &t->target_callbacks, list)
1257 if (cb->congested_fn)
1258 r |= cb->congested_fn(cb, bdi_bits);
1259
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 return r;
1261}
1262
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001263int dm_table_any_busy_target(struct dm_table *t)
1264{
1265 unsigned i;
1266 struct dm_target *ti;
1267
1268 for (i = 0; i < t->num_targets; i++) {
1269 ti = t->targets + i;
1270 if (ti->type->busy && ti->type->busy(ti))
1271 return 1;
1272 }
1273
1274 return 0;
1275}
1276
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277void dm_table_unplug_all(struct dm_table *t)
1278{
Mikulas Patocka82b15192008-10-10 13:37:09 +01001279 struct dm_dev_internal *dd;
Paul Jimenezafb24522008-02-08 02:09:59 +00001280 struct list_head *devices = dm_table_get_devices(t);
NeilBrown99d03c12011-01-13 20:00:02 +00001281 struct dm_target_callbacks *cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
Paul Jimenezafb24522008-02-08 02:09:59 +00001283 list_for_each_entry(dd, devices, list) {
Mikulas Patocka82b15192008-10-10 13:37:09 +01001284 struct request_queue *q = bdev_get_queue(dd->dm_dev.bdev);
Alasdair G Kergon0c2322e2008-10-10 13:37:13 +01001285 char b[BDEVNAME_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
Alasdair G Kergon0c2322e2008-10-10 13:37:13 +01001287 if (likely(q))
1288 blk_unplug(q);
1289 else
1290 DMWARN_LIMIT("%s: Cannot unplug nonexistent device %s",
1291 dm_device_name(t->md),
1292 bdevname(dd->dm_dev.bdev, b));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 }
NeilBrown99d03c12011-01-13 20:00:02 +00001294
1295 list_for_each_entry(cb, &t->target_callbacks, list)
1296 if (cb->unplug_fn)
1297 cb->unplug_fn(cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298}
1299
Mike Anderson1134e5a2006-03-27 01:17:54 -08001300struct mapped_device *dm_table_get_md(struct dm_table *t)
1301{
Mike Anderson1134e5a2006-03-27 01:17:54 -08001302 return t->md;
1303}
1304
Mike Snitzer5ae89a82010-08-12 04:14:08 +01001305static int device_discard_capable(struct dm_target *ti, struct dm_dev *dev,
1306 sector_t start, sector_t len, void *data)
1307{
1308 struct request_queue *q = bdev_get_queue(dev->bdev);
1309
1310 return q && blk_queue_discard(q);
1311}
1312
1313bool dm_table_supports_discards(struct dm_table *t)
1314{
1315 struct dm_target *ti;
1316 unsigned i = 0;
1317
1318 if (!t->discards_supported)
1319 return 0;
1320
1321 /*
1322 * Ensure that at least one underlying device supports discards.
1323 * t->devices includes internal dm devices such as mirror logs
1324 * so we need to use iterate_devices here, which targets
1325 * supporting discard must provide.
1326 */
1327 while (i < dm_table_get_num_targets(t)) {
1328 ti = dm_table_get_target(t, i++);
1329
1330 if (ti->type->iterate_devices &&
1331 ti->type->iterate_devices(ti, device_discard_capable, NULL))
1332 return 1;
1333 }
1334
1335 return 0;
1336}
1337
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338EXPORT_SYMBOL(dm_vcalloc);
1339EXPORT_SYMBOL(dm_get_device);
1340EXPORT_SYMBOL(dm_put_device);
1341EXPORT_SYMBOL(dm_table_event);
Alasdair G Kergond5e404c2005-07-12 15:53:05 -07001342EXPORT_SYMBOL(dm_table_get_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343EXPORT_SYMBOL(dm_table_get_mode);
Mike Anderson1134e5a2006-03-27 01:17:54 -08001344EXPORT_SYMBOL(dm_table_get_md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345EXPORT_SYMBOL(dm_table_put);
1346EXPORT_SYMBOL(dm_table_get);
1347EXPORT_SYMBOL(dm_table_unplug_all);