blob: c99e4728ff4162ed16c4a7ec99fdc0c27c8cb35f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2001, 2002 Sistina Software (UK) Limited.
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07003 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * This file is released under the GPL.
6 */
7
8#include "dm.h"
9#include "dm-bio-list.h"
Mike Anderson51e5b2b2007-10-19 22:48:00 +010010#include "dm-uevent.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
12#include <linux/init.h>
13#include <linux/module.h>
Arjan van de Ven48c9c272006-03-27 01:18:20 -080014#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/moduleparam.h>
16#include <linux/blkpg.h>
17#include <linux/bio.h>
18#include <linux/buffer_head.h>
19#include <linux/mempool.h>
20#include <linux/slab.h>
21#include <linux/idr.h>
Darrick J. Wong3ac51e72006-03-27 01:17:54 -080022#include <linux/hdreg.h>
Jens Axboe2056a782006-03-23 20:00:26 +010023#include <linux/blktrace_api.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/*
34 * One of these is allocated per bio.
35 */
36struct dm_io {
37 struct mapped_device *md;
38 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 atomic_t io_count;
Richard Kennedy6ae2fa62008-07-21 12:00:28 +010040 struct bio *bio;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -080041 unsigned long start_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042};
43
44/*
45 * One of these is allocated per target within a bio. Hopefully
46 * this will be simplified out one day.
47 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +010048struct dm_target_io {
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 struct dm_io *io;
50 struct dm_target *ti;
51 union map_info info;
52};
53
54union map_info *dm_get_mapinfo(struct bio *bio)
55{
Alasdair G Kergon17b2f662006-06-26 00:27:33 -070056 if (bio && bio->bi_private)
Alasdair G Kergon028867a2007-07-12 17:26:32 +010057 return &((struct dm_target_io *)bio->bi_private)->info;
Alasdair G Kergon17b2f662006-06-26 00:27:33 -070058 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059}
60
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -070061#define MINOR_ALLOCED ((void *)-1)
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063/*
64 * Bits for the md->flags field.
65 */
66#define DMF_BLOCK_IO 0
67#define DMF_SUSPENDED 1
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -080068#define DMF_FROZEN 2
Jeff Mahoneyfba9f902006-06-26 00:27:23 -070069#define DMF_FREEING 3
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -070070#define DMF_DELETING 4
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -080071#define DMF_NOFLUSH_SUSPENDING 5
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Milan Broz304f3f62008-02-08 02:11:17 +000073/*
74 * Work processed by per-device workqueue.
75 */
76struct dm_wq_req {
77 enum {
Milan Broz304f3f62008-02-08 02:11:17 +000078 DM_WQ_FLUSH_DEFERRED,
79 } type;
80 struct work_struct work;
81 struct mapped_device *md;
82 void *context;
83};
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085struct mapped_device {
Alasdair G Kergon2ca33102005-07-28 21:16:00 -070086 struct rw_semaphore io_lock;
Daniel Walkere61290a2008-02-08 02:10:08 +000087 struct mutex suspend_lock;
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -080088 spinlock_t pushback_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 rwlock_t map_lock;
90 atomic_t holders;
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -070091 atomic_t open_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93 unsigned long flags;
94
Jens Axboe165125e2007-07-24 09:28:11 +020095 struct request_queue *queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 struct gendisk *disk;
Mike Anderson7e51f252006-03-27 01:17:52 -080097 char name[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99 void *interface_ptr;
100
101 /*
102 * A list of ios that arrived while we were suspended.
103 */
104 atomic_t pending;
105 wait_queue_head_t wait;
Kiyoshi Ueda74859362006-12-08 02:41:02 -0800106 struct bio_list deferred;
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800107 struct bio_list pushback;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109 /*
Milan Broz304f3f62008-02-08 02:11:17 +0000110 * Processing queue (flush/barriers)
111 */
112 struct workqueue_struct *wq;
113
114 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 * The current mapping.
116 */
117 struct dm_table *map;
118
119 /*
120 * io objects are allocated from here.
121 */
122 mempool_t *io_pool;
123 mempool_t *tio_pool;
124
Stefan Bader9faf4002006-10-03 01:15:41 -0700125 struct bio_set *bs;
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 /*
128 * Event handling.
129 */
130 atomic_t event_nr;
131 wait_queue_head_t eventq;
Mike Anderson7a8c3d32007-10-19 22:48:01 +0100132 atomic_t uevent_seq;
133 struct list_head uevent_list;
134 spinlock_t uevent_lock; /* Protect access to uevent_list */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136 /*
137 * freeze/thaw support require holding onto a super block
138 */
139 struct super_block *frozen_sb;
Alasdair G Kergone39e2e92006-01-06 00:20:05 -0800140 struct block_device *suspended_bdev;
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800141
142 /* forced geometry settings */
143 struct hd_geometry geometry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144};
145
146#define MIN_IOS 256
Christoph Lametere18b8902006-12-06 20:33:20 -0800147static struct kmem_cache *_io_cache;
148static struct kmem_cache *_tio_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150static int __init local_init(void)
151{
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100152 int r = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 /* allocate a slab for the dm_ios */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100155 _io_cache = KMEM_CACHE(dm_io, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 if (!_io_cache)
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100157 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159 /* allocate a slab for the target ios */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100160 _tio_cache = KMEM_CACHE(dm_target_io, 0);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100161 if (!_tio_cache)
162 goto out_free_io_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100164 r = dm_uevent_init();
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100165 if (r)
166 goto out_free_tio_cache;
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 _major = major;
169 r = register_blkdev(_major, _name);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100170 if (r < 0)
171 goto out_uevent_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173 if (!_major)
174 _major = r;
175
176 return 0;
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100177
178out_uevent_exit:
179 dm_uevent_exit();
180out_free_tio_cache:
181 kmem_cache_destroy(_tio_cache);
182out_free_io_cache:
183 kmem_cache_destroy(_io_cache);
184
185 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186}
187
188static void local_exit(void)
189{
190 kmem_cache_destroy(_tio_cache);
191 kmem_cache_destroy(_io_cache);
Akinobu Mita00d59402007-07-17 04:03:46 -0700192 unregister_blkdev(_major, _name);
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100193 dm_uevent_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
195 _major = 0;
196
197 DMINFO("cleaned up");
198}
199
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000200static int (*_inits[])(void) __initdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 local_init,
202 dm_target_init,
203 dm_linear_init,
204 dm_stripe_init,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100205 dm_kcopyd_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 dm_interface_init,
207};
208
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000209static void (*_exits[])(void) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 local_exit,
211 dm_target_exit,
212 dm_linear_exit,
213 dm_stripe_exit,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100214 dm_kcopyd_exit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 dm_interface_exit,
216};
217
218static int __init dm_init(void)
219{
220 const int count = ARRAY_SIZE(_inits);
221
222 int r, i;
223
224 for (i = 0; i < count; i++) {
225 r = _inits[i]();
226 if (r)
227 goto bad;
228 }
229
230 return 0;
231
232 bad:
233 while (i--)
234 _exits[i]();
235
236 return r;
237}
238
239static void __exit dm_exit(void)
240{
241 int i = ARRAY_SIZE(_exits);
242
243 while (i--)
244 _exits[i]();
245}
246
247/*
248 * Block device functions
249 */
Al Virofe5f9f22008-03-02 10:29:31 -0500250static int dm_blk_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251{
252 struct mapped_device *md;
253
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700254 spin_lock(&_minor_lock);
255
Al Virofe5f9f22008-03-02 10:29:31 -0500256 md = bdev->bd_disk->private_data;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700257 if (!md)
258 goto out;
259
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700260 if (test_bit(DMF_FREEING, &md->flags) ||
261 test_bit(DMF_DELETING, &md->flags)) {
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700262 md = NULL;
263 goto out;
264 }
265
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 dm_get(md);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700267 atomic_inc(&md->open_count);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700268
269out:
270 spin_unlock(&_minor_lock);
271
272 return md ? 0 : -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273}
274
Al Virofe5f9f22008-03-02 10:29:31 -0500275static int dm_blk_close(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
Al Virofe5f9f22008-03-02 10:29:31 -0500277 struct mapped_device *md = disk->private_data;
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700278 atomic_dec(&md->open_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 dm_put(md);
280 return 0;
281}
282
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700283int dm_open_count(struct mapped_device *md)
284{
285 return atomic_read(&md->open_count);
286}
287
288/*
289 * Guarantees nothing is using the device before it's deleted.
290 */
291int dm_lock_for_deletion(struct mapped_device *md)
292{
293 int r = 0;
294
295 spin_lock(&_minor_lock);
296
297 if (dm_open_count(md))
298 r = -EBUSY;
299 else
300 set_bit(DMF_DELETING, &md->flags);
301
302 spin_unlock(&_minor_lock);
303
304 return r;
305}
306
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800307static int dm_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
308{
309 struct mapped_device *md = bdev->bd_disk->private_data;
310
311 return dm_get_geometry(md, geo);
312}
313
Al Virofe5f9f22008-03-02 10:29:31 -0500314static int dm_blk_ioctl(struct block_device *bdev, fmode_t mode,
Milan Brozaa129a22006-10-03 01:15:15 -0700315 unsigned int cmd, unsigned long arg)
316{
Al Virofe5f9f22008-03-02 10:29:31 -0500317 struct mapped_device *md = bdev->bd_disk->private_data;
318 struct dm_table *map = dm_get_table(md);
Milan Brozaa129a22006-10-03 01:15:15 -0700319 struct dm_target *tgt;
320 int r = -ENOTTY;
321
Milan Brozaa129a22006-10-03 01:15:15 -0700322 if (!map || !dm_table_get_size(map))
323 goto out;
324
325 /* We only support devices that have a single target */
326 if (dm_table_get_num_targets(map) != 1)
327 goto out;
328
329 tgt = dm_table_get_target(map, 0);
330
331 if (dm_suspended(md)) {
332 r = -EAGAIN;
333 goto out;
334 }
335
336 if (tgt->type->ioctl)
Al Viro647b3d02007-08-28 22:15:59 -0400337 r = tgt->type->ioctl(tgt, cmd, arg);
Milan Brozaa129a22006-10-03 01:15:15 -0700338
339out:
340 dm_table_put(map);
341
Milan Brozaa129a22006-10-03 01:15:15 -0700342 return r;
343}
344
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100345static struct dm_io *alloc_io(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346{
347 return mempool_alloc(md->io_pool, GFP_NOIO);
348}
349
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100350static void free_io(struct mapped_device *md, struct dm_io *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351{
352 mempool_free(io, md->io_pool);
353}
354
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100355static struct dm_target_io *alloc_tio(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
357 return mempool_alloc(md->tio_pool, GFP_NOIO);
358}
359
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100360static void free_tio(struct mapped_device *md, struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
362 mempool_free(tio, md->tio_pool);
363}
364
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800365static void start_io_acct(struct dm_io *io)
366{
367 struct mapped_device *md = io->md;
Tejun Heoc9959052008-08-25 19:47:21 +0900368 int cpu;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800369
370 io->start_time = jiffies;
371
Tejun Heo074a7ac2008-08-25 19:56:14 +0900372 cpu = part_stat_lock();
373 part_round_stats(cpu, &dm_disk(md)->part0);
374 part_stat_unlock();
375 dm_disk(md)->part0.in_flight = atomic_inc_return(&md->pending);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800376}
377
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000378static void end_io_acct(struct dm_io *io)
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800379{
380 struct mapped_device *md = io->md;
381 struct bio *bio = io->bio;
382 unsigned long duration = jiffies - io->start_time;
Tejun Heoc9959052008-08-25 19:47:21 +0900383 int pending, cpu;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800384 int rw = bio_data_dir(bio);
385
Tejun Heo074a7ac2008-08-25 19:56:14 +0900386 cpu = part_stat_lock();
387 part_round_stats(cpu, &dm_disk(md)->part0);
388 part_stat_add(cpu, &dm_disk(md)->part0, ticks[rw], duration);
389 part_stat_unlock();
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800390
Tejun Heo074a7ac2008-08-25 19:56:14 +0900391 dm_disk(md)->part0.in_flight = pending =
392 atomic_dec_return(&md->pending);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800393
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000394 /* nudge anyone waiting on suspend queue */
395 if (!pending)
396 wake_up(&md->wait);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800397}
398
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399/*
400 * Add the bio to the list of deferred io.
401 */
402static int queue_io(struct mapped_device *md, struct bio *bio)
403{
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700404 down_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
406 if (!test_bit(DMF_BLOCK_IO, &md->flags)) {
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700407 up_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 return 1;
409 }
410
411 bio_list_add(&md->deferred, bio);
412
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700413 up_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 return 0; /* deferred successfully */
415}
416
417/*
418 * Everyone (including functions in this file), should use this
419 * function to access the md->map field, and make sure they call
420 * dm_table_put() when finished.
421 */
422struct dm_table *dm_get_table(struct mapped_device *md)
423{
424 struct dm_table *t;
425
426 read_lock(&md->map_lock);
427 t = md->map;
428 if (t)
429 dm_table_get(t);
430 read_unlock(&md->map_lock);
431
432 return t;
433}
434
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800435/*
436 * Get the geometry associated with a dm device
437 */
438int dm_get_geometry(struct mapped_device *md, struct hd_geometry *geo)
439{
440 *geo = md->geometry;
441
442 return 0;
443}
444
445/*
446 * Set the geometry of a device.
447 */
448int dm_set_geometry(struct mapped_device *md, struct hd_geometry *geo)
449{
450 sector_t sz = (sector_t)geo->cylinders * geo->heads * geo->sectors;
451
452 if (geo->start > sz) {
453 DMWARN("Start sector is beyond the geometry limits.");
454 return -EINVAL;
455 }
456
457 md->geometry = *geo;
458
459 return 0;
460}
461
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462/*-----------------------------------------------------------------
463 * CRUD START:
464 * A more elegant soln is in the works that uses the queue
465 * merge fn, unfortunately there are a couple of changes to
466 * the block layer that I want to make for this. So in the
467 * interests of getting something for people to use I give
468 * you this clearly demarcated crap.
469 *---------------------------------------------------------------*/
470
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800471static int __noflush_suspending(struct mapped_device *md)
472{
473 return test_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
474}
475
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476/*
477 * Decrements the number of outstanding ios that a bio has been
478 * cloned into, completing the original io if necc.
479 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800480static void dec_pending(struct dm_io *io, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481{
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800482 unsigned long flags;
483
484 /* Push-back supersedes any I/O errors */
485 if (error && !(io->error > 0 && __noflush_suspending(io->md)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 io->error = error;
487
488 if (atomic_dec_and_test(&io->io_count)) {
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800489 if (io->error == DM_ENDIO_REQUEUE) {
490 /*
491 * Target requested pushing back the I/O.
492 * This must be handled before the sleeper on
493 * suspend queue merges the pushback list.
494 */
495 spin_lock_irqsave(&io->md->pushback_lock, flags);
496 if (__noflush_suspending(io->md))
497 bio_list_add(&io->md->pushback, io->bio);
498 else
499 /* noflush suspend was interrupted. */
500 io->error = -EIO;
501 spin_unlock_irqrestore(&io->md->pushback_lock, flags);
502 }
503
Mikulas Patockad221d2e2008-11-13 23:39:10 +0000504 end_io_acct(io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800506 if (io->error != DM_ENDIO_REQUEUE) {
507 blk_add_trace_bio(io->md->queue, io->bio,
508 BLK_TA_COMPLETE);
Jens Axboe2056a782006-03-23 20:00:26 +0100509
NeilBrown6712ecf2007-09-27 12:47:43 +0200510 bio_endio(io->bio, io->error);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800511 }
512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 free_io(io->md, io);
514 }
515}
516
NeilBrown6712ecf2007-09-27 12:47:43 +0200517static void clone_endio(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518{
519 int r = 0;
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100520 struct dm_target_io *tio = bio->bi_private;
Stefan Bader9faf4002006-10-03 01:15:41 -0700521 struct mapped_device *md = tio->io->md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 dm_endio_fn endio = tio->ti->type->end_io;
523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 if (!bio_flagged(bio, BIO_UPTODATE) && !error)
525 error = -EIO;
526
527 if (endio) {
528 r = endio(tio->ti, bio, error, &tio->info);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800529 if (r < 0 || r == DM_ENDIO_REQUEUE)
530 /*
531 * error and requeue request are handled
532 * in dec_pending().
533 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 error = r;
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800535 else if (r == DM_ENDIO_INCOMPLETE)
536 /* The target will handle the io */
NeilBrown6712ecf2007-09-27 12:47:43 +0200537 return;
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800538 else if (r) {
539 DMWARN("unimplemented target endio return value: %d", r);
540 BUG();
541 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 }
543
Stefan Bader9faf4002006-10-03 01:15:41 -0700544 dec_pending(tio->io, error);
545
546 /*
547 * Store md for cleanup instead of tio which is about to get freed.
548 */
549 bio->bi_private = md->bs;
550
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 bio_put(bio);
Stefan Bader9faf4002006-10-03 01:15:41 -0700552 free_tio(md, tio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553}
554
555static sector_t max_io_len(struct mapped_device *md,
556 sector_t sector, struct dm_target *ti)
557{
558 sector_t offset = sector - ti->begin;
559 sector_t len = ti->len - offset;
560
561 /*
562 * Does the target need to split even further ?
563 */
564 if (ti->split_io) {
565 sector_t boundary;
566 boundary = ((offset + ti->split_io) & ~(ti->split_io - 1))
567 - offset;
568 if (len > boundary)
569 len = boundary;
570 }
571
572 return len;
573}
574
575static void __map_bio(struct dm_target *ti, struct bio *clone,
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100576 struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577{
578 int r;
Jens Axboe2056a782006-03-23 20:00:26 +0100579 sector_t sector;
Stefan Bader9faf4002006-10-03 01:15:41 -0700580 struct mapped_device *md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
582 /*
583 * Sanity checks.
584 */
585 BUG_ON(!clone->bi_size);
586
587 clone->bi_end_io = clone_endio;
588 clone->bi_private = tio;
589
590 /*
591 * Map the clone. If r == 0 we don't need to do
592 * anything, the target has assumed ownership of
593 * this io.
594 */
595 atomic_inc(&tio->io->io_count);
Jens Axboe2056a782006-03-23 20:00:26 +0100596 sector = clone->bi_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 r = ti->type->map(ti, clone, &tio->info);
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800598 if (r == DM_MAPIO_REMAPPED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 /* the bio has been remapped so dispatch it */
Jens Axboe2056a782006-03-23 20:00:26 +0100600
Alasdair G Kergon17b2f662006-06-26 00:27:33 -0700601 blk_add_trace_remap(bdev_get_queue(clone->bi_bdev), clone,
Alan D. Brunellec7149d62007-08-07 15:30:23 +0200602 tio->io->bio->bi_bdev->bd_dev,
603 clone->bi_sector, sector);
Jens Axboe2056a782006-03-23 20:00:26 +0100604
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 generic_make_request(clone);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800606 } else if (r < 0 || r == DM_MAPIO_REQUEUE) {
607 /* error the io and bail out, or requeue it if needed */
Stefan Bader9faf4002006-10-03 01:15:41 -0700608 md = tio->io->md;
609 dec_pending(tio->io, r);
610 /*
611 * Store bio_set for cleanup.
612 */
613 clone->bi_private = md->bs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 bio_put(clone);
Stefan Bader9faf4002006-10-03 01:15:41 -0700615 free_tio(md, tio);
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800616 } else if (r) {
617 DMWARN("unimplemented target map return value: %d", r);
618 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 }
620}
621
622struct clone_info {
623 struct mapped_device *md;
624 struct dm_table *map;
625 struct bio *bio;
626 struct dm_io *io;
627 sector_t sector;
628 sector_t sector_count;
629 unsigned short idx;
630};
631
Peter Osterlund36763472005-09-06 15:16:42 -0700632static void dm_bio_destructor(struct bio *bio)
633{
Stefan Bader9faf4002006-10-03 01:15:41 -0700634 struct bio_set *bs = bio->bi_private;
635
636 bio_free(bio, bs);
Peter Osterlund36763472005-09-06 15:16:42 -0700637}
638
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639/*
640 * Creates a little bio that is just does part of a bvec.
641 */
642static struct bio *split_bvec(struct bio *bio, sector_t sector,
643 unsigned short idx, unsigned int offset,
Stefan Bader9faf4002006-10-03 01:15:41 -0700644 unsigned int len, struct bio_set *bs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645{
646 struct bio *clone;
647 struct bio_vec *bv = bio->bi_io_vec + idx;
648
Stefan Bader9faf4002006-10-03 01:15:41 -0700649 clone = bio_alloc_bioset(GFP_NOIO, 1, bs);
Peter Osterlund36763472005-09-06 15:16:42 -0700650 clone->bi_destructor = dm_bio_destructor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 *clone->bi_io_vec = *bv;
652
653 clone->bi_sector = sector;
654 clone->bi_bdev = bio->bi_bdev;
655 clone->bi_rw = bio->bi_rw;
656 clone->bi_vcnt = 1;
657 clone->bi_size = to_bytes(len);
658 clone->bi_io_vec->bv_offset = offset;
659 clone->bi_io_vec->bv_len = clone->bi_size;
Martin K. Petersenf3e1d262008-10-21 17:45:04 +0100660 clone->bi_flags |= 1 << BIO_CLONED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
662 return clone;
663}
664
665/*
666 * Creates a bio that consists of range of complete bvecs.
667 */
668static struct bio *clone_bio(struct bio *bio, sector_t sector,
669 unsigned short idx, unsigned short bv_count,
Stefan Bader9faf4002006-10-03 01:15:41 -0700670 unsigned int len, struct bio_set *bs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671{
672 struct bio *clone;
673
Stefan Bader9faf4002006-10-03 01:15:41 -0700674 clone = bio_alloc_bioset(GFP_NOIO, bio->bi_max_vecs, bs);
675 __bio_clone(clone, bio);
676 clone->bi_destructor = dm_bio_destructor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 clone->bi_sector = sector;
678 clone->bi_idx = idx;
679 clone->bi_vcnt = idx + bv_count;
680 clone->bi_size = to_bytes(len);
681 clone->bi_flags &= ~(1 << BIO_SEG_VALID);
682
683 return clone;
684}
685
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000686static int __clone_and_map(struct clone_info *ci)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687{
688 struct bio *clone, *bio = ci->bio;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000689 struct dm_target *ti;
690 sector_t len = 0, max;
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100691 struct dm_target_io *tio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000693 ti = dm_table_find_target(ci->map, ci->sector);
694 if (!dm_target_is_valid(ti))
695 return -EIO;
696
697 max = max_io_len(ci->md, ci->sector, ti);
698
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 /*
700 * Allocate a target io object.
701 */
702 tio = alloc_tio(ci->md);
703 tio->io = ci->io;
704 tio->ti = ti;
705 memset(&tio->info, 0, sizeof(tio->info));
706
707 if (ci->sector_count <= max) {
708 /*
709 * Optimise for the simple case where we can do all of
710 * the remaining io with a single clone.
711 */
712 clone = clone_bio(bio, ci->sector, ci->idx,
Stefan Bader9faf4002006-10-03 01:15:41 -0700713 bio->bi_vcnt - ci->idx, ci->sector_count,
714 ci->md->bs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 __map_bio(ti, clone, tio);
716 ci->sector_count = 0;
717
718 } else if (to_sector(bio->bi_io_vec[ci->idx].bv_len) <= max) {
719 /*
720 * There are some bvecs that don't span targets.
721 * Do as many of these as possible.
722 */
723 int i;
724 sector_t remaining = max;
725 sector_t bv_len;
726
727 for (i = ci->idx; remaining && (i < bio->bi_vcnt); i++) {
728 bv_len = to_sector(bio->bi_io_vec[i].bv_len);
729
730 if (bv_len > remaining)
731 break;
732
733 remaining -= bv_len;
734 len += bv_len;
735 }
736
Stefan Bader9faf4002006-10-03 01:15:41 -0700737 clone = clone_bio(bio, ci->sector, ci->idx, i - ci->idx, len,
738 ci->md->bs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 __map_bio(ti, clone, tio);
740
741 ci->sector += len;
742 ci->sector_count -= len;
743 ci->idx = i;
744
745 } else {
746 /*
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800747 * Handle a bvec that must be split between two or more targets.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 */
749 struct bio_vec *bv = bio->bi_io_vec + ci->idx;
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800750 sector_t remaining = to_sector(bv->bv_len);
751 unsigned int offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800753 do {
754 if (offset) {
755 ti = dm_table_find_target(ci->map, ci->sector);
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000756 if (!dm_target_is_valid(ti))
757 return -EIO;
758
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800759 max = max_io_len(ci->md, ci->sector, ti);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800761 tio = alloc_tio(ci->md);
762 tio->io = ci->io;
763 tio->ti = ti;
764 memset(&tio->info, 0, sizeof(tio->info));
765 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800767 len = min(remaining, max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800769 clone = split_bvec(bio, ci->sector, ci->idx,
Stefan Bader9faf4002006-10-03 01:15:41 -0700770 bv->bv_offset + offset, len,
771 ci->md->bs);
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800772
773 __map_bio(ti, clone, tio);
774
775 ci->sector += len;
776 ci->sector_count -= len;
777 offset += to_bytes(len);
778 } while (remaining -= len);
779
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 ci->idx++;
781 }
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000782
783 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784}
785
786/*
787 * Split the bio into several clones.
788 */
Milan Broz9e4e5f82007-10-19 22:38:53 +0100789static int __split_bio(struct mapped_device *md, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790{
791 struct clone_info ci;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000792 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
794 ci.map = dm_get_table(md);
Milan Broz9e4e5f82007-10-19 22:38:53 +0100795 if (unlikely(!ci.map))
796 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
798 ci.md = md;
799 ci.bio = bio;
800 ci.io = alloc_io(md);
801 ci.io->error = 0;
802 atomic_set(&ci.io->io_count, 1);
803 ci.io->bio = bio;
804 ci.io->md = md;
805 ci.sector = bio->bi_sector;
806 ci.sector_count = bio_sectors(bio);
807 ci.idx = bio->bi_idx;
808
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800809 start_io_acct(ci.io);
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000810 while (ci.sector_count && !error)
811 error = __clone_and_map(&ci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
813 /* drop the extra reference count */
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000814 dec_pending(ci.io, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 dm_table_put(ci.map);
Milan Broz9e4e5f82007-10-19 22:38:53 +0100816
817 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818}
819/*-----------------------------------------------------------------
820 * CRUD END
821 *---------------------------------------------------------------*/
822
Milan Brozf6fccb12008-07-21 12:00:37 +0100823static int dm_merge_bvec(struct request_queue *q,
824 struct bvec_merge_data *bvm,
825 struct bio_vec *biovec)
826{
827 struct mapped_device *md = q->queuedata;
828 struct dm_table *map = dm_get_table(md);
829 struct dm_target *ti;
830 sector_t max_sectors;
Mikulas Patocka50371082008-10-01 14:39:17 +0100831 int max_size = 0;
Milan Brozf6fccb12008-07-21 12:00:37 +0100832
833 if (unlikely(!map))
Mikulas Patocka50371082008-10-01 14:39:17 +0100834 goto out;
Milan Brozf6fccb12008-07-21 12:00:37 +0100835
836 ti = dm_table_find_target(map, bvm->bi_sector);
Mikulas Patockab01cd5a2008-10-01 14:39:24 +0100837 if (!dm_target_is_valid(ti))
838 goto out_table;
Milan Brozf6fccb12008-07-21 12:00:37 +0100839
840 /*
841 * Find maximum amount of I/O that won't need splitting
842 */
843 max_sectors = min(max_io_len(md, bvm->bi_sector, ti),
844 (sector_t) BIO_MAX_SECTORS);
845 max_size = (max_sectors << SECTOR_SHIFT) - bvm->bi_size;
846 if (max_size < 0)
847 max_size = 0;
848
849 /*
850 * merge_bvec_fn() returns number of bytes
851 * it can accept at this offset
852 * max is precomputed maximal io size
853 */
854 if (max_size && ti->type->merge)
855 max_size = ti->type->merge(ti, bvm, biovec, max_size);
856
Mikulas Patockab01cd5a2008-10-01 14:39:24 +0100857out_table:
Mikulas Patocka50371082008-10-01 14:39:17 +0100858 dm_table_put(map);
859
860out:
Milan Brozf6fccb12008-07-21 12:00:37 +0100861 /*
862 * Always allow an entire first page
863 */
864 if (max_size <= biovec->bv_len && !(bvm->bi_size >> SECTOR_SHIFT))
865 max_size = biovec->bv_len;
866
Milan Brozf6fccb12008-07-21 12:00:37 +0100867 return max_size;
868}
869
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870/*
871 * The request function that just remaps the bio built up by
872 * dm_merge_bvec.
873 */
Jens Axboe165125e2007-07-24 09:28:11 +0200874static int dm_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875{
Milan Broz9e4e5f82007-10-19 22:38:53 +0100876 int r = -EIO;
Kevin Corry12f03a42006-02-01 03:04:52 -0800877 int rw = bio_data_dir(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 struct mapped_device *md = q->queuedata;
Tejun Heoc9959052008-08-25 19:47:21 +0900879 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
Stefan Bader07a83c42007-07-12 17:28:33 +0100881 /*
882 * There is no use in forwarding any barrier request since we can't
883 * guarantee it is (or can be) handled by the targets correctly.
884 */
885 if (unlikely(bio_barrier(bio))) {
NeilBrown6712ecf2007-09-27 12:47:43 +0200886 bio_endio(bio, -EOPNOTSUPP);
Stefan Bader07a83c42007-07-12 17:28:33 +0100887 return 0;
888 }
889
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700890 down_read(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
Tejun Heo074a7ac2008-08-25 19:56:14 +0900892 cpu = part_stat_lock();
893 part_stat_inc(cpu, &dm_disk(md)->part0, ios[rw]);
894 part_stat_add(cpu, &dm_disk(md)->part0, sectors[rw], bio_sectors(bio));
895 part_stat_unlock();
Kevin Corry12f03a42006-02-01 03:04:52 -0800896
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 /*
898 * If we're suspended we have to queue
899 * this io for later.
900 */
901 while (test_bit(DMF_BLOCK_IO, &md->flags)) {
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700902 up_read(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
Milan Broz9e4e5f82007-10-19 22:38:53 +0100904 if (bio_rw(bio) != READA)
905 r = queue_io(md, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
Milan Broz9e4e5f82007-10-19 22:38:53 +0100907 if (r <= 0)
908 goto out_req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
910 /*
911 * We're in a while loop, because someone could suspend
912 * before we get to the following read lock.
913 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700914 down_read(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 }
916
Milan Broz9e4e5f82007-10-19 22:38:53 +0100917 r = __split_bio(md, bio);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700918 up_read(&md->io_lock);
Milan Broz9e4e5f82007-10-19 22:38:53 +0100919
920out_req:
921 if (r < 0)
922 bio_io_error(bio);
923
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 return 0;
925}
926
Jens Axboe165125e2007-07-24 09:28:11 +0200927static void dm_unplug_all(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928{
929 struct mapped_device *md = q->queuedata;
930 struct dm_table *map = dm_get_table(md);
931
932 if (map) {
933 dm_table_unplug_all(map);
934 dm_table_put(map);
935 }
936}
937
938static int dm_any_congested(void *congested_data, int bdi_bits)
939{
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +0000940 int r = bdi_bits;
941 struct mapped_device *md = congested_data;
942 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +0000944 atomic_inc(&md->pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
Chandra Seetharaman8a57dfc2008-11-13 23:39:14 +0000946 if (!test_bit(DMF_BLOCK_IO, &md->flags)) {
947 map = dm_get_table(md);
948 if (map) {
949 r = dm_table_any_congested(map, bdi_bits);
950 dm_table_put(map);
951 }
952 }
953
954 if (!atomic_dec_return(&md->pending))
955 /* nudge anyone waiting on suspend queue */
956 wake_up(&md->wait);
957
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 return r;
959}
960
961/*-----------------------------------------------------------------
962 * An IDR is used to keep track of allocated minor numbers.
963 *---------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964static DEFINE_IDR(_minor_idr);
965
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -0700966static void free_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967{
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -0700968 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 idr_remove(&_minor_idr, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -0700970 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971}
972
973/*
974 * See if the device with a specific minor # is free.
975 */
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +0100976static int specific_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977{
978 int r, m;
979
980 if (minor >= (1 << MINORBITS))
981 return -EINVAL;
982
Jeff Mahoney62f75c22006-06-26 00:27:21 -0700983 r = idr_pre_get(&_minor_idr, GFP_KERNEL);
984 if (!r)
985 return -ENOMEM;
986
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -0700987 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
989 if (idr_find(&_minor_idr, minor)) {
990 r = -EBUSY;
991 goto out;
992 }
993
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -0700994 r = idr_get_new_above(&_minor_idr, MINOR_ALLOCED, minor, &m);
Jeff Mahoney62f75c22006-06-26 00:27:21 -0700995 if (r)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
998 if (m != minor) {
999 idr_remove(&_minor_idr, m);
1000 r = -EBUSY;
1001 goto out;
1002 }
1003
1004out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001005 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 return r;
1007}
1008
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001009static int next_free_minor(int *minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010{
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001011 int r, m;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 r = idr_pre_get(&_minor_idr, GFP_KERNEL);
Jeff Mahoney62f75c22006-06-26 00:27:21 -07001014 if (!r)
1015 return -ENOMEM;
1016
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001017 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001019 r = idr_get_new(&_minor_idr, MINOR_ALLOCED, &m);
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001020 if (r)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
1023 if (m >= (1 << MINORBITS)) {
1024 idr_remove(&_minor_idr, m);
1025 r = -ENOSPC;
1026 goto out;
1027 }
1028
1029 *minor = m;
1030
1031out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001032 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 return r;
1034}
1035
1036static struct block_device_operations dm_blk_dops;
1037
1038/*
1039 * Allocate and initialise a blank device with a given minor.
1040 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001041static struct mapped_device *alloc_dev(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042{
1043 int r;
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001044 struct mapped_device *md = kzalloc(sizeof(*md), GFP_KERNEL);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001045 void *old_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046
1047 if (!md) {
1048 DMWARN("unable to allocate device, out of memory.");
1049 return NULL;
1050 }
1051
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001052 if (!try_module_get(THIS_MODULE))
Milan Broz6ed7ade2008-02-08 02:10:19 +00001053 goto bad_module_get;
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001054
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 /* get a minor number for the dev */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001056 if (minor == DM_ANY_MINOR)
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001057 r = next_free_minor(&minor);
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001058 else
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001059 r = specific_minor(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 if (r < 0)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001061 goto bad_minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001063 init_rwsem(&md->io_lock);
Daniel Walkere61290a2008-02-08 02:10:08 +00001064 mutex_init(&md->suspend_lock);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001065 spin_lock_init(&md->pushback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 rwlock_init(&md->map_lock);
1067 atomic_set(&md->holders, 1);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -07001068 atomic_set(&md->open_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 atomic_set(&md->event_nr, 0);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001070 atomic_set(&md->uevent_seq, 0);
1071 INIT_LIST_HEAD(&md->uevent_list);
1072 spin_lock_init(&md->uevent_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
1074 md->queue = blk_alloc_queue(GFP_KERNEL);
1075 if (!md->queue)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001076 goto bad_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
1078 md->queue->queuedata = md;
1079 md->queue->backing_dev_info.congested_fn = dm_any_congested;
1080 md->queue->backing_dev_info.congested_data = md;
1081 blk_queue_make_request(md->queue, dm_request);
Jens Axboedaef2652006-01-10 10:48:02 +01001082 blk_queue_bounce_limit(md->queue, BLK_BOUNCE_ANY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 md->queue->unplug_fn = dm_unplug_all;
Milan Brozf6fccb12008-07-21 12:00:37 +01001084 blk_queue_merge_bvec(md->queue, dm_merge_bvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085
Matthew Dobson93d23412006-03-26 01:37:50 -08001086 md->io_pool = mempool_create_slab_pool(MIN_IOS, _io_cache);
Kiyoshi Ueda74859362006-12-08 02:41:02 -08001087 if (!md->io_pool)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001088 goto bad_io_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089
Matthew Dobson93d23412006-03-26 01:37:50 -08001090 md->tio_pool = mempool_create_slab_pool(MIN_IOS, _tio_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 if (!md->tio_pool)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001092 goto bad_tio_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
Jens Axboe59725112007-04-02 10:06:42 +02001094 md->bs = bioset_create(16, 16);
Stefan Bader9faf4002006-10-03 01:15:41 -07001095 if (!md->bs)
1096 goto bad_no_bioset;
1097
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 md->disk = alloc_disk(1);
1099 if (!md->disk)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001100 goto bad_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07001102 atomic_set(&md->pending, 0);
1103 init_waitqueue_head(&md->wait);
1104 init_waitqueue_head(&md->eventq);
1105
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 md->disk->major = _major;
1107 md->disk->first_minor = minor;
1108 md->disk->fops = &dm_blk_dops;
1109 md->disk->queue = md->queue;
1110 md->disk->private_data = md;
1111 sprintf(md->disk->disk_name, "dm-%d", minor);
1112 add_disk(md->disk);
Mike Anderson7e51f252006-03-27 01:17:52 -08001113 format_dev_t(md->name, MKDEV(_major, minor));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
Milan Broz304f3f62008-02-08 02:11:17 +00001115 md->wq = create_singlethread_workqueue("kdmflush");
1116 if (!md->wq)
1117 goto bad_thread;
1118
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001119 /* Populate the mapping, nobody knows we exist yet */
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001120 spin_lock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001121 old_md = idr_replace(&_minor_idr, md, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001122 spin_unlock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001123
1124 BUG_ON(old_md != MINOR_ALLOCED);
1125
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 return md;
1127
Milan Broz304f3f62008-02-08 02:11:17 +00001128bad_thread:
1129 put_disk(md->disk);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001130bad_disk:
Stefan Bader9faf4002006-10-03 01:15:41 -07001131 bioset_free(md->bs);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001132bad_no_bioset:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 mempool_destroy(md->tio_pool);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001134bad_tio_pool:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 mempool_destroy(md->io_pool);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001136bad_io_pool:
Al Viro1312f402006-03-12 11:02:03 -05001137 blk_cleanup_queue(md->queue);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001138bad_queue:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 free_minor(minor);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001140bad_minor:
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001141 module_put(THIS_MODULE);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001142bad_module_get:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 kfree(md);
1144 return NULL;
1145}
1146
Jun'ichi Nomuraae9da832007-10-19 22:38:43 +01001147static void unlock_fs(struct mapped_device *md);
1148
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149static void free_dev(struct mapped_device *md)
1150{
Tejun Heof331c022008-09-03 09:01:48 +02001151 int minor = MINOR(disk_devt(md->disk));
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08001152
Jun'ichi Nomurad9dde592006-02-24 13:04:24 -08001153 if (md->suspended_bdev) {
Jun'ichi Nomuraae9da832007-10-19 22:38:43 +01001154 unlock_fs(md);
Jun'ichi Nomurad9dde592006-02-24 13:04:24 -08001155 bdput(md->suspended_bdev);
1156 }
Milan Broz304f3f62008-02-08 02:11:17 +00001157 destroy_workqueue(md->wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 mempool_destroy(md->tio_pool);
1159 mempool_destroy(md->io_pool);
Stefan Bader9faf4002006-10-03 01:15:41 -07001160 bioset_free(md->bs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 del_gendisk(md->disk);
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08001162 free_minor(minor);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001163
1164 spin_lock(&_minor_lock);
1165 md->disk->private_data = NULL;
1166 spin_unlock(&_minor_lock);
1167
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 put_disk(md->disk);
Al Viro1312f402006-03-12 11:02:03 -05001169 blk_cleanup_queue(md->queue);
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001170 module_put(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 kfree(md);
1172}
1173
1174/*
1175 * Bind a table to the device.
1176 */
1177static void event_callback(void *context)
1178{
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001179 unsigned long flags;
1180 LIST_HEAD(uevents);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 struct mapped_device *md = (struct mapped_device *) context;
1182
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001183 spin_lock_irqsave(&md->uevent_lock, flags);
1184 list_splice_init(&md->uevent_list, &uevents);
1185 spin_unlock_irqrestore(&md->uevent_lock, flags);
1186
Tejun Heoed9e1982008-08-25 19:56:05 +09001187 dm_send_uevents(&uevents, &disk_to_dev(md->disk)->kobj);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001188
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 atomic_inc(&md->event_nr);
1190 wake_up(&md->eventq);
1191}
1192
Alasdair G Kergon4e901882005-07-28 21:15:59 -07001193static void __set_size(struct mapped_device *md, sector_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194{
Alasdair G Kergon4e901882005-07-28 21:15:59 -07001195 set_capacity(md->disk, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001197 mutex_lock(&md->suspended_bdev->bd_inode->i_mutex);
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001198 i_size_write(md->suspended_bdev->bd_inode, (loff_t)size << SECTOR_SHIFT);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001199 mutex_unlock(&md->suspended_bdev->bd_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200}
1201
1202static int __bind(struct mapped_device *md, struct dm_table *t)
1203{
Jens Axboe165125e2007-07-24 09:28:11 +02001204 struct request_queue *q = md->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 sector_t size;
1206
1207 size = dm_table_get_size(t);
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08001208
1209 /*
1210 * Wipe any geometry if the size of the table changed.
1211 */
1212 if (size != get_capacity(md->disk))
1213 memset(&md->geometry, 0, sizeof(md->geometry));
1214
Jun'ichi Nomurabfa152f2007-01-26 00:57:07 -08001215 if (md->suspended_bdev)
1216 __set_size(md, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 if (size == 0)
1218 return 0;
1219
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 dm_table_get(t);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001221 dm_table_event_callback(t, event_callback, md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001222
1223 write_lock(&md->map_lock);
1224 md->map = t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 dm_table_set_restrictions(t, q);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001226 write_unlock(&md->map_lock);
1227
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 return 0;
1229}
1230
1231static void __unbind(struct mapped_device *md)
1232{
1233 struct dm_table *map = md->map;
1234
1235 if (!map)
1236 return;
1237
1238 dm_table_event_callback(map, NULL, NULL);
1239 write_lock(&md->map_lock);
1240 md->map = NULL;
1241 write_unlock(&md->map_lock);
1242 dm_table_put(map);
1243}
1244
1245/*
1246 * Constructor for a new device.
1247 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001248int dm_create(int minor, struct mapped_device **result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249{
1250 struct mapped_device *md;
1251
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001252 md = alloc_dev(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 if (!md)
1254 return -ENXIO;
1255
1256 *result = md;
1257 return 0;
1258}
1259
David Teigland637842c2006-01-06 00:20:00 -08001260static struct mapped_device *dm_find_md(dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261{
1262 struct mapped_device *md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 unsigned minor = MINOR(dev);
1264
1265 if (MAJOR(dev) != _major || minor >= (1 << MINORBITS))
1266 return NULL;
1267
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001268 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
1270 md = idr_find(&_minor_idr, minor);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001271 if (md && (md == MINOR_ALLOCED ||
Tejun Heof331c022008-09-03 09:01:48 +02001272 (MINOR(disk_devt(dm_disk(md))) != minor) ||
Alasdair G Kergon17b2f662006-06-26 00:27:33 -07001273 test_bit(DMF_FREEING, &md->flags))) {
David Teigland637842c2006-01-06 00:20:00 -08001274 md = NULL;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001275 goto out;
1276 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001278out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001279 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
David Teigland637842c2006-01-06 00:20:00 -08001281 return md;
1282}
1283
David Teiglandd229a952006-01-06 00:20:01 -08001284struct mapped_device *dm_get_md(dev_t dev)
1285{
1286 struct mapped_device *md = dm_find_md(dev);
1287
1288 if (md)
1289 dm_get(md);
1290
1291 return md;
1292}
1293
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08001294void *dm_get_mdptr(struct mapped_device *md)
David Teigland637842c2006-01-06 00:20:00 -08001295{
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08001296 return md->interface_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297}
1298
1299void dm_set_mdptr(struct mapped_device *md, void *ptr)
1300{
1301 md->interface_ptr = ptr;
1302}
1303
1304void dm_get(struct mapped_device *md)
1305{
1306 atomic_inc(&md->holders);
1307}
1308
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001309const char *dm_device_name(struct mapped_device *md)
1310{
1311 return md->name;
1312}
1313EXPORT_SYMBOL_GPL(dm_device_name);
1314
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315void dm_put(struct mapped_device *md)
1316{
Mike Anderson1134e5a2006-03-27 01:17:54 -08001317 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001319 BUG_ON(test_bit(DMF_FREEING, &md->flags));
1320
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001321 if (atomic_dec_and_lock(&md->holders, &_minor_lock)) {
Mike Anderson1134e5a2006-03-27 01:17:54 -08001322 map = dm_get_table(md);
Tejun Heof331c022008-09-03 09:01:48 +02001323 idr_replace(&_minor_idr, MINOR_ALLOCED,
1324 MINOR(disk_devt(dm_disk(md))));
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001325 set_bit(DMF_FREEING, &md->flags);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001326 spin_unlock(&_minor_lock);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001327 if (!dm_suspended(md)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 dm_table_presuspend_targets(map);
1329 dm_table_postsuspend_targets(map);
1330 }
1331 __unbind(md);
Mike Anderson1134e5a2006-03-27 01:17:54 -08001332 dm_table_put(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 free_dev(md);
1334 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335}
Edward Goggin79eb8852007-05-09 02:32:56 -07001336EXPORT_SYMBOL_GPL(dm_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
Milan Broz46125c12008-02-08 02:10:30 +00001338static int dm_wait_for_completion(struct mapped_device *md)
1339{
1340 int r = 0;
1341
1342 while (1) {
1343 set_current_state(TASK_INTERRUPTIBLE);
1344
1345 smp_mb();
1346 if (!atomic_read(&md->pending))
1347 break;
1348
1349 if (signal_pending(current)) {
1350 r = -EINTR;
1351 break;
1352 }
1353
1354 io_schedule();
1355 }
1356 set_current_state(TASK_RUNNING);
1357
1358 return r;
1359}
1360
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361/*
1362 * Process the deferred bios
1363 */
Milan Broz6d6f10d2008-02-08 02:10:22 +00001364static void __flush_deferred_io(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365{
Milan Broz6d6f10d2008-02-08 02:10:22 +00001366 struct bio *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
Milan Broz6d6f10d2008-02-08 02:10:22 +00001368 while ((c = bio_list_pop(&md->deferred))) {
Milan Broz9e4e5f82007-10-19 22:38:53 +01001369 if (__split_bio(md, c))
1370 bio_io_error(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 }
Milan Broz73d410c2008-02-08 02:10:25 +00001372
1373 clear_bit(DMF_BLOCK_IO, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374}
1375
Milan Broz6d6f10d2008-02-08 02:10:22 +00001376static void __merge_pushback_list(struct mapped_device *md)
1377{
1378 unsigned long flags;
1379
1380 spin_lock_irqsave(&md->pushback_lock, flags);
1381 clear_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
1382 bio_list_merge_head(&md->deferred, &md->pushback);
1383 bio_list_init(&md->pushback);
1384 spin_unlock_irqrestore(&md->pushback_lock, flags);
1385}
1386
Milan Broz304f3f62008-02-08 02:11:17 +00001387static void dm_wq_work(struct work_struct *work)
1388{
1389 struct dm_wq_req *req = container_of(work, struct dm_wq_req, work);
1390 struct mapped_device *md = req->md;
1391
1392 down_write(&md->io_lock);
1393 switch (req->type) {
Milan Broz304f3f62008-02-08 02:11:17 +00001394 case DM_WQ_FLUSH_DEFERRED:
1395 __flush_deferred_io(md);
1396 break;
1397 default:
1398 DMERR("dm_wq_work: unrecognised work type %d", req->type);
1399 BUG();
1400 }
1401 up_write(&md->io_lock);
1402}
1403
1404static void dm_wq_queue(struct mapped_device *md, int type, void *context,
1405 struct dm_wq_req *req)
1406{
1407 req->type = type;
1408 req->md = md;
1409 req->context = context;
1410 INIT_WORK(&req->work, dm_wq_work);
1411 queue_work(md->wq, &req->work);
1412}
1413
1414static void dm_queue_flush(struct mapped_device *md, int type, void *context)
1415{
1416 struct dm_wq_req req;
1417
1418 dm_wq_queue(md, type, context, &req);
1419 flush_workqueue(md->wq);
1420}
1421
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422/*
1423 * Swap in a new table (destroying old one).
1424 */
1425int dm_swap_table(struct mapped_device *md, struct dm_table *table)
1426{
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07001427 int r = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
Daniel Walkere61290a2008-02-08 02:10:08 +00001429 mutex_lock(&md->suspend_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
1431 /* device must be suspended */
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001432 if (!dm_suspended(md))
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07001433 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434
Jun'ichi Nomurabfa152f2007-01-26 00:57:07 -08001435 /* without bdev, the device size cannot be changed */
1436 if (!md->suspended_bdev)
1437 if (get_capacity(md->disk) != dm_table_get_size(table))
1438 goto out;
1439
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 __unbind(md);
1441 r = __bind(md, table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07001443out:
Daniel Walkere61290a2008-02-08 02:10:08 +00001444 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07001445 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446}
1447
1448/*
1449 * Functions to lock and unlock any filesystem running on the
1450 * device.
1451 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001452static int lock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453{
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001454 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455
1456 WARN_ON(md->frozen_sb);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07001457
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001458 md->frozen_sb = freeze_bdev(md->suspended_bdev);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07001459 if (IS_ERR(md->frozen_sb)) {
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001460 r = PTR_ERR(md->frozen_sb);
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001461 md->frozen_sb = NULL;
1462 return r;
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07001463 }
1464
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08001465 set_bit(DMF_FROZEN, &md->flags);
1466
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 /* don't bdput right now, we don't want the bdev
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001468 * to go away while it is locked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 */
1470 return 0;
1471}
1472
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001473static void unlock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474{
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08001475 if (!test_bit(DMF_FROZEN, &md->flags))
1476 return;
1477
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001478 thaw_bdev(md->suspended_bdev, md->frozen_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 md->frozen_sb = NULL;
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08001480 clear_bit(DMF_FROZEN, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481}
1482
1483/*
1484 * We need to be able to change a mapping table under a mounted
1485 * filesystem. For example we might want to move some data in
1486 * the background. Before the table can be swapped with
1487 * dm_bind_table, dm_suspend must be called to flush any in
1488 * flight bios and ensure that any further io gets deferred.
1489 */
Kiyoshi Uedaa3d77d32006-12-08 02:41:04 -08001490int dm_suspend(struct mapped_device *md, unsigned suspend_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491{
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001492 struct dm_table *map = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 DECLARE_WAITQUEUE(wait, current);
Milan Broz46125c12008-02-08 02:10:30 +00001494 int r = 0;
Kiyoshi Uedaa3d77d32006-12-08 02:41:04 -08001495 int do_lockfs = suspend_flags & DM_SUSPEND_LOCKFS_FLAG ? 1 : 0;
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001496 int noflush = suspend_flags & DM_SUSPEND_NOFLUSH_FLAG ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497
Daniel Walkere61290a2008-02-08 02:10:08 +00001498 mutex_lock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001499
Milan Broz73d410c2008-02-08 02:10:25 +00001500 if (dm_suspended(md)) {
1501 r = -EINVAL;
Alasdair G Kergond2874832006-11-08 17:44:43 -08001502 goto out_unlock;
Milan Broz73d410c2008-02-08 02:10:25 +00001503 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504
1505 map = dm_get_table(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001507 /*
1508 * DMF_NOFLUSH_SUSPENDING must be set before presuspend.
1509 * This flag is cleared before dm_suspend returns.
1510 */
1511 if (noflush)
1512 set_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
1513
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001514 /* This does not get reverted if there's an error later. */
1515 dm_table_presuspend_targets(map);
1516
Jun'ichi Nomurabfa152f2007-01-26 00:57:07 -08001517 /* bdget() can stall if the pending I/Os are not flushed */
1518 if (!noflush) {
1519 md->suspended_bdev = bdget_disk(md->disk, 0);
1520 if (!md->suspended_bdev) {
1521 DMWARN("bdget failed in dm_suspend");
1522 r = -ENOMEM;
Kiyoshi Uedaf431d962008-10-21 17:45:07 +01001523 goto out;
Jun'ichi Nomurabfa152f2007-01-26 00:57:07 -08001524 }
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001525
Milan Broz6d6f10d2008-02-08 02:10:22 +00001526 /*
1527 * Flush I/O to the device. noflush supersedes do_lockfs,
1528 * because lock_fs() needs to flush I/Os.
1529 */
1530 if (do_lockfs) {
1531 r = lock_fs(md);
1532 if (r)
1533 goto out;
1534 }
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08001535 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536
1537 /*
Alasdair G Kergon354e0072005-05-05 16:16:05 -07001538 * First we set the BLOCK_IO flag so no more ios will be mapped.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001540 down_write(&md->io_lock);
1541 set_bit(DMF_BLOCK_IO, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 add_wait_queue(&md->wait, &wait);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001544 up_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545
1546 /* unplug */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001547 if (map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 dm_table_unplug_all(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
1550 /*
Milan Broz46125c12008-02-08 02:10:30 +00001551 * Wait for the already-mapped ios to complete.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 */
Milan Broz46125c12008-02-08 02:10:30 +00001553 r = dm_wait_for_completion(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001555 down_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 remove_wait_queue(&md->wait, &wait);
1557
Milan Broz6d6f10d2008-02-08 02:10:22 +00001558 if (noflush)
1559 __merge_pushback_list(md);
Milan Broz94d63512008-02-08 02:10:27 +00001560 up_write(&md->io_lock);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001561
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 /* were we interrupted ? */
Milan Broz46125c12008-02-08 02:10:30 +00001563 if (r < 0) {
Milan Broz304f3f62008-02-08 02:11:17 +00001564 dm_queue_flush(md, DM_WQ_FLUSH_DEFERRED, NULL);
Milan Broz73d410c2008-02-08 02:10:25 +00001565
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001566 unlock_fs(md);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001567 goto out; /* pushback list is already flushed, so skip flush */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001568 }
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001569
1570 dm_table_postsuspend_targets(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
1572 set_bit(DMF_SUSPENDED, &md->flags);
1573
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001574out:
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001575 if (r && md->suspended_bdev) {
1576 bdput(md->suspended_bdev);
1577 md->suspended_bdev = NULL;
1578 }
1579
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 dm_table_put(map);
Alasdair G Kergond2874832006-11-08 17:44:43 -08001581
1582out_unlock:
Daniel Walkere61290a2008-02-08 02:10:08 +00001583 mutex_unlock(&md->suspend_lock);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001584 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585}
1586
1587int dm_resume(struct mapped_device *md)
1588{
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001589 int r = -EINVAL;
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001590 struct dm_table *map = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591
Daniel Walkere61290a2008-02-08 02:10:08 +00001592 mutex_lock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001593 if (!dm_suspended(md))
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001594 goto out;
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001595
1596 map = dm_get_table(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001597 if (!map || !dm_table_get_size(map))
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001598 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599
Milan Broz8757b772006-10-03 01:15:36 -07001600 r = dm_table_resume_targets(map);
1601 if (r)
1602 goto out;
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001603
Milan Broz304f3f62008-02-08 02:11:17 +00001604 dm_queue_flush(md, DM_WQ_FLUSH_DEFERRED, NULL);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001605
1606 unlock_fs(md);
1607
Jun'ichi Nomurabfa152f2007-01-26 00:57:07 -08001608 if (md->suspended_bdev) {
1609 bdput(md->suspended_bdev);
1610 md->suspended_bdev = NULL;
1611 }
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001612
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001613 clear_bit(DMF_SUSPENDED, &md->flags);
1614
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 dm_table_unplug_all(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616
Alasdair G Kergon69267a32007-12-13 14:15:57 +00001617 dm_kobject_uevent(md);
Hannes Reinecke8560ed62006-10-03 01:15:35 -07001618
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001619 r = 0;
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001620
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001621out:
1622 dm_table_put(map);
Daniel Walkere61290a2008-02-08 02:10:08 +00001623 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001624
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001625 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626}
1627
1628/*-----------------------------------------------------------------
1629 * Event notification.
1630 *---------------------------------------------------------------*/
Alasdair G Kergon69267a32007-12-13 14:15:57 +00001631void dm_kobject_uevent(struct mapped_device *md)
1632{
Tejun Heoed9e1982008-08-25 19:56:05 +09001633 kobject_uevent(&disk_to_dev(md->disk)->kobj, KOBJ_CHANGE);
Alasdair G Kergon69267a32007-12-13 14:15:57 +00001634}
1635
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001636uint32_t dm_next_uevent_seq(struct mapped_device *md)
1637{
1638 return atomic_add_return(1, &md->uevent_seq);
1639}
1640
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641uint32_t dm_get_event_nr(struct mapped_device *md)
1642{
1643 return atomic_read(&md->event_nr);
1644}
1645
1646int dm_wait_event(struct mapped_device *md, int event_nr)
1647{
1648 return wait_event_interruptible(md->eventq,
1649 (event_nr != atomic_read(&md->event_nr)));
1650}
1651
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001652void dm_uevent_add(struct mapped_device *md, struct list_head *elist)
1653{
1654 unsigned long flags;
1655
1656 spin_lock_irqsave(&md->uevent_lock, flags);
1657 list_add(elist, &md->uevent_list);
1658 spin_unlock_irqrestore(&md->uevent_lock, flags);
1659}
1660
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661/*
1662 * The gendisk is only valid as long as you have a reference
1663 * count on 'md'.
1664 */
1665struct gendisk *dm_disk(struct mapped_device *md)
1666{
1667 return md->disk;
1668}
1669
1670int dm_suspended(struct mapped_device *md)
1671{
1672 return test_bit(DMF_SUSPENDED, &md->flags);
1673}
1674
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001675int dm_noflush_suspending(struct dm_target *ti)
1676{
1677 struct mapped_device *md = dm_table_get_md(ti->table);
1678 int r = __noflush_suspending(md);
1679
1680 dm_put(md);
1681
1682 return r;
1683}
1684EXPORT_SYMBOL_GPL(dm_noflush_suspending);
1685
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686static struct block_device_operations dm_blk_dops = {
1687 .open = dm_blk_open,
1688 .release = dm_blk_close,
Milan Brozaa129a22006-10-03 01:15:15 -07001689 .ioctl = dm_blk_ioctl,
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08001690 .getgeo = dm_blk_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 .owner = THIS_MODULE
1692};
1693
1694EXPORT_SYMBOL(dm_get_mapinfo);
1695
1696/*
1697 * module hooks
1698 */
1699module_init(dm_init);
1700module_exit(dm_exit);
1701
1702module_param(major, uint, 0);
1703MODULE_PARM_DESC(major, "The major number of the device mapper");
1704MODULE_DESCRIPTION(DM_NAME " driver");
1705MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
1706MODULE_LICENSE("GPL");