blob: edf9f2467691c10c07f4f23b26317e07aa4f57e6 [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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167};
168
169#define MIN_IOS 256
Christoph Lametere18b8902006-12-06 20:33:20 -0800170static struct kmem_cache *_io_cache;
171static struct kmem_cache *_tio_cache;
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000172static struct kmem_cache *_rq_tio_cache;
173static struct kmem_cache *_rq_bio_info_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175static int __init local_init(void)
176{
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100177 int r = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 /* allocate a slab for the dm_ios */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100180 _io_cache = KMEM_CACHE(dm_io, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 if (!_io_cache)
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100182 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
184 /* allocate a slab for the target ios */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100185 _tio_cache = KMEM_CACHE(dm_target_io, 0);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100186 if (!_tio_cache)
187 goto out_free_io_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000189 _rq_tio_cache = KMEM_CACHE(dm_rq_target_io, 0);
190 if (!_rq_tio_cache)
191 goto out_free_tio_cache;
192
193 _rq_bio_info_cache = KMEM_CACHE(dm_rq_clone_bio_info, 0);
194 if (!_rq_bio_info_cache)
195 goto out_free_rq_tio_cache;
196
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100197 r = dm_uevent_init();
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100198 if (r)
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000199 goto out_free_rq_bio_info_cache;
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 _major = major;
202 r = register_blkdev(_major, _name);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100203 if (r < 0)
204 goto out_uevent_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206 if (!_major)
207 _major = r;
208
209 return 0;
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100210
211out_uevent_exit:
212 dm_uevent_exit();
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000213out_free_rq_bio_info_cache:
214 kmem_cache_destroy(_rq_bio_info_cache);
215out_free_rq_tio_cache:
216 kmem_cache_destroy(_rq_tio_cache);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100217out_free_tio_cache:
218 kmem_cache_destroy(_tio_cache);
219out_free_io_cache:
220 kmem_cache_destroy(_io_cache);
221
222 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223}
224
225static void local_exit(void)
226{
Kiyoshi Ueda8fbf26a2009-01-06 03:05:06 +0000227 kmem_cache_destroy(_rq_bio_info_cache);
228 kmem_cache_destroy(_rq_tio_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 kmem_cache_destroy(_tio_cache);
230 kmem_cache_destroy(_io_cache);
Akinobu Mita00d59402007-07-17 04:03:46 -0700231 unregister_blkdev(_major, _name);
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100232 dm_uevent_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
234 _major = 0;
235
236 DMINFO("cleaned up");
237}
238
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000239static int (*_inits[])(void) __initdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 local_init,
241 dm_target_init,
242 dm_linear_init,
243 dm_stripe_init,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100244 dm_kcopyd_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 dm_interface_init,
246};
247
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000248static void (*_exits[])(void) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 local_exit,
250 dm_target_exit,
251 dm_linear_exit,
252 dm_stripe_exit,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100253 dm_kcopyd_exit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 dm_interface_exit,
255};
256
257static int __init dm_init(void)
258{
259 const int count = ARRAY_SIZE(_inits);
260
261 int r, i;
262
263 for (i = 0; i < count; i++) {
264 r = _inits[i]();
265 if (r)
266 goto bad;
267 }
268
269 return 0;
270
271 bad:
272 while (i--)
273 _exits[i]();
274
275 return r;
276}
277
278static void __exit dm_exit(void)
279{
280 int i = ARRAY_SIZE(_exits);
281
282 while (i--)
283 _exits[i]();
284}
285
286/*
287 * Block device functions
288 */
Al Virofe5f9f22008-03-02 10:29:31 -0500289static int dm_blk_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290{
291 struct mapped_device *md;
292
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700293 spin_lock(&_minor_lock);
294
Al Virofe5f9f22008-03-02 10:29:31 -0500295 md = bdev->bd_disk->private_data;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700296 if (!md)
297 goto out;
298
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700299 if (test_bit(DMF_FREEING, &md->flags) ||
300 test_bit(DMF_DELETING, &md->flags)) {
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700301 md = NULL;
302 goto out;
303 }
304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 dm_get(md);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700306 atomic_inc(&md->open_count);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700307
308out:
309 spin_unlock(&_minor_lock);
310
311 return md ? 0 : -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}
313
Al Virofe5f9f22008-03-02 10:29:31 -0500314static int dm_blk_close(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315{
Al Virofe5f9f22008-03-02 10:29:31 -0500316 struct mapped_device *md = disk->private_data;
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700317 atomic_dec(&md->open_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 dm_put(md);
319 return 0;
320}
321
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700322int dm_open_count(struct mapped_device *md)
323{
324 return atomic_read(&md->open_count);
325}
326
327/*
328 * Guarantees nothing is using the device before it's deleted.
329 */
330int dm_lock_for_deletion(struct mapped_device *md)
331{
332 int r = 0;
333
334 spin_lock(&_minor_lock);
335
336 if (dm_open_count(md))
337 r = -EBUSY;
338 else
339 set_bit(DMF_DELETING, &md->flags);
340
341 spin_unlock(&_minor_lock);
342
343 return r;
344}
345
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800346static int dm_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
347{
348 struct mapped_device *md = bdev->bd_disk->private_data;
349
350 return dm_get_geometry(md, geo);
351}
352
Al Virofe5f9f22008-03-02 10:29:31 -0500353static int dm_blk_ioctl(struct block_device *bdev, fmode_t mode,
Milan Brozaa129a22006-10-03 01:15:15 -0700354 unsigned int cmd, unsigned long arg)
355{
Al Virofe5f9f22008-03-02 10:29:31 -0500356 struct mapped_device *md = bdev->bd_disk->private_data;
357 struct dm_table *map = dm_get_table(md);
Milan Brozaa129a22006-10-03 01:15:15 -0700358 struct dm_target *tgt;
359 int r = -ENOTTY;
360
Milan Brozaa129a22006-10-03 01:15:15 -0700361 if (!map || !dm_table_get_size(map))
362 goto out;
363
364 /* We only support devices that have a single target */
365 if (dm_table_get_num_targets(map) != 1)
366 goto out;
367
368 tgt = dm_table_get_target(map, 0);
369
370 if (dm_suspended(md)) {
371 r = -EAGAIN;
372 goto out;
373 }
374
375 if (tgt->type->ioctl)
Al Viro647b3d02007-08-28 22:15:59 -0400376 r = tgt->type->ioctl(tgt, cmd, arg);
Milan Brozaa129a22006-10-03 01:15:15 -0700377
378out:
379 dm_table_put(map);
380
Milan Brozaa129a22006-10-03 01:15:15 -0700381 return r;
382}
383
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100384static struct dm_io *alloc_io(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385{
386 return mempool_alloc(md->io_pool, GFP_NOIO);
387}
388
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100389static void free_io(struct mapped_device *md, struct dm_io *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390{
391 mempool_free(io, md->io_pool);
392}
393
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100394static void free_tio(struct mapped_device *md, struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395{
396 mempool_free(tio, md->tio_pool);
397}
398
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800399static void start_io_acct(struct dm_io *io)
400{
401 struct mapped_device *md = io->md;
Tejun Heoc9959052008-08-25 19:47:21 +0900402 int cpu;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800403
404 io->start_time = jiffies;
405
Tejun Heo074a7ac2008-08-25 19:56:14 +0900406 cpu = part_stat_lock();
407 part_round_stats(cpu, &dm_disk(md)->part0);
408 part_stat_unlock();
409 dm_disk(md)->part0.in_flight = atomic_inc_return(&md->pending);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800410}
411
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000412static void end_io_acct(struct dm_io *io)
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800413{
414 struct mapped_device *md = io->md;
415 struct bio *bio = io->bio;
416 unsigned long duration = jiffies - io->start_time;
Tejun Heoc9959052008-08-25 19:47:21 +0900417 int pending, cpu;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800418 int rw = bio_data_dir(bio);
419
Tejun Heo074a7ac2008-08-25 19:56:14 +0900420 cpu = part_stat_lock();
421 part_round_stats(cpu, &dm_disk(md)->part0);
422 part_stat_add(cpu, &dm_disk(md)->part0, ticks[rw], duration);
423 part_stat_unlock();
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800424
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100425 /*
426 * After this is decremented the bio must not be touched if it is
427 * a barrier.
428 */
Tejun Heo074a7ac2008-08-25 19:56:14 +0900429 dm_disk(md)->part0.in_flight = pending =
430 atomic_dec_return(&md->pending);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800431
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000432 /* nudge anyone waiting on suspend queue */
433 if (!pending)
434 wake_up(&md->wait);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800435}
436
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437/*
438 * Add the bio to the list of deferred io.
439 */
Mikulas Patocka92c63902009-04-09 00:27:15 +0100440static void queue_io(struct mapped_device *md, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441{
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700442 down_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
Mikulas Patocka022c2612009-04-02 19:55:39 +0100444 spin_lock_irq(&md->deferred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 bio_list_add(&md->deferred, bio);
Mikulas Patocka022c2612009-04-02 19:55:39 +0100446 spin_unlock_irq(&md->deferred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
Mikulas Patocka92c63902009-04-09 00:27:15 +0100448 if (!test_and_set_bit(DMF_QUEUE_IO_TO_THREAD, &md->flags))
449 queue_work(md->wq, &md->work);
450
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700451 up_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452}
453
454/*
455 * Everyone (including functions in this file), should use this
456 * function to access the md->map field, and make sure they call
457 * dm_table_put() when finished.
458 */
459struct dm_table *dm_get_table(struct mapped_device *md)
460{
461 struct dm_table *t;
462
463 read_lock(&md->map_lock);
464 t = md->map;
465 if (t)
466 dm_table_get(t);
467 read_unlock(&md->map_lock);
468
469 return t;
470}
471
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800472/*
473 * Get the geometry associated with a dm device
474 */
475int dm_get_geometry(struct mapped_device *md, struct hd_geometry *geo)
476{
477 *geo = md->geometry;
478
479 return 0;
480}
481
482/*
483 * Set the geometry of a device.
484 */
485int dm_set_geometry(struct mapped_device *md, struct hd_geometry *geo)
486{
487 sector_t sz = (sector_t)geo->cylinders * geo->heads * geo->sectors;
488
489 if (geo->start > sz) {
490 DMWARN("Start sector is beyond the geometry limits.");
491 return -EINVAL;
492 }
493
494 md->geometry = *geo;
495
496 return 0;
497}
498
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499/*-----------------------------------------------------------------
500 * CRUD START:
501 * A more elegant soln is in the works that uses the queue
502 * merge fn, unfortunately there are a couple of changes to
503 * the block layer that I want to make for this. So in the
504 * interests of getting something for people to use I give
505 * you this clearly demarcated crap.
506 *---------------------------------------------------------------*/
507
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800508static int __noflush_suspending(struct mapped_device *md)
509{
510 return test_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
511}
512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513/*
514 * Decrements the number of outstanding ios that a bio has been
515 * cloned into, completing the original io if necc.
516 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800517static void dec_pending(struct dm_io *io, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518{
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800519 unsigned long flags;
Milan Brozb35f8ca2009-03-16 17:44:36 +0000520 int io_error;
521 struct bio *bio;
522 struct mapped_device *md = io->md;
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800523
524 /* Push-back supersedes any I/O errors */
Milan Brozb35f8ca2009-03-16 17:44:36 +0000525 if (error && !(io->error > 0 && __noflush_suspending(md)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 io->error = error;
527
528 if (atomic_dec_and_test(&io->io_count)) {
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800529 if (io->error == DM_ENDIO_REQUEUE) {
530 /*
531 * Target requested pushing back the I/O.
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800532 */
Mikulas Patocka022c2612009-04-02 19:55:39 +0100533 spin_lock_irqsave(&md->deferred_lock, flags);
Mikulas Patocka2761e952009-06-22 10:12:18 +0100534 if (__noflush_suspending(md)) {
535 if (!bio_barrier(io->bio))
536 bio_list_add_head(&md->deferred,
537 io->bio);
538 } else
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800539 /* noflush suspend was interrupted. */
540 io->error = -EIO;
Mikulas Patocka022c2612009-04-02 19:55:39 +0100541 spin_unlock_irqrestore(&md->deferred_lock, flags);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800542 }
543
Milan Brozb35f8ca2009-03-16 17:44:36 +0000544 io_error = io->error;
545 bio = io->bio;
Jens Axboe2056a782006-03-23 20:00:26 +0100546
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100547 if (bio_barrier(bio)) {
548 /*
549 * There can be just one barrier request so we use
550 * a per-device variable for error reporting.
551 * Note that you can't touch the bio after end_io_acct
552 */
Mikulas Patockafdb95722009-06-22 10:12:19 +0100553 if (!md->barrier_error && io_error != -EOPNOTSUPP)
Mikulas Patocka5aa27812009-06-22 10:12:18 +0100554 md->barrier_error = io_error;
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100555 end_io_acct(io);
556 } else {
557 end_io_acct(io);
Milan Brozb35f8ca2009-03-16 17:44:36 +0000558
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100559 if (io_error != DM_ENDIO_REQUEUE) {
560 trace_block_bio_complete(md->queue, bio);
Milan Brozb35f8ca2009-03-16 17:44:36 +0000561
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100562 bio_endio(bio, io_error);
563 }
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800564 }
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100565
566 free_io(md, io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 }
568}
569
NeilBrown6712ecf2007-09-27 12:47:43 +0200570static void clone_endio(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571{
572 int r = 0;
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100573 struct dm_target_io *tio = bio->bi_private;
Milan Brozb35f8ca2009-03-16 17:44:36 +0000574 struct dm_io *io = tio->io;
Stefan Bader9faf4002006-10-03 01:15:41 -0700575 struct mapped_device *md = tio->io->md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 dm_endio_fn endio = tio->ti->type->end_io;
577
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 if (!bio_flagged(bio, BIO_UPTODATE) && !error)
579 error = -EIO;
580
581 if (endio) {
582 r = endio(tio->ti, bio, error, &tio->info);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800583 if (r < 0 || r == DM_ENDIO_REQUEUE)
584 /*
585 * error and requeue request are handled
586 * in dec_pending().
587 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 error = r;
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800589 else if (r == DM_ENDIO_INCOMPLETE)
590 /* The target will handle the io */
NeilBrown6712ecf2007-09-27 12:47:43 +0200591 return;
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800592 else if (r) {
593 DMWARN("unimplemented target endio return value: %d", r);
594 BUG();
595 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 }
597
Stefan Bader9faf4002006-10-03 01:15:41 -0700598 /*
599 * Store md for cleanup instead of tio which is about to get freed.
600 */
601 bio->bi_private = md->bs;
602
Stefan Bader9faf4002006-10-03 01:15:41 -0700603 free_tio(md, tio);
Milan Brozb35f8ca2009-03-16 17:44:36 +0000604 bio_put(bio);
605 dec_pending(io, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606}
607
608static sector_t max_io_len(struct mapped_device *md,
609 sector_t sector, struct dm_target *ti)
610{
611 sector_t offset = sector - ti->begin;
612 sector_t len = ti->len - offset;
613
614 /*
615 * Does the target need to split even further ?
616 */
617 if (ti->split_io) {
618 sector_t boundary;
619 boundary = ((offset + ti->split_io) & ~(ti->split_io - 1))
620 - offset;
621 if (len > boundary)
622 len = boundary;
623 }
624
625 return len;
626}
627
628static void __map_bio(struct dm_target *ti, struct bio *clone,
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100629 struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630{
631 int r;
Jens Axboe2056a782006-03-23 20:00:26 +0100632 sector_t sector;
Stefan Bader9faf4002006-10-03 01:15:41 -0700633 struct mapped_device *md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 clone->bi_end_io = clone_endio;
636 clone->bi_private = tio;
637
638 /*
639 * Map the clone. If r == 0 we don't need to do
640 * anything, the target has assumed ownership of
641 * this io.
642 */
643 atomic_inc(&tio->io->io_count);
Jens Axboe2056a782006-03-23 20:00:26 +0100644 sector = clone->bi_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 r = ti->type->map(ti, clone, &tio->info);
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800646 if (r == DM_MAPIO_REMAPPED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 /* the bio has been remapped so dispatch it */
Jens Axboe2056a782006-03-23 20:00:26 +0100648
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100649 trace_block_remap(bdev_get_queue(clone->bi_bdev), clone,
Alan D. Brunelle22a7c312009-05-04 16:35:08 -0400650 tio->io->bio->bi_bdev->bd_dev, sector);
Jens Axboe2056a782006-03-23 20:00:26 +0100651
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 generic_make_request(clone);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800653 } else if (r < 0 || r == DM_MAPIO_REQUEUE) {
654 /* error the io and bail out, or requeue it if needed */
Stefan Bader9faf4002006-10-03 01:15:41 -0700655 md = tio->io->md;
656 dec_pending(tio->io, r);
657 /*
658 * Store bio_set for cleanup.
659 */
660 clone->bi_private = md->bs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 bio_put(clone);
Stefan Bader9faf4002006-10-03 01:15:41 -0700662 free_tio(md, tio);
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800663 } else if (r) {
664 DMWARN("unimplemented target map return value: %d", r);
665 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 }
667}
668
669struct clone_info {
670 struct mapped_device *md;
671 struct dm_table *map;
672 struct bio *bio;
673 struct dm_io *io;
674 sector_t sector;
675 sector_t sector_count;
676 unsigned short idx;
677};
678
Peter Osterlund36763472005-09-06 15:16:42 -0700679static void dm_bio_destructor(struct bio *bio)
680{
Stefan Bader9faf4002006-10-03 01:15:41 -0700681 struct bio_set *bs = bio->bi_private;
682
683 bio_free(bio, bs);
Peter Osterlund36763472005-09-06 15:16:42 -0700684}
685
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686/*
687 * Creates a little bio that is just does part of a bvec.
688 */
689static struct bio *split_bvec(struct bio *bio, sector_t sector,
690 unsigned short idx, unsigned int offset,
Stefan Bader9faf4002006-10-03 01:15:41 -0700691 unsigned int len, struct bio_set *bs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692{
693 struct bio *clone;
694 struct bio_vec *bv = bio->bi_io_vec + idx;
695
Stefan Bader9faf4002006-10-03 01:15:41 -0700696 clone = bio_alloc_bioset(GFP_NOIO, 1, bs);
Peter Osterlund36763472005-09-06 15:16:42 -0700697 clone->bi_destructor = dm_bio_destructor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 *clone->bi_io_vec = *bv;
699
700 clone->bi_sector = sector;
701 clone->bi_bdev = bio->bi_bdev;
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100702 clone->bi_rw = bio->bi_rw & ~(1 << BIO_RW_BARRIER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 clone->bi_vcnt = 1;
704 clone->bi_size = to_bytes(len);
705 clone->bi_io_vec->bv_offset = offset;
706 clone->bi_io_vec->bv_len = clone->bi_size;
Martin K. Petersenf3e1d262008-10-21 17:45:04 +0100707 clone->bi_flags |= 1 << BIO_CLONED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
Martin K. Petersen9c470082009-04-09 00:27:12 +0100709 if (bio_integrity(bio)) {
710 bio_integrity_clone(clone, bio, GFP_NOIO);
711 bio_integrity_trim(clone,
712 bio_sector_offset(bio, idx, offset), len);
713 }
714
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 return clone;
716}
717
718/*
719 * Creates a bio that consists of range of complete bvecs.
720 */
721static struct bio *clone_bio(struct bio *bio, sector_t sector,
722 unsigned short idx, unsigned short bv_count,
Stefan Bader9faf4002006-10-03 01:15:41 -0700723 unsigned int len, struct bio_set *bs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724{
725 struct bio *clone;
726
Stefan Bader9faf4002006-10-03 01:15:41 -0700727 clone = bio_alloc_bioset(GFP_NOIO, bio->bi_max_vecs, bs);
728 __bio_clone(clone, bio);
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100729 clone->bi_rw &= ~(1 << BIO_RW_BARRIER);
Stefan Bader9faf4002006-10-03 01:15:41 -0700730 clone->bi_destructor = dm_bio_destructor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 clone->bi_sector = sector;
732 clone->bi_idx = idx;
733 clone->bi_vcnt = idx + bv_count;
734 clone->bi_size = to_bytes(len);
735 clone->bi_flags &= ~(1 << BIO_SEG_VALID);
736
Martin K. Petersen9c470082009-04-09 00:27:12 +0100737 if (bio_integrity(bio)) {
738 bio_integrity_clone(clone, bio, GFP_NOIO);
739
740 if (idx != bio->bi_idx || clone->bi_size < bio->bi_size)
741 bio_integrity_trim(clone,
742 bio_sector_offset(bio, idx, 0), len);
743 }
744
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 return clone;
746}
747
Alasdair G Kergon9015df22009-06-22 10:12:21 +0100748static struct dm_target_io *alloc_tio(struct clone_info *ci,
749 struct dm_target *ti)
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +0100750{
Alasdair G Kergon9015df22009-06-22 10:12:21 +0100751 struct dm_target_io *tio = mempool_alloc(ci->md->tio_pool, GFP_NOIO);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +0100752
753 tio->io = ci->io;
754 tio->ti = ti;
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +0100755 memset(&tio->info, 0, sizeof(tio->info));
Alasdair G Kergon9015df22009-06-22 10:12:21 +0100756
757 return tio;
758}
759
760static void __flush_target(struct clone_info *ci, struct dm_target *ti,
761 unsigned flush_nr)
762{
763 struct dm_target_io *tio = alloc_tio(ci, ti);
764 struct bio *clone;
765
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +0100766 tio->info.flush_request = flush_nr;
767
768 clone = bio_alloc_bioset(GFP_NOIO, 0, ci->md->bs);
769 __bio_clone(clone, ci->bio);
770 clone->bi_destructor = dm_bio_destructor;
771
772 __map_bio(ti, clone, tio);
773}
774
775static int __clone_and_map_empty_barrier(struct clone_info *ci)
776{
777 unsigned target_nr = 0, flush_nr;
778 struct dm_target *ti;
779
780 while ((ti = dm_table_get_target(ci->map, target_nr++)))
781 for (flush_nr = 0; flush_nr < ti->num_flush_requests;
782 flush_nr++)
783 __flush_target(ci, ti, flush_nr);
784
785 ci->sector_count = 0;
786
787 return 0;
788}
789
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000790static int __clone_and_map(struct clone_info *ci)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791{
792 struct bio *clone, *bio = ci->bio;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000793 struct dm_target *ti;
794 sector_t len = 0, max;
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100795 struct dm_target_io *tio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +0100797 if (unlikely(bio_empty_barrier(bio)))
798 return __clone_and_map_empty_barrier(ci);
799
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000800 ti = dm_table_find_target(ci->map, ci->sector);
801 if (!dm_target_is_valid(ti))
802 return -EIO;
803
804 max = max_io_len(ci->md, ci->sector, ti);
805
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 /*
807 * Allocate a target io object.
808 */
Alasdair G Kergon9015df22009-06-22 10:12:21 +0100809 tio = alloc_tio(ci, ti);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
811 if (ci->sector_count <= max) {
812 /*
813 * Optimise for the simple case where we can do all of
814 * the remaining io with a single clone.
815 */
816 clone = clone_bio(bio, ci->sector, ci->idx,
Stefan Bader9faf4002006-10-03 01:15:41 -0700817 bio->bi_vcnt - ci->idx, ci->sector_count,
818 ci->md->bs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 __map_bio(ti, clone, tio);
820 ci->sector_count = 0;
821
822 } else if (to_sector(bio->bi_io_vec[ci->idx].bv_len) <= max) {
823 /*
824 * There are some bvecs that don't span targets.
825 * Do as many of these as possible.
826 */
827 int i;
828 sector_t remaining = max;
829 sector_t bv_len;
830
831 for (i = ci->idx; remaining && (i < bio->bi_vcnt); i++) {
832 bv_len = to_sector(bio->bi_io_vec[i].bv_len);
833
834 if (bv_len > remaining)
835 break;
836
837 remaining -= bv_len;
838 len += bv_len;
839 }
840
Stefan Bader9faf4002006-10-03 01:15:41 -0700841 clone = clone_bio(bio, ci->sector, ci->idx, i - ci->idx, len,
842 ci->md->bs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 __map_bio(ti, clone, tio);
844
845 ci->sector += len;
846 ci->sector_count -= len;
847 ci->idx = i;
848
849 } else {
850 /*
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800851 * Handle a bvec that must be split between two or more targets.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 */
853 struct bio_vec *bv = bio->bi_io_vec + ci->idx;
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800854 sector_t remaining = to_sector(bv->bv_len);
855 unsigned int offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800857 do {
858 if (offset) {
859 ti = dm_table_find_target(ci->map, ci->sector);
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000860 if (!dm_target_is_valid(ti))
861 return -EIO;
862
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800863 max = max_io_len(ci->md, ci->sector, ti);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
Alasdair G Kergon9015df22009-06-22 10:12:21 +0100865 tio = alloc_tio(ci, ti);
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800866 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800868 len = min(remaining, max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800870 clone = split_bvec(bio, ci->sector, ci->idx,
Stefan Bader9faf4002006-10-03 01:15:41 -0700871 bv->bv_offset + offset, len,
872 ci->md->bs);
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800873
874 __map_bio(ti, clone, tio);
875
876 ci->sector += len;
877 ci->sector_count -= len;
878 offset += to_bytes(len);
879 } while (remaining -= len);
880
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 ci->idx++;
882 }
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000883
884 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885}
886
887/*
Mikulas Patocka8a53c282009-04-02 19:55:37 +0100888 * Split the bio into several clones and submit it to targets.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 */
Mikulas Patockaf0b9a452009-04-02 19:55:38 +0100890static void __split_and_process_bio(struct mapped_device *md, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891{
892 struct clone_info ci;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000893 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
895 ci.map = dm_get_table(md);
Mikulas Patockaf0b9a452009-04-02 19:55:38 +0100896 if (unlikely(!ci.map)) {
Mikulas Patockaaf7e4662009-04-09 00:27:16 +0100897 if (!bio_barrier(bio))
898 bio_io_error(bio);
899 else
Mikulas Patocka5aa27812009-06-22 10:12:18 +0100900 if (!md->barrier_error)
901 md->barrier_error = -EIO;
Mikulas Patockaf0b9a452009-04-02 19:55:38 +0100902 return;
903 }
Mikulas Patocka692d0eb2009-04-09 00:27:13 +0100904
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 ci.md = md;
906 ci.bio = bio;
907 ci.io = alloc_io(md);
908 ci.io->error = 0;
909 atomic_set(&ci.io->io_count, 1);
910 ci.io->bio = bio;
911 ci.io->md = md;
912 ci.sector = bio->bi_sector;
913 ci.sector_count = bio_sectors(bio);
Mikulas Patockaf9ab94c2009-06-22 10:12:20 +0100914 if (unlikely(bio_empty_barrier(bio)))
915 ci.sector_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 ci.idx = bio->bi_idx;
917
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800918 start_io_acct(ci.io);
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000919 while (ci.sector_count && !error)
920 error = __clone_and_map(&ci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
922 /* drop the extra reference count */
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000923 dec_pending(ci.io, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 dm_table_put(ci.map);
925}
926/*-----------------------------------------------------------------
927 * CRUD END
928 *---------------------------------------------------------------*/
929
Milan Brozf6fccb12008-07-21 12:00:37 +0100930static int dm_merge_bvec(struct request_queue *q,
931 struct bvec_merge_data *bvm,
932 struct bio_vec *biovec)
933{
934 struct mapped_device *md = q->queuedata;
935 struct dm_table *map = dm_get_table(md);
936 struct dm_target *ti;
937 sector_t max_sectors;
Mikulas Patocka50371082008-10-01 14:39:17 +0100938 int max_size = 0;
Milan Brozf6fccb12008-07-21 12:00:37 +0100939
940 if (unlikely(!map))
Mikulas Patocka50371082008-10-01 14:39:17 +0100941 goto out;
Milan Brozf6fccb12008-07-21 12:00:37 +0100942
943 ti = dm_table_find_target(map, bvm->bi_sector);
Mikulas Patockab01cd5a2008-10-01 14:39:24 +0100944 if (!dm_target_is_valid(ti))
945 goto out_table;
Milan Brozf6fccb12008-07-21 12:00:37 +0100946
947 /*
948 * Find maximum amount of I/O that won't need splitting
949 */
950 max_sectors = min(max_io_len(md, bvm->bi_sector, ti),
951 (sector_t) BIO_MAX_SECTORS);
952 max_size = (max_sectors << SECTOR_SHIFT) - bvm->bi_size;
953 if (max_size < 0)
954 max_size = 0;
955
956 /*
957 * merge_bvec_fn() returns number of bytes
958 * it can accept at this offset
959 * max is precomputed maximal io size
960 */
961 if (max_size && ti->type->merge)
962 max_size = ti->type->merge(ti, bvm, biovec, max_size);
Mikulas Patocka8cbeb672009-06-22 10:12:14 +0100963 /*
964 * If the target doesn't support merge method and some of the devices
965 * provided their merge_bvec method (we know this by looking at
966 * queue_max_hw_sectors), then we can't allow bios with multiple vector
967 * entries. So always set max_size to 0, and the code below allows
968 * just one page.
969 */
970 else if (queue_max_hw_sectors(q) <= PAGE_SIZE >> 9)
971
972 max_size = 0;
Milan Brozf6fccb12008-07-21 12:00:37 +0100973
Mikulas Patockab01cd5a2008-10-01 14:39:24 +0100974out_table:
Mikulas Patocka50371082008-10-01 14:39:17 +0100975 dm_table_put(map);
976
977out:
Milan Brozf6fccb12008-07-21 12:00:37 +0100978 /*
979 * Always allow an entire first page
980 */
981 if (max_size <= biovec->bv_len && !(bvm->bi_size >> SECTOR_SHIFT))
982 max_size = biovec->bv_len;
983
Milan Brozf6fccb12008-07-21 12:00:37 +0100984 return max_size;
985}
986
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987/*
988 * The request function that just remaps the bio built up by
989 * dm_merge_bvec.
990 */
Jens Axboe165125e2007-07-24 09:28:11 +0200991static int dm_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992{
Kevin Corry12f03a42006-02-01 03:04:52 -0800993 int rw = bio_data_dir(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 struct mapped_device *md = q->queuedata;
Tejun Heoc9959052008-08-25 19:47:21 +0900995 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700997 down_read(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
Tejun Heo074a7ac2008-08-25 19:56:14 +0900999 cpu = part_stat_lock();
1000 part_stat_inc(cpu, &dm_disk(md)->part0, ios[rw]);
1001 part_stat_add(cpu, &dm_disk(md)->part0, sectors[rw], bio_sectors(bio));
1002 part_stat_unlock();
Kevin Corry12f03a42006-02-01 03:04:52 -08001003
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 /*
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01001005 * If we're suspended or the thread is processing barriers
1006 * we have to queue this io for later.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 */
Mikulas Patockaaf7e4662009-04-09 00:27:16 +01001008 if (unlikely(test_bit(DMF_QUEUE_IO_TO_THREAD, &md->flags)) ||
1009 unlikely(bio_barrier(bio))) {
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001010 up_read(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011
Alasdair G Kergon54d9a1b2009-04-09 00:27:14 +01001012 if (unlikely(test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) &&
1013 bio_rw(bio) == READA) {
1014 bio_io_error(bio);
1015 return 0;
1016 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
Mikulas Patocka92c63902009-04-09 00:27:15 +01001018 queue_io(md, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
Mikulas Patocka92c63902009-04-09 00:27:15 +01001020 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 }
1022
Mikulas Patockaf0b9a452009-04-02 19:55:38 +01001023 __split_and_process_bio(md, bio);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001024 up_read(&md->io_lock);
Mikulas Patockaf0b9a452009-04-02 19:55:38 +01001025 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026}
1027
Jens Axboe165125e2007-07-24 09:28:11 +02001028static void dm_unplug_all(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029{
1030 struct mapped_device *md = q->queuedata;
1031 struct dm_table *map = dm_get_table(md);
1032
1033 if (map) {
1034 dm_table_unplug_all(map);
1035 dm_table_put(map);
1036 }
1037}
1038
1039static int dm_any_congested(void *congested_data, int bdi_bits)
1040{
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00001041 int r = bdi_bits;
1042 struct mapped_device *md = congested_data;
1043 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01001045 if (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +00001046 map = dm_get_table(md);
1047 if (map) {
1048 r = dm_table_any_congested(map, bdi_bits);
1049 dm_table_put(map);
1050 }
1051 }
1052
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 return r;
1054}
1055
1056/*-----------------------------------------------------------------
1057 * An IDR is used to keep track of allocated minor numbers.
1058 *---------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059static DEFINE_IDR(_minor_idr);
1060
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001061static void free_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062{
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001063 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 idr_remove(&_minor_idr, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001065 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066}
1067
1068/*
1069 * See if the device with a specific minor # is free.
1070 */
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001071static int specific_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072{
1073 int r, m;
1074
1075 if (minor >= (1 << MINORBITS))
1076 return -EINVAL;
1077
Jeff Mahoney62f75c22006-06-26 00:27:21 -07001078 r = idr_pre_get(&_minor_idr, GFP_KERNEL);
1079 if (!r)
1080 return -ENOMEM;
1081
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001082 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083
1084 if (idr_find(&_minor_idr, minor)) {
1085 r = -EBUSY;
1086 goto out;
1087 }
1088
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001089 r = idr_get_new_above(&_minor_idr, MINOR_ALLOCED, minor, &m);
Jeff Mahoney62f75c22006-06-26 00:27:21 -07001090 if (r)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092
1093 if (m != minor) {
1094 idr_remove(&_minor_idr, m);
1095 r = -EBUSY;
1096 goto out;
1097 }
1098
1099out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001100 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 return r;
1102}
1103
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001104static int next_free_minor(int *minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105{
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001106 int r, m;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 r = idr_pre_get(&_minor_idr, GFP_KERNEL);
Jeff Mahoney62f75c22006-06-26 00:27:21 -07001109 if (!r)
1110 return -ENOMEM;
1111
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001112 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001114 r = idr_get_new(&_minor_idr, MINOR_ALLOCED, &m);
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001115 if (r)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
1118 if (m >= (1 << MINORBITS)) {
1119 idr_remove(&_minor_idr, m);
1120 r = -ENOSPC;
1121 goto out;
1122 }
1123
1124 *minor = m;
1125
1126out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001127 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 return r;
1129}
1130
1131static struct block_device_operations dm_blk_dops;
1132
Mikulas Patocka53d59142009-04-02 19:55:37 +01001133static void dm_wq_work(struct work_struct *work);
1134
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135/*
1136 * Allocate and initialise a blank device with a given minor.
1137 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001138static struct mapped_device *alloc_dev(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139{
1140 int r;
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001141 struct mapped_device *md = kzalloc(sizeof(*md), GFP_KERNEL);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001142 void *old_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143
1144 if (!md) {
1145 DMWARN("unable to allocate device, out of memory.");
1146 return NULL;
1147 }
1148
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001149 if (!try_module_get(THIS_MODULE))
Milan Broz6ed7ade2008-02-08 02:10:19 +00001150 goto bad_module_get;
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001151
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 /* get a minor number for the dev */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001153 if (minor == DM_ANY_MINOR)
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001154 r = next_free_minor(&minor);
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001155 else
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001156 r = specific_minor(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 if (r < 0)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001158 goto bad_minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001160 init_rwsem(&md->io_lock);
Daniel Walkere61290a2008-02-08 02:10:08 +00001161 mutex_init(&md->suspend_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01001162 spin_lock_init(&md->deferred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 rwlock_init(&md->map_lock);
1164 atomic_set(&md->holders, 1);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -07001165 atomic_set(&md->open_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 atomic_set(&md->event_nr, 0);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001167 atomic_set(&md->uevent_seq, 0);
1168 INIT_LIST_HEAD(&md->uevent_list);
1169 spin_lock_init(&md->uevent_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170
1171 md->queue = blk_alloc_queue(GFP_KERNEL);
1172 if (!md->queue)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001173 goto bad_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174
1175 md->queue->queuedata = md;
1176 md->queue->backing_dev_info.congested_fn = dm_any_congested;
1177 md->queue->backing_dev_info.congested_data = md;
1178 blk_queue_make_request(md->queue, dm_request);
Mikulas Patocka99360b42009-04-02 19:55:39 +01001179 blk_queue_ordered(md->queue, QUEUE_ORDERED_DRAIN, NULL);
Jens Axboedaef2652006-01-10 10:48:02 +01001180 blk_queue_bounce_limit(md->queue, BLK_BOUNCE_ANY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 md->queue->unplug_fn = dm_unplug_all;
Milan Brozf6fccb12008-07-21 12:00:37 +01001182 blk_queue_merge_bvec(md->queue, dm_merge_bvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183
Matthew Dobson93d23412006-03-26 01:37:50 -08001184 md->io_pool = mempool_create_slab_pool(MIN_IOS, _io_cache);
Kiyoshi Ueda74859362006-12-08 02:41:02 -08001185 if (!md->io_pool)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001186 goto bad_io_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
Matthew Dobson93d23412006-03-26 01:37:50 -08001188 md->tio_pool = mempool_create_slab_pool(MIN_IOS, _tio_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 if (!md->tio_pool)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001190 goto bad_tio_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
Jens Axboebb799ca2008-12-10 15:35:05 +01001192 md->bs = bioset_create(16, 0);
Stefan Bader9faf4002006-10-03 01:15:41 -07001193 if (!md->bs)
1194 goto bad_no_bioset;
1195
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 md->disk = alloc_disk(1);
1197 if (!md->disk)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001198 goto bad_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07001200 atomic_set(&md->pending, 0);
1201 init_waitqueue_head(&md->wait);
Mikulas Patocka53d59142009-04-02 19:55:37 +01001202 INIT_WORK(&md->work, dm_wq_work);
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07001203 init_waitqueue_head(&md->eventq);
1204
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 md->disk->major = _major;
1206 md->disk->first_minor = minor;
1207 md->disk->fops = &dm_blk_dops;
1208 md->disk->queue = md->queue;
1209 md->disk->private_data = md;
1210 sprintf(md->disk->disk_name, "dm-%d", minor);
1211 add_disk(md->disk);
Mike Anderson7e51f252006-03-27 01:17:52 -08001212 format_dev_t(md->name, MKDEV(_major, minor));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
Milan Broz304f3f62008-02-08 02:11:17 +00001214 md->wq = create_singlethread_workqueue("kdmflush");
1215 if (!md->wq)
1216 goto bad_thread;
1217
Mikulas Patocka32a926d2009-06-22 10:12:17 +01001218 md->bdev = bdget_disk(md->disk, 0);
1219 if (!md->bdev)
1220 goto bad_bdev;
1221
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001222 /* Populate the mapping, nobody knows we exist yet */
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001223 spin_lock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001224 old_md = idr_replace(&_minor_idr, md, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001225 spin_unlock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001226
1227 BUG_ON(old_md != MINOR_ALLOCED);
1228
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 return md;
1230
Mikulas Patocka32a926d2009-06-22 10:12:17 +01001231bad_bdev:
1232 destroy_workqueue(md->wq);
Milan Broz304f3f62008-02-08 02:11:17 +00001233bad_thread:
1234 put_disk(md->disk);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001235bad_disk:
Stefan Bader9faf4002006-10-03 01:15:41 -07001236 bioset_free(md->bs);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001237bad_no_bioset:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 mempool_destroy(md->tio_pool);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001239bad_tio_pool:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 mempool_destroy(md->io_pool);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001241bad_io_pool:
Al Viro1312f402006-03-12 11:02:03 -05001242 blk_cleanup_queue(md->queue);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001243bad_queue:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 free_minor(minor);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001245bad_minor:
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001246 module_put(THIS_MODULE);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001247bad_module_get:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 kfree(md);
1249 return NULL;
1250}
1251
Jun'ichi Nomuraae9da832007-10-19 22:38:43 +01001252static void unlock_fs(struct mapped_device *md);
1253
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254static void free_dev(struct mapped_device *md)
1255{
Tejun Heof331c022008-09-03 09:01:48 +02001256 int minor = MINOR(disk_devt(md->disk));
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08001257
Mikulas Patocka32a926d2009-06-22 10:12:17 +01001258 unlock_fs(md);
1259 bdput(md->bdev);
Milan Broz304f3f62008-02-08 02:11:17 +00001260 destroy_workqueue(md->wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 mempool_destroy(md->tio_pool);
1262 mempool_destroy(md->io_pool);
Stefan Bader9faf4002006-10-03 01:15:41 -07001263 bioset_free(md->bs);
Martin K. Petersen9c470082009-04-09 00:27:12 +01001264 blk_integrity_unregister(md->disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 del_gendisk(md->disk);
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08001266 free_minor(minor);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001267
1268 spin_lock(&_minor_lock);
1269 md->disk->private_data = NULL;
1270 spin_unlock(&_minor_lock);
1271
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 put_disk(md->disk);
Al Viro1312f402006-03-12 11:02:03 -05001273 blk_cleanup_queue(md->queue);
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001274 module_put(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 kfree(md);
1276}
1277
1278/*
1279 * Bind a table to the device.
1280 */
1281static void event_callback(void *context)
1282{
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001283 unsigned long flags;
1284 LIST_HEAD(uevents);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 struct mapped_device *md = (struct mapped_device *) context;
1286
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001287 spin_lock_irqsave(&md->uevent_lock, flags);
1288 list_splice_init(&md->uevent_list, &uevents);
1289 spin_unlock_irqrestore(&md->uevent_lock, flags);
1290
Tejun Heoed9e1982008-08-25 19:56:05 +09001291 dm_send_uevents(&uevents, &disk_to_dev(md->disk)->kobj);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001292
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 atomic_inc(&md->event_nr);
1294 wake_up(&md->eventq);
1295}
1296
Alasdair G Kergon4e901882005-07-28 21:15:59 -07001297static void __set_size(struct mapped_device *md, sector_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298{
Alasdair G Kergon4e901882005-07-28 21:15:59 -07001299 set_capacity(md->disk, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
Mikulas Patockadb8fef42009-06-22 10:12:15 +01001301 mutex_lock(&md->bdev->bd_inode->i_mutex);
1302 i_size_write(md->bdev->bd_inode, (loff_t)size << SECTOR_SHIFT);
1303 mutex_unlock(&md->bdev->bd_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304}
1305
1306static int __bind(struct mapped_device *md, struct dm_table *t)
1307{
Jens Axboe165125e2007-07-24 09:28:11 +02001308 struct request_queue *q = md->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 sector_t size;
1310
1311 size = dm_table_get_size(t);
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08001312
1313 /*
1314 * Wipe any geometry if the size of the table changed.
1315 */
1316 if (size != get_capacity(md->disk))
1317 memset(&md->geometry, 0, sizeof(md->geometry));
1318
Mikulas Patocka32a926d2009-06-22 10:12:17 +01001319 __set_size(md, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
Mikulas Patockad5816872009-01-06 03:05:10 +00001321 if (!size) {
1322 dm_table_destroy(t);
1323 return 0;
1324 }
1325
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001326 dm_table_event_callback(t, event_callback, md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001327
1328 write_lock(&md->map_lock);
1329 md->map = t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 dm_table_set_restrictions(t, q);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001331 write_unlock(&md->map_lock);
1332
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 return 0;
1334}
1335
1336static void __unbind(struct mapped_device *md)
1337{
1338 struct dm_table *map = md->map;
1339
1340 if (!map)
1341 return;
1342
1343 dm_table_event_callback(map, NULL, NULL);
1344 write_lock(&md->map_lock);
1345 md->map = NULL;
1346 write_unlock(&md->map_lock);
Mikulas Patockad5816872009-01-06 03:05:10 +00001347 dm_table_destroy(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348}
1349
1350/*
1351 * Constructor for a new device.
1352 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001353int dm_create(int minor, struct mapped_device **result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354{
1355 struct mapped_device *md;
1356
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001357 md = alloc_dev(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 if (!md)
1359 return -ENXIO;
1360
Milan Broz784aae72009-01-06 03:05:12 +00001361 dm_sysfs_init(md);
1362
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 *result = md;
1364 return 0;
1365}
1366
David Teigland637842c2006-01-06 00:20:00 -08001367static struct mapped_device *dm_find_md(dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368{
1369 struct mapped_device *md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 unsigned minor = MINOR(dev);
1371
1372 if (MAJOR(dev) != _major || minor >= (1 << MINORBITS))
1373 return NULL;
1374
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001375 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
1377 md = idr_find(&_minor_idr, minor);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001378 if (md && (md == MINOR_ALLOCED ||
Tejun Heof331c022008-09-03 09:01:48 +02001379 (MINOR(disk_devt(dm_disk(md))) != minor) ||
Alasdair G Kergon17b2f662006-06-26 00:27:33 -07001380 test_bit(DMF_FREEING, &md->flags))) {
David Teigland637842c2006-01-06 00:20:00 -08001381 md = NULL;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001382 goto out;
1383 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001385out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001386 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387
David Teigland637842c2006-01-06 00:20:00 -08001388 return md;
1389}
1390
David Teiglandd229a952006-01-06 00:20:01 -08001391struct mapped_device *dm_get_md(dev_t dev)
1392{
1393 struct mapped_device *md = dm_find_md(dev);
1394
1395 if (md)
1396 dm_get(md);
1397
1398 return md;
1399}
1400
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08001401void *dm_get_mdptr(struct mapped_device *md)
David Teigland637842c2006-01-06 00:20:00 -08001402{
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08001403 return md->interface_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404}
1405
1406void dm_set_mdptr(struct mapped_device *md, void *ptr)
1407{
1408 md->interface_ptr = ptr;
1409}
1410
1411void dm_get(struct mapped_device *md)
1412{
1413 atomic_inc(&md->holders);
1414}
1415
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001416const char *dm_device_name(struct mapped_device *md)
1417{
1418 return md->name;
1419}
1420EXPORT_SYMBOL_GPL(dm_device_name);
1421
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422void dm_put(struct mapped_device *md)
1423{
Mike Anderson1134e5a2006-03-27 01:17:54 -08001424 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001426 BUG_ON(test_bit(DMF_FREEING, &md->flags));
1427
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001428 if (atomic_dec_and_lock(&md->holders, &_minor_lock)) {
Mike Anderson1134e5a2006-03-27 01:17:54 -08001429 map = dm_get_table(md);
Tejun Heof331c022008-09-03 09:01:48 +02001430 idr_replace(&_minor_idr, MINOR_ALLOCED,
1431 MINOR(disk_devt(dm_disk(md))));
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001432 set_bit(DMF_FREEING, &md->flags);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001433 spin_unlock(&_minor_lock);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001434 if (!dm_suspended(md)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 dm_table_presuspend_targets(map);
1436 dm_table_postsuspend_targets(map);
1437 }
Milan Broz784aae72009-01-06 03:05:12 +00001438 dm_sysfs_exit(md);
Mike Anderson1134e5a2006-03-27 01:17:54 -08001439 dm_table_put(map);
Mikulas Patockaa1b51e92009-01-06 03:04:53 +00001440 __unbind(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 free_dev(md);
1442 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443}
Edward Goggin79eb8852007-05-09 02:32:56 -07001444EXPORT_SYMBOL_GPL(dm_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
Mikulas Patocka401600d2009-04-02 19:55:38 +01001446static int dm_wait_for_completion(struct mapped_device *md, int interruptible)
Milan Broz46125c12008-02-08 02:10:30 +00001447{
1448 int r = 0;
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01001449 DECLARE_WAITQUEUE(wait, current);
1450
1451 dm_unplug_all(md->queue);
1452
1453 add_wait_queue(&md->wait, &wait);
Milan Broz46125c12008-02-08 02:10:30 +00001454
1455 while (1) {
Mikulas Patocka401600d2009-04-02 19:55:38 +01001456 set_current_state(interruptible);
Milan Broz46125c12008-02-08 02:10:30 +00001457
1458 smp_mb();
1459 if (!atomic_read(&md->pending))
1460 break;
1461
Mikulas Patocka401600d2009-04-02 19:55:38 +01001462 if (interruptible == TASK_INTERRUPTIBLE &&
1463 signal_pending(current)) {
Milan Broz46125c12008-02-08 02:10:30 +00001464 r = -EINTR;
1465 break;
1466 }
1467
1468 io_schedule();
1469 }
1470 set_current_state(TASK_RUNNING);
1471
Mikulas Patockab44ebeb2009-04-02 19:55:39 +01001472 remove_wait_queue(&md->wait, &wait);
1473
Milan Broz46125c12008-02-08 02:10:30 +00001474 return r;
1475}
1476
Mikulas Patocka531fe962009-06-22 10:12:17 +01001477static void dm_flush(struct mapped_device *md)
Mikulas Patockaaf7e4662009-04-09 00:27:16 +01001478{
1479 dm_wait_for_completion(md, TASK_UNINTERRUPTIBLE);
Mikulas Patockaaf7e4662009-04-09 00:27:16 +01001480}
1481
1482static void process_barrier(struct mapped_device *md, struct bio *bio)
1483{
Mikulas Patocka5aa27812009-06-22 10:12:18 +01001484 md->barrier_error = 0;
1485
Mikulas Patocka531fe962009-06-22 10:12:17 +01001486 dm_flush(md);
Mikulas Patockaaf7e4662009-04-09 00:27:16 +01001487
Mikulas Patocka5aa27812009-06-22 10:12:18 +01001488 if (!bio_empty_barrier(bio)) {
1489 __split_and_process_bio(md, bio);
1490 dm_flush(md);
Mikulas Patockaaf7e4662009-04-09 00:27:16 +01001491 }
1492
Mikulas Patockaaf7e4662009-04-09 00:27:16 +01001493 if (md->barrier_error != DM_ENDIO_REQUEUE)
Mikulas Patocka531fe962009-06-22 10:12:17 +01001494 bio_endio(bio, md->barrier_error);
Mikulas Patocka2761e952009-06-22 10:12:18 +01001495 else {
1496 spin_lock_irq(&md->deferred_lock);
1497 bio_list_add_head(&md->deferred, bio);
1498 spin_unlock_irq(&md->deferred_lock);
1499 }
Mikulas Patockaaf7e4662009-04-09 00:27:16 +01001500}
1501
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502/*
1503 * Process the deferred bios
1504 */
Mikulas Patockaef208582009-04-02 19:55:38 +01001505static void dm_wq_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506{
Mikulas Patockaef208582009-04-02 19:55:38 +01001507 struct mapped_device *md = container_of(work, struct mapped_device,
1508 work);
Milan Broz6d6f10d2008-02-08 02:10:22 +00001509 struct bio *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
Mikulas Patockaef208582009-04-02 19:55:38 +01001511 down_write(&md->io_lock);
1512
Mikulas Patocka3b00b202009-04-09 00:27:15 +01001513 while (!test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) {
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01001514 spin_lock_irq(&md->deferred_lock);
1515 c = bio_list_pop(&md->deferred);
1516 spin_unlock_irq(&md->deferred_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01001517
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01001518 if (!c) {
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01001519 clear_bit(DMF_QUEUE_IO_TO_THREAD, &md->flags);
Alasdair G Kergondf12ee92009-04-09 00:27:13 +01001520 break;
1521 }
1522
Mikulas Patocka3b00b202009-04-09 00:27:15 +01001523 up_write(&md->io_lock);
1524
Mikulas Patockaaf7e4662009-04-09 00:27:16 +01001525 if (bio_barrier(c))
1526 process_barrier(md, c);
1527 else
1528 __split_and_process_bio(md, c);
Mikulas Patocka3b00b202009-04-09 00:27:15 +01001529
1530 down_write(&md->io_lock);
Mikulas Patocka022c2612009-04-02 19:55:39 +01001531 }
Milan Broz73d410c2008-02-08 02:10:25 +00001532
Mikulas Patockaef208582009-04-02 19:55:38 +01001533 up_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534}
1535
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01001536static void dm_queue_flush(struct mapped_device *md)
Milan Broz304f3f62008-02-08 02:11:17 +00001537{
Mikulas Patocka3b00b202009-04-09 00:27:15 +01001538 clear_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
1539 smp_mb__after_clear_bit();
Mikulas Patocka53d59142009-04-02 19:55:37 +01001540 queue_work(md->wq, &md->work);
Milan Broz304f3f62008-02-08 02:11:17 +00001541}
1542
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543/*
1544 * Swap in a new table (destroying old one).
1545 */
1546int dm_swap_table(struct mapped_device *md, struct dm_table *table)
1547{
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07001548 int r = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
Daniel Walkere61290a2008-02-08 02:10:08 +00001550 mutex_lock(&md->suspend_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
1552 /* device must be suspended */
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001553 if (!dm_suspended(md))
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07001554 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555
1556 __unbind(md);
1557 r = __bind(md, table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07001559out:
Daniel Walkere61290a2008-02-08 02:10:08 +00001560 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07001561 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562}
1563
1564/*
1565 * Functions to lock and unlock any filesystem running on the
1566 * device.
1567 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001568static int lock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569{
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001570 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
1572 WARN_ON(md->frozen_sb);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07001573
Mikulas Patockadb8fef42009-06-22 10:12:15 +01001574 md->frozen_sb = freeze_bdev(md->bdev);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07001575 if (IS_ERR(md->frozen_sb)) {
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001576 r = PTR_ERR(md->frozen_sb);
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001577 md->frozen_sb = NULL;
1578 return r;
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07001579 }
1580
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08001581 set_bit(DMF_FROZEN, &md->flags);
1582
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 return 0;
1584}
1585
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001586static void unlock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587{
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08001588 if (!test_bit(DMF_FROZEN, &md->flags))
1589 return;
1590
Mikulas Patockadb8fef42009-06-22 10:12:15 +01001591 thaw_bdev(md->bdev, md->frozen_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 md->frozen_sb = NULL;
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08001593 clear_bit(DMF_FROZEN, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594}
1595
1596/*
1597 * We need to be able to change a mapping table under a mounted
1598 * filesystem. For example we might want to move some data in
1599 * the background. Before the table can be swapped with
1600 * dm_bind_table, dm_suspend must be called to flush any in
1601 * flight bios and ensure that any further io gets deferred.
1602 */
Kiyoshi Uedaa3d77d32006-12-08 02:41:04 -08001603int dm_suspend(struct mapped_device *md, unsigned suspend_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604{
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001605 struct dm_table *map = NULL;
Milan Broz46125c12008-02-08 02:10:30 +00001606 int r = 0;
Kiyoshi Uedaa3d77d32006-12-08 02:41:04 -08001607 int do_lockfs = suspend_flags & DM_SUSPEND_LOCKFS_FLAG ? 1 : 0;
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001608 int noflush = suspend_flags & DM_SUSPEND_NOFLUSH_FLAG ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
Daniel Walkere61290a2008-02-08 02:10:08 +00001610 mutex_lock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001611
Milan Broz73d410c2008-02-08 02:10:25 +00001612 if (dm_suspended(md)) {
1613 r = -EINVAL;
Alasdair G Kergond2874832006-11-08 17:44:43 -08001614 goto out_unlock;
Milan Broz73d410c2008-02-08 02:10:25 +00001615 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616
1617 map = dm_get_table(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001619 /*
1620 * DMF_NOFLUSH_SUSPENDING must be set before presuspend.
1621 * This flag is cleared before dm_suspend returns.
1622 */
1623 if (noflush)
1624 set_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
1625
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001626 /* This does not get reverted if there's an error later. */
1627 dm_table_presuspend_targets(map);
1628
Mikulas Patocka32a926d2009-06-22 10:12:17 +01001629 /*
1630 * Flush I/O to the device. noflush supersedes do_lockfs,
1631 * because lock_fs() needs to flush I/Os.
1632 */
1633 if (!noflush && do_lockfs) {
1634 r = lock_fs(md);
1635 if (r)
Kiyoshi Uedaf431d962008-10-21 17:45:07 +01001636 goto out;
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08001637 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638
1639 /*
Mikulas Patocka3b00b202009-04-09 00:27:15 +01001640 * Here we must make sure that no processes are submitting requests
1641 * to target drivers i.e. no one may be executing
1642 * __split_and_process_bio. This is called from dm_request and
1643 * dm_wq_work.
1644 *
1645 * To get all processes out of __split_and_process_bio in dm_request,
1646 * we take the write lock. To prevent any process from reentering
1647 * __split_and_process_bio from dm_request, we set
1648 * DMF_QUEUE_IO_TO_THREAD.
1649 *
1650 * To quiesce the thread (dm_wq_work), we set DMF_BLOCK_IO_FOR_SUSPEND
1651 * and call flush_workqueue(md->wq). flush_workqueue will wait until
1652 * dm_wq_work exits and DMF_BLOCK_IO_FOR_SUSPEND will prevent any
1653 * further calls to __split_and_process_bio from dm_wq_work.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001655 down_write(&md->io_lock);
Alasdair G Kergon1eb787e2009-04-09 00:27:14 +01001656 set_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags);
1657 set_bit(DMF_QUEUE_IO_TO_THREAD, &md->flags);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001658 up_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
Mikulas Patocka3b00b202009-04-09 00:27:15 +01001660 flush_workqueue(md->wq);
1661
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 /*
Mikulas Patocka3b00b202009-04-09 00:27:15 +01001663 * At this point no more requests are entering target request routines.
1664 * We call dm_wait_for_completion to wait for all existing requests
1665 * to finish.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 */
Mikulas Patocka401600d2009-04-02 19:55:38 +01001667 r = dm_wait_for_completion(md, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001669 down_write(&md->io_lock);
Milan Broz6d6f10d2008-02-08 02:10:22 +00001670 if (noflush)
Mikulas Patocka022c2612009-04-02 19:55:39 +01001671 clear_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
Milan Broz94d63512008-02-08 02:10:27 +00001672 up_write(&md->io_lock);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001673
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 /* were we interrupted ? */
Milan Broz46125c12008-02-08 02:10:30 +00001675 if (r < 0) {
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01001676 dm_queue_flush(md);
Milan Broz73d410c2008-02-08 02:10:25 +00001677
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001678 unlock_fs(md);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001679 goto out; /* pushback list is already flushed, so skip flush */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001680 }
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001681
Mikulas Patocka3b00b202009-04-09 00:27:15 +01001682 /*
1683 * If dm_wait_for_completion returned 0, the device is completely
1684 * quiescent now. There is no request-processing activity. All new
1685 * requests are being added to md->deferred list.
1686 */
1687
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001688 dm_table_postsuspend_targets(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689
1690 set_bit(DMF_SUSPENDED, &md->flags);
1691
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001692out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 dm_table_put(map);
Alasdair G Kergond2874832006-11-08 17:44:43 -08001694
1695out_unlock:
Daniel Walkere61290a2008-02-08 02:10:08 +00001696 mutex_unlock(&md->suspend_lock);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001697 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698}
1699
1700int dm_resume(struct mapped_device *md)
1701{
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001702 int r = -EINVAL;
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001703 struct dm_table *map = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704
Daniel Walkere61290a2008-02-08 02:10:08 +00001705 mutex_lock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001706 if (!dm_suspended(md))
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001707 goto out;
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001708
1709 map = dm_get_table(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001710 if (!map || !dm_table_get_size(map))
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001711 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712
Milan Broz8757b772006-10-03 01:15:36 -07001713 r = dm_table_resume_targets(map);
1714 if (r)
1715 goto out;
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001716
Mikulas Patocka9a1fb462009-04-02 19:55:36 +01001717 dm_queue_flush(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001718
1719 unlock_fs(md);
1720
1721 clear_bit(DMF_SUSPENDED, &md->flags);
1722
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 dm_table_unplug_all(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724
Alasdair G Kergon69267a32007-12-13 14:15:57 +00001725 dm_kobject_uevent(md);
Hannes Reinecke8560ed62006-10-03 01:15:35 -07001726
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001727 r = 0;
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001728
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001729out:
1730 dm_table_put(map);
Daniel Walkere61290a2008-02-08 02:10:08 +00001731 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001732
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001733 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734}
1735
1736/*-----------------------------------------------------------------
1737 * Event notification.
1738 *---------------------------------------------------------------*/
Alasdair G Kergon69267a32007-12-13 14:15:57 +00001739void dm_kobject_uevent(struct mapped_device *md)
1740{
Tejun Heoed9e1982008-08-25 19:56:05 +09001741 kobject_uevent(&disk_to_dev(md->disk)->kobj, KOBJ_CHANGE);
Alasdair G Kergon69267a32007-12-13 14:15:57 +00001742}
1743
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001744uint32_t dm_next_uevent_seq(struct mapped_device *md)
1745{
1746 return atomic_add_return(1, &md->uevent_seq);
1747}
1748
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749uint32_t dm_get_event_nr(struct mapped_device *md)
1750{
1751 return atomic_read(&md->event_nr);
1752}
1753
1754int dm_wait_event(struct mapped_device *md, int event_nr)
1755{
1756 return wait_event_interruptible(md->eventq,
1757 (event_nr != atomic_read(&md->event_nr)));
1758}
1759
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001760void dm_uevent_add(struct mapped_device *md, struct list_head *elist)
1761{
1762 unsigned long flags;
1763
1764 spin_lock_irqsave(&md->uevent_lock, flags);
1765 list_add(elist, &md->uevent_list);
1766 spin_unlock_irqrestore(&md->uevent_lock, flags);
1767}
1768
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769/*
1770 * The gendisk is only valid as long as you have a reference
1771 * count on 'md'.
1772 */
1773struct gendisk *dm_disk(struct mapped_device *md)
1774{
1775 return md->disk;
1776}
1777
Milan Broz784aae72009-01-06 03:05:12 +00001778struct kobject *dm_kobject(struct mapped_device *md)
1779{
1780 return &md->kobj;
1781}
1782
1783/*
1784 * struct mapped_device should not be exported outside of dm.c
1785 * so use this check to verify that kobj is part of md structure
1786 */
1787struct mapped_device *dm_get_from_kobject(struct kobject *kobj)
1788{
1789 struct mapped_device *md;
1790
1791 md = container_of(kobj, struct mapped_device, kobj);
1792 if (&md->kobj != kobj)
1793 return NULL;
1794
Milan Broz4d89b7b2009-06-22 10:12:11 +01001795 if (test_bit(DMF_FREEING, &md->flags) ||
1796 test_bit(DMF_DELETING, &md->flags))
1797 return NULL;
1798
Milan Broz784aae72009-01-06 03:05:12 +00001799 dm_get(md);
1800 return md;
1801}
1802
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803int dm_suspended(struct mapped_device *md)
1804{
1805 return test_bit(DMF_SUSPENDED, &md->flags);
1806}
1807
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001808int dm_noflush_suspending(struct dm_target *ti)
1809{
1810 struct mapped_device *md = dm_table_get_md(ti->table);
1811 int r = __noflush_suspending(md);
1812
1813 dm_put(md);
1814
1815 return r;
1816}
1817EXPORT_SYMBOL_GPL(dm_noflush_suspending);
1818
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819static struct block_device_operations dm_blk_dops = {
1820 .open = dm_blk_open,
1821 .release = dm_blk_close,
Milan Brozaa129a22006-10-03 01:15:15 -07001822 .ioctl = dm_blk_ioctl,
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08001823 .getgeo = dm_blk_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 .owner = THIS_MODULE
1825};
1826
1827EXPORT_SYMBOL(dm_get_mapinfo);
1828
1829/*
1830 * module hooks
1831 */
1832module_init(dm_init);
1833module_exit(dm_exit);
1834
1835module_param(major, uint, 0);
1836MODULE_PARM_DESC(major, "The major number of the device mapper");
1837MODULE_DESCRIPTION(DM_NAME " driver");
1838MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
1839MODULE_LICENSE("GPL");