GNU Linux-libre 4.14.266-gnu1
[releases.git] / drivers / md / dm-linear.c
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"
8 #include <linux/module.h>
9 #include <linux/init.h>
10 #include <linux/blkdev.h>
11 #include <linux/bio.h>
12 #include <linux/dax.h>
13 #include <linux/slab.h>
14 #include <linux/device-mapper.h>
15
16 #define DM_MSG_PREFIX "linear"
17
18 /*
19  * Linear: maps a linear range of a device.
20  */
21 struct linear_c {
22         struct dm_dev *dev;
23         sector_t start;
24 };
25
26 /*
27  * Construct a linear mapping: <dev_path> <offset>
28  */
29 static int linear_ctr(struct dm_target *ti, unsigned int argc, char **argv)
30 {
31         struct linear_c *lc;
32         unsigned long long tmp;
33         char dummy;
34         int ret;
35
36         if (argc != 2) {
37                 ti->error = "Invalid argument count";
38                 return -EINVAL;
39         }
40
41         lc = kmalloc(sizeof(*lc), GFP_KERNEL);
42         if (lc == NULL) {
43                 ti->error = "Cannot allocate linear context";
44                 return -ENOMEM;
45         }
46
47         ret = -EINVAL;
48         if (sscanf(argv[1], "%llu%c", &tmp, &dummy) != 1) {
49                 ti->error = "Invalid device sector";
50                 goto bad;
51         }
52         lc->start = tmp;
53
54         ret = dm_get_device(ti, argv[0], dm_table_get_mode(ti->table), &lc->dev);
55         if (ret) {
56                 ti->error = "Device lookup failed";
57                 goto bad;
58         }
59
60         ti->num_flush_bios = 1;
61         ti->num_discard_bios = 1;
62         ti->num_write_same_bios = 1;
63         ti->num_write_zeroes_bios = 1;
64         ti->private = lc;
65         return 0;
66
67       bad:
68         kfree(lc);
69         return ret;
70 }
71
72 static void linear_dtr(struct dm_target *ti)
73 {
74         struct linear_c *lc = (struct linear_c *) ti->private;
75
76         dm_put_device(ti, lc->dev);
77         kfree(lc);
78 }
79
80 static sector_t linear_map_sector(struct dm_target *ti, sector_t bi_sector)
81 {
82         struct linear_c *lc = ti->private;
83
84         return lc->start + dm_target_offset(ti, bi_sector);
85 }
86
87 static void linear_map_bio(struct dm_target *ti, struct bio *bio)
88 {
89         struct linear_c *lc = ti->private;
90
91         bio_set_dev(bio, lc->dev->bdev);
92         if (bio_sectors(bio) || bio_op(bio) == REQ_OP_ZONE_RESET)
93                 bio->bi_iter.bi_sector =
94                         linear_map_sector(ti, bio->bi_iter.bi_sector);
95 }
96
97 static int linear_map(struct dm_target *ti, struct bio *bio)
98 {
99         linear_map_bio(ti, bio);
100
101         return DM_MAPIO_REMAPPED;
102 }
103
104 #ifdef CONFIG_BLK_DEV_ZONED
105 static int linear_end_io(struct dm_target *ti, struct bio *bio,
106                          blk_status_t *error)
107 {
108         struct linear_c *lc = ti->private;
109
110         if (!*error && bio_op(bio) == REQ_OP_ZONE_REPORT)
111                 dm_remap_zone_report(ti, bio, lc->start);
112
113         return DM_ENDIO_DONE;
114 }
115 #endif
116
117 static void linear_status(struct dm_target *ti, status_type_t type,
118                           unsigned status_flags, char *result, unsigned maxlen)
119 {
120         struct linear_c *lc = (struct linear_c *) ti->private;
121
122         switch (type) {
123         case STATUSTYPE_INFO:
124                 result[0] = '\0';
125                 break;
126
127         case STATUSTYPE_TABLE:
128                 snprintf(result, maxlen, "%s %llu", lc->dev->name,
129                                 (unsigned long long)lc->start);
130                 break;
131         }
132 }
133
134 static int linear_prepare_ioctl(struct dm_target *ti,
135                 struct block_device **bdev, fmode_t *mode)
136 {
137         struct linear_c *lc = (struct linear_c *) ti->private;
138         struct dm_dev *dev = lc->dev;
139
140         *bdev = dev->bdev;
141
142         /*
143          * Only pass ioctls through if the device sizes match exactly.
144          */
145         if (lc->start ||
146             ti->len != i_size_read(dev->bdev->bd_inode) >> SECTOR_SHIFT)
147                 return 1;
148         return 0;
149 }
150
151 static int linear_iterate_devices(struct dm_target *ti,
152                                   iterate_devices_callout_fn fn, void *data)
153 {
154         struct linear_c *lc = ti->private;
155
156         return fn(ti, lc->dev, lc->start, ti->len, data);
157 }
158
159 static long linear_dax_direct_access(struct dm_target *ti, pgoff_t pgoff,
160                 long nr_pages, void **kaddr, pfn_t *pfn)
161 {
162         long ret;
163         struct linear_c *lc = ti->private;
164         struct block_device *bdev = lc->dev->bdev;
165         struct dax_device *dax_dev = lc->dev->dax_dev;
166         sector_t dev_sector, sector = pgoff * PAGE_SECTORS;
167
168         dev_sector = linear_map_sector(ti, sector);
169         ret = bdev_dax_pgoff(bdev, dev_sector, nr_pages * PAGE_SIZE, &pgoff);
170         if (ret)
171                 return ret;
172         return dax_direct_access(dax_dev, pgoff, nr_pages, kaddr, pfn);
173 }
174
175 static size_t linear_dax_copy_from_iter(struct dm_target *ti, pgoff_t pgoff,
176                 void *addr, size_t bytes, struct iov_iter *i)
177 {
178         struct linear_c *lc = ti->private;
179         struct block_device *bdev = lc->dev->bdev;
180         struct dax_device *dax_dev = lc->dev->dax_dev;
181         sector_t dev_sector, sector = pgoff * PAGE_SECTORS;
182
183         dev_sector = linear_map_sector(ti, sector);
184         if (bdev_dax_pgoff(bdev, dev_sector, ALIGN(bytes, PAGE_SIZE), &pgoff))
185                 return 0;
186         return dax_copy_from_iter(dax_dev, pgoff, addr, bytes, i);
187 }
188
189 static struct target_type linear_target = {
190         .name   = "linear",
191         .version = {1, 4, 0},
192 #ifdef CONFIG_BLK_DEV_ZONED
193         .end_io = linear_end_io,
194         .features = DM_TARGET_PASSES_INTEGRITY | DM_TARGET_ZONED_HM,
195 #else
196         .features = DM_TARGET_PASSES_INTEGRITY,
197 #endif
198         .module = THIS_MODULE,
199         .ctr    = linear_ctr,
200         .dtr    = linear_dtr,
201         .map    = linear_map,
202         .status = linear_status,
203         .prepare_ioctl = linear_prepare_ioctl,
204         .iterate_devices = linear_iterate_devices,
205         .direct_access = linear_dax_direct_access,
206         .dax_copy_from_iter = linear_dax_copy_from_iter,
207 };
208
209 int __init dm_linear_init(void)
210 {
211         int r = dm_register_target(&linear_target);
212
213         if (r < 0)
214                 DMERR("register failed %d", r);
215
216         return r;
217 }
218
219 void dm_linear_exit(void)
220 {
221         dm_unregister_target(&linear_target);
222 }