blob: ace998ce59f6af2616da4a24eca66de8b59c69ba [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>
Milan Brozaa129a22006-10-03 01:15:15 -070024#include <linux/smp_lock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Alasdair G Kergon72d94862006-06-26 00:27:35 -070026#define DM_MSG_PREFIX "core"
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028static const char *_name = DM_NAME;
29
30static unsigned int major = 0;
31static unsigned int _major = 0;
32
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -070033static DEFINE_SPINLOCK(_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070034/*
35 * 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/*
46 * One of these is allocated per target within a bio. Hopefully
47 * this will be simplified out one day.
48 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +010049struct dm_target_io {
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 struct dm_io *io;
51 struct dm_target *ti;
52 union map_info info;
53};
54
55union map_info *dm_get_mapinfo(struct bio *bio)
56{
Alasdair G Kergon17b2f662006-06-26 00:27:33 -070057 if (bio && bio->bi_private)
Alasdair G Kergon028867a2007-07-12 17:26:32 +010058 return &((struct dm_target_io *)bio->bi_private)->info;
Alasdair G Kergon17b2f662006-06-26 00:27:33 -070059 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060}
61
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -070062#define MINOR_ALLOCED ((void *)-1)
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064/*
65 * Bits for the md->flags field.
66 */
67#define DMF_BLOCK_IO 0
68#define DMF_SUSPENDED 1
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -080069#define DMF_FROZEN 2
Jeff Mahoneyfba9f902006-06-26 00:27:23 -070070#define DMF_FREEING 3
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -070071#define DMF_DELETING 4
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -080072#define DMF_NOFLUSH_SUSPENDING 5
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Milan Broz304f3f62008-02-08 02:11:17 +000074/*
75 * Work processed by per-device workqueue.
76 */
77struct dm_wq_req {
78 enum {
79 DM_WQ_FLUSH_ALL,
80 DM_WQ_FLUSH_DEFERRED,
81 } type;
82 struct work_struct work;
83 struct mapped_device *md;
84 void *context;
85};
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087struct mapped_device {
Alasdair G Kergon2ca33102005-07-28 21:16:00 -070088 struct rw_semaphore io_lock;
Daniel Walkere61290a2008-02-08 02:10:08 +000089 struct mutex suspend_lock;
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -080090 spinlock_t pushback_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 rwlock_t map_lock;
92 atomic_t holders;
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -070093 atomic_t open_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95 unsigned long flags;
96
Jens Axboe165125e2007-07-24 09:28:11 +020097 struct request_queue *queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 struct gendisk *disk;
Mike Anderson7e51f252006-03-27 01:17:52 -080099 char name[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
101 void *interface_ptr;
102
103 /*
104 * A list of ios that arrived while we were suspended.
105 */
106 atomic_t pending;
107 wait_queue_head_t wait;
Kiyoshi Ueda74859362006-12-08 02:41:02 -0800108 struct bio_list deferred;
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800109 struct bio_list pushback;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111 /*
Milan Broz304f3f62008-02-08 02:11:17 +0000112 * Processing queue (flush/barriers)
113 */
114 struct workqueue_struct *wq;
115
116 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 * The current mapping.
118 */
119 struct dm_table *map;
120
121 /*
122 * io objects are allocated from here.
123 */
124 mempool_t *io_pool;
125 mempool_t *tio_pool;
126
Stefan Bader9faf4002006-10-03 01:15:41 -0700127 struct bio_set *bs;
128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 /*
130 * Event handling.
131 */
132 atomic_t event_nr;
133 wait_queue_head_t eventq;
Mike Anderson7a8c3d32007-10-19 22:48:01 +0100134 atomic_t uevent_seq;
135 struct list_head uevent_list;
136 spinlock_t uevent_lock; /* Protect access to uevent_list */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
138 /*
139 * freeze/thaw support require holding onto a super block
140 */
141 struct super_block *frozen_sb;
Alasdair G Kergone39e2e92006-01-06 00:20:05 -0800142 struct block_device *suspended_bdev;
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800143
144 /* forced geometry settings */
145 struct hd_geometry geometry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146};
147
148#define MIN_IOS 256
Christoph Lametere18b8902006-12-06 20:33:20 -0800149static struct kmem_cache *_io_cache;
150static struct kmem_cache *_tio_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152static int __init local_init(void)
153{
154 int r;
155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 /* allocate a slab for the dm_ios */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100157 _io_cache = KMEM_CACHE(dm_io, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 if (!_io_cache)
159 return -ENOMEM;
160
161 /* allocate a slab for the target ios */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100162 _tio_cache = KMEM_CACHE(dm_target_io, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 if (!_tio_cache) {
164 kmem_cache_destroy(_io_cache);
165 return -ENOMEM;
166 }
167
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100168 r = dm_uevent_init();
169 if (r) {
170 kmem_cache_destroy(_tio_cache);
171 kmem_cache_destroy(_io_cache);
172 return r;
173 }
174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 _major = major;
176 r = register_blkdev(_major, _name);
177 if (r < 0) {
178 kmem_cache_destroy(_tio_cache);
179 kmem_cache_destroy(_io_cache);
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100180 dm_uevent_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 return r;
182 }
183
184 if (!_major)
185 _major = r;
186
187 return 0;
188}
189
190static void local_exit(void)
191{
192 kmem_cache_destroy(_tio_cache);
193 kmem_cache_destroy(_io_cache);
Akinobu Mita00d59402007-07-17 04:03:46 -0700194 unregister_blkdev(_major, _name);
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100195 dm_uevent_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197 _major = 0;
198
199 DMINFO("cleaned up");
200}
201
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000202static int (*_inits[])(void) __initdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 local_init,
204 dm_target_init,
205 dm_linear_init,
206 dm_stripe_init,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100207 dm_kcopyd_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 dm_interface_init,
209};
210
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000211static void (*_exits[])(void) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 local_exit,
213 dm_target_exit,
214 dm_linear_exit,
215 dm_stripe_exit,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100216 dm_kcopyd_exit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 dm_interface_exit,
218};
219
220static int __init dm_init(void)
221{
222 const int count = ARRAY_SIZE(_inits);
223
224 int r, i;
225
226 for (i = 0; i < count; i++) {
227 r = _inits[i]();
228 if (r)
229 goto bad;
230 }
231
232 return 0;
233
234 bad:
235 while (i--)
236 _exits[i]();
237
238 return r;
239}
240
241static void __exit dm_exit(void)
242{
243 int i = ARRAY_SIZE(_exits);
244
245 while (i--)
246 _exits[i]();
247}
248
249/*
250 * Block device functions
251 */
252static int dm_blk_open(struct inode *inode, struct file *file)
253{
254 struct mapped_device *md;
255
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700256 spin_lock(&_minor_lock);
257
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 md = inode->i_bdev->bd_disk->private_data;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700259 if (!md)
260 goto out;
261
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700262 if (test_bit(DMF_FREEING, &md->flags) ||
263 test_bit(DMF_DELETING, &md->flags)) {
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700264 md = NULL;
265 goto out;
266 }
267
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 dm_get(md);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700269 atomic_inc(&md->open_count);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700270
271out:
272 spin_unlock(&_minor_lock);
273
274 return md ? 0 : -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275}
276
277static int dm_blk_close(struct inode *inode, struct file *file)
278{
279 struct mapped_device *md;
280
281 md = inode->i_bdev->bd_disk->private_data;
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700282 atomic_dec(&md->open_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 dm_put(md);
284 return 0;
285}
286
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700287int dm_open_count(struct mapped_device *md)
288{
289 return atomic_read(&md->open_count);
290}
291
292/*
293 * Guarantees nothing is using the device before it's deleted.
294 */
295int dm_lock_for_deletion(struct mapped_device *md)
296{
297 int r = 0;
298
299 spin_lock(&_minor_lock);
300
301 if (dm_open_count(md))
302 r = -EBUSY;
303 else
304 set_bit(DMF_DELETING, &md->flags);
305
306 spin_unlock(&_minor_lock);
307
308 return r;
309}
310
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800311static int dm_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
312{
313 struct mapped_device *md = bdev->bd_disk->private_data;
314
315 return dm_get_geometry(md, geo);
316}
317
Milan Brozaa129a22006-10-03 01:15:15 -0700318static int dm_blk_ioctl(struct inode *inode, struct file *file,
319 unsigned int cmd, unsigned long arg)
320{
321 struct mapped_device *md;
322 struct dm_table *map;
323 struct dm_target *tgt;
324 int r = -ENOTTY;
325
326 /* We don't really need this lock, but we do need 'inode'. */
327 unlock_kernel();
328
329 md = inode->i_bdev->bd_disk->private_data;
330
331 map = dm_get_table(md);
332
333 if (!map || !dm_table_get_size(map))
334 goto out;
335
336 /* We only support devices that have a single target */
337 if (dm_table_get_num_targets(map) != 1)
338 goto out;
339
340 tgt = dm_table_get_target(map, 0);
341
342 if (dm_suspended(md)) {
343 r = -EAGAIN;
344 goto out;
345 }
346
347 if (tgt->type->ioctl)
348 r = tgt->type->ioctl(tgt, inode, file, cmd, arg);
349
350out:
351 dm_table_put(map);
352
353 lock_kernel();
354 return r;
355}
356
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100357static struct dm_io *alloc_io(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358{
359 return mempool_alloc(md->io_pool, GFP_NOIO);
360}
361
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100362static void free_io(struct mapped_device *md, struct dm_io *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363{
364 mempool_free(io, md->io_pool);
365}
366
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100367static struct dm_target_io *alloc_tio(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368{
369 return mempool_alloc(md->tio_pool, GFP_NOIO);
370}
371
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100372static void free_tio(struct mapped_device *md, struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373{
374 mempool_free(tio, md->tio_pool);
375}
376
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800377static void start_io_acct(struct dm_io *io)
378{
379 struct mapped_device *md = io->md;
380
381 io->start_time = jiffies;
382
383 preempt_disable();
384 disk_round_stats(dm_disk(md));
385 preempt_enable();
386 dm_disk(md)->in_flight = atomic_inc_return(&md->pending);
387}
388
389static int end_io_acct(struct dm_io *io)
390{
391 struct mapped_device *md = io->md;
392 struct bio *bio = io->bio;
393 unsigned long duration = jiffies - io->start_time;
394 int pending;
395 int rw = bio_data_dir(bio);
396
397 preempt_disable();
398 disk_round_stats(dm_disk(md));
399 preempt_enable();
400 dm_disk(md)->in_flight = pending = atomic_dec_return(&md->pending);
401
402 disk_stat_add(dm_disk(md), ticks[rw], duration);
403
404 return !pending;
405}
406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407/*
408 * Add the bio to the list of deferred io.
409 */
410static int queue_io(struct mapped_device *md, struct bio *bio)
411{
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700412 down_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
414 if (!test_bit(DMF_BLOCK_IO, &md->flags)) {
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700415 up_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 return 1;
417 }
418
419 bio_list_add(&md->deferred, bio);
420
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700421 up_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 return 0; /* deferred successfully */
423}
424
425/*
426 * Everyone (including functions in this file), should use this
427 * function to access the md->map field, and make sure they call
428 * dm_table_put() when finished.
429 */
430struct dm_table *dm_get_table(struct mapped_device *md)
431{
432 struct dm_table *t;
433
434 read_lock(&md->map_lock);
435 t = md->map;
436 if (t)
437 dm_table_get(t);
438 read_unlock(&md->map_lock);
439
440 return t;
441}
442
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800443/*
444 * Get the geometry associated with a dm device
445 */
446int dm_get_geometry(struct mapped_device *md, struct hd_geometry *geo)
447{
448 *geo = md->geometry;
449
450 return 0;
451}
452
453/*
454 * Set the geometry of a device.
455 */
456int dm_set_geometry(struct mapped_device *md, struct hd_geometry *geo)
457{
458 sector_t sz = (sector_t)geo->cylinders * geo->heads * geo->sectors;
459
460 if (geo->start > sz) {
461 DMWARN("Start sector is beyond the geometry limits.");
462 return -EINVAL;
463 }
464
465 md->geometry = *geo;
466
467 return 0;
468}
469
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470/*-----------------------------------------------------------------
471 * CRUD START:
472 * A more elegant soln is in the works that uses the queue
473 * merge fn, unfortunately there are a couple of changes to
474 * the block layer that I want to make for this. So in the
475 * interests of getting something for people to use I give
476 * you this clearly demarcated crap.
477 *---------------------------------------------------------------*/
478
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800479static int __noflush_suspending(struct mapped_device *md)
480{
481 return test_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
482}
483
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484/*
485 * Decrements the number of outstanding ios that a bio has been
486 * cloned into, completing the original io if necc.
487 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800488static void dec_pending(struct dm_io *io, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489{
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800490 unsigned long flags;
491
492 /* Push-back supersedes any I/O errors */
493 if (error && !(io->error > 0 && __noflush_suspending(io->md)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 io->error = error;
495
496 if (atomic_dec_and_test(&io->io_count)) {
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800497 if (io->error == DM_ENDIO_REQUEUE) {
498 /*
499 * Target requested pushing back the I/O.
500 * This must be handled before the sleeper on
501 * suspend queue merges the pushback list.
502 */
503 spin_lock_irqsave(&io->md->pushback_lock, flags);
504 if (__noflush_suspending(io->md))
505 bio_list_add(&io->md->pushback, io->bio);
506 else
507 /* noflush suspend was interrupted. */
508 io->error = -EIO;
509 spin_unlock_irqrestore(&io->md->pushback_lock, flags);
510 }
511
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800512 if (end_io_acct(io))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 /* nudge anyone waiting on suspend queue */
514 wake_up(&io->md->wait);
515
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800516 if (io->error != DM_ENDIO_REQUEUE) {
517 blk_add_trace_bio(io->md->queue, io->bio,
518 BLK_TA_COMPLETE);
Jens Axboe2056a782006-03-23 20:00:26 +0100519
NeilBrown6712ecf2007-09-27 12:47:43 +0200520 bio_endio(io->bio, io->error);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800521 }
522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 free_io(io->md, io);
524 }
525}
526
NeilBrown6712ecf2007-09-27 12:47:43 +0200527static void clone_endio(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528{
529 int r = 0;
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100530 struct dm_target_io *tio = bio->bi_private;
Stefan Bader9faf4002006-10-03 01:15:41 -0700531 struct mapped_device *md = tio->io->md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 dm_endio_fn endio = tio->ti->type->end_io;
533
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 if (!bio_flagged(bio, BIO_UPTODATE) && !error)
535 error = -EIO;
536
537 if (endio) {
538 r = endio(tio->ti, bio, error, &tio->info);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800539 if (r < 0 || r == DM_ENDIO_REQUEUE)
540 /*
541 * error and requeue request are handled
542 * in dec_pending().
543 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 error = r;
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800545 else if (r == DM_ENDIO_INCOMPLETE)
546 /* The target will handle the io */
NeilBrown6712ecf2007-09-27 12:47:43 +0200547 return;
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800548 else if (r) {
549 DMWARN("unimplemented target endio return value: %d", r);
550 BUG();
551 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 }
553
Stefan Bader9faf4002006-10-03 01:15:41 -0700554 dec_pending(tio->io, error);
555
556 /*
557 * Store md for cleanup instead of tio which is about to get freed.
558 */
559 bio->bi_private = md->bs;
560
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 bio_put(bio);
Stefan Bader9faf4002006-10-03 01:15:41 -0700562 free_tio(md, tio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563}
564
565static sector_t max_io_len(struct mapped_device *md,
566 sector_t sector, struct dm_target *ti)
567{
568 sector_t offset = sector - ti->begin;
569 sector_t len = ti->len - offset;
570
571 /*
572 * Does the target need to split even further ?
573 */
574 if (ti->split_io) {
575 sector_t boundary;
576 boundary = ((offset + ti->split_io) & ~(ti->split_io - 1))
577 - offset;
578 if (len > boundary)
579 len = boundary;
580 }
581
582 return len;
583}
584
585static void __map_bio(struct dm_target *ti, struct bio *clone,
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100586 struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587{
588 int r;
Jens Axboe2056a782006-03-23 20:00:26 +0100589 sector_t sector;
Stefan Bader9faf4002006-10-03 01:15:41 -0700590 struct mapped_device *md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
592 /*
593 * Sanity checks.
594 */
595 BUG_ON(!clone->bi_size);
596
597 clone->bi_end_io = clone_endio;
598 clone->bi_private = tio;
599
600 /*
601 * Map the clone. If r == 0 we don't need to do
602 * anything, the target has assumed ownership of
603 * this io.
604 */
605 atomic_inc(&tio->io->io_count);
Jens Axboe2056a782006-03-23 20:00:26 +0100606 sector = clone->bi_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 r = ti->type->map(ti, clone, &tio->info);
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800608 if (r == DM_MAPIO_REMAPPED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 /* the bio has been remapped so dispatch it */
Jens Axboe2056a782006-03-23 20:00:26 +0100610
Alasdair G Kergon17b2f662006-06-26 00:27:33 -0700611 blk_add_trace_remap(bdev_get_queue(clone->bi_bdev), clone,
Alan D. Brunellec7149d62007-08-07 15:30:23 +0200612 tio->io->bio->bi_bdev->bd_dev,
613 clone->bi_sector, sector);
Jens Axboe2056a782006-03-23 20:00:26 +0100614
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 generic_make_request(clone);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800616 } else if (r < 0 || r == DM_MAPIO_REQUEUE) {
617 /* error the io and bail out, or requeue it if needed */
Stefan Bader9faf4002006-10-03 01:15:41 -0700618 md = tio->io->md;
619 dec_pending(tio->io, r);
620 /*
621 * Store bio_set for cleanup.
622 */
623 clone->bi_private = md->bs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 bio_put(clone);
Stefan Bader9faf4002006-10-03 01:15:41 -0700625 free_tio(md, tio);
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800626 } else if (r) {
627 DMWARN("unimplemented target map return value: %d", r);
628 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 }
630}
631
632struct clone_info {
633 struct mapped_device *md;
634 struct dm_table *map;
635 struct bio *bio;
636 struct dm_io *io;
637 sector_t sector;
638 sector_t sector_count;
639 unsigned short idx;
640};
641
Peter Osterlund36763472005-09-06 15:16:42 -0700642static void dm_bio_destructor(struct bio *bio)
643{
Stefan Bader9faf4002006-10-03 01:15:41 -0700644 struct bio_set *bs = bio->bi_private;
645
646 bio_free(bio, bs);
Peter Osterlund36763472005-09-06 15:16:42 -0700647}
648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649/*
650 * Creates a little bio that is just does part of a bvec.
651 */
652static struct bio *split_bvec(struct bio *bio, sector_t sector,
653 unsigned short idx, unsigned int offset,
Stefan Bader9faf4002006-10-03 01:15:41 -0700654 unsigned int len, struct bio_set *bs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655{
656 struct bio *clone;
657 struct bio_vec *bv = bio->bi_io_vec + idx;
658
Stefan Bader9faf4002006-10-03 01:15:41 -0700659 clone = bio_alloc_bioset(GFP_NOIO, 1, bs);
Peter Osterlund36763472005-09-06 15:16:42 -0700660 clone->bi_destructor = dm_bio_destructor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 *clone->bi_io_vec = *bv;
662
663 clone->bi_sector = sector;
664 clone->bi_bdev = bio->bi_bdev;
665 clone->bi_rw = bio->bi_rw;
666 clone->bi_vcnt = 1;
667 clone->bi_size = to_bytes(len);
668 clone->bi_io_vec->bv_offset = offset;
669 clone->bi_io_vec->bv_len = clone->bi_size;
670
671 return clone;
672}
673
674/*
675 * Creates a bio that consists of range of complete bvecs.
676 */
677static struct bio *clone_bio(struct bio *bio, sector_t sector,
678 unsigned short idx, unsigned short bv_count,
Stefan Bader9faf4002006-10-03 01:15:41 -0700679 unsigned int len, struct bio_set *bs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680{
681 struct bio *clone;
682
Stefan Bader9faf4002006-10-03 01:15:41 -0700683 clone = bio_alloc_bioset(GFP_NOIO, bio->bi_max_vecs, bs);
684 __bio_clone(clone, bio);
685 clone->bi_destructor = dm_bio_destructor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 clone->bi_sector = sector;
687 clone->bi_idx = idx;
688 clone->bi_vcnt = idx + bv_count;
689 clone->bi_size = to_bytes(len);
690 clone->bi_flags &= ~(1 << BIO_SEG_VALID);
691
692 return clone;
693}
694
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000695static int __clone_and_map(struct clone_info *ci)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696{
697 struct bio *clone, *bio = ci->bio;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000698 struct dm_target *ti;
699 sector_t len = 0, max;
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100700 struct dm_target_io *tio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000702 ti = dm_table_find_target(ci->map, ci->sector);
703 if (!dm_target_is_valid(ti))
704 return -EIO;
705
706 max = max_io_len(ci->md, ci->sector, ti);
707
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 /*
709 * Allocate a target io object.
710 */
711 tio = alloc_tio(ci->md);
712 tio->io = ci->io;
713 tio->ti = ti;
714 memset(&tio->info, 0, sizeof(tio->info));
715
716 if (ci->sector_count <= max) {
717 /*
718 * Optimise for the simple case where we can do all of
719 * the remaining io with a single clone.
720 */
721 clone = clone_bio(bio, ci->sector, ci->idx,
Stefan Bader9faf4002006-10-03 01:15:41 -0700722 bio->bi_vcnt - ci->idx, ci->sector_count,
723 ci->md->bs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 __map_bio(ti, clone, tio);
725 ci->sector_count = 0;
726
727 } else if (to_sector(bio->bi_io_vec[ci->idx].bv_len) <= max) {
728 /*
729 * There are some bvecs that don't span targets.
730 * Do as many of these as possible.
731 */
732 int i;
733 sector_t remaining = max;
734 sector_t bv_len;
735
736 for (i = ci->idx; remaining && (i < bio->bi_vcnt); i++) {
737 bv_len = to_sector(bio->bi_io_vec[i].bv_len);
738
739 if (bv_len > remaining)
740 break;
741
742 remaining -= bv_len;
743 len += bv_len;
744 }
745
Stefan Bader9faf4002006-10-03 01:15:41 -0700746 clone = clone_bio(bio, ci->sector, ci->idx, i - ci->idx, len,
747 ci->md->bs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 __map_bio(ti, clone, tio);
749
750 ci->sector += len;
751 ci->sector_count -= len;
752 ci->idx = i;
753
754 } else {
755 /*
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800756 * Handle a bvec that must be split between two or more targets.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 */
758 struct bio_vec *bv = bio->bi_io_vec + ci->idx;
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800759 sector_t remaining = to_sector(bv->bv_len);
760 unsigned int offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800762 do {
763 if (offset) {
764 ti = dm_table_find_target(ci->map, ci->sector);
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000765 if (!dm_target_is_valid(ti))
766 return -EIO;
767
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800768 max = max_io_len(ci->md, ci->sector, ti);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800770 tio = alloc_tio(ci->md);
771 tio->io = ci->io;
772 tio->ti = ti;
773 memset(&tio->info, 0, sizeof(tio->info));
774 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800776 len = min(remaining, max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800778 clone = split_bvec(bio, ci->sector, ci->idx,
Stefan Bader9faf4002006-10-03 01:15:41 -0700779 bv->bv_offset + offset, len,
780 ci->md->bs);
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800781
782 __map_bio(ti, clone, tio);
783
784 ci->sector += len;
785 ci->sector_count -= len;
786 offset += to_bytes(len);
787 } while (remaining -= len);
788
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 ci->idx++;
790 }
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000791
792 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793}
794
795/*
796 * Split the bio into several clones.
797 */
Milan Broz9e4e5f82007-10-19 22:38:53 +0100798static int __split_bio(struct mapped_device *md, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799{
800 struct clone_info ci;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000801 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
803 ci.map = dm_get_table(md);
Milan Broz9e4e5f82007-10-19 22:38:53 +0100804 if (unlikely(!ci.map))
805 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
807 ci.md = md;
808 ci.bio = bio;
809 ci.io = alloc_io(md);
810 ci.io->error = 0;
811 atomic_set(&ci.io->io_count, 1);
812 ci.io->bio = bio;
813 ci.io->md = md;
814 ci.sector = bio->bi_sector;
815 ci.sector_count = bio_sectors(bio);
816 ci.idx = bio->bi_idx;
817
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800818 start_io_acct(ci.io);
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000819 while (ci.sector_count && !error)
820 error = __clone_and_map(&ci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
822 /* drop the extra reference count */
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000823 dec_pending(ci.io, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 dm_table_put(ci.map);
Milan Broz9e4e5f82007-10-19 22:38:53 +0100825
826 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827}
828/*-----------------------------------------------------------------
829 * CRUD END
830 *---------------------------------------------------------------*/
831
Milan Brozf6fccb12008-07-21 12:00:37 +0100832static int dm_merge_bvec(struct request_queue *q,
833 struct bvec_merge_data *bvm,
834 struct bio_vec *biovec)
835{
836 struct mapped_device *md = q->queuedata;
837 struct dm_table *map = dm_get_table(md);
838 struct dm_target *ti;
839 sector_t max_sectors;
Mikulas Patocka50371082008-10-01 14:39:17 +0100840 int max_size = 0;
Milan Brozf6fccb12008-07-21 12:00:37 +0100841
842 if (unlikely(!map))
Mikulas Patocka50371082008-10-01 14:39:17 +0100843 goto out;
Milan Brozf6fccb12008-07-21 12:00:37 +0100844
845 ti = dm_table_find_target(map, bvm->bi_sector);
Mikulas Patockab01cd5a2008-10-01 14:39:24 +0100846 if (!dm_target_is_valid(ti))
847 goto out_table;
Milan Brozf6fccb12008-07-21 12:00:37 +0100848
849 /*
850 * Find maximum amount of I/O that won't need splitting
851 */
852 max_sectors = min(max_io_len(md, bvm->bi_sector, ti),
853 (sector_t) BIO_MAX_SECTORS);
854 max_size = (max_sectors << SECTOR_SHIFT) - bvm->bi_size;
855 if (max_size < 0)
856 max_size = 0;
857
858 /*
859 * merge_bvec_fn() returns number of bytes
860 * it can accept at this offset
861 * max is precomputed maximal io size
862 */
863 if (max_size && ti->type->merge)
864 max_size = ti->type->merge(ti, bvm, biovec, max_size);
865
Mikulas Patockab01cd5a2008-10-01 14:39:24 +0100866out_table:
Mikulas Patocka50371082008-10-01 14:39:17 +0100867 dm_table_put(map);
868
869out:
Milan Brozf6fccb12008-07-21 12:00:37 +0100870 /*
871 * Always allow an entire first page
872 */
873 if (max_size <= biovec->bv_len && !(bvm->bi_size >> SECTOR_SHIFT))
874 max_size = biovec->bv_len;
875
Milan Brozf6fccb12008-07-21 12:00:37 +0100876 return max_size;
877}
878
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879/*
880 * The request function that just remaps the bio built up by
881 * dm_merge_bvec.
882 */
Jens Axboe165125e2007-07-24 09:28:11 +0200883static int dm_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884{
Milan Broz9e4e5f82007-10-19 22:38:53 +0100885 int r = -EIO;
Kevin Corry12f03a42006-02-01 03:04:52 -0800886 int rw = bio_data_dir(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 struct mapped_device *md = q->queuedata;
888
Stefan Bader07a83c42007-07-12 17:28:33 +0100889 /*
890 * There is no use in forwarding any barrier request since we can't
891 * guarantee it is (or can be) handled by the targets correctly.
892 */
893 if (unlikely(bio_barrier(bio))) {
NeilBrown6712ecf2007-09-27 12:47:43 +0200894 bio_endio(bio, -EOPNOTSUPP);
Stefan Bader07a83c42007-07-12 17:28:33 +0100895 return 0;
896 }
897
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700898 down_read(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
Kevin Corry12f03a42006-02-01 03:04:52 -0800900 disk_stat_inc(dm_disk(md), ios[rw]);
901 disk_stat_add(dm_disk(md), sectors[rw], bio_sectors(bio));
902
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 /*
904 * If we're suspended we have to queue
905 * this io for later.
906 */
907 while (test_bit(DMF_BLOCK_IO, &md->flags)) {
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700908 up_read(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
Milan Broz9e4e5f82007-10-19 22:38:53 +0100910 if (bio_rw(bio) != READA)
911 r = queue_io(md, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
Milan Broz9e4e5f82007-10-19 22:38:53 +0100913 if (r <= 0)
914 goto out_req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
916 /*
917 * We're in a while loop, because someone could suspend
918 * before we get to the following read lock.
919 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700920 down_read(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 }
922
Milan Broz9e4e5f82007-10-19 22:38:53 +0100923 r = __split_bio(md, bio);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700924 up_read(&md->io_lock);
Milan Broz9e4e5f82007-10-19 22:38:53 +0100925
926out_req:
927 if (r < 0)
928 bio_io_error(bio);
929
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 return 0;
931}
932
Jens Axboe165125e2007-07-24 09:28:11 +0200933static void dm_unplug_all(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934{
935 struct mapped_device *md = q->queuedata;
936 struct dm_table *map = dm_get_table(md);
937
938 if (map) {
939 dm_table_unplug_all(map);
940 dm_table_put(map);
941 }
942}
943
944static int dm_any_congested(void *congested_data, int bdi_bits)
945{
946 int r;
947 struct mapped_device *md = (struct mapped_device *) congested_data;
948 struct dm_table *map = dm_get_table(md);
949
950 if (!map || test_bit(DMF_BLOCK_IO, &md->flags))
951 r = bdi_bits;
952 else
953 r = dm_table_any_congested(map, bdi_bits);
954
955 dm_table_put(map);
956 return r;
957}
958
959/*-----------------------------------------------------------------
960 * An IDR is used to keep track of allocated minor numbers.
961 *---------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962static DEFINE_IDR(_minor_idr);
963
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -0700964static void free_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965{
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -0700966 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 idr_remove(&_minor_idr, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -0700968 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969}
970
971/*
972 * See if the device with a specific minor # is free.
973 */
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +0100974static int specific_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975{
976 int r, m;
977
978 if (minor >= (1 << MINORBITS))
979 return -EINVAL;
980
Jeff Mahoney62f75c22006-06-26 00:27:21 -0700981 r = idr_pre_get(&_minor_idr, GFP_KERNEL);
982 if (!r)
983 return -ENOMEM;
984
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -0700985 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
987 if (idr_find(&_minor_idr, minor)) {
988 r = -EBUSY;
989 goto out;
990 }
991
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -0700992 r = idr_get_new_above(&_minor_idr, MINOR_ALLOCED, minor, &m);
Jeff Mahoney62f75c22006-06-26 00:27:21 -0700993 if (r)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
996 if (m != minor) {
997 idr_remove(&_minor_idr, m);
998 r = -EBUSY;
999 goto out;
1000 }
1001
1002out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001003 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 return r;
1005}
1006
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001007static int next_free_minor(int *minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008{
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001009 int r, m;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 r = idr_pre_get(&_minor_idr, GFP_KERNEL);
Jeff Mahoney62f75c22006-06-26 00:27:21 -07001012 if (!r)
1013 return -ENOMEM;
1014
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001015 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001017 r = idr_get_new(&_minor_idr, MINOR_ALLOCED, &m);
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001018 if (r)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
1021 if (m >= (1 << MINORBITS)) {
1022 idr_remove(&_minor_idr, m);
1023 r = -ENOSPC;
1024 goto out;
1025 }
1026
1027 *minor = m;
1028
1029out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001030 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 return r;
1032}
1033
1034static struct block_device_operations dm_blk_dops;
1035
1036/*
1037 * Allocate and initialise a blank device with a given minor.
1038 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001039static struct mapped_device *alloc_dev(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040{
1041 int r;
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001042 struct mapped_device *md = kzalloc(sizeof(*md), GFP_KERNEL);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001043 void *old_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
1045 if (!md) {
1046 DMWARN("unable to allocate device, out of memory.");
1047 return NULL;
1048 }
1049
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001050 if (!try_module_get(THIS_MODULE))
Milan Broz6ed7ade2008-02-08 02:10:19 +00001051 goto bad_module_get;
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001052
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 /* get a minor number for the dev */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001054 if (minor == DM_ANY_MINOR)
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001055 r = next_free_minor(&minor);
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001056 else
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001057 r = specific_minor(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 if (r < 0)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001059 goto bad_minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001061 init_rwsem(&md->io_lock);
Daniel Walkere61290a2008-02-08 02:10:08 +00001062 mutex_init(&md->suspend_lock);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001063 spin_lock_init(&md->pushback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 rwlock_init(&md->map_lock);
1065 atomic_set(&md->holders, 1);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -07001066 atomic_set(&md->open_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 atomic_set(&md->event_nr, 0);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001068 atomic_set(&md->uevent_seq, 0);
1069 INIT_LIST_HEAD(&md->uevent_list);
1070 spin_lock_init(&md->uevent_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
1072 md->queue = blk_alloc_queue(GFP_KERNEL);
1073 if (!md->queue)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001074 goto bad_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
1076 md->queue->queuedata = md;
1077 md->queue->backing_dev_info.congested_fn = dm_any_congested;
1078 md->queue->backing_dev_info.congested_data = md;
1079 blk_queue_make_request(md->queue, dm_request);
Jens Axboedaef2652006-01-10 10:48:02 +01001080 blk_queue_bounce_limit(md->queue, BLK_BOUNCE_ANY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 md->queue->unplug_fn = dm_unplug_all;
Milan Brozf6fccb12008-07-21 12:00:37 +01001082 blk_queue_merge_bvec(md->queue, dm_merge_bvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083
Matthew Dobson93d23412006-03-26 01:37:50 -08001084 md->io_pool = mempool_create_slab_pool(MIN_IOS, _io_cache);
Kiyoshi Ueda74859362006-12-08 02:41:02 -08001085 if (!md->io_pool)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001086 goto bad_io_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087
Matthew Dobson93d23412006-03-26 01:37:50 -08001088 md->tio_pool = mempool_create_slab_pool(MIN_IOS, _tio_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 if (!md->tio_pool)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001090 goto bad_tio_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091
Jens Axboe59725112007-04-02 10:06:42 +02001092 md->bs = bioset_create(16, 16);
Stefan Bader9faf4002006-10-03 01:15:41 -07001093 if (!md->bs)
1094 goto bad_no_bioset;
1095
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 md->disk = alloc_disk(1);
1097 if (!md->disk)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001098 goto bad_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07001100 atomic_set(&md->pending, 0);
1101 init_waitqueue_head(&md->wait);
1102 init_waitqueue_head(&md->eventq);
1103
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 md->disk->major = _major;
1105 md->disk->first_minor = minor;
1106 md->disk->fops = &dm_blk_dops;
1107 md->disk->queue = md->queue;
1108 md->disk->private_data = md;
1109 sprintf(md->disk->disk_name, "dm-%d", minor);
1110 add_disk(md->disk);
Mike Anderson7e51f252006-03-27 01:17:52 -08001111 format_dev_t(md->name, MKDEV(_major, minor));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
Milan Broz304f3f62008-02-08 02:11:17 +00001113 md->wq = create_singlethread_workqueue("kdmflush");
1114 if (!md->wq)
1115 goto bad_thread;
1116
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001117 /* Populate the mapping, nobody knows we exist yet */
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001118 spin_lock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001119 old_md = idr_replace(&_minor_idr, md, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001120 spin_unlock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001121
1122 BUG_ON(old_md != MINOR_ALLOCED);
1123
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 return md;
1125
Milan Broz304f3f62008-02-08 02:11:17 +00001126bad_thread:
1127 put_disk(md->disk);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001128bad_disk:
Stefan Bader9faf4002006-10-03 01:15:41 -07001129 bioset_free(md->bs);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001130bad_no_bioset:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 mempool_destroy(md->tio_pool);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001132bad_tio_pool:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 mempool_destroy(md->io_pool);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001134bad_io_pool:
Al Viro1312f402006-03-12 11:02:03 -05001135 blk_cleanup_queue(md->queue);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001136bad_queue:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 free_minor(minor);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001138bad_minor:
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001139 module_put(THIS_MODULE);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001140bad_module_get:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 kfree(md);
1142 return NULL;
1143}
1144
Jun'ichi Nomuraae9da832007-10-19 22:38:43 +01001145static void unlock_fs(struct mapped_device *md);
1146
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147static void free_dev(struct mapped_device *md)
1148{
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001149 int minor = md->disk->first_minor;
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08001150
Jun'ichi Nomurad9dde592006-02-24 13:04:24 -08001151 if (md->suspended_bdev) {
Jun'ichi Nomuraae9da832007-10-19 22:38:43 +01001152 unlock_fs(md);
Jun'ichi Nomurad9dde592006-02-24 13:04:24 -08001153 bdput(md->suspended_bdev);
1154 }
Milan Broz304f3f62008-02-08 02:11:17 +00001155 destroy_workqueue(md->wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 mempool_destroy(md->tio_pool);
1157 mempool_destroy(md->io_pool);
Stefan Bader9faf4002006-10-03 01:15:41 -07001158 bioset_free(md->bs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 del_gendisk(md->disk);
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08001160 free_minor(minor);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001161
1162 spin_lock(&_minor_lock);
1163 md->disk->private_data = NULL;
1164 spin_unlock(&_minor_lock);
1165
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 put_disk(md->disk);
Al Viro1312f402006-03-12 11:02:03 -05001167 blk_cleanup_queue(md->queue);
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001168 module_put(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 kfree(md);
1170}
1171
1172/*
1173 * Bind a table to the device.
1174 */
1175static void event_callback(void *context)
1176{
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001177 unsigned long flags;
1178 LIST_HEAD(uevents);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 struct mapped_device *md = (struct mapped_device *) context;
1180
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001181 spin_lock_irqsave(&md->uevent_lock, flags);
1182 list_splice_init(&md->uevent_list, &uevents);
1183 spin_unlock_irqrestore(&md->uevent_lock, flags);
1184
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001185 dm_send_uevents(&uevents, &md->disk->dev.kobj);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001186
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 atomic_inc(&md->event_nr);
1188 wake_up(&md->eventq);
1189}
1190
Alasdair G Kergon4e901882005-07-28 21:15:59 -07001191static void __set_size(struct mapped_device *md, sector_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192{
Alasdair G Kergon4e901882005-07-28 21:15:59 -07001193 set_capacity(md->disk, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001195 mutex_lock(&md->suspended_bdev->bd_inode->i_mutex);
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001196 i_size_write(md->suspended_bdev->bd_inode, (loff_t)size << SECTOR_SHIFT);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001197 mutex_unlock(&md->suspended_bdev->bd_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198}
1199
1200static int __bind(struct mapped_device *md, struct dm_table *t)
1201{
Jens Axboe165125e2007-07-24 09:28:11 +02001202 struct request_queue *q = md->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 sector_t size;
1204
1205 size = dm_table_get_size(t);
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08001206
1207 /*
1208 * Wipe any geometry if the size of the table changed.
1209 */
1210 if (size != get_capacity(md->disk))
1211 memset(&md->geometry, 0, sizeof(md->geometry));
1212
Jun'ichi Nomurabfa152f2007-01-26 00:57:07 -08001213 if (md->suspended_bdev)
1214 __set_size(md, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 if (size == 0)
1216 return 0;
1217
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 dm_table_get(t);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001219 dm_table_event_callback(t, event_callback, md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001220
1221 write_lock(&md->map_lock);
1222 md->map = t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 dm_table_set_restrictions(t, q);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001224 write_unlock(&md->map_lock);
1225
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 return 0;
1227}
1228
1229static void __unbind(struct mapped_device *md)
1230{
1231 struct dm_table *map = md->map;
1232
1233 if (!map)
1234 return;
1235
1236 dm_table_event_callback(map, NULL, NULL);
1237 write_lock(&md->map_lock);
1238 md->map = NULL;
1239 write_unlock(&md->map_lock);
1240 dm_table_put(map);
1241}
1242
1243/*
1244 * Constructor for a new device.
1245 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001246int dm_create(int minor, struct mapped_device **result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247{
1248 struct mapped_device *md;
1249
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001250 md = alloc_dev(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 if (!md)
1252 return -ENXIO;
1253
1254 *result = md;
1255 return 0;
1256}
1257
David Teigland637842c2006-01-06 00:20:00 -08001258static struct mapped_device *dm_find_md(dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259{
1260 struct mapped_device *md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 unsigned minor = MINOR(dev);
1262
1263 if (MAJOR(dev) != _major || minor >= (1 << MINORBITS))
1264 return NULL;
1265
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001266 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
1268 md = idr_find(&_minor_idr, minor);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001269 if (md && (md == MINOR_ALLOCED ||
1270 (dm_disk(md)->first_minor != minor) ||
Alasdair G Kergon17b2f662006-06-26 00:27:33 -07001271 test_bit(DMF_FREEING, &md->flags))) {
David Teigland637842c2006-01-06 00:20:00 -08001272 md = NULL;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001273 goto out;
1274 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001276out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001277 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
David Teigland637842c2006-01-06 00:20:00 -08001279 return md;
1280}
1281
David Teiglandd229a952006-01-06 00:20:01 -08001282struct mapped_device *dm_get_md(dev_t dev)
1283{
1284 struct mapped_device *md = dm_find_md(dev);
1285
1286 if (md)
1287 dm_get(md);
1288
1289 return md;
1290}
1291
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08001292void *dm_get_mdptr(struct mapped_device *md)
David Teigland637842c2006-01-06 00:20:00 -08001293{
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08001294 return md->interface_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295}
1296
1297void dm_set_mdptr(struct mapped_device *md, void *ptr)
1298{
1299 md->interface_ptr = ptr;
1300}
1301
1302void dm_get(struct mapped_device *md)
1303{
1304 atomic_inc(&md->holders);
1305}
1306
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001307const char *dm_device_name(struct mapped_device *md)
1308{
1309 return md->name;
1310}
1311EXPORT_SYMBOL_GPL(dm_device_name);
1312
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313void dm_put(struct mapped_device *md)
1314{
Mike Anderson1134e5a2006-03-27 01:17:54 -08001315 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001317 BUG_ON(test_bit(DMF_FREEING, &md->flags));
1318
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001319 if (atomic_dec_and_lock(&md->holders, &_minor_lock)) {
Mike Anderson1134e5a2006-03-27 01:17:54 -08001320 map = dm_get_table(md);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001321 idr_replace(&_minor_idr, MINOR_ALLOCED, dm_disk(md)->first_minor);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001322 set_bit(DMF_FREEING, &md->flags);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001323 spin_unlock(&_minor_lock);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001324 if (!dm_suspended(md)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 dm_table_presuspend_targets(map);
1326 dm_table_postsuspend_targets(map);
1327 }
1328 __unbind(md);
Mike Anderson1134e5a2006-03-27 01:17:54 -08001329 dm_table_put(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 free_dev(md);
1331 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332}
Edward Goggin79eb8852007-05-09 02:32:56 -07001333EXPORT_SYMBOL_GPL(dm_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334
Milan Broz46125c12008-02-08 02:10:30 +00001335static int dm_wait_for_completion(struct mapped_device *md)
1336{
1337 int r = 0;
1338
1339 while (1) {
1340 set_current_state(TASK_INTERRUPTIBLE);
1341
1342 smp_mb();
1343 if (!atomic_read(&md->pending))
1344 break;
1345
1346 if (signal_pending(current)) {
1347 r = -EINTR;
1348 break;
1349 }
1350
1351 io_schedule();
1352 }
1353 set_current_state(TASK_RUNNING);
1354
1355 return r;
1356}
1357
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358/*
1359 * Process the deferred bios
1360 */
Milan Broz6d6f10d2008-02-08 02:10:22 +00001361static void __flush_deferred_io(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362{
Milan Broz6d6f10d2008-02-08 02:10:22 +00001363 struct bio *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
Milan Broz6d6f10d2008-02-08 02:10:22 +00001365 while ((c = bio_list_pop(&md->deferred))) {
Milan Broz9e4e5f82007-10-19 22:38:53 +01001366 if (__split_bio(md, c))
1367 bio_io_error(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 }
Milan Broz73d410c2008-02-08 02:10:25 +00001369
1370 clear_bit(DMF_BLOCK_IO, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371}
1372
Milan Broz6d6f10d2008-02-08 02:10:22 +00001373static void __merge_pushback_list(struct mapped_device *md)
1374{
1375 unsigned long flags;
1376
1377 spin_lock_irqsave(&md->pushback_lock, flags);
1378 clear_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
1379 bio_list_merge_head(&md->deferred, &md->pushback);
1380 bio_list_init(&md->pushback);
1381 spin_unlock_irqrestore(&md->pushback_lock, flags);
1382}
1383
Milan Broz304f3f62008-02-08 02:11:17 +00001384static void dm_wq_work(struct work_struct *work)
1385{
1386 struct dm_wq_req *req = container_of(work, struct dm_wq_req, work);
1387 struct mapped_device *md = req->md;
1388
1389 down_write(&md->io_lock);
1390 switch (req->type) {
1391 case DM_WQ_FLUSH_ALL:
1392 __merge_pushback_list(md);
1393 /* pass through */
1394 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;
1523 goto flush_and_out;
1524 }
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
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001574flush_and_out:
Milan Broz304f3f62008-02-08 02:11:17 +00001575 if (r && noflush)
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001576 /*
1577 * Because there may be already I/Os in the pushback list,
1578 * flush them before return.
1579 */
Milan Broz304f3f62008-02-08 02:11:17 +00001580 dm_queue_flush(md, DM_WQ_FLUSH_ALL, NULL);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001581
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001582out:
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001583 if (r && md->suspended_bdev) {
1584 bdput(md->suspended_bdev);
1585 md->suspended_bdev = NULL;
1586 }
1587
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 dm_table_put(map);
Alasdair G Kergond2874832006-11-08 17:44:43 -08001589
1590out_unlock:
Daniel Walkere61290a2008-02-08 02:10:08 +00001591 mutex_unlock(&md->suspend_lock);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001592 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593}
1594
1595int dm_resume(struct mapped_device *md)
1596{
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001597 int r = -EINVAL;
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001598 struct dm_table *map = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599
Daniel Walkere61290a2008-02-08 02:10:08 +00001600 mutex_lock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001601 if (!dm_suspended(md))
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001602 goto out;
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001603
1604 map = dm_get_table(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001605 if (!map || !dm_table_get_size(map))
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001606 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
Milan Broz8757b772006-10-03 01:15:36 -07001608 r = dm_table_resume_targets(map);
1609 if (r)
1610 goto out;
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001611
Milan Broz304f3f62008-02-08 02:11:17 +00001612 dm_queue_flush(md, DM_WQ_FLUSH_DEFERRED, NULL);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001613
1614 unlock_fs(md);
1615
Jun'ichi Nomurabfa152f2007-01-26 00:57:07 -08001616 if (md->suspended_bdev) {
1617 bdput(md->suspended_bdev);
1618 md->suspended_bdev = NULL;
1619 }
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001620
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001621 clear_bit(DMF_SUSPENDED, &md->flags);
1622
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 dm_table_unplug_all(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624
Alasdair G Kergon69267a32007-12-13 14:15:57 +00001625 dm_kobject_uevent(md);
Hannes Reinecke8560ed62006-10-03 01:15:35 -07001626
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001627 r = 0;
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001628
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001629out:
1630 dm_table_put(map);
Daniel Walkere61290a2008-02-08 02:10:08 +00001631 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001632
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001633 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634}
1635
1636/*-----------------------------------------------------------------
1637 * Event notification.
1638 *---------------------------------------------------------------*/
Alasdair G Kergon69267a32007-12-13 14:15:57 +00001639void dm_kobject_uevent(struct mapped_device *md)
1640{
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001641 kobject_uevent(&md->disk->dev.kobj, KOBJ_CHANGE);
Alasdair G Kergon69267a32007-12-13 14:15:57 +00001642}
1643
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001644uint32_t dm_next_uevent_seq(struct mapped_device *md)
1645{
1646 return atomic_add_return(1, &md->uevent_seq);
1647}
1648
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649uint32_t dm_get_event_nr(struct mapped_device *md)
1650{
1651 return atomic_read(&md->event_nr);
1652}
1653
1654int dm_wait_event(struct mapped_device *md, int event_nr)
1655{
1656 return wait_event_interruptible(md->eventq,
1657 (event_nr != atomic_read(&md->event_nr)));
1658}
1659
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001660void dm_uevent_add(struct mapped_device *md, struct list_head *elist)
1661{
1662 unsigned long flags;
1663
1664 spin_lock_irqsave(&md->uevent_lock, flags);
1665 list_add(elist, &md->uevent_list);
1666 spin_unlock_irqrestore(&md->uevent_lock, flags);
1667}
1668
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669/*
1670 * The gendisk is only valid as long as you have a reference
1671 * count on 'md'.
1672 */
1673struct gendisk *dm_disk(struct mapped_device *md)
1674{
1675 return md->disk;
1676}
1677
1678int dm_suspended(struct mapped_device *md)
1679{
1680 return test_bit(DMF_SUSPENDED, &md->flags);
1681}
1682
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001683int dm_noflush_suspending(struct dm_target *ti)
1684{
1685 struct mapped_device *md = dm_table_get_md(ti->table);
1686 int r = __noflush_suspending(md);
1687
1688 dm_put(md);
1689
1690 return r;
1691}
1692EXPORT_SYMBOL_GPL(dm_noflush_suspending);
1693
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694static struct block_device_operations dm_blk_dops = {
1695 .open = dm_blk_open,
1696 .release = dm_blk_close,
Milan Brozaa129a22006-10-03 01:15:15 -07001697 .ioctl = dm_blk_ioctl,
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08001698 .getgeo = dm_blk_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 .owner = THIS_MODULE
1700};
1701
1702EXPORT_SYMBOL(dm_get_mapinfo);
1703
1704/*
1705 * module hooks
1706 */
1707module_init(dm_init);
1708module_exit(dm_exit);
1709
1710module_param(major, uint, 0);
1711MODULE_PARM_DESC(major, "The major number of the device mapper");
1712MODULE_DESCRIPTION(DM_NAME " driver");
1713MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
1714MODULE_LICENSE("GPL");