dm_target_linear.c revision 1.1.2.11 1 /* $NetBSD: dm_target_linear.c,v 1.1.2.11 2008/08/20 16:08:06 haad Exp $ */
2
3 /*
4 * Copyright (c) 1996, 1997, 1998, 1999, 2002 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
32
33 /*
34 * This file implements initial version of device-mapper dklinear target.
35 */
36
37 #include <sys/types.h>
38 #include <sys/param.h>
39
40 #include <sys/buf.h>
41 #include <sys/disk.h>
42 #include <sys/errno.h>
43 #include <sys/ioctl.h>
44 #include <sys/ioccom.h>
45 #include <sys/kmem.h>
46 #include <sys/types.h>
47 #include <sys/param.h>
48 #include <sys/queue.h>
49 #include <sys/vnode.h>
50
51 #include <machine/int_fmtio.h>
52
53 #include "dm.h"
54
55 /*
56 * Allocate target specific config data, and link them to table.
57 * This function is called only when, flags is not READONLY and
58 * therefore we can add things to pdev list. This function have to
59 * be called with held dev_mtx. This should not e a problem because
60 * this routine is called onyl from dm_table_load_ioctl.
61 * @argv[0] is name,
62 * @argv[1] is physical data offset.
63 */
64 int
65 dm_target_linear_init(struct dm_dev *dmv, void **target_config, char *params)
66 {
67 struct target_linear_config *tlc;
68 struct dm_pdev *dmp;
69
70 char **ap, *argv[3];
71
72 /*
73 * Parse a string, containing tokens delimited by white space,
74 * into an argument vector
75 */
76 for (ap = argv; ap < &argv[9] &&
77 (*ap = strsep(¶ms, " \t")) != NULL;) {
78 if (**ap != '\0')
79 ap++;
80 }
81
82 /* Insert dmp to list */
83 if ((dmp = dm_pdev_insert(argv[0])) == NULL)
84 return ENOENT;
85
86 /* Add dmp to device pdev list */
87 SLIST_INSERT_HEAD(&dmv->pdevs, dmp, next_pdev);
88
89 printf("Linear target init function called %s--%s!!\n",
90 argv[0], argv[1]);
91
92 if ((tlc = kmem_alloc(sizeof(struct target_linear_config), KM_NOSLEEP))
93 == NULL)
94 return 1;
95
96 tlc->pdev = dmp;
97 tlc->offset = 0; /* default settings */
98
99 /* Check user input if it is not leave offset as 0. */
100 tlc->offset = atoi(argv[1]);
101
102 *target_config = tlc;
103
104 dmv->dev_type = DM_LINEAR_DEV;
105
106 return 0;
107 }
108
109 /*
110 * Status routine is called to get params string, which is target
111 * specific. When dm_table_status_ioctl is called with flag
112 * DM_STATUS_TABLE_FLAG I have to sent params string back.
113 */
114 char *
115 dm_target_linear_status(void *target_config)
116 {
117 struct target_linear_config *tlc;
118 char *params;
119 uint32_t i;
120 uint32_t count;
121 size_t prm_len;
122
123
124 tlc = target_config;
125 prm_len = 0;
126 count = 0;
127
128 /* count number of chars in offset */
129 for(i = tlc->offset; i != 0; i /= 10)
130 count++;
131
132 printf("Linear target status function called\n");
133
134 /* length of name + count of chars + one space and null char */
135 prm_len = strlen(tlc->pdev->name) + count + 2;
136
137 if ((params = kmem_alloc(prm_len, KM_NOSLEEP)) == NULL)
138 return NULL;
139
140 printf("%s %"PRIu64, tlc->pdev->name, tlc->offset);
141 snprintf(params, prm_len,"%s %"PRIu64, tlc->pdev->name, tlc->offset);
142
143
144 return params;
145 }
146
147 /*
148 * Do IO operation, called from dmstrategy routine.
149 */
150 int
151 dm_target_linear_strategy(struct dm_table_entry *table_en, struct buf *bp)
152 {
153 struct target_linear_config *tlc;
154
155 tlc = table_en->target_config;
156
157 printf("Linear target read function called %" PRIu64 "!!\n",
158 tlc->offset);
159
160 bp->b_blkno += tlc->offset;
161
162 VOP_STRATEGY(tlc->pdev->pdev_vnode, bp);
163
164 return 0;
165
166 }
167
168 /*
169 * Destroy target specific data. Decrement table pdevs.
170 */
171 int
172 dm_target_linear_destroy(struct dm_table_entry *table_en)
173 {
174 struct target_linear_config *tlc;
175
176 /*
177 * Destroy function is called for evry target even if it
178 * doesn't have target_config.
179 */
180
181 if (table_en->target_config == NULL)
182 return 0;
183
184 tlc = table_en->target_config;
185
186 /* Remove pdev from device pdev list. */
187 SLIST_REMOVE(&table_en->dm_dev->pdevs, tlc->pdev, dm_pdev, next_pdev);
188
189 /* Decrement pdev ref counter if 0 remove it */
190 dm_pdev_decr(tlc->pdev);
191
192 kmem_free(table_en->target_config, sizeof(struct target_linear_config));
193
194 table_en->target_config = NULL;
195
196 return 0;
197 }
198
199 /*
200 * Register upcall device.
201 * Linear target doesn't need any upcall devices but other targets like
202 * mirror, snapshot, multipath, stripe will use this functionality.
203 */
204 int
205 dm_target_linear_upcall(struct dm_table_entry *table_en, struct buf *bp)
206 {
207
208 return 0;
209 }
210
211 /*
212 * Transform char s to uint64_t offset number.
213 */
214 uint64_t
215 atoi(const char *s)
216 {
217 uint64_t n;
218
219 n = 0;
220
221 while (*s != '\0') {
222
223 if (!isdigit(*s))
224 break;
225
226 n = (10 * n) + (*s - '0');
227 s++;
228 }
229
230 return n;
231 }
232