blob: 3162b9c3c3f29bca8ceb321f3bf488ac63e14166 [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>
15#include <linux/slab.h>
16#include <linux/interrupt.h>
Arjan van de Ven48c9c272006-03-27 01:18:20 -080017#include <linux/mutex.h>
Mikulas Patockad5816872009-01-06 03:05:10 +000018#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <asm/atomic.h>
20
Alasdair G Kergon72d94862006-06-26 00:27:35 -070021#define DM_MSG_PREFIX "table"
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#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
Mikulas Patockad5816872009-01-06 03:05:10 +000028/*
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070041struct dm_table {
Mike Anderson1134e5a2006-03-27 01:17:54 -080042 struct mapped_device *md;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 atomic_t holders;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +010044 unsigned type;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
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 */
Al Viroaeb5d722008-09-02 15:28:45 -040061 fmode_t mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63 /* a list of devices used by this table */
64 struct list_head devices;
65
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 /* events get handed up using this callback */
67 void (*event_fn)(void *);
68 void *event_context;
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +010069
70 struct dm_md_mempools *mempools;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071};
72
73/*
74 * Similar to ceiling(log_size(n))
75 */
76static unsigned int int_log(unsigned int n, unsigned int base)
77{
78 int result = 0;
79
80 while (n > 1) {
81 n = dm_div_up(n, base);
82 result++;
83 }
84
85 return result;
86}
87
88/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 * Calculate the index of the child node of the n'th node k'th key.
90 */
91static inline unsigned int get_child(unsigned int n, unsigned int k)
92{
93 return (n * CHILDREN_PER_NODE) + k;
94}
95
96/*
97 * Return the n'th node of level l from table t.
98 */
99static inline sector_t *get_node(struct dm_table *t,
100 unsigned int l, unsigned int n)
101{
102 return t->index[l] + (n * KEYS_PER_NODE);
103}
104
105/*
106 * Return the highest key that you could lookup from the n'th
107 * node on level l of the btree.
108 */
109static sector_t high(struct dm_table *t, unsigned int l, unsigned int n)
110{
111 for (; l < t->depth - 1; l++)
112 n = get_child(n, CHILDREN_PER_NODE - 1);
113
114 if (n >= t->counts[l])
115 return (sector_t) - 1;
116
117 return get_node(t, l, n)[KEYS_PER_NODE - 1];
118}
119
120/*
121 * Fills in a level of the btree based on the highs of the level
122 * below it.
123 */
124static int setup_btree_index(unsigned int l, struct dm_table *t)
125{
126 unsigned int n, k;
127 sector_t *node;
128
129 for (n = 0U; n < t->counts[l]; n++) {
130 node = get_node(t, l, n);
131
132 for (k = 0U; k < KEYS_PER_NODE; k++)
133 node[k] = high(t, l + 1, get_child(n, k));
134 }
135
136 return 0;
137}
138
139void *dm_vcalloc(unsigned long nmemb, unsigned long elem_size)
140{
141 unsigned long size;
142 void *addr;
143
144 /*
145 * Check that we're not going to overflow.
146 */
147 if (nmemb > (ULONG_MAX / elem_size))
148 return NULL;
149
150 size = nmemb * elem_size;
151 addr = vmalloc(size);
152 if (addr)
153 memset(addr, 0, size);
154
155 return addr;
156}
157
158/*
159 * highs, and targets are managed as dynamic arrays during a
160 * table load.
161 */
162static int alloc_targets(struct dm_table *t, unsigned int num)
163{
164 sector_t *n_highs;
165 struct dm_target *n_targets;
166 int n = t->num_targets;
167
168 /*
169 * Allocate both the target array and offset array at once.
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000170 * Append an empty entry to catch sectors beyond the end of
171 * the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 */
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000173 n_highs = (sector_t *) dm_vcalloc(num + 1, sizeof(struct dm_target) +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 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
Al Viroaeb5d722008-09-02 15:28:45 -0400195int dm_table_create(struct dm_table **result, fmode_t mode,
Mike Anderson1134e5a2006-03-27 01:17:54 -0800196 unsigned num_targets, struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
Dmitry Monakhov094262d2007-10-19 22:38:51 +0100198 struct dm_table *t = kzalloc(sizeof(*t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200 if (!t)
201 return -ENOMEM;
202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 INIT_LIST_HEAD(&t->devices);
Mikulas Patockad5816872009-01-06 03:05:10 +0000204 atomic_set(&t->holders, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
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;
Mike Anderson1134e5a2006-03-27 01:17:54 -0800218 t->md = md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 *result = t;
220 return 0;
221}
222
223static void free_devices(struct list_head *devices)
224{
225 struct list_head *tmp, *next;
226
Paul Jimenezafb24522008-02-08 02:09:59 +0000227 list_for_each_safe(tmp, next, devices) {
Mikulas Patocka82b15192008-10-10 13:37:09 +0100228 struct dm_dev_internal *dd =
229 list_entry(tmp, struct dm_dev_internal, list);
Jonthan Brassow1b6da752009-06-22 10:12:29 +0100230 DMWARN("dm_table_destroy: dm_put_device call missing for %s",
231 dd->dm_dev.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 kfree(dd);
233 }
234}
235
Mikulas Patockad5816872009-01-06 03:05:10 +0000236void dm_table_destroy(struct dm_table *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237{
238 unsigned int i;
239
Alasdair G Kergona7940152009-12-10 23:52:23 +0000240 if (!t)
241 return;
242
Mikulas Patockad5816872009-01-06 03:05:10 +0000243 while (atomic_read(&t->holders))
244 msleep(1);
245 smp_mb();
246
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 /* free the indexes (see dm_table_complete) */
248 if (t->depth >= 2)
249 vfree(t->index[t->depth - 2]);
250
251 /* free the targets */
252 for (i = 0; i < t->num_targets; i++) {
253 struct dm_target *tgt = t->targets + i;
254
255 if (tgt->type->dtr)
256 tgt->type->dtr(tgt);
257
258 dm_put_target_type(tgt->type);
259 }
260
261 vfree(t->highs);
262
263 /* free the device list */
Jonthan Brassow1b6da752009-06-22 10:12:29 +0100264 if (t->devices.next != &t->devices)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 free_devices(&t->devices);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +0100267 dm_free_md_mempools(t->mempools);
268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 kfree(t);
270}
271
272void dm_table_get(struct dm_table *t)
273{
274 atomic_inc(&t->holders);
275}
276
277void dm_table_put(struct dm_table *t)
278{
279 if (!t)
280 return;
281
Mikulas Patockad5816872009-01-06 03:05:10 +0000282 smp_mb__before_atomic_dec();
283 atomic_dec(&t->holders);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
285
286/*
287 * Checks to see if we need to extend highs or targets.
288 */
289static inline int check_space(struct dm_table *t)
290{
291 if (t->num_targets >= t->num_allocated)
292 return alloc_targets(t, t->num_allocated * 2);
293
294 return 0;
295}
296
297/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 * See if we've already got a device in the list.
299 */
Mikulas Patocka82b15192008-10-10 13:37:09 +0100300static struct dm_dev_internal *find_device(struct list_head *l, dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301{
Mikulas Patocka82b15192008-10-10 13:37:09 +0100302 struct dm_dev_internal *dd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
304 list_for_each_entry (dd, l, list)
Mikulas Patocka82b15192008-10-10 13:37:09 +0100305 if (dd->dm_dev.bdev->bd_dev == dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 return dd;
307
308 return NULL;
309}
310
311/*
312 * Open a device so we can use it as a map destination.
313 */
Mikulas Patocka82b15192008-10-10 13:37:09 +0100314static int open_dev(struct dm_dev_internal *d, dev_t dev,
315 struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316{
317 static char *_claim_ptr = "I belong to device-mapper";
318 struct block_device *bdev;
319
320 int r;
321
Mikulas Patocka82b15192008-10-10 13:37:09 +0100322 BUG_ON(d->dm_dev.bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Mikulas Patocka82b15192008-10-10 13:37:09 +0100324 bdev = open_by_devnum(dev, d->dm_dev.mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 if (IS_ERR(bdev))
326 return PTR_ERR(bdev);
Jun'ichi Nomuraf1659212006-03-27 01:17:59 -0800327 r = bd_claim_by_disk(bdev, _claim_ptr, dm_disk(md));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 if (r)
Al Viro9a1c3542008-02-22 20:40:24 -0500329 blkdev_put(bdev, d->dm_dev.mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 else
Mikulas Patocka82b15192008-10-10 13:37:09 +0100331 d->dm_dev.bdev = bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 return r;
333}
334
335/*
336 * Close a device that we've been using.
337 */
Mikulas Patocka82b15192008-10-10 13:37:09 +0100338static void close_dev(struct dm_dev_internal *d, struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339{
Mikulas Patocka82b15192008-10-10 13:37:09 +0100340 if (!d->dm_dev.bdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 return;
342
Mikulas Patocka82b15192008-10-10 13:37:09 +0100343 bd_release_from_disk(d->dm_dev.bdev, dm_disk(md));
Al Viro9a1c3542008-02-22 20:40:24 -0500344 blkdev_put(d->dm_dev.bdev, d->dm_dev.mode);
Mikulas Patocka82b15192008-10-10 13:37:09 +0100345 d->dm_dev.bdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346}
347
348/*
Mikulas Patockaf6a1ed12009-09-04 20:40:22 +0100349 * If possible, this checks an area of a destination device is invalid.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 */
Mikulas Patockaf6a1ed12009-09-04 20:40:22 +0100351static int device_area_is_invalid(struct dm_target *ti, struct dm_dev *dev,
352 sector_t start, sector_t len, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353{
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100354 struct queue_limits *limits = data;
355 struct block_device *bdev = dev->bdev;
356 sector_t dev_size =
357 i_size_read(bdev->bd_inode) >> SECTOR_SHIFT;
Mike Snitzer02acc3a2009-06-22 10:12:30 +0100358 unsigned short logical_block_size_sectors =
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100359 limits->logical_block_size >> SECTOR_SHIFT;
Mike Snitzer02acc3a2009-06-22 10:12:30 +0100360 char b[BDEVNAME_SIZE];
Mike Anderson2cd54d92007-05-09 02:32:57 -0700361
362 if (!dev_size)
Mikulas Patockaf6a1ed12009-09-04 20:40:22 +0100363 return 0;
Mike Anderson2cd54d92007-05-09 02:32:57 -0700364
Mike Snitzer5dea2712009-07-23 20:30:42 +0100365 if ((start >= dev_size) || (start + len > dev_size)) {
Mike Snitzera963a952009-09-04 20:40:24 +0100366 DMWARN("%s: %s too small for target: "
367 "start=%llu, len=%llu, dev_size=%llu",
368 dm_device_name(ti->table->md), bdevname(bdev, b),
369 (unsigned long long)start,
370 (unsigned long long)len,
371 (unsigned long long)dev_size);
Mikulas Patockaf6a1ed12009-09-04 20:40:22 +0100372 return 1;
Mike Snitzer02acc3a2009-06-22 10:12:30 +0100373 }
374
375 if (logical_block_size_sectors <= 1)
Mikulas Patockaf6a1ed12009-09-04 20:40:22 +0100376 return 0;
Mike Snitzer02acc3a2009-06-22 10:12:30 +0100377
378 if (start & (logical_block_size_sectors - 1)) {
379 DMWARN("%s: start=%llu not aligned to h/w "
Mike Snitzera963a952009-09-04 20:40:24 +0100380 "logical block size %u of %s",
Mike Snitzer02acc3a2009-06-22 10:12:30 +0100381 dm_device_name(ti->table->md),
382 (unsigned long long)start,
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100383 limits->logical_block_size, bdevname(bdev, b));
Mikulas Patockaf6a1ed12009-09-04 20:40:22 +0100384 return 1;
Mike Snitzer02acc3a2009-06-22 10:12:30 +0100385 }
386
Mike Snitzer5dea2712009-07-23 20:30:42 +0100387 if (len & (logical_block_size_sectors - 1)) {
Mike Snitzer02acc3a2009-06-22 10:12:30 +0100388 DMWARN("%s: len=%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),
Mike Snitzer5dea2712009-07-23 20:30:42 +0100391 (unsigned long long)len,
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
Mikulas Patockaf6a1ed12009-09-04 20:40:22 +0100396 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397}
398
399/*
Alasdair G Kergon570b9d92009-04-02 19:55:28 +0100400 * This upgrades the mode on an already open dm_dev, being
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 * careful to leave things as they were if we fail to reopen the
Alasdair G Kergon570b9d92009-04-02 19:55:28 +0100402 * device and not to touch the existing bdev field in case
403 * it is accessed concurrently inside dm_table_any_congested().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 */
Al Viroaeb5d722008-09-02 15:28:45 -0400405static int upgrade_mode(struct dm_dev_internal *dd, fmode_t new_mode,
Mikulas Patocka82b15192008-10-10 13:37:09 +0100406 struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407{
408 int r;
Alasdair G Kergon570b9d92009-04-02 19:55:28 +0100409 struct dm_dev_internal dd_new, dd_old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Alasdair G Kergon570b9d92009-04-02 19:55:28 +0100411 dd_new = dd_old = *dd;
412
413 dd_new.dm_dev.mode |= new_mode;
414 dd_new.dm_dev.bdev = NULL;
415
416 r = open_dev(&dd_new, dd->dm_dev.bdev->bd_dev, md);
417 if (r)
418 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Mikulas Patocka82b15192008-10-10 13:37:09 +0100420 dd->dm_dev.mode |= new_mode;
Alasdair G Kergon570b9d92009-04-02 19:55:28 +0100421 close_dev(&dd_old, md);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
Alasdair G Kergon570b9d92009-04-02 19:55:28 +0100423 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424}
425
426/*
427 * Add a device to the list, or just increment the usage count if
428 * it's already present.
429 */
430static int __table_get_device(struct dm_table *t, struct dm_target *ti,
431 const char *path, sector_t start, sector_t len,
Al Viroaeb5d722008-09-02 15:28:45 -0400432 fmode_t mode, struct dm_dev **result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433{
434 int r;
Andrew Morton69a2ce72008-02-08 02:10:14 +0000435 dev_t uninitialized_var(dev);
Mikulas Patocka82b15192008-10-10 13:37:09 +0100436 struct dm_dev_internal *dd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 unsigned int major, minor;
438
Eric Sesterhenn547bc922006-03-26 18:22:50 +0200439 BUG_ON(!t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
441 if (sscanf(path, "%u:%u", &major, &minor) == 2) {
442 /* Extract the major/minor numbers */
443 dev = MKDEV(major, minor);
444 if (MAJOR(dev) != major || MINOR(dev) != minor)
445 return -EOVERFLOW;
446 } else {
447 /* convert the path to a device */
Christoph Hellwig72e82642008-08-11 00:24:08 +0200448 struct block_device *bdev = lookup_bdev(path);
449
450 if (IS_ERR(bdev))
451 return PTR_ERR(bdev);
452 dev = bdev->bd_dev;
453 bdput(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 }
455
456 dd = find_device(&t->devices, dev);
457 if (!dd) {
458 dd = kmalloc(sizeof(*dd), GFP_KERNEL);
459 if (!dd)
460 return -ENOMEM;
461
Mikulas Patocka82b15192008-10-10 13:37:09 +0100462 dd->dm_dev.mode = mode;
463 dd->dm_dev.bdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Jun'ichi Nomuraf1659212006-03-27 01:17:59 -0800465 if ((r = open_dev(dd, dev, t->md))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 kfree(dd);
467 return r;
468 }
469
Mikulas Patocka82b15192008-10-10 13:37:09 +0100470 format_dev_t(dd->dm_dev.name, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
472 atomic_set(&dd->count, 0);
473 list_add(&dd->list, &t->devices);
474
Mikulas Patocka82b15192008-10-10 13:37:09 +0100475 } else if (dd->dm_dev.mode != (mode | dd->dm_dev.mode)) {
Jun'ichi Nomuraf1659212006-03-27 01:17:59 -0800476 r = upgrade_mode(dd, mode, t->md);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 if (r)
478 return r;
479 }
480 atomic_inc(&dd->count);
481
Mikulas Patocka82b15192008-10-10 13:37:09 +0100482 *result = &dd->dm_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 return 0;
484}
485
Mike Snitzer5ab97582009-06-22 10:12:32 +0100486/*
487 * Returns the minimum that is _not_ zero, unless both are zero.
488 */
489#define min_not_zero(l, r) (l == 0) ? r : ((r == 0) ? l : min(l, r))
490
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100491int dm_set_device_limits(struct dm_target *ti, struct dm_dev *dev,
Mike Snitzer5dea2712009-07-23 20:30:42 +0100492 sector_t start, sector_t len, void *data)
Bryn Reeves3cb40212006-10-03 01:15:42 -0700493{
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100494 struct queue_limits *limits = data;
495 struct block_device *bdev = dev->bdev;
Jens Axboe165125e2007-07-24 09:28:11 +0200496 struct request_queue *q = bdev_get_queue(bdev);
Alasdair G Kergon0c2322e2008-10-10 13:37:13 +0100497 char b[BDEVNAME_SIZE];
498
499 if (unlikely(!q)) {
500 DMWARN("%s: Cannot set limits for nonexistent device %s",
501 dm_device_name(ti->table->md), bdevname(bdev, b));
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100502 return 0;
Alasdair G Kergon0c2322e2008-10-10 13:37:13 +0100503 }
Bryn Reeves3cb40212006-10-03 01:15:42 -0700504
Mike Snitzerea9df472009-06-30 15:18:17 +0100505 if (blk_stack_limits(limits, &q->limits, start << 9) < 0)
Mike Snitzera963a952009-09-04 20:40:24 +0100506 DMWARN("%s: target device %s is misaligned: "
507 "physical_block_size=%u, logical_block_size=%u, "
508 "alignment_offset=%u, start=%llu",
509 dm_device_name(ti->table->md), bdevname(bdev, b),
510 q->limits.physical_block_size,
511 q->limits.logical_block_size,
512 q->limits.alignment_offset,
513 (unsigned long long) start << 9);
514
Bryn Reeves3cb40212006-10-03 01:15:42 -0700515
Milan Broz9980c632008-07-21 12:00:39 +0100516 /*
517 * Check if merge fn is supported.
518 * If not we'll force DM to use PAGE_SIZE or
519 * smaller I/O, just to be safe.
Bryn Reeves3cb40212006-10-03 01:15:42 -0700520 */
Milan Broz9980c632008-07-21 12:00:39 +0100521
522 if (q->merge_bvec_fn && !ti->type->merge)
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100523 limits->max_sectors =
524 min_not_zero(limits->max_sectors,
Bryn Reeves3cb40212006-10-03 01:15:42 -0700525 (unsigned int) (PAGE_SIZE >> 9));
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100526 return 0;
Bryn Reeves3cb40212006-10-03 01:15:42 -0700527}
528EXPORT_SYMBOL_GPL(dm_set_device_limits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
530int dm_get_device(struct dm_target *ti, const char *path, sector_t start,
Al Viroaeb5d722008-09-02 15:28:45 -0400531 sector_t len, fmode_t mode, struct dm_dev **result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532{
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100533 return __table_get_device(ti->table, ti, path,
534 start, len, 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) {
606 start = end;
607
608 /* Skip whitespace */
609 while (*start && isspace(*start))
610 start++;
611
612 if (!*start)
613 break; /* success, we hit the end */
614
615 /* 'out' is used to remove any back-quotes */
616 end = out = start;
617 while (*end) {
618 /* Everything apart from '\0' can be quoted */
619 if (*end == '\\' && *(end + 1)) {
620 *out++ = *(end + 1);
621 end += 2;
622 continue;
623 }
624
625 if (isspace(*end))
626 break; /* end of token */
627
628 *out++ = *end++;
629 }
630
631 /* have we already filled the array ? */
632 if ((*argc + 1) > array_size) {
633 argv = realloc_argv(&array_size, argv);
634 if (!argv)
635 return -ENOMEM;
636 }
637
638 /* we know this is whitespace */
639 if (*end)
640 end++;
641
642 /* terminate the string and put it in the array */
643 *out = '\0';
644 argv[*argc] = start;
645 (*argc)++;
646 }
647
648 *argvp = argv;
649 return 0;
650}
651
Mike Snitzerbe6d4302009-06-22 10:12:31 +0100652/*
653 * Impose necessary and sufficient conditions on a devices's table such
654 * that any incoming bio which respects its logical_block_size can be
655 * processed successfully. If it falls across the boundary between
656 * two or more targets, the size of each piece it gets split into must
657 * be compatible with the logical_block_size of the target processing it.
658 */
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100659static int validate_hardware_logical_block_alignment(struct dm_table *table,
660 struct queue_limits *limits)
Mike Snitzerbe6d4302009-06-22 10:12:31 +0100661{
662 /*
663 * This function uses arithmetic modulo the logical_block_size
664 * (in units of 512-byte sectors).
665 */
666 unsigned short device_logical_block_size_sects =
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100667 limits->logical_block_size >> SECTOR_SHIFT;
Mike Snitzerbe6d4302009-06-22 10:12:31 +0100668
669 /*
670 * Offset of the start of the next table entry, mod logical_block_size.
671 */
672 unsigned short next_target_start = 0;
673
674 /*
675 * Given an aligned bio that extends beyond the end of a
676 * target, how many sectors must the next target handle?
677 */
678 unsigned short remaining = 0;
679
680 struct dm_target *uninitialized_var(ti);
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100681 struct queue_limits ti_limits;
Mike Snitzerbe6d4302009-06-22 10:12:31 +0100682 unsigned i = 0;
683
684 /*
685 * Check each entry in the table in turn.
686 */
687 while (i < dm_table_get_num_targets(table)) {
688 ti = dm_table_get_target(table, i++);
689
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100690 blk_set_default_limits(&ti_limits);
691
692 /* combine all target devices' limits */
693 if (ti->type->iterate_devices)
694 ti->type->iterate_devices(ti, dm_set_device_limits,
695 &ti_limits);
696
Mike Snitzerbe6d4302009-06-22 10:12:31 +0100697 /*
698 * If the remaining sectors fall entirely within this
699 * table entry are they compatible with its logical_block_size?
700 */
701 if (remaining < ti->len &&
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100702 remaining & ((ti_limits.logical_block_size >>
Mike Snitzerbe6d4302009-06-22 10:12:31 +0100703 SECTOR_SHIFT) - 1))
704 break; /* Error */
705
706 next_target_start =
707 (unsigned short) ((next_target_start + ti->len) &
708 (device_logical_block_size_sects - 1));
709 remaining = next_target_start ?
710 device_logical_block_size_sects - next_target_start : 0;
711 }
712
713 if (remaining) {
714 DMWARN("%s: table line %u (start sect %llu len %llu) "
Mike Snitzera963a952009-09-04 20:40:24 +0100715 "not aligned to h/w logical block size %u",
Mike Snitzerbe6d4302009-06-22 10:12:31 +0100716 dm_device_name(table->md), i,
717 (unsigned long long) ti->begin,
718 (unsigned long long) ti->len,
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100719 limits->logical_block_size);
Mike Snitzerbe6d4302009-06-22 10:12:31 +0100720 return -EINVAL;
721 }
722
723 return 0;
724}
725
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726int dm_table_add_target(struct dm_table *t, const char *type,
727 sector_t start, sector_t len, char *params)
728{
729 int r = -EINVAL, argc;
730 char **argv;
731 struct dm_target *tgt;
732
733 if ((r = check_space(t)))
734 return r;
735
736 tgt = t->targets + t->num_targets;
737 memset(tgt, 0, sizeof(*tgt));
738
739 if (!len) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700740 DMERR("%s: zero-length target", dm_device_name(t->md));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 return -EINVAL;
742 }
743
744 tgt->type = dm_get_target_type(type);
745 if (!tgt->type) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700746 DMERR("%s: %s: unknown target type", dm_device_name(t->md),
747 type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 return -EINVAL;
749 }
750
751 tgt->table = t;
752 tgt->begin = start;
753 tgt->len = len;
754 tgt->error = "Unknown error";
755
756 /*
757 * Does this target adjoin the previous one ?
758 */
759 if (!adjoin(t, tgt)) {
760 tgt->error = "Gap in table";
761 r = -EINVAL;
762 goto bad;
763 }
764
765 r = dm_split_args(&argc, &argv, params);
766 if (r) {
767 tgt->error = "couldn't split parameters (insufficient memory)";
768 goto bad;
769 }
770
771 r = tgt->type->ctr(tgt, argc, argv);
772 kfree(argv);
773 if (r)
774 goto bad;
775
776 t->highs[t->num_targets++] = tgt->begin + tgt->len - 1;
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
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +0100786int dm_table_set_type(struct dm_table *t)
787{
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 Nomura82d601d2008-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 */
908int dm_table_complete(struct dm_table *t)
909{
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
Arjan van de Ven48c9c272006-03-27 01:18:20 -0800927static DEFINE_MUTEX(_event_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928void dm_table_event_callback(struct dm_table *t,
929 void (*fn)(void *), void *context)
930{
Arjan van de Ven48c9c272006-03-27 01:18:20 -0800931 mutex_lock(&_event_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 t->event_fn = fn;
933 t->event_context = context;
Arjan van de Ven48c9c272006-03-27 01:18:20 -0800934 mutex_unlock(&_event_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935}
936
937void dm_table_event(struct dm_table *t)
938{
939 /*
940 * You can no longer call dm_table_event() from interrupt
941 * context, use a bottom half instead.
942 */
943 BUG_ON(in_interrupt());
944
Arjan van de Ven48c9c272006-03-27 01:18:20 -0800945 mutex_lock(&_event_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 if (t->event_fn)
947 t->event_fn(t->event_context);
Arjan van de Ven48c9c272006-03-27 01:18:20 -0800948 mutex_unlock(&_event_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949}
950
951sector_t dm_table_get_size(struct dm_table *t)
952{
953 return t->num_targets ? (t->highs[t->num_targets - 1] + 1) : 0;
954}
955
956struct dm_target *dm_table_get_target(struct dm_table *t, unsigned int index)
957{
Milan Broz14353532006-06-26 00:27:27 -0700958 if (index >= t->num_targets)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 return NULL;
960
961 return t->targets + index;
962}
963
964/*
965 * Search the btree for the correct target.
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000966 *
967 * Caller should check returned pointer with dm_target_is_valid()
968 * to trap I/O beyond end of device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 */
970struct dm_target *dm_table_find_target(struct dm_table *t, sector_t sector)
971{
972 unsigned int l, n = 0, k = 0;
973 sector_t *node;
974
975 for (l = 0; l < t->depth; l++) {
976 n = get_child(n, k);
977 node = get_node(t, l, n);
978
979 for (k = 0; k < KEYS_PER_NODE; k++)
980 if (node[k] >= sector)
981 break;
982 }
983
984 return &t->targets[(KEYS_PER_NODE * n) + k];
985}
986
Martin K. Petersen9c470082009-04-09 00:27:12 +0100987/*
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100988 * Establish the new table's queue_limits and validate them.
989 */
990int dm_calculate_queue_limits(struct dm_table *table,
991 struct queue_limits *limits)
992{
993 struct dm_target *uninitialized_var(ti);
994 struct queue_limits ti_limits;
995 unsigned i = 0;
996
997 blk_set_default_limits(limits);
998
999 while (i < dm_table_get_num_targets(table)) {
1000 blk_set_default_limits(&ti_limits);
1001
1002 ti = dm_table_get_target(table, i++);
1003
1004 if (!ti->type->iterate_devices)
1005 goto combine_limits;
1006
1007 /*
1008 * Combine queue limits of all the devices this target uses.
1009 */
1010 ti->type->iterate_devices(ti, dm_set_device_limits,
1011 &ti_limits);
1012
Mike Snitzer40bea432009-09-04 20:40:25 +01001013 /* Set I/O hints portion of queue limits */
1014 if (ti->type->io_hints)
1015 ti->type->io_hints(ti, &ti_limits);
1016
Mike Snitzer754c5fc2009-06-22 10:12:34 +01001017 /*
1018 * Check each device area is consistent with the target's
1019 * overall queue limits.
1020 */
Mikulas Patockaf6a1ed12009-09-04 20:40:22 +01001021 if (ti->type->iterate_devices(ti, device_area_is_invalid,
1022 &ti_limits))
Mike Snitzer754c5fc2009-06-22 10:12:34 +01001023 return -EINVAL;
1024
1025combine_limits:
1026 /*
1027 * Merge this target's queue limits into the overall limits
1028 * for the table.
1029 */
1030 if (blk_stack_limits(limits, &ti_limits, 0) < 0)
1031 DMWARN("%s: target device "
1032 "(start sect %llu len %llu) "
1033 "is misaligned",
1034 dm_device_name(table->md),
1035 (unsigned long long) ti->begin,
1036 (unsigned long long) ti->len);
1037 }
1038
1039 return validate_hardware_logical_block_alignment(table, limits);
1040}
1041
1042/*
Martin K. Petersen9c470082009-04-09 00:27:12 +01001043 * Set the integrity profile for this device if all devices used have
1044 * matching profiles.
1045 */
1046static void dm_table_set_integrity(struct dm_table *t)
1047{
1048 struct list_head *devices = dm_table_get_devices(t);
1049 struct dm_dev_internal *prev = NULL, *dd = NULL;
1050
1051 if (!blk_get_integrity(dm_disk(t->md)))
1052 return;
1053
1054 list_for_each_entry(dd, devices, list) {
1055 if (prev &&
1056 blk_integrity_compare(prev->dm_dev.bdev->bd_disk,
1057 dd->dm_dev.bdev->bd_disk) < 0) {
1058 DMWARN("%s: integrity not set: %s and %s mismatch",
1059 dm_device_name(t->md),
1060 prev->dm_dev.bdev->bd_disk->disk_name,
1061 dd->dm_dev.bdev->bd_disk->disk_name);
1062 goto no_integrity;
1063 }
1064 prev = dd;
1065 }
1066
1067 if (!prev || !bdev_get_integrity(prev->dm_dev.bdev))
1068 goto no_integrity;
1069
1070 blk_integrity_register(dm_disk(t->md),
1071 bdev_get_integrity(prev->dm_dev.bdev));
1072
1073 return;
1074
1075no_integrity:
1076 blk_integrity_register(dm_disk(t->md), NULL);
1077
1078 return;
1079}
1080
Mike Snitzer754c5fc2009-06-22 10:12:34 +01001081void dm_table_set_restrictions(struct dm_table *t, struct request_queue *q,
1082 struct queue_limits *limits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083{
1084 /*
Mike Snitzer754c5fc2009-06-22 10:12:34 +01001085 * Each target device in the table has a data area that should normally
1086 * be aligned such that the DM device's alignment_offset is 0.
1087 * FIXME: Propagate alignment_offsets up the stack and warn of
1088 * sub-optimal or inconsistent settings.
1089 */
1090 limits->alignment_offset = 0;
1091 limits->misaligned = 0;
1092
1093 /*
Mike Snitzer11977642009-06-22 10:12:32 +01001094 * Copy table's limits to the DM device's request_queue
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 */
Mike Snitzer754c5fc2009-06-22 10:12:34 +01001096 q->limits = *limits;
Jens Axboec9a3f6d2008-04-29 19:12:35 +02001097
Mike Snitzer754c5fc2009-06-22 10:12:34 +01001098 if (limits->no_cluster)
Jens Axboec9a3f6d2008-04-29 19:12:35 +02001099 queue_flag_clear_unlocked(QUEUE_FLAG_CLUSTER, q);
NeilBrown969429b2006-03-27 01:17:49 -08001100 else
Jens Axboec9a3f6d2008-04-29 19:12:35 +02001101 queue_flag_set_unlocked(QUEUE_FLAG_CLUSTER, q);
NeilBrown969429b2006-03-27 01:17:49 -08001102
Martin K. Petersen9c470082009-04-09 00:27:12 +01001103 dm_table_set_integrity(t);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001104
1105 /*
1106 * QUEUE_FLAG_STACKABLE must be set after all queue settings are
1107 * visible to other CPUs because, once the flag is set, incoming bios
1108 * are processed by request-based dm, which refers to the queue
1109 * settings.
1110 * Until the flag set, bios are passed to bio-based dm and queued to
1111 * md->deferred where queue settings are not needed yet.
1112 * Those bios are passed to request-based dm at the resume time.
1113 */
1114 smp_mb();
1115 if (dm_table_request_based(t))
1116 queue_flag_set_unlocked(QUEUE_FLAG_STACKABLE, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117}
1118
1119unsigned int dm_table_get_num_targets(struct dm_table *t)
1120{
1121 return t->num_targets;
1122}
1123
1124struct list_head *dm_table_get_devices(struct dm_table *t)
1125{
1126 return &t->devices;
1127}
1128
Al Viroaeb5d722008-09-02 15:28:45 -04001129fmode_t dm_table_get_mode(struct dm_table *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130{
1131 return t->mode;
1132}
1133
1134static void suspend_targets(struct dm_table *t, unsigned postsuspend)
1135{
1136 int i = t->num_targets;
1137 struct dm_target *ti = t->targets;
1138
1139 while (i--) {
1140 if (postsuspend) {
1141 if (ti->type->postsuspend)
1142 ti->type->postsuspend(ti);
1143 } else if (ti->type->presuspend)
1144 ti->type->presuspend(ti);
1145
1146 ti++;
1147 }
1148}
1149
1150void dm_table_presuspend_targets(struct dm_table *t)
1151{
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001152 if (!t)
1153 return;
1154
Adrian Bunke8488d02008-04-24 22:10:51 +01001155 suspend_targets(t, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156}
1157
1158void dm_table_postsuspend_targets(struct dm_table *t)
1159{
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001160 if (!t)
1161 return;
1162
Adrian Bunke8488d02008-04-24 22:10:51 +01001163 suspend_targets(t, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164}
1165
Milan Broz8757b772006-10-03 01:15:36 -07001166int dm_table_resume_targets(struct dm_table *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167{
Milan Broz8757b772006-10-03 01:15:36 -07001168 int i, r = 0;
1169
1170 for (i = 0; i < t->num_targets; i++) {
1171 struct dm_target *ti = t->targets + i;
1172
1173 if (!ti->type->preresume)
1174 continue;
1175
1176 r = ti->type->preresume(ti);
1177 if (r)
1178 return r;
1179 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
1181 for (i = 0; i < t->num_targets; i++) {
1182 struct dm_target *ti = t->targets + i;
1183
1184 if (ti->type->resume)
1185 ti->type->resume(ti);
1186 }
Milan Broz8757b772006-10-03 01:15:36 -07001187
1188 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189}
1190
1191int dm_table_any_congested(struct dm_table *t, int bdi_bits)
1192{
Mikulas Patocka82b15192008-10-10 13:37:09 +01001193 struct dm_dev_internal *dd;
Paul Jimenezafb24522008-02-08 02:09:59 +00001194 struct list_head *devices = dm_table_get_devices(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 int r = 0;
1196
Paul Jimenezafb24522008-02-08 02:09:59 +00001197 list_for_each_entry(dd, devices, list) {
Mikulas Patocka82b15192008-10-10 13:37:09 +01001198 struct request_queue *q = bdev_get_queue(dd->dm_dev.bdev);
Alasdair G Kergon0c2322e2008-10-10 13:37:13 +01001199 char b[BDEVNAME_SIZE];
1200
1201 if (likely(q))
1202 r |= bdi_congested(&q->backing_dev_info, bdi_bits);
1203 else
1204 DMWARN_LIMIT("%s: any_congested: nonexistent device %s",
1205 dm_device_name(t->md),
1206 bdevname(dd->dm_dev.bdev, b));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 }
1208
1209 return r;
1210}
1211
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001212int dm_table_any_busy_target(struct dm_table *t)
1213{
1214 unsigned i;
1215 struct dm_target *ti;
1216
1217 for (i = 0; i < t->num_targets; i++) {
1218 ti = t->targets + i;
1219 if (ti->type->busy && ti->type->busy(ti))
1220 return 1;
1221 }
1222
1223 return 0;
1224}
1225
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226void dm_table_unplug_all(struct dm_table *t)
1227{
Mikulas Patocka82b15192008-10-10 13:37:09 +01001228 struct dm_dev_internal *dd;
Paul Jimenezafb24522008-02-08 02:09:59 +00001229 struct list_head *devices = dm_table_get_devices(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
Paul Jimenezafb24522008-02-08 02:09:59 +00001231 list_for_each_entry(dd, devices, list) {
Mikulas Patocka82b15192008-10-10 13:37:09 +01001232 struct request_queue *q = bdev_get_queue(dd->dm_dev.bdev);
Alasdair G Kergon0c2322e2008-10-10 13:37:13 +01001233 char b[BDEVNAME_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
Alasdair G Kergon0c2322e2008-10-10 13:37:13 +01001235 if (likely(q))
1236 blk_unplug(q);
1237 else
1238 DMWARN_LIMIT("%s: Cannot unplug nonexistent device %s",
1239 dm_device_name(t->md),
1240 bdevname(dd->dm_dev.bdev, b));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 }
1242}
1243
Mike Anderson1134e5a2006-03-27 01:17:54 -08001244struct mapped_device *dm_table_get_md(struct dm_table *t)
1245{
1246 dm_get(t->md);
1247
1248 return t->md;
1249}
1250
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251EXPORT_SYMBOL(dm_vcalloc);
1252EXPORT_SYMBOL(dm_get_device);
1253EXPORT_SYMBOL(dm_put_device);
1254EXPORT_SYMBOL(dm_table_event);
Alasdair G Kergond5e404c2005-07-12 15:53:05 -07001255EXPORT_SYMBOL(dm_table_get_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256EXPORT_SYMBOL(dm_table_get_mode);
Mike Anderson1134e5a2006-03-27 01:17:54 -08001257EXPORT_SYMBOL(dm_table_get_md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258EXPORT_SYMBOL(dm_table_put);
1259EXPORT_SYMBOL(dm_table_get);
1260EXPORT_SYMBOL(dm_table_unplug_all);