blob: bfa107f59d96fca62f219bff16e3affcf08b5046 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2001-2003 Sistina Software (UK) Limited.
3 *
4 * This file is released under the GPL.
5 */
6
7#include "dm.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/module.h>
9#include <linux/init.h>
10#include <linux/blkdev.h>
11#include <linux/bio.h>
12#include <linux/slab.h>
Mikulas Patocka586e80e2008-10-21 17:44:59 +010013#include <linux/device-mapper.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
Alasdair G Kergon72d94862006-06-26 00:27:35 -070015#define DM_MSG_PREFIX "linear"
16
Linus Torvalds1da177e2005-04-16 15:20:36 -070017/*
18 * Linear: maps a linear range of a device.
19 */
20struct linear_c {
21 struct dm_dev *dev;
22 sector_t start;
23};
24
25/*
26 * Construct a linear mapping: <dev_path> <offset>
27 */
28static int linear_ctr(struct dm_target *ti, unsigned int argc, char **argv)
29{
30 struct linear_c *lc;
Andrew Morton4ee218c2006-03-27 01:17:48 -080031 unsigned long long tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33 if (argc != 2) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -070034 ti->error = "Invalid argument count";
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 return -EINVAL;
36 }
37
38 lc = kmalloc(sizeof(*lc), GFP_KERNEL);
39 if (lc == NULL) {
40 ti->error = "dm-linear: Cannot allocate linear context";
41 return -ENOMEM;
42 }
43
Andrew Morton4ee218c2006-03-27 01:17:48 -080044 if (sscanf(argv[1], "%llu", &tmp) != 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 ti->error = "dm-linear: Invalid device sector";
46 goto bad;
47 }
Andrew Morton4ee218c2006-03-27 01:17:48 -080048 lc->start = tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50 if (dm_get_device(ti, argv[0], lc->start, ti->len,
51 dm_table_get_mode(ti->table), &lc->dev)) {
52 ti->error = "dm-linear: Device lookup failed";
53 goto bad;
54 }
55
56 ti->private = lc;
57 return 0;
58
59 bad:
60 kfree(lc);
61 return -EINVAL;
62}
63
64static void linear_dtr(struct dm_target *ti)
65{
66 struct linear_c *lc = (struct linear_c *) ti->private;
67
68 dm_put_device(ti, lc->dev);
69 kfree(lc);
70}
71
Milan Broz7bc34472008-07-21 12:00:38 +010072static sector_t linear_map_sector(struct dm_target *ti, sector_t bi_sector)
73{
74 struct linear_c *lc = ti->private;
75
76 return lc->start + (bi_sector - ti->begin);
77}
78
79static void linear_map_bio(struct dm_target *ti, struct bio *bio)
80{
81 struct linear_c *lc = ti->private;
82
83 bio->bi_bdev = lc->dev->bdev;
84 bio->bi_sector = linear_map_sector(ti, bio->bi_sector);
85}
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087static int linear_map(struct dm_target *ti, struct bio *bio,
88 union map_info *map_context)
89{
Milan Broz7bc34472008-07-21 12:00:38 +010090 linear_map_bio(ti, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -080092 return DM_MAPIO_REMAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093}
94
95static int linear_status(struct dm_target *ti, status_type_t type,
96 char *result, unsigned int maxlen)
97{
98 struct linear_c *lc = (struct linear_c *) ti->private;
99
100 switch (type) {
101 case STATUSTYPE_INFO:
102 result[0] = '\0';
103 break;
104
105 case STATUSTYPE_TABLE:
Andrew Morton4ee218c2006-03-27 01:17:48 -0800106 snprintf(result, maxlen, "%s %llu", lc->dev->name,
107 (unsigned long long)lc->start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 break;
109 }
110 return 0;
111}
112
Al Viro647b3d02007-08-28 22:15:59 -0400113static int linear_ioctl(struct dm_target *ti, unsigned int cmd,
Milan Brozab17ffa2006-10-03 01:15:18 -0700114 unsigned long arg)
115{
116 struct linear_c *lc = (struct linear_c *) ti->private;
Al Viro633a08b2007-08-29 20:34:12 -0400117 return __blkdev_driver_ioctl(lc->dev->bdev, lc->dev->mode, cmd, arg);
Milan Brozab17ffa2006-10-03 01:15:18 -0700118}
119
Milan Broz7bc34472008-07-21 12:00:38 +0100120static int linear_merge(struct dm_target *ti, struct bvec_merge_data *bvm,
121 struct bio_vec *biovec, int max_size)
122{
123 struct linear_c *lc = ti->private;
124 struct request_queue *q = bdev_get_queue(lc->dev->bdev);
125
126 if (!q->merge_bvec_fn)
127 return max_size;
128
129 bvm->bi_bdev = lc->dev->bdev;
130 bvm->bi_sector = linear_map_sector(ti, bvm->bi_sector);
131
132 return min(max_size, q->merge_bvec_fn(q, bvm, biovec));
133}
134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135static struct target_type linear_target = {
136 .name = "linear",
Milan Broz7bc34472008-07-21 12:00:38 +0100137 .version= {1, 0, 3},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 .module = THIS_MODULE,
139 .ctr = linear_ctr,
140 .dtr = linear_dtr,
141 .map = linear_map,
142 .status = linear_status,
Milan Brozab17ffa2006-10-03 01:15:18 -0700143 .ioctl = linear_ioctl,
Milan Broz7bc34472008-07-21 12:00:38 +0100144 .merge = linear_merge,
Andi Kleenab4c142482009-01-06 03:05:09 +0000145 .features = DM_TARGET_SUPPORTS_BARRIERS,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146};
147
148int __init dm_linear_init(void)
149{
150 int r = dm_register_target(&linear_target);
151
152 if (r < 0)
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700153 DMERR("register failed %d", r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155 return r;
156}
157
158void dm_linear_exit(void)
159{
Mikulas Patocka10d3bd02009-01-06 03:04:58 +0000160 dm_unregister_target(&linear_target);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161}