dm_target_linear.c revision 1.29 1 /* $NetBSD: dm_target_linear.c,v 1.29 2019/12/15 05:56:02 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.29 2019/12/15 05:56:02 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_table_entry_t *table_en, int argc, char **argv)
59 {
60 dm_target_linear_config_t *tlc;
61 dm_pdev_t *dmp;
62
63 /*
64 if (argc != 2) {
65 printf("Linear target takes 2 args\n");
66 return EINVAL;
67 }
68 */
69
70 aprint_debug("Linear target init function called %s--%s!!\n",
71 argv[0], argv[1]);
72
73 /* Insert dmp to global pdev list */
74 if ((dmp = dm_pdev_insert(argv[0])) == NULL)
75 return ENOENT;
76
77 tlc = kmem_alloc(sizeof(dm_target_linear_config_t), KM_SLEEP);
78 tlc->pdev = dmp;
79 tlc->offset = atoi(argv[1]);
80
81 table_en->target_config = tlc;
82
83 return 0;
84 }
85
86 /*
87 * Table routine is called to get params string, which is target
88 * specific. When dm_table_status_ioctl is called with flag
89 * DM_STATUS_TABLE_FLAG I have to sent params string back.
90 */
91 char *
92 dm_target_linear_table(void *target_config)
93 {
94 dm_target_linear_config_t *tlc;
95 char *params;
96 tlc = target_config;
97
98 aprint_debug("Linear target table function called\n");
99
100 params = kmem_alloc(DM_MAX_PARAMS_SIZE, KM_SLEEP);
101 snprintf(params, DM_MAX_PARAMS_SIZE, "%s %" PRIu64,
102 tlc->pdev->name, tlc->offset);
103
104 return params;
105 }
106
107 /*
108 * Do IO operation, called from dmstrategy routine.
109 */
110 int
111 dm_target_linear_strategy(dm_table_entry_t *table_en, struct buf *bp)
112 {
113 dm_target_linear_config_t *tlc;
114
115 tlc = table_en->target_config;
116
117 bp->b_blkno += tlc->offset;
118
119 VOP_STRATEGY(tlc->pdev->pdev_vnode, bp);
120
121 return 0;
122 }
123
124 /*
125 * Sync underlying disk caches.
126 */
127 int
128 dm_target_linear_sync(dm_table_entry_t *table_en)
129 {
130 int cmd;
131 dm_target_linear_config_t *tlc;
132
133 tlc = table_en->target_config;
134
135 cmd = 1;
136
137 return VOP_IOCTL(tlc->pdev->pdev_vnode, DIOCCACHESYNC, &cmd,
138 FREAD|FWRITE, kauth_cred_get());
139 }
140
141 /*
142 * Destroy target specific data. Decrement table pdevs.
143 */
144 int
145 dm_target_linear_destroy(dm_table_entry_t *table_en)
146 {
147
148 /*
149 * Destroy function is called for every target even if it
150 * doesn't have target_config.
151 */
152 if (table_en->target_config == NULL)
153 goto out;
154
155 dm_target_linear_config_t *tlc = table_en->target_config;
156
157 /* Decrement pdev ref counter if 0 remove it */
158 dm_pdev_decr(tlc->pdev);
159
160 kmem_free(tlc, sizeof(*tlc));
161
162 out:
163 /* Unbusy target so we can unload it */
164 dm_target_unbusy(table_en->target);
165 return 0;
166 }
167
168 /* Add this target pdev dependencies to prop_array_t */
169 int
170 dm_target_linear_deps(dm_table_entry_t *table_en, prop_array_t prop_array)
171 {
172 dm_target_linear_config_t *tlc;
173
174 if (table_en->target_config == NULL)
175 return ENOENT;
176
177 tlc = table_en->target_config;
178
179 prop_array_add_uint64(prop_array,
180 (uint64_t) tlc->pdev->pdev_vnode->v_rdev);
181
182 return 0;
183 }
184
185 /*
186 * Register upcall device.
187 * Linear target doesn't need any upcall devices but other targets like
188 * mirror, snapshot, multipath, stripe will use this functionality.
189 */
190 int
191 dm_target_linear_upcall(dm_table_entry_t *table_en, struct buf *bp)
192 {
193 return 0;
194 }
195
196 /*
197 * Query physical block size of this target
198 * For a linear target this is just the sector size of the underlying device
199 */
200 int
201 dm_target_linear_secsize(dm_table_entry_t *table_en, unsigned *secsizep)
202 {
203 dm_target_linear_config_t *tlc;
204 unsigned secsize;
205
206 secsize = 0;
207
208 tlc = table_en->target_config;
209 if (tlc != NULL)
210 secsize = tlc->pdev->pdev_secsize;
211
212 *secsizep = secsize;
213
214 return 0;
215 }
216
217 /*
218 * Transform char s to uint64_t offset number.
219 */
220 uint64_t
221 atoi(const char *s)
222 {
223 uint64_t n;
224 n = 0;
225
226 while (*s != '\0') {
227 if (!isdigit(*s))
228 break;
229
230 n = (10 * n) + (*s - '0');
231 s++;
232 }
233
234 return n;
235 }
236