dm-linear.c 3.5 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 * Copyright (C) 2001-2003 Sistina Software (UK) Limited.
 *
 * This file is released under the GPL.
 */

#include "dm.h"

#include <linux/module.h>
#include <linux/init.h>
#include <linux/blkdev.h>
#include <linux/bio.h>
#include <linux/slab.h>

15 16
#define DM_MSG_PREFIX "linear"

L
Linus Torvalds 已提交
17 18 19 20 21 22 23 24 25 26 27 28 29 30
/*
 * Linear: maps a linear range of a device.
 */
struct linear_c {
	struct dm_dev *dev;
	sector_t start;
};

/*
 * Construct a linear mapping: <dev_path> <offset>
 */
static int linear_ctr(struct dm_target *ti, unsigned int argc, char **argv)
{
	struct linear_c *lc;
A
Andrew Morton 已提交
31
	unsigned long long tmp;
L
Linus Torvalds 已提交
32 33

	if (argc != 2) {
34
		ti->error = "Invalid argument count";
L
Linus Torvalds 已提交
35 36 37 38 39 40 41 42 43
		return -EINVAL;
	}

	lc = kmalloc(sizeof(*lc), GFP_KERNEL);
	if (lc == NULL) {
		ti->error = "dm-linear: Cannot allocate linear context";
		return -ENOMEM;
	}

A
Andrew Morton 已提交
44
	if (sscanf(argv[1], "%llu", &tmp) != 1) {
L
Linus Torvalds 已提交
45 46 47
		ti->error = "dm-linear: Invalid device sector";
		goto bad;
	}
A
Andrew Morton 已提交
48
	lc->start = tmp;
L
Linus Torvalds 已提交
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71

	if (dm_get_device(ti, argv[0], lc->start, ti->len,
			  dm_table_get_mode(ti->table), &lc->dev)) {
		ti->error = "dm-linear: Device lookup failed";
		goto bad;
	}

	ti->private = lc;
	return 0;

      bad:
	kfree(lc);
	return -EINVAL;
}

static void linear_dtr(struct dm_target *ti)
{
	struct linear_c *lc = (struct linear_c *) ti->private;

	dm_put_device(ti, lc->dev);
	kfree(lc);
}

M
Milan Broz 已提交
72
static sector_t linear_map_sector(struct dm_target *ti, sector_t bi_sector)
L
Linus Torvalds 已提交
73
{
M
Milan Broz 已提交
74 75 76 77 78 79 80 81
	struct linear_c *lc = ti->private;

	return lc->start + (bi_sector - ti->begin);
}

static void linear_map_bio(struct dm_target *ti, struct bio *bio)
{
	struct linear_c *lc = ti->private;
L
Linus Torvalds 已提交
82 83

	bio->bi_bdev = lc->dev->bdev;
M
Milan Broz 已提交
84 85 86 87 88 89 90
	bio->bi_sector = linear_map_sector(ti, bio->bi_sector);
}

static int linear_map(struct dm_target *ti, struct bio *bio,
		      union map_info *map_context)
{
	linear_map_bio(ti, bio);
L
Linus Torvalds 已提交
91

92
	return DM_MAPIO_REMAPPED;
L
Linus Torvalds 已提交
93 94 95 96 97 98 99 100 101 102 103 104 105
}

static int linear_status(struct dm_target *ti, status_type_t type,
			 char *result, unsigned int maxlen)
{
	struct linear_c *lc = (struct linear_c *) ti->private;

	switch (type) {
	case STATUSTYPE_INFO:
		result[0] = '\0';
		break;

	case STATUSTYPE_TABLE:
A
Andrew Morton 已提交
106 107
		snprintf(result, maxlen, "%s %llu", lc->dev->name,
				(unsigned long long)lc->start);
L
Linus Torvalds 已提交
108 109 110 111 112
		break;
	}
	return 0;
}

M
Milan Broz 已提交
113 114 115 116 117 118
static int linear_ioctl(struct dm_target *ti, struct inode *inode,
			struct file *filp, unsigned int cmd,
			unsigned long arg)
{
	struct linear_c *lc = (struct linear_c *) ti->private;
	struct block_device *bdev = lc->dev->bdev;
119 120
	struct file fake_file = {};
	struct dentry fake_dentry = {};
M
Milan Broz 已提交
121

122
	fake_file.f_mode = lc->dev->mode;
J
Josef Sipek 已提交
123
	fake_file.f_path.dentry = &fake_dentry;
124 125 126
	fake_dentry.d_inode = bdev->bd_inode;

	return blkdev_driver_ioctl(bdev->bd_inode, &fake_file, bdev->bd_disk, cmd, arg);
M
Milan Broz 已提交
127 128
}

M
Milan Broz 已提交
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
static int linear_merge(struct dm_target *ti, struct bvec_merge_data *bvm,
			struct bio_vec *biovec, int max_size)
{
	struct linear_c *lc = ti->private;
	struct request_queue *q = bdev_get_queue(lc->dev->bdev);

	if (!q->merge_bvec_fn)
		return max_size;

	bvm->bi_bdev = lc->dev->bdev;
	bvm->bi_sector = linear_map_sector(ti, bvm->bi_sector);

	return min(max_size, q->merge_bvec_fn(q, bvm, biovec));
}

L
Linus Torvalds 已提交
144 145
static struct target_type linear_target = {
	.name   = "linear",
M
Milan Broz 已提交
146
	.version= {1, 0, 3},
L
Linus Torvalds 已提交
147 148 149 150 151
	.module = THIS_MODULE,
	.ctr    = linear_ctr,
	.dtr    = linear_dtr,
	.map    = linear_map,
	.status = linear_status,
M
Milan Broz 已提交
152
	.ioctl  = linear_ioctl,
M
Milan Broz 已提交
153
	.merge  = linear_merge,
L
Linus Torvalds 已提交
154 155 156 157 158 159 160
};

int __init dm_linear_init(void)
{
	int r = dm_register_target(&linear_target);

	if (r < 0)
161
		DMERR("register failed %d", r);
L
Linus Torvalds 已提交
162 163 164 165 166 167 168 169 170

	return r;
}

void dm_linear_exit(void)
{
	int r = dm_unregister_target(&linear_target);

	if (r < 0)
171
		DMERR("unregister failed %d", r);
L
Linus Torvalds 已提交
172
}