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

16 17
#define DM_MSG_PREFIX "linear"

L
Linus Torvalds 已提交
18 19 20 21 22 23 24 25 26 27 28 29 30 31
/*
 * 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 已提交
32
	unsigned long long tmp;
33
	char dummy;
34
	int ret;
L
Linus Torvalds 已提交
35 36

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

	lc = kmalloc(sizeof(*lc), GFP_KERNEL);
	if (lc == NULL) {
43
		ti->error = "Cannot allocate linear context";
L
Linus Torvalds 已提交
44 45 46
		return -ENOMEM;
	}

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

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

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

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

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

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

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

	bio->bi_bdev = lc->dev->bdev;
92
	if (bio_sectors(bio) || bio_op(bio) == REQ_OP_ZONE_RESET)
93 94
		bio->bi_iter.bi_sector =
			linear_map_sector(ti, bio->bi_iter.bi_sector);
M
Milan Broz 已提交
95 96
}

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

101
	return DM_MAPIO_REMAPPED;
L
Linus Torvalds 已提交
102 103
}

104 105 106 107 108 109 110 111 112 113 114
static int linear_end_io(struct dm_target *ti, struct bio *bio,
			 blk_status_t *error)
{
	struct linear_c *lc = ti->private;

	if (!*error && bio_op(bio) == REQ_OP_ZONE_REPORT)
		dm_remap_zone_report(ti, bio, lc->start);

	return DM_ENDIO_DONE;
}

115 116
static void linear_status(struct dm_target *ti, status_type_t type,
			  unsigned status_flags, char *result, unsigned maxlen)
L
Linus Torvalds 已提交
117 118 119 120 121 122 123 124 125
{
	struct linear_c *lc = (struct linear_c *) ti->private;

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

	case STATUSTYPE_TABLE:
A
Andrew Morton 已提交
126 127
		snprintf(result, maxlen, "%s %llu", lc->dev->name,
				(unsigned long long)lc->start);
L
Linus Torvalds 已提交
128 129 130 131
		break;
	}
}

C
Christoph Hellwig 已提交
132 133
static int linear_prepare_ioctl(struct dm_target *ti,
		struct block_device **bdev, fmode_t *mode)
M
Milan Broz 已提交
134 135
{
	struct linear_c *lc = (struct linear_c *) ti->private;
136
	struct dm_dev *dev = lc->dev;
C
Christoph Hellwig 已提交
137 138

	*bdev = dev->bdev;
139 140 141 142 143 144

	/*
	 * Only pass ioctls through if the device sizes match exactly.
	 */
	if (lc->start ||
	    ti->len != i_size_read(dev->bdev->bd_inode) >> SECTOR_SHIFT)
C
Christoph Hellwig 已提交
145 146
		return 1;
	return 0;
M
Milan Broz 已提交
147 148
}

149 150 151 152 153
static int linear_iterate_devices(struct dm_target *ti,
				  iterate_devices_callout_fn fn, void *data)
{
	struct linear_c *lc = ti->private;

154
	return fn(ti, lc->dev, lc->start, ti->len, data);
155 156
}

157 158
static long linear_dax_direct_access(struct dm_target *ti, pgoff_t pgoff,
		long nr_pages, void **kaddr, pfn_t *pfn)
T
Toshi Kani 已提交
159
{
160
	long ret;
T
Toshi Kani 已提交
161 162
	struct linear_c *lc = ti->private;
	struct block_device *bdev = lc->dev->bdev;
163 164 165 166 167 168 169 170
	struct dax_device *dax_dev = lc->dev->dax_dev;
	sector_t dev_sector, sector = pgoff * PAGE_SECTORS;

	dev_sector = linear_map_sector(ti, sector);
	ret = bdev_dax_pgoff(bdev, dev_sector, nr_pages * PAGE_SIZE, &pgoff);
	if (ret)
		return ret;
	return dax_direct_access(dax_dev, pgoff, nr_pages, kaddr, pfn);
T
Toshi Kani 已提交
171 172
}

L
Linus Torvalds 已提交
173 174
static struct target_type linear_target = {
	.name   = "linear",
175 176
	.version = {1, 4, 0},
	.features = DM_TARGET_PASSES_INTEGRITY | DM_TARGET_ZONED_HM,
L
Linus Torvalds 已提交
177 178 179 180
	.module = THIS_MODULE,
	.ctr    = linear_ctr,
	.dtr    = linear_dtr,
	.map    = linear_map,
181
	.end_io = linear_end_io,
L
Linus Torvalds 已提交
182
	.status = linear_status,
C
Christoph Hellwig 已提交
183
	.prepare_ioctl = linear_prepare_ioctl,
184
	.iterate_devices = linear_iterate_devices,
185
	.direct_access = linear_dax_direct_access,
L
Linus Torvalds 已提交
186 187 188 189 190 191 192
};

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

	if (r < 0)
193
		DMERR("register failed %d", r);
L
Linus Torvalds 已提交
194 195 196 197 198 199

	return r;
}

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