]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | /* |
2 | * Copyright (C) 2001-2003 Sistina Software (UK) Limited. | |
3 | * | |
4 | * This file is released under the GPL. | |
5 | */ | |
6 | ||
7 | #include "dm.h" | |
1da177e4 LT |
8 | #include <linux/module.h> |
9 | #include <linux/init.h> | |
10 | #include <linux/blkdev.h> | |
11 | #include <linux/bio.h> | |
12 | #include <linux/slab.h> | |
586e80e6 | 13 | #include <linux/device-mapper.h> |
1da177e4 | 14 | |
72d94861 AK |
15 | #define DM_MSG_PREFIX "linear" |
16 | ||
1da177e4 LT |
17 | /* |
18 | * Linear: maps a linear range of a device. | |
19 | */ | |
20 | struct linear_c { | |
21 | struct dm_dev *dev; | |
22 | sector_t start; | |
23 | }; | |
24 | ||
25 | /* | |
26 | * Construct a linear mapping: <dev_path> <offset> | |
27 | */ | |
28 | static int linear_ctr(struct dm_target *ti, unsigned int argc, char **argv) | |
29 | { | |
30 | struct linear_c *lc; | |
4ee218cd | 31 | unsigned long long tmp; |
1da177e4 LT |
32 | |
33 | if (argc != 2) { | |
72d94861 | 34 | ti->error = "Invalid argument count"; |
1da177e4 LT |
35 | 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 | ||
4ee218cd | 44 | if (sscanf(argv[1], "%llu", &tmp) != 1) { |
1da177e4 LT |
45 | ti->error = "dm-linear: Invalid device sector"; |
46 | goto bad; | |
47 | } | |
4ee218cd | 48 | lc->start = tmp; |
1da177e4 | 49 | |
8215d6ec | 50 | if (dm_get_device(ti, argv[0], dm_table_get_mode(ti->table), &lc->dev)) { |
1da177e4 LT |
51 | ti->error = "dm-linear: Device lookup failed"; |
52 | goto bad; | |
53 | } | |
54 | ||
433bcac5 | 55 | ti->num_flush_requests = 1; |
5ae89a87 | 56 | ti->num_discard_requests = 1; |
1da177e4 LT |
57 | ti->private = lc; |
58 | return 0; | |
59 | ||
60 | bad: | |
61 | kfree(lc); | |
62 | return -EINVAL; | |
63 | } | |
64 | ||
65 | static void linear_dtr(struct dm_target *ti) | |
66 | { | |
67 | struct linear_c *lc = (struct linear_c *) ti->private; | |
68 | ||
69 | dm_put_device(ti, lc->dev); | |
70 | kfree(lc); | |
71 | } | |
72 | ||
7bc3447b | 73 | static sector_t linear_map_sector(struct dm_target *ti, sector_t bi_sector) |
1da177e4 | 74 | { |
7bc3447b MB |
75 | struct linear_c *lc = ti->private; |
76 | ||
b441a262 | 77 | return lc->start + dm_target_offset(ti, bi_sector); |
7bc3447b MB |
78 | } |
79 | ||
80 | static void linear_map_bio(struct dm_target *ti, struct bio *bio) | |
81 | { | |
82 | struct linear_c *lc = ti->private; | |
1da177e4 LT |
83 | |
84 | bio->bi_bdev = lc->dev->bdev; | |
433bcac5 MP |
85 | if (bio_sectors(bio)) |
86 | bio->bi_sector = linear_map_sector(ti, bio->bi_sector); | |
7bc3447b MB |
87 | } |
88 | ||
89 | static int linear_map(struct dm_target *ti, struct bio *bio, | |
90 | union map_info *map_context) | |
91 | { | |
92 | linear_map_bio(ti, bio); | |
1da177e4 | 93 | |
d2a7ad29 | 94 | return DM_MAPIO_REMAPPED; |
1da177e4 LT |
95 | } |
96 | ||
97 | static int linear_status(struct dm_target *ti, status_type_t type, | |
98 | char *result, unsigned int maxlen) | |
99 | { | |
100 | struct linear_c *lc = (struct linear_c *) ti->private; | |
101 | ||
102 | switch (type) { | |
103 | case STATUSTYPE_INFO: | |
104 | result[0] = '\0'; | |
105 | break; | |
106 | ||
107 | case STATUSTYPE_TABLE: | |
4ee218cd AM |
108 | snprintf(result, maxlen, "%s %llu", lc->dev->name, |
109 | (unsigned long long)lc->start); | |
1da177e4 LT |
110 | break; |
111 | } | |
112 | return 0; | |
113 | } | |
114 | ||
647b3d00 | 115 | static int linear_ioctl(struct dm_target *ti, unsigned int cmd, |
ab17ffa4 MB |
116 | unsigned long arg) |
117 | { | |
118 | struct linear_c *lc = (struct linear_c *) ti->private; | |
ec8013be PB |
119 | struct dm_dev *dev = lc->dev; |
120 | int r = 0; | |
121 | ||
122 | /* | |
123 | * Only pass ioctls through if the device sizes match exactly. | |
124 | */ | |
125 | if (lc->start || | |
126 | ti->len != i_size_read(dev->bdev->bd_inode) >> SECTOR_SHIFT) | |
127 | r = scsi_verify_blk_ioctl(NULL, cmd); | |
128 | ||
129 | return r ? : __blkdev_driver_ioctl(dev->bdev, dev->mode, cmd, arg); | |
ab17ffa4 MB |
130 | } |
131 | ||
7bc3447b MB |
132 | static int linear_merge(struct dm_target *ti, struct bvec_merge_data *bvm, |
133 | struct bio_vec *biovec, int max_size) | |
134 | { | |
135 | struct linear_c *lc = ti->private; | |
136 | struct request_queue *q = bdev_get_queue(lc->dev->bdev); | |
137 | ||
138 | if (!q->merge_bvec_fn) | |
139 | return max_size; | |
140 | ||
141 | bvm->bi_bdev = lc->dev->bdev; | |
142 | bvm->bi_sector = linear_map_sector(ti, bvm->bi_sector); | |
143 | ||
144 | return min(max_size, q->merge_bvec_fn(q, bvm, biovec)); | |
145 | } | |
146 | ||
af4874e0 MS |
147 | static int linear_iterate_devices(struct dm_target *ti, |
148 | iterate_devices_callout_fn fn, void *data) | |
149 | { | |
150 | struct linear_c *lc = ti->private; | |
151 | ||
5dea271b | 152 | return fn(ti, lc->dev, lc->start, ti->len, data); |
af4874e0 MS |
153 | } |
154 | ||
1da177e4 LT |
155 | static struct target_type linear_target = { |
156 | .name = "linear", | |
af4874e0 | 157 | .version = {1, 1, 0}, |
1da177e4 LT |
158 | .module = THIS_MODULE, |
159 | .ctr = linear_ctr, | |
160 | .dtr = linear_dtr, | |
161 | .map = linear_map, | |
162 | .status = linear_status, | |
ab17ffa4 | 163 | .ioctl = linear_ioctl, |
7bc3447b | 164 | .merge = linear_merge, |
af4874e0 | 165 | .iterate_devices = linear_iterate_devices, |
1da177e4 LT |
166 | }; |
167 | ||
168 | int __init dm_linear_init(void) | |
169 | { | |
170 | int r = dm_register_target(&linear_target); | |
171 | ||
172 | if (r < 0) | |
72d94861 | 173 | DMERR("register failed %d", r); |
1da177e4 LT |
174 | |
175 | return r; | |
176 | } | |
177 | ||
178 | void dm_linear_exit(void) | |
179 | { | |
10d3bd09 | 180 | dm_unregister_target(&linear_target); |
1da177e4 | 181 | } |