dm_target_linear.c revision 1.23 1 /* $NetBSD: dm_target_linear.c,v 1.23 2019/12/06 16:46:14 tkusumi Exp $ */
2
3 /*
4 * Copyright (c) 2008 The NetBSD Foundation, Inc.
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Adam Hamsik.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
30 */
31 #include <sys/cdefs.h>
32 __KERNEL_RCSID(0, "$NetBSD: dm_target_linear.c,v 1.23 2019/12/06 16:46:14 tkusumi Exp $");
33
34 /*
35 * This file implements initial version of device-mapper dklinear target.
36 */
37
38 #include <sys/types.h>
39 #include <sys/param.h>
40
41 #include <sys/buf.h>
42 #include <sys/kmem.h>
43 #include <sys/lwp.h>
44
45 #include <machine/int_fmtio.h>
46
47 #include "dm.h"
48
49 /*
50 * Allocate target specific config data, and link them to table.
51 * This function is called only when, flags is not READONLY and
52 * therefore we can add things to pdev list. This should not a
53 * problem because this routine is called only from dm_table_load_ioctl.
54 * @argv[0] is name,
55 * @argv[1] is physical data offset.
56 */
57 int
58 dm_target_linear_init(dm_dev_t * dmv, void **target_config, char *params)
59 {
60 dm_target_linear_config_t *tlc;
61 dm_pdev_t *dmp;
62
63 char **ap, *argv[3];
64
65 if (params == NULL)
66 return EINVAL;
67
68 /*
69 * Parse a string, containing tokens delimited by white space,
70 * into an argument vector
71 */
72 for (ap = argv; ap < &argv[2] &&
73 (*ap = strsep(¶ms, " \t")) != NULL;) {
74 if (**ap != '\0')
75 ap++;
76 }
77
78 aprint_debug("Linear target init function called %s--%s!!\n",
79 argv[0], argv[1]);
80
81 /* Insert dmp to global pdev list */
82 if ((dmp = dm_pdev_insert(argv[0])) == NULL)
83 return ENOENT;
84
85 tlc = kmem_alloc(sizeof(dm_target_linear_config_t), KM_SLEEP);
86 tlc->pdev = dmp;
87 tlc->offset = atoi(argv[1]);
88
89 *target_config = tlc;
90
91 return 0;
92 }
93
94 /*
95 * Status routine is called to get params string, which is target
96 * specific. When dm_table_status_ioctl is called with flag
97 * DM_STATUS_TABLE_FLAG I have to sent params string back.
98 */
99 char *
100 dm_target_linear_status(void *target_config)
101 {
102 dm_target_linear_config_t *tlc;
103 char *params;
104 tlc = target_config;
105
106 aprint_debug("Linear target status function called\n");
107
108 params = kmem_alloc(DM_MAX_PARAMS_SIZE, KM_SLEEP);
109 aprint_normal("%s %" PRIu64, tlc->pdev->name, tlc->offset);
110 snprintf(params, DM_MAX_PARAMS_SIZE, "%s %" PRIu64,
111 tlc->pdev->name, tlc->offset);
112
113 return params;
114 }
115
116 /*
117 * Do IO operation, called from dmstrategy routine.
118 */
119 int
120 dm_target_linear_strategy(dm_table_entry_t * table_en, struct buf * bp)
121 {
122 dm_target_linear_config_t *tlc;
123
124 tlc = table_en->target_config;
125
126 /* printf("Linear target read function called %" PRIu64 "!!\n",
127 tlc->offset);*/
128
129 bp->b_blkno += tlc->offset;
130
131 VOP_STRATEGY(tlc->pdev->pdev_vnode, bp);
132
133 return 0;
134
135 }
136
137 /*
138 * Sync underlying disk caches.
139 */
140 int
141 dm_target_linear_sync(dm_table_entry_t * table_en)
142 {
143 int cmd;
144 dm_target_linear_config_t *tlc;
145
146 tlc = table_en->target_config;
147
148 cmd = 1;
149
150 return VOP_IOCTL(tlc->pdev->pdev_vnode, DIOCCACHESYNC, &cmd,
151 FREAD|FWRITE, kauth_cred_get());
152 }
153
154 /*
155 * Destroy target specific data. Decrement table pdevs.
156 */
157 int
158 dm_target_linear_destroy(dm_table_entry_t * table_en)
159 {
160
161 /*
162 * Destroy function is called for every target even if it
163 * doesn't have target_config.
164 */
165 if (table_en->target_config == NULL)
166 goto out;
167
168 dm_target_linear_config_t *tlc = table_en->target_config;
169
170 /* Decrement pdev ref counter if 0 remove it */
171 dm_pdev_decr(tlc->pdev);
172
173 kmem_free(tlc, sizeof(*tlc));
174
175 out:
176 /* Unbusy target so we can unload it */
177 dm_target_unbusy(table_en->target);
178 return 0;
179 }
180
181 /* Add this target pdev dependencies to prop_array_t */
182 int
183 dm_target_linear_deps(dm_table_entry_t * table_en, prop_array_t prop_array)
184 {
185 dm_target_linear_config_t *tlc;
186
187 if (table_en->target_config == NULL)
188 return ENOENT;
189
190 tlc = table_en->target_config;
191
192 prop_array_add_uint64(prop_array,
193 (uint64_t) tlc->pdev->pdev_vnode->v_rdev);
194
195 return 0;
196 }
197
198 /*
199 * Register upcall device.
200 * Linear target doesn't need any upcall devices but other targets like
201 * mirror, snapshot, multipath, stripe will use this functionality.
202 */
203 int
204 dm_target_linear_upcall(dm_table_entry_t * table_en, struct buf * bp)
205 {
206 return 0;
207 }
208
209 /*
210 * Query physical block size of this target
211 * For a linear target this is just the sector size of the underlying device
212 */
213 int
214 dm_target_linear_secsize(dm_table_entry_t * table_en, unsigned *secsizep)
215 {
216 dm_target_linear_config_t *tlc;
217 unsigned secsize;
218
219 secsize = 0;
220
221 tlc = table_en->target_config;
222 if (tlc != NULL)
223 secsize = tlc->pdev->pdev_secsize;
224
225 *secsizep = secsize;
226
227 return 0;
228 }
229
230 /*
231 * Transform char s to uint64_t offset number.
232 */
233 uint64_t
234 atoi(const char *s)
235 {
236 uint64_t n;
237 n = 0;
238
239 while (*s != '\0') {
240 if (!isdigit(*s))
241 break;
242
243 n = (10 * n) + (*s - '0');
244 s++;
245 }
246
247 return n;
248 }
249