rf_netbsdkintf.c revision 1.309 1 1.309 jakllsch /* $NetBSD: rf_netbsdkintf.c,v 1.309 2014/05/08 20:36:15 jakllsch Exp $ */
2 1.281 rmind
3 1.1 oster /*-
4 1.295 erh * Copyright (c) 1996, 1997, 1998, 2008-2011 The NetBSD Foundation, Inc.
5 1.1 oster * All rights reserved.
6 1.1 oster *
7 1.1 oster * This code is derived from software contributed to The NetBSD Foundation
8 1.1 oster * by Greg Oster; Jason R. Thorpe.
9 1.1 oster *
10 1.1 oster * Redistribution and use in source and binary forms, with or without
11 1.1 oster * modification, are permitted provided that the following conditions
12 1.1 oster * are met:
13 1.1 oster * 1. Redistributions of source code must retain the above copyright
14 1.1 oster * notice, this list of conditions and the following disclaimer.
15 1.1 oster * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 oster * notice, this list of conditions and the following disclaimer in the
17 1.1 oster * documentation and/or other materials provided with the distribution.
18 1.1 oster *
19 1.1 oster * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 1.1 oster * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 1.1 oster * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 1.1 oster * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 1.1 oster * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 1.1 oster * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 1.1 oster * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 1.1 oster * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 1.1 oster * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 1.1 oster * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 1.1 oster * POSSIBILITY OF SUCH DAMAGE.
30 1.1 oster */
31 1.1 oster
32 1.1 oster /*
33 1.281 rmind * Copyright (c) 1988 University of Utah.
34 1.1 oster * Copyright (c) 1990, 1993
35 1.1 oster * The Regents of the University of California. All rights reserved.
36 1.1 oster *
37 1.1 oster * This code is derived from software contributed to Berkeley by
38 1.1 oster * the Systems Programming Group of the University of Utah Computer
39 1.1 oster * Science Department.
40 1.1 oster *
41 1.1 oster * Redistribution and use in source and binary forms, with or without
42 1.1 oster * modification, are permitted provided that the following conditions
43 1.1 oster * are met:
44 1.1 oster * 1. Redistributions of source code must retain the above copyright
45 1.1 oster * notice, this list of conditions and the following disclaimer.
46 1.1 oster * 2. Redistributions in binary form must reproduce the above copyright
47 1.1 oster * notice, this list of conditions and the following disclaimer in the
48 1.1 oster * documentation and/or other materials provided with the distribution.
49 1.162 agc * 3. Neither the name of the University nor the names of its contributors
50 1.162 agc * may be used to endorse or promote products derived from this software
51 1.162 agc * without specific prior written permission.
52 1.162 agc *
53 1.162 agc * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
54 1.162 agc * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
55 1.162 agc * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
56 1.162 agc * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
57 1.162 agc * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
58 1.162 agc * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
59 1.162 agc * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
60 1.162 agc * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
61 1.162 agc * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
62 1.162 agc * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
63 1.162 agc * SUCH DAMAGE.
64 1.162 agc *
65 1.162 agc * from: Utah $Hdr: cd.c 1.6 90/11/28$
66 1.162 agc *
67 1.162 agc * @(#)cd.c 8.2 (Berkeley) 11/16/93
68 1.162 agc */
69 1.162 agc
70 1.162 agc /*
71 1.1 oster * Copyright (c) 1995 Carnegie-Mellon University.
72 1.1 oster * All rights reserved.
73 1.1 oster *
74 1.1 oster * Authors: Mark Holland, Jim Zelenka
75 1.1 oster *
76 1.1 oster * Permission to use, copy, modify and distribute this software and
77 1.1 oster * its documentation is hereby granted, provided that both the copyright
78 1.1 oster * notice and this permission notice appear in all copies of the
79 1.1 oster * software, derivative works or modified versions, and any portions
80 1.1 oster * thereof, and that both notices appear in supporting documentation.
81 1.1 oster *
82 1.1 oster * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
83 1.1 oster * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
84 1.1 oster * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
85 1.1 oster *
86 1.1 oster * Carnegie Mellon requests users of this software to return to
87 1.1 oster *
88 1.1 oster * Software Distribution Coordinator or Software.Distribution (at) CS.CMU.EDU
89 1.1 oster * School of Computer Science
90 1.1 oster * Carnegie Mellon University
91 1.1 oster * Pittsburgh PA 15213-3890
92 1.1 oster *
93 1.1 oster * any improvements or extensions that they make and grant Carnegie the
94 1.1 oster * rights to redistribute these changes.
95 1.1 oster */
96 1.1 oster
97 1.1 oster /***********************************************************
98 1.1 oster *
99 1.1 oster * rf_kintf.c -- the kernel interface routines for RAIDframe
100 1.1 oster *
101 1.1 oster ***********************************************************/
102 1.112 lukem
103 1.112 lukem #include <sys/cdefs.h>
104 1.309 jakllsch __KERNEL_RCSID(0, "$NetBSD: rf_netbsdkintf.c,v 1.309 2014/05/08 20:36:15 jakllsch Exp $");
105 1.251 ad
106 1.251 ad #ifdef _KERNEL_OPT
107 1.254 christos #include "opt_compat_netbsd.h"
108 1.251 ad #include "opt_raid_autoconfig.h"
109 1.251 ad #endif
110 1.1 oster
111 1.113 lukem #include <sys/param.h>
112 1.1 oster #include <sys/errno.h>
113 1.1 oster #include <sys/pool.h>
114 1.152 thorpej #include <sys/proc.h>
115 1.1 oster #include <sys/queue.h>
116 1.1 oster #include <sys/disk.h>
117 1.1 oster #include <sys/device.h>
118 1.1 oster #include <sys/stat.h>
119 1.1 oster #include <sys/ioctl.h>
120 1.1 oster #include <sys/fcntl.h>
121 1.1 oster #include <sys/systm.h>
122 1.1 oster #include <sys/vnode.h>
123 1.1 oster #include <sys/disklabel.h>
124 1.1 oster #include <sys/conf.h>
125 1.1 oster #include <sys/buf.h>
126 1.182 yamt #include <sys/bufq.h>
127 1.65 oster #include <sys/reboot.h>
128 1.208 elad #include <sys/kauth.h>
129 1.8 oster
130 1.234 oster #include <prop/proplib.h>
131 1.234 oster
132 1.110 oster #include <dev/raidframe/raidframevar.h>
133 1.110 oster #include <dev/raidframe/raidframeio.h>
134 1.269 jld #include <dev/raidframe/rf_paritymap.h>
135 1.251 ad
136 1.1 oster #include "rf_raid.h"
137 1.44 oster #include "rf_copyback.h"
138 1.1 oster #include "rf_dag.h"
139 1.1 oster #include "rf_dagflags.h"
140 1.99 oster #include "rf_desc.h"
141 1.1 oster #include "rf_diskqueue.h"
142 1.1 oster #include "rf_etimer.h"
143 1.1 oster #include "rf_general.h"
144 1.1 oster #include "rf_kintf.h"
145 1.1 oster #include "rf_options.h"
146 1.1 oster #include "rf_driver.h"
147 1.1 oster #include "rf_parityscan.h"
148 1.1 oster #include "rf_threadstuff.h"
149 1.1 oster
150 1.254 christos #ifdef COMPAT_50
151 1.254 christos #include "rf_compat50.h"
152 1.254 christos #endif
153 1.254 christos
154 1.133 oster #ifdef DEBUG
155 1.9 oster int rf_kdebug_level = 0;
156 1.1 oster #define db1_printf(a) if (rf_kdebug_level > 0) printf a
157 1.9 oster #else /* DEBUG */
158 1.1 oster #define db1_printf(a) { }
159 1.9 oster #endif /* DEBUG */
160 1.1 oster
161 1.249 oster #if (RF_INCLUDE_PARITY_DECLUSTERING_DS > 0)
162 1.289 mrg static rf_declare_mutex2(rf_sparet_wait_mutex);
163 1.287 mrg static rf_declare_cond2(rf_sparet_wait_cv);
164 1.287 mrg static rf_declare_cond2(rf_sparet_resp_cv);
165 1.1 oster
166 1.10 oster static RF_SparetWait_t *rf_sparet_wait_queue; /* requests to install a
167 1.10 oster * spare table */
168 1.10 oster static RF_SparetWait_t *rf_sparet_resp_queue; /* responses from
169 1.10 oster * installation process */
170 1.249 oster #endif
171 1.153 thorpej
172 1.153 thorpej MALLOC_DEFINE(M_RAIDFRAME, "RAIDframe", "RAIDframe structures");
173 1.10 oster
174 1.1 oster /* prototypes */
175 1.187 christos static void KernelWakeupFunc(struct buf *);
176 1.187 christos static void InitBP(struct buf *, struct vnode *, unsigned,
177 1.225 christos dev_t, RF_SectorNum_t, RF_SectorCount_t, void *, void (*) (struct buf *),
178 1.187 christos void *, int, struct proc *);
179 1.300 christos struct raid_softc;
180 1.300 christos static void raidinit(struct raid_softc *);
181 1.1 oster
182 1.104 oster void raidattach(int);
183 1.261 dyoung static int raid_match(device_t, cfdata_t, void *);
184 1.261 dyoung static void raid_attach(device_t, device_t, void *);
185 1.261 dyoung static int raid_detach(device_t, int);
186 1.130 gehenna
187 1.269 jld static int raidread_component_area(dev_t, struct vnode *, void *, size_t,
188 1.269 jld daddr_t, daddr_t);
189 1.269 jld static int raidwrite_component_area(dev_t, struct vnode *, void *, size_t,
190 1.269 jld daddr_t, daddr_t, int);
191 1.269 jld
192 1.276 mrg static int raidwrite_component_label(unsigned,
193 1.276 mrg dev_t, struct vnode *, RF_ComponentLabel_t *);
194 1.276 mrg static int raidread_component_label(unsigned,
195 1.276 mrg dev_t, struct vnode *, RF_ComponentLabel_t *);
196 1.269 jld
197 1.269 jld
198 1.130 gehenna dev_type_open(raidopen);
199 1.130 gehenna dev_type_close(raidclose);
200 1.130 gehenna dev_type_read(raidread);
201 1.130 gehenna dev_type_write(raidwrite);
202 1.130 gehenna dev_type_ioctl(raidioctl);
203 1.130 gehenna dev_type_strategy(raidstrategy);
204 1.130 gehenna dev_type_dump(raiddump);
205 1.130 gehenna dev_type_size(raidsize);
206 1.130 gehenna
207 1.130 gehenna const struct bdevsw raid_bdevsw = {
208 1.305 dholland .d_open = raidopen,
209 1.305 dholland .d_close = raidclose,
210 1.305 dholland .d_strategy = raidstrategy,
211 1.305 dholland .d_ioctl = raidioctl,
212 1.305 dholland .d_dump = raiddump,
213 1.305 dholland .d_psize = raidsize,
214 1.305 dholland .d_flag = D_DISK
215 1.130 gehenna };
216 1.130 gehenna
217 1.130 gehenna const struct cdevsw raid_cdevsw = {
218 1.305 dholland .d_open = raidopen,
219 1.305 dholland .d_close = raidclose,
220 1.305 dholland .d_read = raidread,
221 1.305 dholland .d_write = raidwrite,
222 1.305 dholland .d_ioctl = raidioctl,
223 1.305 dholland .d_stop = nostop,
224 1.305 dholland .d_tty = notty,
225 1.305 dholland .d_poll = nopoll,
226 1.305 dholland .d_mmap = nommap,
227 1.305 dholland .d_kqfilter = nokqfilter,
228 1.305 dholland .d_flag = D_DISK
229 1.130 gehenna };
230 1.1 oster
231 1.235 oster static struct dkdriver rf_dkdriver = { raidstrategy, minphys };
232 1.235 oster
233 1.10 oster struct raid_softc {
234 1.261 dyoung device_t sc_dev;
235 1.300 christos int sc_unit;
236 1.10 oster int sc_flags; /* flags */
237 1.10 oster int sc_cflags; /* configuration flags */
238 1.212 oster uint64_t sc_size; /* size of the raid device */
239 1.10 oster char sc_xname[20]; /* XXX external name */
240 1.10 oster struct disk sc_dkdev; /* generic disk device info */
241 1.191 yamt struct bufq_state *buf_queue; /* used for the device queue */
242 1.300 christos RF_Raid_t sc_r;
243 1.300 christos LIST_ENTRY(raid_softc) sc_link;
244 1.10 oster };
245 1.1 oster /* sc_flags */
246 1.1 oster #define RAIDF_INITED 0x01 /* unit has been initialized */
247 1.1 oster #define RAIDF_WLABEL 0x02 /* label area is writable */
248 1.1 oster #define RAIDF_LABELLING 0x04 /* unit is currently being labelled */
249 1.266 dyoung #define RAIDF_SHUTDOWN 0x08 /* unit is being shutdown */
250 1.1 oster #define RAIDF_WANTED 0x40 /* someone is waiting to obtain a lock */
251 1.1 oster #define RAIDF_LOCKED 0x80 /* unit is locked */
252 1.1 oster
253 1.1 oster #define raidunit(x) DISKUNIT(x)
254 1.1 oster
255 1.202 oster extern struct cfdriver raid_cd;
256 1.266 dyoung CFATTACH_DECL3_NEW(raid, sizeof(struct raid_softc),
257 1.266 dyoung raid_match, raid_attach, raid_detach, NULL, NULL, NULL,
258 1.266 dyoung DVF_DETACH_SHUTDOWN);
259 1.202 oster
260 1.186 perry /*
261 1.186 perry * Allow RAIDOUTSTANDING number of simultaneous IO's to this RAID device.
262 1.186 perry * Be aware that large numbers can allow the driver to consume a lot of
263 1.28 oster * kernel memory, especially on writes, and in degraded mode reads.
264 1.186 perry *
265 1.186 perry * For example: with a stripe width of 64 blocks (32k) and 5 disks,
266 1.186 perry * a single 64K write will typically require 64K for the old data,
267 1.186 perry * 64K for the old parity, and 64K for the new parity, for a total
268 1.28 oster * of 192K (if the parity buffer is not re-used immediately).
269 1.110 oster * Even it if is used immediately, that's still 128K, which when multiplied
270 1.28 oster * by say 10 requests, is 1280K, *on top* of the 640K of incoming data.
271 1.186 perry *
272 1.28 oster * Now in degraded mode, for example, a 64K read on the above setup may
273 1.186 perry * require data reconstruction, which will require *all* of the 4 remaining
274 1.28 oster * disks to participate -- 4 * 32K/disk == 128K again.
275 1.20 oster */
276 1.20 oster
277 1.20 oster #ifndef RAIDOUTSTANDING
278 1.28 oster #define RAIDOUTSTANDING 6
279 1.20 oster #endif
280 1.20 oster
281 1.1 oster #define RAIDLABELDEV(dev) \
282 1.1 oster (MAKEDISKDEV(major((dev)), raidunit((dev)), RAW_PART))
283 1.1 oster
284 1.1 oster /* declared here, and made public, for the benefit of KVM stuff.. */
285 1.9 oster
286 1.186 perry static void raidgetdefaultlabel(RF_Raid_t *, struct raid_softc *,
287 1.104 oster struct disklabel *);
288 1.104 oster static void raidgetdisklabel(dev_t);
289 1.104 oster static void raidmakedisklabel(struct raid_softc *);
290 1.1 oster
291 1.104 oster static int raidlock(struct raid_softc *);
292 1.104 oster static void raidunlock(struct raid_softc *);
293 1.1 oster
294 1.266 dyoung static int raid_detach_unlocked(struct raid_softc *);
295 1.266 dyoung
296 1.104 oster static void rf_markalldirty(RF_Raid_t *);
297 1.304 christos static void rf_set_geometry(struct raid_softc *, RF_Raid_t *);
298 1.48 oster
299 1.104 oster void rf_ReconThread(struct rf_recon_req *);
300 1.104 oster void rf_RewriteParityThread(RF_Raid_t *raidPtr);
301 1.104 oster void rf_CopybackThread(RF_Raid_t *raidPtr);
302 1.104 oster void rf_ReconstructInPlaceThread(struct rf_recon_req *);
303 1.261 dyoung int rf_autoconfig(device_t);
304 1.142 thorpej void rf_buildroothack(RF_ConfigSet_t *);
305 1.104 oster
306 1.104 oster RF_AutoConfig_t *rf_find_raid_components(void);
307 1.104 oster RF_ConfigSet_t *rf_create_auto_sets(RF_AutoConfig_t *);
308 1.104 oster static int rf_does_it_fit(RF_ConfigSet_t *,RF_AutoConfig_t *);
309 1.292 oster int rf_reasonable_label(RF_ComponentLabel_t *, uint64_t);
310 1.104 oster void rf_create_configuration(RF_AutoConfig_t *,RF_Config_t *, RF_Raid_t *);
311 1.104 oster int rf_set_autoconfig(RF_Raid_t *, int);
312 1.104 oster int rf_set_rootpartition(RF_Raid_t *, int);
313 1.104 oster void rf_release_all_vps(RF_ConfigSet_t *);
314 1.104 oster void rf_cleanup_config_set(RF_ConfigSet_t *);
315 1.104 oster int rf_have_enough_components(RF_ConfigSet_t *);
316 1.300 christos struct raid_softc *rf_auto_config_set(RF_ConfigSet_t *);
317 1.278 mrg static void rf_fix_old_label_size(RF_ComponentLabel_t *, uint64_t);
318 1.48 oster
319 1.295 erh /*
320 1.295 erh * Debugging, mostly. Set to 0 to not allow autoconfig to take place.
321 1.295 erh * Note that this is overridden by having RAID_AUTOCONFIG as an option
322 1.295 erh * in the kernel config file.
323 1.295 erh */
324 1.295 erh #ifdef RAID_AUTOCONFIG
325 1.295 erh int raidautoconfig = 1;
326 1.295 erh #else
327 1.295 erh int raidautoconfig = 0;
328 1.295 erh #endif
329 1.295 erh static bool raidautoconfigdone = false;
330 1.37 oster
331 1.177 oster struct RF_Pools_s rf_pools;
332 1.177 oster
333 1.300 christos static LIST_HEAD(, raid_softc) raids = LIST_HEAD_INITIALIZER(raids);
334 1.300 christos static kmutex_t raid_lock;
335 1.1 oster
336 1.300 christos static struct raid_softc *
337 1.300 christos raidcreate(int unit) {
338 1.300 christos struct raid_softc *sc = kmem_zalloc(sizeof(*sc), KM_SLEEP);
339 1.300 christos if (sc == NULL) {
340 1.1 oster #ifdef DIAGNOSTIC
341 1.300 christos printf("%s: out of memory\n", __func__);
342 1.1 oster #endif
343 1.300 christos return NULL;
344 1.1 oster }
345 1.300 christos sc->sc_unit = unit;
346 1.309 jakllsch bufq_alloc(&sc->buf_queue, "fcfs", BUFQ_SORT_RAWBLOCK);
347 1.300 christos return sc;
348 1.300 christos }
349 1.1 oster
350 1.300 christos static void
351 1.300 christos raiddestroy(struct raid_softc *sc) {
352 1.300 christos bufq_free(sc->buf_queue);
353 1.300 christos kmem_free(sc, sizeof(*sc));
354 1.300 christos }
355 1.50 oster
356 1.300 christos static struct raid_softc *
357 1.300 christos raidget(int unit) {
358 1.300 christos struct raid_softc *sc;
359 1.300 christos if (unit < 0) {
360 1.300 christos #ifdef DIAGNOSTIC
361 1.300 christos panic("%s: unit %d!", __func__, unit);
362 1.300 christos #endif
363 1.300 christos return NULL;
364 1.300 christos }
365 1.300 christos mutex_enter(&raid_lock);
366 1.300 christos LIST_FOREACH(sc, &raids, sc_link) {
367 1.300 christos if (sc->sc_unit == unit) {
368 1.300 christos mutex_exit(&raid_lock);
369 1.300 christos return sc;
370 1.300 christos }
371 1.300 christos }
372 1.300 christos mutex_exit(&raid_lock);
373 1.300 christos if ((sc = raidcreate(unit)) == NULL)
374 1.300 christos return NULL;
375 1.300 christos mutex_enter(&raid_lock);
376 1.300 christos LIST_INSERT_HEAD(&raids, sc, sc_link);
377 1.300 christos mutex_exit(&raid_lock);
378 1.300 christos return sc;
379 1.300 christos }
380 1.300 christos
381 1.300 christos static void
382 1.300 christos raidput(struct raid_softc *sc) {
383 1.300 christos mutex_enter(&raid_lock);
384 1.300 christos LIST_REMOVE(sc, sc_link);
385 1.300 christos mutex_exit(&raid_lock);
386 1.300 christos raiddestroy(sc);
387 1.300 christos }
388 1.1 oster
389 1.300 christos void
390 1.300 christos raidattach(int num)
391 1.300 christos {
392 1.300 christos mutex_init(&raid_lock, MUTEX_DEFAULT, IPL_NONE);
393 1.300 christos /* This is where all the initialization stuff gets done. */
394 1.116 thorpej
395 1.249 oster #if (RF_INCLUDE_PARITY_DECLUSTERING_DS > 0)
396 1.289 mrg rf_init_mutex2(rf_sparet_wait_mutex, IPL_VM);
397 1.289 mrg rf_init_cond2(rf_sparet_wait_cv, "sparetw");
398 1.289 mrg rf_init_cond2(rf_sparet_resp_cv, "rfgst");
399 1.14 oster
400 1.14 oster rf_sparet_wait_queue = rf_sparet_resp_queue = NULL;
401 1.249 oster #endif
402 1.14 oster
403 1.300 christos if (rf_BootRaidframe() == 0)
404 1.274 chs aprint_verbose("Kernelized RAIDframe activated\n");
405 1.14 oster else
406 1.141 provos panic("Serious error booting RAID!!");
407 1.14 oster
408 1.217 oster if (config_cfattach_attach(raid_cd.cd_name, &raid_ca)) {
409 1.239 jmcneill aprint_error("raidattach: config_cfattach_attach failed?\n");
410 1.217 oster }
411 1.217 oster
412 1.295 erh raidautoconfigdone = false;
413 1.62 oster
414 1.142 thorpej /*
415 1.142 thorpej * Register a finalizer which will be used to auto-config RAID
416 1.142 thorpej * sets once all real hardware devices have been found.
417 1.142 thorpej */
418 1.142 thorpej if (config_finalize_register(NULL, rf_autoconfig) != 0)
419 1.239 jmcneill aprint_error("WARNING: unable to register RAIDframe finalizer\n");
420 1.142 thorpej }
421 1.142 thorpej
422 1.142 thorpej int
423 1.261 dyoung rf_autoconfig(device_t self)
424 1.142 thorpej {
425 1.142 thorpej RF_AutoConfig_t *ac_list;
426 1.142 thorpej RF_ConfigSet_t *config_sets;
427 1.142 thorpej
428 1.295 erh if (!raidautoconfig || raidautoconfigdone == true)
429 1.142 thorpej return (0);
430 1.142 thorpej
431 1.142 thorpej /* XXX This code can only be run once. */
432 1.295 erh raidautoconfigdone = true;
433 1.142 thorpej
434 1.307 christos #ifdef __HAVE_CPU_BOOTCONF
435 1.307 christos /*
436 1.307 christos * 0. find the boot device if needed first so we can use it later
437 1.307 christos * this needs to be done before we autoconfigure any raid sets,
438 1.307 christos * because if we use wedges we are not going to be able to open
439 1.307 christos * the boot device later
440 1.307 christos */
441 1.307 christos if (booted_device == NULL)
442 1.307 christos cpu_bootconf();
443 1.307 christos #endif
444 1.48 oster /* 1. locate all RAID components on the system */
445 1.258 ad aprint_debug("Searching for RAID components...\n");
446 1.48 oster ac_list = rf_find_raid_components();
447 1.48 oster
448 1.142 thorpej /* 2. Sort them into their respective sets. */
449 1.48 oster config_sets = rf_create_auto_sets(ac_list);
450 1.48 oster
451 1.142 thorpej /*
452 1.299 oster * 3. Evaluate each set and configure the valid ones.
453 1.142 thorpej * This gets done in rf_buildroothack().
454 1.142 thorpej */
455 1.142 thorpej rf_buildroothack(config_sets);
456 1.48 oster
457 1.213 christos return 1;
458 1.48 oster }
459 1.48 oster
460 1.306 christos static int
461 1.307 christos rf_containsboot(RF_Raid_t *r, device_t bdv) {
462 1.307 christos const char *bootname = device_xname(bdv);
463 1.306 christos size_t len = strlen(bootname);
464 1.306 christos
465 1.306 christos for (int col = 0; col < r->numCol; col++) {
466 1.307 christos const char *devname = r->Disks[col].devname;
467 1.306 christos devname += sizeof("/dev/") - 1;
468 1.307 christos if (strncmp(devname, "dk", 2) == 0) {
469 1.307 christos const char *parent =
470 1.307 christos dkwedge_get_parent_name(r->Disks[col].dev);
471 1.307 christos if (parent != NULL)
472 1.307 christos devname = parent;
473 1.307 christos }
474 1.306 christos if (strncmp(devname, bootname, len) == 0) {
475 1.306 christos struct raid_softc *sc = r->softc;
476 1.306 christos aprint_debug("raid%d includes boot device %s\n",
477 1.306 christos sc->sc_unit, devname);
478 1.306 christos return 1;
479 1.306 christos }
480 1.306 christos }
481 1.306 christos return 0;
482 1.306 christos }
483 1.306 christos
484 1.48 oster void
485 1.142 thorpej rf_buildroothack(RF_ConfigSet_t *config_sets)
486 1.48 oster {
487 1.48 oster RF_ConfigSet_t *cset;
488 1.48 oster RF_ConfigSet_t *next_cset;
489 1.51 oster int num_root;
490 1.300 christos struct raid_softc *sc, *rsc;
491 1.48 oster
492 1.300 christos sc = rsc = NULL;
493 1.51 oster num_root = 0;
494 1.48 oster cset = config_sets;
495 1.271 dyoung while (cset != NULL) {
496 1.48 oster next_cset = cset->next;
497 1.186 perry if (rf_have_enough_components(cset) &&
498 1.300 christos cset->ac->clabel->autoconfigure == 1) {
499 1.300 christos sc = rf_auto_config_set(cset);
500 1.300 christos if (sc != NULL) {
501 1.300 christos aprint_debug("raid%d: configured ok\n",
502 1.300 christos sc->sc_unit);
503 1.51 oster if (cset->rootable) {
504 1.300 christos rsc = sc;
505 1.51 oster num_root++;
506 1.51 oster }
507 1.51 oster } else {
508 1.51 oster /* The autoconfig didn't work :( */
509 1.300 christos aprint_debug("Autoconfig failed\n");
510 1.51 oster rf_release_all_vps(cset);
511 1.48 oster }
512 1.48 oster } else {
513 1.186 perry /* we're not autoconfiguring this set...
514 1.48 oster release the associated resources */
515 1.49 oster rf_release_all_vps(cset);
516 1.48 oster }
517 1.48 oster /* cleanup */
518 1.49 oster rf_cleanup_config_set(cset);
519 1.48 oster cset = next_cset;
520 1.48 oster }
521 1.122 oster
522 1.223 oster /* if the user has specified what the root device should be
523 1.223 oster then we don't touch booted_device or boothowto... */
524 1.223 oster
525 1.223 oster if (rootspec != NULL)
526 1.223 oster return;
527 1.223 oster
528 1.122 oster /* we found something bootable... */
529 1.122 oster
530 1.122 oster if (num_root == 1) {
531 1.306 christos device_t candidate_root;
532 1.300 christos if (rsc->sc_dkdev.dk_nwedges != 0) {
533 1.297 christos /* XXX: How do we find the real root partition? */
534 1.297 christos char cname[sizeof(cset->ac->devname)];
535 1.297 christos snprintf(cname, sizeof(cname), "%s%c",
536 1.300 christos device_xname(rsc->sc_dev), 'a');
537 1.306 christos candidate_root = dkwedge_find_by_wname(cname);
538 1.297 christos } else
539 1.306 christos candidate_root = rsc->sc_dev;
540 1.308 christos if (booted_device == NULL ||
541 1.308 christos rsc->sc_r.root_partition == 1 ||
542 1.308 christos rf_containsboot(&rsc->sc_r, booted_device))
543 1.308 christos booted_device = candidate_root;
544 1.122 oster } else if (num_root > 1) {
545 1.226 oster
546 1.226 oster /*
547 1.226 oster * Maybe the MD code can help. If it cannot, then
548 1.226 oster * setroot() will discover that we have no
549 1.226 oster * booted_device and will ask the user if nothing was
550 1.226 oster * hardwired in the kernel config file
551 1.226 oster */
552 1.226 oster if (booted_device == NULL)
553 1.226 oster return;
554 1.226 oster
555 1.226 oster num_root = 0;
556 1.300 christos mutex_enter(&raid_lock);
557 1.300 christos LIST_FOREACH(sc, &raids, sc_link) {
558 1.300 christos RF_Raid_t *r = &sc->sc_r;
559 1.300 christos if (r->valid == 0)
560 1.226 oster continue;
561 1.226 oster
562 1.300 christos if (r->root_partition == 0)
563 1.226 oster continue;
564 1.226 oster
565 1.306 christos if (rf_containsboot(r, booted_device)) {
566 1.226 oster num_root++;
567 1.300 christos rsc = sc;
568 1.226 oster }
569 1.226 oster }
570 1.300 christos mutex_exit(&raid_lock);
571 1.295 erh
572 1.226 oster if (num_root == 1) {
573 1.300 christos booted_device = rsc->sc_dev;
574 1.226 oster } else {
575 1.226 oster /* we can't guess.. require the user to answer... */
576 1.226 oster boothowto |= RB_ASKNAME;
577 1.226 oster }
578 1.51 oster }
579 1.1 oster }
580 1.1 oster
581 1.1 oster
582 1.1 oster int
583 1.169 oster raidsize(dev_t dev)
584 1.1 oster {
585 1.1 oster struct raid_softc *rs;
586 1.1 oster struct disklabel *lp;
587 1.9 oster int part, unit, omask, size;
588 1.1 oster
589 1.1 oster unit = raidunit(dev);
590 1.300 christos if ((rs = raidget(unit)) == NULL)
591 1.300 christos return -1;
592 1.1 oster if ((rs->sc_flags & RAIDF_INITED) == 0)
593 1.1 oster return (-1);
594 1.1 oster
595 1.1 oster part = DISKPART(dev);
596 1.1 oster omask = rs->sc_dkdev.dk_openmask & (1 << part);
597 1.1 oster lp = rs->sc_dkdev.dk_label;
598 1.1 oster
599 1.192 christos if (omask == 0 && raidopen(dev, 0, S_IFBLK, curlwp))
600 1.1 oster return (-1);
601 1.1 oster
602 1.1 oster if (lp->d_partitions[part].p_fstype != FS_SWAP)
603 1.1 oster size = -1;
604 1.1 oster else
605 1.1 oster size = lp->d_partitions[part].p_size *
606 1.1 oster (lp->d_secsize / DEV_BSIZE);
607 1.1 oster
608 1.192 christos if (omask == 0 && raidclose(dev, 0, S_IFBLK, curlwp))
609 1.1 oster return (-1);
610 1.1 oster
611 1.1 oster return (size);
612 1.1 oster
613 1.1 oster }
614 1.1 oster
615 1.1 oster int
616 1.231 oster raiddump(dev_t dev, daddr_t blkno, void *va, size_t size)
617 1.1 oster {
618 1.231 oster int unit = raidunit(dev);
619 1.231 oster struct raid_softc *rs;
620 1.231 oster const struct bdevsw *bdev;
621 1.231 oster struct disklabel *lp;
622 1.231 oster RF_Raid_t *raidPtr;
623 1.231 oster daddr_t offset;
624 1.231 oster int part, c, sparecol, j, scol, dumpto;
625 1.231 oster int error = 0;
626 1.231 oster
627 1.300 christos if ((rs = raidget(unit)) == NULL)
628 1.300 christos return ENXIO;
629 1.231 oster
630 1.300 christos raidPtr = &rs->sc_r;
631 1.231 oster
632 1.231 oster if ((rs->sc_flags & RAIDF_INITED) == 0)
633 1.231 oster return ENXIO;
634 1.231 oster
635 1.231 oster /* we only support dumping to RAID 1 sets */
636 1.231 oster if (raidPtr->Layout.numDataCol != 1 ||
637 1.231 oster raidPtr->Layout.numParityCol != 1)
638 1.231 oster return EINVAL;
639 1.231 oster
640 1.231 oster
641 1.231 oster if ((error = raidlock(rs)) != 0)
642 1.231 oster return error;
643 1.231 oster
644 1.231 oster if (size % DEV_BSIZE != 0) {
645 1.231 oster error = EINVAL;
646 1.231 oster goto out;
647 1.231 oster }
648 1.231 oster
649 1.231 oster if (blkno + size / DEV_BSIZE > rs->sc_size) {
650 1.231 oster printf("%s: blkno (%" PRIu64 ") + size / DEV_BSIZE (%zu) > "
651 1.231 oster "sc->sc_size (%" PRIu64 ")\n", __func__, blkno,
652 1.231 oster size / DEV_BSIZE, rs->sc_size);
653 1.231 oster error = EINVAL;
654 1.231 oster goto out;
655 1.231 oster }
656 1.231 oster
657 1.231 oster part = DISKPART(dev);
658 1.231 oster lp = rs->sc_dkdev.dk_label;
659 1.231 oster offset = lp->d_partitions[part].p_offset + RF_PROTECTED_SECTORS;
660 1.231 oster
661 1.231 oster /* figure out what device is alive.. */
662 1.231 oster
663 1.231 oster /*
664 1.231 oster Look for a component to dump to. The preference for the
665 1.231 oster component to dump to is as follows:
666 1.231 oster 1) the master
667 1.231 oster 2) a used_spare of the master
668 1.231 oster 3) the slave
669 1.231 oster 4) a used_spare of the slave
670 1.231 oster */
671 1.231 oster
672 1.231 oster dumpto = -1;
673 1.231 oster for (c = 0; c < raidPtr->numCol; c++) {
674 1.231 oster if (raidPtr->Disks[c].status == rf_ds_optimal) {
675 1.231 oster /* this might be the one */
676 1.231 oster dumpto = c;
677 1.231 oster break;
678 1.231 oster }
679 1.231 oster }
680 1.231 oster
681 1.231 oster /*
682 1.231 oster At this point we have possibly selected a live master or a
683 1.231 oster live slave. We now check to see if there is a spared
684 1.231 oster master (or a spared slave), if we didn't find a live master
685 1.231 oster or a live slave.
686 1.231 oster */
687 1.231 oster
688 1.231 oster for (c = 0; c < raidPtr->numSpare; c++) {
689 1.231 oster sparecol = raidPtr->numCol + c;
690 1.231 oster if (raidPtr->Disks[sparecol].status == rf_ds_used_spare) {
691 1.231 oster /* How about this one? */
692 1.231 oster scol = -1;
693 1.231 oster for(j=0;j<raidPtr->numCol;j++) {
694 1.231 oster if (raidPtr->Disks[j].spareCol == sparecol) {
695 1.231 oster scol = j;
696 1.231 oster break;
697 1.231 oster }
698 1.231 oster }
699 1.231 oster if (scol == 0) {
700 1.231 oster /*
701 1.231 oster We must have found a spared master!
702 1.231 oster We'll take that over anything else
703 1.231 oster found so far. (We couldn't have
704 1.231 oster found a real master before, since
705 1.231 oster this is a used spare, and it's
706 1.231 oster saying that it's replacing the
707 1.231 oster master.) On reboot (with
708 1.231 oster autoconfiguration turned on)
709 1.231 oster sparecol will become the 1st
710 1.231 oster component (component0) of this set.
711 1.231 oster */
712 1.231 oster dumpto = sparecol;
713 1.231 oster break;
714 1.231 oster } else if (scol != -1) {
715 1.231 oster /*
716 1.231 oster Must be a spared slave. We'll dump
717 1.231 oster to that if we havn't found anything
718 1.231 oster else so far.
719 1.231 oster */
720 1.231 oster if (dumpto == -1)
721 1.231 oster dumpto = sparecol;
722 1.231 oster }
723 1.231 oster }
724 1.231 oster }
725 1.231 oster
726 1.231 oster if (dumpto == -1) {
727 1.231 oster /* we couldn't find any live components to dump to!?!?
728 1.231 oster */
729 1.231 oster error = EINVAL;
730 1.231 oster goto out;
731 1.231 oster }
732 1.231 oster
733 1.231 oster bdev = bdevsw_lookup(raidPtr->Disks[dumpto].dev);
734 1.231 oster
735 1.231 oster /*
736 1.231 oster Note that blkno is relative to this particular partition.
737 1.231 oster By adding the offset of this partition in the RAID
738 1.231 oster set, and also adding RF_PROTECTED_SECTORS, we get a
739 1.231 oster value that is relative to the partition used for the
740 1.231 oster underlying component.
741 1.231 oster */
742 1.231 oster
743 1.231 oster error = (*bdev->d_dump)(raidPtr->Disks[dumpto].dev,
744 1.231 oster blkno + offset, va, size);
745 1.231 oster
746 1.231 oster out:
747 1.231 oster raidunlock(rs);
748 1.231 oster
749 1.231 oster return error;
750 1.1 oster }
751 1.1 oster /* ARGSUSED */
752 1.1 oster int
753 1.222 christos raidopen(dev_t dev, int flags, int fmt,
754 1.222 christos struct lwp *l)
755 1.1 oster {
756 1.9 oster int unit = raidunit(dev);
757 1.1 oster struct raid_softc *rs;
758 1.1 oster struct disklabel *lp;
759 1.9 oster int part, pmask;
760 1.9 oster int error = 0;
761 1.9 oster
762 1.300 christos if ((rs = raidget(unit)) == NULL)
763 1.300 christos return ENXIO;
764 1.1 oster if ((error = raidlock(rs)) != 0)
765 1.9 oster return (error);
766 1.266 dyoung
767 1.266 dyoung if ((rs->sc_flags & RAIDF_SHUTDOWN) != 0) {
768 1.266 dyoung error = EBUSY;
769 1.266 dyoung goto bad;
770 1.266 dyoung }
771 1.266 dyoung
772 1.1 oster lp = rs->sc_dkdev.dk_label;
773 1.1 oster
774 1.1 oster part = DISKPART(dev);
775 1.213 christos
776 1.213 christos /*
777 1.213 christos * If there are wedges, and this is not RAW_PART, then we
778 1.213 christos * need to fail.
779 1.213 christos */
780 1.213 christos if (rs->sc_dkdev.dk_nwedges != 0 && part != RAW_PART) {
781 1.213 christos error = EBUSY;
782 1.213 christos goto bad;
783 1.213 christos }
784 1.1 oster pmask = (1 << part);
785 1.1 oster
786 1.1 oster if ((rs->sc_flags & RAIDF_INITED) &&
787 1.1 oster (rs->sc_dkdev.dk_openmask == 0))
788 1.9 oster raidgetdisklabel(dev);
789 1.1 oster
790 1.1 oster /* make sure that this partition exists */
791 1.1 oster
792 1.1 oster if (part != RAW_PART) {
793 1.1 oster if (((rs->sc_flags & RAIDF_INITED) == 0) ||
794 1.1 oster ((part >= lp->d_npartitions) ||
795 1.9 oster (lp->d_partitions[part].p_fstype == FS_UNUSED))) {
796 1.1 oster error = ENXIO;
797 1.213 christos goto bad;
798 1.1 oster }
799 1.1 oster }
800 1.1 oster /* Prevent this unit from being unconfigured while open. */
801 1.1 oster switch (fmt) {
802 1.1 oster case S_IFCHR:
803 1.1 oster rs->sc_dkdev.dk_copenmask |= pmask;
804 1.1 oster break;
805 1.1 oster
806 1.1 oster case S_IFBLK:
807 1.1 oster rs->sc_dkdev.dk_bopenmask |= pmask;
808 1.1 oster break;
809 1.1 oster }
810 1.13 oster
811 1.186 perry if ((rs->sc_dkdev.dk_openmask == 0) &&
812 1.13 oster ((rs->sc_flags & RAIDF_INITED) != 0)) {
813 1.13 oster /* First one... mark things as dirty... Note that we *MUST*
814 1.13 oster have done a configure before this. I DO NOT WANT TO BE
815 1.13 oster SCRIBBLING TO RANDOM COMPONENTS UNTIL IT'S BEEN DETERMINED
816 1.13 oster THAT THEY BELONG TOGETHER!!!!! */
817 1.13 oster /* XXX should check to see if we're only open for reading
818 1.13 oster here... If so, we needn't do this, but then need some
819 1.13 oster other way of keeping track of what's happened.. */
820 1.13 oster
821 1.300 christos rf_markalldirty(&rs->sc_r);
822 1.13 oster }
823 1.13 oster
824 1.13 oster
825 1.1 oster rs->sc_dkdev.dk_openmask =
826 1.1 oster rs->sc_dkdev.dk_copenmask | rs->sc_dkdev.dk_bopenmask;
827 1.1 oster
828 1.213 christos bad:
829 1.1 oster raidunlock(rs);
830 1.1 oster
831 1.9 oster return (error);
832 1.1 oster
833 1.1 oster
834 1.1 oster }
835 1.1 oster /* ARGSUSED */
836 1.1 oster int
837 1.222 christos raidclose(dev_t dev, int flags, int fmt, struct lwp *l)
838 1.1 oster {
839 1.9 oster int unit = raidunit(dev);
840 1.1 oster struct raid_softc *rs;
841 1.9 oster int error = 0;
842 1.9 oster int part;
843 1.1 oster
844 1.300 christos if ((rs = raidget(unit)) == NULL)
845 1.300 christos return ENXIO;
846 1.1 oster
847 1.1 oster if ((error = raidlock(rs)) != 0)
848 1.1 oster return (error);
849 1.1 oster
850 1.1 oster part = DISKPART(dev);
851 1.1 oster
852 1.1 oster /* ...that much closer to allowing unconfiguration... */
853 1.1 oster switch (fmt) {
854 1.1 oster case S_IFCHR:
855 1.1 oster rs->sc_dkdev.dk_copenmask &= ~(1 << part);
856 1.1 oster break;
857 1.1 oster
858 1.1 oster case S_IFBLK:
859 1.1 oster rs->sc_dkdev.dk_bopenmask &= ~(1 << part);
860 1.1 oster break;
861 1.1 oster }
862 1.1 oster rs->sc_dkdev.dk_openmask =
863 1.1 oster rs->sc_dkdev.dk_copenmask | rs->sc_dkdev.dk_bopenmask;
864 1.186 perry
865 1.13 oster if ((rs->sc_dkdev.dk_openmask == 0) &&
866 1.13 oster ((rs->sc_flags & RAIDF_INITED) != 0)) {
867 1.186 perry /* Last one... device is not unconfigured yet.
868 1.186 perry Device shutdown has taken care of setting the
869 1.186 perry clean bits if RAIDF_INITED is not set
870 1.13 oster mark things as clean... */
871 1.147 oster
872 1.300 christos rf_update_component_labels(&rs->sc_r,
873 1.91 oster RF_FINAL_COMPONENT_UPDATE);
874 1.186 perry
875 1.266 dyoung /* If the kernel is shutting down, it will detach
876 1.266 dyoung * this RAID set soon enough.
877 1.266 dyoung */
878 1.13 oster }
879 1.1 oster
880 1.1 oster raidunlock(rs);
881 1.1 oster return (0);
882 1.1 oster
883 1.1 oster }
884 1.1 oster
885 1.1 oster void
886 1.169 oster raidstrategy(struct buf *bp)
887 1.1 oster {
888 1.300 christos unsigned int unit = raidunit(bp->b_dev);
889 1.1 oster RF_Raid_t *raidPtr;
890 1.9 oster int wlabel;
891 1.300 christos struct raid_softc *rs;
892 1.1 oster
893 1.300 christos if ((rs = raidget(unit)) == NULL) {
894 1.30 oster bp->b_error = ENXIO;
895 1.196 yamt goto done;
896 1.30 oster }
897 1.300 christos if ((rs->sc_flags & RAIDF_INITED) == 0) {
898 1.300 christos bp->b_error = ENXIO;
899 1.196 yamt goto done;
900 1.1 oster }
901 1.300 christos raidPtr = &rs->sc_r;
902 1.1 oster if (!raidPtr->valid) {
903 1.1 oster bp->b_error = ENODEV;
904 1.196 yamt goto done;
905 1.1 oster }
906 1.1 oster if (bp->b_bcount == 0) {
907 1.1 oster db1_printf(("b_bcount is zero..\n"));
908 1.196 yamt goto done;
909 1.1 oster }
910 1.1 oster
911 1.1 oster /*
912 1.1 oster * Do bounds checking and adjust transfer. If there's an
913 1.1 oster * error, the bounds check will flag that for us.
914 1.1 oster */
915 1.1 oster
916 1.9 oster wlabel = rs->sc_flags & (RAIDF_WLABEL | RAIDF_LABELLING);
917 1.196 yamt if (DISKPART(bp->b_dev) == RAW_PART) {
918 1.196 yamt uint64_t size; /* device size in DEV_BSIZE unit */
919 1.196 yamt
920 1.196 yamt if (raidPtr->logBytesPerSector > DEV_BSHIFT) {
921 1.196 yamt size = raidPtr->totalSectors <<
922 1.196 yamt (raidPtr->logBytesPerSector - DEV_BSHIFT);
923 1.196 yamt } else {
924 1.196 yamt size = raidPtr->totalSectors >>
925 1.196 yamt (DEV_BSHIFT - raidPtr->logBytesPerSector);
926 1.196 yamt }
927 1.196 yamt if (bounds_check_with_mediasize(bp, DEV_BSIZE, size) <= 0) {
928 1.196 yamt goto done;
929 1.196 yamt }
930 1.196 yamt } else {
931 1.159 thorpej if (bounds_check_with_label(&rs->sc_dkdev, bp, wlabel) <= 0) {
932 1.1 oster db1_printf(("Bounds check failed!!:%d %d\n",
933 1.9 oster (int) bp->b_blkno, (int) wlabel));
934 1.196 yamt goto done;
935 1.1 oster }
936 1.196 yamt }
937 1.285 mrg
938 1.286 mrg rf_lock_mutex2(raidPtr->iodone_lock);
939 1.1 oster
940 1.1 oster bp->b_resid = 0;
941 1.34 oster
942 1.34 oster /* stuff it onto our queue */
943 1.253 yamt bufq_put(rs->buf_queue, bp);
944 1.34 oster
945 1.190 oster /* scheduled the IO to happen at the next convenient time */
946 1.286 mrg rf_signal_cond2(raidPtr->iodone_cv);
947 1.286 mrg rf_unlock_mutex2(raidPtr->iodone_lock);
948 1.34 oster
949 1.196 yamt return;
950 1.196 yamt
951 1.196 yamt done:
952 1.196 yamt bp->b_resid = bp->b_bcount;
953 1.196 yamt biodone(bp);
954 1.1 oster }
955 1.1 oster /* ARGSUSED */
956 1.1 oster int
957 1.222 christos raidread(dev_t dev, struct uio *uio, int flags)
958 1.1 oster {
959 1.9 oster int unit = raidunit(dev);
960 1.1 oster struct raid_softc *rs;
961 1.1 oster
962 1.300 christos if ((rs = raidget(unit)) == NULL)
963 1.300 christos return ENXIO;
964 1.1 oster
965 1.1 oster if ((rs->sc_flags & RAIDF_INITED) == 0)
966 1.1 oster return (ENXIO);
967 1.1 oster
968 1.1 oster return (physio(raidstrategy, NULL, dev, B_READ, minphys, uio));
969 1.1 oster
970 1.1 oster }
971 1.1 oster /* ARGSUSED */
972 1.1 oster int
973 1.222 christos raidwrite(dev_t dev, struct uio *uio, int flags)
974 1.1 oster {
975 1.9 oster int unit = raidunit(dev);
976 1.1 oster struct raid_softc *rs;
977 1.1 oster
978 1.300 christos if ((rs = raidget(unit)) == NULL)
979 1.300 christos return ENXIO;
980 1.1 oster
981 1.1 oster if ((rs->sc_flags & RAIDF_INITED) == 0)
982 1.1 oster return (ENXIO);
983 1.147 oster
984 1.1 oster return (physio(raidstrategy, NULL, dev, B_WRITE, minphys, uio));
985 1.1 oster
986 1.1 oster }
987 1.1 oster
988 1.266 dyoung static int
989 1.266 dyoung raid_detach_unlocked(struct raid_softc *rs)
990 1.266 dyoung {
991 1.266 dyoung int error;
992 1.266 dyoung RF_Raid_t *raidPtr;
993 1.266 dyoung
994 1.300 christos raidPtr = &rs->sc_r;
995 1.266 dyoung
996 1.266 dyoung /*
997 1.266 dyoung * If somebody has a partition mounted, we shouldn't
998 1.266 dyoung * shutdown.
999 1.266 dyoung */
1000 1.266 dyoung if (rs->sc_dkdev.dk_openmask != 0)
1001 1.266 dyoung return EBUSY;
1002 1.266 dyoung
1003 1.266 dyoung if ((rs->sc_flags & RAIDF_INITED) == 0)
1004 1.266 dyoung ; /* not initialized: nothing to do */
1005 1.266 dyoung else if ((error = rf_Shutdown(raidPtr)) != 0)
1006 1.266 dyoung return error;
1007 1.266 dyoung else
1008 1.266 dyoung rs->sc_flags &= ~(RAIDF_INITED|RAIDF_SHUTDOWN);
1009 1.266 dyoung
1010 1.266 dyoung /* Detach the disk. */
1011 1.280 christos dkwedge_delall(&rs->sc_dkdev);
1012 1.266 dyoung disk_detach(&rs->sc_dkdev);
1013 1.266 dyoung disk_destroy(&rs->sc_dkdev);
1014 1.266 dyoung
1015 1.290 mrg aprint_normal_dev(rs->sc_dev, "detached\n");
1016 1.290 mrg
1017 1.266 dyoung return 0;
1018 1.266 dyoung }
1019 1.266 dyoung
1020 1.1 oster int
1021 1.225 christos raidioctl(dev_t dev, u_long cmd, void *data, int flag, struct lwp *l)
1022 1.1 oster {
1023 1.9 oster int unit = raidunit(dev);
1024 1.9 oster int error = 0;
1025 1.298 buhrow int part, pmask, s;
1026 1.262 cegger cfdata_t cf;
1027 1.1 oster struct raid_softc *rs;
1028 1.1 oster RF_Config_t *k_cfg, *u_cfg;
1029 1.42 oster RF_Raid_t *raidPtr;
1030 1.48 oster RF_RaidDisk_t *diskPtr;
1031 1.41 oster RF_AccTotals_t *totals;
1032 1.41 oster RF_DeviceConfig_t *d_cfg, **ucfgp;
1033 1.1 oster u_char *specific_buf;
1034 1.11 oster int retcode = 0;
1035 1.11 oster int column;
1036 1.269 jld /* int raidid; */
1037 1.1 oster struct rf_recon_req *rrcopy, *rr;
1038 1.48 oster RF_ComponentLabel_t *clabel;
1039 1.209 oster RF_ComponentLabel_t *ci_label;
1040 1.48 oster RF_ComponentLabel_t **clabel_ptr;
1041 1.12 oster RF_SingleComponent_t *sparePtr,*componentPtr;
1042 1.12 oster RF_SingleComponent_t component;
1043 1.83 oster RF_ProgressInfo_t progressInfo, **progressInfoPtr;
1044 1.41 oster int i, j, d;
1045 1.102 fvdl #ifdef __HAVE_OLD_DISKLABEL
1046 1.102 fvdl struct disklabel newlabel;
1047 1.102 fvdl #endif
1048 1.213 christos struct dkwedge_info *dkw;
1049 1.1 oster
1050 1.300 christos if ((rs = raidget(unit)) == NULL)
1051 1.300 christos return ENXIO;
1052 1.300 christos raidPtr = &rs->sc_r;
1053 1.1 oster
1054 1.276 mrg db1_printf(("raidioctl: %d %d %d %lu\n", (int) dev,
1055 1.276 mrg (int) DISKPART(dev), (int) unit, cmd));
1056 1.1 oster
1057 1.1 oster /* Must be open for writes for these commands... */
1058 1.1 oster switch (cmd) {
1059 1.213 christos #ifdef DIOCGSECTORSIZE
1060 1.213 christos case DIOCGSECTORSIZE:
1061 1.213 christos *(u_int *)data = raidPtr->bytesPerSector;
1062 1.213 christos return 0;
1063 1.213 christos case DIOCGMEDIASIZE:
1064 1.213 christos *(off_t *)data =
1065 1.213 christos (off_t)raidPtr->totalSectors * raidPtr->bytesPerSector;
1066 1.213 christos return 0;
1067 1.213 christos #endif
1068 1.1 oster case DIOCSDINFO:
1069 1.1 oster case DIOCWDINFO:
1070 1.102 fvdl #ifdef __HAVE_OLD_DISKLABEL
1071 1.102 fvdl case ODIOCWDINFO:
1072 1.102 fvdl case ODIOCSDINFO:
1073 1.102 fvdl #endif
1074 1.1 oster case DIOCWLABEL:
1075 1.213 christos case DIOCAWEDGE:
1076 1.213 christos case DIOCDWEDGE:
1077 1.298 buhrow case DIOCSSTRATEGY:
1078 1.1 oster if ((flag & FWRITE) == 0)
1079 1.1 oster return (EBADF);
1080 1.1 oster }
1081 1.1 oster
1082 1.1 oster /* Must be initialized for these... */
1083 1.1 oster switch (cmd) {
1084 1.1 oster case DIOCGDINFO:
1085 1.1 oster case DIOCSDINFO:
1086 1.1 oster case DIOCWDINFO:
1087 1.102 fvdl #ifdef __HAVE_OLD_DISKLABEL
1088 1.102 fvdl case ODIOCGDINFO:
1089 1.102 fvdl case ODIOCWDINFO:
1090 1.102 fvdl case ODIOCSDINFO:
1091 1.102 fvdl case ODIOCGDEFLABEL:
1092 1.102 fvdl #endif
1093 1.1 oster case DIOCGPART:
1094 1.1 oster case DIOCWLABEL:
1095 1.1 oster case DIOCGDEFLABEL:
1096 1.213 christos case DIOCAWEDGE:
1097 1.213 christos case DIOCDWEDGE:
1098 1.213 christos case DIOCLWEDGES:
1099 1.252 oster case DIOCCACHESYNC:
1100 1.1 oster case RAIDFRAME_SHUTDOWN:
1101 1.1 oster case RAIDFRAME_REWRITEPARITY:
1102 1.1 oster case RAIDFRAME_GET_INFO:
1103 1.1 oster case RAIDFRAME_RESET_ACCTOTALS:
1104 1.1 oster case RAIDFRAME_GET_ACCTOTALS:
1105 1.1 oster case RAIDFRAME_KEEP_ACCTOTALS:
1106 1.1 oster case RAIDFRAME_GET_SIZE:
1107 1.1 oster case RAIDFRAME_FAIL_DISK:
1108 1.1 oster case RAIDFRAME_COPYBACK:
1109 1.37 oster case RAIDFRAME_CHECK_RECON_STATUS:
1110 1.83 oster case RAIDFRAME_CHECK_RECON_STATUS_EXT:
1111 1.11 oster case RAIDFRAME_GET_COMPONENT_LABEL:
1112 1.11 oster case RAIDFRAME_SET_COMPONENT_LABEL:
1113 1.11 oster case RAIDFRAME_ADD_HOT_SPARE:
1114 1.11 oster case RAIDFRAME_REMOVE_HOT_SPARE:
1115 1.11 oster case RAIDFRAME_INIT_LABELS:
1116 1.12 oster case RAIDFRAME_REBUILD_IN_PLACE:
1117 1.23 oster case RAIDFRAME_CHECK_PARITY:
1118 1.37 oster case RAIDFRAME_CHECK_PARITYREWRITE_STATUS:
1119 1.83 oster case RAIDFRAME_CHECK_PARITYREWRITE_STATUS_EXT:
1120 1.37 oster case RAIDFRAME_CHECK_COPYBACK_STATUS:
1121 1.83 oster case RAIDFRAME_CHECK_COPYBACK_STATUS_EXT:
1122 1.48 oster case RAIDFRAME_SET_AUTOCONFIG:
1123 1.48 oster case RAIDFRAME_SET_ROOT:
1124 1.73 oster case RAIDFRAME_DELETE_COMPONENT:
1125 1.73 oster case RAIDFRAME_INCORPORATE_HOT_SPARE:
1126 1.269 jld case RAIDFRAME_PARITYMAP_STATUS:
1127 1.269 jld case RAIDFRAME_PARITYMAP_GET_DISABLE:
1128 1.269 jld case RAIDFRAME_PARITYMAP_SET_DISABLE:
1129 1.269 jld case RAIDFRAME_PARITYMAP_SET_PARAMS:
1130 1.298 buhrow case DIOCGSTRATEGY:
1131 1.298 buhrow case DIOCSSTRATEGY:
1132 1.1 oster if ((rs->sc_flags & RAIDF_INITED) == 0)
1133 1.1 oster return (ENXIO);
1134 1.1 oster }
1135 1.9 oster
1136 1.1 oster switch (cmd) {
1137 1.254 christos #ifdef COMPAT_50
1138 1.254 christos case RAIDFRAME_GET_INFO50:
1139 1.254 christos return rf_get_info50(raidPtr, data);
1140 1.254 christos
1141 1.254 christos case RAIDFRAME_CONFIGURE50:
1142 1.254 christos if ((retcode = rf_config50(raidPtr, unit, data, &k_cfg)) != 0)
1143 1.254 christos return retcode;
1144 1.254 christos goto config;
1145 1.254 christos #endif
1146 1.1 oster /* configure the system */
1147 1.1 oster case RAIDFRAME_CONFIGURE:
1148 1.48 oster
1149 1.48 oster if (raidPtr->valid) {
1150 1.48 oster /* There is a valid RAID set running on this unit! */
1151 1.48 oster printf("raid%d: Device already configured!\n",unit);
1152 1.66 oster return(EINVAL);
1153 1.48 oster }
1154 1.48 oster
1155 1.1 oster /* copy-in the configuration information */
1156 1.1 oster /* data points to a pointer to the configuration structure */
1157 1.43 oster
1158 1.9 oster u_cfg = *((RF_Config_t **) data);
1159 1.9 oster RF_Malloc(k_cfg, sizeof(RF_Config_t), (RF_Config_t *));
1160 1.1 oster if (k_cfg == NULL) {
1161 1.9 oster return (ENOMEM);
1162 1.1 oster }
1163 1.156 dsl retcode = copyin(u_cfg, k_cfg, sizeof(RF_Config_t));
1164 1.1 oster if (retcode) {
1165 1.33 oster RF_Free(k_cfg, sizeof(RF_Config_t));
1166 1.46 oster db1_printf(("rf_ioctl: retcode=%d copyin.1\n",
1167 1.9 oster retcode));
1168 1.9 oster return (retcode);
1169 1.1 oster }
1170 1.254 christos goto config;
1171 1.254 christos config:
1172 1.9 oster /* allocate a buffer for the layout-specific data, and copy it
1173 1.9 oster * in */
1174 1.1 oster if (k_cfg->layoutSpecificSize) {
1175 1.9 oster if (k_cfg->layoutSpecificSize > 10000) {
1176 1.1 oster /* sanity check */
1177 1.33 oster RF_Free(k_cfg, sizeof(RF_Config_t));
1178 1.9 oster return (EINVAL);
1179 1.1 oster }
1180 1.9 oster RF_Malloc(specific_buf, k_cfg->layoutSpecificSize,
1181 1.9 oster (u_char *));
1182 1.1 oster if (specific_buf == NULL) {
1183 1.9 oster RF_Free(k_cfg, sizeof(RF_Config_t));
1184 1.9 oster return (ENOMEM);
1185 1.1 oster }
1186 1.156 dsl retcode = copyin(k_cfg->layoutSpecific, specific_buf,
1187 1.9 oster k_cfg->layoutSpecificSize);
1188 1.1 oster if (retcode) {
1189 1.33 oster RF_Free(k_cfg, sizeof(RF_Config_t));
1190 1.186 perry RF_Free(specific_buf,
1191 1.42 oster k_cfg->layoutSpecificSize);
1192 1.46 oster db1_printf(("rf_ioctl: retcode=%d copyin.2\n",
1193 1.9 oster retcode));
1194 1.9 oster return (retcode);
1195 1.1 oster }
1196 1.9 oster } else
1197 1.9 oster specific_buf = NULL;
1198 1.1 oster k_cfg->layoutSpecific = specific_buf;
1199 1.9 oster
1200 1.9 oster /* should do some kind of sanity check on the configuration.
1201 1.9 oster * Store the sum of all the bytes in the last byte? */
1202 1.1 oster
1203 1.1 oster /* configure the system */
1204 1.1 oster
1205 1.48 oster /*
1206 1.48 oster * Clear the entire RAID descriptor, just to make sure
1207 1.186 perry * there is no stale data left in the case of a
1208 1.186 perry * reconfiguration
1209 1.48 oster */
1210 1.277 christos memset(raidPtr, 0, sizeof(*raidPtr));
1211 1.302 christos raidPtr->softc = rs;
1212 1.42 oster raidPtr->raidid = unit;
1213 1.20 oster
1214 1.48 oster retcode = rf_Configure(raidPtr, k_cfg, NULL);
1215 1.1 oster
1216 1.40 oster if (retcode == 0) {
1217 1.37 oster
1218 1.186 perry /* allow this many simultaneous IO's to
1219 1.40 oster this RAID device */
1220 1.42 oster raidPtr->openings = RAIDOUTSTANDING;
1221 1.186 perry
1222 1.300 christos raidinit(rs);
1223 1.59 oster rf_markalldirty(raidPtr);
1224 1.9 oster }
1225 1.1 oster /* free the buffers. No return code here. */
1226 1.1 oster if (k_cfg->layoutSpecificSize) {
1227 1.9 oster RF_Free(specific_buf, k_cfg->layoutSpecificSize);
1228 1.1 oster }
1229 1.9 oster RF_Free(k_cfg, sizeof(RF_Config_t));
1230 1.9 oster
1231 1.9 oster return (retcode);
1232 1.9 oster
1233 1.9 oster /* shutdown the system */
1234 1.1 oster case RAIDFRAME_SHUTDOWN:
1235 1.9 oster
1236 1.266 dyoung part = DISKPART(dev);
1237 1.266 dyoung pmask = (1 << part);
1238 1.266 dyoung
1239 1.9 oster if ((error = raidlock(rs)) != 0)
1240 1.9 oster return (error);
1241 1.1 oster
1242 1.9 oster if ((rs->sc_dkdev.dk_openmask & ~pmask) ||
1243 1.9 oster ((rs->sc_dkdev.dk_bopenmask & pmask) &&
1244 1.266 dyoung (rs->sc_dkdev.dk_copenmask & pmask)))
1245 1.266 dyoung retcode = EBUSY;
1246 1.266 dyoung else {
1247 1.266 dyoung rs->sc_flags |= RAIDF_SHUTDOWN;
1248 1.266 dyoung rs->sc_dkdev.dk_copenmask &= ~pmask;
1249 1.266 dyoung rs->sc_dkdev.dk_bopenmask &= ~pmask;
1250 1.266 dyoung rs->sc_dkdev.dk_openmask &= ~pmask;
1251 1.266 dyoung retcode = 0;
1252 1.9 oster }
1253 1.11 oster
1254 1.266 dyoung raidunlock(rs);
1255 1.1 oster
1256 1.266 dyoung if (retcode != 0)
1257 1.266 dyoung return retcode;
1258 1.16 oster
1259 1.217 oster /* free the pseudo device attach bits */
1260 1.217 oster
1261 1.217 oster cf = device_cfdata(rs->sc_dev);
1262 1.266 dyoung if ((retcode = config_detach(rs->sc_dev, DETACH_QUIET)) == 0)
1263 1.266 dyoung free(cf, M_RAIDFRAME);
1264 1.1 oster
1265 1.9 oster return (retcode);
1266 1.11 oster case RAIDFRAME_GET_COMPONENT_LABEL:
1267 1.48 oster clabel_ptr = (RF_ComponentLabel_t **) data;
1268 1.11 oster /* need to read the component label for the disk indicated
1269 1.48 oster by row,column in clabel */
1270 1.11 oster
1271 1.269 jld /*
1272 1.269 jld * Perhaps there should be an option to skip the in-core
1273 1.269 jld * copy and hit the disk, as with disklabel(8).
1274 1.269 jld */
1275 1.269 jld RF_Malloc(clabel, sizeof(*clabel), (RF_ComponentLabel_t *));
1276 1.11 oster
1277 1.277 christos retcode = copyin(*clabel_ptr, clabel, sizeof(*clabel));
1278 1.11 oster
1279 1.11 oster if (retcode) {
1280 1.277 christos RF_Free(clabel, sizeof(*clabel));
1281 1.277 christos return retcode;
1282 1.11 oster }
1283 1.11 oster
1284 1.166 oster clabel->row = 0; /* Don't allow looking at anything else.*/
1285 1.166 oster
1286 1.48 oster column = clabel->column;
1287 1.26 oster
1288 1.166 oster if ((column < 0) || (column >= raidPtr->numCol +
1289 1.277 christos raidPtr->numSpare)) {
1290 1.277 christos RF_Free(clabel, sizeof(*clabel));
1291 1.277 christos return EINVAL;
1292 1.11 oster }
1293 1.11 oster
1294 1.269 jld RF_Free(clabel, sizeof(*clabel));
1295 1.269 jld
1296 1.269 jld clabel = raidget_component_label(raidPtr, column);
1297 1.11 oster
1298 1.277 christos return copyout(clabel, *clabel_ptr, sizeof(**clabel_ptr));
1299 1.11 oster
1300 1.269 jld #if 0
1301 1.11 oster case RAIDFRAME_SET_COMPONENT_LABEL:
1302 1.48 oster clabel = (RF_ComponentLabel_t *) data;
1303 1.11 oster
1304 1.11 oster /* XXX check the label for valid stuff... */
1305 1.11 oster /* Note that some things *should not* get modified --
1306 1.186 perry the user should be re-initing the labels instead of
1307 1.11 oster trying to patch things.
1308 1.11 oster */
1309 1.11 oster
1310 1.123 oster raidid = raidPtr->raidid;
1311 1.224 oster #ifdef DEBUG
1312 1.123 oster printf("raid%d: Got component label:\n", raidid);
1313 1.123 oster printf("raid%d: Version: %d\n", raidid, clabel->version);
1314 1.123 oster printf("raid%d: Serial Number: %d\n", raidid, clabel->serial_number);
1315 1.123 oster printf("raid%d: Mod counter: %d\n", raidid, clabel->mod_counter);
1316 1.123 oster printf("raid%d: Column: %d\n", raidid, clabel->column);
1317 1.123 oster printf("raid%d: Num Columns: %d\n", raidid, clabel->num_columns);
1318 1.123 oster printf("raid%d: Clean: %d\n", raidid, clabel->clean);
1319 1.123 oster printf("raid%d: Status: %d\n", raidid, clabel->status);
1320 1.174 oster #endif
1321 1.166 oster clabel->row = 0;
1322 1.48 oster column = clabel->column;
1323 1.12 oster
1324 1.166 oster if ((column < 0) || (column >= raidPtr->numCol)) {
1325 1.12 oster return(EINVAL);
1326 1.11 oster }
1327 1.12 oster
1328 1.12 oster /* XXX this isn't allowed to do anything for now :-) */
1329 1.48 oster
1330 1.48 oster /* XXX and before it is, we need to fill in the rest
1331 1.48 oster of the fields!?!?!?! */
1332 1.269 jld memcpy(raidget_component_label(raidPtr, column),
1333 1.269 jld clabel, sizeof(*clabel));
1334 1.269 jld raidflush_component_label(raidPtr, column);
1335 1.269 jld return (0);
1336 1.12 oster #endif
1337 1.11 oster
1338 1.186 perry case RAIDFRAME_INIT_LABELS:
1339 1.48 oster clabel = (RF_ComponentLabel_t *) data;
1340 1.186 perry /*
1341 1.11 oster we only want the serial number from
1342 1.11 oster the above. We get all the rest of the information
1343 1.11 oster from the config that was used to create this RAID
1344 1.186 perry set.
1345 1.11 oster */
1346 1.12 oster
1347 1.48 oster raidPtr->serial_number = clabel->serial_number;
1348 1.186 perry
1349 1.166 oster for(column=0;column<raidPtr->numCol;column++) {
1350 1.166 oster diskPtr = &raidPtr->Disks[column];
1351 1.166 oster if (!RF_DEAD_DISK(diskPtr->status)) {
1352 1.269 jld ci_label = raidget_component_label(raidPtr,
1353 1.269 jld column);
1354 1.269 jld /* Zeroing this is important. */
1355 1.269 jld memset(ci_label, 0, sizeof(*ci_label));
1356 1.269 jld raid_init_component_label(raidPtr, ci_label);
1357 1.269 jld ci_label->serial_number =
1358 1.269 jld raidPtr->serial_number;
1359 1.269 jld ci_label->row = 0; /* we dont' pretend to support more */
1360 1.282 enami rf_component_label_set_partitionsize(ci_label,
1361 1.282 enami diskPtr->partitionSize);
1362 1.209 oster ci_label->column = column;
1363 1.269 jld raidflush_component_label(raidPtr, column);
1364 1.11 oster }
1365 1.269 jld /* XXXjld what about the spares? */
1366 1.11 oster }
1367 1.209 oster
1368 1.11 oster return (retcode);
1369 1.48 oster case RAIDFRAME_SET_AUTOCONFIG:
1370 1.78 minoura d = rf_set_autoconfig(raidPtr, *(int *) data);
1371 1.186 perry printf("raid%d: New autoconfig value is: %d\n",
1372 1.123 oster raidPtr->raidid, d);
1373 1.78 minoura *(int *) data = d;
1374 1.48 oster return (retcode);
1375 1.48 oster
1376 1.48 oster case RAIDFRAME_SET_ROOT:
1377 1.78 minoura d = rf_set_rootpartition(raidPtr, *(int *) data);
1378 1.186 perry printf("raid%d: New rootpartition value is: %d\n",
1379 1.123 oster raidPtr->raidid, d);
1380 1.78 minoura *(int *) data = d;
1381 1.48 oster return (retcode);
1382 1.9 oster
1383 1.1 oster /* initialize all parity */
1384 1.1 oster case RAIDFRAME_REWRITEPARITY:
1385 1.1 oster
1386 1.42 oster if (raidPtr->Layout.map->faultsTolerated == 0) {
1387 1.17 oster /* Parity for RAID 0 is trivially correct */
1388 1.42 oster raidPtr->parity_good = RF_RAID_CLEAN;
1389 1.17 oster return(0);
1390 1.17 oster }
1391 1.186 perry
1392 1.42 oster if (raidPtr->parity_rewrite_in_progress == 1) {
1393 1.37 oster /* Re-write is already in progress! */
1394 1.37 oster return(EINVAL);
1395 1.37 oster }
1396 1.27 oster
1397 1.42 oster retcode = RF_CREATE_THREAD(raidPtr->parity_rewrite_thread,
1398 1.37 oster rf_RewriteParityThread,
1399 1.42 oster raidPtr,"raid_parity");
1400 1.9 oster return (retcode);
1401 1.9 oster
1402 1.11 oster
1403 1.11 oster case RAIDFRAME_ADD_HOT_SPARE:
1404 1.12 oster sparePtr = (RF_SingleComponent_t *) data;
1405 1.209 oster memcpy( &component, sparePtr, sizeof(RF_SingleComponent_t));
1406 1.209 oster retcode = rf_add_hot_spare(raidPtr, &component);
1407 1.11 oster return(retcode);
1408 1.11 oster
1409 1.11 oster case RAIDFRAME_REMOVE_HOT_SPARE:
1410 1.73 oster return(retcode);
1411 1.73 oster
1412 1.73 oster case RAIDFRAME_DELETE_COMPONENT:
1413 1.73 oster componentPtr = (RF_SingleComponent_t *)data;
1414 1.186 perry memcpy( &component, componentPtr,
1415 1.73 oster sizeof(RF_SingleComponent_t));
1416 1.73 oster retcode = rf_delete_component(raidPtr, &component);
1417 1.73 oster return(retcode);
1418 1.73 oster
1419 1.73 oster case RAIDFRAME_INCORPORATE_HOT_SPARE:
1420 1.73 oster componentPtr = (RF_SingleComponent_t *)data;
1421 1.186 perry memcpy( &component, componentPtr,
1422 1.73 oster sizeof(RF_SingleComponent_t));
1423 1.73 oster retcode = rf_incorporate_hot_spare(raidPtr, &component);
1424 1.11 oster return(retcode);
1425 1.11 oster
1426 1.12 oster case RAIDFRAME_REBUILD_IN_PLACE:
1427 1.24 oster
1428 1.42 oster if (raidPtr->Layout.map->faultsTolerated == 0) {
1429 1.24 oster /* Can't do this on a RAID 0!! */
1430 1.24 oster return(EINVAL);
1431 1.24 oster }
1432 1.24 oster
1433 1.42 oster if (raidPtr->recon_in_progress == 1) {
1434 1.37 oster /* a reconstruct is already in progress! */
1435 1.37 oster return(EINVAL);
1436 1.37 oster }
1437 1.37 oster
1438 1.12 oster componentPtr = (RF_SingleComponent_t *) data;
1439 1.186 perry memcpy( &component, componentPtr,
1440 1.12 oster sizeof(RF_SingleComponent_t));
1441 1.166 oster component.row = 0; /* we don't support any more */
1442 1.12 oster column = component.column;
1443 1.147 oster
1444 1.166 oster if ((column < 0) || (column >= raidPtr->numCol)) {
1445 1.12 oster return(EINVAL);
1446 1.12 oster }
1447 1.37 oster
1448 1.291 mrg rf_lock_mutex2(raidPtr->mutex);
1449 1.166 oster if ((raidPtr->Disks[column].status == rf_ds_optimal) &&
1450 1.186 perry (raidPtr->numFailures > 0)) {
1451 1.149 oster /* XXX 0 above shouldn't be constant!!! */
1452 1.149 oster /* some component other than this has failed.
1453 1.149 oster Let's not make things worse than they already
1454 1.149 oster are... */
1455 1.149 oster printf("raid%d: Unable to reconstruct to disk at:\n",
1456 1.149 oster raidPtr->raidid);
1457 1.166 oster printf("raid%d: Col: %d Too many failures.\n",
1458 1.166 oster raidPtr->raidid, column);
1459 1.291 mrg rf_unlock_mutex2(raidPtr->mutex);
1460 1.149 oster return (EINVAL);
1461 1.149 oster }
1462 1.186 perry if (raidPtr->Disks[column].status ==
1463 1.149 oster rf_ds_reconstructing) {
1464 1.149 oster printf("raid%d: Unable to reconstruct to disk at:\n",
1465 1.149 oster raidPtr->raidid);
1466 1.299 oster printf("raid%d: Col: %d Reconstruction already occurring!\n", raidPtr->raidid, column);
1467 1.186 perry
1468 1.291 mrg rf_unlock_mutex2(raidPtr->mutex);
1469 1.149 oster return (EINVAL);
1470 1.149 oster }
1471 1.166 oster if (raidPtr->Disks[column].status == rf_ds_spared) {
1472 1.291 mrg rf_unlock_mutex2(raidPtr->mutex);
1473 1.149 oster return (EINVAL);
1474 1.149 oster }
1475 1.291 mrg rf_unlock_mutex2(raidPtr->mutex);
1476 1.149 oster
1477 1.37 oster RF_Malloc(rrcopy, sizeof(*rrcopy), (struct rf_recon_req *));
1478 1.38 oster if (rrcopy == NULL)
1479 1.38 oster return(ENOMEM);
1480 1.37 oster
1481 1.42 oster rrcopy->raidPtr = (void *) raidPtr;
1482 1.37 oster rrcopy->col = column;
1483 1.37 oster
1484 1.42 oster retcode = RF_CREATE_THREAD(raidPtr->recon_thread,
1485 1.37 oster rf_ReconstructInPlaceThread,
1486 1.37 oster rrcopy,"raid_reconip");
1487 1.12 oster return(retcode);
1488 1.12 oster
1489 1.1 oster case RAIDFRAME_GET_INFO:
1490 1.42 oster if (!raidPtr->valid)
1491 1.41 oster return (ENODEV);
1492 1.41 oster ucfgp = (RF_DeviceConfig_t **) data;
1493 1.41 oster RF_Malloc(d_cfg, sizeof(RF_DeviceConfig_t),
1494 1.41 oster (RF_DeviceConfig_t *));
1495 1.41 oster if (d_cfg == NULL)
1496 1.41 oster return (ENOMEM);
1497 1.166 oster d_cfg->rows = 1; /* there is only 1 row now */
1498 1.42 oster d_cfg->cols = raidPtr->numCol;
1499 1.166 oster d_cfg->ndevs = raidPtr->numCol;
1500 1.41 oster if (d_cfg->ndevs >= RF_MAX_DISKS) {
1501 1.41 oster RF_Free(d_cfg, sizeof(RF_DeviceConfig_t));
1502 1.41 oster return (ENOMEM);
1503 1.41 oster }
1504 1.42 oster d_cfg->nspares = raidPtr->numSpare;
1505 1.41 oster if (d_cfg->nspares >= RF_MAX_DISKS) {
1506 1.41 oster RF_Free(d_cfg, sizeof(RF_DeviceConfig_t));
1507 1.41 oster return (ENOMEM);
1508 1.41 oster }
1509 1.42 oster d_cfg->maxqdepth = raidPtr->maxQueueDepth;
1510 1.41 oster d = 0;
1511 1.166 oster for (j = 0; j < d_cfg->cols; j++) {
1512 1.166 oster d_cfg->devs[d] = raidPtr->Disks[j];
1513 1.166 oster d++;
1514 1.41 oster }
1515 1.41 oster for (j = d_cfg->cols, i = 0; i < d_cfg->nspares; i++, j++) {
1516 1.166 oster d_cfg->spares[i] = raidPtr->Disks[j];
1517 1.41 oster }
1518 1.156 dsl retcode = copyout(d_cfg, *ucfgp, sizeof(RF_DeviceConfig_t));
1519 1.41 oster RF_Free(d_cfg, sizeof(RF_DeviceConfig_t));
1520 1.41 oster
1521 1.41 oster return (retcode);
1522 1.9 oster
1523 1.22 oster case RAIDFRAME_CHECK_PARITY:
1524 1.42 oster *(int *) data = raidPtr->parity_good;
1525 1.22 oster return (0);
1526 1.41 oster
1527 1.269 jld case RAIDFRAME_PARITYMAP_STATUS:
1528 1.273 jld if (rf_paritymap_ineligible(raidPtr))
1529 1.273 jld return EINVAL;
1530 1.269 jld rf_paritymap_status(raidPtr->parity_map,
1531 1.269 jld (struct rf_pmstat *)data);
1532 1.269 jld return 0;
1533 1.269 jld
1534 1.269 jld case RAIDFRAME_PARITYMAP_SET_PARAMS:
1535 1.273 jld if (rf_paritymap_ineligible(raidPtr))
1536 1.273 jld return EINVAL;
1537 1.269 jld if (raidPtr->parity_map == NULL)
1538 1.269 jld return ENOENT; /* ??? */
1539 1.269 jld if (0 != rf_paritymap_set_params(raidPtr->parity_map,
1540 1.269 jld (struct rf_pmparams *)data, 1))
1541 1.269 jld return EINVAL;
1542 1.269 jld return 0;
1543 1.269 jld
1544 1.269 jld case RAIDFRAME_PARITYMAP_GET_DISABLE:
1545 1.273 jld if (rf_paritymap_ineligible(raidPtr))
1546 1.273 jld return EINVAL;
1547 1.269 jld *(int *) data = rf_paritymap_get_disable(raidPtr);
1548 1.269 jld return 0;
1549 1.269 jld
1550 1.269 jld case RAIDFRAME_PARITYMAP_SET_DISABLE:
1551 1.273 jld if (rf_paritymap_ineligible(raidPtr))
1552 1.273 jld return EINVAL;
1553 1.269 jld rf_paritymap_set_disable(raidPtr, *(int *)data);
1554 1.269 jld /* XXX should errors be passed up? */
1555 1.269 jld return 0;
1556 1.269 jld
1557 1.1 oster case RAIDFRAME_RESET_ACCTOTALS:
1558 1.108 thorpej memset(&raidPtr->acc_totals, 0, sizeof(raidPtr->acc_totals));
1559 1.41 oster return (0);
1560 1.9 oster
1561 1.1 oster case RAIDFRAME_GET_ACCTOTALS:
1562 1.41 oster totals = (RF_AccTotals_t *) data;
1563 1.42 oster *totals = raidPtr->acc_totals;
1564 1.41 oster return (0);
1565 1.9 oster
1566 1.1 oster case RAIDFRAME_KEEP_ACCTOTALS:
1567 1.42 oster raidPtr->keep_acc_totals = *(int *)data;
1568 1.41 oster return (0);
1569 1.9 oster
1570 1.1 oster case RAIDFRAME_GET_SIZE:
1571 1.42 oster *(int *) data = raidPtr->totalSectors;
1572 1.9 oster return (0);
1573 1.1 oster
1574 1.1 oster /* fail a disk & optionally start reconstruction */
1575 1.1 oster case RAIDFRAME_FAIL_DISK:
1576 1.24 oster
1577 1.42 oster if (raidPtr->Layout.map->faultsTolerated == 0) {
1578 1.24 oster /* Can't do this on a RAID 0!! */
1579 1.24 oster return(EINVAL);
1580 1.24 oster }
1581 1.24 oster
1582 1.1 oster rr = (struct rf_recon_req *) data;
1583 1.166 oster rr->row = 0;
1584 1.166 oster if (rr->col < 0 || rr->col >= raidPtr->numCol)
1585 1.9 oster return (EINVAL);
1586 1.149 oster
1587 1.149 oster
1588 1.291 mrg rf_lock_mutex2(raidPtr->mutex);
1589 1.185 oster if (raidPtr->status == rf_rs_reconstructing) {
1590 1.185 oster /* you can't fail a disk while we're reconstructing! */
1591 1.185 oster /* XXX wrong for RAID6 */
1592 1.291 mrg rf_unlock_mutex2(raidPtr->mutex);
1593 1.185 oster return (EINVAL);
1594 1.185 oster }
1595 1.186 perry if ((raidPtr->Disks[rr->col].status ==
1596 1.186 perry rf_ds_optimal) && (raidPtr->numFailures > 0)) {
1597 1.149 oster /* some other component has failed. Let's not make
1598 1.149 oster things worse. XXX wrong for RAID6 */
1599 1.291 mrg rf_unlock_mutex2(raidPtr->mutex);
1600 1.149 oster return (EINVAL);
1601 1.149 oster }
1602 1.166 oster if (raidPtr->Disks[rr->col].status == rf_ds_spared) {
1603 1.149 oster /* Can't fail a spared disk! */
1604 1.291 mrg rf_unlock_mutex2(raidPtr->mutex);
1605 1.149 oster return (EINVAL);
1606 1.149 oster }
1607 1.291 mrg rf_unlock_mutex2(raidPtr->mutex);
1608 1.1 oster
1609 1.9 oster /* make a copy of the recon request so that we don't rely on
1610 1.9 oster * the user's buffer */
1611 1.1 oster RF_Malloc(rrcopy, sizeof(*rrcopy), (struct rf_recon_req *));
1612 1.38 oster if (rrcopy == NULL)
1613 1.38 oster return(ENOMEM);
1614 1.118 wiz memcpy(rrcopy, rr, sizeof(*rr));
1615 1.42 oster rrcopy->raidPtr = (void *) raidPtr;
1616 1.1 oster
1617 1.42 oster retcode = RF_CREATE_THREAD(raidPtr->recon_thread,
1618 1.37 oster rf_ReconThread,
1619 1.37 oster rrcopy,"raid_recon");
1620 1.9 oster return (0);
1621 1.9 oster
1622 1.9 oster /* invoke a copyback operation after recon on whatever disk
1623 1.9 oster * needs it, if any */
1624 1.9 oster case RAIDFRAME_COPYBACK:
1625 1.24 oster
1626 1.42 oster if (raidPtr->Layout.map->faultsTolerated == 0) {
1627 1.24 oster /* This makes no sense on a RAID 0!! */
1628 1.24 oster return(EINVAL);
1629 1.24 oster }
1630 1.24 oster
1631 1.42 oster if (raidPtr->copyback_in_progress == 1) {
1632 1.37 oster /* Copyback is already in progress! */
1633 1.37 oster return(EINVAL);
1634 1.37 oster }
1635 1.27 oster
1636 1.42 oster retcode = RF_CREATE_THREAD(raidPtr->copyback_thread,
1637 1.37 oster rf_CopybackThread,
1638 1.42 oster raidPtr,"raid_copyback");
1639 1.37 oster return (retcode);
1640 1.9 oster
1641 1.1 oster /* return the percentage completion of reconstruction */
1642 1.37 oster case RAIDFRAME_CHECK_RECON_STATUS:
1643 1.42 oster if (raidPtr->Layout.map->faultsTolerated == 0) {
1644 1.71 oster /* This makes no sense on a RAID 0, so tell the
1645 1.71 oster user it's done. */
1646 1.71 oster *(int *) data = 100;
1647 1.71 oster return(0);
1648 1.24 oster }
1649 1.166 oster if (raidPtr->status != rf_rs_reconstructing)
1650 1.1 oster *(int *) data = 100;
1651 1.171 oster else {
1652 1.171 oster if (raidPtr->reconControl->numRUsTotal > 0) {
1653 1.171 oster *(int *) data = (raidPtr->reconControl->numRUsComplete * 100 / raidPtr->reconControl->numRUsTotal);
1654 1.171 oster } else {
1655 1.171 oster *(int *) data = 0;
1656 1.171 oster }
1657 1.171 oster }
1658 1.9 oster return (0);
1659 1.83 oster case RAIDFRAME_CHECK_RECON_STATUS_EXT:
1660 1.83 oster progressInfoPtr = (RF_ProgressInfo_t **) data;
1661 1.166 oster if (raidPtr->status != rf_rs_reconstructing) {
1662 1.83 oster progressInfo.remaining = 0;
1663 1.83 oster progressInfo.completed = 100;
1664 1.83 oster progressInfo.total = 100;
1665 1.83 oster } else {
1666 1.186 perry progressInfo.total =
1667 1.166 oster raidPtr->reconControl->numRUsTotal;
1668 1.186 perry progressInfo.completed =
1669 1.166 oster raidPtr->reconControl->numRUsComplete;
1670 1.83 oster progressInfo.remaining = progressInfo.total -
1671 1.83 oster progressInfo.completed;
1672 1.83 oster }
1673 1.156 dsl retcode = copyout(&progressInfo, *progressInfoPtr,
1674 1.83 oster sizeof(RF_ProgressInfo_t));
1675 1.83 oster return (retcode);
1676 1.9 oster
1677 1.37 oster case RAIDFRAME_CHECK_PARITYREWRITE_STATUS:
1678 1.42 oster if (raidPtr->Layout.map->faultsTolerated == 0) {
1679 1.80 oster /* This makes no sense on a RAID 0, so tell the
1680 1.80 oster user it's done. */
1681 1.80 oster *(int *) data = 100;
1682 1.80 oster return(0);
1683 1.37 oster }
1684 1.42 oster if (raidPtr->parity_rewrite_in_progress == 1) {
1685 1.186 perry *(int *) data = 100 *
1686 1.186 perry raidPtr->parity_rewrite_stripes_done /
1687 1.83 oster raidPtr->Layout.numStripe;
1688 1.37 oster } else {
1689 1.37 oster *(int *) data = 100;
1690 1.37 oster }
1691 1.37 oster return (0);
1692 1.37 oster
1693 1.83 oster case RAIDFRAME_CHECK_PARITYREWRITE_STATUS_EXT:
1694 1.83 oster progressInfoPtr = (RF_ProgressInfo_t **) data;
1695 1.83 oster if (raidPtr->parity_rewrite_in_progress == 1) {
1696 1.83 oster progressInfo.total = raidPtr->Layout.numStripe;
1697 1.186 perry progressInfo.completed =
1698 1.83 oster raidPtr->parity_rewrite_stripes_done;
1699 1.83 oster progressInfo.remaining = progressInfo.total -
1700 1.83 oster progressInfo.completed;
1701 1.83 oster } else {
1702 1.83 oster progressInfo.remaining = 0;
1703 1.83 oster progressInfo.completed = 100;
1704 1.83 oster progressInfo.total = 100;
1705 1.83 oster }
1706 1.156 dsl retcode = copyout(&progressInfo, *progressInfoPtr,
1707 1.83 oster sizeof(RF_ProgressInfo_t));
1708 1.83 oster return (retcode);
1709 1.83 oster
1710 1.37 oster case RAIDFRAME_CHECK_COPYBACK_STATUS:
1711 1.42 oster if (raidPtr->Layout.map->faultsTolerated == 0) {
1712 1.37 oster /* This makes no sense on a RAID 0 */
1713 1.83 oster *(int *) data = 100;
1714 1.83 oster return(0);
1715 1.37 oster }
1716 1.42 oster if (raidPtr->copyback_in_progress == 1) {
1717 1.42 oster *(int *) data = 100 * raidPtr->copyback_stripes_done /
1718 1.42 oster raidPtr->Layout.numStripe;
1719 1.37 oster } else {
1720 1.37 oster *(int *) data = 100;
1721 1.37 oster }
1722 1.37 oster return (0);
1723 1.37 oster
1724 1.83 oster case RAIDFRAME_CHECK_COPYBACK_STATUS_EXT:
1725 1.93 oster progressInfoPtr = (RF_ProgressInfo_t **) data;
1726 1.83 oster if (raidPtr->copyback_in_progress == 1) {
1727 1.83 oster progressInfo.total = raidPtr->Layout.numStripe;
1728 1.186 perry progressInfo.completed =
1729 1.93 oster raidPtr->copyback_stripes_done;
1730 1.83 oster progressInfo.remaining = progressInfo.total -
1731 1.83 oster progressInfo.completed;
1732 1.83 oster } else {
1733 1.83 oster progressInfo.remaining = 0;
1734 1.83 oster progressInfo.completed = 100;
1735 1.83 oster progressInfo.total = 100;
1736 1.83 oster }
1737 1.156 dsl retcode = copyout(&progressInfo, *progressInfoPtr,
1738 1.83 oster sizeof(RF_ProgressInfo_t));
1739 1.83 oster return (retcode);
1740 1.37 oster
1741 1.9 oster /* the sparetable daemon calls this to wait for the kernel to
1742 1.9 oster * need a spare table. this ioctl does not return until a
1743 1.9 oster * spare table is needed. XXX -- calling mpsleep here in the
1744 1.9 oster * ioctl code is almost certainly wrong and evil. -- XXX XXX
1745 1.9 oster * -- I should either compute the spare table in the kernel,
1746 1.9 oster * or have a different -- XXX XXX -- interface (a different
1747 1.42 oster * character device) for delivering the table -- XXX */
1748 1.250 oster #if 0
1749 1.1 oster case RAIDFRAME_SPARET_WAIT:
1750 1.287 mrg rf_lock_mutex2(rf_sparet_wait_mutex);
1751 1.9 oster while (!rf_sparet_wait_queue)
1752 1.287 mrg rf_wait_cond2(rf_sparet_wait_cv, rf_sparet_wait_mutex);
1753 1.1 oster waitreq = rf_sparet_wait_queue;
1754 1.1 oster rf_sparet_wait_queue = rf_sparet_wait_queue->next;
1755 1.287 mrg rf_unlock_mutex2(rf_sparet_wait_mutex);
1756 1.9 oster
1757 1.42 oster /* structure assignment */
1758 1.186 perry *((RF_SparetWait_t *) data) = *waitreq;
1759 1.9 oster
1760 1.1 oster RF_Free(waitreq, sizeof(*waitreq));
1761 1.9 oster return (0);
1762 1.9 oster
1763 1.9 oster /* wakes up a process waiting on SPARET_WAIT and puts an error
1764 1.9 oster * code in it that will cause the dameon to exit */
1765 1.1 oster case RAIDFRAME_ABORT_SPARET_WAIT:
1766 1.1 oster RF_Malloc(waitreq, sizeof(*waitreq), (RF_SparetWait_t *));
1767 1.1 oster waitreq->fcol = -1;
1768 1.287 mrg rf_lock_mutex2(rf_sparet_wait_mutex);
1769 1.1 oster waitreq->next = rf_sparet_wait_queue;
1770 1.1 oster rf_sparet_wait_queue = waitreq;
1771 1.287 mrg rf_broadcast_conf2(rf_sparet_wait_cv);
1772 1.287 mrg rf_unlock_mutex2(rf_sparet_wait_mutex);
1773 1.9 oster return (0);
1774 1.1 oster
1775 1.9 oster /* used by the spare table daemon to deliver a spare table
1776 1.9 oster * into the kernel */
1777 1.1 oster case RAIDFRAME_SEND_SPARET:
1778 1.9 oster
1779 1.1 oster /* install the spare table */
1780 1.42 oster retcode = rf_SetSpareTable(raidPtr, *(void **) data);
1781 1.9 oster
1782 1.9 oster /* respond to the requestor. the return status of the spare
1783 1.9 oster * table installation is passed in the "fcol" field */
1784 1.1 oster RF_Malloc(waitreq, sizeof(*waitreq), (RF_SparetWait_t *));
1785 1.1 oster waitreq->fcol = retcode;
1786 1.287 mrg rf_lock_mutex2(rf_sparet_wait_mutex);
1787 1.1 oster waitreq->next = rf_sparet_resp_queue;
1788 1.1 oster rf_sparet_resp_queue = waitreq;
1789 1.287 mrg rf_broadcast_cond2(rf_sparet_resp_cv);
1790 1.287 mrg rf_unlock_mutex2(rf_sparet_wait_mutex);
1791 1.9 oster
1792 1.9 oster return (retcode);
1793 1.1 oster #endif
1794 1.1 oster
1795 1.9 oster default:
1796 1.36 oster break; /* fall through to the os-specific code below */
1797 1.1 oster
1798 1.1 oster }
1799 1.9 oster
1800 1.42 oster if (!raidPtr->valid)
1801 1.9 oster return (EINVAL);
1802 1.9 oster
1803 1.1 oster /*
1804 1.1 oster * Add support for "regular" device ioctls here.
1805 1.1 oster */
1806 1.263 haad
1807 1.264 haad error = disk_ioctl(&rs->sc_dkdev, cmd, data, flag, l);
1808 1.263 haad if (error != EPASSTHROUGH)
1809 1.263 haad return (error);
1810 1.9 oster
1811 1.1 oster switch (cmd) {
1812 1.1 oster case DIOCGDINFO:
1813 1.9 oster *(struct disklabel *) data = *(rs->sc_dkdev.dk_label);
1814 1.1 oster break;
1815 1.102 fvdl #ifdef __HAVE_OLD_DISKLABEL
1816 1.102 fvdl case ODIOCGDINFO:
1817 1.102 fvdl newlabel = *(rs->sc_dkdev.dk_label);
1818 1.102 fvdl if (newlabel.d_npartitions > OLDMAXPARTITIONS)
1819 1.103 fvdl return ENOTTY;
1820 1.102 fvdl memcpy(data, &newlabel, sizeof (struct olddisklabel));
1821 1.102 fvdl break;
1822 1.102 fvdl #endif
1823 1.1 oster
1824 1.1 oster case DIOCGPART:
1825 1.9 oster ((struct partinfo *) data)->disklab = rs->sc_dkdev.dk_label;
1826 1.9 oster ((struct partinfo *) data)->part =
1827 1.1 oster &rs->sc_dkdev.dk_label->d_partitions[DISKPART(dev)];
1828 1.1 oster break;
1829 1.1 oster
1830 1.1 oster case DIOCWDINFO:
1831 1.1 oster case DIOCSDINFO:
1832 1.102 fvdl #ifdef __HAVE_OLD_DISKLABEL
1833 1.102 fvdl case ODIOCWDINFO:
1834 1.102 fvdl case ODIOCSDINFO:
1835 1.102 fvdl #endif
1836 1.102 fvdl {
1837 1.102 fvdl struct disklabel *lp;
1838 1.102 fvdl #ifdef __HAVE_OLD_DISKLABEL
1839 1.102 fvdl if (cmd == ODIOCSDINFO || cmd == ODIOCWDINFO) {
1840 1.102 fvdl memset(&newlabel, 0, sizeof newlabel);
1841 1.102 fvdl memcpy(&newlabel, data, sizeof (struct olddisklabel));
1842 1.102 fvdl lp = &newlabel;
1843 1.102 fvdl } else
1844 1.102 fvdl #endif
1845 1.102 fvdl lp = (struct disklabel *)data;
1846 1.102 fvdl
1847 1.1 oster if ((error = raidlock(rs)) != 0)
1848 1.1 oster return (error);
1849 1.1 oster
1850 1.1 oster rs->sc_flags |= RAIDF_LABELLING;
1851 1.1 oster
1852 1.1 oster error = setdisklabel(rs->sc_dkdev.dk_label,
1853 1.102 fvdl lp, 0, rs->sc_dkdev.dk_cpulabel);
1854 1.1 oster if (error == 0) {
1855 1.102 fvdl if (cmd == DIOCWDINFO
1856 1.102 fvdl #ifdef __HAVE_OLD_DISKLABEL
1857 1.102 fvdl || cmd == ODIOCWDINFO
1858 1.102 fvdl #endif
1859 1.102 fvdl )
1860 1.1 oster error = writedisklabel(RAIDLABELDEV(dev),
1861 1.1 oster raidstrategy, rs->sc_dkdev.dk_label,
1862 1.1 oster rs->sc_dkdev.dk_cpulabel);
1863 1.1 oster }
1864 1.1 oster rs->sc_flags &= ~RAIDF_LABELLING;
1865 1.1 oster
1866 1.1 oster raidunlock(rs);
1867 1.1 oster
1868 1.1 oster if (error)
1869 1.1 oster return (error);
1870 1.1 oster break;
1871 1.102 fvdl }
1872 1.1 oster
1873 1.1 oster case DIOCWLABEL:
1874 1.9 oster if (*(int *) data != 0)
1875 1.1 oster rs->sc_flags |= RAIDF_WLABEL;
1876 1.1 oster else
1877 1.1 oster rs->sc_flags &= ~RAIDF_WLABEL;
1878 1.1 oster break;
1879 1.1 oster
1880 1.1 oster case DIOCGDEFLABEL:
1881 1.102 fvdl raidgetdefaultlabel(raidPtr, rs, (struct disklabel *) data);
1882 1.1 oster break;
1883 1.102 fvdl
1884 1.102 fvdl #ifdef __HAVE_OLD_DISKLABEL
1885 1.102 fvdl case ODIOCGDEFLABEL:
1886 1.102 fvdl raidgetdefaultlabel(raidPtr, rs, &newlabel);
1887 1.102 fvdl if (newlabel.d_npartitions > OLDMAXPARTITIONS)
1888 1.103 fvdl return ENOTTY;
1889 1.102 fvdl memcpy(data, &newlabel, sizeof (struct olddisklabel));
1890 1.102 fvdl break;
1891 1.102 fvdl #endif
1892 1.1 oster
1893 1.213 christos case DIOCAWEDGE:
1894 1.213 christos case DIOCDWEDGE:
1895 1.213 christos dkw = (void *)data;
1896 1.213 christos
1897 1.213 christos /* If the ioctl happens here, the parent is us. */
1898 1.213 christos (void)strcpy(dkw->dkw_parent, rs->sc_xname);
1899 1.213 christos return cmd == DIOCAWEDGE ? dkwedge_add(dkw) : dkwedge_del(dkw);
1900 1.213 christos
1901 1.213 christos case DIOCLWEDGES:
1902 1.213 christos return dkwedge_list(&rs->sc_dkdev,
1903 1.213 christos (struct dkwedge_list *)data, l);
1904 1.252 oster case DIOCCACHESYNC:
1905 1.252 oster return rf_sync_component_caches(raidPtr);
1906 1.298 buhrow
1907 1.298 buhrow case DIOCGSTRATEGY:
1908 1.298 buhrow {
1909 1.298 buhrow struct disk_strategy *dks = (void *)data;
1910 1.298 buhrow
1911 1.298 buhrow s = splbio();
1912 1.298 buhrow strlcpy(dks->dks_name, bufq_getstrategyname(rs->buf_queue),
1913 1.298 buhrow sizeof(dks->dks_name));
1914 1.298 buhrow splx(s);
1915 1.298 buhrow dks->dks_paramlen = 0;
1916 1.298 buhrow
1917 1.298 buhrow return 0;
1918 1.298 buhrow }
1919 1.298 buhrow
1920 1.298 buhrow case DIOCSSTRATEGY:
1921 1.298 buhrow {
1922 1.298 buhrow struct disk_strategy *dks = (void *)data;
1923 1.298 buhrow struct bufq_state *new;
1924 1.298 buhrow struct bufq_state *old;
1925 1.298 buhrow
1926 1.298 buhrow if (dks->dks_param != NULL) {
1927 1.298 buhrow return EINVAL;
1928 1.298 buhrow }
1929 1.298 buhrow dks->dks_name[sizeof(dks->dks_name) - 1] = 0; /* ensure term */
1930 1.298 buhrow error = bufq_alloc(&new, dks->dks_name,
1931 1.298 buhrow BUFQ_EXACT|BUFQ_SORT_RAWBLOCK);
1932 1.298 buhrow if (error) {
1933 1.298 buhrow return error;
1934 1.298 buhrow }
1935 1.298 buhrow s = splbio();
1936 1.298 buhrow old = rs->buf_queue;
1937 1.298 buhrow bufq_move(new, old);
1938 1.298 buhrow rs->buf_queue = new;
1939 1.298 buhrow splx(s);
1940 1.298 buhrow bufq_free(old);
1941 1.298 buhrow
1942 1.298 buhrow return 0;
1943 1.298 buhrow }
1944 1.298 buhrow
1945 1.1 oster default:
1946 1.39 oster retcode = ENOTTY;
1947 1.1 oster }
1948 1.9 oster return (retcode);
1949 1.1 oster
1950 1.1 oster }
1951 1.1 oster
1952 1.1 oster
1953 1.9 oster /* raidinit -- complete the rest of the initialization for the
1954 1.1 oster RAIDframe device. */
1955 1.1 oster
1956 1.1 oster
1957 1.59 oster static void
1958 1.300 christos raidinit(struct raid_softc *rs)
1959 1.1 oster {
1960 1.262 cegger cfdata_t cf;
1961 1.59 oster int unit;
1962 1.300 christos RF_Raid_t *raidPtr = &rs->sc_r;
1963 1.1 oster
1964 1.59 oster unit = raidPtr->raidid;
1965 1.1 oster
1966 1.1 oster
1967 1.1 oster /* XXX should check return code first... */
1968 1.1 oster rs->sc_flags |= RAIDF_INITED;
1969 1.1 oster
1970 1.179 itojun /* XXX doesn't check bounds. */
1971 1.179 itojun snprintf(rs->sc_xname, sizeof(rs->sc_xname), "raid%d", unit);
1972 1.1 oster
1973 1.217 oster /* attach the pseudo device */
1974 1.217 oster cf = malloc(sizeof(*cf), M_RAIDFRAME, M_WAITOK);
1975 1.217 oster cf->cf_name = raid_cd.cd_name;
1976 1.217 oster cf->cf_atname = raid_cd.cd_name;
1977 1.217 oster cf->cf_unit = unit;
1978 1.217 oster cf->cf_fstate = FSTATE_STAR;
1979 1.217 oster
1980 1.217 oster rs->sc_dev = config_attach_pseudo(cf);
1981 1.217 oster
1982 1.270 christos if (rs->sc_dev == NULL) {
1983 1.217 oster printf("raid%d: config_attach_pseudo failed\n",
1984 1.270 christos raidPtr->raidid);
1985 1.265 pooka rs->sc_flags &= ~RAIDF_INITED;
1986 1.265 pooka free(cf, M_RAIDFRAME);
1987 1.265 pooka return;
1988 1.217 oster }
1989 1.217 oster
1990 1.1 oster /* disk_attach actually creates space for the CPU disklabel, among
1991 1.9 oster * other things, so it's critical to call this *BEFORE* we try putzing
1992 1.9 oster * with disklabels. */
1993 1.11 oster
1994 1.235 oster disk_init(&rs->sc_dkdev, rs->sc_xname, &rf_dkdriver);
1995 1.219 oster disk_attach(&rs->sc_dkdev);
1996 1.275 mrg disk_blocksize(&rs->sc_dkdev, raidPtr->bytesPerSector);
1997 1.1 oster
1998 1.1 oster /* XXX There may be a weird interaction here between this, and
1999 1.9 oster * protectedSectors, as used in RAIDframe. */
2000 1.11 oster
2001 1.9 oster rs->sc_size = raidPtr->totalSectors;
2002 1.234 oster
2003 1.234 oster dkwedge_discover(&rs->sc_dkdev);
2004 1.234 oster
2005 1.304 christos rf_set_geometry(rs, raidPtr);
2006 1.234 oster
2007 1.1 oster }
2008 1.150 oster #if (RF_INCLUDE_PARITY_DECLUSTERING_DS > 0)
2009 1.1 oster /* wake up the daemon & tell it to get us a spare table
2010 1.1 oster * XXX
2011 1.9 oster * the entries in the queues should be tagged with the raidPtr
2012 1.186 perry * so that in the extremely rare case that two recons happen at once,
2013 1.11 oster * we know for which device were requesting a spare table
2014 1.1 oster * XXX
2015 1.186 perry *
2016 1.39 oster * XXX This code is not currently used. GO
2017 1.1 oster */
2018 1.186 perry int
2019 1.169 oster rf_GetSpareTableFromDaemon(RF_SparetWait_t *req)
2020 1.9 oster {
2021 1.9 oster int retcode;
2022 1.9 oster
2023 1.287 mrg rf_lock_mutex2(rf_sparet_wait_mutex);
2024 1.9 oster req->next = rf_sparet_wait_queue;
2025 1.9 oster rf_sparet_wait_queue = req;
2026 1.289 mrg rf_broadcast_cond2(rf_sparet_wait_cv);
2027 1.9 oster
2028 1.9 oster /* mpsleep unlocks the mutex */
2029 1.9 oster while (!rf_sparet_resp_queue) {
2030 1.289 mrg rf_wait_cond2(rf_sparet_resp_cv, rf_sparet_wait_mutex);
2031 1.9 oster }
2032 1.9 oster req = rf_sparet_resp_queue;
2033 1.9 oster rf_sparet_resp_queue = req->next;
2034 1.287 mrg rf_unlock_mutex2(rf_sparet_wait_mutex);
2035 1.9 oster
2036 1.9 oster retcode = req->fcol;
2037 1.9 oster RF_Free(req, sizeof(*req)); /* this is not the same req as we
2038 1.9 oster * alloc'd */
2039 1.9 oster return (retcode);
2040 1.1 oster }
2041 1.150 oster #endif
2042 1.39 oster
2043 1.186 perry /* a wrapper around rf_DoAccess that extracts appropriate info from the
2044 1.11 oster * bp & passes it down.
2045 1.1 oster * any calls originating in the kernel must use non-blocking I/O
2046 1.1 oster * do some extra sanity checking to return "appropriate" error values for
2047 1.1 oster * certain conditions (to make some standard utilities work)
2048 1.186 perry *
2049 1.34 oster * Formerly known as: rf_DoAccessKernel
2050 1.1 oster */
2051 1.34 oster void
2052 1.169 oster raidstart(RF_Raid_t *raidPtr)
2053 1.1 oster {
2054 1.1 oster RF_SectorCount_t num_blocks, pb, sum;
2055 1.1 oster RF_RaidAddr_t raid_addr;
2056 1.1 oster struct partition *pp;
2057 1.9 oster daddr_t blocknum;
2058 1.1 oster struct raid_softc *rs;
2059 1.9 oster int do_async;
2060 1.34 oster struct buf *bp;
2061 1.180 oster int rc;
2062 1.1 oster
2063 1.300 christos rs = raidPtr->softc;
2064 1.56 oster /* quick check to see if anything has died recently */
2065 1.291 mrg rf_lock_mutex2(raidPtr->mutex);
2066 1.56 oster if (raidPtr->numNewFailures > 0) {
2067 1.291 mrg rf_unlock_mutex2(raidPtr->mutex);
2068 1.186 perry rf_update_component_labels(raidPtr,
2069 1.91 oster RF_NORMAL_COMPONENT_UPDATE);
2070 1.291 mrg rf_lock_mutex2(raidPtr->mutex);
2071 1.56 oster raidPtr->numNewFailures--;
2072 1.56 oster }
2073 1.56 oster
2074 1.34 oster /* Check to see if we're at the limit... */
2075 1.34 oster while (raidPtr->openings > 0) {
2076 1.291 mrg rf_unlock_mutex2(raidPtr->mutex);
2077 1.34 oster
2078 1.34 oster /* get the next item, if any, from the queue */
2079 1.253 yamt if ((bp = bufq_get(rs->buf_queue)) == NULL) {
2080 1.34 oster /* nothing more to do */
2081 1.34 oster return;
2082 1.34 oster }
2083 1.34 oster
2084 1.34 oster /* Ok, for the bp we have here, bp->b_blkno is relative to the
2085 1.186 perry * partition.. Need to make it absolute to the underlying
2086 1.34 oster * device.. */
2087 1.1 oster
2088 1.275 mrg blocknum = bp->b_blkno << DEV_BSHIFT >> raidPtr->logBytesPerSector;
2089 1.34 oster if (DISKPART(bp->b_dev) != RAW_PART) {
2090 1.34 oster pp = &rs->sc_dkdev.dk_label->d_partitions[DISKPART(bp->b_dev)];
2091 1.34 oster blocknum += pp->p_offset;
2092 1.34 oster }
2093 1.1 oster
2094 1.186 perry db1_printf(("Blocks: %d, %d\n", (int) bp->b_blkno,
2095 1.34 oster (int) blocknum));
2096 1.186 perry
2097 1.34 oster db1_printf(("bp->b_bcount = %d\n", (int) bp->b_bcount));
2098 1.34 oster db1_printf(("bp->b_resid = %d\n", (int) bp->b_resid));
2099 1.186 perry
2100 1.186 perry /* *THIS* is where we adjust what block we're going to...
2101 1.34 oster * but DO NOT TOUCH bp->b_blkno!!! */
2102 1.34 oster raid_addr = blocknum;
2103 1.186 perry
2104 1.34 oster num_blocks = bp->b_bcount >> raidPtr->logBytesPerSector;
2105 1.34 oster pb = (bp->b_bcount & raidPtr->sectorMask) ? 1 : 0;
2106 1.34 oster sum = raid_addr + num_blocks + pb;
2107 1.34 oster if (1 || rf_debugKernelAccess) {
2108 1.34 oster db1_printf(("raid_addr=%d sum=%d num_blocks=%d(+%d) (%d)\n",
2109 1.34 oster (int) raid_addr, (int) sum, (int) num_blocks,
2110 1.34 oster (int) pb, (int) bp->b_resid));
2111 1.34 oster }
2112 1.34 oster if ((sum > raidPtr->totalSectors) || (sum < raid_addr)
2113 1.34 oster || (sum < num_blocks) || (sum < pb)) {
2114 1.34 oster bp->b_error = ENOSPC;
2115 1.34 oster bp->b_resid = bp->b_bcount;
2116 1.34 oster biodone(bp);
2117 1.291 mrg rf_lock_mutex2(raidPtr->mutex);
2118 1.34 oster continue;
2119 1.34 oster }
2120 1.34 oster /*
2121 1.34 oster * XXX rf_DoAccess() should do this, not just DoAccessKernel()
2122 1.34 oster */
2123 1.186 perry
2124 1.34 oster if (bp->b_bcount & raidPtr->sectorMask) {
2125 1.34 oster bp->b_error = EINVAL;
2126 1.34 oster bp->b_resid = bp->b_bcount;
2127 1.34 oster biodone(bp);
2128 1.291 mrg rf_lock_mutex2(raidPtr->mutex);
2129 1.34 oster continue;
2130 1.186 perry
2131 1.34 oster }
2132 1.34 oster db1_printf(("Calling DoAccess..\n"));
2133 1.186 perry
2134 1.1 oster
2135 1.291 mrg rf_lock_mutex2(raidPtr->mutex);
2136 1.34 oster raidPtr->openings--;
2137 1.291 mrg rf_unlock_mutex2(raidPtr->mutex);
2138 1.1 oster
2139 1.34 oster /*
2140 1.34 oster * Everything is async.
2141 1.34 oster */
2142 1.34 oster do_async = 1;
2143 1.186 perry
2144 1.99 oster disk_busy(&rs->sc_dkdev);
2145 1.99 oster
2146 1.186 perry /* XXX we're still at splbio() here... do we *really*
2147 1.34 oster need to be? */
2148 1.20 oster
2149 1.186 perry /* don't ever condition on bp->b_flags & B_WRITE.
2150 1.99 oster * always condition on B_READ instead */
2151 1.186 perry
2152 1.180 oster rc = rf_DoAccess(raidPtr, (bp->b_flags & B_READ) ?
2153 1.180 oster RF_IO_TYPE_READ : RF_IO_TYPE_WRITE,
2154 1.180 oster do_async, raid_addr, num_blocks,
2155 1.180 oster bp->b_data, bp, RF_DAG_NONBLOCKING_IO);
2156 1.151 oster
2157 1.180 oster if (rc) {
2158 1.180 oster bp->b_error = rc;
2159 1.180 oster bp->b_resid = bp->b_bcount;
2160 1.180 oster biodone(bp);
2161 1.180 oster /* continue loop */
2162 1.186 perry }
2163 1.20 oster
2164 1.291 mrg rf_lock_mutex2(raidPtr->mutex);
2165 1.20 oster }
2166 1.291 mrg rf_unlock_mutex2(raidPtr->mutex);
2167 1.34 oster }
2168 1.20 oster
2169 1.20 oster
2170 1.7 explorer
2171 1.7 explorer
2172 1.1 oster /* invoke an I/O from kernel mode. Disk queue should be locked upon entry */
2173 1.1 oster
2174 1.186 perry int
2175 1.169 oster rf_DispatchKernelIO(RF_DiskQueue_t *queue, RF_DiskQueueData_t *req)
2176 1.1 oster {
2177 1.9 oster int op = (req->type == RF_IO_TYPE_READ) ? B_READ : B_WRITE;
2178 1.1 oster struct buf *bp;
2179 1.9 oster
2180 1.1 oster req->queue = queue;
2181 1.1 oster bp = req->bp;
2182 1.1 oster
2183 1.1 oster switch (req->type) {
2184 1.9 oster case RF_IO_TYPE_NOP: /* used primarily to unlock a locked queue */
2185 1.1 oster /* XXX need to do something extra here.. */
2186 1.9 oster /* I'm leaving this in, as I've never actually seen it used,
2187 1.9 oster * and I'd like folks to report it... GO */
2188 1.1 oster printf(("WAKEUP CALLED\n"));
2189 1.1 oster queue->numOutstanding++;
2190 1.1 oster
2191 1.197 oster bp->b_flags = 0;
2192 1.207 simonb bp->b_private = req;
2193 1.1 oster
2194 1.194 oster KernelWakeupFunc(bp);
2195 1.1 oster break;
2196 1.9 oster
2197 1.1 oster case RF_IO_TYPE_READ:
2198 1.1 oster case RF_IO_TYPE_WRITE:
2199 1.175 oster #if RF_ACC_TRACE > 0
2200 1.1 oster if (req->tracerec) {
2201 1.1 oster RF_ETIMER_START(req->tracerec->timer);
2202 1.1 oster }
2203 1.175 oster #endif
2204 1.194 oster InitBP(bp, queue->rf_cinfo->ci_vp,
2205 1.197 oster op, queue->rf_cinfo->ci_dev,
2206 1.9 oster req->sectorOffset, req->numSector,
2207 1.9 oster req->buf, KernelWakeupFunc, (void *) req,
2208 1.9 oster queue->raidPtr->logBytesPerSector, req->b_proc);
2209 1.1 oster
2210 1.1 oster if (rf_debugKernelAccess) {
2211 1.9 oster db1_printf(("dispatch: bp->b_blkno = %ld\n",
2212 1.9 oster (long) bp->b_blkno));
2213 1.1 oster }
2214 1.1 oster queue->numOutstanding++;
2215 1.1 oster queue->last_deq_sector = req->sectorOffset;
2216 1.9 oster /* acc wouldn't have been let in if there were any pending
2217 1.9 oster * reqs at any other priority */
2218 1.1 oster queue->curPriority = req->priority;
2219 1.1 oster
2220 1.166 oster db1_printf(("Going for %c to unit %d col %d\n",
2221 1.186 perry req->type, queue->raidPtr->raidid,
2222 1.166 oster queue->col));
2223 1.1 oster db1_printf(("sector %d count %d (%d bytes) %d\n",
2224 1.9 oster (int) req->sectorOffset, (int) req->numSector,
2225 1.9 oster (int) (req->numSector <<
2226 1.9 oster queue->raidPtr->logBytesPerSector),
2227 1.9 oster (int) queue->raidPtr->logBytesPerSector));
2228 1.256 oster
2229 1.256 oster /*
2230 1.256 oster * XXX: drop lock here since this can block at
2231 1.256 oster * least with backing SCSI devices. Retake it
2232 1.256 oster * to minimize fuss with calling interfaces.
2233 1.256 oster */
2234 1.256 oster
2235 1.256 oster RF_UNLOCK_QUEUE_MUTEX(queue, "unusedparam");
2236 1.247 oster bdev_strategy(bp);
2237 1.256 oster RF_LOCK_QUEUE_MUTEX(queue, "unusedparam");
2238 1.1 oster break;
2239 1.9 oster
2240 1.1 oster default:
2241 1.1 oster panic("bad req->type in rf_DispatchKernelIO");
2242 1.1 oster }
2243 1.1 oster db1_printf(("Exiting from DispatchKernelIO\n"));
2244 1.134 oster
2245 1.9 oster return (0);
2246 1.1 oster }
2247 1.9 oster /* this is the callback function associated with a I/O invoked from
2248 1.1 oster kernel code.
2249 1.1 oster */
2250 1.186 perry static void
2251 1.194 oster KernelWakeupFunc(struct buf *bp)
2252 1.9 oster {
2253 1.9 oster RF_DiskQueueData_t *req = NULL;
2254 1.9 oster RF_DiskQueue_t *queue;
2255 1.9 oster
2256 1.9 oster db1_printf(("recovering the request queue:\n"));
2257 1.285 mrg
2258 1.207 simonb req = bp->b_private;
2259 1.1 oster
2260 1.9 oster queue = (RF_DiskQueue_t *) req->queue;
2261 1.1 oster
2262 1.286 mrg rf_lock_mutex2(queue->raidPtr->iodone_lock);
2263 1.285 mrg
2264 1.175 oster #if RF_ACC_TRACE > 0
2265 1.9 oster if (req->tracerec) {
2266 1.9 oster RF_ETIMER_STOP(req->tracerec->timer);
2267 1.9 oster RF_ETIMER_EVAL(req->tracerec->timer);
2268 1.288 mrg rf_lock_mutex2(rf_tracing_mutex);
2269 1.9 oster req->tracerec->diskwait_us += RF_ETIMER_VAL_US(req->tracerec->timer);
2270 1.9 oster req->tracerec->phys_io_us += RF_ETIMER_VAL_US(req->tracerec->timer);
2271 1.9 oster req->tracerec->num_phys_ios++;
2272 1.288 mrg rf_unlock_mutex2(rf_tracing_mutex);
2273 1.9 oster }
2274 1.175 oster #endif
2275 1.1 oster
2276 1.230 ad /* XXX Ok, let's get aggressive... If b_error is set, let's go
2277 1.9 oster * ballistic, and mark the component as hosed... */
2278 1.36 oster
2279 1.230 ad if (bp->b_error != 0) {
2280 1.9 oster /* Mark the disk as dead */
2281 1.9 oster /* but only mark it once... */
2282 1.186 perry /* and only if it wouldn't leave this RAID set
2283 1.183 oster completely broken */
2284 1.193 oster if (((queue->raidPtr->Disks[queue->col].status ==
2285 1.193 oster rf_ds_optimal) ||
2286 1.193 oster (queue->raidPtr->Disks[queue->col].status ==
2287 1.193 oster rf_ds_used_spare)) &&
2288 1.193 oster (queue->raidPtr->numFailures <
2289 1.204 simonb queue->raidPtr->Layout.map->faultsTolerated)) {
2290 1.9 oster printf("raid%d: IO Error. Marking %s as failed.\n",
2291 1.136 oster queue->raidPtr->raidid,
2292 1.166 oster queue->raidPtr->Disks[queue->col].devname);
2293 1.166 oster queue->raidPtr->Disks[queue->col].status =
2294 1.9 oster rf_ds_failed;
2295 1.166 oster queue->raidPtr->status = rf_rs_degraded;
2296 1.9 oster queue->raidPtr->numFailures++;
2297 1.56 oster queue->raidPtr->numNewFailures++;
2298 1.9 oster } else { /* Disk is already dead... */
2299 1.9 oster /* printf("Disk already marked as dead!\n"); */
2300 1.9 oster }
2301 1.4 oster
2302 1.9 oster }
2303 1.4 oster
2304 1.143 oster /* Fill in the error value */
2305 1.230 ad req->error = bp->b_error;
2306 1.143 oster
2307 1.143 oster /* Drop this one on the "finished" queue... */
2308 1.143 oster TAILQ_INSERT_TAIL(&(queue->raidPtr->iodone), req, iodone_entries);
2309 1.143 oster
2310 1.143 oster /* Let the raidio thread know there is work to be done. */
2311 1.286 mrg rf_signal_cond2(queue->raidPtr->iodone_cv);
2312 1.143 oster
2313 1.286 mrg rf_unlock_mutex2(queue->raidPtr->iodone_lock);
2314 1.1 oster }
2315 1.1 oster
2316 1.1 oster
2317 1.1 oster /*
2318 1.1 oster * initialize a buf structure for doing an I/O in the kernel.
2319 1.1 oster */
2320 1.186 perry static void
2321 1.169 oster InitBP(struct buf *bp, struct vnode *b_vp, unsigned rw_flag, dev_t dev,
2322 1.225 christos RF_SectorNum_t startSect, RF_SectorCount_t numSect, void *bf,
2323 1.169 oster void (*cbFunc) (struct buf *), void *cbArg, int logBytesPerSector,
2324 1.169 oster struct proc *b_proc)
2325 1.9 oster {
2326 1.9 oster /* bp->b_flags = B_PHYS | rw_flag; */
2327 1.242 ad bp->b_flags = rw_flag; /* XXX need B_PHYS here too??? */
2328 1.242 ad bp->b_oflags = 0;
2329 1.242 ad bp->b_cflags = 0;
2330 1.9 oster bp->b_bcount = numSect << logBytesPerSector;
2331 1.9 oster bp->b_bufsize = bp->b_bcount;
2332 1.9 oster bp->b_error = 0;
2333 1.9 oster bp->b_dev = dev;
2334 1.187 christos bp->b_data = bf;
2335 1.275 mrg bp->b_blkno = startSect << logBytesPerSector >> DEV_BSHIFT;
2336 1.9 oster bp->b_resid = bp->b_bcount; /* XXX is this right!??!?!! */
2337 1.1 oster if (bp->b_bcount == 0) {
2338 1.141 provos panic("bp->b_bcount is zero in InitBP!!");
2339 1.1 oster }
2340 1.161 fvdl bp->b_proc = b_proc;
2341 1.9 oster bp->b_iodone = cbFunc;
2342 1.207 simonb bp->b_private = cbArg;
2343 1.1 oster }
2344 1.1 oster
2345 1.1 oster static void
2346 1.186 perry raidgetdefaultlabel(RF_Raid_t *raidPtr, struct raid_softc *rs,
2347 1.169 oster struct disklabel *lp)
2348 1.1 oster {
2349 1.108 thorpej memset(lp, 0, sizeof(*lp));
2350 1.1 oster
2351 1.1 oster /* fabricate a label... */
2352 1.1 oster lp->d_secperunit = raidPtr->totalSectors;
2353 1.1 oster lp->d_secsize = raidPtr->bytesPerSector;
2354 1.45 oster lp->d_nsectors = raidPtr->Layout.dataSectorsPerStripe;
2355 1.105 oster lp->d_ntracks = 4 * raidPtr->numCol;
2356 1.186 perry lp->d_ncylinders = raidPtr->totalSectors /
2357 1.45 oster (lp->d_nsectors * lp->d_ntracks);
2358 1.1 oster lp->d_secpercyl = lp->d_ntracks * lp->d_nsectors;
2359 1.1 oster
2360 1.1 oster strncpy(lp->d_typename, "raid", sizeof(lp->d_typename));
2361 1.9 oster lp->d_type = DTYPE_RAID;
2362 1.1 oster strncpy(lp->d_packname, "fictitious", sizeof(lp->d_packname));
2363 1.1 oster lp->d_rpm = 3600;
2364 1.1 oster lp->d_interleave = 1;
2365 1.1 oster lp->d_flags = 0;
2366 1.1 oster
2367 1.1 oster lp->d_partitions[RAW_PART].p_offset = 0;
2368 1.1 oster lp->d_partitions[RAW_PART].p_size = raidPtr->totalSectors;
2369 1.1 oster lp->d_partitions[RAW_PART].p_fstype = FS_UNUSED;
2370 1.1 oster lp->d_npartitions = RAW_PART + 1;
2371 1.1 oster
2372 1.1 oster lp->d_magic = DISKMAGIC;
2373 1.1 oster lp->d_magic2 = DISKMAGIC;
2374 1.1 oster lp->d_checksum = dkcksum(rs->sc_dkdev.dk_label);
2375 1.1 oster
2376 1.1 oster }
2377 1.1 oster /*
2378 1.1 oster * Read the disklabel from the raid device. If one is not present, fake one
2379 1.1 oster * up.
2380 1.1 oster */
2381 1.1 oster static void
2382 1.169 oster raidgetdisklabel(dev_t dev)
2383 1.1 oster {
2384 1.9 oster int unit = raidunit(dev);
2385 1.300 christos struct raid_softc *rs;
2386 1.158 dsl const char *errstring;
2387 1.300 christos struct disklabel *lp;
2388 1.300 christos struct cpu_disklabel *clp;
2389 1.1 oster RF_Raid_t *raidPtr;
2390 1.1 oster
2391 1.300 christos if ((rs = raidget(unit)) == NULL)
2392 1.300 christos return;
2393 1.300 christos
2394 1.300 christos lp = rs->sc_dkdev.dk_label;
2395 1.300 christos clp = rs->sc_dkdev.dk_cpulabel;
2396 1.300 christos
2397 1.1 oster db1_printf(("Getting the disklabel...\n"));
2398 1.1 oster
2399 1.108 thorpej memset(clp, 0, sizeof(*clp));
2400 1.1 oster
2401 1.300 christos raidPtr = &rs->sc_r;
2402 1.1 oster
2403 1.1 oster raidgetdefaultlabel(raidPtr, rs, lp);
2404 1.1 oster
2405 1.1 oster /*
2406 1.1 oster * Call the generic disklabel extraction routine.
2407 1.1 oster */
2408 1.1 oster errstring = readdisklabel(RAIDLABELDEV(dev), raidstrategy,
2409 1.1 oster rs->sc_dkdev.dk_label, rs->sc_dkdev.dk_cpulabel);
2410 1.9 oster if (errstring)
2411 1.1 oster raidmakedisklabel(rs);
2412 1.1 oster else {
2413 1.9 oster int i;
2414 1.1 oster struct partition *pp;
2415 1.1 oster
2416 1.1 oster /*
2417 1.1 oster * Sanity check whether the found disklabel is valid.
2418 1.1 oster *
2419 1.1 oster * This is necessary since total size of the raid device
2420 1.1 oster * may vary when an interleave is changed even though exactly
2421 1.211 oster * same components are used, and old disklabel may used
2422 1.1 oster * if that is found.
2423 1.1 oster */
2424 1.1 oster if (lp->d_secperunit != rs->sc_size)
2425 1.123 oster printf("raid%d: WARNING: %s: "
2426 1.260 sborrill "total sector size in disklabel (%" PRIu32 ") != "
2427 1.260 sborrill "the size of raid (%" PRIu64 ")\n", unit, rs->sc_xname,
2428 1.260 sborrill lp->d_secperunit, rs->sc_size);
2429 1.1 oster for (i = 0; i < lp->d_npartitions; i++) {
2430 1.1 oster pp = &lp->d_partitions[i];
2431 1.1 oster if (pp->p_offset + pp->p_size > rs->sc_size)
2432 1.123 oster printf("raid%d: WARNING: %s: end of partition `%c' "
2433 1.260 sborrill "exceeds the size of raid (%" PRIu64 ")\n",
2434 1.260 sborrill unit, rs->sc_xname, 'a' + i, rs->sc_size);
2435 1.1 oster }
2436 1.1 oster }
2437 1.1 oster
2438 1.1 oster }
2439 1.1 oster /*
2440 1.1 oster * Take care of things one might want to take care of in the event
2441 1.1 oster * that a disklabel isn't present.
2442 1.1 oster */
2443 1.1 oster static void
2444 1.169 oster raidmakedisklabel(struct raid_softc *rs)
2445 1.1 oster {
2446 1.1 oster struct disklabel *lp = rs->sc_dkdev.dk_label;
2447 1.1 oster db1_printf(("Making a label..\n"));
2448 1.1 oster
2449 1.1 oster /*
2450 1.1 oster * For historical reasons, if there's no disklabel present
2451 1.1 oster * the raw partition must be marked FS_BSDFFS.
2452 1.1 oster */
2453 1.1 oster
2454 1.1 oster lp->d_partitions[RAW_PART].p_fstype = FS_BSDFFS;
2455 1.1 oster
2456 1.1 oster strncpy(lp->d_packname, "default label", sizeof(lp->d_packname));
2457 1.1 oster
2458 1.1 oster lp->d_checksum = dkcksum(lp);
2459 1.1 oster }
2460 1.1 oster /*
2461 1.1 oster * Wait interruptibly for an exclusive lock.
2462 1.1 oster *
2463 1.1 oster * XXX
2464 1.1 oster * Several drivers do this; it should be abstracted and made MP-safe.
2465 1.1 oster * (Hmm... where have we seen this warning before :-> GO )
2466 1.1 oster */
2467 1.1 oster static int
2468 1.169 oster raidlock(struct raid_softc *rs)
2469 1.1 oster {
2470 1.9 oster int error;
2471 1.1 oster
2472 1.1 oster while ((rs->sc_flags & RAIDF_LOCKED) != 0) {
2473 1.1 oster rs->sc_flags |= RAIDF_WANTED;
2474 1.9 oster if ((error =
2475 1.9 oster tsleep(rs, PRIBIO | PCATCH, "raidlck", 0)) != 0)
2476 1.1 oster return (error);
2477 1.1 oster }
2478 1.1 oster rs->sc_flags |= RAIDF_LOCKED;
2479 1.1 oster return (0);
2480 1.1 oster }
2481 1.1 oster /*
2482 1.1 oster * Unlock and wake up any waiters.
2483 1.1 oster */
2484 1.1 oster static void
2485 1.169 oster raidunlock(struct raid_softc *rs)
2486 1.1 oster {
2487 1.1 oster
2488 1.1 oster rs->sc_flags &= ~RAIDF_LOCKED;
2489 1.1 oster if ((rs->sc_flags & RAIDF_WANTED) != 0) {
2490 1.1 oster rs->sc_flags &= ~RAIDF_WANTED;
2491 1.1 oster wakeup(rs);
2492 1.1 oster }
2493 1.11 oster }
2494 1.186 perry
2495 1.11 oster
2496 1.11 oster #define RF_COMPONENT_INFO_OFFSET 16384 /* bytes */
2497 1.11 oster #define RF_COMPONENT_INFO_SIZE 1024 /* bytes */
2498 1.269 jld #define RF_PARITY_MAP_SIZE RF_PARITYMAP_NBYTE
2499 1.11 oster
2500 1.276 mrg static daddr_t
2501 1.276 mrg rf_component_info_offset(void)
2502 1.276 mrg {
2503 1.276 mrg
2504 1.276 mrg return RF_COMPONENT_INFO_OFFSET;
2505 1.276 mrg }
2506 1.276 mrg
2507 1.276 mrg static daddr_t
2508 1.276 mrg rf_component_info_size(unsigned secsize)
2509 1.276 mrg {
2510 1.276 mrg daddr_t info_size;
2511 1.276 mrg
2512 1.276 mrg KASSERT(secsize);
2513 1.276 mrg if (secsize > RF_COMPONENT_INFO_SIZE)
2514 1.276 mrg info_size = secsize;
2515 1.276 mrg else
2516 1.276 mrg info_size = RF_COMPONENT_INFO_SIZE;
2517 1.276 mrg
2518 1.276 mrg return info_size;
2519 1.276 mrg }
2520 1.276 mrg
2521 1.276 mrg static daddr_t
2522 1.276 mrg rf_parity_map_offset(RF_Raid_t *raidPtr)
2523 1.276 mrg {
2524 1.276 mrg daddr_t map_offset;
2525 1.276 mrg
2526 1.276 mrg KASSERT(raidPtr->bytesPerSector);
2527 1.276 mrg if (raidPtr->bytesPerSector > RF_COMPONENT_INFO_SIZE)
2528 1.276 mrg map_offset = raidPtr->bytesPerSector;
2529 1.276 mrg else
2530 1.276 mrg map_offset = RF_COMPONENT_INFO_SIZE;
2531 1.276 mrg map_offset += rf_component_info_offset();
2532 1.276 mrg
2533 1.276 mrg return map_offset;
2534 1.276 mrg }
2535 1.276 mrg
2536 1.276 mrg static daddr_t
2537 1.276 mrg rf_parity_map_size(RF_Raid_t *raidPtr)
2538 1.276 mrg {
2539 1.276 mrg daddr_t map_size;
2540 1.276 mrg
2541 1.276 mrg if (raidPtr->bytesPerSector > RF_PARITY_MAP_SIZE)
2542 1.276 mrg map_size = raidPtr->bytesPerSector;
2543 1.276 mrg else
2544 1.276 mrg map_size = RF_PARITY_MAP_SIZE;
2545 1.276 mrg
2546 1.276 mrg return map_size;
2547 1.276 mrg }
2548 1.276 mrg
2549 1.186 perry int
2550 1.269 jld raidmarkclean(RF_Raid_t *raidPtr, RF_RowCol_t col)
2551 1.12 oster {
2552 1.269 jld RF_ComponentLabel_t *clabel;
2553 1.269 jld
2554 1.269 jld clabel = raidget_component_label(raidPtr, col);
2555 1.269 jld clabel->clean = RF_RAID_CLEAN;
2556 1.269 jld raidflush_component_label(raidPtr, col);
2557 1.12 oster return(0);
2558 1.12 oster }
2559 1.12 oster
2560 1.12 oster
2561 1.186 perry int
2562 1.269 jld raidmarkdirty(RF_Raid_t *raidPtr, RF_RowCol_t col)
2563 1.11 oster {
2564 1.269 jld RF_ComponentLabel_t *clabel;
2565 1.269 jld
2566 1.269 jld clabel = raidget_component_label(raidPtr, col);
2567 1.269 jld clabel->clean = RF_RAID_DIRTY;
2568 1.269 jld raidflush_component_label(raidPtr, col);
2569 1.11 oster return(0);
2570 1.11 oster }
2571 1.11 oster
2572 1.11 oster int
2573 1.269 jld raidfetch_component_label(RF_Raid_t *raidPtr, RF_RowCol_t col)
2574 1.269 jld {
2575 1.276 mrg KASSERT(raidPtr->bytesPerSector);
2576 1.276 mrg return raidread_component_label(raidPtr->bytesPerSector,
2577 1.276 mrg raidPtr->Disks[col].dev,
2578 1.269 jld raidPtr->raid_cinfo[col].ci_vp,
2579 1.269 jld &raidPtr->raid_cinfo[col].ci_label);
2580 1.269 jld }
2581 1.269 jld
2582 1.269 jld RF_ComponentLabel_t *
2583 1.269 jld raidget_component_label(RF_Raid_t *raidPtr, RF_RowCol_t col)
2584 1.269 jld {
2585 1.269 jld return &raidPtr->raid_cinfo[col].ci_label;
2586 1.269 jld }
2587 1.269 jld
2588 1.269 jld int
2589 1.269 jld raidflush_component_label(RF_Raid_t *raidPtr, RF_RowCol_t col)
2590 1.269 jld {
2591 1.269 jld RF_ComponentLabel_t *label;
2592 1.269 jld
2593 1.269 jld label = &raidPtr->raid_cinfo[col].ci_label;
2594 1.269 jld label->mod_counter = raidPtr->mod_counter;
2595 1.269 jld #ifndef RF_NO_PARITY_MAP
2596 1.269 jld label->parity_map_modcount = label->mod_counter;
2597 1.269 jld #endif
2598 1.276 mrg return raidwrite_component_label(raidPtr->bytesPerSector,
2599 1.276 mrg raidPtr->Disks[col].dev,
2600 1.269 jld raidPtr->raid_cinfo[col].ci_vp, label);
2601 1.269 jld }
2602 1.269 jld
2603 1.269 jld
2604 1.269 jld static int
2605 1.276 mrg raidread_component_label(unsigned secsize, dev_t dev, struct vnode *b_vp,
2606 1.269 jld RF_ComponentLabel_t *clabel)
2607 1.269 jld {
2608 1.269 jld return raidread_component_area(dev, b_vp, clabel,
2609 1.269 jld sizeof(RF_ComponentLabel_t),
2610 1.276 mrg rf_component_info_offset(),
2611 1.276 mrg rf_component_info_size(secsize));
2612 1.269 jld }
2613 1.269 jld
2614 1.269 jld /* ARGSUSED */
2615 1.269 jld static int
2616 1.269 jld raidread_component_area(dev_t dev, struct vnode *b_vp, void *data,
2617 1.269 jld size_t msize, daddr_t offset, daddr_t dsize)
2618 1.11 oster {
2619 1.11 oster struct buf *bp;
2620 1.130 gehenna const struct bdevsw *bdev;
2621 1.11 oster int error;
2622 1.186 perry
2623 1.11 oster /* XXX should probably ensure that we don't try to do this if
2624 1.186 perry someone has changed rf_protected_sectors. */
2625 1.11 oster
2626 1.98 oster if (b_vp == NULL) {
2627 1.98 oster /* For whatever reason, this component is not valid.
2628 1.98 oster Don't try to read a component label from it. */
2629 1.98 oster return(EINVAL);
2630 1.98 oster }
2631 1.98 oster
2632 1.11 oster /* get a block of the appropriate size... */
2633 1.269 jld bp = geteblk((int)dsize);
2634 1.11 oster bp->b_dev = dev;
2635 1.11 oster
2636 1.11 oster /* get our ducks in a row for the read */
2637 1.269 jld bp->b_blkno = offset / DEV_BSIZE;
2638 1.269 jld bp->b_bcount = dsize;
2639 1.100 chs bp->b_flags |= B_READ;
2640 1.269 jld bp->b_resid = dsize;
2641 1.11 oster
2642 1.130 gehenna bdev = bdevsw_lookup(bp->b_dev);
2643 1.130 gehenna if (bdev == NULL)
2644 1.130 gehenna return (ENXIO);
2645 1.130 gehenna (*bdev->d_strategy)(bp);
2646 1.11 oster
2647 1.186 perry error = biowait(bp);
2648 1.11 oster
2649 1.11 oster if (!error) {
2650 1.269 jld memcpy(data, bp->b_data, msize);
2651 1.204 simonb }
2652 1.11 oster
2653 1.233 ad brelse(bp, 0);
2654 1.11 oster return(error);
2655 1.11 oster }
2656 1.269 jld
2657 1.269 jld
2658 1.269 jld static int
2659 1.276 mrg raidwrite_component_label(unsigned secsize, dev_t dev, struct vnode *b_vp,
2660 1.276 mrg RF_ComponentLabel_t *clabel)
2661 1.269 jld {
2662 1.269 jld return raidwrite_component_area(dev, b_vp, clabel,
2663 1.269 jld sizeof(RF_ComponentLabel_t),
2664 1.276 mrg rf_component_info_offset(),
2665 1.276 mrg rf_component_info_size(secsize), 0);
2666 1.269 jld }
2667 1.269 jld
2668 1.11 oster /* ARGSUSED */
2669 1.269 jld static int
2670 1.269 jld raidwrite_component_area(dev_t dev, struct vnode *b_vp, void *data,
2671 1.269 jld size_t msize, daddr_t offset, daddr_t dsize, int asyncp)
2672 1.11 oster {
2673 1.11 oster struct buf *bp;
2674 1.130 gehenna const struct bdevsw *bdev;
2675 1.11 oster int error;
2676 1.11 oster
2677 1.11 oster /* get a block of the appropriate size... */
2678 1.269 jld bp = geteblk((int)dsize);
2679 1.11 oster bp->b_dev = dev;
2680 1.11 oster
2681 1.11 oster /* get our ducks in a row for the write */
2682 1.269 jld bp->b_blkno = offset / DEV_BSIZE;
2683 1.269 jld bp->b_bcount = dsize;
2684 1.269 jld bp->b_flags |= B_WRITE | (asyncp ? B_ASYNC : 0);
2685 1.269 jld bp->b_resid = dsize;
2686 1.11 oster
2687 1.269 jld memset(bp->b_data, 0, dsize);
2688 1.269 jld memcpy(bp->b_data, data, msize);
2689 1.11 oster
2690 1.130 gehenna bdev = bdevsw_lookup(bp->b_dev);
2691 1.130 gehenna if (bdev == NULL)
2692 1.130 gehenna return (ENXIO);
2693 1.130 gehenna (*bdev->d_strategy)(bp);
2694 1.269 jld if (asyncp)
2695 1.269 jld return 0;
2696 1.186 perry error = biowait(bp);
2697 1.233 ad brelse(bp, 0);
2698 1.11 oster if (error) {
2699 1.48 oster #if 1
2700 1.11 oster printf("Failed to write RAID component info!\n");
2701 1.48 oster #endif
2702 1.11 oster }
2703 1.11 oster
2704 1.11 oster return(error);
2705 1.1 oster }
2706 1.12 oster
2707 1.186 perry void
2708 1.269 jld rf_paritymap_kern_write(RF_Raid_t *raidPtr, struct rf_paritymap_ondisk *map)
2709 1.269 jld {
2710 1.269 jld int c;
2711 1.269 jld
2712 1.269 jld for (c = 0; c < raidPtr->numCol; c++) {
2713 1.269 jld /* Skip dead disks. */
2714 1.269 jld if (RF_DEAD_DISK(raidPtr->Disks[c].status))
2715 1.269 jld continue;
2716 1.269 jld /* XXXjld: what if an error occurs here? */
2717 1.269 jld raidwrite_component_area(raidPtr->Disks[c].dev,
2718 1.269 jld raidPtr->raid_cinfo[c].ci_vp, map,
2719 1.269 jld RF_PARITYMAP_NBYTE,
2720 1.276 mrg rf_parity_map_offset(raidPtr),
2721 1.276 mrg rf_parity_map_size(raidPtr), 0);
2722 1.269 jld }
2723 1.269 jld }
2724 1.269 jld
2725 1.269 jld void
2726 1.269 jld rf_paritymap_kern_read(RF_Raid_t *raidPtr, struct rf_paritymap_ondisk *map)
2727 1.269 jld {
2728 1.269 jld struct rf_paritymap_ondisk tmp;
2729 1.272 oster int c,first;
2730 1.269 jld
2731 1.272 oster first=1;
2732 1.269 jld for (c = 0; c < raidPtr->numCol; c++) {
2733 1.269 jld /* Skip dead disks. */
2734 1.269 jld if (RF_DEAD_DISK(raidPtr->Disks[c].status))
2735 1.269 jld continue;
2736 1.269 jld raidread_component_area(raidPtr->Disks[c].dev,
2737 1.269 jld raidPtr->raid_cinfo[c].ci_vp, &tmp,
2738 1.269 jld RF_PARITYMAP_NBYTE,
2739 1.276 mrg rf_parity_map_offset(raidPtr),
2740 1.276 mrg rf_parity_map_size(raidPtr));
2741 1.272 oster if (first) {
2742 1.269 jld memcpy(map, &tmp, sizeof(*map));
2743 1.272 oster first = 0;
2744 1.269 jld } else {
2745 1.269 jld rf_paritymap_merge(map, &tmp);
2746 1.269 jld }
2747 1.269 jld }
2748 1.269 jld }
2749 1.269 jld
2750 1.269 jld void
2751 1.169 oster rf_markalldirty(RF_Raid_t *raidPtr)
2752 1.12 oster {
2753 1.269 jld RF_ComponentLabel_t *clabel;
2754 1.146 oster int sparecol;
2755 1.166 oster int c;
2756 1.166 oster int j;
2757 1.166 oster int scol = -1;
2758 1.12 oster
2759 1.12 oster raidPtr->mod_counter++;
2760 1.166 oster for (c = 0; c < raidPtr->numCol; c++) {
2761 1.166 oster /* we don't want to touch (at all) a disk that has
2762 1.166 oster failed */
2763 1.166 oster if (!RF_DEAD_DISK(raidPtr->Disks[c].status)) {
2764 1.269 jld clabel = raidget_component_label(raidPtr, c);
2765 1.269 jld if (clabel->status == rf_ds_spared) {
2766 1.186 perry /* XXX do something special...
2767 1.186 perry but whatever you do, don't
2768 1.166 oster try to access it!! */
2769 1.166 oster } else {
2770 1.269 jld raidmarkdirty(raidPtr, c);
2771 1.12 oster }
2772 1.166 oster }
2773 1.186 perry }
2774 1.146 oster
2775 1.12 oster for( c = 0; c < raidPtr->numSpare ; c++) {
2776 1.12 oster sparecol = raidPtr->numCol + c;
2777 1.166 oster if (raidPtr->Disks[sparecol].status == rf_ds_used_spare) {
2778 1.186 perry /*
2779 1.186 perry
2780 1.186 perry we claim this disk is "optimal" if it's
2781 1.186 perry rf_ds_used_spare, as that means it should be
2782 1.186 perry directly substitutable for the disk it replaced.
2783 1.12 oster We note that too...
2784 1.12 oster
2785 1.12 oster */
2786 1.12 oster
2787 1.166 oster for(j=0;j<raidPtr->numCol;j++) {
2788 1.166 oster if (raidPtr->Disks[j].spareCol == sparecol) {
2789 1.166 oster scol = j;
2790 1.166 oster break;
2791 1.12 oster }
2792 1.12 oster }
2793 1.186 perry
2794 1.269 jld clabel = raidget_component_label(raidPtr, sparecol);
2795 1.12 oster /* make sure status is noted */
2796 1.146 oster
2797 1.269 jld raid_init_component_label(raidPtr, clabel);
2798 1.146 oster
2799 1.269 jld clabel->row = 0;
2800 1.269 jld clabel->column = scol;
2801 1.146 oster /* Note: we *don't* change status from rf_ds_used_spare
2802 1.146 oster to rf_ds_optimal */
2803 1.146 oster /* clabel.status = rf_ds_optimal; */
2804 1.186 perry
2805 1.269 jld raidmarkdirty(raidPtr, sparecol);
2806 1.12 oster }
2807 1.12 oster }
2808 1.12 oster }
2809 1.12 oster
2810 1.13 oster
2811 1.13 oster void
2812 1.169 oster rf_update_component_labels(RF_Raid_t *raidPtr, int final)
2813 1.13 oster {
2814 1.269 jld RF_ComponentLabel_t *clabel;
2815 1.13 oster int sparecol;
2816 1.166 oster int c;
2817 1.166 oster int j;
2818 1.166 oster int scol;
2819 1.13 oster
2820 1.13 oster scol = -1;
2821 1.13 oster
2822 1.186 perry /* XXX should do extra checks to make sure things really are clean,
2823 1.13 oster rather than blindly setting the clean bit... */
2824 1.13 oster
2825 1.13 oster raidPtr->mod_counter++;
2826 1.13 oster
2827 1.166 oster for (c = 0; c < raidPtr->numCol; c++) {
2828 1.166 oster if (raidPtr->Disks[c].status == rf_ds_optimal) {
2829 1.269 jld clabel = raidget_component_label(raidPtr, c);
2830 1.201 oster /* make sure status is noted */
2831 1.269 jld clabel->status = rf_ds_optimal;
2832 1.201 oster
2833 1.214 oster /* note what unit we are configured as */
2834 1.269 jld clabel->last_unit = raidPtr->raidid;
2835 1.214 oster
2836 1.269 jld raidflush_component_label(raidPtr, c);
2837 1.166 oster if (final == RF_FINAL_COMPONENT_UPDATE) {
2838 1.166 oster if (raidPtr->parity_good == RF_RAID_CLEAN) {
2839 1.269 jld raidmarkclean(raidPtr, c);
2840 1.91 oster }
2841 1.166 oster }
2842 1.186 perry }
2843 1.166 oster /* else we don't touch it.. */
2844 1.186 perry }
2845 1.63 oster
2846 1.63 oster for( c = 0; c < raidPtr->numSpare ; c++) {
2847 1.63 oster sparecol = raidPtr->numCol + c;
2848 1.110 oster /* Need to ensure that the reconstruct actually completed! */
2849 1.166 oster if (raidPtr->Disks[sparecol].status == rf_ds_used_spare) {
2850 1.186 perry /*
2851 1.186 perry
2852 1.186 perry we claim this disk is "optimal" if it's
2853 1.186 perry rf_ds_used_spare, as that means it should be
2854 1.186 perry directly substitutable for the disk it replaced.
2855 1.63 oster We note that too...
2856 1.63 oster
2857 1.63 oster */
2858 1.63 oster
2859 1.166 oster for(j=0;j<raidPtr->numCol;j++) {
2860 1.166 oster if (raidPtr->Disks[j].spareCol == sparecol) {
2861 1.166 oster scol = j;
2862 1.166 oster break;
2863 1.63 oster }
2864 1.63 oster }
2865 1.186 perry
2866 1.63 oster /* XXX shouldn't *really* need this... */
2867 1.269 jld clabel = raidget_component_label(raidPtr, sparecol);
2868 1.63 oster /* make sure status is noted */
2869 1.63 oster
2870 1.269 jld raid_init_component_label(raidPtr, clabel);
2871 1.269 jld
2872 1.269 jld clabel->column = scol;
2873 1.269 jld clabel->status = rf_ds_optimal;
2874 1.269 jld clabel->last_unit = raidPtr->raidid;
2875 1.63 oster
2876 1.269 jld raidflush_component_label(raidPtr, sparecol);
2877 1.91 oster if (final == RF_FINAL_COMPONENT_UPDATE) {
2878 1.13 oster if (raidPtr->parity_good == RF_RAID_CLEAN) {
2879 1.269 jld raidmarkclean(raidPtr, sparecol);
2880 1.13 oster }
2881 1.13 oster }
2882 1.13 oster }
2883 1.13 oster }
2884 1.68 oster }
2885 1.68 oster
2886 1.68 oster void
2887 1.169 oster rf_close_component(RF_Raid_t *raidPtr, struct vnode *vp, int auto_configured)
2888 1.69 oster {
2889 1.69 oster
2890 1.69 oster if (vp != NULL) {
2891 1.69 oster if (auto_configured == 1) {
2892 1.96 oster vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
2893 1.238 pooka VOP_CLOSE(vp, FREAD | FWRITE, NOCRED);
2894 1.69 oster vput(vp);
2895 1.186 perry
2896 1.186 perry } else {
2897 1.244 ad (void) vn_close(vp, FREAD | FWRITE, curlwp->l_cred);
2898 1.69 oster }
2899 1.186 perry }
2900 1.69 oster }
2901 1.69 oster
2902 1.69 oster
2903 1.69 oster void
2904 1.169 oster rf_UnconfigureVnodes(RF_Raid_t *raidPtr)
2905 1.68 oster {
2906 1.186 perry int r,c;
2907 1.69 oster struct vnode *vp;
2908 1.69 oster int acd;
2909 1.68 oster
2910 1.68 oster
2911 1.68 oster /* We take this opportunity to close the vnodes like we should.. */
2912 1.68 oster
2913 1.166 oster for (c = 0; c < raidPtr->numCol; c++) {
2914 1.166 oster vp = raidPtr->raid_cinfo[c].ci_vp;
2915 1.166 oster acd = raidPtr->Disks[c].auto_configured;
2916 1.166 oster rf_close_component(raidPtr, vp, acd);
2917 1.166 oster raidPtr->raid_cinfo[c].ci_vp = NULL;
2918 1.166 oster raidPtr->Disks[c].auto_configured = 0;
2919 1.68 oster }
2920 1.166 oster
2921 1.68 oster for (r = 0; r < raidPtr->numSpare; r++) {
2922 1.166 oster vp = raidPtr->raid_cinfo[raidPtr->numCol + r].ci_vp;
2923 1.166 oster acd = raidPtr->Disks[raidPtr->numCol + r].auto_configured;
2924 1.69 oster rf_close_component(raidPtr, vp, acd);
2925 1.166 oster raidPtr->raid_cinfo[raidPtr->numCol + r].ci_vp = NULL;
2926 1.166 oster raidPtr->Disks[raidPtr->numCol + r].auto_configured = 0;
2927 1.68 oster }
2928 1.37 oster }
2929 1.63 oster
2930 1.37 oster
2931 1.186 perry void
2932 1.169 oster rf_ReconThread(struct rf_recon_req *req)
2933 1.37 oster {
2934 1.37 oster int s;
2935 1.37 oster RF_Raid_t *raidPtr;
2936 1.37 oster
2937 1.37 oster s = splbio();
2938 1.37 oster raidPtr = (RF_Raid_t *) req->raidPtr;
2939 1.37 oster raidPtr->recon_in_progress = 1;
2940 1.37 oster
2941 1.166 oster rf_FailDisk((RF_Raid_t *) req->raidPtr, req->col,
2942 1.37 oster ((req->flags & RF_FDFLAGS_RECON) ? 1 : 0));
2943 1.37 oster
2944 1.37 oster RF_Free(req, sizeof(*req));
2945 1.37 oster
2946 1.37 oster raidPtr->recon_in_progress = 0;
2947 1.37 oster splx(s);
2948 1.37 oster
2949 1.37 oster /* That's all... */
2950 1.204 simonb kthread_exit(0); /* does not return */
2951 1.37 oster }
2952 1.37 oster
2953 1.37 oster void
2954 1.169 oster rf_RewriteParityThread(RF_Raid_t *raidPtr)
2955 1.37 oster {
2956 1.37 oster int retcode;
2957 1.37 oster int s;
2958 1.37 oster
2959 1.184 oster raidPtr->parity_rewrite_stripes_done = 0;
2960 1.37 oster raidPtr->parity_rewrite_in_progress = 1;
2961 1.37 oster s = splbio();
2962 1.37 oster retcode = rf_RewriteParity(raidPtr);
2963 1.37 oster splx(s);
2964 1.37 oster if (retcode) {
2965 1.279 christos printf("raid%d: Error re-writing parity (%d)!\n",
2966 1.279 christos raidPtr->raidid, retcode);
2967 1.37 oster } else {
2968 1.37 oster /* set the clean bit! If we shutdown correctly,
2969 1.37 oster the clean bit on each component label will get
2970 1.37 oster set */
2971 1.37 oster raidPtr->parity_good = RF_RAID_CLEAN;
2972 1.37 oster }
2973 1.37 oster raidPtr->parity_rewrite_in_progress = 0;
2974 1.85 oster
2975 1.85 oster /* Anyone waiting for us to stop? If so, inform them... */
2976 1.85 oster if (raidPtr->waitShutdown) {
2977 1.85 oster wakeup(&raidPtr->parity_rewrite_in_progress);
2978 1.85 oster }
2979 1.37 oster
2980 1.37 oster /* That's all... */
2981 1.204 simonb kthread_exit(0); /* does not return */
2982 1.37 oster }
2983 1.37 oster
2984 1.37 oster
2985 1.37 oster void
2986 1.169 oster rf_CopybackThread(RF_Raid_t *raidPtr)
2987 1.37 oster {
2988 1.37 oster int s;
2989 1.37 oster
2990 1.37 oster raidPtr->copyback_in_progress = 1;
2991 1.37 oster s = splbio();
2992 1.37 oster rf_CopybackReconstructedData(raidPtr);
2993 1.37 oster splx(s);
2994 1.37 oster raidPtr->copyback_in_progress = 0;
2995 1.37 oster
2996 1.37 oster /* That's all... */
2997 1.204 simonb kthread_exit(0); /* does not return */
2998 1.37 oster }
2999 1.37 oster
3000 1.37 oster
3001 1.37 oster void
3002 1.169 oster rf_ReconstructInPlaceThread(struct rf_recon_req *req)
3003 1.37 oster {
3004 1.37 oster int s;
3005 1.37 oster RF_Raid_t *raidPtr;
3006 1.186 perry
3007 1.37 oster s = splbio();
3008 1.37 oster raidPtr = req->raidPtr;
3009 1.37 oster raidPtr->recon_in_progress = 1;
3010 1.166 oster rf_ReconstructInPlace(raidPtr, req->col);
3011 1.37 oster RF_Free(req, sizeof(*req));
3012 1.37 oster raidPtr->recon_in_progress = 0;
3013 1.37 oster splx(s);
3014 1.37 oster
3015 1.37 oster /* That's all... */
3016 1.204 simonb kthread_exit(0); /* does not return */
3017 1.48 oster }
3018 1.48 oster
3019 1.213 christos static RF_AutoConfig_t *
3020 1.213 christos rf_get_component(RF_AutoConfig_t *ac_list, dev_t dev, struct vnode *vp,
3021 1.276 mrg const char *cname, RF_SectorCount_t size, uint64_t numsecs,
3022 1.276 mrg unsigned secsize)
3023 1.213 christos {
3024 1.213 christos int good_one = 0;
3025 1.213 christos RF_ComponentLabel_t *clabel;
3026 1.213 christos RF_AutoConfig_t *ac;
3027 1.213 christos
3028 1.213 christos clabel = malloc(sizeof(RF_ComponentLabel_t), M_RAIDFRAME, M_NOWAIT);
3029 1.213 christos if (clabel == NULL) {
3030 1.213 christos oomem:
3031 1.213 christos while(ac_list) {
3032 1.213 christos ac = ac_list;
3033 1.213 christos if (ac->clabel)
3034 1.213 christos free(ac->clabel, M_RAIDFRAME);
3035 1.213 christos ac_list = ac_list->next;
3036 1.213 christos free(ac, M_RAIDFRAME);
3037 1.213 christos }
3038 1.213 christos printf("RAID auto config: out of memory!\n");
3039 1.213 christos return NULL; /* XXX probably should panic? */
3040 1.213 christos }
3041 1.213 christos
3042 1.276 mrg if (!raidread_component_label(secsize, dev, vp, clabel)) {
3043 1.276 mrg /* Got the label. Does it look reasonable? */
3044 1.284 mrg if (rf_reasonable_label(clabel, numsecs) &&
3045 1.282 enami (rf_component_label_partitionsize(clabel) <= size)) {
3046 1.224 oster #ifdef DEBUG
3047 1.276 mrg printf("Component on: %s: %llu\n",
3048 1.213 christos cname, (unsigned long long)size);
3049 1.276 mrg rf_print_component_label(clabel);
3050 1.213 christos #endif
3051 1.276 mrg /* if it's reasonable, add it, else ignore it. */
3052 1.276 mrg ac = malloc(sizeof(RF_AutoConfig_t), M_RAIDFRAME,
3053 1.213 christos M_NOWAIT);
3054 1.276 mrg if (ac == NULL) {
3055 1.276 mrg free(clabel, M_RAIDFRAME);
3056 1.276 mrg goto oomem;
3057 1.276 mrg }
3058 1.276 mrg strlcpy(ac->devname, cname, sizeof(ac->devname));
3059 1.276 mrg ac->dev = dev;
3060 1.276 mrg ac->vp = vp;
3061 1.276 mrg ac->clabel = clabel;
3062 1.276 mrg ac->next = ac_list;
3063 1.276 mrg ac_list = ac;
3064 1.276 mrg good_one = 1;
3065 1.276 mrg }
3066 1.213 christos }
3067 1.213 christos if (!good_one) {
3068 1.213 christos /* cleanup */
3069 1.213 christos free(clabel, M_RAIDFRAME);
3070 1.213 christos vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
3071 1.238 pooka VOP_CLOSE(vp, FREAD | FWRITE, NOCRED);
3072 1.213 christos vput(vp);
3073 1.213 christos }
3074 1.213 christos return ac_list;
3075 1.213 christos }
3076 1.213 christos
3077 1.48 oster RF_AutoConfig_t *
3078 1.259 cegger rf_find_raid_components(void)
3079 1.48 oster {
3080 1.48 oster struct vnode *vp;
3081 1.48 oster struct disklabel label;
3082 1.261 dyoung device_t dv;
3083 1.268 dyoung deviter_t di;
3084 1.48 oster dev_t dev;
3085 1.296 buhrow int bmajor, bminor, wedge, rf_part_found;
3086 1.48 oster int error;
3087 1.48 oster int i;
3088 1.48 oster RF_AutoConfig_t *ac_list;
3089 1.276 mrg uint64_t numsecs;
3090 1.276 mrg unsigned secsize;
3091 1.48 oster
3092 1.48 oster /* initialize the AutoConfig list */
3093 1.48 oster ac_list = NULL;
3094 1.48 oster
3095 1.48 oster /* we begin by trolling through *all* the devices on the system */
3096 1.48 oster
3097 1.268 dyoung for (dv = deviter_first(&di, DEVITER_F_ROOT_FIRST); dv != NULL;
3098 1.268 dyoung dv = deviter_next(&di)) {
3099 1.48 oster
3100 1.48 oster /* we are only interested in disks... */
3101 1.200 thorpej if (device_class(dv) != DV_DISK)
3102 1.48 oster continue;
3103 1.48 oster
3104 1.48 oster /* we don't care about floppies... */
3105 1.206 thorpej if (device_is_a(dv, "fd")) {
3106 1.119 leo continue;
3107 1.119 leo }
3108 1.129 oster
3109 1.129 oster /* we don't care about CD's... */
3110 1.206 thorpej if (device_is_a(dv, "cd")) {
3111 1.129 oster continue;
3112 1.129 oster }
3113 1.129 oster
3114 1.248 oster /* we don't care about md's... */
3115 1.248 oster if (device_is_a(dv, "md")) {
3116 1.248 oster continue;
3117 1.248 oster }
3118 1.248 oster
3119 1.120 leo /* hdfd is the Atari/Hades floppy driver */
3120 1.206 thorpej if (device_is_a(dv, "hdfd")) {
3121 1.121 leo continue;
3122 1.121 leo }
3123 1.206 thorpej
3124 1.121 leo /* fdisa is the Atari/Milan floppy driver */
3125 1.206 thorpej if (device_is_a(dv, "fdisa")) {
3126 1.48 oster continue;
3127 1.48 oster }
3128 1.186 perry
3129 1.48 oster /* need to find the device_name_to_block_device_major stuff */
3130 1.245 cegger bmajor = devsw_name2blk(device_xname(dv), NULL, 0);
3131 1.48 oster
3132 1.296 buhrow rf_part_found = 0; /*No raid partition as yet*/
3133 1.296 buhrow
3134 1.48 oster /* get a vnode for the raw partition of this disk */
3135 1.48 oster
3136 1.213 christos wedge = device_is_a(dv, "dk");
3137 1.213 christos bminor = minor(device_unit(dv));
3138 1.213 christos dev = wedge ? makedev(bmajor, bminor) :
3139 1.213 christos MAKEDISKDEV(bmajor, bminor, RAW_PART);
3140 1.48 oster if (bdevvp(dev, &vp))
3141 1.48 oster panic("RAID can't alloc vnode");
3142 1.48 oster
3143 1.293 jmcneill error = VOP_OPEN(vp, FREAD | FSILENT, NOCRED);
3144 1.48 oster
3145 1.48 oster if (error) {
3146 1.186 perry /* "Who cares." Continue looking
3147 1.48 oster for something that exists*/
3148 1.48 oster vput(vp);
3149 1.48 oster continue;
3150 1.48 oster }
3151 1.48 oster
3152 1.276 mrg error = getdisksize(vp, &numsecs, &secsize);
3153 1.276 mrg if (error) {
3154 1.276 mrg vput(vp);
3155 1.276 mrg continue;
3156 1.276 mrg }
3157 1.213 christos if (wedge) {
3158 1.213 christos struct dkwedge_info dkw;
3159 1.213 christos error = VOP_IOCTL(vp, DIOCGWEDGEINFO, &dkw, FREAD,
3160 1.238 pooka NOCRED);
3161 1.213 christos if (error) {
3162 1.213 christos printf("RAIDframe: can't get wedge info for "
3163 1.245 cegger "dev %s (%d)\n", device_xname(dv), error);
3164 1.241 oster vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
3165 1.241 oster VOP_CLOSE(vp, FREAD | FWRITE, NOCRED);
3166 1.241 oster vput(vp);
3167 1.213 christos continue;
3168 1.213 christos }
3169 1.213 christos
3170 1.241 oster if (strcmp(dkw.dkw_ptype, DKW_PTYPE_RAIDFRAME) != 0) {
3171 1.241 oster vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
3172 1.241 oster VOP_CLOSE(vp, FREAD | FWRITE, NOCRED);
3173 1.241 oster vput(vp);
3174 1.228 christos continue;
3175 1.241 oster }
3176 1.213 christos
3177 1.213 christos ac_list = rf_get_component(ac_list, dev, vp,
3178 1.276 mrg device_xname(dv), dkw.dkw_size, numsecs, secsize);
3179 1.296 buhrow rf_part_found = 1; /*There is a raid component on this disk*/
3180 1.213 christos continue;
3181 1.213 christos }
3182 1.213 christos
3183 1.48 oster /* Ok, the disk exists. Go get the disklabel. */
3184 1.238 pooka error = VOP_IOCTL(vp, DIOCGDINFO, &label, FREAD, NOCRED);
3185 1.48 oster if (error) {
3186 1.48 oster /*
3187 1.48 oster * XXX can't happen - open() would
3188 1.48 oster * have errored out (or faked up one)
3189 1.48 oster */
3190 1.181 thorpej if (error != ENOTTY)
3191 1.181 thorpej printf("RAIDframe: can't get label for dev "
3192 1.245 cegger "%s (%d)\n", device_xname(dv), error);
3193 1.48 oster }
3194 1.48 oster
3195 1.48 oster /* don't need this any more. We'll allocate it again
3196 1.48 oster a little later if we really do... */
3197 1.96 oster vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
3198 1.238 pooka VOP_CLOSE(vp, FREAD | FWRITE, NOCRED);
3199 1.48 oster vput(vp);
3200 1.48 oster
3201 1.181 thorpej if (error)
3202 1.181 thorpej continue;
3203 1.181 thorpej
3204 1.296 buhrow rf_part_found = 0; /*No raid partitions yet*/
3205 1.213 christos for (i = 0; i < label.d_npartitions; i++) {
3206 1.213 christos char cname[sizeof(ac_list->devname)];
3207 1.213 christos
3208 1.48 oster /* We only support partitions marked as RAID */
3209 1.48 oster if (label.d_partitions[i].p_fstype != FS_RAID)
3210 1.48 oster continue;
3211 1.48 oster
3212 1.206 thorpej dev = MAKEDISKDEV(bmajor, device_unit(dv), i);
3213 1.48 oster if (bdevvp(dev, &vp))
3214 1.48 oster panic("RAID can't alloc vnode");
3215 1.48 oster
3216 1.238 pooka error = VOP_OPEN(vp, FREAD, NOCRED);
3217 1.48 oster if (error) {
3218 1.48 oster /* Whatever... */
3219 1.48 oster vput(vp);
3220 1.48 oster continue;
3221 1.48 oster }
3222 1.213 christos snprintf(cname, sizeof(cname), "%s%c",
3223 1.245 cegger device_xname(dv), 'a' + i);
3224 1.213 christos ac_list = rf_get_component(ac_list, dev, vp, cname,
3225 1.276 mrg label.d_partitions[i].p_size, numsecs, secsize);
3226 1.296 buhrow rf_part_found = 1; /*There is at least one raid partition on this disk*/
3227 1.296 buhrow }
3228 1.296 buhrow
3229 1.296 buhrow /*
3230 1.296 buhrow *If there is no raid component on this disk, either in a
3231 1.296 buhrow *disklabel or inside a wedge, check the raw partition as well,
3232 1.296 buhrow *as it is possible to configure raid components on raw disk
3233 1.296 buhrow *devices.
3234 1.296 buhrow */
3235 1.296 buhrow
3236 1.296 buhrow if (!rf_part_found) {
3237 1.296 buhrow char cname[sizeof(ac_list->devname)];
3238 1.296 buhrow
3239 1.296 buhrow dev = MAKEDISKDEV(bmajor, device_unit(dv), RAW_PART);
3240 1.296 buhrow if (bdevvp(dev, &vp))
3241 1.296 buhrow panic("RAID can't alloc vnode");
3242 1.296 buhrow
3243 1.296 buhrow error = VOP_OPEN(vp, FREAD, NOCRED);
3244 1.296 buhrow if (error) {
3245 1.296 buhrow /* Whatever... */
3246 1.296 buhrow vput(vp);
3247 1.296 buhrow continue;
3248 1.296 buhrow }
3249 1.296 buhrow snprintf(cname, sizeof(cname), "%s%c",
3250 1.296 buhrow device_xname(dv), 'a' + RAW_PART);
3251 1.296 buhrow ac_list = rf_get_component(ac_list, dev, vp, cname,
3252 1.296 buhrow label.d_partitions[RAW_PART].p_size, numsecs, secsize);
3253 1.48 oster }
3254 1.48 oster }
3255 1.268 dyoung deviter_release(&di);
3256 1.213 christos return ac_list;
3257 1.48 oster }
3258 1.186 perry
3259 1.213 christos
3260 1.292 oster int
3261 1.284 mrg rf_reasonable_label(RF_ComponentLabel_t *clabel, uint64_t numsecs)
3262 1.48 oster {
3263 1.186 perry
3264 1.48 oster if (((clabel->version==RF_COMPONENT_LABEL_VERSION_1) ||
3265 1.48 oster (clabel->version==RF_COMPONENT_LABEL_VERSION)) &&
3266 1.48 oster ((clabel->clean == RF_RAID_CLEAN) ||
3267 1.48 oster (clabel->clean == RF_RAID_DIRTY)) &&
3268 1.186 perry clabel->row >=0 &&
3269 1.186 perry clabel->column >= 0 &&
3270 1.48 oster clabel->num_rows > 0 &&
3271 1.48 oster clabel->num_columns > 0 &&
3272 1.186 perry clabel->row < clabel->num_rows &&
3273 1.48 oster clabel->column < clabel->num_columns &&
3274 1.48 oster clabel->blockSize > 0 &&
3275 1.282 enami /*
3276 1.282 enami * numBlocksHi may contain garbage, but it is ok since
3277 1.282 enami * the type is unsigned. If it is really garbage,
3278 1.282 enami * rf_fix_old_label_size() will fix it.
3279 1.282 enami */
3280 1.282 enami rf_component_label_numblocks(clabel) > 0) {
3281 1.284 mrg /*
3282 1.284 mrg * label looks reasonable enough...
3283 1.284 mrg * let's make sure it has no old garbage.
3284 1.284 mrg */
3285 1.292 oster if (numsecs)
3286 1.292 oster rf_fix_old_label_size(clabel, numsecs);
3287 1.48 oster return(1);
3288 1.48 oster }
3289 1.48 oster return(0);
3290 1.48 oster }
3291 1.48 oster
3292 1.48 oster
3293 1.278 mrg /*
3294 1.278 mrg * For reasons yet unknown, some old component labels have garbage in
3295 1.278 mrg * the newer numBlocksHi region, and this causes lossage. Since those
3296 1.278 mrg * disks will also have numsecs set to less than 32 bits of sectors,
3297 1.299 oster * we can determine when this corruption has occurred, and fix it.
3298 1.284 mrg *
3299 1.284 mrg * The exact same problem, with the same unknown reason, happens to
3300 1.284 mrg * the partitionSizeHi member as well.
3301 1.278 mrg */
3302 1.278 mrg static void
3303 1.278 mrg rf_fix_old_label_size(RF_ComponentLabel_t *clabel, uint64_t numsecs)
3304 1.278 mrg {
3305 1.278 mrg
3306 1.284 mrg if (numsecs < ((uint64_t)1 << 32)) {
3307 1.284 mrg if (clabel->numBlocksHi) {
3308 1.284 mrg printf("WARNING: total sectors < 32 bits, yet "
3309 1.284 mrg "numBlocksHi set\n"
3310 1.284 mrg "WARNING: resetting numBlocksHi to zero.\n");
3311 1.284 mrg clabel->numBlocksHi = 0;
3312 1.284 mrg }
3313 1.284 mrg
3314 1.284 mrg if (clabel->partitionSizeHi) {
3315 1.284 mrg printf("WARNING: total sectors < 32 bits, yet "
3316 1.284 mrg "partitionSizeHi set\n"
3317 1.284 mrg "WARNING: resetting partitionSizeHi to zero.\n");
3318 1.284 mrg clabel->partitionSizeHi = 0;
3319 1.284 mrg }
3320 1.278 mrg }
3321 1.278 mrg }
3322 1.278 mrg
3323 1.278 mrg
3324 1.224 oster #ifdef DEBUG
3325 1.48 oster void
3326 1.169 oster rf_print_component_label(RF_ComponentLabel_t *clabel)
3327 1.48 oster {
3328 1.282 enami uint64_t numBlocks;
3329 1.308 christos static const char *rp[] = {
3330 1.308 christos "No", "Force", "Soft", "*invalid*"
3331 1.308 christos };
3332 1.308 christos
3333 1.275 mrg
3334 1.282 enami numBlocks = rf_component_label_numblocks(clabel);
3335 1.275 mrg
3336 1.48 oster printf(" Row: %d Column: %d Num Rows: %d Num Columns: %d\n",
3337 1.186 perry clabel->row, clabel->column,
3338 1.48 oster clabel->num_rows, clabel->num_columns);
3339 1.48 oster printf(" Version: %d Serial Number: %d Mod Counter: %d\n",
3340 1.48 oster clabel->version, clabel->serial_number,
3341 1.48 oster clabel->mod_counter);
3342 1.48 oster printf(" Clean: %s Status: %d\n",
3343 1.271 dyoung clabel->clean ? "Yes" : "No", clabel->status);
3344 1.48 oster printf(" sectPerSU: %d SUsPerPU: %d SUsPerRU: %d\n",
3345 1.48 oster clabel->sectPerSU, clabel->SUsPerPU, clabel->SUsPerRU);
3346 1.275 mrg printf(" RAID Level: %c blocksize: %d numBlocks: %"PRIu64"\n",
3347 1.275 mrg (char) clabel->parityConfig, clabel->blockSize, numBlocks);
3348 1.271 dyoung printf(" Autoconfig: %s\n", clabel->autoconfigure ? "Yes" : "No");
3349 1.308 christos printf(" Root partition: %s\n", rp[clabel->root_partition & 3]);
3350 1.271 dyoung printf(" Last configured as: raid%d\n", clabel->last_unit);
3351 1.51 oster #if 0
3352 1.51 oster printf(" Config order: %d\n", clabel->config_order);
3353 1.51 oster #endif
3354 1.186 perry
3355 1.48 oster }
3356 1.133 oster #endif
3357 1.48 oster
3358 1.48 oster RF_ConfigSet_t *
3359 1.169 oster rf_create_auto_sets(RF_AutoConfig_t *ac_list)
3360 1.48 oster {
3361 1.48 oster RF_AutoConfig_t *ac;
3362 1.48 oster RF_ConfigSet_t *config_sets;
3363 1.48 oster RF_ConfigSet_t *cset;
3364 1.48 oster RF_AutoConfig_t *ac_next;
3365 1.48 oster
3366 1.48 oster
3367 1.48 oster config_sets = NULL;
3368 1.48 oster
3369 1.48 oster /* Go through the AutoConfig list, and figure out which components
3370 1.48 oster belong to what sets. */
3371 1.48 oster ac = ac_list;
3372 1.48 oster while(ac!=NULL) {
3373 1.48 oster /* we're going to putz with ac->next, so save it here
3374 1.48 oster for use at the end of the loop */
3375 1.48 oster ac_next = ac->next;
3376 1.48 oster
3377 1.48 oster if (config_sets == NULL) {
3378 1.48 oster /* will need at least this one... */
3379 1.48 oster config_sets = (RF_ConfigSet_t *)
3380 1.186 perry malloc(sizeof(RF_ConfigSet_t),
3381 1.48 oster M_RAIDFRAME, M_NOWAIT);
3382 1.48 oster if (config_sets == NULL) {
3383 1.141 provos panic("rf_create_auto_sets: No memory!");
3384 1.48 oster }
3385 1.48 oster /* this one is easy :) */
3386 1.48 oster config_sets->ac = ac;
3387 1.48 oster config_sets->next = NULL;
3388 1.51 oster config_sets->rootable = 0;
3389 1.48 oster ac->next = NULL;
3390 1.48 oster } else {
3391 1.48 oster /* which set does this component fit into? */
3392 1.48 oster cset = config_sets;
3393 1.48 oster while(cset!=NULL) {
3394 1.49 oster if (rf_does_it_fit(cset, ac)) {
3395 1.86 oster /* looks like it matches... */
3396 1.86 oster ac->next = cset->ac;
3397 1.86 oster cset->ac = ac;
3398 1.48 oster break;
3399 1.48 oster }
3400 1.48 oster cset = cset->next;
3401 1.48 oster }
3402 1.48 oster if (cset==NULL) {
3403 1.48 oster /* didn't find a match above... new set..*/
3404 1.48 oster cset = (RF_ConfigSet_t *)
3405 1.186 perry malloc(sizeof(RF_ConfigSet_t),
3406 1.48 oster M_RAIDFRAME, M_NOWAIT);
3407 1.48 oster if (cset == NULL) {
3408 1.141 provos panic("rf_create_auto_sets: No memory!");
3409 1.48 oster }
3410 1.48 oster cset->ac = ac;
3411 1.48 oster ac->next = NULL;
3412 1.48 oster cset->next = config_sets;
3413 1.51 oster cset->rootable = 0;
3414 1.48 oster config_sets = cset;
3415 1.48 oster }
3416 1.48 oster }
3417 1.48 oster ac = ac_next;
3418 1.48 oster }
3419 1.48 oster
3420 1.48 oster
3421 1.48 oster return(config_sets);
3422 1.48 oster }
3423 1.48 oster
3424 1.48 oster static int
3425 1.169 oster rf_does_it_fit(RF_ConfigSet_t *cset, RF_AutoConfig_t *ac)
3426 1.48 oster {
3427 1.48 oster RF_ComponentLabel_t *clabel1, *clabel2;
3428 1.48 oster
3429 1.48 oster /* If this one matches the *first* one in the set, that's good
3430 1.48 oster enough, since the other members of the set would have been
3431 1.48 oster through here too... */
3432 1.60 oster /* note that we are not checking partitionSize here..
3433 1.60 oster
3434 1.60 oster Note that we are also not checking the mod_counters here.
3435 1.299 oster If everything else matches except the mod_counter, that's
3436 1.60 oster good enough for this test. We will deal with the mod_counters
3437 1.186 perry a little later in the autoconfiguration process.
3438 1.60 oster
3439 1.60 oster (clabel1->mod_counter == clabel2->mod_counter) &&
3440 1.81 oster
3441 1.81 oster The reason we don't check for this is that failed disks
3442 1.81 oster will have lower modification counts. If those disks are
3443 1.81 oster not added to the set they used to belong to, then they will
3444 1.81 oster form their own set, which may result in 2 different sets,
3445 1.81 oster for example, competing to be configured at raid0, and
3446 1.81 oster perhaps competing to be the root filesystem set. If the
3447 1.81 oster wrong ones get configured, or both attempt to become /,
3448 1.81 oster weird behaviour and or serious lossage will occur. Thus we
3449 1.81 oster need to bring them into the fold here, and kick them out at
3450 1.81 oster a later point.
3451 1.60 oster
3452 1.60 oster */
3453 1.48 oster
3454 1.48 oster clabel1 = cset->ac->clabel;
3455 1.48 oster clabel2 = ac->clabel;
3456 1.48 oster if ((clabel1->version == clabel2->version) &&
3457 1.48 oster (clabel1->serial_number == clabel2->serial_number) &&
3458 1.48 oster (clabel1->num_rows == clabel2->num_rows) &&
3459 1.48 oster (clabel1->num_columns == clabel2->num_columns) &&
3460 1.48 oster (clabel1->sectPerSU == clabel2->sectPerSU) &&
3461 1.48 oster (clabel1->SUsPerPU == clabel2->SUsPerPU) &&
3462 1.48 oster (clabel1->SUsPerRU == clabel2->SUsPerRU) &&
3463 1.48 oster (clabel1->parityConfig == clabel2->parityConfig) &&
3464 1.48 oster (clabel1->maxOutstanding == clabel2->maxOutstanding) &&
3465 1.48 oster (clabel1->blockSize == clabel2->blockSize) &&
3466 1.282 enami rf_component_label_numblocks(clabel1) ==
3467 1.282 enami rf_component_label_numblocks(clabel2) &&
3468 1.48 oster (clabel1->autoconfigure == clabel2->autoconfigure) &&
3469 1.48 oster (clabel1->root_partition == clabel2->root_partition) &&
3470 1.48 oster (clabel1->last_unit == clabel2->last_unit) &&
3471 1.48 oster (clabel1->config_order == clabel2->config_order)) {
3472 1.48 oster /* if it get's here, it almost *has* to be a match */
3473 1.48 oster } else {
3474 1.186 perry /* it's not consistent with somebody in the set..
3475 1.48 oster punt */
3476 1.48 oster return(0);
3477 1.48 oster }
3478 1.48 oster /* all was fine.. it must fit... */
3479 1.48 oster return(1);
3480 1.48 oster }
3481 1.48 oster
3482 1.48 oster int
3483 1.169 oster rf_have_enough_components(RF_ConfigSet_t *cset)
3484 1.48 oster {
3485 1.51 oster RF_AutoConfig_t *ac;
3486 1.51 oster RF_AutoConfig_t *auto_config;
3487 1.51 oster RF_ComponentLabel_t *clabel;
3488 1.166 oster int c;
3489 1.51 oster int num_cols;
3490 1.51 oster int num_missing;
3491 1.86 oster int mod_counter;
3492 1.87 oster int mod_counter_found;
3493 1.88 oster int even_pair_failed;
3494 1.88 oster char parity_type;
3495 1.186 perry
3496 1.51 oster
3497 1.48 oster /* check to see that we have enough 'live' components
3498 1.48 oster of this set. If so, we can configure it if necessary */
3499 1.48 oster
3500 1.51 oster num_cols = cset->ac->clabel->num_columns;
3501 1.88 oster parity_type = cset->ac->clabel->parityConfig;
3502 1.51 oster
3503 1.51 oster /* XXX Check for duplicate components!?!?!? */
3504 1.51 oster
3505 1.86 oster /* Determine what the mod_counter is supposed to be for this set. */
3506 1.86 oster
3507 1.87 oster mod_counter_found = 0;
3508 1.101 oster mod_counter = 0;
3509 1.86 oster ac = cset->ac;
3510 1.86 oster while(ac!=NULL) {
3511 1.87 oster if (mod_counter_found==0) {
3512 1.86 oster mod_counter = ac->clabel->mod_counter;
3513 1.87 oster mod_counter_found = 1;
3514 1.87 oster } else {
3515 1.87 oster if (ac->clabel->mod_counter > mod_counter) {
3516 1.87 oster mod_counter = ac->clabel->mod_counter;
3517 1.87 oster }
3518 1.86 oster }
3519 1.86 oster ac = ac->next;
3520 1.86 oster }
3521 1.86 oster
3522 1.51 oster num_missing = 0;
3523 1.51 oster auto_config = cset->ac;
3524 1.51 oster
3525 1.166 oster even_pair_failed = 0;
3526 1.166 oster for(c=0; c<num_cols; c++) {
3527 1.166 oster ac = auto_config;
3528 1.166 oster while(ac!=NULL) {
3529 1.186 perry if ((ac->clabel->column == c) &&
3530 1.166 oster (ac->clabel->mod_counter == mod_counter)) {
3531 1.166 oster /* it's this one... */
3532 1.224 oster #ifdef DEBUG
3533 1.166 oster printf("Found: %s at %d\n",
3534 1.166 oster ac->devname,c);
3535 1.51 oster #endif
3536 1.166 oster break;
3537 1.51 oster }
3538 1.166 oster ac=ac->next;
3539 1.166 oster }
3540 1.166 oster if (ac==NULL) {
3541 1.51 oster /* Didn't find one here! */
3542 1.88 oster /* special case for RAID 1, especially
3543 1.88 oster where there are more than 2
3544 1.88 oster components (where RAIDframe treats
3545 1.88 oster things a little differently :( ) */
3546 1.166 oster if (parity_type == '1') {
3547 1.166 oster if (c%2 == 0) { /* even component */
3548 1.166 oster even_pair_failed = 1;
3549 1.166 oster } else { /* odd component. If
3550 1.166 oster we're failed, and
3551 1.166 oster so is the even
3552 1.166 oster component, it's
3553 1.166 oster "Good Night, Charlie" */
3554 1.166 oster if (even_pair_failed == 1) {
3555 1.166 oster return(0);
3556 1.88 oster }
3557 1.88 oster }
3558 1.166 oster } else {
3559 1.166 oster /* normal accounting */
3560 1.166 oster num_missing++;
3561 1.88 oster }
3562 1.166 oster }
3563 1.166 oster if ((parity_type == '1') && (c%2 == 1)) {
3564 1.88 oster /* Just did an even component, and we didn't
3565 1.186 perry bail.. reset the even_pair_failed flag,
3566 1.88 oster and go on to the next component.... */
3567 1.166 oster even_pair_failed = 0;
3568 1.51 oster }
3569 1.51 oster }
3570 1.51 oster
3571 1.51 oster clabel = cset->ac->clabel;
3572 1.51 oster
3573 1.51 oster if (((clabel->parityConfig == '0') && (num_missing > 0)) ||
3574 1.51 oster ((clabel->parityConfig == '4') && (num_missing > 1)) ||
3575 1.51 oster ((clabel->parityConfig == '5') && (num_missing > 1))) {
3576 1.51 oster /* XXX this needs to be made *much* more general */
3577 1.51 oster /* Too many failures */
3578 1.51 oster return(0);
3579 1.51 oster }
3580 1.51 oster /* otherwise, all is well, and we've got enough to take a kick
3581 1.51 oster at autoconfiguring this set */
3582 1.51 oster return(1);
3583 1.48 oster }
3584 1.48 oster
3585 1.48 oster void
3586 1.169 oster rf_create_configuration(RF_AutoConfig_t *ac, RF_Config_t *config,
3587 1.222 christos RF_Raid_t *raidPtr)
3588 1.48 oster {
3589 1.48 oster RF_ComponentLabel_t *clabel;
3590 1.77 oster int i;
3591 1.48 oster
3592 1.48 oster clabel = ac->clabel;
3593 1.48 oster
3594 1.48 oster /* 1. Fill in the common stuff */
3595 1.166 oster config->numRow = clabel->num_rows = 1;
3596 1.48 oster config->numCol = clabel->num_columns;
3597 1.48 oster config->numSpare = 0; /* XXX should this be set here? */
3598 1.48 oster config->sectPerSU = clabel->sectPerSU;
3599 1.48 oster config->SUsPerPU = clabel->SUsPerPU;
3600 1.48 oster config->SUsPerRU = clabel->SUsPerRU;
3601 1.48 oster config->parityConfig = clabel->parityConfig;
3602 1.48 oster /* XXX... */
3603 1.48 oster strcpy(config->diskQueueType,"fifo");
3604 1.48 oster config->maxOutstandingDiskReqs = clabel->maxOutstanding;
3605 1.48 oster config->layoutSpecificSize = 0; /* XXX ?? */
3606 1.48 oster
3607 1.48 oster while(ac!=NULL) {
3608 1.48 oster /* row/col values will be in range due to the checks
3609 1.48 oster in reasonable_label() */
3610 1.166 oster strcpy(config->devnames[0][ac->clabel->column],
3611 1.48 oster ac->devname);
3612 1.48 oster ac = ac->next;
3613 1.48 oster }
3614 1.48 oster
3615 1.77 oster for(i=0;i<RF_MAXDBGV;i++) {
3616 1.163 fvdl config->debugVars[i][0] = 0;
3617 1.77 oster }
3618 1.48 oster }
3619 1.48 oster
3620 1.48 oster int
3621 1.169 oster rf_set_autoconfig(RF_Raid_t *raidPtr, int new_value)
3622 1.48 oster {
3623 1.269 jld RF_ComponentLabel_t *clabel;
3624 1.166 oster int column;
3625 1.148 oster int sparecol;
3626 1.48 oster
3627 1.54 oster raidPtr->autoconfigure = new_value;
3628 1.166 oster
3629 1.166 oster for(column=0; column<raidPtr->numCol; column++) {
3630 1.166 oster if (raidPtr->Disks[column].status == rf_ds_optimal) {
3631 1.269 jld clabel = raidget_component_label(raidPtr, column);
3632 1.269 jld clabel->autoconfigure = new_value;
3633 1.269 jld raidflush_component_label(raidPtr, column);
3634 1.48 oster }
3635 1.48 oster }
3636 1.148 oster for(column = 0; column < raidPtr->numSpare ; column++) {
3637 1.148 oster sparecol = raidPtr->numCol + column;
3638 1.166 oster if (raidPtr->Disks[sparecol].status == rf_ds_used_spare) {
3639 1.269 jld clabel = raidget_component_label(raidPtr, sparecol);
3640 1.269 jld clabel->autoconfigure = new_value;
3641 1.269 jld raidflush_component_label(raidPtr, sparecol);
3642 1.148 oster }
3643 1.148 oster }
3644 1.48 oster return(new_value);
3645 1.48 oster }
3646 1.48 oster
3647 1.48 oster int
3648 1.169 oster rf_set_rootpartition(RF_Raid_t *raidPtr, int new_value)
3649 1.48 oster {
3650 1.269 jld RF_ComponentLabel_t *clabel;
3651 1.166 oster int column;
3652 1.148 oster int sparecol;
3653 1.48 oster
3654 1.54 oster raidPtr->root_partition = new_value;
3655 1.166 oster for(column=0; column<raidPtr->numCol; column++) {
3656 1.166 oster if (raidPtr->Disks[column].status == rf_ds_optimal) {
3657 1.269 jld clabel = raidget_component_label(raidPtr, column);
3658 1.269 jld clabel->root_partition = new_value;
3659 1.269 jld raidflush_component_label(raidPtr, column);
3660 1.148 oster }
3661 1.148 oster }
3662 1.148 oster for(column = 0; column < raidPtr->numSpare ; column++) {
3663 1.148 oster sparecol = raidPtr->numCol + column;
3664 1.166 oster if (raidPtr->Disks[sparecol].status == rf_ds_used_spare) {
3665 1.269 jld clabel = raidget_component_label(raidPtr, sparecol);
3666 1.269 jld clabel->root_partition = new_value;
3667 1.269 jld raidflush_component_label(raidPtr, sparecol);
3668 1.48 oster }
3669 1.48 oster }
3670 1.48 oster return(new_value);
3671 1.48 oster }
3672 1.48 oster
3673 1.48 oster void
3674 1.169 oster rf_release_all_vps(RF_ConfigSet_t *cset)
3675 1.48 oster {
3676 1.48 oster RF_AutoConfig_t *ac;
3677 1.186 perry
3678 1.48 oster ac = cset->ac;
3679 1.48 oster while(ac!=NULL) {
3680 1.48 oster /* Close the vp, and give it back */
3681 1.48 oster if (ac->vp) {
3682 1.96 oster vn_lock(ac->vp, LK_EXCLUSIVE | LK_RETRY);
3683 1.238 pooka VOP_CLOSE(ac->vp, FREAD, NOCRED);
3684 1.48 oster vput(ac->vp);
3685 1.86 oster ac->vp = NULL;
3686 1.48 oster }
3687 1.48 oster ac = ac->next;
3688 1.48 oster }
3689 1.48 oster }
3690 1.48 oster
3691 1.48 oster
3692 1.48 oster void
3693 1.169 oster rf_cleanup_config_set(RF_ConfigSet_t *cset)
3694 1.48 oster {
3695 1.48 oster RF_AutoConfig_t *ac;
3696 1.48 oster RF_AutoConfig_t *next_ac;
3697 1.186 perry
3698 1.48 oster ac = cset->ac;
3699 1.48 oster while(ac!=NULL) {
3700 1.48 oster next_ac = ac->next;
3701 1.48 oster /* nuke the label */
3702 1.48 oster free(ac->clabel, M_RAIDFRAME);
3703 1.48 oster /* cleanup the config structure */
3704 1.48 oster free(ac, M_RAIDFRAME);
3705 1.48 oster /* "next.." */
3706 1.48 oster ac = next_ac;
3707 1.48 oster }
3708 1.48 oster /* and, finally, nuke the config set */
3709 1.48 oster free(cset, M_RAIDFRAME);
3710 1.48 oster }
3711 1.48 oster
3712 1.48 oster
3713 1.48 oster void
3714 1.169 oster raid_init_component_label(RF_Raid_t *raidPtr, RF_ComponentLabel_t *clabel)
3715 1.48 oster {
3716 1.48 oster /* current version number */
3717 1.186 perry clabel->version = RF_COMPONENT_LABEL_VERSION;
3718 1.57 oster clabel->serial_number = raidPtr->serial_number;
3719 1.48 oster clabel->mod_counter = raidPtr->mod_counter;
3720 1.269 jld
3721 1.166 oster clabel->num_rows = 1;
3722 1.48 oster clabel->num_columns = raidPtr->numCol;
3723 1.48 oster clabel->clean = RF_RAID_DIRTY; /* not clean */
3724 1.48 oster clabel->status = rf_ds_optimal; /* "It's good!" */
3725 1.186 perry
3726 1.48 oster clabel->sectPerSU = raidPtr->Layout.sectorsPerStripeUnit;
3727 1.48 oster clabel->SUsPerPU = raidPtr->Layout.SUsPerPU;
3728 1.48 oster clabel->SUsPerRU = raidPtr->Layout.SUsPerRU;
3729 1.54 oster
3730 1.54 oster clabel->blockSize = raidPtr->bytesPerSector;
3731 1.282 enami rf_component_label_set_numblocks(clabel, raidPtr->sectorsPerDisk);
3732 1.54 oster
3733 1.48 oster /* XXX not portable */
3734 1.48 oster clabel->parityConfig = raidPtr->Layout.map->parityConfig;
3735 1.54 oster clabel->maxOutstanding = raidPtr->maxOutstanding;
3736 1.54 oster clabel->autoconfigure = raidPtr->autoconfigure;
3737 1.54 oster clabel->root_partition = raidPtr->root_partition;
3738 1.48 oster clabel->last_unit = raidPtr->raidid;
3739 1.54 oster clabel->config_order = raidPtr->config_order;
3740 1.269 jld
3741 1.269 jld #ifndef RF_NO_PARITY_MAP
3742 1.269 jld rf_paritymap_init_label(raidPtr->parity_map, clabel);
3743 1.269 jld #endif
3744 1.51 oster }
3745 1.51 oster
3746 1.300 christos struct raid_softc *
3747 1.300 christos rf_auto_config_set(RF_ConfigSet_t *cset)
3748 1.51 oster {
3749 1.51 oster RF_Raid_t *raidPtr;
3750 1.51 oster RF_Config_t *config;
3751 1.51 oster int raidID;
3752 1.300 christos struct raid_softc *sc;
3753 1.51 oster
3754 1.224 oster #ifdef DEBUG
3755 1.72 oster printf("RAID autoconfigure\n");
3756 1.127 oster #endif
3757 1.51 oster
3758 1.51 oster /* 1. Create a config structure */
3759 1.300 christos config = malloc(sizeof(*config), M_RAIDFRAME, M_NOWAIT|M_ZERO);
3760 1.300 christos if (config == NULL) {
3761 1.51 oster printf("Out of mem!?!?\n");
3762 1.51 oster /* XXX do something more intelligent here. */
3763 1.300 christos return NULL;
3764 1.51 oster }
3765 1.77 oster
3766 1.186 perry /*
3767 1.186 perry 2. Figure out what RAID ID this one is supposed to live at
3768 1.51 oster See if we can get the same RAID dev that it was configured
3769 1.186 perry on last time..
3770 1.51 oster */
3771 1.51 oster
3772 1.51 oster raidID = cset->ac->clabel->last_unit;
3773 1.300 christos for (sc = raidget(raidID); sc->sc_r.valid != 0; sc = raidget(++raidID))
3774 1.300 christos continue;
3775 1.224 oster #ifdef DEBUG
3776 1.72 oster printf("Configuring raid%d:\n",raidID);
3777 1.127 oster #endif
3778 1.127 oster
3779 1.300 christos raidPtr = &sc->sc_r;
3780 1.51 oster
3781 1.51 oster /* XXX all this stuff should be done SOMEWHERE ELSE! */
3782 1.302 christos raidPtr->softc = sc;
3783 1.51 oster raidPtr->raidid = raidID;
3784 1.51 oster raidPtr->openings = RAIDOUTSTANDING;
3785 1.51 oster
3786 1.51 oster /* 3. Build the configuration structure */
3787 1.51 oster rf_create_configuration(cset->ac, config, raidPtr);
3788 1.51 oster
3789 1.51 oster /* 4. Do the configuration */
3790 1.300 christos if (rf_Configure(raidPtr, config, cset->ac) == 0) {
3791 1.300 christos raidinit(sc);
3792 1.186 perry
3793 1.300 christos rf_markalldirty(raidPtr);
3794 1.300 christos raidPtr->autoconfigure = 1; /* XXX do this here? */
3795 1.308 christos switch (cset->ac->clabel->root_partition) {
3796 1.308 christos case 1: /* Force Root */
3797 1.308 christos case 2: /* Soft Root: root when boot partition part of raid */
3798 1.308 christos /*
3799 1.308 christos * everything configured just fine. Make a note
3800 1.308 christos * that this set is eligible to be root,
3801 1.308 christos * or forced to be root
3802 1.308 christos */
3803 1.308 christos cset->rootable = cset->ac->clabel->root_partition;
3804 1.54 oster /* XXX do this here? */
3805 1.308 christos raidPtr->root_partition = cset->rootable;
3806 1.308 christos break;
3807 1.308 christos default:
3808 1.308 christos break;
3809 1.51 oster }
3810 1.300 christos } else {
3811 1.300 christos raidput(sc);
3812 1.300 christos sc = NULL;
3813 1.51 oster }
3814 1.51 oster
3815 1.51 oster /* 5. Cleanup */
3816 1.51 oster free(config, M_RAIDFRAME);
3817 1.300 christos return sc;
3818 1.99 oster }
3819 1.99 oster
3820 1.99 oster void
3821 1.169 oster rf_disk_unbusy(RF_RaidAccessDesc_t *desc)
3822 1.99 oster {
3823 1.99 oster struct buf *bp;
3824 1.300 christos struct raid_softc *rs;
3825 1.99 oster
3826 1.99 oster bp = (struct buf *)desc->bp;
3827 1.300 christos rs = desc->raidPtr->softc;
3828 1.300 christos disk_unbusy(&rs->sc_dkdev, (bp->b_bcount - bp->b_resid),
3829 1.300 christos (bp->b_flags & B_READ));
3830 1.13 oster }
3831 1.177 oster
3832 1.177 oster void
3833 1.187 christos rf_pool_init(struct pool *p, size_t size, const char *w_chan,
3834 1.187 christos size_t xmin, size_t xmax)
3835 1.177 oster {
3836 1.227 ad pool_init(p, size, 0, 0, 0, w_chan, NULL, IPL_BIO);
3837 1.187 christos pool_sethiwat(p, xmax);
3838 1.187 christos pool_prime(p, xmin);
3839 1.187 christos pool_setlowat(p, xmin);
3840 1.177 oster }
3841 1.190 oster
3842 1.190 oster /*
3843 1.300 christos * rf_buf_queue_check(RF_Raid_t raidPtr) -- looks into the buf_queue to see
3844 1.190 oster * if there is IO pending and if that IO could possibly be done for a
3845 1.190 oster * given RAID set. Returns 0 if IO is waiting and can be done, 1
3846 1.190 oster * otherwise.
3847 1.190 oster *
3848 1.190 oster */
3849 1.190 oster
3850 1.190 oster int
3851 1.300 christos rf_buf_queue_check(RF_Raid_t *raidPtr)
3852 1.190 oster {
3853 1.300 christos struct raid_softc *rs = raidPtr->softc;
3854 1.300 christos if ((bufq_peek(rs->buf_queue) != NULL) && raidPtr->openings > 0) {
3855 1.190 oster /* there is work to do */
3856 1.190 oster return 0;
3857 1.190 oster }
3858 1.190 oster /* default is nothing to do */
3859 1.190 oster return 1;
3860 1.190 oster }
3861 1.213 christos
3862 1.213 christos int
3863 1.294 oster rf_getdisksize(struct vnode *vp, RF_RaidDisk_t *diskPtr)
3864 1.213 christos {
3865 1.275 mrg uint64_t numsecs;
3866 1.275 mrg unsigned secsize;
3867 1.213 christos int error;
3868 1.213 christos
3869 1.275 mrg error = getdisksize(vp, &numsecs, &secsize);
3870 1.213 christos if (error == 0) {
3871 1.275 mrg diskPtr->blockSize = secsize;
3872 1.275 mrg diskPtr->numBlocks = numsecs - rf_protectedSectors;
3873 1.275 mrg diskPtr->partitionSize = numsecs;
3874 1.213 christos return 0;
3875 1.213 christos }
3876 1.213 christos return error;
3877 1.213 christos }
3878 1.217 oster
3879 1.217 oster static int
3880 1.261 dyoung raid_match(device_t self, cfdata_t cfdata, void *aux)
3881 1.217 oster {
3882 1.217 oster return 1;
3883 1.217 oster }
3884 1.217 oster
3885 1.217 oster static void
3886 1.261 dyoung raid_attach(device_t parent, device_t self, void *aux)
3887 1.217 oster {
3888 1.217 oster
3889 1.217 oster }
3890 1.217 oster
3891 1.217 oster
3892 1.217 oster static int
3893 1.261 dyoung raid_detach(device_t self, int flags)
3894 1.217 oster {
3895 1.266 dyoung int error;
3896 1.303 christos struct raid_softc *rs = raidget(device_unit(self));
3897 1.303 christos
3898 1.303 christos if (rs == NULL)
3899 1.303 christos return ENXIO;
3900 1.266 dyoung
3901 1.266 dyoung if ((error = raidlock(rs)) != 0)
3902 1.266 dyoung return (error);
3903 1.217 oster
3904 1.266 dyoung error = raid_detach_unlocked(rs);
3905 1.266 dyoung
3906 1.266 dyoung raidunlock(rs);
3907 1.217 oster
3908 1.303 christos /* XXXkd: raidput(rs) ??? */
3909 1.303 christos
3910 1.266 dyoung return error;
3911 1.217 oster }
3912 1.217 oster
3913 1.234 oster static void
3914 1.304 christos rf_set_geometry(struct raid_softc *rs, RF_Raid_t *raidPtr)
3915 1.234 oster {
3916 1.304 christos struct disk_geom *dg = &rs->sc_dkdev.dk_geom;
3917 1.304 christos
3918 1.304 christos memset(dg, 0, sizeof(*dg));
3919 1.304 christos
3920 1.304 christos dg->dg_secperunit = raidPtr->totalSectors;
3921 1.304 christos dg->dg_secsize = raidPtr->bytesPerSector;
3922 1.304 christos dg->dg_nsectors = raidPtr->Layout.dataSectorsPerStripe;
3923 1.304 christos dg->dg_ntracks = 4 * raidPtr->numCol;
3924 1.304 christos
3925 1.304 christos disk_set_info(rs->sc_dev, &rs->sc_dkdev, NULL);
3926 1.234 oster }
3927 1.252 oster
3928 1.252 oster /*
3929 1.252 oster * Implement forwarding of the DIOCCACHESYNC ioctl to each of the components.
3930 1.252 oster * We end up returning whatever error was returned by the first cache flush
3931 1.252 oster * that fails.
3932 1.252 oster */
3933 1.252 oster
3934 1.269 jld int
3935 1.252 oster rf_sync_component_caches(RF_Raid_t *raidPtr)
3936 1.252 oster {
3937 1.252 oster int c, sparecol;
3938 1.252 oster int e,error;
3939 1.252 oster int force = 1;
3940 1.252 oster
3941 1.252 oster error = 0;
3942 1.252 oster for (c = 0; c < raidPtr->numCol; c++) {
3943 1.252 oster if (raidPtr->Disks[c].status == rf_ds_optimal) {
3944 1.252 oster e = VOP_IOCTL(raidPtr->raid_cinfo[c].ci_vp, DIOCCACHESYNC,
3945 1.252 oster &force, FWRITE, NOCRED);
3946 1.252 oster if (e) {
3947 1.255 oster if (e != ENODEV)
3948 1.255 oster printf("raid%d: cache flush to component %s failed.\n",
3949 1.255 oster raidPtr->raidid, raidPtr->Disks[c].devname);
3950 1.252 oster if (error == 0) {
3951 1.252 oster error = e;
3952 1.252 oster }
3953 1.252 oster }
3954 1.252 oster }
3955 1.252 oster }
3956 1.252 oster
3957 1.252 oster for( c = 0; c < raidPtr->numSpare ; c++) {
3958 1.252 oster sparecol = raidPtr->numCol + c;
3959 1.252 oster /* Need to ensure that the reconstruct actually completed! */
3960 1.252 oster if (raidPtr->Disks[sparecol].status == rf_ds_used_spare) {
3961 1.252 oster e = VOP_IOCTL(raidPtr->raid_cinfo[sparecol].ci_vp,
3962 1.252 oster DIOCCACHESYNC, &force, FWRITE, NOCRED);
3963 1.252 oster if (e) {
3964 1.255 oster if (e != ENODEV)
3965 1.255 oster printf("raid%d: cache flush to component %s failed.\n",
3966 1.255 oster raidPtr->raidid, raidPtr->Disks[sparecol].devname);
3967 1.252 oster if (error == 0) {
3968 1.252 oster error = e;
3969 1.252 oster }
3970 1.252 oster }
3971 1.252 oster }
3972 1.252 oster }
3973 1.252 oster return error;
3974 1.252 oster }
3975