blob: d1d0cd0f5750a2693f29cdf7bf5e5d99cbbfa2c0 [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 {
Milan Broz304f3f62008-02-08 02:11:17 +000079 DM_WQ_FLUSH_DEFERRED,
80 } type;
81 struct work_struct work;
82 struct mapped_device *md;
83 void *context;
84};
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086struct mapped_device {
Alasdair G Kergon2ca33102005-07-28 21:16:00 -070087 struct rw_semaphore io_lock;
Daniel Walkere61290a2008-02-08 02:10:08 +000088 struct mutex suspend_lock;
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -080089 spinlock_t pushback_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 rwlock_t map_lock;
91 atomic_t holders;
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -070092 atomic_t open_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94 unsigned long flags;
95
Jens Axboe165125e2007-07-24 09:28:11 +020096 struct request_queue *queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 struct gendisk *disk;
Mike Anderson7e51f252006-03-27 01:17:52 -080098 char name[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100 void *interface_ptr;
101
102 /*
103 * A list of ios that arrived while we were suspended.
104 */
105 atomic_t pending;
106 wait_queue_head_t wait;
Kiyoshi Ueda74859362006-12-08 02:41:02 -0800107 struct bio_list deferred;
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800108 struct bio_list pushback;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110 /*
Milan Broz304f3f62008-02-08 02:11:17 +0000111 * Processing queue (flush/barriers)
112 */
113 struct workqueue_struct *wq;
114
115 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 * The current mapping.
117 */
118 struct dm_table *map;
119
120 /*
121 * io objects are allocated from here.
122 */
123 mempool_t *io_pool;
124 mempool_t *tio_pool;
125
Stefan Bader9faf4002006-10-03 01:15:41 -0700126 struct bio_set *bs;
127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 /*
129 * Event handling.
130 */
131 atomic_t event_nr;
132 wait_queue_head_t eventq;
Mike Anderson7a8c3d32007-10-19 22:48:01 +0100133 atomic_t uevent_seq;
134 struct list_head uevent_list;
135 spinlock_t uevent_lock; /* Protect access to uevent_list */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137 /*
138 * freeze/thaw support require holding onto a super block
139 */
140 struct super_block *frozen_sb;
Alasdair G Kergone39e2e92006-01-06 00:20:05 -0800141 struct block_device *suspended_bdev;
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800142
143 /* forced geometry settings */
144 struct hd_geometry geometry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145};
146
147#define MIN_IOS 256
Christoph Lametere18b8902006-12-06 20:33:20 -0800148static struct kmem_cache *_io_cache;
149static struct kmem_cache *_tio_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151static int __init local_init(void)
152{
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100153 int r = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 /* allocate a slab for the dm_ios */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100156 _io_cache = KMEM_CACHE(dm_io, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 if (!_io_cache)
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100158 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
160 /* allocate a slab for the target ios */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100161 _tio_cache = KMEM_CACHE(dm_target_io, 0);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100162 if (!_tio_cache)
163 goto out_free_io_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100165 r = dm_uevent_init();
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100166 if (r)
167 goto out_free_tio_cache;
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 _major = major;
170 r = register_blkdev(_major, _name);
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100171 if (r < 0)
172 goto out_uevent_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
174 if (!_major)
175 _major = r;
176
177 return 0;
Kiyoshi Ueda51157b42008-10-21 17:45:08 +0100178
179out_uevent_exit:
180 dm_uevent_exit();
181out_free_tio_cache:
182 kmem_cache_destroy(_tio_cache);
183out_free_io_cache:
184 kmem_cache_destroy(_io_cache);
185
186 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187}
188
189static void local_exit(void)
190{
191 kmem_cache_destroy(_tio_cache);
192 kmem_cache_destroy(_io_cache);
Akinobu Mita00d59402007-07-17 04:03:46 -0700193 unregister_blkdev(_major, _name);
Mike Anderson51e5b2b2007-10-19 22:48:00 +0100194 dm_uevent_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
196 _major = 0;
197
198 DMINFO("cleaned up");
199}
200
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000201static int (*_inits[])(void) __initdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 local_init,
203 dm_target_init,
204 dm_linear_init,
205 dm_stripe_init,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100206 dm_kcopyd_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 dm_interface_init,
208};
209
Alasdair G Kergonb9249e52008-02-08 02:09:51 +0000210static void (*_exits[])(void) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 local_exit,
212 dm_target_exit,
213 dm_linear_exit,
214 dm_stripe_exit,
Mikulas Patocka945fa4d2008-04-24 21:43:49 +0100215 dm_kcopyd_exit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 dm_interface_exit,
217};
218
219static int __init dm_init(void)
220{
221 const int count = ARRAY_SIZE(_inits);
222
223 int r, i;
224
225 for (i = 0; i < count; i++) {
226 r = _inits[i]();
227 if (r)
228 goto bad;
229 }
230
231 return 0;
232
233 bad:
234 while (i--)
235 _exits[i]();
236
237 return r;
238}
239
240static void __exit dm_exit(void)
241{
242 int i = ARRAY_SIZE(_exits);
243
244 while (i--)
245 _exits[i]();
246}
247
248/*
249 * Block device functions
250 */
251static int dm_blk_open(struct inode *inode, struct file *file)
252{
253 struct mapped_device *md;
254
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700255 spin_lock(&_minor_lock);
256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 md = inode->i_bdev->bd_disk->private_data;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700258 if (!md)
259 goto out;
260
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700261 if (test_bit(DMF_FREEING, &md->flags) ||
262 test_bit(DMF_DELETING, &md->flags)) {
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700263 md = NULL;
264 goto out;
265 }
266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 dm_get(md);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700268 atomic_inc(&md->open_count);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -0700269
270out:
271 spin_unlock(&_minor_lock);
272
273 return md ? 0 : -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274}
275
276static int dm_blk_close(struct inode *inode, struct file *file)
277{
278 struct mapped_device *md;
279
280 md = inode->i_bdev->bd_disk->private_data;
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700281 atomic_dec(&md->open_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 dm_put(md);
283 return 0;
284}
285
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -0700286int dm_open_count(struct mapped_device *md)
287{
288 return atomic_read(&md->open_count);
289}
290
291/*
292 * Guarantees nothing is using the device before it's deleted.
293 */
294int dm_lock_for_deletion(struct mapped_device *md)
295{
296 int r = 0;
297
298 spin_lock(&_minor_lock);
299
300 if (dm_open_count(md))
301 r = -EBUSY;
302 else
303 set_bit(DMF_DELETING, &md->flags);
304
305 spin_unlock(&_minor_lock);
306
307 return r;
308}
309
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800310static int dm_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
311{
312 struct mapped_device *md = bdev->bd_disk->private_data;
313
314 return dm_get_geometry(md, geo);
315}
316
Milan Brozaa129a22006-10-03 01:15:15 -0700317static int dm_blk_ioctl(struct inode *inode, struct file *file,
318 unsigned int cmd, unsigned long arg)
319{
320 struct mapped_device *md;
321 struct dm_table *map;
322 struct dm_target *tgt;
323 int r = -ENOTTY;
324
325 /* We don't really need this lock, but we do need 'inode'. */
326 unlock_kernel();
327
328 md = inode->i_bdev->bd_disk->private_data;
329
330 map = dm_get_table(md);
331
332 if (!map || !dm_table_get_size(map))
333 goto out;
334
335 /* We only support devices that have a single target */
336 if (dm_table_get_num_targets(map) != 1)
337 goto out;
338
339 tgt = dm_table_get_target(map, 0);
340
341 if (dm_suspended(md)) {
342 r = -EAGAIN;
343 goto out;
344 }
345
346 if (tgt->type->ioctl)
347 r = tgt->type->ioctl(tgt, inode, file, cmd, arg);
348
349out:
350 dm_table_put(map);
351
352 lock_kernel();
353 return r;
354}
355
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100356static struct dm_io *alloc_io(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
358 return mempool_alloc(md->io_pool, GFP_NOIO);
359}
360
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100361static void free_io(struct mapped_device *md, struct dm_io *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362{
363 mempool_free(io, md->io_pool);
364}
365
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100366static struct dm_target_io *alloc_tio(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367{
368 return mempool_alloc(md->tio_pool, GFP_NOIO);
369}
370
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100371static void free_tio(struct mapped_device *md, struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372{
373 mempool_free(tio, md->tio_pool);
374}
375
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800376static void start_io_acct(struct dm_io *io)
377{
378 struct mapped_device *md = io->md;
Tejun Heoc9959052008-08-25 19:47:21 +0900379 int cpu;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800380
381 io->start_time = jiffies;
382
Tejun Heo074a7ac2008-08-25 19:56:14 +0900383 cpu = part_stat_lock();
384 part_round_stats(cpu, &dm_disk(md)->part0);
385 part_stat_unlock();
386 dm_disk(md)->part0.in_flight = atomic_inc_return(&md->pending);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800387}
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;
Tejun Heoc9959052008-08-25 19:47:21 +0900394 int pending, cpu;
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800395 int rw = bio_data_dir(bio);
396
Tejun Heo074a7ac2008-08-25 19:56:14 +0900397 cpu = part_stat_lock();
398 part_round_stats(cpu, &dm_disk(md)->part0);
399 part_stat_add(cpu, &dm_disk(md)->part0, ticks[rw], duration);
400 part_stat_unlock();
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800401
Tejun Heo074a7ac2008-08-25 19:56:14 +0900402 dm_disk(md)->part0.in_flight = pending =
403 atomic_dec_return(&md->pending);
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800404
405 return !pending;
406}
407
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408/*
409 * Add the bio to the list of deferred io.
410 */
411static int queue_io(struct mapped_device *md, struct bio *bio)
412{
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700413 down_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
415 if (!test_bit(DMF_BLOCK_IO, &md->flags)) {
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700416 up_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 return 1;
418 }
419
420 bio_list_add(&md->deferred, bio);
421
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700422 up_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 return 0; /* deferred successfully */
424}
425
426/*
427 * Everyone (including functions in this file), should use this
428 * function to access the md->map field, and make sure they call
429 * dm_table_put() when finished.
430 */
431struct dm_table *dm_get_table(struct mapped_device *md)
432{
433 struct dm_table *t;
434
435 read_lock(&md->map_lock);
436 t = md->map;
437 if (t)
438 dm_table_get(t);
439 read_unlock(&md->map_lock);
440
441 return t;
442}
443
Darrick J. Wong3ac51e72006-03-27 01:17:54 -0800444/*
445 * Get the geometry associated with a dm device
446 */
447int dm_get_geometry(struct mapped_device *md, struct hd_geometry *geo)
448{
449 *geo = md->geometry;
450
451 return 0;
452}
453
454/*
455 * Set the geometry of a device.
456 */
457int dm_set_geometry(struct mapped_device *md, struct hd_geometry *geo)
458{
459 sector_t sz = (sector_t)geo->cylinders * geo->heads * geo->sectors;
460
461 if (geo->start > sz) {
462 DMWARN("Start sector is beyond the geometry limits.");
463 return -EINVAL;
464 }
465
466 md->geometry = *geo;
467
468 return 0;
469}
470
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471/*-----------------------------------------------------------------
472 * CRUD START:
473 * A more elegant soln is in the works that uses the queue
474 * merge fn, unfortunately there are a couple of changes to
475 * the block layer that I want to make for this. So in the
476 * interests of getting something for people to use I give
477 * you this clearly demarcated crap.
478 *---------------------------------------------------------------*/
479
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800480static int __noflush_suspending(struct mapped_device *md)
481{
482 return test_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
483}
484
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485/*
486 * Decrements the number of outstanding ios that a bio has been
487 * cloned into, completing the original io if necc.
488 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800489static void dec_pending(struct dm_io *io, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490{
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800491 unsigned long flags;
492
493 /* Push-back supersedes any I/O errors */
494 if (error && !(io->error > 0 && __noflush_suspending(io->md)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 io->error = error;
496
497 if (atomic_dec_and_test(&io->io_count)) {
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800498 if (io->error == DM_ENDIO_REQUEUE) {
499 /*
500 * Target requested pushing back the I/O.
501 * This must be handled before the sleeper on
502 * suspend queue merges the pushback list.
503 */
504 spin_lock_irqsave(&io->md->pushback_lock, flags);
505 if (__noflush_suspending(io->md))
506 bio_list_add(&io->md->pushback, io->bio);
507 else
508 /* noflush suspend was interrupted. */
509 io->error = -EIO;
510 spin_unlock_irqrestore(&io->md->pushback_lock, flags);
511 }
512
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800513 if (end_io_acct(io))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 /* nudge anyone waiting on suspend queue */
515 wake_up(&io->md->wait);
516
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800517 if (io->error != DM_ENDIO_REQUEUE) {
518 blk_add_trace_bio(io->md->queue, io->bio,
519 BLK_TA_COMPLETE);
Jens Axboe2056a782006-03-23 20:00:26 +0100520
NeilBrown6712ecf2007-09-27 12:47:43 +0200521 bio_endio(io->bio, io->error);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800522 }
523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 free_io(io->md, io);
525 }
526}
527
NeilBrown6712ecf2007-09-27 12:47:43 +0200528static void clone_endio(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529{
530 int r = 0;
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100531 struct dm_target_io *tio = bio->bi_private;
Stefan Bader9faf4002006-10-03 01:15:41 -0700532 struct mapped_device *md = tio->io->md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 dm_endio_fn endio = tio->ti->type->end_io;
534
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 if (!bio_flagged(bio, BIO_UPTODATE) && !error)
536 error = -EIO;
537
538 if (endio) {
539 r = endio(tio->ti, bio, error, &tio->info);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800540 if (r < 0 || r == DM_ENDIO_REQUEUE)
541 /*
542 * error and requeue request are handled
543 * in dec_pending().
544 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 error = r;
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800546 else if (r == DM_ENDIO_INCOMPLETE)
547 /* The target will handle the io */
NeilBrown6712ecf2007-09-27 12:47:43 +0200548 return;
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800549 else if (r) {
550 DMWARN("unimplemented target endio return value: %d", r);
551 BUG();
552 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 }
554
Stefan Bader9faf4002006-10-03 01:15:41 -0700555 dec_pending(tio->io, error);
556
557 /*
558 * Store md for cleanup instead of tio which is about to get freed.
559 */
560 bio->bi_private = md->bs;
561
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 bio_put(bio);
Stefan Bader9faf4002006-10-03 01:15:41 -0700563 free_tio(md, tio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564}
565
566static sector_t max_io_len(struct mapped_device *md,
567 sector_t sector, struct dm_target *ti)
568{
569 sector_t offset = sector - ti->begin;
570 sector_t len = ti->len - offset;
571
572 /*
573 * Does the target need to split even further ?
574 */
575 if (ti->split_io) {
576 sector_t boundary;
577 boundary = ((offset + ti->split_io) & ~(ti->split_io - 1))
578 - offset;
579 if (len > boundary)
580 len = boundary;
581 }
582
583 return len;
584}
585
586static void __map_bio(struct dm_target *ti, struct bio *clone,
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100587 struct dm_target_io *tio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588{
589 int r;
Jens Axboe2056a782006-03-23 20:00:26 +0100590 sector_t sector;
Stefan Bader9faf4002006-10-03 01:15:41 -0700591 struct mapped_device *md;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
593 /*
594 * Sanity checks.
595 */
596 BUG_ON(!clone->bi_size);
597
598 clone->bi_end_io = clone_endio;
599 clone->bi_private = tio;
600
601 /*
602 * Map the clone. If r == 0 we don't need to do
603 * anything, the target has assumed ownership of
604 * this io.
605 */
606 atomic_inc(&tio->io->io_count);
Jens Axboe2056a782006-03-23 20:00:26 +0100607 sector = clone->bi_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 r = ti->type->map(ti, clone, &tio->info);
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800609 if (r == DM_MAPIO_REMAPPED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 /* the bio has been remapped so dispatch it */
Jens Axboe2056a782006-03-23 20:00:26 +0100611
Alasdair G Kergon17b2f662006-06-26 00:27:33 -0700612 blk_add_trace_remap(bdev_get_queue(clone->bi_bdev), clone,
Alan D. Brunellec7149d62007-08-07 15:30:23 +0200613 tio->io->bio->bi_bdev->bd_dev,
614 clone->bi_sector, sector);
Jens Axboe2056a782006-03-23 20:00:26 +0100615
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 generic_make_request(clone);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -0800617 } else if (r < 0 || r == DM_MAPIO_REQUEUE) {
618 /* error the io and bail out, or requeue it if needed */
Stefan Bader9faf4002006-10-03 01:15:41 -0700619 md = tio->io->md;
620 dec_pending(tio->io, r);
621 /*
622 * Store bio_set for cleanup.
623 */
624 clone->bi_private = md->bs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 bio_put(clone);
Stefan Bader9faf4002006-10-03 01:15:41 -0700626 free_tio(md, tio);
Kiyoshi Ueda45cbcd72006-12-08 02:41:05 -0800627 } else if (r) {
628 DMWARN("unimplemented target map return value: %d", r);
629 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 }
631}
632
633struct clone_info {
634 struct mapped_device *md;
635 struct dm_table *map;
636 struct bio *bio;
637 struct dm_io *io;
638 sector_t sector;
639 sector_t sector_count;
640 unsigned short idx;
641};
642
Peter Osterlund36763472005-09-06 15:16:42 -0700643static void dm_bio_destructor(struct bio *bio)
644{
Stefan Bader9faf4002006-10-03 01:15:41 -0700645 struct bio_set *bs = bio->bi_private;
646
647 bio_free(bio, bs);
Peter Osterlund36763472005-09-06 15:16:42 -0700648}
649
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650/*
651 * Creates a little bio that is just does part of a bvec.
652 */
653static struct bio *split_bvec(struct bio *bio, sector_t sector,
654 unsigned short idx, unsigned int offset,
Stefan Bader9faf4002006-10-03 01:15:41 -0700655 unsigned int len, struct bio_set *bs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656{
657 struct bio *clone;
658 struct bio_vec *bv = bio->bi_io_vec + idx;
659
Stefan Bader9faf4002006-10-03 01:15:41 -0700660 clone = bio_alloc_bioset(GFP_NOIO, 1, bs);
Peter Osterlund36763472005-09-06 15:16:42 -0700661 clone->bi_destructor = dm_bio_destructor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 *clone->bi_io_vec = *bv;
663
664 clone->bi_sector = sector;
665 clone->bi_bdev = bio->bi_bdev;
666 clone->bi_rw = bio->bi_rw;
667 clone->bi_vcnt = 1;
668 clone->bi_size = to_bytes(len);
669 clone->bi_io_vec->bv_offset = offset;
670 clone->bi_io_vec->bv_len = clone->bi_size;
Martin K. Petersenf3e1d262008-10-21 17:45:04 +0100671 clone->bi_flags |= 1 << BIO_CLONED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
673 return clone;
674}
675
676/*
677 * Creates a bio that consists of range of complete bvecs.
678 */
679static struct bio *clone_bio(struct bio *bio, sector_t sector,
680 unsigned short idx, unsigned short bv_count,
Stefan Bader9faf4002006-10-03 01:15:41 -0700681 unsigned int len, struct bio_set *bs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
683 struct bio *clone;
684
Stefan Bader9faf4002006-10-03 01:15:41 -0700685 clone = bio_alloc_bioset(GFP_NOIO, bio->bi_max_vecs, bs);
686 __bio_clone(clone, bio);
687 clone->bi_destructor = dm_bio_destructor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 clone->bi_sector = sector;
689 clone->bi_idx = idx;
690 clone->bi_vcnt = idx + bv_count;
691 clone->bi_size = to_bytes(len);
692 clone->bi_flags &= ~(1 << BIO_SEG_VALID);
693
694 return clone;
695}
696
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000697static int __clone_and_map(struct clone_info *ci)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698{
699 struct bio *clone, *bio = ci->bio;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000700 struct dm_target *ti;
701 sector_t len = 0, max;
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100702 struct dm_target_io *tio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000704 ti = dm_table_find_target(ci->map, ci->sector);
705 if (!dm_target_is_valid(ti))
706 return -EIO;
707
708 max = max_io_len(ci->md, ci->sector, ti);
709
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 /*
711 * Allocate a target io object.
712 */
713 tio = alloc_tio(ci->md);
714 tio->io = ci->io;
715 tio->ti = ti;
716 memset(&tio->info, 0, sizeof(tio->info));
717
718 if (ci->sector_count <= max) {
719 /*
720 * Optimise for the simple case where we can do all of
721 * the remaining io with a single clone.
722 */
723 clone = clone_bio(bio, ci->sector, ci->idx,
Stefan Bader9faf4002006-10-03 01:15:41 -0700724 bio->bi_vcnt - ci->idx, ci->sector_count,
725 ci->md->bs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 __map_bio(ti, clone, tio);
727 ci->sector_count = 0;
728
729 } else if (to_sector(bio->bi_io_vec[ci->idx].bv_len) <= max) {
730 /*
731 * There are some bvecs that don't span targets.
732 * Do as many of these as possible.
733 */
734 int i;
735 sector_t remaining = max;
736 sector_t bv_len;
737
738 for (i = ci->idx; remaining && (i < bio->bi_vcnt); i++) {
739 bv_len = to_sector(bio->bi_io_vec[i].bv_len);
740
741 if (bv_len > remaining)
742 break;
743
744 remaining -= bv_len;
745 len += bv_len;
746 }
747
Stefan Bader9faf4002006-10-03 01:15:41 -0700748 clone = clone_bio(bio, ci->sector, ci->idx, i - ci->idx, len,
749 ci->md->bs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 __map_bio(ti, clone, tio);
751
752 ci->sector += len;
753 ci->sector_count -= len;
754 ci->idx = i;
755
756 } else {
757 /*
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800758 * Handle a bvec that must be split between two or more targets.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 */
760 struct bio_vec *bv = bio->bi_io_vec + ci->idx;
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800761 sector_t remaining = to_sector(bv->bv_len);
762 unsigned int offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800764 do {
765 if (offset) {
766 ti = dm_table_find_target(ci->map, ci->sector);
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000767 if (!dm_target_is_valid(ti))
768 return -EIO;
769
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800770 max = max_io_len(ci->md, ci->sector, ti);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800772 tio = alloc_tio(ci->md);
773 tio->io = ci->io;
774 tio->ti = ti;
775 memset(&tio->info, 0, sizeof(tio->info));
776 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800778 len = min(remaining, max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800780 clone = split_bvec(bio, ci->sector, ci->idx,
Stefan Bader9faf4002006-10-03 01:15:41 -0700781 bv->bv_offset + offset, len,
782 ci->md->bs);
Alasdair G Kergond2044a92006-03-22 00:07:42 -0800783
784 __map_bio(ti, clone, tio);
785
786 ci->sector += len;
787 ci->sector_count -= len;
788 offset += to_bytes(len);
789 } while (remaining -= len);
790
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 ci->idx++;
792 }
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000793
794 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795}
796
797/*
798 * Split the bio into several clones.
799 */
Milan Broz9e4e5f82007-10-19 22:38:53 +0100800static int __split_bio(struct mapped_device *md, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801{
802 struct clone_info ci;
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000803 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
805 ci.map = dm_get_table(md);
Milan Broz9e4e5f82007-10-19 22:38:53 +0100806 if (unlikely(!ci.map))
807 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
809 ci.md = md;
810 ci.bio = bio;
811 ci.io = alloc_io(md);
812 ci.io->error = 0;
813 atomic_set(&ci.io->io_count, 1);
814 ci.io->bio = bio;
815 ci.io->md = md;
816 ci.sector = bio->bi_sector;
817 ci.sector_count = bio_sectors(bio);
818 ci.idx = bio->bi_idx;
819
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -0800820 start_io_acct(ci.io);
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000821 while (ci.sector_count && !error)
822 error = __clone_and_map(&ci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
824 /* drop the extra reference count */
Jun'ichi Nomura512875b2007-12-13 14:15:25 +0000825 dec_pending(ci.io, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 dm_table_put(ci.map);
Milan Broz9e4e5f82007-10-19 22:38:53 +0100827
828 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829}
830/*-----------------------------------------------------------------
831 * CRUD END
832 *---------------------------------------------------------------*/
833
Milan Brozf6fccb12008-07-21 12:00:37 +0100834static int dm_merge_bvec(struct request_queue *q,
835 struct bvec_merge_data *bvm,
836 struct bio_vec *biovec)
837{
838 struct mapped_device *md = q->queuedata;
839 struct dm_table *map = dm_get_table(md);
840 struct dm_target *ti;
841 sector_t max_sectors;
Mikulas Patocka50371082008-10-01 14:39:17 +0100842 int max_size = 0;
Milan Brozf6fccb12008-07-21 12:00:37 +0100843
844 if (unlikely(!map))
Mikulas Patocka50371082008-10-01 14:39:17 +0100845 goto out;
Milan Brozf6fccb12008-07-21 12:00:37 +0100846
847 ti = dm_table_find_target(map, bvm->bi_sector);
Mikulas Patockab01cd5a2008-10-01 14:39:24 +0100848 if (!dm_target_is_valid(ti))
849 goto out_table;
Milan Brozf6fccb12008-07-21 12:00:37 +0100850
851 /*
852 * Find maximum amount of I/O that won't need splitting
853 */
854 max_sectors = min(max_io_len(md, bvm->bi_sector, ti),
855 (sector_t) BIO_MAX_SECTORS);
856 max_size = (max_sectors << SECTOR_SHIFT) - bvm->bi_size;
857 if (max_size < 0)
858 max_size = 0;
859
860 /*
861 * merge_bvec_fn() returns number of bytes
862 * it can accept at this offset
863 * max is precomputed maximal io size
864 */
865 if (max_size && ti->type->merge)
866 max_size = ti->type->merge(ti, bvm, biovec, max_size);
867
Mikulas Patockab01cd5a2008-10-01 14:39:24 +0100868out_table:
Mikulas Patocka50371082008-10-01 14:39:17 +0100869 dm_table_put(map);
870
871out:
Milan Brozf6fccb12008-07-21 12:00:37 +0100872 /*
873 * Always allow an entire first page
874 */
875 if (max_size <= biovec->bv_len && !(bvm->bi_size >> SECTOR_SHIFT))
876 max_size = biovec->bv_len;
877
Milan Brozf6fccb12008-07-21 12:00:37 +0100878 return max_size;
879}
880
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881/*
882 * The request function that just remaps the bio built up by
883 * dm_merge_bvec.
884 */
Jens Axboe165125e2007-07-24 09:28:11 +0200885static int dm_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886{
Milan Broz9e4e5f82007-10-19 22:38:53 +0100887 int r = -EIO;
Kevin Corry12f03a42006-02-01 03:04:52 -0800888 int rw = bio_data_dir(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 struct mapped_device *md = q->queuedata;
Tejun Heoc9959052008-08-25 19:47:21 +0900890 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
Stefan Bader07a83c42007-07-12 17:28:33 +0100892 /*
893 * There is no use in forwarding any barrier request since we can't
894 * guarantee it is (or can be) handled by the targets correctly.
895 */
896 if (unlikely(bio_barrier(bio))) {
NeilBrown6712ecf2007-09-27 12:47:43 +0200897 bio_endio(bio, -EOPNOTSUPP);
Stefan Bader07a83c42007-07-12 17:28:33 +0100898 return 0;
899 }
900
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700901 down_read(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
Tejun Heo074a7ac2008-08-25 19:56:14 +0900903 cpu = part_stat_lock();
904 part_stat_inc(cpu, &dm_disk(md)->part0, ios[rw]);
905 part_stat_add(cpu, &dm_disk(md)->part0, sectors[rw], bio_sectors(bio));
906 part_stat_unlock();
Kevin Corry12f03a42006-02-01 03:04:52 -0800907
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 /*
909 * If we're suspended we have to queue
910 * this io for later.
911 */
912 while (test_bit(DMF_BLOCK_IO, &md->flags)) {
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700913 up_read(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
Milan Broz9e4e5f82007-10-19 22:38:53 +0100915 if (bio_rw(bio) != READA)
916 r = queue_io(md, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
Milan Broz9e4e5f82007-10-19 22:38:53 +0100918 if (r <= 0)
919 goto out_req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920
921 /*
922 * We're in a while loop, because someone could suspend
923 * before we get to the following read lock.
924 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700925 down_read(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 }
927
Milan Broz9e4e5f82007-10-19 22:38:53 +0100928 r = __split_bio(md, bio);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -0700929 up_read(&md->io_lock);
Milan Broz9e4e5f82007-10-19 22:38:53 +0100930
931out_req:
932 if (r < 0)
933 bio_io_error(bio);
934
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 return 0;
936}
937
Jens Axboe165125e2007-07-24 09:28:11 +0200938static void dm_unplug_all(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939{
940 struct mapped_device *md = q->queuedata;
941 struct dm_table *map = dm_get_table(md);
942
943 if (map) {
944 dm_table_unplug_all(map);
945 dm_table_put(map);
946 }
947}
948
949static int dm_any_congested(void *congested_data, int bdi_bits)
950{
951 int r;
952 struct mapped_device *md = (struct mapped_device *) congested_data;
953 struct dm_table *map = dm_get_table(md);
954
955 if (!map || test_bit(DMF_BLOCK_IO, &md->flags))
956 r = bdi_bits;
957 else
958 r = dm_table_any_congested(map, bdi_bits);
959
960 dm_table_put(map);
961 return r;
962}
963
964/*-----------------------------------------------------------------
965 * An IDR is used to keep track of allocated minor numbers.
966 *---------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967static DEFINE_IDR(_minor_idr);
968
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -0700969static void free_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970{
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -0700971 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 idr_remove(&_minor_idr, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -0700973 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974}
975
976/*
977 * See if the device with a specific minor # is free.
978 */
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +0100979static int specific_minor(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980{
981 int r, m;
982
983 if (minor >= (1 << MINORBITS))
984 return -EINVAL;
985
Jeff Mahoney62f75c22006-06-26 00:27:21 -0700986 r = idr_pre_get(&_minor_idr, GFP_KERNEL);
987 if (!r)
988 return -ENOMEM;
989
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -0700990 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
992 if (idr_find(&_minor_idr, minor)) {
993 r = -EBUSY;
994 goto out;
995 }
996
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -0700997 r = idr_get_new_above(&_minor_idr, MINOR_ALLOCED, minor, &m);
Jeff Mahoney62f75c22006-06-26 00:27:21 -0700998 if (r)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
1001 if (m != minor) {
1002 idr_remove(&_minor_idr, m);
1003 r = -EBUSY;
1004 goto out;
1005 }
1006
1007out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001008 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 return r;
1010}
1011
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001012static int next_free_minor(int *minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013{
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001014 int r, m;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 r = idr_pre_get(&_minor_idr, GFP_KERNEL);
Jeff Mahoney62f75c22006-06-26 00:27:21 -07001017 if (!r)
1018 return -ENOMEM;
1019
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001020 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001022 r = idr_get_new(&_minor_idr, MINOR_ALLOCED, &m);
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001023 if (r)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
1026 if (m >= (1 << MINORBITS)) {
1027 idr_remove(&_minor_idr, m);
1028 r = -ENOSPC;
1029 goto out;
1030 }
1031
1032 *minor = m;
1033
1034out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001035 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 return r;
1037}
1038
1039static struct block_device_operations dm_blk_dops;
1040
1041/*
1042 * Allocate and initialise a blank device with a given minor.
1043 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001044static struct mapped_device *alloc_dev(int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045{
1046 int r;
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001047 struct mapped_device *md = kzalloc(sizeof(*md), GFP_KERNEL);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001048 void *old_md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049
1050 if (!md) {
1051 DMWARN("unable to allocate device, out of memory.");
1052 return NULL;
1053 }
1054
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001055 if (!try_module_get(THIS_MODULE))
Milan Broz6ed7ade2008-02-08 02:10:19 +00001056 goto bad_module_get;
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001057
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 /* get a minor number for the dev */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001059 if (minor == DM_ANY_MINOR)
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001060 r = next_free_minor(&minor);
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001061 else
Frederik Deweerdtcf13ab82008-04-24 22:10:59 +01001062 r = specific_minor(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 if (r < 0)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001064 goto bad_minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001066 init_rwsem(&md->io_lock);
Daniel Walkere61290a2008-02-08 02:10:08 +00001067 mutex_init(&md->suspend_lock);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001068 spin_lock_init(&md->pushback_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 rwlock_init(&md->map_lock);
1070 atomic_set(&md->holders, 1);
Alasdair G Kergon5c6bd752006-06-26 00:27:34 -07001071 atomic_set(&md->open_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 atomic_set(&md->event_nr, 0);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001073 atomic_set(&md->uevent_seq, 0);
1074 INIT_LIST_HEAD(&md->uevent_list);
1075 spin_lock_init(&md->uevent_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
1077 md->queue = blk_alloc_queue(GFP_KERNEL);
1078 if (!md->queue)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001079 goto bad_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
1081 md->queue->queuedata = md;
1082 md->queue->backing_dev_info.congested_fn = dm_any_congested;
1083 md->queue->backing_dev_info.congested_data = md;
1084 blk_queue_make_request(md->queue, dm_request);
Jens Axboedaef2652006-01-10 10:48:02 +01001085 blk_queue_bounce_limit(md->queue, BLK_BOUNCE_ANY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 md->queue->unplug_fn = dm_unplug_all;
Milan Brozf6fccb12008-07-21 12:00:37 +01001087 blk_queue_merge_bvec(md->queue, dm_merge_bvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
Matthew Dobson93d23412006-03-26 01:37:50 -08001089 md->io_pool = mempool_create_slab_pool(MIN_IOS, _io_cache);
Kiyoshi Ueda74859362006-12-08 02:41:02 -08001090 if (!md->io_pool)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001091 goto bad_io_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092
Matthew Dobson93d23412006-03-26 01:37:50 -08001093 md->tio_pool = mempool_create_slab_pool(MIN_IOS, _tio_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 if (!md->tio_pool)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001095 goto bad_tio_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
Jens Axboe59725112007-04-02 10:06:42 +02001097 md->bs = bioset_create(16, 16);
Stefan Bader9faf4002006-10-03 01:15:41 -07001098 if (!md->bs)
1099 goto bad_no_bioset;
1100
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 md->disk = alloc_disk(1);
1102 if (!md->disk)
Milan Broz6ed7ade2008-02-08 02:10:19 +00001103 goto bad_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
Jeff Mahoneyf0b04112006-06-26 00:27:25 -07001105 atomic_set(&md->pending, 0);
1106 init_waitqueue_head(&md->wait);
1107 init_waitqueue_head(&md->eventq);
1108
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 md->disk->major = _major;
1110 md->disk->first_minor = minor;
1111 md->disk->fops = &dm_blk_dops;
1112 md->disk->queue = md->queue;
1113 md->disk->private_data = md;
1114 sprintf(md->disk->disk_name, "dm-%d", minor);
1115 add_disk(md->disk);
Mike Anderson7e51f252006-03-27 01:17:52 -08001116 format_dev_t(md->name, MKDEV(_major, minor));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
Milan Broz304f3f62008-02-08 02:11:17 +00001118 md->wq = create_singlethread_workqueue("kdmflush");
1119 if (!md->wq)
1120 goto bad_thread;
1121
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001122 /* Populate the mapping, nobody knows we exist yet */
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001123 spin_lock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001124 old_md = idr_replace(&_minor_idr, md, minor);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001125 spin_unlock(&_minor_lock);
Jeff Mahoneyba61fdd2006-06-26 00:27:21 -07001126
1127 BUG_ON(old_md != MINOR_ALLOCED);
1128
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 return md;
1130
Milan Broz304f3f62008-02-08 02:11:17 +00001131bad_thread:
1132 put_disk(md->disk);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001133bad_disk:
Stefan Bader9faf4002006-10-03 01:15:41 -07001134 bioset_free(md->bs);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001135bad_no_bioset:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 mempool_destroy(md->tio_pool);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001137bad_tio_pool:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 mempool_destroy(md->io_pool);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001139bad_io_pool:
Al Viro1312f402006-03-12 11:02:03 -05001140 blk_cleanup_queue(md->queue);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001141bad_queue:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 free_minor(minor);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001143bad_minor:
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001144 module_put(THIS_MODULE);
Milan Broz6ed7ade2008-02-08 02:10:19 +00001145bad_module_get:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 kfree(md);
1147 return NULL;
1148}
1149
Jun'ichi Nomuraae9da832007-10-19 22:38:43 +01001150static void unlock_fs(struct mapped_device *md);
1151
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152static void free_dev(struct mapped_device *md)
1153{
Tejun Heof331c022008-09-03 09:01:48 +02001154 int minor = MINOR(disk_devt(md->disk));
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08001155
Jun'ichi Nomurad9dde592006-02-24 13:04:24 -08001156 if (md->suspended_bdev) {
Jun'ichi Nomuraae9da832007-10-19 22:38:43 +01001157 unlock_fs(md);
Jun'ichi Nomurad9dde592006-02-24 13:04:24 -08001158 bdput(md->suspended_bdev);
1159 }
Milan Broz304f3f62008-02-08 02:11:17 +00001160 destroy_workqueue(md->wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 mempool_destroy(md->tio_pool);
1162 mempool_destroy(md->io_pool);
Stefan Bader9faf4002006-10-03 01:15:41 -07001163 bioset_free(md->bs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 del_gendisk(md->disk);
Jun'ichi Nomura63d94e42006-02-24 13:04:25 -08001165 free_minor(minor);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001166
1167 spin_lock(&_minor_lock);
1168 md->disk->private_data = NULL;
1169 spin_unlock(&_minor_lock);
1170
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 put_disk(md->disk);
Al Viro1312f402006-03-12 11:02:03 -05001172 blk_cleanup_queue(md->queue);
Jeff Mahoney10da4f72006-06-26 00:27:25 -07001173 module_put(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 kfree(md);
1175}
1176
1177/*
1178 * Bind a table to the device.
1179 */
1180static void event_callback(void *context)
1181{
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001182 unsigned long flags;
1183 LIST_HEAD(uevents);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 struct mapped_device *md = (struct mapped_device *) context;
1185
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001186 spin_lock_irqsave(&md->uevent_lock, flags);
1187 list_splice_init(&md->uevent_list, &uevents);
1188 spin_unlock_irqrestore(&md->uevent_lock, flags);
1189
Tejun Heoed9e1982008-08-25 19:56:05 +09001190 dm_send_uevents(&uevents, &disk_to_dev(md->disk)->kobj);
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001191
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 atomic_inc(&md->event_nr);
1193 wake_up(&md->eventq);
1194}
1195
Alasdair G Kergon4e901882005-07-28 21:15:59 -07001196static void __set_size(struct mapped_device *md, sector_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197{
Alasdair G Kergon4e901882005-07-28 21:15:59 -07001198 set_capacity(md->disk, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001200 mutex_lock(&md->suspended_bdev->bd_inode->i_mutex);
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001201 i_size_write(md->suspended_bdev->bd_inode, (loff_t)size << SECTOR_SHIFT);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001202 mutex_unlock(&md->suspended_bdev->bd_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203}
1204
1205static int __bind(struct mapped_device *md, struct dm_table *t)
1206{
Jens Axboe165125e2007-07-24 09:28:11 +02001207 struct request_queue *q = md->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 sector_t size;
1209
1210 size = dm_table_get_size(t);
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08001211
1212 /*
1213 * Wipe any geometry if the size of the table changed.
1214 */
1215 if (size != get_capacity(md->disk))
1216 memset(&md->geometry, 0, sizeof(md->geometry));
1217
Jun'ichi Nomurabfa152f2007-01-26 00:57:07 -08001218 if (md->suspended_bdev)
1219 __set_size(md, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 if (size == 0)
1221 return 0;
1222
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 dm_table_get(t);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001224 dm_table_event_callback(t, event_callback, md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001225
1226 write_lock(&md->map_lock);
1227 md->map = t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 dm_table_set_restrictions(t, q);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001229 write_unlock(&md->map_lock);
1230
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 return 0;
1232}
1233
1234static void __unbind(struct mapped_device *md)
1235{
1236 struct dm_table *map = md->map;
1237
1238 if (!map)
1239 return;
1240
1241 dm_table_event_callback(map, NULL, NULL);
1242 write_lock(&md->map_lock);
1243 md->map = NULL;
1244 write_unlock(&md->map_lock);
1245 dm_table_put(map);
1246}
1247
1248/*
1249 * Constructor for a new device.
1250 */
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001251int dm_create(int minor, struct mapped_device **result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252{
1253 struct mapped_device *md;
1254
Alasdair G Kergon2b06cff2006-06-26 00:27:32 -07001255 md = alloc_dev(minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 if (!md)
1257 return -ENXIO;
1258
1259 *result = md;
1260 return 0;
1261}
1262
David Teigland637842c2006-01-06 00:20:00 -08001263static struct mapped_device *dm_find_md(dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264{
1265 struct mapped_device *md;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 unsigned minor = MINOR(dev);
1267
1268 if (MAJOR(dev) != _major || minor >= (1 << MINORBITS))
1269 return NULL;
1270
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001271 spin_lock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
1273 md = idr_find(&_minor_idr, minor);
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001274 if (md && (md == MINOR_ALLOCED ||
Tejun Heof331c022008-09-03 09:01:48 +02001275 (MINOR(disk_devt(dm_disk(md))) != minor) ||
Alasdair G Kergon17b2f662006-06-26 00:27:33 -07001276 test_bit(DMF_FREEING, &md->flags))) {
David Teigland637842c2006-01-06 00:20:00 -08001277 md = NULL;
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001278 goto out;
1279 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001281out:
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001282 spin_unlock(&_minor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
David Teigland637842c2006-01-06 00:20:00 -08001284 return md;
1285}
1286
David Teiglandd229a952006-01-06 00:20:01 -08001287struct mapped_device *dm_get_md(dev_t dev)
1288{
1289 struct mapped_device *md = dm_find_md(dev);
1290
1291 if (md)
1292 dm_get(md);
1293
1294 return md;
1295}
1296
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08001297void *dm_get_mdptr(struct mapped_device *md)
David Teigland637842c2006-01-06 00:20:00 -08001298{
Alasdair G Kergon9ade92a2006-03-27 01:17:53 -08001299 return md->interface_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300}
1301
1302void dm_set_mdptr(struct mapped_device *md, void *ptr)
1303{
1304 md->interface_ptr = ptr;
1305}
1306
1307void dm_get(struct mapped_device *md)
1308{
1309 atomic_inc(&md->holders);
1310}
1311
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001312const char *dm_device_name(struct mapped_device *md)
1313{
1314 return md->name;
1315}
1316EXPORT_SYMBOL_GPL(dm_device_name);
1317
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318void dm_put(struct mapped_device *md)
1319{
Mike Anderson1134e5a2006-03-27 01:17:54 -08001320 struct dm_table *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001322 BUG_ON(test_bit(DMF_FREEING, &md->flags));
1323
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001324 if (atomic_dec_and_lock(&md->holders, &_minor_lock)) {
Mike Anderson1134e5a2006-03-27 01:17:54 -08001325 map = dm_get_table(md);
Tejun Heof331c022008-09-03 09:01:48 +02001326 idr_replace(&_minor_idr, MINOR_ALLOCED,
1327 MINOR(disk_devt(dm_disk(md))));
Jeff Mahoneyfba9f902006-06-26 00:27:23 -07001328 set_bit(DMF_FREEING, &md->flags);
Jeff Mahoneyf32c10b2006-06-26 00:27:22 -07001329 spin_unlock(&_minor_lock);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001330 if (!dm_suspended(md)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 dm_table_presuspend_targets(map);
1332 dm_table_postsuspend_targets(map);
1333 }
1334 __unbind(md);
Mike Anderson1134e5a2006-03-27 01:17:54 -08001335 dm_table_put(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 free_dev(md);
1337 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338}
Edward Goggin79eb8852007-05-09 02:32:56 -07001339EXPORT_SYMBOL_GPL(dm_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
Milan Broz46125c12008-02-08 02:10:30 +00001341static int dm_wait_for_completion(struct mapped_device *md)
1342{
1343 int r = 0;
1344
1345 while (1) {
1346 set_current_state(TASK_INTERRUPTIBLE);
1347
1348 smp_mb();
1349 if (!atomic_read(&md->pending))
1350 break;
1351
1352 if (signal_pending(current)) {
1353 r = -EINTR;
1354 break;
1355 }
1356
1357 io_schedule();
1358 }
1359 set_current_state(TASK_RUNNING);
1360
1361 return r;
1362}
1363
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364/*
1365 * Process the deferred bios
1366 */
Milan Broz6d6f10d2008-02-08 02:10:22 +00001367static void __flush_deferred_io(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368{
Milan Broz6d6f10d2008-02-08 02:10:22 +00001369 struct bio *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
Milan Broz6d6f10d2008-02-08 02:10:22 +00001371 while ((c = bio_list_pop(&md->deferred))) {
Milan Broz9e4e5f82007-10-19 22:38:53 +01001372 if (__split_bio(md, c))
1373 bio_io_error(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 }
Milan Broz73d410c2008-02-08 02:10:25 +00001375
1376 clear_bit(DMF_BLOCK_IO, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377}
1378
Milan Broz6d6f10d2008-02-08 02:10:22 +00001379static void __merge_pushback_list(struct mapped_device *md)
1380{
1381 unsigned long flags;
1382
1383 spin_lock_irqsave(&md->pushback_lock, flags);
1384 clear_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
1385 bio_list_merge_head(&md->deferred, &md->pushback);
1386 bio_list_init(&md->pushback);
1387 spin_unlock_irqrestore(&md->pushback_lock, flags);
1388}
1389
Milan Broz304f3f62008-02-08 02:11:17 +00001390static void dm_wq_work(struct work_struct *work)
1391{
1392 struct dm_wq_req *req = container_of(work, struct dm_wq_req, work);
1393 struct mapped_device *md = req->md;
1394
1395 down_write(&md->io_lock);
1396 switch (req->type) {
Milan Broz304f3f62008-02-08 02:11:17 +00001397 case DM_WQ_FLUSH_DEFERRED:
1398 __flush_deferred_io(md);
1399 break;
1400 default:
1401 DMERR("dm_wq_work: unrecognised work type %d", req->type);
1402 BUG();
1403 }
1404 up_write(&md->io_lock);
1405}
1406
1407static void dm_wq_queue(struct mapped_device *md, int type, void *context,
1408 struct dm_wq_req *req)
1409{
1410 req->type = type;
1411 req->md = md;
1412 req->context = context;
1413 INIT_WORK(&req->work, dm_wq_work);
1414 queue_work(md->wq, &req->work);
1415}
1416
1417static void dm_queue_flush(struct mapped_device *md, int type, void *context)
1418{
1419 struct dm_wq_req req;
1420
1421 dm_wq_queue(md, type, context, &req);
1422 flush_workqueue(md->wq);
1423}
1424
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425/*
1426 * Swap in a new table (destroying old one).
1427 */
1428int dm_swap_table(struct mapped_device *md, struct dm_table *table)
1429{
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07001430 int r = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
Daniel Walkere61290a2008-02-08 02:10:08 +00001432 mutex_lock(&md->suspend_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433
1434 /* device must be suspended */
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001435 if (!dm_suspended(md))
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07001436 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
Jun'ichi Nomurabfa152f2007-01-26 00:57:07 -08001438 /* without bdev, the device size cannot be changed */
1439 if (!md->suspended_bdev)
1440 if (get_capacity(md->disk) != dm_table_get_size(table))
1441 goto out;
1442
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 __unbind(md);
1444 r = __bind(md, table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07001446out:
Daniel Walkere61290a2008-02-08 02:10:08 +00001447 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon93c534a2005-07-12 15:53:05 -07001448 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449}
1450
1451/*
1452 * Functions to lock and unlock any filesystem running on the
1453 * device.
1454 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001455static int lock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456{
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001457 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
1459 WARN_ON(md->frozen_sb);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07001460
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001461 md->frozen_sb = freeze_bdev(md->suspended_bdev);
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07001462 if (IS_ERR(md->frozen_sb)) {
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001463 r = PTR_ERR(md->frozen_sb);
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001464 md->frozen_sb = NULL;
1465 return r;
Alasdair G Kergondfbe03f2005-05-05 16:16:04 -07001466 }
1467
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08001468 set_bit(DMF_FROZEN, &md->flags);
1469
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 /* don't bdput right now, we don't want the bdev
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001471 * to go away while it is locked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 */
1473 return 0;
1474}
1475
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001476static void unlock_fs(struct mapped_device *md)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477{
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08001478 if (!test_bit(DMF_FROZEN, &md->flags))
1479 return;
1480
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001481 thaw_bdev(md->suspended_bdev, md->frozen_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 md->frozen_sb = NULL;
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08001483 clear_bit(DMF_FROZEN, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484}
1485
1486/*
1487 * We need to be able to change a mapping table under a mounted
1488 * filesystem. For example we might want to move some data in
1489 * the background. Before the table can be swapped with
1490 * dm_bind_table, dm_suspend must be called to flush any in
1491 * flight bios and ensure that any further io gets deferred.
1492 */
Kiyoshi Uedaa3d77d32006-12-08 02:41:04 -08001493int dm_suspend(struct mapped_device *md, unsigned suspend_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494{
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001495 struct dm_table *map = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 DECLARE_WAITQUEUE(wait, current);
Milan Broz46125c12008-02-08 02:10:30 +00001497 int r = 0;
Kiyoshi Uedaa3d77d32006-12-08 02:41:04 -08001498 int do_lockfs = suspend_flags & DM_SUSPEND_LOCKFS_FLAG ? 1 : 0;
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001499 int noflush = suspend_flags & DM_SUSPEND_NOFLUSH_FLAG ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500
Daniel Walkere61290a2008-02-08 02:10:08 +00001501 mutex_lock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001502
Milan Broz73d410c2008-02-08 02:10:25 +00001503 if (dm_suspended(md)) {
1504 r = -EINVAL;
Alasdair G Kergond2874832006-11-08 17:44:43 -08001505 goto out_unlock;
Milan Broz73d410c2008-02-08 02:10:25 +00001506 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
1508 map = dm_get_table(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001510 /*
1511 * DMF_NOFLUSH_SUSPENDING must be set before presuspend.
1512 * This flag is cleared before dm_suspend returns.
1513 */
1514 if (noflush)
1515 set_bit(DMF_NOFLUSH_SUSPENDING, &md->flags);
1516
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001517 /* This does not get reverted if there's an error later. */
1518 dm_table_presuspend_targets(map);
1519
Jun'ichi Nomurabfa152f2007-01-26 00:57:07 -08001520 /* bdget() can stall if the pending I/Os are not flushed */
1521 if (!noflush) {
1522 md->suspended_bdev = bdget_disk(md->disk, 0);
1523 if (!md->suspended_bdev) {
1524 DMWARN("bdget failed in dm_suspend");
1525 r = -ENOMEM;
Kiyoshi Uedaf431d962008-10-21 17:45:07 +01001526 goto out;
Jun'ichi Nomurabfa152f2007-01-26 00:57:07 -08001527 }
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001528
Milan Broz6d6f10d2008-02-08 02:10:22 +00001529 /*
1530 * Flush I/O to the device. noflush supersedes do_lockfs,
1531 * because lock_fs() needs to flush I/Os.
1532 */
1533 if (do_lockfs) {
1534 r = lock_fs(md);
1535 if (r)
1536 goto out;
1537 }
Alasdair G Kergonaa8d7c22006-01-06 00:20:06 -08001538 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539
1540 /*
Alasdair G Kergon354e0072005-05-05 16:16:05 -07001541 * First we set the BLOCK_IO flag so no more ios will be mapped.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001543 down_write(&md->io_lock);
1544 set_bit(DMF_BLOCK_IO, &md->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 add_wait_queue(&md->wait, &wait);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001547 up_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548
1549 /* unplug */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001550 if (map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 dm_table_unplug_all(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552
1553 /*
Milan Broz46125c12008-02-08 02:10:30 +00001554 * Wait for the already-mapped ios to complete.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 */
Milan Broz46125c12008-02-08 02:10:30 +00001556 r = dm_wait_for_completion(md);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001558 down_write(&md->io_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 remove_wait_queue(&md->wait, &wait);
1560
Milan Broz6d6f10d2008-02-08 02:10:22 +00001561 if (noflush)
1562 __merge_pushback_list(md);
Milan Broz94d63512008-02-08 02:10:27 +00001563 up_write(&md->io_lock);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001564
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 /* were we interrupted ? */
Milan Broz46125c12008-02-08 02:10:30 +00001566 if (r < 0) {
Milan Broz304f3f62008-02-08 02:11:17 +00001567 dm_queue_flush(md, DM_WQ_FLUSH_DEFERRED, NULL);
Milan Broz73d410c2008-02-08 02:10:25 +00001568
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001569 unlock_fs(md);
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001570 goto out; /* pushback list is already flushed, so skip flush */
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001571 }
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001572
1573 dm_table_postsuspend_targets(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574
1575 set_bit(DMF_SUSPENDED, &md->flags);
1576
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001577out:
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001578 if (r && md->suspended_bdev) {
1579 bdput(md->suspended_bdev);
1580 md->suspended_bdev = NULL;
1581 }
1582
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 dm_table_put(map);
Alasdair G Kergond2874832006-11-08 17:44:43 -08001584
1585out_unlock:
Daniel Walkere61290a2008-02-08 02:10:08 +00001586 mutex_unlock(&md->suspend_lock);
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001587 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588}
1589
1590int dm_resume(struct mapped_device *md)
1591{
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001592 int r = -EINVAL;
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001593 struct dm_table *map = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594
Daniel Walkere61290a2008-02-08 02:10:08 +00001595 mutex_lock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001596 if (!dm_suspended(md))
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001597 goto out;
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001598
1599 map = dm_get_table(md);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001600 if (!map || !dm_table_get_size(map))
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001601 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602
Milan Broz8757b772006-10-03 01:15:36 -07001603 r = dm_table_resume_targets(map);
1604 if (r)
1605 goto out;
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001606
Milan Broz304f3f62008-02-08 02:11:17 +00001607 dm_queue_flush(md, DM_WQ_FLUSH_DEFERRED, NULL);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001608
1609 unlock_fs(md);
1610
Jun'ichi Nomurabfa152f2007-01-26 00:57:07 -08001611 if (md->suspended_bdev) {
1612 bdput(md->suspended_bdev);
1613 md->suspended_bdev = NULL;
1614 }
Alasdair G Kergone39e2e92006-01-06 00:20:05 -08001615
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001616 clear_bit(DMF_SUSPENDED, &md->flags);
1617
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 dm_table_unplug_all(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619
Alasdair G Kergon69267a32007-12-13 14:15:57 +00001620 dm_kobject_uevent(md);
Hannes Reinecke8560ed62006-10-03 01:15:35 -07001621
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001622 r = 0;
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001623
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001624out:
1625 dm_table_put(map);
Daniel Walkere61290a2008-02-08 02:10:08 +00001626 mutex_unlock(&md->suspend_lock);
Alasdair G Kergon2ca33102005-07-28 21:16:00 -07001627
Alasdair G Kergoncf222b32005-07-28 21:15:57 -07001628 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629}
1630
1631/*-----------------------------------------------------------------
1632 * Event notification.
1633 *---------------------------------------------------------------*/
Alasdair G Kergon69267a32007-12-13 14:15:57 +00001634void dm_kobject_uevent(struct mapped_device *md)
1635{
Tejun Heoed9e1982008-08-25 19:56:05 +09001636 kobject_uevent(&disk_to_dev(md->disk)->kobj, KOBJ_CHANGE);
Alasdair G Kergon69267a32007-12-13 14:15:57 +00001637}
1638
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001639uint32_t dm_next_uevent_seq(struct mapped_device *md)
1640{
1641 return atomic_add_return(1, &md->uevent_seq);
1642}
1643
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644uint32_t dm_get_event_nr(struct mapped_device *md)
1645{
1646 return atomic_read(&md->event_nr);
1647}
1648
1649int dm_wait_event(struct mapped_device *md, int event_nr)
1650{
1651 return wait_event_interruptible(md->eventq,
1652 (event_nr != atomic_read(&md->event_nr)));
1653}
1654
Mike Anderson7a8c3d32007-10-19 22:48:01 +01001655void dm_uevent_add(struct mapped_device *md, struct list_head *elist)
1656{
1657 unsigned long flags;
1658
1659 spin_lock_irqsave(&md->uevent_lock, flags);
1660 list_add(elist, &md->uevent_list);
1661 spin_unlock_irqrestore(&md->uevent_lock, flags);
1662}
1663
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664/*
1665 * The gendisk is only valid as long as you have a reference
1666 * count on 'md'.
1667 */
1668struct gendisk *dm_disk(struct mapped_device *md)
1669{
1670 return md->disk;
1671}
1672
1673int dm_suspended(struct mapped_device *md)
1674{
1675 return test_bit(DMF_SUSPENDED, &md->flags);
1676}
1677
Kiyoshi Ueda2e93ccc2006-12-08 02:41:09 -08001678int dm_noflush_suspending(struct dm_target *ti)
1679{
1680 struct mapped_device *md = dm_table_get_md(ti->table);
1681 int r = __noflush_suspending(md);
1682
1683 dm_put(md);
1684
1685 return r;
1686}
1687EXPORT_SYMBOL_GPL(dm_noflush_suspending);
1688
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689static struct block_device_operations dm_blk_dops = {
1690 .open = dm_blk_open,
1691 .release = dm_blk_close,
Milan Brozaa129a22006-10-03 01:15:15 -07001692 .ioctl = dm_blk_ioctl,
Darrick J. Wong3ac51e72006-03-27 01:17:54 -08001693 .getgeo = dm_blk_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 .owner = THIS_MODULE
1695};
1696
1697EXPORT_SYMBOL(dm_get_mapinfo);
1698
1699/*
1700 * module hooks
1701 */
1702module_init(dm_init);
1703module_exit(dm_exit);
1704
1705module_param(major, uint, 0);
1706MODULE_PARM_DESC(major, "The major number of the device mapper");
1707MODULE_DESCRIPTION(DM_NAME " driver");
1708MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
1709MODULE_LICENSE("GPL");