blob: aa60526075d7f2054d60cb137cefdc8876ec2c80 [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
Mikulas Patockad5816872009-01-06 03:05:10 +0000240 while (atomic_read(&t->holders))
241 msleep(1);
242 smp_mb();
243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 /* 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 */
Jonthan Brassow1b6da752009-06-22 10:12:29 +0100261 if (t->devices.next != &t->devices)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 free_devices(&t->devices);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +0100264 dm_free_md_mempools(t->mempools);
265
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 kfree(t);
267}
268
269void dm_table_get(struct dm_table *t)
270{
271 atomic_inc(&t->holders);
272}
273
274void dm_table_put(struct dm_table *t)
275{
276 if (!t)
277 return;
278
Mikulas Patockad5816872009-01-06 03:05:10 +0000279 smp_mb__before_atomic_dec();
280 atomic_dec(&t->holders);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281}
282
283/*
284 * Checks to see if we need to extend highs or targets.
285 */
286static inline int check_space(struct dm_table *t)
287{
288 if (t->num_targets >= t->num_allocated)
289 return alloc_targets(t, t->num_allocated * 2);
290
291 return 0;
292}
293
294/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 * See if we've already got a device in the list.
296 */
Mikulas Patocka82b15192008-10-10 13:37:09 +0100297static struct dm_dev_internal *find_device(struct list_head *l, dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
Mikulas Patocka82b15192008-10-10 13:37:09 +0100299 struct dm_dev_internal *dd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
301 list_for_each_entry (dd, l, list)
Mikulas Patocka82b15192008-10-10 13:37:09 +0100302 if (dd->dm_dev.bdev->bd_dev == dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 return dd;
304
305 return NULL;
306}
307
308/*
309 * Open a device so we can use it as a map destination.
310 */
Mikulas Patocka82b15192008-10-10 13:37:09 +0100311static int open_dev(struct dm_dev_internal *d, dev_t dev,
312 struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
314 static char *_claim_ptr = "I belong to device-mapper";
315 struct block_device *bdev;
316
317 int r;
318
Mikulas Patocka82b15192008-10-10 13:37:09 +0100319 BUG_ON(d->dm_dev.bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Mikulas Patocka82b15192008-10-10 13:37:09 +0100321 bdev = open_by_devnum(dev, d->dm_dev.mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 if (IS_ERR(bdev))
323 return PTR_ERR(bdev);
Jun'ichi Nomuraf1659212006-03-27 01:17:59 -0800324 r = bd_claim_by_disk(bdev, _claim_ptr, dm_disk(md));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 if (r)
Al Viro9a1c3542008-02-22 20:40:24 -0500326 blkdev_put(bdev, d->dm_dev.mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 else
Mikulas Patocka82b15192008-10-10 13:37:09 +0100328 d->dm_dev.bdev = bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 return r;
330}
331
332/*
333 * Close a device that we've been using.
334 */
Mikulas Patocka82b15192008-10-10 13:37:09 +0100335static void close_dev(struct dm_dev_internal *d, struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336{
Mikulas Patocka82b15192008-10-10 13:37:09 +0100337 if (!d->dm_dev.bdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 return;
339
Mikulas Patocka82b15192008-10-10 13:37:09 +0100340 bd_release_from_disk(d->dm_dev.bdev, dm_disk(md));
Al Viro9a1c3542008-02-22 20:40:24 -0500341 blkdev_put(d->dm_dev.bdev, d->dm_dev.mode);
Mikulas Patocka82b15192008-10-10 13:37:09 +0100342 d->dm_dev.bdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343}
344
345/*
Mikulas Patockaf6a1ed12009-09-04 20:40:22 +0100346 * If possible, this checks an area of a destination device is invalid.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 */
Mikulas Patockaf6a1ed12009-09-04 20:40:22 +0100348static int device_area_is_invalid(struct dm_target *ti, struct dm_dev *dev,
349 sector_t start, sector_t len, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350{
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100351 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;
Mike Snitzer02acc3a2009-06-22 10:12:30 +0100355 unsigned short logical_block_size_sectors =
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100356 limits->logical_block_size >> SECTOR_SHIFT;
Mike Snitzer02acc3a2009-06-22 10:12:30 +0100357 char b[BDEVNAME_SIZE];
Mike Anderson2cd54d92007-05-09 02:32:57 -0700358
359 if (!dev_size)
Mikulas Patockaf6a1ed12009-09-04 20:40:22 +0100360 return 0;
Mike Anderson2cd54d92007-05-09 02:32:57 -0700361
Mike Snitzer5dea2712009-07-23 20:30:42 +0100362 if ((start >= dev_size) || (start + len > dev_size)) {
Mike Snitzer02acc3a2009-06-22 10:12:30 +0100363 DMWARN("%s: %s too small for target",
364 dm_device_name(ti->table->md), bdevname(bdev, b));
Mikulas Patockaf6a1ed12009-09-04 20:40:22 +0100365 return 1;
Mike Snitzer02acc3a2009-06-22 10:12:30 +0100366 }
367
368 if (logical_block_size_sectors <= 1)
Mikulas Patockaf6a1ed12009-09-04 20:40:22 +0100369 return 0;
Mike Snitzer02acc3a2009-06-22 10:12:30 +0100370
371 if (start & (logical_block_size_sectors - 1)) {
372 DMWARN("%s: start=%llu not aligned to h/w "
373 "logical block size %hu of %s",
374 dm_device_name(ti->table->md),
375 (unsigned long long)start,
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100376 limits->logical_block_size, bdevname(bdev, b));
Mikulas Patockaf6a1ed12009-09-04 20:40:22 +0100377 return 1;
Mike Snitzer02acc3a2009-06-22 10:12:30 +0100378 }
379
Mike Snitzer5dea2712009-07-23 20:30:42 +0100380 if (len & (logical_block_size_sectors - 1)) {
Mike Snitzer02acc3a2009-06-22 10:12:30 +0100381 DMWARN("%s: len=%llu not aligned to h/w "
382 "logical block size %hu of %s",
383 dm_device_name(ti->table->md),
Mike Snitzer5dea2712009-07-23 20:30:42 +0100384 (unsigned long long)len,
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100385 limits->logical_block_size, bdevname(bdev, b));
Mikulas Patockaf6a1ed12009-09-04 20:40:22 +0100386 return 1;
Mike Snitzer02acc3a2009-06-22 10:12:30 +0100387 }
388
Mikulas Patockaf6a1ed12009-09-04 20:40:22 +0100389 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390}
391
392/*
Alasdair G Kergon570b9d92009-04-02 19:55:28 +0100393 * This upgrades the mode on an already open dm_dev, being
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 * careful to leave things as they were if we fail to reopen the
Alasdair G Kergon570b9d92009-04-02 19:55:28 +0100395 * device and not to touch the existing bdev field in case
396 * it is accessed concurrently inside dm_table_any_congested().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 */
Al Viroaeb5d722008-09-02 15:28:45 -0400398static int upgrade_mode(struct dm_dev_internal *dd, fmode_t new_mode,
Mikulas Patocka82b15192008-10-10 13:37:09 +0100399 struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400{
401 int r;
Alasdair G Kergon570b9d92009-04-02 19:55:28 +0100402 struct dm_dev_internal dd_new, dd_old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Alasdair G Kergon570b9d92009-04-02 19:55:28 +0100404 dd_new = dd_old = *dd;
405
406 dd_new.dm_dev.mode |= new_mode;
407 dd_new.dm_dev.bdev = NULL;
408
409 r = open_dev(&dd_new, dd->dm_dev.bdev->bd_dev, md);
410 if (r)
411 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
Mikulas Patocka82b15192008-10-10 13:37:09 +0100413 dd->dm_dev.mode |= new_mode;
Alasdair G Kergon570b9d92009-04-02 19:55:28 +0100414 close_dev(&dd_old, md);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
Alasdair G Kergon570b9d92009-04-02 19:55:28 +0100416 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417}
418
419/*
420 * Add a device to the list, or just increment the usage count if
421 * it's already present.
422 */
423static int __table_get_device(struct dm_table *t, struct dm_target *ti,
424 const char *path, sector_t start, sector_t len,
Al Viroaeb5d722008-09-02 15:28:45 -0400425 fmode_t mode, struct dm_dev **result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426{
427 int r;
Andrew Morton69a2ce72008-02-08 02:10:14 +0000428 dev_t uninitialized_var(dev);
Mikulas Patocka82b15192008-10-10 13:37:09 +0100429 struct dm_dev_internal *dd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 unsigned int major, minor;
431
Eric Sesterhenn547bc922006-03-26 18:22:50 +0200432 BUG_ON(!t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
434 if (sscanf(path, "%u:%u", &major, &minor) == 2) {
435 /* Extract the major/minor numbers */
436 dev = MKDEV(major, minor);
437 if (MAJOR(dev) != major || MINOR(dev) != minor)
438 return -EOVERFLOW;
439 } else {
440 /* convert the path to a device */
Christoph Hellwig72e82642008-08-11 00:24:08 +0200441 struct block_device *bdev = lookup_bdev(path);
442
443 if (IS_ERR(bdev))
444 return PTR_ERR(bdev);
445 dev = bdev->bd_dev;
446 bdput(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 }
448
449 dd = find_device(&t->devices, dev);
450 if (!dd) {
451 dd = kmalloc(sizeof(*dd), GFP_KERNEL);
452 if (!dd)
453 return -ENOMEM;
454
Mikulas Patocka82b15192008-10-10 13:37:09 +0100455 dd->dm_dev.mode = mode;
456 dd->dm_dev.bdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
Jun'ichi Nomuraf1659212006-03-27 01:17:59 -0800458 if ((r = open_dev(dd, dev, t->md))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 kfree(dd);
460 return r;
461 }
462
Mikulas Patocka82b15192008-10-10 13:37:09 +0100463 format_dev_t(dd->dm_dev.name, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
465 atomic_set(&dd->count, 0);
466 list_add(&dd->list, &t->devices);
467
Mikulas Patocka82b15192008-10-10 13:37:09 +0100468 } else if (dd->dm_dev.mode != (mode | dd->dm_dev.mode)) {
Jun'ichi Nomuraf1659212006-03-27 01:17:59 -0800469 r = upgrade_mode(dd, mode, t->md);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 if (r)
471 return r;
472 }
473 atomic_inc(&dd->count);
474
Mikulas Patocka82b15192008-10-10 13:37:09 +0100475 *result = &dd->dm_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 return 0;
477}
478
Mike Snitzer5ab97582009-06-22 10:12:32 +0100479/*
480 * Returns the minimum that is _not_ zero, unless both are zero.
481 */
482#define min_not_zero(l, r) (l == 0) ? r : ((r == 0) ? l : min(l, r))
483
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100484int dm_set_device_limits(struct dm_target *ti, struct dm_dev *dev,
Mike Snitzer5dea2712009-07-23 20:30:42 +0100485 sector_t start, sector_t len, void *data)
Bryn Reeves3cb40212006-10-03 01:15:42 -0700486{
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100487 struct queue_limits *limits = data;
488 struct block_device *bdev = dev->bdev;
Jens Axboe165125e2007-07-24 09:28:11 +0200489 struct request_queue *q = bdev_get_queue(bdev);
Alasdair G Kergon0c2322e2008-10-10 13:37:13 +0100490 char b[BDEVNAME_SIZE];
491
492 if (unlikely(!q)) {
493 DMWARN("%s: Cannot set limits for nonexistent device %s",
494 dm_device_name(ti->table->md), bdevname(bdev, b));
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100495 return 0;
Alasdair G Kergon0c2322e2008-10-10 13:37:13 +0100496 }
Bryn Reeves3cb40212006-10-03 01:15:42 -0700497
Mike Snitzerea9df472009-06-30 15:18:17 +0100498 if (blk_stack_limits(limits, &q->limits, start << 9) < 0)
Mike Snitzer5ab97582009-06-22 10:12:32 +0100499 DMWARN("%s: target device %s is misaligned",
500 dm_device_name(ti->table->md), bdevname(bdev, b));
Bryn Reeves3cb40212006-10-03 01:15:42 -0700501
Milan Broz9980c632008-07-21 12:00:39 +0100502 /*
503 * Check if merge fn is supported.
504 * If not we'll force DM to use PAGE_SIZE or
505 * smaller I/O, just to be safe.
Bryn Reeves3cb40212006-10-03 01:15:42 -0700506 */
Milan Broz9980c632008-07-21 12:00:39 +0100507
508 if (q->merge_bvec_fn && !ti->type->merge)
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100509 limits->max_sectors =
510 min_not_zero(limits->max_sectors,
Bryn Reeves3cb40212006-10-03 01:15:42 -0700511 (unsigned int) (PAGE_SIZE >> 9));
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100512 return 0;
Bryn Reeves3cb40212006-10-03 01:15:42 -0700513}
514EXPORT_SYMBOL_GPL(dm_set_device_limits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
516int dm_get_device(struct dm_target *ti, const char *path, sector_t start,
Al Viroaeb5d722008-09-02 15:28:45 -0400517 sector_t len, fmode_t mode, struct dm_dev **result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518{
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100519 return __table_get_device(ti->table, ti, path,
520 start, len, mode, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521}
522
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524/*
525 * Decrement a devices use count and remove it if necessary.
526 */
Mikulas Patocka82b15192008-10-10 13:37:09 +0100527void dm_put_device(struct dm_target *ti, struct dm_dev *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528{
Mikulas Patocka82b15192008-10-10 13:37:09 +0100529 struct dm_dev_internal *dd = container_of(d, struct dm_dev_internal,
530 dm_dev);
531
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 if (atomic_dec_and_test(&dd->count)) {
Jun'ichi Nomuraf1659212006-03-27 01:17:59 -0800533 close_dev(dd, ti->table->md);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 list_del(&dd->list);
535 kfree(dd);
536 }
537}
538
539/*
540 * Checks to see if the target joins onto the end of the table.
541 */
542static int adjoin(struct dm_table *table, struct dm_target *ti)
543{
544 struct dm_target *prev;
545
546 if (!table->num_targets)
547 return !ti->begin;
548
549 prev = &table->targets[table->num_targets - 1];
550 return (ti->begin == (prev->begin + prev->len));
551}
552
553/*
554 * Used to dynamically allocate the arg array.
555 */
556static char **realloc_argv(unsigned *array_size, char **old_argv)
557{
558 char **argv;
559 unsigned new_size;
560
561 new_size = *array_size ? *array_size * 2 : 64;
562 argv = kmalloc(new_size * sizeof(*argv), GFP_KERNEL);
563 if (argv) {
564 memcpy(argv, old_argv, *array_size * sizeof(*argv));
565 *array_size = new_size;
566 }
567
568 kfree(old_argv);
569 return argv;
570}
571
572/*
573 * Destructively splits up the argument list to pass to ctr.
574 */
575int dm_split_args(int *argc, char ***argvp, char *input)
576{
577 char *start, *end = input, *out, **argv = NULL;
578 unsigned array_size = 0;
579
580 *argc = 0;
David Teigland814d6862006-06-26 00:27:31 -0700581
582 if (!input) {
583 *argvp = NULL;
584 return 0;
585 }
586
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 argv = realloc_argv(&array_size, argv);
588 if (!argv)
589 return -ENOMEM;
590
591 while (1) {
592 start = end;
593
594 /* Skip whitespace */
595 while (*start && isspace(*start))
596 start++;
597
598 if (!*start)
599 break; /* success, we hit the end */
600
601 /* 'out' is used to remove any back-quotes */
602 end = out = start;
603 while (*end) {
604 /* Everything apart from '\0' can be quoted */
605 if (*end == '\\' && *(end + 1)) {
606 *out++ = *(end + 1);
607 end += 2;
608 continue;
609 }
610
611 if (isspace(*end))
612 break; /* end of token */
613
614 *out++ = *end++;
615 }
616
617 /* have we already filled the array ? */
618 if ((*argc + 1) > array_size) {
619 argv = realloc_argv(&array_size, argv);
620 if (!argv)
621 return -ENOMEM;
622 }
623
624 /* we know this is whitespace */
625 if (*end)
626 end++;
627
628 /* terminate the string and put it in the array */
629 *out = '\0';
630 argv[*argc] = start;
631 (*argc)++;
632 }
633
634 *argvp = argv;
635 return 0;
636}
637
Mike Snitzerbe6d4302009-06-22 10:12:31 +0100638/*
639 * Impose necessary and sufficient conditions on a devices's table such
640 * that any incoming bio which respects its logical_block_size can be
641 * processed successfully. If it falls across the boundary between
642 * two or more targets, the size of each piece it gets split into must
643 * be compatible with the logical_block_size of the target processing it.
644 */
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100645static int validate_hardware_logical_block_alignment(struct dm_table *table,
646 struct queue_limits *limits)
Mike Snitzerbe6d4302009-06-22 10:12:31 +0100647{
648 /*
649 * This function uses arithmetic modulo the logical_block_size
650 * (in units of 512-byte sectors).
651 */
652 unsigned short device_logical_block_size_sects =
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100653 limits->logical_block_size >> SECTOR_SHIFT;
Mike Snitzerbe6d4302009-06-22 10:12:31 +0100654
655 /*
656 * Offset of the start of the next table entry, mod logical_block_size.
657 */
658 unsigned short next_target_start = 0;
659
660 /*
661 * Given an aligned bio that extends beyond the end of a
662 * target, how many sectors must the next target handle?
663 */
664 unsigned short remaining = 0;
665
666 struct dm_target *uninitialized_var(ti);
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100667 struct queue_limits ti_limits;
Mike Snitzerbe6d4302009-06-22 10:12:31 +0100668 unsigned i = 0;
669
670 /*
671 * Check each entry in the table in turn.
672 */
673 while (i < dm_table_get_num_targets(table)) {
674 ti = dm_table_get_target(table, i++);
675
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100676 blk_set_default_limits(&ti_limits);
677
678 /* combine all target devices' limits */
679 if (ti->type->iterate_devices)
680 ti->type->iterate_devices(ti, dm_set_device_limits,
681 &ti_limits);
682
Mike Snitzerbe6d4302009-06-22 10:12:31 +0100683 /*
684 * If the remaining sectors fall entirely within this
685 * table entry are they compatible with its logical_block_size?
686 */
687 if (remaining < ti->len &&
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100688 remaining & ((ti_limits.logical_block_size >>
Mike Snitzerbe6d4302009-06-22 10:12:31 +0100689 SECTOR_SHIFT) - 1))
690 break; /* Error */
691
692 next_target_start =
693 (unsigned short) ((next_target_start + ti->len) &
694 (device_logical_block_size_sects - 1));
695 remaining = next_target_start ?
696 device_logical_block_size_sects - next_target_start : 0;
697 }
698
699 if (remaining) {
700 DMWARN("%s: table line %u (start sect %llu len %llu) "
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100701 "not aligned to h/w logical block size %hu",
Mike Snitzerbe6d4302009-06-22 10:12:31 +0100702 dm_device_name(table->md), i,
703 (unsigned long long) ti->begin,
704 (unsigned long long) ti->len,
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100705 limits->logical_block_size);
Mike Snitzerbe6d4302009-06-22 10:12:31 +0100706 return -EINVAL;
707 }
708
709 return 0;
710}
711
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712int dm_table_add_target(struct dm_table *t, const char *type,
713 sector_t start, sector_t len, char *params)
714{
715 int r = -EINVAL, argc;
716 char **argv;
717 struct dm_target *tgt;
718
719 if ((r = check_space(t)))
720 return r;
721
722 tgt = t->targets + t->num_targets;
723 memset(tgt, 0, sizeof(*tgt));
724
725 if (!len) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700726 DMERR("%s: zero-length target", dm_device_name(t->md));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 return -EINVAL;
728 }
729
730 tgt->type = dm_get_target_type(type);
731 if (!tgt->type) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700732 DMERR("%s: %s: unknown target type", dm_device_name(t->md),
733 type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 return -EINVAL;
735 }
736
737 tgt->table = t;
738 tgt->begin = start;
739 tgt->len = len;
740 tgt->error = "Unknown error";
741
742 /*
743 * Does this target adjoin the previous one ?
744 */
745 if (!adjoin(t, tgt)) {
746 tgt->error = "Gap in table";
747 r = -EINVAL;
748 goto bad;
749 }
750
751 r = dm_split_args(&argc, &argv, params);
752 if (r) {
753 tgt->error = "couldn't split parameters (insufficient memory)";
754 goto bad;
755 }
756
757 r = tgt->type->ctr(tgt, argc, argv);
758 kfree(argv);
759 if (r)
760 goto bad;
761
762 t->highs[t->num_targets++] = tgt->begin + tgt->len - 1;
763
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 return 0;
765
766 bad:
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700767 DMERR("%s: %s: %s", dm_device_name(t->md), type, tgt->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 dm_put_target_type(tgt->type);
769 return r;
770}
771
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +0100772int dm_table_set_type(struct dm_table *t)
773{
774 unsigned i;
775 unsigned bio_based = 0, request_based = 0;
776 struct dm_target *tgt;
777 struct dm_dev_internal *dd;
778 struct list_head *devices;
779
780 for (i = 0; i < t->num_targets; i++) {
781 tgt = t->targets + i;
782 if (dm_target_request_based(tgt))
783 request_based = 1;
784 else
785 bio_based = 1;
786
787 if (bio_based && request_based) {
788 DMWARN("Inconsistent table: different target types"
789 " can't be mixed up");
790 return -EINVAL;
791 }
792 }
793
794 if (bio_based) {
795 /* We must use this table as bio-based */
796 t->type = DM_TYPE_BIO_BASED;
797 return 0;
798 }
799
800 BUG_ON(!request_based); /* No targets in this table */
801
802 /* Non-request-stackable devices can't be used for request-based dm */
803 devices = dm_table_get_devices(t);
804 list_for_each_entry(dd, devices, list) {
805 if (!blk_queue_stackable(bdev_get_queue(dd->dm_dev.bdev))) {
806 DMWARN("table load rejected: including"
807 " non-request-stackable devices");
808 return -EINVAL;
809 }
810 }
811
812 /*
813 * Request-based dm supports only tables that have a single target now.
814 * To support multiple targets, request splitting support is needed,
815 * and that needs lots of changes in the block-layer.
816 * (e.g. request completion process for partial completion.)
817 */
818 if (t->num_targets > 1) {
819 DMWARN("Request-based dm doesn't support multiple targets yet");
820 return -EINVAL;
821 }
822
823 t->type = DM_TYPE_REQUEST_BASED;
824
825 return 0;
826}
827
828unsigned dm_table_get_type(struct dm_table *t)
829{
830 return t->type;
831}
832
833bool dm_table_request_based(struct dm_table *t)
834{
835 return dm_table_get_type(t) == DM_TYPE_REQUEST_BASED;
836}
837
838int dm_table_alloc_md_mempools(struct dm_table *t)
839{
840 unsigned type = dm_table_get_type(t);
841
842 if (unlikely(type == DM_TYPE_NONE)) {
843 DMWARN("no table type is set, can't allocate mempools");
844 return -EINVAL;
845 }
846
847 t->mempools = dm_alloc_md_mempools(type);
848 if (!t->mempools)
849 return -ENOMEM;
850
851 return 0;
852}
853
854void dm_table_free_md_mempools(struct dm_table *t)
855{
856 dm_free_md_mempools(t->mempools);
857 t->mempools = NULL;
858}
859
860struct dm_md_mempools *dm_table_get_md_mempools(struct dm_table *t)
861{
862 return t->mempools;
863}
864
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865static int setup_indexes(struct dm_table *t)
866{
867 int i;
868 unsigned int total = 0;
869 sector_t *indexes;
870
871 /* allocate the space for *all* the indexes */
872 for (i = t->depth - 2; i >= 0; i--) {
873 t->counts[i] = dm_div_up(t->counts[i + 1], CHILDREN_PER_NODE);
874 total += t->counts[i];
875 }
876
877 indexes = (sector_t *) dm_vcalloc(total, (unsigned long) NODE_SIZE);
878 if (!indexes)
879 return -ENOMEM;
880
881 /* set up internal nodes, bottom-up */
Jun'ichi Nomura82d601dc2008-02-08 02:10:04 +0000882 for (i = t->depth - 2; i >= 0; i--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 t->index[i] = indexes;
884 indexes += (KEYS_PER_NODE * t->counts[i]);
885 setup_btree_index(i, t);
886 }
887
888 return 0;
889}
890
891/*
892 * Builds the btree to index the map.
893 */
894int dm_table_complete(struct dm_table *t)
895{
896 int r = 0;
897 unsigned int leaf_nodes;
898
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 /* how many indexes will the btree have ? */
900 leaf_nodes = dm_div_up(t->num_targets, KEYS_PER_NODE);
901 t->depth = 1 + int_log(leaf_nodes, CHILDREN_PER_NODE);
902
903 /* leaf layer has already been set up */
904 t->counts[t->depth - 1] = leaf_nodes;
905 t->index[t->depth - 1] = t->highs;
906
907 if (t->depth >= 2)
908 r = setup_indexes(t);
909
910 return r;
911}
912
Arjan van de Ven48c9c272006-03-27 01:18:20 -0800913static DEFINE_MUTEX(_event_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914void dm_table_event_callback(struct dm_table *t,
915 void (*fn)(void *), void *context)
916{
Arjan van de Ven48c9c272006-03-27 01:18:20 -0800917 mutex_lock(&_event_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 t->event_fn = fn;
919 t->event_context = context;
Arjan van de Ven48c9c272006-03-27 01:18:20 -0800920 mutex_unlock(&_event_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921}
922
923void dm_table_event(struct dm_table *t)
924{
925 /*
926 * You can no longer call dm_table_event() from interrupt
927 * context, use a bottom half instead.
928 */
929 BUG_ON(in_interrupt());
930
Arjan van de Ven48c9c272006-03-27 01:18:20 -0800931 mutex_lock(&_event_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 if (t->event_fn)
933 t->event_fn(t->event_context);
Arjan van de Ven48c9c272006-03-27 01:18:20 -0800934 mutex_unlock(&_event_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935}
936
937sector_t dm_table_get_size(struct dm_table *t)
938{
939 return t->num_targets ? (t->highs[t->num_targets - 1] + 1) : 0;
940}
941
942struct dm_target *dm_table_get_target(struct dm_table *t, unsigned int index)
943{
Milan Broz14353532006-06-26 00:27:27 -0700944 if (index >= t->num_targets)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 return NULL;
946
947 return t->targets + index;
948}
949
950/*
951 * Search the btree for the correct target.
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000952 *
953 * Caller should check returned pointer with dm_target_is_valid()
954 * to trap I/O beyond end of device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 */
956struct dm_target *dm_table_find_target(struct dm_table *t, sector_t sector)
957{
958 unsigned int l, n = 0, k = 0;
959 sector_t *node;
960
961 for (l = 0; l < t->depth; l++) {
962 n = get_child(n, k);
963 node = get_node(t, l, n);
964
965 for (k = 0; k < KEYS_PER_NODE; k++)
966 if (node[k] >= sector)
967 break;
968 }
969
970 return &t->targets[(KEYS_PER_NODE * n) + k];
971}
972
Martin K. Petersen9c470082009-04-09 00:27:12 +0100973/*
Mike Snitzer754c5fc2009-06-22 10:12:34 +0100974 * Establish the new table's queue_limits and validate them.
975 */
976int dm_calculate_queue_limits(struct dm_table *table,
977 struct queue_limits *limits)
978{
979 struct dm_target *uninitialized_var(ti);
980 struct queue_limits ti_limits;
981 unsigned i = 0;
982
983 blk_set_default_limits(limits);
984
985 while (i < dm_table_get_num_targets(table)) {
986 blk_set_default_limits(&ti_limits);
987
988 ti = dm_table_get_target(table, i++);
989
990 if (!ti->type->iterate_devices)
991 goto combine_limits;
992
993 /*
994 * Combine queue limits of all the devices this target uses.
995 */
996 ti->type->iterate_devices(ti, dm_set_device_limits,
997 &ti_limits);
998
999 /*
1000 * Check each device area is consistent with the target's
1001 * overall queue limits.
1002 */
Mikulas Patockaf6a1ed12009-09-04 20:40:22 +01001003 if (ti->type->iterate_devices(ti, device_area_is_invalid,
1004 &ti_limits))
Mike Snitzer754c5fc2009-06-22 10:12:34 +01001005 return -EINVAL;
1006
1007combine_limits:
1008 /*
1009 * Merge this target's queue limits into the overall limits
1010 * for the table.
1011 */
1012 if (blk_stack_limits(limits, &ti_limits, 0) < 0)
1013 DMWARN("%s: target device "
1014 "(start sect %llu len %llu) "
1015 "is misaligned",
1016 dm_device_name(table->md),
1017 (unsigned long long) ti->begin,
1018 (unsigned long long) ti->len);
1019 }
1020
1021 return validate_hardware_logical_block_alignment(table, limits);
1022}
1023
1024/*
Martin K. Petersen9c470082009-04-09 00:27:12 +01001025 * Set the integrity profile for this device if all devices used have
1026 * matching profiles.
1027 */
1028static void dm_table_set_integrity(struct dm_table *t)
1029{
1030 struct list_head *devices = dm_table_get_devices(t);
1031 struct dm_dev_internal *prev = NULL, *dd = NULL;
1032
1033 if (!blk_get_integrity(dm_disk(t->md)))
1034 return;
1035
1036 list_for_each_entry(dd, devices, list) {
1037 if (prev &&
1038 blk_integrity_compare(prev->dm_dev.bdev->bd_disk,
1039 dd->dm_dev.bdev->bd_disk) < 0) {
1040 DMWARN("%s: integrity not set: %s and %s mismatch",
1041 dm_device_name(t->md),
1042 prev->dm_dev.bdev->bd_disk->disk_name,
1043 dd->dm_dev.bdev->bd_disk->disk_name);
1044 goto no_integrity;
1045 }
1046 prev = dd;
1047 }
1048
1049 if (!prev || !bdev_get_integrity(prev->dm_dev.bdev))
1050 goto no_integrity;
1051
1052 blk_integrity_register(dm_disk(t->md),
1053 bdev_get_integrity(prev->dm_dev.bdev));
1054
1055 return;
1056
1057no_integrity:
1058 blk_integrity_register(dm_disk(t->md), NULL);
1059
1060 return;
1061}
1062
Mike Snitzer754c5fc2009-06-22 10:12:34 +01001063void dm_table_set_restrictions(struct dm_table *t, struct request_queue *q,
1064 struct queue_limits *limits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065{
1066 /*
Mike Snitzer754c5fc2009-06-22 10:12:34 +01001067 * Each target device in the table has a data area that should normally
1068 * be aligned such that the DM device's alignment_offset is 0.
1069 * FIXME: Propagate alignment_offsets up the stack and warn of
1070 * sub-optimal or inconsistent settings.
1071 */
1072 limits->alignment_offset = 0;
1073 limits->misaligned = 0;
1074
1075 /*
Mike Snitzer11977642009-06-22 10:12:32 +01001076 * Copy table's limits to the DM device's request_queue
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 */
Mike Snitzer754c5fc2009-06-22 10:12:34 +01001078 q->limits = *limits;
Jens Axboec9a3f6d2008-04-29 19:12:35 +02001079
Mike Snitzer754c5fc2009-06-22 10:12:34 +01001080 if (limits->no_cluster)
Jens Axboec9a3f6d2008-04-29 19:12:35 +02001081 queue_flag_clear_unlocked(QUEUE_FLAG_CLUSTER, q);
NeilBrown969429b2006-03-27 01:17:49 -08001082 else
Jens Axboec9a3f6d2008-04-29 19:12:35 +02001083 queue_flag_set_unlocked(QUEUE_FLAG_CLUSTER, q);
NeilBrown969429b2006-03-27 01:17:49 -08001084
Martin K. Petersen9c470082009-04-09 00:27:12 +01001085 dm_table_set_integrity(t);
Kiyoshi Uedae6ee8c02009-06-22 10:12:36 +01001086
1087 /*
1088 * QUEUE_FLAG_STACKABLE must be set after all queue settings are
1089 * visible to other CPUs because, once the flag is set, incoming bios
1090 * are processed by request-based dm, which refers to the queue
1091 * settings.
1092 * Until the flag set, bios are passed to bio-based dm and queued to
1093 * md->deferred where queue settings are not needed yet.
1094 * Those bios are passed to request-based dm at the resume time.
1095 */
1096 smp_mb();
1097 if (dm_table_request_based(t))
1098 queue_flag_set_unlocked(QUEUE_FLAG_STACKABLE, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099}
1100
1101unsigned int dm_table_get_num_targets(struct dm_table *t)
1102{
1103 return t->num_targets;
1104}
1105
1106struct list_head *dm_table_get_devices(struct dm_table *t)
1107{
1108 return &t->devices;
1109}
1110
Al Viroaeb5d722008-09-02 15:28:45 -04001111fmode_t dm_table_get_mode(struct dm_table *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112{
1113 return t->mode;
1114}
1115
1116static void suspend_targets(struct dm_table *t, unsigned postsuspend)
1117{
1118 int i = t->num_targets;
1119 struct dm_target *ti = t->targets;
1120
1121 while (i--) {
1122 if (postsuspend) {
1123 if (ti->type->postsuspend)
1124 ti->type->postsuspend(ti);
1125 } else if (ti->type->presuspend)
1126 ti->type->presuspend(ti);
1127
1128 ti++;
1129 }
1130}
1131
1132void dm_table_presuspend_targets(struct dm_table *t)
1133{
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001134 if (!t)
1135 return;
1136
Adrian Bunke8488d02008-04-24 22:10:51 +01001137 suspend_targets(t, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138}
1139
1140void dm_table_postsuspend_targets(struct dm_table *t)
1141{
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001142 if (!t)
1143 return;
1144
Adrian Bunke8488d02008-04-24 22:10:51 +01001145 suspend_targets(t, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146}
1147
Milan Broz8757b772006-10-03 01:15:36 -07001148int dm_table_resume_targets(struct dm_table *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149{
Milan Broz8757b772006-10-03 01:15:36 -07001150 int i, r = 0;
1151
1152 for (i = 0; i < t->num_targets; i++) {
1153 struct dm_target *ti = t->targets + i;
1154
1155 if (!ti->type->preresume)
1156 continue;
1157
1158 r = ti->type->preresume(ti);
1159 if (r)
1160 return r;
1161 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
1163 for (i = 0; i < t->num_targets; i++) {
1164 struct dm_target *ti = t->targets + i;
1165
1166 if (ti->type->resume)
1167 ti->type->resume(ti);
1168 }
Milan Broz8757b772006-10-03 01:15:36 -07001169
1170 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171}
1172
1173int dm_table_any_congested(struct dm_table *t, int bdi_bits)
1174{
Mikulas Patocka82b15192008-10-10 13:37:09 +01001175 struct dm_dev_internal *dd;
Paul Jimenezafb24522008-02-08 02:09:59 +00001176 struct list_head *devices = dm_table_get_devices(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 int r = 0;
1178
Paul Jimenezafb24522008-02-08 02:09:59 +00001179 list_for_each_entry(dd, devices, list) {
Mikulas Patocka82b15192008-10-10 13:37:09 +01001180 struct request_queue *q = bdev_get_queue(dd->dm_dev.bdev);
Alasdair G Kergon0c2322e2008-10-10 13:37:13 +01001181 char b[BDEVNAME_SIZE];
1182
1183 if (likely(q))
1184 r |= bdi_congested(&q->backing_dev_info, bdi_bits);
1185 else
1186 DMWARN_LIMIT("%s: any_congested: nonexistent device %s",
1187 dm_device_name(t->md),
1188 bdevname(dd->dm_dev.bdev, b));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 }
1190
1191 return r;
1192}
1193
Kiyoshi Uedacec47e32009-06-22 10:12:35 +01001194int dm_table_any_busy_target(struct dm_table *t)
1195{
1196 unsigned i;
1197 struct dm_target *ti;
1198
1199 for (i = 0; i < t->num_targets; i++) {
1200 ti = t->targets + i;
1201 if (ti->type->busy && ti->type->busy(ti))
1202 return 1;
1203 }
1204
1205 return 0;
1206}
1207
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208void dm_table_unplug_all(struct dm_table *t)
1209{
Mikulas Patocka82b15192008-10-10 13:37:09 +01001210 struct dm_dev_internal *dd;
Paul Jimenezafb24522008-02-08 02:09:59 +00001211 struct list_head *devices = dm_table_get_devices(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
Paul Jimenezafb24522008-02-08 02:09:59 +00001213 list_for_each_entry(dd, devices, list) {
Mikulas Patocka82b15192008-10-10 13:37:09 +01001214 struct request_queue *q = bdev_get_queue(dd->dm_dev.bdev);
Alasdair G Kergon0c2322e2008-10-10 13:37:13 +01001215 char b[BDEVNAME_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
Alasdair G Kergon0c2322e2008-10-10 13:37:13 +01001217 if (likely(q))
1218 blk_unplug(q);
1219 else
1220 DMWARN_LIMIT("%s: Cannot unplug nonexistent device %s",
1221 dm_device_name(t->md),
1222 bdevname(dd->dm_dev.bdev, b));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 }
1224}
1225
Mike Anderson1134e5a2006-03-27 01:17:54 -08001226struct mapped_device *dm_table_get_md(struct dm_table *t)
1227{
1228 dm_get(t->md);
1229
1230 return t->md;
1231}
1232
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233EXPORT_SYMBOL(dm_vcalloc);
1234EXPORT_SYMBOL(dm_get_device);
1235EXPORT_SYMBOL(dm_put_device);
1236EXPORT_SYMBOL(dm_table_event);
Alasdair G Kergond5e404c2005-07-12 15:53:05 -07001237EXPORT_SYMBOL(dm_table_get_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238EXPORT_SYMBOL(dm_table_get_mode);
Mike Anderson1134e5a2006-03-27 01:17:54 -08001239EXPORT_SYMBOL(dm_table_get_md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240EXPORT_SYMBOL(dm_table_put);
1241EXPORT_SYMBOL(dm_table_get);
1242EXPORT_SYMBOL(dm_table_unplug_all);