dm-linear.c 3.4 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12
/*
 * 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>
13
#include <linux/device-mapper.h>
L
Linus Torvalds 已提交
14

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;
32
	char dummy;
33
	int ret;
L
Linus Torvalds 已提交
34 35

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

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

46
	ret = -EINVAL;
47
	if (sscanf(argv[1], "%llu%c", &tmp, &dummy) != 1) {
L
Linus Torvalds 已提交
48 49 50
		ti->error = "dm-linear: Invalid device sector";
		goto bad;
	}
A
Andrew Morton 已提交
51
	lc->start = tmp;
L
Linus Torvalds 已提交
52

53 54
	ret = dm_get_device(ti, argv[0], dm_table_get_mode(ti->table), &lc->dev);
	if (ret) {
L
Linus Torvalds 已提交
55 56 57 58
		ti->error = "dm-linear: Device lookup failed";
		goto bad;
	}

59 60 61
	ti->num_flush_bios = 1;
	ti->num_discard_bios = 1;
	ti->num_write_same_bios = 1;
L
Linus Torvalds 已提交
62 63 64 65 66
	ti->private = lc;
	return 0;

      bad:
	kfree(lc);
67
	return ret;
L
Linus Torvalds 已提交
68 69 70 71 72 73 74 75 76 77
}

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 已提交
78
static sector_t linear_map_sector(struct dm_target *ti, sector_t bi_sector)
L
Linus Torvalds 已提交
79
{
M
Milan Broz 已提交
80 81
	struct linear_c *lc = ti->private;

82
	return lc->start + dm_target_offset(ti, bi_sector);
M
Milan Broz 已提交
83 84 85 86 87
}

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

	bio->bi_bdev = lc->dev->bdev;
M
Mikulas Patocka 已提交
90
	if (bio_sectors(bio))
91 92
		bio->bi_iter.bi_sector =
			linear_map_sector(ti, bio->bi_iter.bi_sector);
M
Milan Broz 已提交
93 94
}

M
Mikulas Patocka 已提交
95
static int linear_map(struct dm_target *ti, struct bio *bio)
M
Milan Broz 已提交
96 97
{
	linear_map_bio(ti, bio);
L
Linus Torvalds 已提交
98

99
	return DM_MAPIO_REMAPPED;
L
Linus Torvalds 已提交
100 101
}

102 103
static void linear_status(struct dm_target *ti, status_type_t type,
			  unsigned status_flags, char *result, unsigned maxlen)
L
Linus Torvalds 已提交
104 105 106 107 108 109 110 111 112
{
	struct linear_c *lc = (struct linear_c *) ti->private;

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

	case STATUSTYPE_TABLE:
A
Andrew Morton 已提交
113 114
		snprintf(result, maxlen, "%s %llu", lc->dev->name,
				(unsigned long long)lc->start);
L
Linus Torvalds 已提交
115 116 117 118
		break;
	}
}

119
static int linear_ioctl(struct dm_target *ti, unsigned int cmd,
M
Milan Broz 已提交
120 121 122
			unsigned long arg)
{
	struct linear_c *lc = (struct linear_c *) ti->private;
123 124 125 126 127 128 129 130 131 132 133
	struct dm_dev *dev = lc->dev;
	int r = 0;

	/*
	 * Only pass ioctls through if the device sizes match exactly.
	 */
	if (lc->start ||
	    ti->len != i_size_read(dev->bdev->bd_inode) >> SECTOR_SHIFT)
		r = scsi_verify_blk_ioctl(NULL, cmd);

	return r ? : __blkdev_driver_ioctl(dev->bdev, dev->mode, cmd, arg);
M
Milan Broz 已提交
134 135
}

136 137 138 139 140
static int linear_iterate_devices(struct dm_target *ti,
				  iterate_devices_callout_fn fn, void *data)
{
	struct linear_c *lc = ti->private;

141
	return fn(ti, lc->dev, lc->start, ti->len, data);
142 143
}

L
Linus Torvalds 已提交
144 145
static struct target_type linear_target = {
	.name   = "linear",
146
	.version = {1, 2, 1},
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,
153
	.iterate_devices = linear_iterate_devices,
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

	return r;
}

void dm_linear_exit(void)
{
168
	dm_unregister_target(&linear_target);
L
Linus Torvalds 已提交
169
}