blob: 36142e947ffc3ea84f8446d6665ea9968930f1ea [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2001, 2002 Sistina Software (UK) Limited.
Milan Broz784aae72009-01-06 03:05:12 +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"
Mike Anderson51e5b2b2007-10-19 22:48:00 +01009#include "dm-uevent.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
11#include <linux/init.h>
12#include <linux/module.h>
Arjan van de Ven48c9c272006-03-27 01:18:20 -080013#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/moduleparam.h>
15#include <linux/blkpg.h>
16#include <linux/bio.h>
17#include <linux/buffer_head.h>
18#include <linux/mempool.h>
19#include <linux/slab.h>
20#include <linux/idr.h>
Darrick J. Wong3ac51e72006-03-27 01:17:54 -080021#include <linux/hdreg.h>
Li Zefan55782132009-06-09 13:43:05 +080022
23#include <trace/events/block.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Alasdair G Kergon72d94862006-06-26 00:27:35 -070025#define DM_MSG_PREFIX "core"
26
Linus Torvalds1da177e2005-04-16 15:20:36 -070027static const char *_name = DM_NAME;
28
29static unsigned int major = 0;
30static unsigned int _major = 0;
31
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -070032static DEFINE_SPINLOCK(_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070033/*
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000034 * For bio-based dm.
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 * One of these is allocated per bio.
36 */
37struct dm_io {
38 struct mapped_device *md;
39 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 atomic_t io_count;
Richard Kennedy6ae2fa62008-07-21 12:00:28 +010041 struct bio *bio;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -080042 unsigned long start_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043};
44
45/*
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000046 * For bio-based dm.
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 * One of these is allocated per target within a bio. Hopefully
48 * this will be simplified out one day.
49 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +010050struct dm_target_io {
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 struct dm_io *io;
52 struct dm_target *ti;
53 union map_info info;
54};
55
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +000056/*
57 * For request-based dm.
58 * One of these is allocated per request.
59 */
60struct dm_rq_target_io {
61 struct mapped_device *md;
62 struct dm_target *ti;
63 struct request *orig, clone;
64 int error;
65 union map_info info;
66};
67
68/*
69 * For request-based dm.
70 * One of these is allocated per bio.
71 */
72struct dm_rq_clone_bio_info {
73 struct bio *orig;
74 struct request *rq;
75};
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077union map_info *dm_get_mapinfo(struct bio *bio)
78{
Alasdair G Kergon17b2f662006-06-26 00:27:33 -070079 if (bio && bio->bi_private)
Alasdair G Kergon028867a2007-07-12 17:26:32 +010080 return &((struct dm_target_io *)bio->bi_private)->info;
Alasdair G Kergon17b2f662006-06-26 00:27:33 -070081 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082}
83
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -070084#define MINOR_ALLOCED ((void *)-1)
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086/*
87 * Bits for the md->flags field.
88 */
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +010089#define DMF_BLOCK_IO_FOR_SUSPEND 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070090#define DMF_SUSPENDED 1
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -080091#define DMF_FROZEN 2
Jeff Mahoneyfba9f902006-06-26 00:27:23 -070092#define DMF_FREEING 3
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -070093#define DMF_DELETING 4
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -080094#define DMF_NOFLUSH_SUSPENDING 5
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +010095#define DMF_QUEUE_IO_TO_THREAD 6
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Milan Broz304f3f62008-02-08 02:11:17 +000097/*
98 * Work processed by per-device workqueue.
99 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100struct mapped_device {
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700101 struct rw_semaphore io_lock;
Daniel Walkere61290a2008-02-08 02:10:08 +0000102 struct mutex suspend_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 rwlock_t map_lock;
104 atomic_t holders;
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700105 atomic_t open_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107 unsigned long flags;
108
Jens Axboe165125e2007-07-24 09:28:11 +0200109 struct request_queue *queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 struct gendisk *disk;
Mike Anderson7e51f252006-03-27 01:17:52 -0800111 char name[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
113 void *interface_ptr;
114
115 /*
116 * A list of ios that arrived while we were suspended.
117 */
118 atomic_t pending;
119 wait_queue_head_t wait;
Mikulas Patocka53d59142009-04-02 19:55:37 +0100120 struct work_struct work;
Kiyoshi Ueda74859362006-12-08 02:41:02 -0800121 struct bio_list deferred;
Mikulas Patocka022c2612009-04-02 19:55:39 +0100122 spinlock_t deferred_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
124 /*
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100125 * An error from the barrier request currently being processed.
126 */
127 int barrier_error;
128
129 /*
Milan Broz304f3f62008-02-08 02:11:17 +0000130 * Processing queue (flush/barriers)
131 */
132 struct workqueue_struct *wq;
133
134 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 * The current mapping.
136 */
137 struct dm_table *map;
138
139 /*
140 * io objects are allocated from here.
141 */
142 mempool_t *io_pool;
143 mempool_t *tio_pool;
144
Stefan Bader9faf4002006-10-03 01:15:41 -0700145 struct bio_set *bs;
146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 /*
148 * Event handling.
149 */
150 atomic_t event_nr;
151 wait_queue_head_t eventq;
Mike Anderson7a8c3d32007-10-19 22:48:01 +0100152 atomic_t uevent_seq;
153 struct list_head uevent_list;
154 spinlock_t uevent_lock; /* Protect access to uevent_list */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156 /*
157 * freeze/thaw support require holding onto a super block
158 */
159 struct super_block *frozen_sb;
Mikulas Patockadb8fef42009-06-22 10:12:15 +0100160 struct block_device *bdev;
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800161
162 /* forced geometry settings */
163 struct hd_geometry geometry;
Milan Broz784aae72009-01-06 03:05:12 +0000164
165 /* sysfs handle */
166 struct kobject kobj;
Mikulas Patocka52b1fd52009-06-22 10:12:21 +0100167
168 /* zero-length barrier that will be cloned and submitted to targets */
169 struct bio barrier_bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170};
171
172#define MIN_IOS 256
Christoph Lametere18b8902006-12-06 20:33:20 -0800173static struct kmem_cache *_io_cache;
174static struct kmem_cache *_tio_cache;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000175static struct kmem_cache *_rq_tio_cache;
176static struct kmem_cache *_rq_bio_info_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178static int __init local_init(void)
179{
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100180 int r = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 /* allocate a slab for the dm_ios */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100183 _io_cache = KMEM_CACHE(dm_io, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 if (!_io_cache)
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100185 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187 /* allocate a slab for the target ios */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100188 _tio_cache = KMEM_CACHE(dm_target_io, 0);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100189 if (!_tio_cache)
190 goto out_free_io_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000192 _rq_tio_cache = KMEM_CACHE(dm_rq_target_io, 0);
193 if (!_rq_tio_cache)
194 goto out_free_tio_cache;
195
196 _rq_bio_info_cache = KMEM_CACHE(dm_rq_clone_bio_info, 0);
197 if (!_rq_bio_info_cache)
198 goto out_free_rq_tio_cache;
199
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100200 r = dm_uevent_init();
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100201 if (r)
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000202 goto out_free_rq_bio_info_cache;
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 _major = major;
205 r = register_blkdev(_major, _name);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100206 if (r < 0)
207 goto out_uevent_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
209 if (!_major)
210 _major = r;
211
212 return 0;
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100213
214out_uevent_exit:
215 dm_uevent_exit();
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000216out_free_rq_bio_info_cache:
217 kmem_cache_destroy(_rq_bio_info_cache);
218out_free_rq_tio_cache:
219 kmem_cache_destroy(_rq_tio_cache);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100220out_free_tio_cache:
221 kmem_cache_destroy(_tio_cache);
222out_free_io_cache:
223 kmem_cache_destroy(_io_cache);
224
225 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226}
227
228static void local_exit(void)
229{
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000230 kmem_cache_destroy(_rq_bio_info_cache);
231 kmem_cache_destroy(_rq_tio_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 kmem_cache_destroy(_tio_cache);
233 kmem_cache_destroy(_io_cache);
Akinobu Mita00d59402007-07-17 04:03:46 -0700234 unregister_blkdev(_major, _name);
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100235 dm_uevent_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
237 _major = 0;
238
239 DMINFO("cleaned up");
240}
241
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000242static int (*_inits[])(void) __initdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 local_init,
244 dm_target_init,
245 dm_linear_init,
246 dm_stripe_init,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100247 dm_kcopyd_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 dm_interface_init,
249};
250
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000251static void (*_exits[])(void) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 local_exit,
253 dm_target_exit,
254 dm_linear_exit,
255 dm_stripe_exit,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100256 dm_kcopyd_exit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 dm_interface_exit,
258};
259
260static int __init dm_init(void)
261{
262 const int count = ARRAY_SIZE(_inits);
263
264 int r, i;
265
266 for (i = 0; i < count; i++) {
267 r = _inits[i]();
268 if (r)
269 goto bad;
270 }
271
272 return 0;
273
274 bad:
275 while (i--)
276 _exits[i]();
277
278 return r;
279}
280
281static void __exit dm_exit(void)
282{
283 int i = ARRAY_SIZE(_exits);
284
285 while (i--)
286 _exits[i]();
287}
288
289/*
290 * Block device functions
291 */
Al Virofe5f9f22008-03-02 10:29:31 -0500292static int dm_blk_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293{
294 struct mapped_device *md;
295
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700296 spin_lock(&_minor_lock);
297
Al Virofe5f9f22008-03-02 10:29:31 -0500298 md = bdev->bd_disk->private_data;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700299 if (!md)
300 goto out;
301
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700302 if (test_bit(DMF_FREEING, &md->flags) ||
303 test_bit(DMF_DELETING, &md->flags)) {
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700304 md = NULL;
305 goto out;
306 }
307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 dm_get(md);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700309 atomic_inc(&md->open_count);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700310
311out:
312 spin_unlock(&_minor_lock);
313
314 return md ? 0 : -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315}
316
Al Virofe5f9f22008-03-02 10:29:31 -0500317static int dm_blk_close(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
Al Virofe5f9f22008-03-02 10:29:31 -0500319 struct mapped_device *md = disk->private_data;
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700320 atomic_dec(&md->open_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 dm_put(md);
322 return 0;
323}
324
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700325int dm_open_count(struct mapped_device *md)
326{
327 return atomic_read(&md->open_count);
328}
329
330/*
331 * Guarantees nothing is using the device before it's deleted.
332 */
333int dm_lock_for_deletion(struct mapped_device *md)
334{
335 int r = 0;
336
337 spin_lock(&_minor_lock);
338
339 if (dm_open_count(md))
340 r = -EBUSY;
341 else
342 set_bit(DMF_DELETING, &md->flags);
343
344 spin_unlock(&_minor_lock);
345
346 return r;
347}
348
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800349static int dm_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
350{
351 struct mapped_device *md = bdev->bd_disk->private_data;
352
353 return dm_get_geometry(md, geo);
354}
355
Al Virofe5f9f22008-03-02 10:29:31 -0500356static int dm_blk_ioctl(struct block_device *bdev, fmode_t mode,
Milan Brozaa129a22006-10-03 01:15:15 -0700357 unsigned int cmd, unsigned long arg)
358{
Al Virofe5f9f22008-03-02 10:29:31 -0500359 struct mapped_device *md = bdev->bd_disk->private_data;
360 struct dm_table *map = dm_get_table(md);
Milan Brozaa129a22006-10-03 01:15:15 -0700361 struct dm_target *tgt;
362 int r = -ENOTTY;
363
Milan Brozaa129a22006-10-03 01:15:15 -0700364 if (!map || !dm_table_get_size(map))
365 goto out;
366
367 /* We only support devices that have a single target */
368 if (dm_table_get_num_targets(map) != 1)
369 goto out;
370
371 tgt = dm_table_get_target(map, 0);
372
373 if (dm_suspended(md)) {
374 r = -EAGAIN;
375 goto out;
376 }
377
378 if (tgt->type->ioctl)
Al Viro647b3d02007-08-28 22:15:59 -0400379 r = tgt->type->ioctl(tgt, cmd, arg);
Milan Brozaa129a22006-10-03 01:15:15 -0700380
381out:
382 dm_table_put(map);
383
Milan Brozaa129a22006-10-03 01:15:15 -0700384 return r;
385}
386
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100387static struct dm_io *alloc_io(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388{
389 return mempool_alloc(md->io_pool, GFP_NOIO);
390}
391
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100392static void free_io(struct mapped_device *md, struct dm_io *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393{
394 mempool_free(io, md->io_pool);
395}
396
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100397static void free_tio(struct mapped_device *md, struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398{
399 mempool_free(tio, md->tio_pool);
400}
401
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800402static void start_io_acct(struct dm_io *io)
403{
404 struct mapped_device *md = io->md;
Tejun Heoc9959052008-08-25 19:47:21 +0900405 int cpu;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800406
407 io->start_time = jiffies;
408
Tejun Heo074a7ac2008-08-25 19:56:14 +0900409 cpu = part_stat_lock();
410 part_round_stats(cpu, &dm_disk(md)->part0);
411 part_stat_unlock();
412 dm_disk(md)->part0.in_flight = atomic_inc_return(&md->pending);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800413}
414
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000415static void end_io_acct(struct dm_io *io)
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800416{
417 struct mapped_device *md = io->md;
418 struct bio *bio = io->bio;
419 unsigned long duration = jiffies - io->start_time;
Tejun Heoc9959052008-08-25 19:47:21 +0900420 int pending, cpu;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800421 int rw = bio_data_dir(bio);
422
Tejun Heo074a7ac2008-08-25 19:56:14 +0900423 cpu = part_stat_lock();
424 part_round_stats(cpu, &dm_disk(md)->part0);
425 part_stat_add(cpu, &dm_disk(md)->part0, ticks[rw], duration);
426 part_stat_unlock();
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800427
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100428 /*
429 * After this is decremented the bio must not be touched if it is
430 * a barrier.
431 */
Tejun Heo074a7ac2008-08-25 19:56:14 +0900432 dm_disk(md)->part0.in_flight = pending =
433 atomic_dec_return(&md->pending);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800434
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000435 /* nudge anyone waiting on suspend queue */
436 if (!pending)
437 wake_up(&md->wait);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800438}
439
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440/*
441 * Add the bio to the list of deferred io.
442 */
Mikulas Patocka92c63902009-04-09 00:27:15 +0100443static void queue_io(struct mapped_device *md, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444{
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700445 down_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
Mikulas Patocka022c2612009-04-02 19:55:39 +0100447 spin_lock_irq(&md->deferred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 bio_list_add(&md->deferred, bio);
Mikulas Patocka022c2612009-04-02 19:55:39 +0100449 spin_unlock_irq(&md->deferred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Mikulas Patocka92c63902009-04-09 00:27:15 +0100451 if (!test_and_set_bit(DMF_QUEUE_IO_TO_THREAD, &md->flags))
452 queue_work(md->wq, &md->work);
453
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700454 up_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455}
456
457/*
458 * Everyone (including functions in this file), should use this
459 * function to access the md->map field, and make sure they call
460 * dm_table_put() when finished.
461 */
462struct dm_table *dm_get_table(struct mapped_device *md)
463{
464 struct dm_table *t;
465
466 read_lock(&md->map_lock);
467 t = md->map;
468 if (t)
469 dm_table_get(t);
470 read_unlock(&md->map_lock);
471
472 return t;
473}
474
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800475/*
476 * Get the geometry associated with a dm device
477 */
478int dm_get_geometry(struct mapped_device *md, struct hd_geometry *geo)
479{
480 *geo = md->geometry;
481
482 return 0;
483}
484
485/*
486 * Set the geometry of a device.
487 */
488int dm_set_geometry(struct mapped_device *md, struct hd_geometry *geo)
489{
490 sector_t sz = (sector_t)geo->cylinders * geo->heads * geo->sectors;
491
492 if (geo->start > sz) {
493 DMWARN("Start sector is beyond the geometry limits.");
494 return -EINVAL;
495 }
496
497 md->geometry = *geo;
498
499 return 0;
500}
501
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502/*-----------------------------------------------------------------
503 * CRUD START:
504 * A more elegant soln is in the works that uses the queue
505 * merge fn, unfortunately there are a couple of changes to
506 * the block layer that I want to make for this. So in the
507 * interests of getting something for people to use I give
508 * you this clearly demarcated crap.
509 *---------------------------------------------------------------*/
510
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800511static int __noflush_suspending(struct mapped_device *md)
512{
513 return test_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
514}
515
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516/*
517 * Decrements the number of outstanding ios that a bio has been
518 * cloned into, completing the original io if necc.
519 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800520static void dec_pending(struct dm_io *io, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521{
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800522 unsigned long flags;
Milan Brozb35f8ca2009-03-16 17:44:36 +0000523 int io_error;
524 struct bio *bio;
525 struct mapped_device *md = io->md;
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800526
527 /* Push-back supersedes any I/O errors */
Milan Brozb35f8ca2009-03-16 17:44:36 +0000528 if (error && !(io->error > 0 && __noflush_suspending(md)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 io->error = error;
530
531 if (atomic_dec_and_test(&io->io_count)) {
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800532 if (io->error == DM_ENDIO_REQUEUE) {
533 /*
534 * Target requested pushing back the I/O.
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800535 */
Mikulas Patocka022c2612009-04-02 19:55:39 +0100536 spin_lock_irqsave(&md->deferred_lock, flags);
Mikulas Patocka2761e952009-06-22 10:12:18 +0100537 if (__noflush_suspending(md)) {
538 if (!bio_barrier(io->bio))
539 bio_list_add_head(&md->deferred,
540 io->bio);
541 } else
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800542 /* noflush suspend was interrupted. */
543 io->error = -EIO;
Mikulas Patocka022c2612009-04-02 19:55:39 +0100544 spin_unlock_irqrestore(&md->deferred_lock, flags);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800545 }
546
Milan Brozb35f8ca2009-03-16 17:44:36 +0000547 io_error = io->error;
548 bio = io->bio;
Jens Axboe2056a782006-03-23 20:00:26 +0100549
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100550 if (bio_barrier(bio)) {
551 /*
552 * There can be just one barrier request so we use
553 * a per-device variable for error reporting.
554 * Note that you can't touch the bio after end_io_acct
555 */
Mikulas Patockafdb95722009-06-22 10:12:19 +0100556 if (!md->barrier_error && io_error != -EOPNOTSUPP)
Mikulas Patocka5aa27812009-06-22 10:12:18 +0100557 md->barrier_error = io_error;
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100558 end_io_acct(io);
559 } else {
560 end_io_acct(io);
Milan Brozb35f8ca2009-03-16 17:44:36 +0000561
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100562 if (io_error != DM_ENDIO_REQUEUE) {
563 trace_block_bio_complete(md->queue, bio);
Milan Brozb35f8ca2009-03-16 17:44:36 +0000564
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100565 bio_endio(bio, io_error);
566 }
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800567 }
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100568
569 free_io(md, io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 }
571}
572
NeilBrown6712ecf2007-09-27 12:47:43 +0200573static void clone_endio(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574{
575 int r = 0;
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100576 struct dm_target_io *tio = bio->bi_private;
Milan Brozb35f8ca2009-03-16 17:44:36 +0000577 struct dm_io *io = tio->io;
Stefan Bader9faf4002006-10-03 01:15:41 -0700578 struct mapped_device *md = tio->io->md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 dm_endio_fn endio = tio->ti->type->end_io;
580
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 if (!bio_flagged(bio, BIO_UPTODATE) && !error)
582 error = -EIO;
583
584 if (endio) {
585 r = endio(tio->ti, bio, error, &tio->info);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800586 if (r < 0 || r == DM_ENDIO_REQUEUE)
587 /*
588 * error and requeue request are handled
589 * in dec_pending().
590 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 error = r;
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800592 else if (r == DM_ENDIO_INCOMPLETE)
593 /* The target will handle the io */
NeilBrown6712ecf2007-09-27 12:47:43 +0200594 return;
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800595 else if (r) {
596 DMWARN("unimplemented target endio return value: %d", r);
597 BUG();
598 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 }
600
Stefan Bader9faf4002006-10-03 01:15:41 -0700601 /*
602 * Store md for cleanup instead of tio which is about to get freed.
603 */
604 bio->bi_private = md->bs;
605
Stefan Bader9faf4002006-10-03 01:15:41 -0700606 free_tio(md, tio);
Milan Brozb35f8ca2009-03-16 17:44:36 +0000607 bio_put(bio);
608 dec_pending(io, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609}
610
611static sector_t max_io_len(struct mapped_device *md,
612 sector_t sector, struct dm_target *ti)
613{
614 sector_t offset = sector - ti->begin;
615 sector_t len = ti->len - offset;
616
617 /*
618 * Does the target need to split even further ?
619 */
620 if (ti->split_io) {
621 sector_t boundary;
622 boundary = ((offset + ti->split_io) & ~(ti->split_io - 1))
623 - offset;
624 if (len > boundary)
625 len = boundary;
626 }
627
628 return len;
629}
630
631static void __map_bio(struct dm_target *ti, struct bio *clone,
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100632 struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633{
634 int r;
Jens Axboe2056a782006-03-23 20:00:26 +0100635 sector_t sector;
Stefan Bader9faf4002006-10-03 01:15:41 -0700636 struct mapped_device *md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 clone->bi_end_io = clone_endio;
639 clone->bi_private = tio;
640
641 /*
642 * Map the clone. If r == 0 we don't need to do
643 * anything, the target has assumed ownership of
644 * this io.
645 */
646 atomic_inc(&tio->io->io_count);
Jens Axboe2056a782006-03-23 20:00:26 +0100647 sector = clone->bi_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 r = ti->type->map(ti, clone, &tio->info);
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800649 if (r == DM_MAPIO_REMAPPED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 /* the bio has been remapped so dispatch it */
Jens Axboe2056a782006-03-23 20:00:26 +0100651
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100652 trace_block_remap(bdev_get_queue(clone->bi_bdev), clone,
Alan D. Brunelle22a7c312009-05-04 16:35:08 -0400653 tio->io->bio->bi_bdev->bd_dev, sector);
Jens Axboe2056a782006-03-23 20:00:26 +0100654
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 generic_make_request(clone);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800656 } else if (r < 0 || r == DM_MAPIO_REQUEUE) {
657 /* error the io and bail out, or requeue it if needed */
Stefan Bader9faf4002006-10-03 01:15:41 -0700658 md = tio->io->md;
659 dec_pending(tio->io, r);
660 /*
661 * Store bio_set for cleanup.
662 */
663 clone->bi_private = md->bs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 bio_put(clone);
Stefan Bader9faf4002006-10-03 01:15:41 -0700665 free_tio(md, tio);
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800666 } else if (r) {
667 DMWARN("unimplemented target map return value: %d", r);
668 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 }
670}
671
672struct clone_info {
673 struct mapped_device *md;
674 struct dm_table *map;
675 struct bio *bio;
676 struct dm_io *io;
677 sector_t sector;
678 sector_t sector_count;
679 unsigned short idx;
680};
681
Peter Osterlund36763472005-09-06 15:16:42 -0700682static void dm_bio_destructor(struct bio *bio)
683{
Stefan Bader9faf4002006-10-03 01:15:41 -0700684 struct bio_set *bs = bio->bi_private;
685
686 bio_free(bio, bs);
Peter Osterlund36763472005-09-06 15:16:42 -0700687}
688
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689/*
690 * Creates a little bio that is just does part of a bvec.
691 */
692static struct bio *split_bvec(struct bio *bio, sector_t sector,
693 unsigned short idx, unsigned int offset,
Stefan Bader9faf4002006-10-03 01:15:41 -0700694 unsigned int len, struct bio_set *bs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695{
696 struct bio *clone;
697 struct bio_vec *bv = bio->bi_io_vec + idx;
698
Stefan Bader9faf4002006-10-03 01:15:41 -0700699 clone = bio_alloc_bioset(GFP_NOIO, 1, bs);
Peter Osterlund36763472005-09-06 15:16:42 -0700700 clone->bi_destructor = dm_bio_destructor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 *clone->bi_io_vec = *bv;
702
703 clone->bi_sector = sector;
704 clone->bi_bdev = bio->bi_bdev;
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100705 clone->bi_rw = bio->bi_rw & ~(1 << BIO_RW_BARRIER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 clone->bi_vcnt = 1;
707 clone->bi_size = to_bytes(len);
708 clone->bi_io_vec->bv_offset = offset;
709 clone->bi_io_vec->bv_len = clone->bi_size;
Martin K. Petersenf3e1d262008-10-21 17:45:04 +0100710 clone->bi_flags |= 1 << BIO_CLONED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
Martin K. Petersen9c470082009-04-09 00:27:12 +0100712 if (bio_integrity(bio)) {
713 bio_integrity_clone(clone, bio, GFP_NOIO);
714 bio_integrity_trim(clone,
715 bio_sector_offset(bio, idx, offset), len);
716 }
717
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 return clone;
719}
720
721/*
722 * Creates a bio that consists of range of complete bvecs.
723 */
724static struct bio *clone_bio(struct bio *bio, sector_t sector,
725 unsigned short idx, unsigned short bv_count,
Stefan Bader9faf4002006-10-03 01:15:41 -0700726 unsigned int len, struct bio_set *bs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727{
728 struct bio *clone;
729
Stefan Bader9faf4002006-10-03 01:15:41 -0700730 clone = bio_alloc_bioset(GFP_NOIO, bio->bi_max_vecs, bs);
731 __bio_clone(clone, bio);
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100732 clone->bi_rw &= ~(1 << BIO_RW_BARRIER);
Stefan Bader9faf4002006-10-03 01:15:41 -0700733 clone->bi_destructor = dm_bio_destructor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 clone->bi_sector = sector;
735 clone->bi_idx = idx;
736 clone->bi_vcnt = idx + bv_count;
737 clone->bi_size = to_bytes(len);
738 clone->bi_flags &= ~(1 << BIO_SEG_VALID);
739
Martin K. Petersen9c470082009-04-09 00:27:12 +0100740 if (bio_integrity(bio)) {
741 bio_integrity_clone(clone, bio, GFP_NOIO);
742
743 if (idx != bio->bi_idx || clone->bi_size < bio->bi_size)
744 bio_integrity_trim(clone,
745 bio_sector_offset(bio, idx, 0), len);
746 }
747
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 return clone;
749}
750
Alasdair G Kergon9015df22009-06-22 10:12:21 +0100751static struct dm_target_io *alloc_tio(struct clone_info *ci,
752 struct dm_target *ti)
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +0100753{
Alasdair G Kergon9015df22009-06-22 10:12:21 +0100754 struct dm_target_io *tio = mempool_alloc(ci->md->tio_pool, GFP_NOIO);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +0100755
756 tio->io = ci->io;
757 tio->ti = ti;
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +0100758 memset(&tio->info, 0, sizeof(tio->info));
Alasdair G Kergon9015df22009-06-22 10:12:21 +0100759
760 return tio;
761}
762
763static void __flush_target(struct clone_info *ci, struct dm_target *ti,
764 unsigned flush_nr)
765{
766 struct dm_target_io *tio = alloc_tio(ci, ti);
767 struct bio *clone;
768
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +0100769 tio->info.flush_request = flush_nr;
770
771 clone = bio_alloc_bioset(GFP_NOIO, 0, ci->md->bs);
772 __bio_clone(clone, ci->bio);
773 clone->bi_destructor = dm_bio_destructor;
774
775 __map_bio(ti, clone, tio);
776}
777
778static int __clone_and_map_empty_barrier(struct clone_info *ci)
779{
780 unsigned target_nr = 0, flush_nr;
781 struct dm_target *ti;
782
783 while ((ti = dm_table_get_target(ci->map, target_nr++)))
784 for (flush_nr = 0; flush_nr < ti->num_flush_requests;
785 flush_nr++)
786 __flush_target(ci, ti, flush_nr);
787
788 ci->sector_count = 0;
789
790 return 0;
791}
792
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000793static int __clone_and_map(struct clone_info *ci)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794{
795 struct bio *clone, *bio = ci->bio;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000796 struct dm_target *ti;
797 sector_t len = 0, max;
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100798 struct dm_target_io *tio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +0100800 if (unlikely(bio_empty_barrier(bio)))
801 return __clone_and_map_empty_barrier(ci);
802
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000803 ti = dm_table_find_target(ci->map, ci->sector);
804 if (!dm_target_is_valid(ti))
805 return -EIO;
806
807 max = max_io_len(ci->md, ci->sector, ti);
808
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 /*
810 * Allocate a target io object.
811 */
Alasdair G Kergon9015df22009-06-22 10:12:21 +0100812 tio = alloc_tio(ci, ti);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
814 if (ci->sector_count <= max) {
815 /*
816 * Optimise for the simple case where we can do all of
817 * the remaining io with a single clone.
818 */
819 clone = clone_bio(bio, ci->sector, ci->idx,
Stefan Bader9faf4002006-10-03 01:15:41 -0700820 bio->bi_vcnt - ci->idx, ci->sector_count,
821 ci->md->bs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 __map_bio(ti, clone, tio);
823 ci->sector_count = 0;
824
825 } else if (to_sector(bio->bi_io_vec[ci->idx].bv_len) <= max) {
826 /*
827 * There are some bvecs that don't span targets.
828 * Do as many of these as possible.
829 */
830 int i;
831 sector_t remaining = max;
832 sector_t bv_len;
833
834 for (i = ci->idx; remaining && (i < bio->bi_vcnt); i++) {
835 bv_len = to_sector(bio->bi_io_vec[i].bv_len);
836
837 if (bv_len > remaining)
838 break;
839
840 remaining -= bv_len;
841 len += bv_len;
842 }
843
Stefan Bader9faf4002006-10-03 01:15:41 -0700844 clone = clone_bio(bio, ci->sector, ci->idx, i - ci->idx, len,
845 ci->md->bs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 __map_bio(ti, clone, tio);
847
848 ci->sector += len;
849 ci->sector_count -= len;
850 ci->idx = i;
851
852 } else {
853 /*
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800854 * Handle a bvec that must be split between two or more targets.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 */
856 struct bio_vec *bv = bio->bi_io_vec + ci->idx;
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800857 sector_t remaining = to_sector(bv->bv_len);
858 unsigned int offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800860 do {
861 if (offset) {
862 ti = dm_table_find_target(ci->map, ci->sector);
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000863 if (!dm_target_is_valid(ti))
864 return -EIO;
865
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800866 max = max_io_len(ci->md, ci->sector, ti);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
Alasdair G Kergon9015df22009-06-22 10:12:21 +0100868 tio = alloc_tio(ci, ti);
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800869 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800871 len = min(remaining, max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800873 clone = split_bvec(bio, ci->sector, ci->idx,
Stefan Bader9faf4002006-10-03 01:15:41 -0700874 bv->bv_offset + offset, len,
875 ci->md->bs);
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800876
877 __map_bio(ti, clone, tio);
878
879 ci->sector += len;
880 ci->sector_count -= len;
881 offset += to_bytes(len);
882 } while (remaining -= len);
883
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 ci->idx++;
885 }
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000886
887 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888}
889
890/*
Mikulas Patocka8a53c282009-04-02 19:55:37 +0100891 * Split the bio into several clones and submit it to targets.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 */
Mikulas Patockaf0b9a452009-04-02 19:55:38 +0100893static void __split_and_process_bio(struct mapped_device *md, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894{
895 struct clone_info ci;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000896 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
898 ci.map = dm_get_table(md);
Mikulas Patockaf0b9a452009-04-02 19:55:38 +0100899 if (unlikely(!ci.map)) {
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100900 if (!bio_barrier(bio))
901 bio_io_error(bio);
902 else
Mikulas Patocka5aa27812009-06-22 10:12:18 +0100903 if (!md->barrier_error)
904 md->barrier_error = -EIO;
Mikulas Patockaf0b9a452009-04-02 19:55:38 +0100905 return;
906 }
Mikulas Patocka692d0eb2009-04-09 00:27:13 +0100907
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 ci.md = md;
909 ci.bio = bio;
910 ci.io = alloc_io(md);
911 ci.io->error = 0;
912 atomic_set(&ci.io->io_count, 1);
913 ci.io->bio = bio;
914 ci.io->md = md;
915 ci.sector = bio->bi_sector;
916 ci.sector_count = bio_sectors(bio);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +0100917 if (unlikely(bio_empty_barrier(bio)))
918 ci.sector_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 ci.idx = bio->bi_idx;
920
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800921 start_io_acct(ci.io);
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000922 while (ci.sector_count && !error)
923 error = __clone_and_map(&ci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
925 /* drop the extra reference count */
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000926 dec_pending(ci.io, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 dm_table_put(ci.map);
928}
929/*-----------------------------------------------------------------
930 * CRUD END
931 *---------------------------------------------------------------*/
932
Milan Brozf6fccb12008-07-21 12:00:37 +0100933static int dm_merge_bvec(struct request_queue *q,
934 struct bvec_merge_data *bvm,
935 struct bio_vec *biovec)
936{
937 struct mapped_device *md = q->queuedata;
938 struct dm_table *map = dm_get_table(md);
939 struct dm_target *ti;
940 sector_t max_sectors;
Mikulas Patocka50371082008-10-01 14:39:17 +0100941 int max_size = 0;
Milan Brozf6fccb12008-07-21 12:00:37 +0100942
943 if (unlikely(!map))
Mikulas Patocka50371082008-10-01 14:39:17 +0100944 goto out;
Milan Brozf6fccb12008-07-21 12:00:37 +0100945
946 ti = dm_table_find_target(map, bvm->bi_sector);
Mikulas Patockab01cd5a2008-10-01 14:39:24 +0100947 if (!dm_target_is_valid(ti))
948 goto out_table;
Milan Brozf6fccb12008-07-21 12:00:37 +0100949
950 /*
951 * Find maximum amount of I/O that won't need splitting
952 */
953 max_sectors = min(max_io_len(md, bvm->bi_sector, ti),
954 (sector_t) BIO_MAX_SECTORS);
955 max_size = (max_sectors << SECTOR_SHIFT) - bvm->bi_size;
956 if (max_size < 0)
957 max_size = 0;
958
959 /*
960 * merge_bvec_fn() returns number of bytes
961 * it can accept at this offset
962 * max is precomputed maximal io size
963 */
964 if (max_size && ti->type->merge)
965 max_size = ti->type->merge(ti, bvm, biovec, max_size);
Mikulas Patocka8cbeb672009-06-22 10:12:14 +0100966 /*
967 * If the target doesn't support merge method and some of the devices
968 * provided their merge_bvec method (we know this by looking at
969 * queue_max_hw_sectors), then we can't allow bios with multiple vector
970 * entries. So always set max_size to 0, and the code below allows
971 * just one page.
972 */
973 else if (queue_max_hw_sectors(q) <= PAGE_SIZE >> 9)
974
975 max_size = 0;
Milan Brozf6fccb12008-07-21 12:00:37 +0100976
Mikulas Patockab01cd5a2008-10-01 14:39:24 +0100977out_table:
Mikulas Patocka50371082008-10-01 14:39:17 +0100978 dm_table_put(map);
979
980out:
Milan Brozf6fccb12008-07-21 12:00:37 +0100981 /*
982 * Always allow an entire first page
983 */
984 if (max_size <= biovec->bv_len && !(bvm->bi_size >> SECTOR_SHIFT))
985 max_size = biovec->bv_len;
986
Milan Brozf6fccb12008-07-21 12:00:37 +0100987 return max_size;
988}
989
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990/*
991 * The request function that just remaps the bio built up by
992 * dm_merge_bvec.
993 */
Jens Axboe165125e2007-07-24 09:28:11 +0200994static int dm_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995{
Kevin Corry12f03a42006-02-01 03:04:52 -0800996 int rw = bio_data_dir(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 struct mapped_device *md = q->queuedata;
Tejun Heoc9959052008-08-25 19:47:21 +0900998 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001000 down_read(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
Tejun Heo074a7ac2008-08-25 19:56:14 +09001002 cpu = part_stat_lock();
1003 part_stat_inc(cpu, &dm_disk(md)->part0, ios[rw]);
1004 part_stat_add(cpu, &dm_disk(md)->part0, sectors[rw], bio_sectors(bio));
1005 part_stat_unlock();
Kevin Corry12f03a42006-02-01 03:04:52 -08001006
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 /*
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01001008 * If we're suspended or the thread is processing barriers
1009 * we have to queue this io for later.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 */
Mikulas Patockaaf7e4662009-04-09 00:27:16 +01001011 if (unlikely(test_bit(DMF_QUEUE_IO_TO_THREAD, &md->flags)) ||
1012 unlikely(bio_barrier(bio))) {
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001013 up_read(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
Alasdair G Kergon54d9a1b2009-04-09 00:27:14 +01001015 if (unlikely(test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) &&
1016 bio_rw(bio) == READA) {
1017 bio_io_error(bio);
1018 return 0;
1019 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
Mikulas Patocka92c63902009-04-09 00:27:15 +01001021 queue_io(md, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
Mikulas Patocka92c63902009-04-09 00:27:15 +01001023 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 }
1025
Mikulas Patockaf0b9a452009-04-02 19:55:38 +01001026 __split_and_process_bio(md, bio);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001027 up_read(&md->io_lock);
Mikulas Patockaf0b9a452009-04-02 19:55:38 +01001028 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029}
1030
Jens Axboe165125e2007-07-24 09:28:11 +02001031static void dm_unplug_all(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032{
1033 struct mapped_device *md = q->queuedata;
1034 struct dm_table *map = dm_get_table(md);
1035
1036 if (map) {
1037 dm_table_unplug_all(map);
1038 dm_table_put(map);
1039 }
1040}
1041
1042static int dm_any_congested(void *congested_data, int bdi_bits)
1043{
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00001044 int r = bdi_bits;
1045 struct mapped_device *md = congested_data;
1046 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01001048 if (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00001049 map = dm_get_table(md);
1050 if (map) {
1051 r = dm_table_any_congested(map, bdi_bits);
1052 dm_table_put(map);
1053 }
1054 }
1055
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 return r;
1057}
1058
1059/*-----------------------------------------------------------------
1060 * An IDR is used to keep track of allocated minor numbers.
1061 *---------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062static DEFINE_IDR(_minor_idr);
1063
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001064static void free_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065{
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001066 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 idr_remove(&_minor_idr, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001068 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069}
1070
1071/*
1072 * See if the device with a specific minor # is free.
1073 */
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001074static int specific_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075{
1076 int r, m;
1077
1078 if (minor >= (1 << MINORBITS))
1079 return -EINVAL;
1080
Jeff Mahoney62f75c22006-06-26 00:27:21 -07001081 r = idr_pre_get(&_minor_idr, GFP_KERNEL);
1082 if (!r)
1083 return -ENOMEM;
1084
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001085 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086
1087 if (idr_find(&_minor_idr, minor)) {
1088 r = -EBUSY;
1089 goto out;
1090 }
1091
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001092 r = idr_get_new_above(&_minor_idr, MINOR_ALLOCED, minor, &m);
Jeff Mahoney62f75c22006-06-26 00:27:21 -07001093 if (r)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
1096 if (m != minor) {
1097 idr_remove(&_minor_idr, m);
1098 r = -EBUSY;
1099 goto out;
1100 }
1101
1102out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001103 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 return r;
1105}
1106
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001107static int next_free_minor(int *minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108{
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001109 int r, m;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 r = idr_pre_get(&_minor_idr, GFP_KERNEL);
Jeff Mahoney62f75c22006-06-26 00:27:21 -07001112 if (!r)
1113 return -ENOMEM;
1114
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001115 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001117 r = idr_get_new(&_minor_idr, MINOR_ALLOCED, &m);
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001118 if (r)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120
1121 if (m >= (1 << MINORBITS)) {
1122 idr_remove(&_minor_idr, m);
1123 r = -ENOSPC;
1124 goto out;
1125 }
1126
1127 *minor = m;
1128
1129out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001130 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 return r;
1132}
1133
1134static struct block_device_operations dm_blk_dops;
1135
Mikulas Patocka53d59142009-04-02 19:55:37 +01001136static void dm_wq_work(struct work_struct *work);
1137
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138/*
1139 * Allocate and initialise a blank device with a given minor.
1140 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001141static struct mapped_device *alloc_dev(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142{
1143 int r;
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001144 struct mapped_device *md = kzalloc(sizeof(*md), GFP_KERNEL);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001145 void *old_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
1147 if (!md) {
1148 DMWARN("unable to allocate device, out of memory.");
1149 return NULL;
1150 }
1151
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001152 if (!try_module_get(THIS_MODULE))
Milan Broz6ed7ade2008-02-08 02:10:19 +00001153 goto bad_module_get;
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001154
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 /* get a minor number for the dev */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001156 if (minor == DM_ANY_MINOR)
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001157 r = next_free_minor(&minor);
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001158 else
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001159 r = specific_minor(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 if (r < 0)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001161 goto bad_minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001163 init_rwsem(&md->io_lock);
Daniel Walkere61290a2008-02-08 02:10:08 +00001164 mutex_init(&md->suspend_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01001165 spin_lock_init(&md->deferred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 rwlock_init(&md->map_lock);
1167 atomic_set(&md->holders, 1);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -07001168 atomic_set(&md->open_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 atomic_set(&md->event_nr, 0);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001170 atomic_set(&md->uevent_seq, 0);
1171 INIT_LIST_HEAD(&md->uevent_list);
1172 spin_lock_init(&md->uevent_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173
1174 md->queue = blk_alloc_queue(GFP_KERNEL);
1175 if (!md->queue)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001176 goto bad_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
1178 md->queue->queuedata = md;
1179 md->queue->backing_dev_info.congested_fn = dm_any_congested;
1180 md->queue->backing_dev_info.congested_data = md;
1181 blk_queue_make_request(md->queue, dm_request);
Mikulas Patocka99360b42009-04-02 19:55:39 +01001182 blk_queue_ordered(md->queue, QUEUE_ORDERED_DRAIN, NULL);
Jens Axboedaef2652006-01-10 10:48:02 +01001183 blk_queue_bounce_limit(md->queue, BLK_BOUNCE_ANY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 md->queue->unplug_fn = dm_unplug_all;
Milan Brozf6fccb12008-07-21 12:00:37 +01001185 blk_queue_merge_bvec(md->queue, dm_merge_bvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
Matthew Dobson93d23412006-03-26 01:37:50 -08001187 md->io_pool = mempool_create_slab_pool(MIN_IOS, _io_cache);
Kiyoshi Ueda74859362006-12-08 02:41:02 -08001188 if (!md->io_pool)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001189 goto bad_io_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
Matthew Dobson93d23412006-03-26 01:37:50 -08001191 md->tio_pool = mempool_create_slab_pool(MIN_IOS, _tio_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 if (!md->tio_pool)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001193 goto bad_tio_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
Jens Axboebb799ca2008-12-10 15:35:05 +01001195 md->bs = bioset_create(16, 0);
Stefan Bader9faf4002006-10-03 01:15:41 -07001196 if (!md->bs)
1197 goto bad_no_bioset;
1198
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 md->disk = alloc_disk(1);
1200 if (!md->disk)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001201 goto bad_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07001203 atomic_set(&md->pending, 0);
1204 init_waitqueue_head(&md->wait);
Mikulas Patocka53d59142009-04-02 19:55:37 +01001205 INIT_WORK(&md->work, dm_wq_work);
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07001206 init_waitqueue_head(&md->eventq);
1207
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 md->disk->major = _major;
1209 md->disk->first_minor = minor;
1210 md->disk->fops = &dm_blk_dops;
1211 md->disk->queue = md->queue;
1212 md->disk->private_data = md;
1213 sprintf(md->disk->disk_name, "dm-%d", minor);
1214 add_disk(md->disk);
Mike Anderson7e51f252006-03-27 01:17:52 -08001215 format_dev_t(md->name, MKDEV(_major, minor));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
Milan Broz304f3f62008-02-08 02:11:17 +00001217 md->wq = create_singlethread_workqueue("kdmflush");
1218 if (!md->wq)
1219 goto bad_thread;
1220
Mikulas Patocka32a926d2009-06-22 10:12:17 +01001221 md->bdev = bdget_disk(md->disk, 0);
1222 if (!md->bdev)
1223 goto bad_bdev;
1224
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001225 /* Populate the mapping, nobody knows we exist yet */
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001226 spin_lock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001227 old_md = idr_replace(&_minor_idr, md, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001228 spin_unlock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001229
1230 BUG_ON(old_md != MINOR_ALLOCED);
1231
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 return md;
1233
Mikulas Patocka32a926d2009-06-22 10:12:17 +01001234bad_bdev:
1235 destroy_workqueue(md->wq);
Milan Broz304f3f62008-02-08 02:11:17 +00001236bad_thread:
1237 put_disk(md->disk);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001238bad_disk:
Stefan Bader9faf4002006-10-03 01:15:41 -07001239 bioset_free(md->bs);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001240bad_no_bioset:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 mempool_destroy(md->tio_pool);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001242bad_tio_pool:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 mempool_destroy(md->io_pool);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001244bad_io_pool:
Al Viro1312f402006-03-12 11:02:03 -05001245 blk_cleanup_queue(md->queue);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001246bad_queue:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 free_minor(minor);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001248bad_minor:
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001249 module_put(THIS_MODULE);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001250bad_module_get:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 kfree(md);
1252 return NULL;
1253}
1254
Jun'ichi Nomuraae9da832007-10-19 22:38:43 +01001255static void unlock_fs(struct mapped_device *md);
1256
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257static void free_dev(struct mapped_device *md)
1258{
Tejun Heof331c022008-09-03 09:01:48 +02001259 int minor = MINOR(disk_devt(md->disk));
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08001260
Mikulas Patocka32a926d2009-06-22 10:12:17 +01001261 unlock_fs(md);
1262 bdput(md->bdev);
Milan Broz304f3f62008-02-08 02:11:17 +00001263 destroy_workqueue(md->wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 mempool_destroy(md->tio_pool);
1265 mempool_destroy(md->io_pool);
Stefan Bader9faf4002006-10-03 01:15:41 -07001266 bioset_free(md->bs);
Martin K. Petersen9c470082009-04-09 00:27:12 +01001267 blk_integrity_unregister(md->disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 del_gendisk(md->disk);
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08001269 free_minor(minor);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001270
1271 spin_lock(&_minor_lock);
1272 md->disk->private_data = NULL;
1273 spin_unlock(&_minor_lock);
1274
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 put_disk(md->disk);
Al Viro1312f402006-03-12 11:02:03 -05001276 blk_cleanup_queue(md->queue);
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001277 module_put(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 kfree(md);
1279}
1280
1281/*
1282 * Bind a table to the device.
1283 */
1284static void event_callback(void *context)
1285{
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001286 unsigned long flags;
1287 LIST_HEAD(uevents);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 struct mapped_device *md = (struct mapped_device *) context;
1289
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001290 spin_lock_irqsave(&md->uevent_lock, flags);
1291 list_splice_init(&md->uevent_list, &uevents);
1292 spin_unlock_irqrestore(&md->uevent_lock, flags);
1293
Tejun Heoed9e1982008-08-25 19:56:05 +09001294 dm_send_uevents(&uevents, &disk_to_dev(md->disk)->kobj);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001295
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 atomic_inc(&md->event_nr);
1297 wake_up(&md->eventq);
1298}
1299
Alasdair G Kergon4e90188be2005-07-28 21:15:59 -07001300static void __set_size(struct mapped_device *md, sector_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301{
Alasdair G Kergon4e90188be2005-07-28 21:15:59 -07001302 set_capacity(md->disk, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
Mikulas Patockadb8fef42009-06-22 10:12:15 +01001304 mutex_lock(&md->bdev->bd_inode->i_mutex);
1305 i_size_write(md->bdev->bd_inode, (loff_t)size << SECTOR_SHIFT);
1306 mutex_unlock(&md->bdev->bd_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307}
1308
1309static int __bind(struct mapped_device *md, struct dm_table *t)
1310{
Jens Axboe165125e2007-07-24 09:28:11 +02001311 struct request_queue *q = md->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 sector_t size;
1313
1314 size = dm_table_get_size(t);
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08001315
1316 /*
1317 * Wipe any geometry if the size of the table changed.
1318 */
1319 if (size != get_capacity(md->disk))
1320 memset(&md->geometry, 0, sizeof(md->geometry));
1321
Mikulas Patocka32a926d2009-06-22 10:12:17 +01001322 __set_size(md, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
Mikulas Patockad5816872009-01-06 03:05:10 +00001324 if (!size) {
1325 dm_table_destroy(t);
1326 return 0;
1327 }
1328
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001329 dm_table_event_callback(t, event_callback, md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001330
1331 write_lock(&md->map_lock);
1332 md->map = t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 dm_table_set_restrictions(t, q);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001334 write_unlock(&md->map_lock);
1335
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 return 0;
1337}
1338
1339static void __unbind(struct mapped_device *md)
1340{
1341 struct dm_table *map = md->map;
1342
1343 if (!map)
1344 return;
1345
1346 dm_table_event_callback(map, NULL, NULL);
1347 write_lock(&md->map_lock);
1348 md->map = NULL;
1349 write_unlock(&md->map_lock);
Mikulas Patockad5816872009-01-06 03:05:10 +00001350 dm_table_destroy(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351}
1352
1353/*
1354 * Constructor for a new device.
1355 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001356int dm_create(int minor, struct mapped_device **result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357{
1358 struct mapped_device *md;
1359
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001360 md = alloc_dev(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 if (!md)
1362 return -ENXIO;
1363
Milan Broz784aae72009-01-06 03:05:12 +00001364 dm_sysfs_init(md);
1365
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 *result = md;
1367 return 0;
1368}
1369
David Teigland637842c2006-01-06 00:20:00 -08001370static struct mapped_device *dm_find_md(dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371{
1372 struct mapped_device *md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 unsigned minor = MINOR(dev);
1374
1375 if (MAJOR(dev) != _major || minor >= (1 << MINORBITS))
1376 return NULL;
1377
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001378 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
1380 md = idr_find(&_minor_idr, minor);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001381 if (md && (md == MINOR_ALLOCED ||
Tejun Heof331c022008-09-03 09:01:48 +02001382 (MINOR(disk_devt(dm_disk(md))) != minor) ||
Alasdair G Kergon17b2f662006-06-26 00:27:33 -07001383 test_bit(DMF_FREEING, &md->flags))) {
David Teigland637842c2006-01-06 00:20:00 -08001384 md = NULL;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001385 goto out;
1386 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001388out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001389 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
David Teigland637842c2006-01-06 00:20:00 -08001391 return md;
1392}
1393
David Teiglandd229a952006-01-06 00:20:01 -08001394struct mapped_device *dm_get_md(dev_t dev)
1395{
1396 struct mapped_device *md = dm_find_md(dev);
1397
1398 if (md)
1399 dm_get(md);
1400
1401 return md;
1402}
1403
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08001404void *dm_get_mdptr(struct mapped_device *md)
David Teigland637842c2006-01-06 00:20:00 -08001405{
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08001406 return md->interface_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407}
1408
1409void dm_set_mdptr(struct mapped_device *md, void *ptr)
1410{
1411 md->interface_ptr = ptr;
1412}
1413
1414void dm_get(struct mapped_device *md)
1415{
1416 atomic_inc(&md->holders);
1417}
1418
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001419const char *dm_device_name(struct mapped_device *md)
1420{
1421 return md->name;
1422}
1423EXPORT_SYMBOL_GPL(dm_device_name);
1424
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425void dm_put(struct mapped_device *md)
1426{
Mike Anderson1134e5a2006-03-27 01:17:54 -08001427 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001429 BUG_ON(test_bit(DMF_FREEING, &md->flags));
1430
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001431 if (atomic_dec_and_lock(&md->holders, &_minor_lock)) {
Mike Anderson1134e5a2006-03-27 01:17:54 -08001432 map = dm_get_table(md);
Tejun Heof331c022008-09-03 09:01:48 +02001433 idr_replace(&_minor_idr, MINOR_ALLOCED,
1434 MINOR(disk_devt(dm_disk(md))));
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001435 set_bit(DMF_FREEING, &md->flags);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001436 spin_unlock(&_minor_lock);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001437 if (!dm_suspended(md)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 dm_table_presuspend_targets(map);
1439 dm_table_postsuspend_targets(map);
1440 }
Milan Broz784aae72009-01-06 03:05:12 +00001441 dm_sysfs_exit(md);
Mike Anderson1134e5a2006-03-27 01:17:54 -08001442 dm_table_put(map);
Mikulas Patockaa1b51e92009-01-06 03:04:53 +00001443 __unbind(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 free_dev(md);
1445 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446}
Edward Goggin79eb8852007-05-09 02:32:56 -07001447EXPORT_SYMBOL_GPL(dm_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
Mikulas Patocka401600d2009-04-02 19:55:38 +01001449static int dm_wait_for_completion(struct mapped_device *md, int interruptible)
Milan Broz46125c12008-02-08 02:10:30 +00001450{
1451 int r = 0;
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01001452 DECLARE_WAITQUEUE(wait, current);
1453
1454 dm_unplug_all(md->queue);
1455
1456 add_wait_queue(&md->wait, &wait);
Milan Broz46125c12008-02-08 02:10:30 +00001457
1458 while (1) {
Mikulas Patocka401600d2009-04-02 19:55:38 +01001459 set_current_state(interruptible);
Milan Broz46125c12008-02-08 02:10:30 +00001460
1461 smp_mb();
1462 if (!atomic_read(&md->pending))
1463 break;
1464
Mikulas Patocka401600d2009-04-02 19:55:38 +01001465 if (interruptible == TASK_INTERRUPTIBLE &&
1466 signal_pending(current)) {
Milan Broz46125c12008-02-08 02:10:30 +00001467 r = -EINTR;
1468 break;
1469 }
1470
1471 io_schedule();
1472 }
1473 set_current_state(TASK_RUNNING);
1474
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01001475 remove_wait_queue(&md->wait, &wait);
1476
Milan Broz46125c12008-02-08 02:10:30 +00001477 return r;
1478}
1479
Mikulas Patocka531fe962009-06-22 10:12:17 +01001480static void dm_flush(struct mapped_device *md)
Mikulas Patockaaf7e4662009-04-09 00:27:16 +01001481{
1482 dm_wait_for_completion(md, TASK_UNINTERRUPTIBLE);
Mikulas Patocka52b1fd52009-06-22 10:12:21 +01001483
1484 bio_init(&md->barrier_bio);
1485 md->barrier_bio.bi_bdev = md->bdev;
1486 md->barrier_bio.bi_rw = WRITE_BARRIER;
1487 __split_and_process_bio(md, &md->barrier_bio);
1488
1489 dm_wait_for_completion(md, TASK_UNINTERRUPTIBLE);
Mikulas Patockaaf7e4662009-04-09 00:27:16 +01001490}
1491
1492static void process_barrier(struct mapped_device *md, struct bio *bio)
1493{
Mikulas Patocka5aa27812009-06-22 10:12:18 +01001494 md->barrier_error = 0;
1495
Mikulas Patocka531fe962009-06-22 10:12:17 +01001496 dm_flush(md);
Mikulas Patockaaf7e4662009-04-09 00:27:16 +01001497
Mikulas Patocka5aa27812009-06-22 10:12:18 +01001498 if (!bio_empty_barrier(bio)) {
1499 __split_and_process_bio(md, bio);
1500 dm_flush(md);
Mikulas Patockaaf7e4662009-04-09 00:27:16 +01001501 }
1502
Mikulas Patockaaf7e4662009-04-09 00:27:16 +01001503 if (md->barrier_error != DM_ENDIO_REQUEUE)
Mikulas Patocka531fe962009-06-22 10:12:17 +01001504 bio_endio(bio, md->barrier_error);
Mikulas Patocka2761e952009-06-22 10:12:18 +01001505 else {
1506 spin_lock_irq(&md->deferred_lock);
1507 bio_list_add_head(&md->deferred, bio);
1508 spin_unlock_irq(&md->deferred_lock);
1509 }
Mikulas Patockaaf7e4662009-04-09 00:27:16 +01001510}
1511
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512/*
1513 * Process the deferred bios
1514 */
Mikulas Patockaef208582009-04-02 19:55:38 +01001515static void dm_wq_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516{
Mikulas Patockaef208582009-04-02 19:55:38 +01001517 struct mapped_device *md = container_of(work, struct mapped_device,
1518 work);
Milan Broz6d6f10d2008-02-08 02:10:22 +00001519 struct bio *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
Mikulas Patockaef208582009-04-02 19:55:38 +01001521 down_write(&md->io_lock);
1522
Mikulas Patocka3b00b202009-04-09 00:27:15 +01001523 while (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01001524 spin_lock_irq(&md->deferred_lock);
1525 c = bio_list_pop(&md->deferred);
1526 spin_unlock_irq(&md->deferred_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01001527
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01001528 if (!c) {
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01001529 clear_bit(DMF_QUEUE_IO_TO_THREAD, &md->flags);
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01001530 break;
1531 }
1532
Mikulas Patocka3b00b202009-04-09 00:27:15 +01001533 up_write(&md->io_lock);
1534
Mikulas Patockaaf7e4662009-04-09 00:27:16 +01001535 if (bio_barrier(c))
1536 process_barrier(md, c);
1537 else
1538 __split_and_process_bio(md, c);
Mikulas Patocka3b00b202009-04-09 00:27:15 +01001539
1540 down_write(&md->io_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01001541 }
Milan Broz73d410c2008-02-08 02:10:25 +00001542
Mikulas Patockaef208582009-04-02 19:55:38 +01001543 up_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544}
1545
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01001546static void dm_queue_flush(struct mapped_device *md)
Milan Broz304f3f62008-02-08 02:11:17 +00001547{
Mikulas Patocka3b00b202009-04-09 00:27:15 +01001548 clear_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
1549 smp_mb__after_clear_bit();
Mikulas Patocka53d59142009-04-02 19:55:37 +01001550 queue_work(md->wq, &md->work);
Milan Broz304f3f62008-02-08 02:11:17 +00001551}
1552
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553/*
1554 * Swap in a new table (destroying old one).
1555 */
1556int dm_swap_table(struct mapped_device *md, struct dm_table *table)
1557{
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07001558 int r = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
Daniel Walkere61290a2008-02-08 02:10:08 +00001560 mutex_lock(&md->suspend_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561
1562 /* device must be suspended */
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001563 if (!dm_suspended(md))
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07001564 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565
1566 __unbind(md);
1567 r = __bind(md, table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07001569out:
Daniel Walkere61290a2008-02-08 02:10:08 +00001570 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07001571 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572}
1573
1574/*
1575 * Functions to lock and unlock any filesystem running on the
1576 * device.
1577 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001578static int lock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579{
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001580 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
1582 WARN_ON(md->frozen_sb);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07001583
Mikulas Patockadb8fef42009-06-22 10:12:15 +01001584 md->frozen_sb = freeze_bdev(md->bdev);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07001585 if (IS_ERR(md->frozen_sb)) {
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001586 r = PTR_ERR(md->frozen_sb);
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001587 md->frozen_sb = NULL;
1588 return r;
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07001589 }
1590
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08001591 set_bit(DMF_FROZEN, &md->flags);
1592
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 return 0;
1594}
1595
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001596static void unlock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597{
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08001598 if (!test_bit(DMF_FROZEN, &md->flags))
1599 return;
1600
Mikulas Patockadb8fef42009-06-22 10:12:15 +01001601 thaw_bdev(md->bdev, md->frozen_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 md->frozen_sb = NULL;
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08001603 clear_bit(DMF_FROZEN, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604}
1605
1606/*
1607 * We need to be able to change a mapping table under a mounted
1608 * filesystem. For example we might want to move some data in
1609 * the background. Before the table can be swapped with
1610 * dm_bind_table, dm_suspend must be called to flush any in
1611 * flight bios and ensure that any further io gets deferred.
1612 */
Kiyoshi Uedaa3d77d32006-12-08 02:41:04 -08001613int dm_suspend(struct mapped_device *md, unsigned suspend_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614{
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001615 struct dm_table *map = NULL;
Milan Broz46125c12008-02-08 02:10:30 +00001616 int r = 0;
Kiyoshi Uedaa3d77d32006-12-08 02:41:04 -08001617 int do_lockfs = suspend_flags & DM_SUSPEND_LOCKFS_FLAG ? 1 : 0;
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001618 int noflush = suspend_flags & DM_SUSPEND_NOFLUSH_FLAG ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619
Daniel Walkere61290a2008-02-08 02:10:08 +00001620 mutex_lock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001621
Milan Broz73d410c2008-02-08 02:10:25 +00001622 if (dm_suspended(md)) {
1623 r = -EINVAL;
Alasdair G Kergond2874832006-11-08 17:44:43 -08001624 goto out_unlock;
Milan Broz73d410c2008-02-08 02:10:25 +00001625 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626
1627 map = dm_get_table(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001629 /*
1630 * DMF_NOFLUSH_SUSPENDING must be set before presuspend.
1631 * This flag is cleared before dm_suspend returns.
1632 */
1633 if (noflush)
1634 set_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
1635
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001636 /* This does not get reverted if there's an error later. */
1637 dm_table_presuspend_targets(map);
1638
Mikulas Patocka32a926d2009-06-22 10:12:17 +01001639 /*
1640 * Flush I/O to the device. noflush supersedes do_lockfs,
1641 * because lock_fs() needs to flush I/Os.
1642 */
1643 if (!noflush && do_lockfs) {
1644 r = lock_fs(md);
1645 if (r)
Kiyoshi Uedaf431d962008-10-21 17:45:07 +01001646 goto out;
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08001647 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648
1649 /*
Mikulas Patocka3b00b202009-04-09 00:27:15 +01001650 * Here we must make sure that no processes are submitting requests
1651 * to target drivers i.e. no one may be executing
1652 * __split_and_process_bio. This is called from dm_request and
1653 * dm_wq_work.
1654 *
1655 * To get all processes out of __split_and_process_bio in dm_request,
1656 * we take the write lock. To prevent any process from reentering
1657 * __split_and_process_bio from dm_request, we set
1658 * DMF_QUEUE_IO_TO_THREAD.
1659 *
1660 * To quiesce the thread (dm_wq_work), we set DMF_BLOCK_IO_FOR_SUSPEND
1661 * and call flush_workqueue(md->wq). flush_workqueue will wait until
1662 * dm_wq_work exits and DMF_BLOCK_IO_FOR_SUSPEND will prevent any
1663 * further calls to __split_and_process_bio from dm_wq_work.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001665 down_write(&md->io_lock);
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01001666 set_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
1667 set_bit(DMF_QUEUE_IO_TO_THREAD, &md->flags);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001668 up_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669
Mikulas Patocka3b00b202009-04-09 00:27:15 +01001670 flush_workqueue(md->wq);
1671
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 /*
Mikulas Patocka3b00b202009-04-09 00:27:15 +01001673 * At this point no more requests are entering target request routines.
1674 * We call dm_wait_for_completion to wait for all existing requests
1675 * to finish.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 */
Mikulas Patocka401600d2009-04-02 19:55:38 +01001677 r = dm_wait_for_completion(md, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001679 down_write(&md->io_lock);
Milan Broz6d6f10d2008-02-08 02:10:22 +00001680 if (noflush)
Mikulas Patocka022c2612009-04-02 19:55:39 +01001681 clear_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
Milan Broz94d63512008-02-08 02:10:27 +00001682 up_write(&md->io_lock);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001683
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 /* were we interrupted ? */
Milan Broz46125c12008-02-08 02:10:30 +00001685 if (r < 0) {
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01001686 dm_queue_flush(md);
Milan Broz73d410c2008-02-08 02:10:25 +00001687
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001688 unlock_fs(md);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001689 goto out; /* pushback list is already flushed, so skip flush */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001690 }
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001691
Mikulas Patocka3b00b202009-04-09 00:27:15 +01001692 /*
1693 * If dm_wait_for_completion returned 0, the device is completely
1694 * quiescent now. There is no request-processing activity. All new
1695 * requests are being added to md->deferred list.
1696 */
1697
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001698 dm_table_postsuspend_targets(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699
1700 set_bit(DMF_SUSPENDED, &md->flags);
1701
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001702out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 dm_table_put(map);
Alasdair G Kergond2874832006-11-08 17:44:43 -08001704
1705out_unlock:
Daniel Walkere61290a2008-02-08 02:10:08 +00001706 mutex_unlock(&md->suspend_lock);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001707 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708}
1709
1710int dm_resume(struct mapped_device *md)
1711{
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001712 int r = -EINVAL;
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001713 struct dm_table *map = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714
Daniel Walkere61290a2008-02-08 02:10:08 +00001715 mutex_lock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001716 if (!dm_suspended(md))
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001717 goto out;
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001718
1719 map = dm_get_table(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001720 if (!map || !dm_table_get_size(map))
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001721 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722
Milan Broz8757b772006-10-03 01:15:36 -07001723 r = dm_table_resume_targets(map);
1724 if (r)
1725 goto out;
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001726
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01001727 dm_queue_flush(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001728
1729 unlock_fs(md);
1730
1731 clear_bit(DMF_SUSPENDED, &md->flags);
1732
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 dm_table_unplug_all(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734
Alasdair G Kergon69267a32007-12-13 14:15:57 +00001735 dm_kobject_uevent(md);
Hannes Reinecke8560ed62006-10-03 01:15:35 -07001736
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001737 r = 0;
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001738
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001739out:
1740 dm_table_put(map);
Daniel Walkere61290a2008-02-08 02:10:08 +00001741 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001742
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001743 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744}
1745
1746/*-----------------------------------------------------------------
1747 * Event notification.
1748 *---------------------------------------------------------------*/
Alasdair G Kergon69267a32007-12-13 14:15:57 +00001749void dm_kobject_uevent(struct mapped_device *md)
1750{
Tejun Heoed9e1982008-08-25 19:56:05 +09001751 kobject_uevent(&disk_to_dev(md->disk)->kobj, KOBJ_CHANGE);
Alasdair G Kergon69267a32007-12-13 14:15:57 +00001752}
1753
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001754uint32_t dm_next_uevent_seq(struct mapped_device *md)
1755{
1756 return atomic_add_return(1, &md->uevent_seq);
1757}
1758
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759uint32_t dm_get_event_nr(struct mapped_device *md)
1760{
1761 return atomic_read(&md->event_nr);
1762}
1763
1764int dm_wait_event(struct mapped_device *md, int event_nr)
1765{
1766 return wait_event_interruptible(md->eventq,
1767 (event_nr != atomic_read(&md->event_nr)));
1768}
1769
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001770void dm_uevent_add(struct mapped_device *md, struct list_head *elist)
1771{
1772 unsigned long flags;
1773
1774 spin_lock_irqsave(&md->uevent_lock, flags);
1775 list_add(elist, &md->uevent_list);
1776 spin_unlock_irqrestore(&md->uevent_lock, flags);
1777}
1778
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779/*
1780 * The gendisk is only valid as long as you have a reference
1781 * count on 'md'.
1782 */
1783struct gendisk *dm_disk(struct mapped_device *md)
1784{
1785 return md->disk;
1786}
1787
Milan Broz784aae72009-01-06 03:05:12 +00001788struct kobject *dm_kobject(struct mapped_device *md)
1789{
1790 return &md->kobj;
1791}
1792
1793/*
1794 * struct mapped_device should not be exported outside of dm.c
1795 * so use this check to verify that kobj is part of md structure
1796 */
1797struct mapped_device *dm_get_from_kobject(struct kobject *kobj)
1798{
1799 struct mapped_device *md;
1800
1801 md = container_of(kobj, struct mapped_device, kobj);
1802 if (&md->kobj != kobj)
1803 return NULL;
1804
Milan Broz4d89b7b2009-06-22 10:12:11 +01001805 if (test_bit(DMF_FREEING, &md->flags) ||
1806 test_bit(DMF_DELETING, &md->flags))
1807 return NULL;
1808
Milan Broz784aae72009-01-06 03:05:12 +00001809 dm_get(md);
1810 return md;
1811}
1812
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813int dm_suspended(struct mapped_device *md)
1814{
1815 return test_bit(DMF_SUSPENDED, &md->flags);
1816}
1817
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001818int dm_noflush_suspending(struct dm_target *ti)
1819{
1820 struct mapped_device *md = dm_table_get_md(ti->table);
1821 int r = __noflush_suspending(md);
1822
1823 dm_put(md);
1824
1825 return r;
1826}
1827EXPORT_SYMBOL_GPL(dm_noflush_suspending);
1828
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829static struct block_device_operations dm_blk_dops = {
1830 .open = dm_blk_open,
1831 .release = dm_blk_close,
Milan Brozaa129a22006-10-03 01:15:15 -07001832 .ioctl = dm_blk_ioctl,
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08001833 .getgeo = dm_blk_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 .owner = THIS_MODULE
1835};
1836
1837EXPORT_SYMBOL(dm_get_mapinfo);
1838
1839/*
1840 * module hooks
1841 */
1842module_init(dm_init);
1843module_exit(dm_exit);
1844
1845module_param(major, uint, 0);
1846MODULE_PARM_DESC(major, "The major number of the device mapper");
1847MODULE_DESCRIPTION(DM_NAME " driver");
1848MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
1849MODULE_LICENSE("GPL");