ccd.c revision 1.176 1 1.176 christos /* $NetBSD: ccd.c,v 1.176 2018/03/18 20:33:52 christos Exp $ */
2 1.11 thorpej
3 1.28 thorpej /*-
4 1.133 ad * Copyright (c) 1996, 1997, 1998, 1999, 2007, 2009 The NetBSD Foundation, Inc.
5 1.11 thorpej * All rights reserved.
6 1.11 thorpej *
7 1.28 thorpej * This code is derived from software contributed to The NetBSD Foundation
8 1.133 ad * by Jason R. Thorpe, and by Andrew Doran.
9 1.28 thorpej *
10 1.11 thorpej * Redistribution and use in source and binary forms, with or without
11 1.11 thorpej * modification, are permitted provided that the following conditions
12 1.11 thorpej * are met:
13 1.11 thorpej * 1. Redistributions of source code must retain the above copyright
14 1.11 thorpej * notice, this list of conditions and the following disclaimer.
15 1.11 thorpej * 2. Redistributions in binary form must reproduce the above copyright
16 1.11 thorpej * notice, this list of conditions and the following disclaimer in the
17 1.11 thorpej * documentation and/or other materials provided with the distribution.
18 1.11 thorpej *
19 1.28 thorpej * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 1.28 thorpej * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 1.28 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 1.45 jtc * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 1.45 jtc * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 1.28 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 1.28 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 1.28 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 1.28 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 1.28 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 1.28 thorpej * POSSIBILITY OF SUCH DAMAGE.
30 1.11 thorpej */
31 1.2 cgd
32 1.1 hpeyerl /*
33 1.138 rmind * Copyright (c) 1988 University of Utah.
34 1.3 hpeyerl * Copyright (c) 1990, 1993
35 1.3 hpeyerl * The Regents of the University of California. All rights reserved.
36 1.1 hpeyerl *
37 1.1 hpeyerl * This code is derived from software contributed to Berkeley by
38 1.1 hpeyerl * the Systems Programming Group of the University of Utah Computer
39 1.1 hpeyerl * Science Department.
40 1.1 hpeyerl *
41 1.1 hpeyerl * Redistribution and use in source and binary forms, with or without
42 1.1 hpeyerl * modification, are permitted provided that the following conditions
43 1.1 hpeyerl * are met:
44 1.1 hpeyerl * 1. Redistributions of source code must retain the above copyright
45 1.1 hpeyerl * notice, this list of conditions and the following disclaimer.
46 1.1 hpeyerl * 2. Redistributions in binary form must reproduce the above copyright
47 1.1 hpeyerl * notice, this list of conditions and the following disclaimer in the
48 1.1 hpeyerl * documentation and/or other materials provided with the distribution.
49 1.91 agc * 3. Neither the name of the University nor the names of its contributors
50 1.91 agc * may be used to endorse or promote products derived from this software
51 1.91 agc * without specific prior written permission.
52 1.91 agc *
53 1.91 agc * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
54 1.91 agc * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
55 1.91 agc * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
56 1.91 agc * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
57 1.91 agc * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
58 1.91 agc * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
59 1.91 agc * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
60 1.91 agc * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
61 1.91 agc * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
62 1.91 agc * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
63 1.91 agc * SUCH DAMAGE.
64 1.91 agc *
65 1.91 agc * from: Utah $Hdr: cd.c 1.6 90/11/28$
66 1.91 agc *
67 1.91 agc * @(#)cd.c 8.2 (Berkeley) 11/16/93
68 1.91 agc */
69 1.91 agc
70 1.91 agc /*
71 1.1 hpeyerl * "Concatenated" disk driver.
72 1.11 thorpej *
73 1.133 ad * Notes on concurrency:
74 1.133 ad *
75 1.133 ad * => sc_dvlock serializes access to the device nodes, excluding block I/O.
76 1.133 ad *
77 1.133 ad * => sc_iolock serializes access to (sc_flags & CCDF_INITED), disk stats,
78 1.133 ad * sc_stop, sc_bufq and b_resid from master buffers.
79 1.133 ad *
80 1.133 ad * => a combination of CCDF_INITED, sc_inflight, and sc_iolock is used to
81 1.133 ad * serialize I/O and configuration changes.
82 1.133 ad *
83 1.133 ad * => the in-core disk label does not change while the device is open.
84 1.133 ad *
85 1.133 ad * On memory consumption: ccd fans out I/O requests and so needs to
86 1.133 ad * allocate memory. If the system is desperately low on memory, we
87 1.133 ad * single thread I/O.
88 1.1 hpeyerl */
89 1.74 lukem
90 1.74 lukem #include <sys/cdefs.h>
91 1.176 christos __KERNEL_RCSID(0, "$NetBSD: ccd.c,v 1.176 2018/03/18 20:33:52 christos Exp $");
92 1.1 hpeyerl
93 1.1 hpeyerl #include <sys/param.h>
94 1.1 hpeyerl #include <sys/systm.h>
95 1.133 ad #include <sys/kernel.h>
96 1.3 hpeyerl #include <sys/proc.h>
97 1.1 hpeyerl #include <sys/errno.h>
98 1.1 hpeyerl #include <sys/buf.h>
99 1.133 ad #include <sys/kmem.h>
100 1.63 thorpej #include <sys/pool.h>
101 1.140 jruoho #include <sys/module.h>
102 1.11 thorpej #include <sys/namei.h>
103 1.3 hpeyerl #include <sys/stat.h>
104 1.3 hpeyerl #include <sys/ioctl.h>
105 1.3 hpeyerl #include <sys/disklabel.h>
106 1.11 thorpej #include <sys/device.h>
107 1.11 thorpej #include <sys/disk.h>
108 1.11 thorpej #include <sys/syslog.h>
109 1.3 hpeyerl #include <sys/fcntl.h>
110 1.11 thorpej #include <sys/vnode.h>
111 1.31 christos #include <sys/conf.h>
112 1.117 ad #include <sys/mutex.h>
113 1.56 thorpej #include <sys/queue.h>
114 1.110 elad #include <sys/kauth.h>
115 1.133 ad #include <sys/kthread.h>
116 1.133 ad #include <sys/bufq.h>
117 1.144 christos #include <sys/sysctl.h>
118 1.1 hpeyerl
119 1.135 uebayasi #include <uvm/uvm_extern.h>
120 1.135 uebayasi
121 1.1 hpeyerl #include <dev/ccdvar.h>
122 1.113 christos #include <dev/dkvar.h>
123 1.1 hpeyerl
124 1.149 hannken #include <miscfs/specfs/specdev.h> /* for v_rdev */
125 1.149 hannken
126 1.165 christos #include "ioconf.h"
127 1.165 christos
128 1.11 thorpej #if defined(CCDDEBUG) && !defined(DEBUG)
129 1.11 thorpej #define DEBUG
130 1.11 thorpej #endif
131 1.11 thorpej
132 1.1 hpeyerl #ifdef DEBUG
133 1.3 hpeyerl #define CCDB_FOLLOW 0x01
134 1.3 hpeyerl #define CCDB_INIT 0x02
135 1.3 hpeyerl #define CCDB_IO 0x04
136 1.11 thorpej #define CCDB_LABEL 0x08
137 1.11 thorpej #define CCDB_VNODE 0x10
138 1.24 thorpej int ccddebug = 0x00;
139 1.1 hpeyerl #endif
140 1.1 hpeyerl
141 1.6 cgd #define ccdunit(x) DISKUNIT(x)
142 1.6 cgd
143 1.6 cgd struct ccdbuf {
144 1.6 cgd struct buf cb_buf; /* new I/O buf */
145 1.6 cgd struct buf *cb_obp; /* ptr. to original I/O buf */
146 1.59 thorpej struct ccd_softc *cb_sc; /* pointer to ccd softc */
147 1.6 cgd int cb_comp; /* target component */
148 1.56 thorpej SIMPLEQ_ENTRY(ccdbuf) cb_q; /* fifo of component buffers */
149 1.38 thorpej };
150 1.24 thorpej
151 1.63 thorpej /* component buffer pool */
152 1.133 ad static pool_cache_t ccd_cache;
153 1.63 thorpej
154 1.133 ad #define CCD_GETBUF() pool_cache_get(ccd_cache, PR_WAITOK)
155 1.133 ad #define CCD_PUTBUF(cbp) pool_cache_put(ccd_cache, cbp)
156 1.1 hpeyerl
157 1.11 thorpej #define CCDLABELDEV(dev) \
158 1.11 thorpej (MAKEDISKDEV(major((dev)), ccdunit((dev)), RAW_PART))
159 1.1 hpeyerl
160 1.11 thorpej /* called by main() at boot time */
161 1.159 christos void ccddetach(void);
162 1.11 thorpej
163 1.11 thorpej /* called by biodone() at interrupt time */
164 1.97 thorpej static void ccdiodone(struct buf *);
165 1.11 thorpej
166 1.97 thorpej static void ccdinterleave(struct ccd_softc *);
167 1.97 thorpej static int ccdinit(struct ccd_softc *, char **, struct vnode **,
168 1.107 christos struct lwp *);
169 1.97 thorpej static struct ccdbuf *ccdbuffer(struct ccd_softc *, struct buf *,
170 1.118 christos daddr_t, void *, long);
171 1.97 thorpej static void ccdgetdefaultlabel(struct ccd_softc *, struct disklabel *);
172 1.97 thorpej static void ccdgetdisklabel(dev_t);
173 1.97 thorpej static void ccdmakedisklabel(struct ccd_softc *);
174 1.133 ad static void ccdstart(struct ccd_softc *);
175 1.133 ad static void ccdthread(void *);
176 1.97 thorpej
177 1.97 thorpej static dev_type_open(ccdopen);
178 1.97 thorpej static dev_type_close(ccdclose);
179 1.97 thorpej static dev_type_read(ccdread);
180 1.97 thorpej static dev_type_write(ccdwrite);
181 1.97 thorpej static dev_type_ioctl(ccdioctl);
182 1.97 thorpej static dev_type_strategy(ccdstrategy);
183 1.97 thorpej static dev_type_size(ccdsize);
184 1.78 gehenna
185 1.78 gehenna const struct bdevsw ccd_bdevsw = {
186 1.133 ad .d_open = ccdopen,
187 1.133 ad .d_close = ccdclose,
188 1.133 ad .d_strategy = ccdstrategy,
189 1.133 ad .d_ioctl = ccdioctl,
190 1.133 ad .d_dump = nodump,
191 1.133 ad .d_psize = ccdsize,
192 1.150 dholland .d_discard = nodiscard,
193 1.133 ad .d_flag = D_DISK | D_MPSAFE
194 1.78 gehenna };
195 1.78 gehenna
196 1.78 gehenna const struct cdevsw ccd_cdevsw = {
197 1.133 ad .d_open = ccdopen,
198 1.133 ad .d_close = ccdclose,
199 1.133 ad .d_read = ccdread,
200 1.133 ad .d_write = ccdwrite,
201 1.133 ad .d_ioctl = ccdioctl,
202 1.133 ad .d_stop = nostop,
203 1.133 ad .d_tty = notty,
204 1.133 ad .d_poll = nopoll,
205 1.133 ad .d_mmap = nommap,
206 1.133 ad .d_kqfilter = nokqfilter,
207 1.151 dholland .d_discard = nodiscard,
208 1.133 ad .d_flag = D_DISK | D_MPSAFE
209 1.78 gehenna };
210 1.3 hpeyerl
211 1.11 thorpej #ifdef DEBUG
212 1.97 thorpej static void printiinfo(struct ccdiinfo *);
213 1.11 thorpej #endif
214 1.11 thorpej
215 1.144 christos static LIST_HEAD(, ccd_softc) ccds = LIST_HEAD_INITIALIZER(ccds);
216 1.144 christos static kmutex_t ccd_lock;
217 1.144 christos
218 1.167 pgoyette #ifdef _MODULE
219 1.167 pgoyette static struct sysctllog *ccd_clog;
220 1.167 pgoyette #endif
221 1.167 pgoyette
222 1.167 pgoyette SYSCTL_SETUP_PROTO(sysctl_kern_ccd_setup);
223 1.167 pgoyette
224 1.144 christos static struct ccd_softc *
225 1.144 christos ccdcreate(int unit) {
226 1.144 christos struct ccd_softc *sc = kmem_zalloc(sizeof(*sc), KM_SLEEP);
227 1.172 chs
228 1.144 christos /* Initialize per-softc structures. */
229 1.144 christos snprintf(sc->sc_xname, sizeof(sc->sc_xname), "ccd%d", unit);
230 1.163 christos sc->sc_unit = unit;
231 1.144 christos mutex_init(&sc->sc_dvlock, MUTEX_DEFAULT, IPL_NONE);
232 1.144 christos sc->sc_iolock = mutex_obj_alloc(MUTEX_DEFAULT, IPL_NONE);
233 1.144 christos cv_init(&sc->sc_stop, "ccdstop");
234 1.144 christos cv_init(&sc->sc_push, "ccdthr");
235 1.144 christos disk_init(&sc->sc_dkdev, sc->sc_xname, NULL); /* XXX */
236 1.144 christos return sc;
237 1.144 christos }
238 1.144 christos
239 1.144 christos static void
240 1.144 christos ccddestroy(struct ccd_softc *sc) {
241 1.144 christos mutex_obj_free(sc->sc_iolock);
242 1.148 joerg mutex_exit(&sc->sc_dvlock);
243 1.144 christos mutex_destroy(&sc->sc_dvlock);
244 1.144 christos cv_destroy(&sc->sc_stop);
245 1.144 christos cv_destroy(&sc->sc_push);
246 1.144 christos disk_destroy(&sc->sc_dkdev);
247 1.144 christos kmem_free(sc, sizeof(*sc));
248 1.144 christos }
249 1.144 christos
250 1.144 christos static struct ccd_softc *
251 1.158 christos ccdget(int unit, int make) {
252 1.144 christos struct ccd_softc *sc;
253 1.144 christos if (unit < 0) {
254 1.144 christos #ifdef DIAGNOSTIC
255 1.144 christos panic("%s: unit %d!", __func__, unit);
256 1.144 christos #endif
257 1.144 christos return NULL;
258 1.144 christos }
259 1.144 christos mutex_enter(&ccd_lock);
260 1.144 christos LIST_FOREACH(sc, &ccds, sc_link) {
261 1.144 christos if (sc->sc_unit == unit) {
262 1.144 christos mutex_exit(&ccd_lock);
263 1.144 christos return sc;
264 1.144 christos }
265 1.144 christos }
266 1.144 christos mutex_exit(&ccd_lock);
267 1.158 christos if (!make)
268 1.158 christos return NULL;
269 1.144 christos if ((sc = ccdcreate(unit)) == NULL)
270 1.144 christos return NULL;
271 1.144 christos mutex_enter(&ccd_lock);
272 1.144 christos LIST_INSERT_HEAD(&ccds, sc, sc_link);
273 1.144 christos mutex_exit(&ccd_lock);
274 1.144 christos return sc;
275 1.144 christos }
276 1.144 christos
277 1.164 skrll static void
278 1.144 christos ccdput(struct ccd_softc *sc) {
279 1.144 christos mutex_enter(&ccd_lock);
280 1.144 christos LIST_REMOVE(sc, sc_link);
281 1.144 christos mutex_exit(&ccd_lock);
282 1.144 christos ccddestroy(sc);
283 1.144 christos }
284 1.1 hpeyerl
285 1.3 hpeyerl /*
286 1.11 thorpej * Called by main() during pseudo-device attachment. All we need
287 1.11 thorpej * to do is allocate enough space for devices to be configured later.
288 1.1 hpeyerl */
289 1.1 hpeyerl void
290 1.97 thorpej ccdattach(int num)
291 1.3 hpeyerl {
292 1.144 christos mutex_init(&ccd_lock, MUTEX_DEFAULT, IPL_NONE);
293 1.57 thorpej
294 1.63 thorpej /* Initialize the component buffer pool. */
295 1.133 ad ccd_cache = pool_cache_init(sizeof(struct ccdbuf), 0,
296 1.133 ad 0, 0, "ccdbuf", NULL, IPL_BIO, NULL, NULL, NULL);
297 1.1 hpeyerl }
298 1.1 hpeyerl
299 1.159 christos void
300 1.159 christos ccddetach(void)
301 1.159 christos {
302 1.159 christos pool_cache_destroy(ccd_cache);
303 1.159 christos mutex_destroy(&ccd_lock);
304 1.159 christos }
305 1.159 christos
306 1.11 thorpej static int
307 1.97 thorpej ccdinit(struct ccd_softc *cs, char **cpaths, struct vnode **vpp,
308 1.107 christos struct lwp *l)
309 1.1 hpeyerl {
310 1.68 augustss struct ccdcinfo *ci = NULL;
311 1.68 augustss int ix;
312 1.11 thorpej struct ccdgeom *ccg = &cs->sc_geom;
313 1.111 christos char *tmppath;
314 1.67 enami int error, path_alloced;
315 1.143 christos uint64_t psize, minsize;
316 1.143 christos unsigned secsize, maxsecsize;
317 1.156 jnemeth struct disk_geom *dg;
318 1.1 hpeyerl
319 1.1 hpeyerl #ifdef DEBUG
320 1.3 hpeyerl if (ccddebug & (CCDB_FOLLOW|CCDB_INIT))
321 1.59 thorpej printf("%s: ccdinit\n", cs->sc_xname);
322 1.1 hpeyerl #endif
323 1.11 thorpej
324 1.11 thorpej /* Allocate space for the component info. */
325 1.133 ad cs->sc_cinfo = kmem_alloc(cs->sc_nccdisks * sizeof(*cs->sc_cinfo),
326 1.133 ad KM_SLEEP);
327 1.133 ad tmppath = kmem_alloc(MAXPATHLEN, KM_SLEEP);
328 1.111 christos
329 1.57 thorpej cs->sc_size = 0;
330 1.57 thorpej
331 1.1 hpeyerl /*
332 1.1 hpeyerl * Verify that each component piece exists and record
333 1.1 hpeyerl * relevant information about it.
334 1.1 hpeyerl */
335 1.11 thorpej maxsecsize = 0;
336 1.1 hpeyerl minsize = 0;
337 1.67 enami for (ix = 0, path_alloced = 0; ix < cs->sc_nccdisks; ix++) {
338 1.1 hpeyerl ci = &cs->sc_cinfo[ix];
339 1.57 thorpej ci->ci_vp = vpp[ix];
340 1.11 thorpej
341 1.11 thorpej /*
342 1.11 thorpej * Copy in the pathname of the component.
343 1.11 thorpej */
344 1.141 joerg memset(tmppath, 0, MAXPATHLEN); /* sanity */
345 1.29 christos error = copyinstr(cpaths[ix], tmppath,
346 1.29 christos MAXPATHLEN, &ci->ci_pathlen);
347 1.133 ad if (ci->ci_pathlen == 0)
348 1.133 ad error = EINVAL;
349 1.29 christos if (error) {
350 1.11 thorpej #ifdef DEBUG
351 1.11 thorpej if (ccddebug & (CCDB_FOLLOW|CCDB_INIT))
352 1.35 christos printf("%s: can't copy path, error = %d\n",
353 1.23 thorpej cs->sc_xname, error);
354 1.11 thorpej #endif
355 1.67 enami goto out;
356 1.11 thorpej }
357 1.133 ad ci->ci_path = kmem_alloc(ci->ci_pathlen, KM_SLEEP);
358 1.72 thorpej memcpy(ci->ci_path, tmppath, ci->ci_pathlen);
359 1.67 enami path_alloced++;
360 1.11 thorpej
361 1.11 thorpej /*
362 1.11 thorpej * XXX: Cache the component's dev_t.
363 1.11 thorpej */
364 1.149 hannken ci->ci_dev = vpp[ix]->v_rdev;
365 1.11 thorpej
366 1.3 hpeyerl /*
367 1.11 thorpej * Get partition information for the component.
368 1.3 hpeyerl */
369 1.143 christos error = getdisksize(vpp[ix], &psize, &secsize);
370 1.29 christos if (error) {
371 1.11 thorpej #ifdef DEBUG
372 1.11 thorpej if (ccddebug & (CCDB_FOLLOW|CCDB_INIT))
373 1.143 christos printf("%s: %s: disksize failed, error = %d\n",
374 1.23 thorpej cs->sc_xname, ci->ci_path, error);
375 1.11 thorpej #endif
376 1.67 enami goto out;
377 1.11 thorpej }
378 1.69 enami
379 1.11 thorpej /*
380 1.11 thorpej * Calculate the size, truncating to an interleave
381 1.11 thorpej * boundary if necessary.
382 1.11 thorpej */
383 1.143 christos maxsecsize = secsize > maxsecsize ? secsize : maxsecsize;
384 1.1 hpeyerl if (cs->sc_ileave > 1)
385 1.143 christos psize -= psize % cs->sc_ileave;
386 1.11 thorpej
387 1.143 christos if (psize == 0) {
388 1.11 thorpej #ifdef DEBUG
389 1.11 thorpej if (ccddebug & (CCDB_FOLLOW|CCDB_INIT))
390 1.35 christos printf("%s: %s: size == 0\n",
391 1.23 thorpej cs->sc_xname, ci->ci_path);
392 1.11 thorpej #endif
393 1.67 enami error = ENODEV;
394 1.67 enami goto out;
395 1.3 hpeyerl }
396 1.11 thorpej
397 1.143 christos if (minsize == 0 || psize < minsize)
398 1.143 christos minsize = psize;
399 1.143 christos ci->ci_size = psize;
400 1.143 christos cs->sc_size += psize;
401 1.1 hpeyerl }
402 1.11 thorpej
403 1.11 thorpej /*
404 1.11 thorpej * Don't allow the interleave to be smaller than
405 1.11 thorpej * the biggest component sector.
406 1.11 thorpej */
407 1.11 thorpej if ((cs->sc_ileave > 0) &&
408 1.11 thorpej (cs->sc_ileave < (maxsecsize / DEV_BSIZE))) {
409 1.11 thorpej #ifdef DEBUG
410 1.11 thorpej if (ccddebug & (CCDB_FOLLOW|CCDB_INIT))
411 1.35 christos printf("%s: interleave must be at least %d\n",
412 1.23 thorpej cs->sc_xname, (maxsecsize / DEV_BSIZE));
413 1.11 thorpej #endif
414 1.67 enami error = EINVAL;
415 1.67 enami goto out;
416 1.11 thorpej }
417 1.11 thorpej
418 1.1 hpeyerl /*
419 1.1 hpeyerl * If uniform interleave is desired set all sizes to that of
420 1.1 hpeyerl * the smallest component.
421 1.1 hpeyerl */
422 1.57 thorpej if (cs->sc_flags & CCDF_UNIFORM) {
423 1.1 hpeyerl for (ci = cs->sc_cinfo;
424 1.1 hpeyerl ci < &cs->sc_cinfo[cs->sc_nccdisks]; ci++)
425 1.1 hpeyerl ci->ci_size = minsize;
426 1.24 thorpej
427 1.53 thorpej cs->sc_size = cs->sc_nccdisks * minsize;
428 1.1 hpeyerl }
429 1.11 thorpej
430 1.11 thorpej /*
431 1.11 thorpej * Construct the interleave table.
432 1.11 thorpej */
433 1.57 thorpej ccdinterleave(cs);
434 1.11 thorpej
435 1.1 hpeyerl /*
436 1.11 thorpej * Create pseudo-geometry based on 1MB cylinders. It's
437 1.11 thorpej * pretty close.
438 1.1 hpeyerl */
439 1.11 thorpej ccg->ccg_secsize = DEV_BSIZE;
440 1.19 thorpej ccg->ccg_ntracks = 1;
441 1.11 thorpej ccg->ccg_nsectors = 1024 * (1024 / ccg->ccg_secsize);
442 1.11 thorpej ccg->ccg_ncylinders = cs->sc_size / ccg->ccg_nsectors;
443 1.156 jnemeth
444 1.156 jnemeth dg = &cs->sc_dkdev.dk_geom;
445 1.156 jnemeth memset(dg, 0, sizeof(*dg));
446 1.158 christos dg->dg_secperunit = cs->sc_size;
447 1.158 christos dg->dg_secsize = ccg->ccg_secsize;
448 1.158 christos dg->dg_nsectors = ccg->ccg_nsectors;
449 1.158 christos dg->dg_ntracks = ccg->ccg_ntracks;
450 1.158 christos dg->dg_ncylinders = ccg->ccg_ncylinders;
451 1.164 skrll
452 1.152 sborrill if (cs->sc_ileave > 0)
453 1.152 sborrill aprint_normal("%s: Interleaving %d component%s "
454 1.152 sborrill "(%d block interleave)\n", cs->sc_xname,
455 1.152 sborrill cs->sc_nccdisks, (cs->sc_nccdisks != 0 ? "s" : ""),
456 1.152 sborrill cs->sc_ileave);
457 1.152 sborrill else
458 1.152 sborrill aprint_normal("%s: Concatenating %d component%s\n",
459 1.152 sborrill cs->sc_xname,
460 1.152 sborrill cs->sc_nccdisks, (cs->sc_nccdisks != 0 ? "s" : ""));
461 1.152 sborrill for (ix = 0; ix < cs->sc_nccdisks; ix++) {
462 1.152 sborrill ci = &cs->sc_cinfo[ix];
463 1.152 sborrill aprint_normal("%s: %s (%ju blocks)\n", cs->sc_xname,
464 1.152 sborrill ci->ci_path, (uintmax_t)ci->ci_size);
465 1.152 sborrill }
466 1.152 sborrill aprint_normal("%s: total %ju blocks\n", cs->sc_xname, cs->sc_size);
467 1.11 thorpej
468 1.133 ad /*
469 1.133 ad * Create thread to handle deferred I/O.
470 1.133 ad */
471 1.133 ad cs->sc_zap = false;
472 1.133 ad error = kthread_create(PRI_BIO, KTHREAD_MPSAFE, NULL, ccdthread,
473 1.133 ad cs, &cs->sc_thread, "%s", cs->sc_xname);
474 1.133 ad if (error) {
475 1.133 ad printf("ccdinit: can't create thread: %d\n", error);
476 1.133 ad goto out;
477 1.133 ad }
478 1.133 ad
479 1.133 ad /*
480 1.133 ad * Only now that everything is set up can we enable the device.
481 1.133 ad */
482 1.133 ad mutex_enter(cs->sc_iolock);
483 1.11 thorpej cs->sc_flags |= CCDF_INITED;
484 1.133 ad mutex_exit(cs->sc_iolock);
485 1.133 ad kmem_free(tmppath, MAXPATHLEN);
486 1.11 thorpej return (0);
487 1.67 enami
488 1.67 enami out:
489 1.133 ad for (ix = 0; ix < path_alloced; ix++) {
490 1.133 ad kmem_free(cs->sc_cinfo[ix].ci_path,
491 1.133 ad cs->sc_cinfo[ix].ci_pathlen);
492 1.133 ad }
493 1.133 ad kmem_free(cs->sc_cinfo, cs->sc_nccdisks * sizeof(struct ccdcinfo));
494 1.133 ad kmem_free(tmppath, MAXPATHLEN);
495 1.67 enami return (error);
496 1.1 hpeyerl }
497 1.1 hpeyerl
498 1.11 thorpej static void
499 1.97 thorpej ccdinterleave(struct ccd_softc *cs)
500 1.1 hpeyerl {
501 1.68 augustss struct ccdcinfo *ci, *smallci;
502 1.68 augustss struct ccdiinfo *ii;
503 1.68 augustss daddr_t bn, lbn;
504 1.68 augustss int ix;
505 1.1 hpeyerl u_long size;
506 1.1 hpeyerl
507 1.1 hpeyerl #ifdef DEBUG
508 1.3 hpeyerl if (ccddebug & CCDB_INIT)
509 1.35 christos printf("ccdinterleave(%p): ileave %d\n", cs, cs->sc_ileave);
510 1.1 hpeyerl #endif
511 1.1 hpeyerl /*
512 1.1 hpeyerl * Allocate an interleave table.
513 1.1 hpeyerl * Chances are this is too big, but we don't care.
514 1.1 hpeyerl */
515 1.1 hpeyerl size = (cs->sc_nccdisks + 1) * sizeof(struct ccdiinfo);
516 1.133 ad cs->sc_itable = kmem_zalloc(size, KM_SLEEP);
517 1.11 thorpej
518 1.1 hpeyerl /*
519 1.1 hpeyerl * Trivial case: no interleave (actually interleave of disk size).
520 1.11 thorpej * Each table entry represents a single component in its entirety.
521 1.1 hpeyerl */
522 1.1 hpeyerl if (cs->sc_ileave == 0) {
523 1.1 hpeyerl bn = 0;
524 1.1 hpeyerl ii = cs->sc_itable;
525 1.11 thorpej
526 1.1 hpeyerl for (ix = 0; ix < cs->sc_nccdisks; ix++) {
527 1.19 thorpej /* Allocate space for ii_index. */
528 1.133 ad ii->ii_indexsz = sizeof(int);
529 1.133 ad ii->ii_index = kmem_alloc(ii->ii_indexsz, KM_SLEEP);
530 1.1 hpeyerl ii->ii_ndisk = 1;
531 1.1 hpeyerl ii->ii_startblk = bn;
532 1.1 hpeyerl ii->ii_startoff = 0;
533 1.1 hpeyerl ii->ii_index[0] = ix;
534 1.1 hpeyerl bn += cs->sc_cinfo[ix].ci_size;
535 1.1 hpeyerl ii++;
536 1.1 hpeyerl }
537 1.1 hpeyerl ii->ii_ndisk = 0;
538 1.1 hpeyerl #ifdef DEBUG
539 1.3 hpeyerl if (ccddebug & CCDB_INIT)
540 1.1 hpeyerl printiinfo(cs->sc_itable);
541 1.1 hpeyerl #endif
542 1.11 thorpej return;
543 1.1 hpeyerl }
544 1.11 thorpej
545 1.1 hpeyerl /*
546 1.1 hpeyerl * The following isn't fast or pretty; it doesn't have to be.
547 1.1 hpeyerl */
548 1.1 hpeyerl size = 0;
549 1.1 hpeyerl bn = lbn = 0;
550 1.1 hpeyerl for (ii = cs->sc_itable; ; ii++) {
551 1.11 thorpej /* Allocate space for ii_index. */
552 1.133 ad ii->ii_indexsz = sizeof(int) * cs->sc_nccdisks;
553 1.133 ad ii->ii_index = kmem_alloc(ii->ii_indexsz, KM_SLEEP);
554 1.11 thorpej
555 1.1 hpeyerl /*
556 1.1 hpeyerl * Locate the smallest of the remaining components
557 1.1 hpeyerl */
558 1.1 hpeyerl smallci = NULL;
559 1.1 hpeyerl for (ci = cs->sc_cinfo;
560 1.1 hpeyerl ci < &cs->sc_cinfo[cs->sc_nccdisks]; ci++)
561 1.1 hpeyerl if (ci->ci_size > size &&
562 1.1 hpeyerl (smallci == NULL ||
563 1.1 hpeyerl ci->ci_size < smallci->ci_size))
564 1.1 hpeyerl smallci = ci;
565 1.11 thorpej
566 1.1 hpeyerl /*
567 1.1 hpeyerl * Nobody left, all done
568 1.1 hpeyerl */
569 1.1 hpeyerl if (smallci == NULL) {
570 1.1 hpeyerl ii->ii_ndisk = 0;
571 1.1 hpeyerl break;
572 1.1 hpeyerl }
573 1.11 thorpej
574 1.1 hpeyerl /*
575 1.1 hpeyerl * Record starting logical block and component offset
576 1.1 hpeyerl */
577 1.1 hpeyerl ii->ii_startblk = bn / cs->sc_ileave;
578 1.1 hpeyerl ii->ii_startoff = lbn;
579 1.11 thorpej
580 1.1 hpeyerl /*
581 1.1 hpeyerl * Determine how many disks take part in this interleave
582 1.1 hpeyerl * and record their indices.
583 1.1 hpeyerl */
584 1.1 hpeyerl ix = 0;
585 1.1 hpeyerl for (ci = cs->sc_cinfo;
586 1.1 hpeyerl ci < &cs->sc_cinfo[cs->sc_nccdisks]; ci++)
587 1.1 hpeyerl if (ci->ci_size >= smallci->ci_size)
588 1.1 hpeyerl ii->ii_index[ix++] = ci - cs->sc_cinfo;
589 1.1 hpeyerl ii->ii_ndisk = ix;
590 1.1 hpeyerl bn += ix * (smallci->ci_size - size);
591 1.1 hpeyerl lbn = smallci->ci_size / cs->sc_ileave;
592 1.1 hpeyerl size = smallci->ci_size;
593 1.1 hpeyerl }
594 1.1 hpeyerl #ifdef DEBUG
595 1.3 hpeyerl if (ccddebug & CCDB_INIT)
596 1.1 hpeyerl printiinfo(cs->sc_itable);
597 1.1 hpeyerl #endif
598 1.1 hpeyerl }
599 1.1 hpeyerl
600 1.11 thorpej /* ARGSUSED */
601 1.97 thorpej static int
602 1.116 christos ccdopen(dev_t dev, int flags, int fmt, struct lwp *l)
603 1.1 hpeyerl {
604 1.1 hpeyerl int unit = ccdunit(dev);
605 1.11 thorpej struct ccd_softc *cs;
606 1.11 thorpej struct disklabel *lp;
607 1.15 thorpej int error = 0, part, pmask;
608 1.1 hpeyerl
609 1.1 hpeyerl #ifdef DEBUG
610 1.3 hpeyerl if (ccddebug & CCDB_FOLLOW)
611 1.131 cegger printf("ccdopen(0x%"PRIx64", 0x%x)\n", dev, flags);
612 1.1 hpeyerl #endif
613 1.158 christos if ((cs = ccdget(unit, 1)) == NULL)
614 1.144 christos return ENXIO;
615 1.15 thorpej
616 1.133 ad mutex_enter(&cs->sc_dvlock);
617 1.15 thorpej
618 1.23 thorpej lp = cs->sc_dkdev.dk_label;
619 1.11 thorpej
620 1.11 thorpej part = DISKPART(dev);
621 1.11 thorpej pmask = (1 << part);
622 1.11 thorpej
623 1.15 thorpej /*
624 1.15 thorpej * If we're initialized, check to see if there are any other
625 1.15 thorpej * open partitions. If not, then it's safe to update
626 1.87 thorpej * the in-core disklabel. Only read the disklabel if it is
627 1.87 thorpej * not already valid.
628 1.15 thorpej */
629 1.87 thorpej if ((cs->sc_flags & (CCDF_INITED|CCDF_VLABEL)) == CCDF_INITED &&
630 1.87 thorpej cs->sc_dkdev.dk_openmask == 0)
631 1.15 thorpej ccdgetdisklabel(dev);
632 1.15 thorpej
633 1.11 thorpej /* Check that the partition exists. */
634 1.27 thorpej if (part != RAW_PART) {
635 1.27 thorpej if (((cs->sc_flags & CCDF_INITED) == 0) ||
636 1.37 thorpej ((part >= lp->d_npartitions) ||
637 1.27 thorpej (lp->d_partitions[part].p_fstype == FS_UNUSED))) {
638 1.27 thorpej error = ENXIO;
639 1.27 thorpej goto done;
640 1.27 thorpej }
641 1.15 thorpej }
642 1.11 thorpej
643 1.11 thorpej /* Prevent our unit from being unconfigured while open. */
644 1.11 thorpej switch (fmt) {
645 1.11 thorpej case S_IFCHR:
646 1.11 thorpej cs->sc_dkdev.dk_copenmask |= pmask;
647 1.11 thorpej break;
648 1.11 thorpej
649 1.11 thorpej case S_IFBLK:
650 1.11 thorpej cs->sc_dkdev.dk_bopenmask |= pmask;
651 1.11 thorpej break;
652 1.11 thorpej }
653 1.11 thorpej cs->sc_dkdev.dk_openmask =
654 1.11 thorpej cs->sc_dkdev.dk_copenmask | cs->sc_dkdev.dk_bopenmask;
655 1.11 thorpej
656 1.15 thorpej done:
657 1.133 ad mutex_exit(&cs->sc_dvlock);
658 1.33 thorpej return (error);
659 1.7 cgd }
660 1.7 cgd
661 1.11 thorpej /* ARGSUSED */
662 1.97 thorpej static int
663 1.116 christos ccdclose(dev_t dev, int flags, int fmt, struct lwp *l)
664 1.7 cgd {
665 1.11 thorpej int unit = ccdunit(dev);
666 1.11 thorpej struct ccd_softc *cs;
667 1.117 ad int part;
668 1.11 thorpej
669 1.7 cgd #ifdef DEBUG
670 1.7 cgd if (ccddebug & CCDB_FOLLOW)
671 1.131 cegger printf("ccdclose(0x%"PRIx64", 0x%x)\n", dev, flags);
672 1.7 cgd #endif
673 1.11 thorpej
674 1.158 christos if ((cs = ccdget(unit, 0)) == NULL)
675 1.144 christos return ENXIO;
676 1.15 thorpej
677 1.133 ad mutex_enter(&cs->sc_dvlock);
678 1.15 thorpej
679 1.11 thorpej part = DISKPART(dev);
680 1.11 thorpej
681 1.11 thorpej /* ...that much closer to allowing unconfiguration... */
682 1.11 thorpej switch (fmt) {
683 1.11 thorpej case S_IFCHR:
684 1.11 thorpej cs->sc_dkdev.dk_copenmask &= ~(1 << part);
685 1.11 thorpej break;
686 1.11 thorpej
687 1.11 thorpej case S_IFBLK:
688 1.11 thorpej cs->sc_dkdev.dk_bopenmask &= ~(1 << part);
689 1.11 thorpej break;
690 1.11 thorpej }
691 1.11 thorpej cs->sc_dkdev.dk_openmask =
692 1.11 thorpej cs->sc_dkdev.dk_copenmask | cs->sc_dkdev.dk_bopenmask;
693 1.11 thorpej
694 1.87 thorpej if (cs->sc_dkdev.dk_openmask == 0) {
695 1.87 thorpej if ((cs->sc_flags & CCDF_KLABEL) == 0)
696 1.87 thorpej cs->sc_flags &= ~CCDF_VLABEL;
697 1.87 thorpej }
698 1.87 thorpej
699 1.133 ad mutex_exit(&cs->sc_dvlock);
700 1.7 cgd return (0);
701 1.1 hpeyerl }
702 1.1 hpeyerl
703 1.133 ad static bool
704 1.133 ad ccdbackoff(struct ccd_softc *cs)
705 1.133 ad {
706 1.133 ad
707 1.133 ad /* XXX Arbitrary, should be a uvm call. */
708 1.133 ad return uvmexp.free < (uvmexp.freemin >> 1) &&
709 1.133 ad disk_isbusy(&cs->sc_dkdev);
710 1.133 ad }
711 1.133 ad
712 1.133 ad static void
713 1.133 ad ccdthread(void *cookie)
714 1.133 ad {
715 1.133 ad struct ccd_softc *cs;
716 1.133 ad
717 1.133 ad cs = cookie;
718 1.133 ad
719 1.133 ad #ifdef DEBUG
720 1.133 ad if (ccddebug & CCDB_FOLLOW)
721 1.133 ad printf("ccdthread: hello\n");
722 1.133 ad #endif
723 1.133 ad
724 1.133 ad mutex_enter(cs->sc_iolock);
725 1.133 ad while (__predict_true(!cs->sc_zap)) {
726 1.133 ad if (bufq_peek(cs->sc_bufq) == NULL) {
727 1.133 ad /* Nothing to do. */
728 1.133 ad cv_wait(&cs->sc_push, cs->sc_iolock);
729 1.133 ad continue;
730 1.133 ad }
731 1.133 ad if (ccdbackoff(cs)) {
732 1.133 ad /* Wait for memory to become available. */
733 1.133 ad (void)cv_timedwait(&cs->sc_push, cs->sc_iolock, 1);
734 1.133 ad continue;
735 1.133 ad }
736 1.133 ad #ifdef DEBUG
737 1.133 ad if (ccddebug & CCDB_FOLLOW)
738 1.133 ad printf("ccdthread: dispatching I/O\n");
739 1.133 ad #endif
740 1.133 ad ccdstart(cs);
741 1.133 ad mutex_enter(cs->sc_iolock);
742 1.133 ad }
743 1.133 ad cs->sc_thread = NULL;
744 1.133 ad mutex_exit(cs->sc_iolock);
745 1.133 ad #ifdef DEBUG
746 1.133 ad if (ccddebug & CCDB_FOLLOW)
747 1.133 ad printf("ccdthread: goodbye\n");
748 1.133 ad #endif
749 1.133 ad kthread_exit(0);
750 1.133 ad }
751 1.133 ad
752 1.97 thorpej static void
753 1.97 thorpej ccdstrategy(struct buf *bp)
754 1.1 hpeyerl {
755 1.68 augustss int unit = ccdunit(bp->b_dev);
756 1.144 christos struct ccd_softc *cs;
757 1.158 christos if ((cs = ccdget(unit, 0)) == NULL)
758 1.144 christos return;
759 1.133 ad
760 1.133 ad /* Must be open or reading label. */
761 1.133 ad KASSERT(cs->sc_dkdev.dk_openmask != 0 ||
762 1.133 ad (cs->sc_flags & CCDF_RLABEL) != 0);
763 1.133 ad
764 1.133 ad mutex_enter(cs->sc_iolock);
765 1.133 ad /* Synchronize with device init/uninit. */
766 1.133 ad if (__predict_false((cs->sc_flags & CCDF_INITED) == 0)) {
767 1.133 ad mutex_exit(cs->sc_iolock);
768 1.133 ad #ifdef DEBUG
769 1.133 ad if (ccddebug & CCDB_FOLLOW)
770 1.133 ad printf("ccdstrategy: unit %d: not inited\n", unit);
771 1.133 ad #endif
772 1.133 ad bp->b_error = ENXIO;
773 1.133 ad bp->b_resid = bp->b_bcount;
774 1.133 ad biodone(bp);
775 1.133 ad return;
776 1.133 ad }
777 1.133 ad
778 1.133 ad /* Defer to thread if system is low on memory. */
779 1.133 ad bufq_put(cs->sc_bufq, bp);
780 1.133 ad if (__predict_false(ccdbackoff(cs))) {
781 1.133 ad mutex_exit(cs->sc_iolock);
782 1.133 ad #ifdef DEBUG
783 1.133 ad if (ccddebug & CCDB_FOLLOW)
784 1.133 ad printf("ccdstrategy: holding off on I/O\n");
785 1.133 ad #endif
786 1.133 ad return;
787 1.133 ad }
788 1.133 ad ccdstart(cs);
789 1.133 ad }
790 1.133 ad
791 1.133 ad static void
792 1.133 ad ccdstart(struct ccd_softc *cs)
793 1.133 ad {
794 1.88 thorpej daddr_t blkno;
795 1.11 thorpej int wlabel;
796 1.15 thorpej struct disklabel *lp;
797 1.133 ad long bcount, rcount;
798 1.133 ad struct ccdbuf *cbp;
799 1.133 ad char *addr;
800 1.133 ad daddr_t bn;
801 1.133 ad vnode_t *vp;
802 1.133 ad buf_t *bp;
803 1.133 ad
804 1.133 ad KASSERT(mutex_owned(cs->sc_iolock));
805 1.133 ad
806 1.133 ad bp = bufq_get(cs->sc_bufq);
807 1.133 ad KASSERT(bp != NULL);
808 1.1 hpeyerl
809 1.169 mlelstv disk_busy(&cs->sc_dkdev);
810 1.169 mlelstv
811 1.1 hpeyerl #ifdef DEBUG
812 1.3 hpeyerl if (ccddebug & CCDB_FOLLOW)
813 1.133 ad printf("ccdstart(%s, %p)\n", cs->sc_xname, bp);
814 1.59 thorpej #endif
815 1.11 thorpej
816 1.11 thorpej /* If it's a nil transfer, wake up the top half now. */
817 1.11 thorpej if (bp->b_bcount == 0)
818 1.11 thorpej goto done;
819 1.11 thorpej
820 1.23 thorpej lp = cs->sc_dkdev.dk_label;
821 1.15 thorpej
822 1.11 thorpej /*
823 1.17 thorpej * Do bounds checking and adjust transfer. If there's an
824 1.88 thorpej * error, the bounds check will flag that for us. Convert
825 1.88 thorpej * the partition relative block number to an absolute.
826 1.11 thorpej */
827 1.88 thorpej blkno = bp->b_blkno;
828 1.11 thorpej wlabel = cs->sc_flags & (CCDF_WLABEL|CCDF_LABELLING);
829 1.88 thorpej if (DISKPART(bp->b_dev) != RAW_PART) {
830 1.86 thorpej if (bounds_check_with_label(&cs->sc_dkdev, bp, wlabel) <= 0)
831 1.1 hpeyerl goto done;
832 1.88 thorpej blkno += lp->d_partitions[DISKPART(bp->b_dev)].p_offset;
833 1.88 thorpej }
834 1.133 ad mutex_exit(cs->sc_iolock);
835 1.88 thorpej bp->b_rawblkno = blkno;
836 1.11 thorpej
837 1.133 ad /* Allocate the component buffers and start I/O! */
838 1.133 ad bp->b_resid = bp->b_bcount;
839 1.133 ad bn = bp->b_rawblkno;
840 1.133 ad addr = bp->b_data;
841 1.133 ad for (bcount = bp->b_bcount; bcount > 0; bcount -= rcount) {
842 1.133 ad cbp = ccdbuffer(cs, bp, bn, addr, bcount);
843 1.133 ad rcount = cbp->cb_buf.b_bcount;
844 1.133 ad bn += btodb(rcount);
845 1.133 ad addr += rcount;
846 1.133 ad vp = cbp->cb_buf.b_vp;
847 1.133 ad if ((cbp->cb_buf.b_flags & B_READ) == 0) {
848 1.139 rmind mutex_enter(vp->v_interlock);
849 1.133 ad vp->v_numoutput++;
850 1.139 rmind mutex_exit(vp->v_interlock);
851 1.133 ad }
852 1.133 ad (void)VOP_STRATEGY(vp, &cbp->cb_buf);
853 1.133 ad }
854 1.1 hpeyerl return;
855 1.88 thorpej
856 1.88 thorpej done:
857 1.133 ad disk_unbusy(&cs->sc_dkdev, 0, 0);
858 1.133 ad cv_broadcast(&cs->sc_stop);
859 1.133 ad cv_broadcast(&cs->sc_push);
860 1.133 ad mutex_exit(cs->sc_iolock);
861 1.88 thorpej bp->b_resid = bp->b_bcount;
862 1.1 hpeyerl biodone(bp);
863 1.1 hpeyerl }
864 1.1 hpeyerl
865 1.1 hpeyerl /*
866 1.1 hpeyerl * Build a component buffer header.
867 1.1 hpeyerl */
868 1.55 thorpej static struct ccdbuf *
869 1.118 christos ccdbuffer(struct ccd_softc *cs, struct buf *bp, daddr_t bn, void *addr,
870 1.97 thorpej long bcount)
871 1.1 hpeyerl {
872 1.68 augustss struct ccdcinfo *ci;
873 1.68 augustss struct ccdbuf *cbp;
874 1.68 augustss daddr_t cbn, cboff;
875 1.68 augustss u_int64_t cbc;
876 1.36 thorpej int ccdisk;
877 1.1 hpeyerl
878 1.1 hpeyerl #ifdef DEBUG
879 1.3 hpeyerl if (ccddebug & CCDB_IO)
880 1.81 kleink printf("ccdbuffer(%p, %p, %" PRId64 ", %p, %ld)\n",
881 1.1 hpeyerl cs, bp, bn, addr, bcount);
882 1.1 hpeyerl #endif
883 1.1 hpeyerl /*
884 1.1 hpeyerl * Determine which component bn falls in.
885 1.1 hpeyerl */
886 1.1 hpeyerl cbn = bn;
887 1.1 hpeyerl cboff = 0;
888 1.11 thorpej
889 1.1 hpeyerl /*
890 1.1 hpeyerl * Serially concatenated
891 1.1 hpeyerl */
892 1.1 hpeyerl if (cs->sc_ileave == 0) {
893 1.68 augustss daddr_t sblk;
894 1.1 hpeyerl
895 1.1 hpeyerl sblk = 0;
896 1.36 thorpej for (ccdisk = 0, ci = &cs->sc_cinfo[ccdisk];
897 1.36 thorpej cbn >= sblk + ci->ci_size;
898 1.36 thorpej ccdisk++, ci = &cs->sc_cinfo[ccdisk])
899 1.1 hpeyerl sblk += ci->ci_size;
900 1.1 hpeyerl cbn -= sblk;
901 1.1 hpeyerl }
902 1.1 hpeyerl /*
903 1.1 hpeyerl * Interleaved
904 1.1 hpeyerl */
905 1.1 hpeyerl else {
906 1.68 augustss struct ccdiinfo *ii;
907 1.36 thorpej int off;
908 1.1 hpeyerl
909 1.1 hpeyerl cboff = cbn % cs->sc_ileave;
910 1.1 hpeyerl cbn /= cs->sc_ileave;
911 1.1 hpeyerl for (ii = cs->sc_itable; ii->ii_ndisk; ii++)
912 1.1 hpeyerl if (ii->ii_startblk > cbn)
913 1.1 hpeyerl break;
914 1.1 hpeyerl ii--;
915 1.1 hpeyerl off = cbn - ii->ii_startblk;
916 1.1 hpeyerl if (ii->ii_ndisk == 1) {
917 1.1 hpeyerl ccdisk = ii->ii_index[0];
918 1.1 hpeyerl cbn = ii->ii_startoff + off;
919 1.1 hpeyerl } else {
920 1.53 thorpej ccdisk = ii->ii_index[off % ii->ii_ndisk];
921 1.53 thorpej cbn = ii->ii_startoff + off / ii->ii_ndisk;
922 1.1 hpeyerl }
923 1.1 hpeyerl cbn *= cs->sc_ileave;
924 1.1 hpeyerl ci = &cs->sc_cinfo[ccdisk];
925 1.1 hpeyerl }
926 1.11 thorpej
927 1.1 hpeyerl /*
928 1.1 hpeyerl * Fill in the component buf structure.
929 1.1 hpeyerl */
930 1.63 thorpej cbp = CCD_GETBUF();
931 1.133 ad KASSERT(cbp != NULL);
932 1.126 ad buf_init(&cbp->cb_buf);
933 1.126 ad cbp->cb_buf.b_flags = bp->b_flags;
934 1.126 ad cbp->cb_buf.b_oflags = bp->b_oflags;
935 1.126 ad cbp->cb_buf.b_cflags = bp->b_cflags;
936 1.29 christos cbp->cb_buf.b_iodone = ccdiodone;
937 1.6 cgd cbp->cb_buf.b_proc = bp->b_proc;
938 1.95 hannken cbp->cb_buf.b_dev = ci->ci_dev;
939 1.6 cgd cbp->cb_buf.b_blkno = cbn + cboff;
940 1.6 cgd cbp->cb_buf.b_data = addr;
941 1.11 thorpej cbp->cb_buf.b_vp = ci->ci_vp;
942 1.139 rmind cbp->cb_buf.b_objlock = ci->ci_vp->v_interlock;
943 1.1 hpeyerl if (cs->sc_ileave == 0)
944 1.50 thorpej cbc = dbtob((u_int64_t)(ci->ci_size - cbn));
945 1.1 hpeyerl else
946 1.50 thorpej cbc = dbtob((u_int64_t)(cs->sc_ileave - cboff));
947 1.50 thorpej cbp->cb_buf.b_bcount = cbc < bcount ? cbc : bcount;
948 1.6 cgd
949 1.1 hpeyerl /*
950 1.6 cgd * context for ccdiodone
951 1.1 hpeyerl */
952 1.6 cgd cbp->cb_obp = bp;
953 1.59 thorpej cbp->cb_sc = cs;
954 1.36 thorpej cbp->cb_comp = ccdisk;
955 1.6 cgd
956 1.94 yamt BIO_COPYPRIO(&cbp->cb_buf, bp);
957 1.94 yamt
958 1.1 hpeyerl #ifdef DEBUG
959 1.3 hpeyerl if (ccddebug & CCDB_IO)
960 1.131 cegger printf(" dev 0x%"PRIx64"(u%lu): cbp %p bn %" PRId64 " addr %p"
961 1.99 yamt " bcnt %d\n",
962 1.62 mjacob ci->ci_dev, (unsigned long) (ci-cs->sc_cinfo), cbp,
963 1.62 mjacob cbp->cb_buf.b_blkno, cbp->cb_buf.b_data,
964 1.62 mjacob cbp->cb_buf.b_bcount);
965 1.1 hpeyerl #endif
966 1.55 thorpej
967 1.55 thorpej return (cbp);
968 1.1 hpeyerl }
969 1.1 hpeyerl
970 1.1 hpeyerl /*
971 1.11 thorpej * Called at interrupt time.
972 1.1 hpeyerl * Mark the component as done and if all components are done,
973 1.1 hpeyerl * take a ccd interrupt.
974 1.1 hpeyerl */
975 1.97 thorpej static void
976 1.97 thorpej ccdiodone(struct buf *vbp)
977 1.1 hpeyerl {
978 1.29 christos struct ccdbuf *cbp = (struct ccdbuf *) vbp;
979 1.59 thorpej struct buf *bp = cbp->cb_obp;
980 1.59 thorpej struct ccd_softc *cs = cbp->cb_sc;
981 1.133 ad int count;
982 1.1 hpeyerl
983 1.1 hpeyerl #ifdef DEBUG
984 1.3 hpeyerl if (ccddebug & CCDB_FOLLOW)
985 1.35 christos printf("ccdiodone(%p)\n", cbp);
986 1.3 hpeyerl if (ccddebug & CCDB_IO) {
987 1.99 yamt printf("ccdiodone: bp %p bcount %d resid %d\n",
988 1.53 thorpej bp, bp->b_bcount, bp->b_resid);
989 1.131 cegger printf(" dev 0x%"PRIx64"(u%d), cbp %p bn %" PRId64 " addr %p"
990 1.99 yamt " bcnt %d\n",
991 1.6 cgd cbp->cb_buf.b_dev, cbp->cb_comp, cbp,
992 1.6 cgd cbp->cb_buf.b_blkno, cbp->cb_buf.b_data,
993 1.6 cgd cbp->cb_buf.b_bcount);
994 1.1 hpeyerl }
995 1.1 hpeyerl #endif
996 1.1 hpeyerl
997 1.122 ad if (cbp->cb_buf.b_error != 0) {
998 1.122 ad bp->b_error = cbp->cb_buf.b_error;
999 1.53 thorpej printf("%s: error %d on component %d\n",
1000 1.53 thorpej cs->sc_xname, bp->b_error, cbp->cb_comp);
1001 1.1 hpeyerl }
1002 1.6 cgd count = cbp->cb_buf.b_bcount;
1003 1.126 ad buf_destroy(&cbp->cb_buf);
1004 1.63 thorpej CCD_PUTBUF(cbp);
1005 1.1 hpeyerl
1006 1.1 hpeyerl /*
1007 1.1 hpeyerl * If all done, "interrupt".
1008 1.53 thorpej */
1009 1.133 ad mutex_enter(cs->sc_iolock);
1010 1.53 thorpej bp->b_resid -= count;
1011 1.53 thorpej if (bp->b_resid < 0)
1012 1.53 thorpej panic("ccdiodone: count");
1013 1.133 ad if (bp->b_resid == 0) {
1014 1.133 ad /*
1015 1.133 ad * Request is done for better or worse, wakeup the top half.
1016 1.133 ad */
1017 1.133 ad if (bp->b_error != 0)
1018 1.133 ad bp->b_resid = bp->b_bcount;
1019 1.133 ad disk_unbusy(&cs->sc_dkdev, (bp->b_bcount - bp->b_resid),
1020 1.133 ad (bp->b_flags & B_READ));
1021 1.133 ad if (!disk_isbusy(&cs->sc_dkdev)) {
1022 1.133 ad if (bufq_peek(cs->sc_bufq) != NULL) {
1023 1.133 ad cv_broadcast(&cs->sc_push);
1024 1.133 ad }
1025 1.133 ad cv_broadcast(&cs->sc_stop);
1026 1.133 ad }
1027 1.133 ad mutex_exit(cs->sc_iolock);
1028 1.133 ad biodone(bp);
1029 1.133 ad } else
1030 1.133 ad mutex_exit(cs->sc_iolock);
1031 1.1 hpeyerl }
1032 1.1 hpeyerl
1033 1.11 thorpej /* ARGSUSED */
1034 1.97 thorpej static int
1035 1.116 christos ccdread(dev_t dev, struct uio *uio, int flags)
1036 1.3 hpeyerl {
1037 1.11 thorpej int unit = ccdunit(dev);
1038 1.11 thorpej struct ccd_softc *cs;
1039 1.3 hpeyerl
1040 1.3 hpeyerl #ifdef DEBUG
1041 1.3 hpeyerl if (ccddebug & CCDB_FOLLOW)
1042 1.131 cegger printf("ccdread(0x%"PRIx64", %p)\n", dev, uio);
1043 1.3 hpeyerl #endif
1044 1.158 christos if ((cs = ccdget(unit, 0)) == NULL)
1045 1.144 christos return 0;
1046 1.11 thorpej
1047 1.133 ad /* Unlocked advisory check, ccdstrategy check is synchronous. */
1048 1.11 thorpej if ((cs->sc_flags & CCDF_INITED) == 0)
1049 1.11 thorpej return (ENXIO);
1050 1.11 thorpej
1051 1.10 mycroft return (physio(ccdstrategy, NULL, dev, B_READ, minphys, uio));
1052 1.3 hpeyerl }
1053 1.3 hpeyerl
1054 1.11 thorpej /* ARGSUSED */
1055 1.97 thorpej static int
1056 1.116 christos ccdwrite(dev_t dev, struct uio *uio, int flags)
1057 1.3 hpeyerl {
1058 1.11 thorpej int unit = ccdunit(dev);
1059 1.11 thorpej struct ccd_softc *cs;
1060 1.3 hpeyerl
1061 1.3 hpeyerl #ifdef DEBUG
1062 1.3 hpeyerl if (ccddebug & CCDB_FOLLOW)
1063 1.131 cegger printf("ccdwrite(0x%"PRIx64", %p)\n", dev, uio);
1064 1.3 hpeyerl #endif
1065 1.158 christos if ((cs = ccdget(unit, 0)) == NULL)
1066 1.144 christos return ENOENT;
1067 1.11 thorpej
1068 1.133 ad /* Unlocked advisory check, ccdstrategy check is synchronous. */
1069 1.11 thorpej if ((cs->sc_flags & CCDF_INITED) == 0)
1070 1.11 thorpej return (ENXIO);
1071 1.11 thorpej
1072 1.10 mycroft return (physio(ccdstrategy, NULL, dev, B_WRITE, minphys, uio));
1073 1.3 hpeyerl }
1074 1.3 hpeyerl
1075 1.176 christos int (*compat_ccd_ioctl_60)(dev_t, u_long, void *, int, struct lwp *,
1076 1.176 christos int (*)(dev_t, u_long, void *, int, struct lwp *)) = (void *)enosys;
1077 1.176 christos
1078 1.97 thorpej static int
1079 1.118 christos ccdioctl(dev_t dev, u_long cmd, void *data, int flag, struct lwp *l)
1080 1.1 hpeyerl {
1081 1.11 thorpej int unit = ccdunit(dev);
1082 1.133 ad int i, j, lookedup = 0, error = 0;
1083 1.158 christos int part, pmask, make;
1084 1.11 thorpej struct ccd_softc *cs;
1085 1.11 thorpej struct ccd_ioctl *ccio = (struct ccd_ioctl *)data;
1086 1.110 elad kauth_cred_t uc;
1087 1.11 thorpej char **cpp;
1088 1.136 dholland struct pathbuf *pb;
1089 1.11 thorpej struct vnode **vpp;
1090 1.70 fvdl #ifdef __HAVE_OLD_DISKLABEL
1091 1.70 fvdl struct disklabel newlabel;
1092 1.70 fvdl #endif
1093 1.11 thorpej
1094 1.158 christos switch (cmd) {
1095 1.158 christos case CCDIOCSET:
1096 1.158 christos make = 1;
1097 1.158 christos break;
1098 1.158 christos default:
1099 1.176 christos if ((*compat_ccd_ioctl_60)(0, cmd, NULL, 0, NULL, NULL) == 0)
1100 1.176 christos make = 1;
1101 1.176 christos else
1102 1.176 christos make = 0;
1103 1.158 christos break;
1104 1.158 christos }
1105 1.158 christos
1106 1.158 christos if ((cs = ccdget(unit, make)) == NULL)
1107 1.144 christos return ENOENT;
1108 1.133 ad uc = kauth_cred_get();
1109 1.109 jld
1110 1.176 christos error = (*compat_ccd_ioctl_60)(dev, cmd, data, flag, l, ccdioctl);
1111 1.176 christos if (error != ENOSYS)
1112 1.152 sborrill return error;
1113 1.152 sborrill
1114 1.41 thorpej /* Must be open for writes for these commands... */
1115 1.41 thorpej switch (cmd) {
1116 1.41 thorpej case CCDIOCSET:
1117 1.41 thorpej case CCDIOCCLR:
1118 1.41 thorpej case DIOCSDINFO:
1119 1.41 thorpej case DIOCWDINFO:
1120 1.157 mlelstv case DIOCCACHESYNC:
1121 1.157 mlelstv case DIOCAWEDGE:
1122 1.157 mlelstv case DIOCDWEDGE:
1123 1.157 mlelstv case DIOCMWEDGES:
1124 1.70 fvdl #ifdef __HAVE_OLD_DISKLABEL
1125 1.70 fvdl case ODIOCSDINFO:
1126 1.70 fvdl case ODIOCWDINFO:
1127 1.70 fvdl #endif
1128 1.87 thorpej case DIOCKLABEL:
1129 1.41 thorpej case DIOCWLABEL:
1130 1.41 thorpej if ((flag & FWRITE) == 0)
1131 1.41 thorpej return (EBADF);
1132 1.41 thorpej }
1133 1.41 thorpej
1134 1.133 ad mutex_enter(&cs->sc_dvlock);
1135 1.57 thorpej
1136 1.41 thorpej /* Must be initialized for these... */
1137 1.41 thorpej switch (cmd) {
1138 1.41 thorpej case CCDIOCCLR:
1139 1.42 kleink case DIOCGDINFO:
1140 1.170 jdolecek case DIOCGSTRATEGY:
1141 1.170 jdolecek case DIOCGCACHE:
1142 1.100 thorpej case DIOCCACHESYNC:
1143 1.157 mlelstv case DIOCAWEDGE:
1144 1.157 mlelstv case DIOCDWEDGE:
1145 1.157 mlelstv case DIOCLWEDGES:
1146 1.157 mlelstv case DIOCMWEDGES:
1147 1.42 kleink case DIOCSDINFO:
1148 1.42 kleink case DIOCWDINFO:
1149 1.166 christos case DIOCGPARTINFO:
1150 1.41 thorpej case DIOCWLABEL:
1151 1.87 thorpej case DIOCKLABEL:
1152 1.44 thorpej case DIOCGDEFLABEL:
1153 1.70 fvdl #ifdef __HAVE_OLD_DISKLABEL
1154 1.70 fvdl case ODIOCGDINFO:
1155 1.70 fvdl case ODIOCSDINFO:
1156 1.70 fvdl case ODIOCWDINFO:
1157 1.70 fvdl case ODIOCGDEFLABEL:
1158 1.70 fvdl #endif
1159 1.57 thorpej if ((cs->sc_flags & CCDF_INITED) == 0) {
1160 1.57 thorpej error = ENXIO;
1161 1.57 thorpej goto out;
1162 1.57 thorpej }
1163 1.41 thorpej }
1164 1.41 thorpej
1165 1.164 skrll error = disk_ioctl(&cs->sc_dkdev, dev, cmd, data, flag, l);
1166 1.155 christos if (error != EPASSTHROUGH)
1167 1.155 christos goto out;
1168 1.155 christos
1169 1.157 mlelstv error = 0;
1170 1.11 thorpej switch (cmd) {
1171 1.11 thorpej case CCDIOCSET:
1172 1.57 thorpej if (cs->sc_flags & CCDF_INITED) {
1173 1.57 thorpej error = EBUSY;
1174 1.57 thorpej goto out;
1175 1.57 thorpej }
1176 1.54 thorpej
1177 1.54 thorpej /* Validate the flags. */
1178 1.57 thorpej if ((ccio->ccio_flags & CCDF_USERMASK) != ccio->ccio_flags) {
1179 1.57 thorpej error = EINVAL;
1180 1.57 thorpej goto out;
1181 1.57 thorpej }
1182 1.15 thorpej
1183 1.133 ad if (ccio->ccio_ndisks > CCD_MAXNDISKS ||
1184 1.133 ad ccio->ccio_ndisks == 0) {
1185 1.73 jdolecek error = EINVAL;
1186 1.73 jdolecek goto out;
1187 1.73 jdolecek }
1188 1.102 perry
1189 1.11 thorpej /* Fill in some important bits. */
1190 1.57 thorpej cs->sc_ileave = ccio->ccio_ileave;
1191 1.57 thorpej cs->sc_nccdisks = ccio->ccio_ndisks;
1192 1.57 thorpej cs->sc_flags = ccio->ccio_flags & CCDF_USERMASK;
1193 1.11 thorpej
1194 1.11 thorpej /*
1195 1.11 thorpej * Allocate space for and copy in the array of
1196 1.152 sborrill * component pathnames and device numbers.
1197 1.11 thorpej */
1198 1.133 ad cpp = kmem_alloc(ccio->ccio_ndisks * sizeof(*cpp), KM_SLEEP);
1199 1.133 ad vpp = kmem_alloc(ccio->ccio_ndisks * sizeof(*vpp), KM_SLEEP);
1200 1.84 dsl error = copyin(ccio->ccio_disks, cpp,
1201 1.133 ad ccio->ccio_ndisks * sizeof(*cpp));
1202 1.11 thorpej if (error) {
1203 1.133 ad kmem_free(vpp, ccio->ccio_ndisks * sizeof(*vpp));
1204 1.133 ad kmem_free(cpp, ccio->ccio_ndisks * sizeof(*cpp));
1205 1.57 thorpej goto out;
1206 1.11 thorpej }
1207 1.11 thorpej
1208 1.11 thorpej #ifdef DEBUG
1209 1.11 thorpej if (ccddebug & CCDB_INIT)
1210 1.11 thorpej for (i = 0; i < ccio->ccio_ndisks; ++i)
1211 1.104 christos printf("ccdioctl: component %d: %p\n",
1212 1.11 thorpej i, cpp[i]);
1213 1.11 thorpej #endif
1214 1.11 thorpej
1215 1.11 thorpej for (i = 0; i < ccio->ccio_ndisks; ++i) {
1216 1.11 thorpej #ifdef DEBUG
1217 1.11 thorpej if (ccddebug & CCDB_INIT)
1218 1.35 christos printf("ccdioctl: lookedup = %d\n", lookedup);
1219 1.11 thorpej #endif
1220 1.136 dholland error = pathbuf_copyin(cpp[i], &pb);
1221 1.137 dholland if (error == 0) {
1222 1.137 dholland error = dk_lookup(pb, l, &vpp[i]);
1223 1.136 dholland }
1224 1.136 dholland pathbuf_destroy(pb);
1225 1.136 dholland if (error != 0) {
1226 1.11 thorpej for (j = 0; j < lookedup; ++j)
1227 1.12 thorpej (void)vn_close(vpp[j], FREAD|FWRITE,
1228 1.128 ad uc);
1229 1.133 ad kmem_free(vpp, ccio->ccio_ndisks *
1230 1.133 ad sizeof(*vpp));
1231 1.133 ad kmem_free(cpp, ccio->ccio_ndisks *
1232 1.133 ad sizeof(*cpp));
1233 1.57 thorpej goto out;
1234 1.11 thorpej }
1235 1.11 thorpej ++lookedup;
1236 1.11 thorpej }
1237 1.11 thorpej
1238 1.133 ad /* Attach the disk. */
1239 1.133 ad disk_attach(&cs->sc_dkdev);
1240 1.133 ad bufq_alloc(&cs->sc_bufq, "fcfs", 0);
1241 1.133 ad
1242 1.11 thorpej /*
1243 1.11 thorpej * Initialize the ccd. Fills in the softc for us.
1244 1.11 thorpej */
1245 1.107 christos if ((error = ccdinit(cs, cpp, vpp, l)) != 0) {
1246 1.11 thorpej for (j = 0; j < lookedup; ++j)
1247 1.18 thorpej (void)vn_close(vpp[j], FREAD|FWRITE,
1248 1.128 ad uc);
1249 1.133 ad kmem_free(vpp, ccio->ccio_ndisks * sizeof(*vpp));
1250 1.133 ad kmem_free(cpp, ccio->ccio_ndisks * sizeof(*cpp));
1251 1.133 ad disk_detach(&cs->sc_dkdev);
1252 1.168 pgoyette mutex_exit(&cs->sc_dvlock);
1253 1.133 ad bufq_free(cs->sc_bufq);
1254 1.168 pgoyette return error;
1255 1.11 thorpej }
1256 1.11 thorpej
1257 1.57 thorpej /* We can free the temporary variables now. */
1258 1.133 ad kmem_free(vpp, ccio->ccio_ndisks * sizeof(*vpp));
1259 1.133 ad kmem_free(cpp, ccio->ccio_ndisks * sizeof(*cpp));
1260 1.57 thorpej
1261 1.11 thorpej /*
1262 1.11 thorpej * The ccd has been successfully initialized, so
1263 1.23 thorpej * we can place it into the array. Don't try to
1264 1.23 thorpej * read the disklabel until the disk has been attached,
1265 1.23 thorpej * because space for the disklabel is allocated
1266 1.23 thorpej * in disk_attach();
1267 1.11 thorpej */
1268 1.11 thorpej ccio->ccio_unit = unit;
1269 1.11 thorpej ccio->ccio_size = cs->sc_size;
1270 1.23 thorpej
1271 1.23 thorpej /* Try and read the disklabel. */
1272 1.11 thorpej ccdgetdisklabel(dev);
1273 1.157 mlelstv disk_set_info(NULL, &cs->sc_dkdev, NULL);
1274 1.157 mlelstv
1275 1.157 mlelstv /* discover wedges */
1276 1.157 mlelstv mutex_exit(&cs->sc_dvlock);
1277 1.157 mlelstv dkwedge_discover(&cs->sc_dkdev);
1278 1.157 mlelstv return 0;
1279 1.11 thorpej
1280 1.11 thorpej case CCDIOCCLR:
1281 1.11 thorpej /*
1282 1.11 thorpej * Don't unconfigure if any other partitions are open
1283 1.11 thorpej * or if both the character and block flavors of this
1284 1.11 thorpej * partition are open.
1285 1.11 thorpej */
1286 1.11 thorpej part = DISKPART(dev);
1287 1.11 thorpej pmask = (1 << part);
1288 1.11 thorpej if ((cs->sc_dkdev.dk_openmask & ~pmask) ||
1289 1.11 thorpej ((cs->sc_dkdev.dk_bopenmask & pmask) &&
1290 1.15 thorpej (cs->sc_dkdev.dk_copenmask & pmask))) {
1291 1.57 thorpej error = EBUSY;
1292 1.57 thorpej goto out;
1293 1.15 thorpej }
1294 1.88 thorpej
1295 1.157 mlelstv /* Delete all of our wedges. */
1296 1.157 mlelstv dkwedge_delall(&cs->sc_dkdev);
1297 1.157 mlelstv
1298 1.133 ad /* Stop new I/O, wait for in-flight I/O to complete. */
1299 1.133 ad mutex_enter(cs->sc_iolock);
1300 1.133 ad cs->sc_flags &= ~(CCDF_INITED|CCDF_VLABEL);
1301 1.133 ad cs->sc_zap = true;
1302 1.133 ad while (disk_isbusy(&cs->sc_dkdev) ||
1303 1.133 ad bufq_peek(cs->sc_bufq) != NULL ||
1304 1.133 ad cs->sc_thread != NULL) {
1305 1.133 ad cv_broadcast(&cs->sc_push);
1306 1.133 ad (void)cv_timedwait(&cs->sc_stop, cs->sc_iolock, hz);
1307 1.133 ad }
1308 1.133 ad mutex_exit(cs->sc_iolock);
1309 1.11 thorpej
1310 1.11 thorpej /*
1311 1.11 thorpej * Free ccd_softc information and clear entry.
1312 1.11 thorpej */
1313 1.22 thorpej
1314 1.22 thorpej /* Close the components and free their pathnames. */
1315 1.11 thorpej for (i = 0; i < cs->sc_nccdisks; ++i) {
1316 1.11 thorpej /*
1317 1.11 thorpej * XXX: this close could potentially fail and
1318 1.11 thorpej * cause Bad Things. Maybe we need to force
1319 1.11 thorpej * the close to happen?
1320 1.11 thorpej */
1321 1.11 thorpej #ifdef DEBUG
1322 1.11 thorpej if (ccddebug & CCDB_VNODE)
1323 1.11 thorpej vprint("CCDIOCCLR: vnode info",
1324 1.11 thorpej cs->sc_cinfo[i].ci_vp);
1325 1.11 thorpej #endif
1326 1.11 thorpej (void)vn_close(cs->sc_cinfo[i].ci_vp, FREAD|FWRITE,
1327 1.128 ad uc);
1328 1.133 ad kmem_free(cs->sc_cinfo[i].ci_path,
1329 1.133 ad cs->sc_cinfo[i].ci_pathlen);
1330 1.38 thorpej }
1331 1.38 thorpej
1332 1.22 thorpej /* Free interleave index. */
1333 1.133 ad for (i = 0; cs->sc_itable[i].ii_ndisk; ++i) {
1334 1.133 ad kmem_free(cs->sc_itable[i].ii_index,
1335 1.133 ad cs->sc_itable[i].ii_indexsz);
1336 1.133 ad }
1337 1.22 thorpej
1338 1.22 thorpej /* Free component info and interleave table. */
1339 1.133 ad kmem_free(cs->sc_cinfo, cs->sc_nccdisks *
1340 1.133 ad sizeof(struct ccdcinfo));
1341 1.133 ad kmem_free(cs->sc_itable, (cs->sc_nccdisks + 1) *
1342 1.133 ad sizeof(struct ccdiinfo));
1343 1.15 thorpej
1344 1.152 sborrill aprint_normal("%s: detached\n", cs->sc_xname);
1345 1.152 sborrill
1346 1.152 sborrill /* Detach the disk. */
1347 1.123 ad disk_detach(&cs->sc_dkdev);
1348 1.133 ad bufq_free(cs->sc_bufq);
1349 1.144 christos ccdput(cs);
1350 1.148 joerg /* Don't break, otherwise cs is read again. */
1351 1.148 joerg return 0;
1352 1.11 thorpej
1353 1.170 jdolecek case DIOCGSTRATEGY:
1354 1.170 jdolecek {
1355 1.170 jdolecek struct disk_strategy *dks = (void *)data;
1356 1.170 jdolecek
1357 1.170 jdolecek mutex_enter(cs->sc_iolock);
1358 1.170 jdolecek if (cs->sc_bufq != NULL)
1359 1.170 jdolecek strlcpy(dks->dks_name,
1360 1.170 jdolecek bufq_getstrategyname(cs->sc_bufq),
1361 1.170 jdolecek sizeof(dks->dks_name));
1362 1.170 jdolecek else
1363 1.170 jdolecek error = EINVAL;
1364 1.170 jdolecek mutex_exit(cs->sc_iolock);
1365 1.170 jdolecek dks->dks_paramlen = 0;
1366 1.170 jdolecek break;
1367 1.170 jdolecek }
1368 1.170 jdolecek
1369 1.170 jdolecek case DIOCGCACHE:
1370 1.170 jdolecek {
1371 1.170 jdolecek int dkcache = 0;
1372 1.170 jdolecek
1373 1.170 jdolecek /*
1374 1.170 jdolecek * We pass this call down to all components and report
1375 1.170 jdolecek * intersection of the flags returned by the components.
1376 1.170 jdolecek * If any errors out, we return error. CCD components
1377 1.170 jdolecek * can not change unless the device is unconfigured, so
1378 1.170 jdolecek * device feature flags will remain static. RCE/WCE can change
1379 1.170 jdolecek * of course, if set directly on underlying device.
1380 1.170 jdolecek */
1381 1.170 jdolecek for (error = 0, i = 0; i < cs->sc_nccdisks; i++) {
1382 1.170 jdolecek error = VOP_IOCTL(cs->sc_cinfo[i].ci_vp, cmd, &j,
1383 1.170 jdolecek flag, uc);
1384 1.170 jdolecek if (error)
1385 1.170 jdolecek break;
1386 1.170 jdolecek
1387 1.170 jdolecek if (i == 0)
1388 1.170 jdolecek dkcache = j;
1389 1.170 jdolecek else
1390 1.171 jdolecek dkcache = DKCACHE_COMBINE(dkcache, j);
1391 1.170 jdolecek }
1392 1.170 jdolecek
1393 1.170 jdolecek *((int *)data) = dkcache;
1394 1.170 jdolecek break;
1395 1.170 jdolecek }
1396 1.170 jdolecek
1397 1.100 thorpej case DIOCCACHESYNC:
1398 1.100 thorpej /*
1399 1.100 thorpej * We pass this call down to all components and report
1400 1.100 thorpej * the first error we encounter.
1401 1.100 thorpej */
1402 1.100 thorpej for (error = 0, i = 0; i < cs->sc_nccdisks; i++) {
1403 1.100 thorpej j = VOP_IOCTL(cs->sc_cinfo[i].ci_vp, cmd, data,
1404 1.124 pooka flag, uc);
1405 1.100 thorpej if (j != 0 && error == 0)
1406 1.100 thorpej error = j;
1407 1.100 thorpej }
1408 1.100 thorpej break;
1409 1.100 thorpej
1410 1.11 thorpej case DIOCWDINFO:
1411 1.11 thorpej case DIOCSDINFO:
1412 1.70 fvdl #ifdef __HAVE_OLD_DISKLABEL
1413 1.70 fvdl case ODIOCWDINFO:
1414 1.70 fvdl case ODIOCSDINFO:
1415 1.70 fvdl #endif
1416 1.70 fvdl {
1417 1.70 fvdl struct disklabel *lp;
1418 1.70 fvdl #ifdef __HAVE_OLD_DISKLABEL
1419 1.70 fvdl if (cmd == ODIOCSDINFO || cmd == ODIOCWDINFO) {
1420 1.70 fvdl memset(&newlabel, 0, sizeof newlabel);
1421 1.70 fvdl memcpy(&newlabel, data, sizeof (struct olddisklabel));
1422 1.70 fvdl lp = &newlabel;
1423 1.70 fvdl } else
1424 1.70 fvdl #endif
1425 1.70 fvdl lp = (struct disklabel *)data;
1426 1.70 fvdl
1427 1.11 thorpej cs->sc_flags |= CCDF_LABELLING;
1428 1.11 thorpej
1429 1.23 thorpej error = setdisklabel(cs->sc_dkdev.dk_label,
1430 1.70 fvdl lp, 0, cs->sc_dkdev.dk_cpulabel);
1431 1.11 thorpej if (error == 0) {
1432 1.70 fvdl if (cmd == DIOCWDINFO
1433 1.70 fvdl #ifdef __HAVE_OLD_DISKLABEL
1434 1.70 fvdl || cmd == ODIOCWDINFO
1435 1.70 fvdl #endif
1436 1.70 fvdl )
1437 1.11 thorpej error = writedisklabel(CCDLABELDEV(dev),
1438 1.23 thorpej ccdstrategy, cs->sc_dkdev.dk_label,
1439 1.23 thorpej cs->sc_dkdev.dk_cpulabel);
1440 1.11 thorpej }
1441 1.11 thorpej
1442 1.11 thorpej cs->sc_flags &= ~CCDF_LABELLING;
1443 1.11 thorpej break;
1444 1.70 fvdl }
1445 1.11 thorpej
1446 1.87 thorpej case DIOCKLABEL:
1447 1.87 thorpej if (*(int *)data != 0)
1448 1.87 thorpej cs->sc_flags |= CCDF_KLABEL;
1449 1.87 thorpej else
1450 1.87 thorpej cs->sc_flags &= ~CCDF_KLABEL;
1451 1.87 thorpej break;
1452 1.87 thorpej
1453 1.11 thorpej case DIOCWLABEL:
1454 1.11 thorpej if (*(int *)data != 0)
1455 1.11 thorpej cs->sc_flags |= CCDF_WLABEL;
1456 1.11 thorpej else
1457 1.11 thorpej cs->sc_flags &= ~CCDF_WLABEL;
1458 1.11 thorpej break;
1459 1.11 thorpej
1460 1.44 thorpej case DIOCGDEFLABEL:
1461 1.44 thorpej ccdgetdefaultlabel(cs, (struct disklabel *)data);
1462 1.44 thorpej break;
1463 1.70 fvdl
1464 1.70 fvdl #ifdef __HAVE_OLD_DISKLABEL
1465 1.70 fvdl case ODIOCGDEFLABEL:
1466 1.70 fvdl ccdgetdefaultlabel(cs, &newlabel);
1467 1.70 fvdl if (newlabel.d_npartitions > OLDMAXPARTITIONS)
1468 1.71 fvdl return ENOTTY;
1469 1.70 fvdl memcpy(data, &newlabel, sizeof (struct olddisklabel));
1470 1.70 fvdl break;
1471 1.70 fvdl #endif
1472 1.44 thorpej
1473 1.11 thorpej default:
1474 1.57 thorpej error = ENOTTY;
1475 1.11 thorpej }
1476 1.11 thorpej
1477 1.57 thorpej out:
1478 1.133 ad mutex_exit(&cs->sc_dvlock);
1479 1.57 thorpej return (error);
1480 1.1 hpeyerl }
1481 1.1 hpeyerl
1482 1.97 thorpej static int
1483 1.97 thorpej ccdsize(dev_t dev)
1484 1.1 hpeyerl {
1485 1.11 thorpej struct ccd_softc *cs;
1486 1.40 thorpej struct disklabel *lp;
1487 1.40 thorpej int part, unit, omask, size;
1488 1.40 thorpej
1489 1.40 thorpej unit = ccdunit(dev);
1490 1.158 christos if ((cs = ccdget(unit, 0)) == NULL)
1491 1.144 christos return -1;
1492 1.11 thorpej
1493 1.40 thorpej if ((cs->sc_flags & CCDF_INITED) == 0)
1494 1.11 thorpej return (-1);
1495 1.11 thorpej
1496 1.11 thorpej part = DISKPART(dev);
1497 1.40 thorpej omask = cs->sc_dkdev.dk_openmask & (1 << part);
1498 1.40 thorpej lp = cs->sc_dkdev.dk_label;
1499 1.11 thorpej
1500 1.107 christos if (omask == 0 && ccdopen(dev, 0, S_IFBLK, curlwp))
1501 1.11 thorpej return (-1);
1502 1.11 thorpej
1503 1.40 thorpej if (lp->d_partitions[part].p_fstype != FS_SWAP)
1504 1.11 thorpej size = -1;
1505 1.11 thorpej else
1506 1.40 thorpej size = lp->d_partitions[part].p_size *
1507 1.40 thorpej (lp->d_secsize / DEV_BSIZE);
1508 1.11 thorpej
1509 1.107 christos if (omask == 0 && ccdclose(dev, 0, S_IFBLK, curlwp))
1510 1.11 thorpej return (-1);
1511 1.1 hpeyerl
1512 1.11 thorpej return (size);
1513 1.1 hpeyerl }
1514 1.1 hpeyerl
1515 1.11 thorpej static void
1516 1.97 thorpej ccdgetdefaultlabel(struct ccd_softc *cs, struct disklabel *lp)
1517 1.11 thorpej {
1518 1.11 thorpej struct ccdgeom *ccg = &cs->sc_geom;
1519 1.11 thorpej
1520 1.72 thorpej memset(lp, 0, sizeof(*lp));
1521 1.11 thorpej
1522 1.153 mlelstv if (cs->sc_size > UINT32_MAX)
1523 1.153 mlelstv lp->d_secperunit = UINT32_MAX;
1524 1.153 mlelstv else
1525 1.153 mlelstv lp->d_secperunit = cs->sc_size;
1526 1.11 thorpej lp->d_secsize = ccg->ccg_secsize;
1527 1.11 thorpej lp->d_nsectors = ccg->ccg_nsectors;
1528 1.11 thorpej lp->d_ntracks = ccg->ccg_ntracks;
1529 1.11 thorpej lp->d_ncylinders = ccg->ccg_ncylinders;
1530 1.19 thorpej lp->d_secpercyl = lp->d_ntracks * lp->d_nsectors;
1531 1.11 thorpej
1532 1.11 thorpej strncpy(lp->d_typename, "ccd", sizeof(lp->d_typename));
1533 1.162 christos lp->d_type = DKTYPE_CCD;
1534 1.11 thorpej strncpy(lp->d_packname, "fictitious", sizeof(lp->d_packname));
1535 1.11 thorpej lp->d_rpm = 3600;
1536 1.11 thorpej lp->d_interleave = 1;
1537 1.11 thorpej lp->d_flags = 0;
1538 1.11 thorpej
1539 1.11 thorpej lp->d_partitions[RAW_PART].p_offset = 0;
1540 1.153 mlelstv lp->d_partitions[RAW_PART].p_size = lp->d_secperunit;
1541 1.11 thorpej lp->d_partitions[RAW_PART].p_fstype = FS_UNUSED;
1542 1.11 thorpej lp->d_npartitions = RAW_PART + 1;
1543 1.11 thorpej
1544 1.11 thorpej lp->d_magic = DISKMAGIC;
1545 1.11 thorpej lp->d_magic2 = DISKMAGIC;
1546 1.23 thorpej lp->d_checksum = dkcksum(cs->sc_dkdev.dk_label);
1547 1.44 thorpej }
1548 1.44 thorpej
1549 1.44 thorpej /*
1550 1.44 thorpej * Read the disklabel from the ccd. If one is not present, fake one
1551 1.44 thorpej * up.
1552 1.44 thorpej */
1553 1.44 thorpej static void
1554 1.97 thorpej ccdgetdisklabel(dev_t dev)
1555 1.44 thorpej {
1556 1.44 thorpej int unit = ccdunit(dev);
1557 1.144 christos struct ccd_softc *cs;
1558 1.85 dsl const char *errstring;
1559 1.144 christos struct disklabel *lp;
1560 1.144 christos struct cpu_disklabel *clp;
1561 1.44 thorpej
1562 1.158 christos if ((cs = ccdget(unit, 0)) == NULL)
1563 1.144 christos return;
1564 1.144 christos lp = cs->sc_dkdev.dk_label;
1565 1.144 christos clp = cs->sc_dkdev.dk_cpulabel;
1566 1.133 ad KASSERT(mutex_owned(&cs->sc_dvlock));
1567 1.133 ad
1568 1.72 thorpej memset(clp, 0, sizeof(*clp));
1569 1.44 thorpej
1570 1.44 thorpej ccdgetdefaultlabel(cs, lp);
1571 1.11 thorpej
1572 1.11 thorpej /*
1573 1.11 thorpej * Call the generic disklabel extraction routine.
1574 1.11 thorpej */
1575 1.133 ad cs->sc_flags |= CCDF_RLABEL;
1576 1.92 lukem if ((cs->sc_flags & CCDF_NOLABEL) != 0)
1577 1.92 lukem errstring = "CCDF_NOLABEL set; ignoring on-disk label";
1578 1.92 lukem else
1579 1.92 lukem errstring = readdisklabel(CCDLABELDEV(dev), ccdstrategy,
1580 1.92 lukem cs->sc_dkdev.dk_label, cs->sc_dkdev.dk_cpulabel);
1581 1.29 christos if (errstring)
1582 1.11 thorpej ccdmakedisklabel(cs);
1583 1.47 enami else {
1584 1.47 enami int i;
1585 1.47 enami struct partition *pp;
1586 1.47 enami
1587 1.47 enami /*
1588 1.47 enami * Sanity check whether the found disklabel is valid.
1589 1.47 enami *
1590 1.47 enami * This is necessary since total size of ccd may vary
1591 1.47 enami * when an interleave is changed even though exactly
1592 1.47 enami * same componets are used, and old disklabel may used
1593 1.47 enami * if that is found.
1594 1.47 enami */
1595 1.154 mlelstv if (lp->d_secperunit < UINT32_MAX ?
1596 1.154 mlelstv lp->d_secperunit != cs->sc_size :
1597 1.154 mlelstv lp->d_secperunit > cs->sc_size)
1598 1.47 enami printf("WARNING: %s: "
1599 1.152 sborrill "total sector size in disklabel (%ju) != "
1600 1.152 sborrill "the size of ccd (%ju)\n", cs->sc_xname,
1601 1.152 sborrill (uintmax_t)lp->d_secperunit,
1602 1.152 sborrill (uintmax_t)cs->sc_size);
1603 1.47 enami for (i = 0; i < lp->d_npartitions; i++) {
1604 1.47 enami pp = &lp->d_partitions[i];
1605 1.47 enami if (pp->p_offset + pp->p_size > cs->sc_size)
1606 1.48 enami printf("WARNING: %s: end of partition `%c' "
1607 1.152 sborrill "exceeds the size of ccd (%ju)\n",
1608 1.152 sborrill cs->sc_xname, 'a' + i, (uintmax_t)cs->sc_size);
1609 1.47 enami }
1610 1.47 enami }
1611 1.11 thorpej
1612 1.11 thorpej #ifdef DEBUG
1613 1.11 thorpej /* It's actually extremely common to have unlabeled ccds. */
1614 1.11 thorpej if (ccddebug & CCDB_LABEL)
1615 1.11 thorpej if (errstring != NULL)
1616 1.35 christos printf("%s: %s\n", cs->sc_xname, errstring);
1617 1.11 thorpej #endif
1618 1.87 thorpej
1619 1.87 thorpej /* In-core label now valid. */
1620 1.133 ad cs->sc_flags = (cs->sc_flags | CCDF_VLABEL) & ~CCDF_RLABEL;
1621 1.11 thorpej }
1622 1.11 thorpej
1623 1.11 thorpej /*
1624 1.11 thorpej * Take care of things one might want to take care of in the event
1625 1.11 thorpej * that a disklabel isn't present.
1626 1.11 thorpej */
1627 1.11 thorpej static void
1628 1.97 thorpej ccdmakedisklabel(struct ccd_softc *cs)
1629 1.11 thorpej {
1630 1.23 thorpej struct disklabel *lp = cs->sc_dkdev.dk_label;
1631 1.11 thorpej
1632 1.11 thorpej /*
1633 1.11 thorpej * For historical reasons, if there's no disklabel present
1634 1.11 thorpej * the raw partition must be marked FS_BSDFFS.
1635 1.11 thorpej */
1636 1.11 thorpej lp->d_partitions[RAW_PART].p_fstype = FS_BSDFFS;
1637 1.11 thorpej
1638 1.11 thorpej strncpy(lp->d_packname, "default label", sizeof(lp->d_packname));
1639 1.44 thorpej
1640 1.44 thorpej lp->d_checksum = dkcksum(lp);
1641 1.11 thorpej }
1642 1.11 thorpej
1643 1.11 thorpej #ifdef DEBUG
1644 1.11 thorpej static void
1645 1.97 thorpej printiinfo(struct ccdiinfo *ii)
1646 1.11 thorpej {
1647 1.68 augustss int ix, i;
1648 1.11 thorpej
1649 1.11 thorpej for (ix = 0; ii->ii_ndisk; ix++, ii++) {
1650 1.81 kleink printf(" itab[%d]: #dk %d sblk %" PRId64 " soff %" PRId64,
1651 1.34 christos ix, ii->ii_ndisk, ii->ii_startblk, ii->ii_startoff);
1652 1.11 thorpej for (i = 0; i < ii->ii_ndisk; i++)
1653 1.35 christos printf(" %d", ii->ii_index[i]);
1654 1.35 christos printf("\n");
1655 1.11 thorpej }
1656 1.1 hpeyerl }
1657 1.1 hpeyerl #endif
1658 1.134 haad
1659 1.175 pgoyette MODULE(MODULE_CLASS_DRIVER, ccd, "dk_subr,bufq_fcfs");
1660 1.134 haad
1661 1.134 haad static int
1662 1.134 haad ccd_modcmd(modcmd_t cmd, void *arg)
1663 1.134 haad {
1664 1.145 martin int error = 0;
1665 1.145 martin #ifdef _MODULE
1666 1.145 martin int bmajor = -1, cmajor = -1;
1667 1.145 martin #endif
1668 1.140 jruoho
1669 1.140 jruoho
1670 1.134 haad switch (cmd) {
1671 1.134 haad case MODULE_CMD_INIT:
1672 1.140 jruoho #ifdef _MODULE
1673 1.158 christos ccdattach(0);
1674 1.140 jruoho
1675 1.158 christos error = devsw_attach("ccd", &ccd_bdevsw, &bmajor,
1676 1.134 haad &ccd_cdevsw, &cmajor);
1677 1.167 pgoyette sysctl_kern_ccd_setup(&ccd_clog);
1678 1.140 jruoho #endif
1679 1.134 haad break;
1680 1.134 haad
1681 1.134 haad case MODULE_CMD_FINI:
1682 1.140 jruoho #ifdef _MODULE
1683 1.158 christos mutex_enter(&ccd_lock);
1684 1.174 pgoyette if (!LIST_EMPTY(&ccds)) {
1685 1.159 christos mutex_exit(&ccd_lock);
1686 1.158 christos error = EBUSY;
1687 1.159 christos } else {
1688 1.159 christos mutex_exit(&ccd_lock);
1689 1.158 christos error = devsw_detach(&ccd_bdevsw, &ccd_cdevsw);
1690 1.159 christos ccddetach();
1691 1.159 christos }
1692 1.167 pgoyette sysctl_teardown(&ccd_clog);
1693 1.140 jruoho #endif
1694 1.134 haad break;
1695 1.134 haad
1696 1.134 haad case MODULE_CMD_STAT:
1697 1.134 haad return ENOTTY;
1698 1.134 haad
1699 1.134 haad default:
1700 1.134 haad return ENOTTY;
1701 1.134 haad }
1702 1.134 haad
1703 1.134 haad return error;
1704 1.134 haad }
1705 1.144 christos
1706 1.144 christos static int
1707 1.144 christos ccd_units_sysctl(SYSCTLFN_ARGS)
1708 1.144 christos {
1709 1.144 christos struct sysctlnode node;
1710 1.144 christos struct ccd_softc *sc;
1711 1.144 christos int error, i, nccd, *units;
1712 1.144 christos size_t size;
1713 1.144 christos
1714 1.144 christos nccd = 0;
1715 1.144 christos mutex_enter(&ccd_lock);
1716 1.144 christos LIST_FOREACH(sc, &ccds, sc_link)
1717 1.144 christos nccd++;
1718 1.144 christos mutex_exit(&ccd_lock);
1719 1.144 christos
1720 1.144 christos if (nccd != 0) {
1721 1.144 christos size = nccd * sizeof(*units);
1722 1.144 christos units = kmem_zalloc(size, KM_SLEEP);
1723 1.144 christos i = 0;
1724 1.144 christos mutex_enter(&ccd_lock);
1725 1.144 christos LIST_FOREACH(sc, &ccds, sc_link) {
1726 1.144 christos if (i >= nccd)
1727 1.144 christos break;
1728 1.144 christos units[i] = sc->sc_unit;
1729 1.144 christos }
1730 1.144 christos mutex_exit(&ccd_lock);
1731 1.144 christos } else {
1732 1.144 christos units = NULL;
1733 1.144 christos size = 0;
1734 1.144 christos }
1735 1.144 christos
1736 1.144 christos node = *rnode;
1737 1.144 christos node.sysctl_data = units;
1738 1.144 christos node.sysctl_size = size;
1739 1.144 christos
1740 1.144 christos error = sysctl_lookup(SYSCTLFN_CALL(&node));
1741 1.144 christos if (units)
1742 1.144 christos kmem_free(units, size);
1743 1.144 christos return error;
1744 1.144 christos }
1745 1.144 christos
1746 1.144 christos static int
1747 1.144 christos ccd_info_sysctl(SYSCTLFN_ARGS)
1748 1.144 christos {
1749 1.144 christos struct sysctlnode node;
1750 1.144 christos struct ccddiskinfo ccd;
1751 1.144 christos struct ccd_softc *sc;
1752 1.144 christos int unit;
1753 1.144 christos
1754 1.144 christos if (newp == NULL || newlen != sizeof(int))
1755 1.144 christos return EINVAL;
1756 1.144 christos
1757 1.144 christos unit = *(const int *)newp;
1758 1.144 christos newp = NULL;
1759 1.144 christos newlen = 0;
1760 1.144 christos ccd.ccd_ndisks = ~0;
1761 1.144 christos mutex_enter(&ccd_lock);
1762 1.144 christos LIST_FOREACH(sc, &ccds, sc_link) {
1763 1.144 christos if (sc->sc_unit == unit) {
1764 1.144 christos ccd.ccd_ileave = sc->sc_ileave;
1765 1.144 christos ccd.ccd_size = sc->sc_size;
1766 1.144 christos ccd.ccd_ndisks = sc->sc_nccdisks;
1767 1.144 christos ccd.ccd_flags = sc->sc_flags;
1768 1.144 christos break;
1769 1.144 christos }
1770 1.144 christos }
1771 1.144 christos mutex_exit(&ccd_lock);
1772 1.144 christos
1773 1.144 christos if (ccd.ccd_ndisks == ~0)
1774 1.144 christos return ENOENT;
1775 1.144 christos
1776 1.144 christos node = *rnode;
1777 1.144 christos node.sysctl_data = &ccd;
1778 1.144 christos node.sysctl_size = sizeof(ccd);
1779 1.144 christos
1780 1.144 christos return sysctl_lookup(SYSCTLFN_CALL(&node));
1781 1.144 christos }
1782 1.144 christos
1783 1.144 christos static int
1784 1.144 christos ccd_components_sysctl(SYSCTLFN_ARGS)
1785 1.144 christos {
1786 1.144 christos struct sysctlnode node;
1787 1.144 christos int error, unit;
1788 1.144 christos size_t size;
1789 1.144 christos char *names, *p, *ep;
1790 1.144 christos struct ccd_softc *sc;
1791 1.144 christos
1792 1.144 christos if (newp == NULL || newlen != sizeof(int))
1793 1.144 christos return EINVAL;
1794 1.144 christos
1795 1.144 christos size = 0;
1796 1.144 christos unit = *(const int *)newp;
1797 1.144 christos newp = NULL;
1798 1.144 christos newlen = 0;
1799 1.144 christos mutex_enter(&ccd_lock);
1800 1.144 christos LIST_FOREACH(sc, &ccds, sc_link)
1801 1.144 christos if (sc->sc_unit == unit) {
1802 1.144 christos for (size_t i = 0; i < sc->sc_nccdisks; i++)
1803 1.144 christos size += strlen(sc->sc_cinfo[i].ci_path) + 1;
1804 1.144 christos break;
1805 1.144 christos }
1806 1.144 christos mutex_exit(&ccd_lock);
1807 1.144 christos
1808 1.144 christos if (size == 0)
1809 1.144 christos return ENOENT;
1810 1.164 skrll names = kmem_zalloc(size, KM_SLEEP);
1811 1.144 christos p = names;
1812 1.144 christos ep = names + size;
1813 1.144 christos mutex_enter(&ccd_lock);
1814 1.144 christos LIST_FOREACH(sc, &ccds, sc_link)
1815 1.144 christos if (sc->sc_unit == unit) {
1816 1.144 christos for (size_t i = 0; i < sc->sc_nccdisks; i++) {
1817 1.144 christos char *d = sc->sc_cinfo[i].ci_path;
1818 1.164 skrll while (p < ep && (*p++ = *d++) != '\0')
1819 1.144 christos continue;
1820 1.144 christos }
1821 1.144 christos break;
1822 1.144 christos }
1823 1.144 christos mutex_exit(&ccd_lock);
1824 1.144 christos
1825 1.144 christos node = *rnode;
1826 1.144 christos node.sysctl_data = names;
1827 1.144 christos node.sysctl_size = ep - names;
1828 1.144 christos
1829 1.144 christos error = sysctl_lookup(SYSCTLFN_CALL(&node));
1830 1.144 christos kmem_free(names, size);
1831 1.144 christos return error;
1832 1.144 christos }
1833 1.144 christos
1834 1.144 christos SYSCTL_SETUP(sysctl_kern_ccd_setup, "sysctl kern.ccd subtree setup")
1835 1.144 christos {
1836 1.144 christos const struct sysctlnode *node = NULL;
1837 1.144 christos
1838 1.144 christos sysctl_createv(clog, 0, NULL, &node,
1839 1.144 christos CTLFLAG_PERMANENT,
1840 1.144 christos CTLTYPE_NODE, "ccd",
1841 1.144 christos SYSCTL_DESCR("ConCatenated Disk state"),
1842 1.144 christos NULL, 0, NULL, 0,
1843 1.144 christos CTL_KERN, CTL_CREATE, CTL_EOL);
1844 1.144 christos
1845 1.144 christos if (node == NULL)
1846 1.144 christos return;
1847 1.144 christos
1848 1.144 christos sysctl_createv(clog, 0, &node, NULL,
1849 1.144 christos CTLFLAG_PERMANENT | CTLFLAG_READONLY,
1850 1.144 christos CTLTYPE_STRUCT, "units",
1851 1.144 christos SYSCTL_DESCR("List of ccd unit numbers"),
1852 1.144 christos ccd_units_sysctl, 0, NULL, 0,
1853 1.144 christos CTL_CREATE, CTL_EOL);
1854 1.144 christos sysctl_createv(clog, 0, &node, NULL,
1855 1.144 christos CTLFLAG_PERMANENT | CTLFLAG_READWRITE,
1856 1.144 christos CTLTYPE_STRUCT, "info",
1857 1.144 christos SYSCTL_DESCR("Information about a CCD unit"),
1858 1.144 christos ccd_info_sysctl, 0, NULL, 0,
1859 1.144 christos CTL_CREATE, CTL_EOL);
1860 1.144 christos sysctl_createv(clog, 0, &node, NULL,
1861 1.144 christos CTLFLAG_PERMANENT | CTLFLAG_READWRITE,
1862 1.144 christos CTLTYPE_STRUCT, "components",
1863 1.144 christos SYSCTL_DESCR("Information about CCD components"),
1864 1.144 christos ccd_components_sysctl, 0, NULL, 0,
1865 1.144 christos CTL_CREATE, CTL_EOL);
1866 1.144 christos }
1867