kern_subr.c revision 1.25 1 1.25 mrg /* $NetBSD: kern_subr.c,v 1.25 1997/06/12 17:12:20 mrg Exp $ */
2 1.12 cgd
3 1.9 cgd /*
4 1.18 thorpej * Copyright (c) 1997 Jason R. Thorpe. All rights reserved.
5 1.10 cgd * Copyright (c) 1982, 1986, 1991, 1993
6 1.10 cgd * The Regents of the University of California. All rights reserved.
7 1.9 cgd * (c) UNIX System Laboratories, Inc.
8 1.9 cgd * All or some portions of this file are derived from material licensed
9 1.9 cgd * to the University of California by American Telephone and Telegraph
10 1.9 cgd * Co. or Unix System Laboratories, Inc. and are reproduced herein with
11 1.9 cgd * the permission of UNIX System Laboratories, Inc.
12 1.9 cgd *
13 1.18 thorpej * Copyright (c) 1992, 1993
14 1.18 thorpej * The Regents of the University of California. All rights reserved.
15 1.18 thorpej *
16 1.18 thorpej * This software was developed by the Computer Systems Engineering group
17 1.18 thorpej * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
18 1.18 thorpej * contributed to Berkeley.
19 1.18 thorpej *
20 1.18 thorpej * All advertising materials mentioning features or use of this software
21 1.18 thorpej * must display the following acknowledgement:
22 1.18 thorpej * This product includes software developed by the University of
23 1.18 thorpej * California, Lawrence Berkeley Laboratory.
24 1.18 thorpej *
25 1.9 cgd * Redistribution and use in source and binary forms, with or without
26 1.9 cgd * modification, are permitted provided that the following conditions
27 1.9 cgd * are met:
28 1.9 cgd * 1. Redistributions of source code must retain the above copyright
29 1.9 cgd * notice, this list of conditions and the following disclaimer.
30 1.9 cgd * 2. Redistributions in binary form must reproduce the above copyright
31 1.9 cgd * notice, this list of conditions and the following disclaimer in the
32 1.9 cgd * documentation and/or other materials provided with the distribution.
33 1.9 cgd * 3. All advertising materials mentioning features or use of this software
34 1.9 cgd * must display the following acknowledgement:
35 1.9 cgd * This product includes software developed by the University of
36 1.9 cgd * California, Berkeley and its contributors.
37 1.9 cgd * 4. Neither the name of the University nor the names of its contributors
38 1.9 cgd * may be used to endorse or promote products derived from this software
39 1.9 cgd * without specific prior written permission.
40 1.9 cgd *
41 1.9 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
42 1.9 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43 1.9 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44 1.9 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
45 1.9 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46 1.9 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47 1.9 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48 1.9 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49 1.9 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50 1.9 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51 1.9 cgd * SUCH DAMAGE.
52 1.9 cgd *
53 1.12 cgd * @(#)kern_subr.c 8.3 (Berkeley) 1/21/94
54 1.9 cgd */
55 1.9 cgd
56 1.9 cgd #include <sys/param.h>
57 1.9 cgd #include <sys/systm.h>
58 1.9 cgd #include <sys/proc.h>
59 1.10 cgd #include <sys/malloc.h>
60 1.18 thorpej #include <sys/mount.h>
61 1.18 thorpej #include <sys/device.h>
62 1.18 thorpej #include <sys/reboot.h>
63 1.18 thorpej #include <sys/conf.h>
64 1.18 thorpej #include <sys/disklabel.h>
65 1.10 cgd #include <sys/queue.h>
66 1.9 cgd
67 1.18 thorpej #include <dev/cons.h>
68 1.18 thorpej
69 1.18 thorpej #include <net/if.h>
70 1.18 thorpej
71 1.18 thorpej /* XXX these should eventually move to subr_autoconf.c */
72 1.18 thorpej static int findblkmajor __P((const char *, struct devnametobdevmaj *));
73 1.18 thorpej static const char *findblkname __P((int, struct devnametobdevmaj *));
74 1.18 thorpej static struct device *getdisk __P((char *, int, int,
75 1.18 thorpej struct devnametobdevmaj *, dev_t *));
76 1.18 thorpej static struct device *parsedisk __P((char *, int, int,
77 1.18 thorpej struct devnametobdevmaj *, dev_t *));
78 1.18 thorpej static int getstr __P((char *, int));
79 1.18 thorpej
80 1.11 mycroft int
81 1.16 christos uiomove(buf, n, uio)
82 1.16 christos register void *buf;
83 1.9 cgd register int n;
84 1.9 cgd register struct uio *uio;
85 1.9 cgd {
86 1.9 cgd register struct iovec *iov;
87 1.9 cgd u_int cnt;
88 1.9 cgd int error = 0;
89 1.16 christos char *cp = buf;
90 1.9 cgd
91 1.9 cgd #ifdef DIAGNOSTIC
92 1.9 cgd if (uio->uio_rw != UIO_READ && uio->uio_rw != UIO_WRITE)
93 1.9 cgd panic("uiomove: mode");
94 1.9 cgd if (uio->uio_segflg == UIO_USERSPACE && uio->uio_procp != curproc)
95 1.9 cgd panic("uiomove proc");
96 1.9 cgd #endif
97 1.9 cgd while (n > 0 && uio->uio_resid) {
98 1.9 cgd iov = uio->uio_iov;
99 1.9 cgd cnt = iov->iov_len;
100 1.9 cgd if (cnt == 0) {
101 1.9 cgd uio->uio_iov++;
102 1.9 cgd uio->uio_iovcnt--;
103 1.9 cgd continue;
104 1.9 cgd }
105 1.9 cgd if (cnt > n)
106 1.9 cgd cnt = n;
107 1.9 cgd switch (uio->uio_segflg) {
108 1.9 cgd
109 1.9 cgd case UIO_USERSPACE:
110 1.9 cgd if (uio->uio_rw == UIO_READ)
111 1.9 cgd error = copyout(cp, iov->iov_base, cnt);
112 1.9 cgd else
113 1.9 cgd error = copyin(iov->iov_base, cp, cnt);
114 1.9 cgd if (error)
115 1.9 cgd return (error);
116 1.9 cgd break;
117 1.9 cgd
118 1.9 cgd case UIO_SYSSPACE:
119 1.9 cgd if (uio->uio_rw == UIO_READ)
120 1.16 christos bcopy(cp, iov->iov_base, cnt);
121 1.9 cgd else
122 1.16 christos bcopy(iov->iov_base, cp, cnt);
123 1.9 cgd break;
124 1.9 cgd }
125 1.9 cgd iov->iov_base += cnt;
126 1.9 cgd iov->iov_len -= cnt;
127 1.9 cgd uio->uio_resid -= cnt;
128 1.9 cgd uio->uio_offset += cnt;
129 1.9 cgd cp += cnt;
130 1.9 cgd n -= cnt;
131 1.9 cgd }
132 1.9 cgd return (error);
133 1.9 cgd }
134 1.9 cgd
135 1.9 cgd /*
136 1.9 cgd * Give next character to user as result of read.
137 1.9 cgd */
138 1.11 mycroft int
139 1.9 cgd ureadc(c, uio)
140 1.9 cgd register int c;
141 1.9 cgd register struct uio *uio;
142 1.9 cgd {
143 1.9 cgd register struct iovec *iov;
144 1.9 cgd
145 1.11 mycroft if (uio->uio_resid <= 0)
146 1.11 mycroft panic("ureadc: non-positive resid");
147 1.9 cgd again:
148 1.11 mycroft if (uio->uio_iovcnt <= 0)
149 1.11 mycroft panic("ureadc: non-positive iovcnt");
150 1.9 cgd iov = uio->uio_iov;
151 1.11 mycroft if (iov->iov_len <= 0) {
152 1.9 cgd uio->uio_iovcnt--;
153 1.9 cgd uio->uio_iov++;
154 1.9 cgd goto again;
155 1.9 cgd }
156 1.9 cgd switch (uio->uio_segflg) {
157 1.9 cgd
158 1.9 cgd case UIO_USERSPACE:
159 1.9 cgd if (subyte(iov->iov_base, c) < 0)
160 1.9 cgd return (EFAULT);
161 1.9 cgd break;
162 1.9 cgd
163 1.9 cgd case UIO_SYSSPACE:
164 1.9 cgd *iov->iov_base = c;
165 1.9 cgd break;
166 1.9 cgd }
167 1.9 cgd iov->iov_base++;
168 1.9 cgd iov->iov_len--;
169 1.9 cgd uio->uio_resid--;
170 1.9 cgd uio->uio_offset++;
171 1.9 cgd return (0);
172 1.9 cgd }
173 1.10 cgd
174 1.10 cgd /*
175 1.10 cgd * General routine to allocate a hash table.
176 1.10 cgd */
177 1.10 cgd void *
178 1.10 cgd hashinit(elements, type, hashmask)
179 1.10 cgd int elements, type;
180 1.10 cgd u_long *hashmask;
181 1.10 cgd {
182 1.10 cgd long hashsize;
183 1.10 cgd LIST_HEAD(generic, generic) *hashtbl;
184 1.10 cgd int i;
185 1.10 cgd
186 1.10 cgd if (elements <= 0)
187 1.10 cgd panic("hashinit: bad cnt");
188 1.10 cgd for (hashsize = 1; hashsize <= elements; hashsize <<= 1)
189 1.10 cgd continue;
190 1.10 cgd hashsize >>= 1;
191 1.10 cgd hashtbl = malloc((u_long)hashsize * sizeof(*hashtbl), type, M_WAITOK);
192 1.10 cgd for (i = 0; i < hashsize; i++)
193 1.10 cgd LIST_INIT(&hashtbl[i]);
194 1.10 cgd *hashmask = hashsize - 1;
195 1.10 cgd return (hashtbl);
196 1.14 cgd }
197 1.14 cgd
198 1.14 cgd /*
199 1.14 cgd * "Shutdown hook" types, functions, and variables.
200 1.14 cgd */
201 1.14 cgd
202 1.14 cgd struct shutdownhook_desc {
203 1.14 cgd LIST_ENTRY(shutdownhook_desc) sfd_list;
204 1.14 cgd void (*sfd_fn) __P((void *));
205 1.14 cgd void *sfd_arg;
206 1.14 cgd };
207 1.14 cgd
208 1.14 cgd LIST_HEAD(, shutdownhook_desc) shutdownhook_list;
209 1.14 cgd
210 1.14 cgd void *
211 1.14 cgd shutdownhook_establish(fn, arg)
212 1.14 cgd void (*fn) __P((void *));
213 1.14 cgd void *arg;
214 1.14 cgd {
215 1.14 cgd struct shutdownhook_desc *ndp;
216 1.14 cgd
217 1.14 cgd ndp = (struct shutdownhook_desc *)
218 1.14 cgd malloc(sizeof (*ndp), M_DEVBUF, M_NOWAIT);
219 1.14 cgd if (ndp == NULL)
220 1.14 cgd return NULL;
221 1.14 cgd
222 1.14 cgd ndp->sfd_fn = fn;
223 1.14 cgd ndp->sfd_arg = arg;
224 1.14 cgd LIST_INSERT_HEAD(&shutdownhook_list, ndp, sfd_list);
225 1.14 cgd
226 1.14 cgd return (ndp);
227 1.14 cgd }
228 1.14 cgd
229 1.14 cgd void
230 1.14 cgd shutdownhook_disestablish(vhook)
231 1.14 cgd void *vhook;
232 1.14 cgd {
233 1.14 cgd #ifdef DIAGNOSTIC
234 1.14 cgd struct shutdownhook_desc *dp;
235 1.14 cgd
236 1.14 cgd for (dp = shutdownhook_list.lh_first; dp != NULL;
237 1.14 cgd dp = dp->sfd_list.le_next)
238 1.14 cgd if (dp == vhook)
239 1.14 cgd break;
240 1.14 cgd if (dp == NULL)
241 1.14 cgd panic("shutdownhook_disestablish: hook not established");
242 1.14 cgd #endif
243 1.14 cgd
244 1.14 cgd LIST_REMOVE((struct shutdownhook_desc *)vhook, sfd_list);
245 1.17 cgd free(vhook, M_DEVBUF);
246 1.14 cgd }
247 1.14 cgd
248 1.14 cgd /*
249 1.14 cgd * Run shutdown hooks. Should be invoked immediately before the
250 1.14 cgd * system is halted or rebooted, i.e. after file systems unmounted,
251 1.14 cgd * after crash dump done, etc.
252 1.17 cgd *
253 1.17 cgd * Each shutdown hook is removed from the list before it's run, so that
254 1.17 cgd * it won't be run again.
255 1.14 cgd */
256 1.14 cgd void
257 1.14 cgd doshutdownhooks()
258 1.14 cgd {
259 1.14 cgd struct shutdownhook_desc *dp;
260 1.14 cgd
261 1.17 cgd while ((dp = shutdownhook_list.lh_first) != NULL) {
262 1.17 cgd LIST_REMOVE(dp, sfd_list);
263 1.14 cgd (*dp->sfd_fn)(dp->sfd_arg);
264 1.17 cgd #if 0
265 1.17 cgd /*
266 1.17 cgd * Don't bother freeing the hook structure,, since we may
267 1.17 cgd * be rebooting because of a memory corruption problem,
268 1.17 cgd * and this might only make things worse. It doesn't
269 1.17 cgd * matter, anyway, since the system is just about to
270 1.17 cgd * reboot.
271 1.17 cgd */
272 1.17 cgd free(dp, M_DEVBUF);
273 1.17 cgd #endif
274 1.18 thorpej }
275 1.18 thorpej }
276 1.18 thorpej
277 1.18 thorpej /*
278 1.18 thorpej * "Mountroot hook" types, functions, and variables.
279 1.18 thorpej */
280 1.18 thorpej
281 1.18 thorpej struct mountroothook_desc {
282 1.18 thorpej LIST_ENTRY(mountroothook_desc) mrd_list;
283 1.18 thorpej struct device *mrd_device;
284 1.18 thorpej void (*mrd_func) __P((struct device *));
285 1.18 thorpej };
286 1.18 thorpej
287 1.18 thorpej LIST_HEAD(, mountroothook_desc) mountroothook_list;
288 1.18 thorpej
289 1.18 thorpej void *
290 1.18 thorpej mountroothook_establish(func, dev)
291 1.18 thorpej void (*func) __P((struct device *));
292 1.18 thorpej struct device *dev;
293 1.18 thorpej {
294 1.18 thorpej struct mountroothook_desc *mrd;
295 1.18 thorpej
296 1.18 thorpej mrd = (struct mountroothook_desc *)
297 1.18 thorpej malloc(sizeof(*mrd), M_DEVBUF, M_NOWAIT);
298 1.18 thorpej if (mrd == NULL)
299 1.18 thorpej return (NULL);
300 1.18 thorpej
301 1.18 thorpej mrd->mrd_device = dev;
302 1.18 thorpej mrd->mrd_func = func;
303 1.18 thorpej LIST_INSERT_HEAD(&mountroothook_list, mrd, mrd_list);
304 1.18 thorpej
305 1.18 thorpej return (mrd);
306 1.18 thorpej }
307 1.18 thorpej
308 1.18 thorpej void
309 1.18 thorpej mountroothook_disestablish(vhook)
310 1.18 thorpej void *vhook;
311 1.18 thorpej {
312 1.18 thorpej #ifdef DIAGNOSTIC
313 1.18 thorpej struct mountroothook_desc *mrd;
314 1.18 thorpej
315 1.18 thorpej for (mrd = mountroothook_list.lh_first; mrd != NULL;
316 1.18 thorpej mrd = mrd->mrd_list.le_next)
317 1.18 thorpej if (mrd == vhook)
318 1.18 thorpej break;
319 1.18 thorpej if (mrd == NULL)
320 1.18 thorpej panic("mountroothook_disestablish: hook not established");
321 1.18 thorpej #endif
322 1.18 thorpej
323 1.18 thorpej LIST_REMOVE((struct mountroothook_desc *)vhook, mrd_list);
324 1.18 thorpej free(vhook, M_DEVBUF);
325 1.18 thorpej }
326 1.18 thorpej
327 1.18 thorpej void
328 1.18 thorpej mountroothook_destroy()
329 1.18 thorpej {
330 1.18 thorpej struct mountroothook_desc *mrd;
331 1.18 thorpej
332 1.18 thorpej while ((mrd = mountroothook_list.lh_first) != NULL) {
333 1.18 thorpej LIST_REMOVE(mrd, mrd_list);
334 1.18 thorpej free(mrd, M_DEVBUF);
335 1.18 thorpej }
336 1.18 thorpej }
337 1.18 thorpej
338 1.18 thorpej void
339 1.18 thorpej domountroothook()
340 1.18 thorpej {
341 1.18 thorpej struct mountroothook_desc *mrd;
342 1.18 thorpej
343 1.18 thorpej for (mrd = mountroothook_list.lh_first; mrd != NULL;
344 1.18 thorpej mrd = mrd->mrd_list.le_next) {
345 1.18 thorpej if (mrd->mrd_device == root_device) {
346 1.18 thorpej (*mrd->mrd_func)(root_device);
347 1.18 thorpej return;
348 1.18 thorpej }
349 1.18 thorpej }
350 1.18 thorpej }
351 1.18 thorpej
352 1.18 thorpej /*
353 1.18 thorpej * Determine the root device and, if instructed to, the root file system.
354 1.18 thorpej */
355 1.18 thorpej
356 1.18 thorpej #include "md.h"
357 1.18 thorpej #if NMD == 0
358 1.18 thorpej #undef MEMORY_DISK_HOOKS
359 1.18 thorpej #endif
360 1.18 thorpej
361 1.18 thorpej #ifdef MEMORY_DISK_HOOKS
362 1.18 thorpej static struct device fakemdrootdev = { DV_DISK, {}, NULL, 0, "md0", NULL };
363 1.18 thorpej #endif
364 1.18 thorpej
365 1.18 thorpej void
366 1.18 thorpej setroot(bootdv, bootpartition, nam2blk)
367 1.18 thorpej struct device *bootdv;
368 1.18 thorpej int bootpartition;
369 1.18 thorpej struct devnametobdevmaj *nam2blk;
370 1.18 thorpej {
371 1.18 thorpej struct device *dv;
372 1.18 thorpej register int len, i;
373 1.25 mrg dev_t nrootdev;
374 1.18 thorpej char buf[128];
375 1.18 thorpej const char *rootdevname;
376 1.25 mrg struct device *rootdv;
377 1.18 thorpej struct ifnet *ifp;
378 1.18 thorpej const char *deffsname;
379 1.18 thorpej struct vfsops *vops;
380 1.18 thorpej extern int (*mountroot) __P((void));
381 1.18 thorpej static struct devnametobdevmaj *last_nam2blk;
382 1.18 thorpej
383 1.18 thorpej if (nam2blk == NULL) {
384 1.18 thorpej if (last_nam2blk == NULL)
385 1.18 thorpej panic("setroot: no name to bdev major map");
386 1.18 thorpej nam2blk = last_nam2blk;
387 1.18 thorpej }
388 1.18 thorpej last_nam2blk = nam2blk;
389 1.18 thorpej
390 1.22 leo #ifdef MEMORY_DISK_IS_ROOT
391 1.18 thorpej bootdv = &fakemdrootdev;
392 1.18 thorpej bootpartition = 0;
393 1.18 thorpej #endif
394 1.18 thorpej
395 1.18 thorpej /*
396 1.18 thorpej * If NFS is specified as the file system, and we found
397 1.18 thorpej * a DV_DISK boot device (or no boot device at all), then
398 1.18 thorpej * find a reasonable network interface for "rootspec".
399 1.18 thorpej */
400 1.18 thorpej vops = vfs_getopsbyname("nfs");
401 1.18 thorpej if (vops != NULL && vops->vfs_mountroot == mountroot &&
402 1.18 thorpej rootspec == NULL &&
403 1.18 thorpej (bootdv == NULL || bootdv->dv_class != DV_IFNET)) {
404 1.18 thorpej for (ifp = ifnet.tqh_first; ifp != NULL;
405 1.18 thorpej ifp = ifp->if_list.tqe_next)
406 1.18 thorpej if ((ifp->if_flags &
407 1.18 thorpej (IFF_LOOPBACK|IFF_POINTOPOINT)) == 0)
408 1.18 thorpej break;
409 1.18 thorpej if (ifp == NULL) {
410 1.18 thorpej /*
411 1.18 thorpej * Can't find a suitable interface; ask the
412 1.18 thorpej * user.
413 1.18 thorpej */
414 1.18 thorpej boothowto |= RB_ASKNAME;
415 1.18 thorpej } else {
416 1.18 thorpej /*
417 1.18 thorpej * Have a suitable interface; behave as if
418 1.18 thorpej * the user specified this interface.
419 1.18 thorpej */
420 1.18 thorpej rootspec = (const char *)ifp->if_xname;
421 1.18 thorpej }
422 1.18 thorpej }
423 1.24 thorpej
424 1.24 thorpej /*
425 1.24 thorpej * If wildcarded root and we the boot device wasn't determined,
426 1.24 thorpej * ask the user.
427 1.24 thorpej */
428 1.24 thorpej if (rootspec == NULL && bootdv == NULL)
429 1.24 thorpej boothowto |= RB_ASKNAME;
430 1.18 thorpej
431 1.18 thorpej top:
432 1.18 thorpej if (boothowto & RB_ASKNAME) {
433 1.18 thorpej for (;;) {
434 1.18 thorpej printf("root device");
435 1.18 thorpej if (bootdv != NULL) {
436 1.18 thorpej printf(" (default %s", bootdv->dv_xname);
437 1.18 thorpej if (bootdv->dv_class == DV_DISK)
438 1.18 thorpej printf("%c", bootpartition + 'a');
439 1.18 thorpej printf(")");
440 1.18 thorpej }
441 1.18 thorpej printf(": ");
442 1.18 thorpej len = getstr(buf, sizeof(buf));
443 1.18 thorpej if (len == 0 && bootdv != NULL) {
444 1.18 thorpej strcpy(buf, bootdv->dv_xname);
445 1.18 thorpej len = strlen(buf);
446 1.18 thorpej }
447 1.18 thorpej if (len > 0 && buf[len - 1] == '*') {
448 1.18 thorpej buf[--len] = '\0';
449 1.18 thorpej dv = getdisk(buf, len, 1, nam2blk, &nrootdev);
450 1.18 thorpej if (dv != NULL) {
451 1.18 thorpej rootdv = dv;
452 1.25 mrg break;
453 1.18 thorpej }
454 1.18 thorpej }
455 1.18 thorpej dv = getdisk(buf, len, bootpartition, nam2blk,
456 1.18 thorpej &nrootdev);
457 1.18 thorpej if (dv != NULL) {
458 1.18 thorpej rootdv = dv;
459 1.18 thorpej break;
460 1.18 thorpej }
461 1.18 thorpej }
462 1.18 thorpej
463 1.18 thorpej rootdev = nrootdev;
464 1.18 thorpej
465 1.18 thorpej for (i = 0; i < nvfssw; i++) {
466 1.18 thorpej if (vfssw[i] != NULL &&
467 1.18 thorpej vfssw[i]->vfs_mountroot != NULL &&
468 1.18 thorpej vfssw[i]->vfs_mountroot == mountroot)
469 1.18 thorpej break;
470 1.18 thorpej }
471 1.18 thorpej if (i >= nvfssw) {
472 1.18 thorpej mountroot = NULL;
473 1.18 thorpej deffsname = "generic";
474 1.18 thorpej } else
475 1.18 thorpej deffsname = vfssw[i]->vfs_name;
476 1.18 thorpej for (;;) {
477 1.18 thorpej printf("file system (default %s): ", deffsname);
478 1.18 thorpej len = getstr(buf, sizeof(buf));
479 1.18 thorpej if (len == 0)
480 1.18 thorpej break;
481 1.18 thorpej if (len == 4 && strcmp(buf, "halt") == 0)
482 1.23 gwr cpu_reboot(RB_HALT, NULL);
483 1.18 thorpej else if (len == 7 && strcmp(buf, "generic") == 0) {
484 1.18 thorpej mountroot = NULL;
485 1.18 thorpej break;
486 1.18 thorpej }
487 1.18 thorpej vops = vfs_getopsbyname(buf);
488 1.18 thorpej if (vops == NULL || vops->vfs_mountroot == NULL) {
489 1.18 thorpej printf("use one of: generic");
490 1.18 thorpej for (i = 0; i < nvfssw; i++)
491 1.18 thorpej if (vfssw[i] != NULL &&
492 1.18 thorpej vfssw[i]->vfs_mountroot != NULL)
493 1.18 thorpej printf(" %s",
494 1.18 thorpej vfssw[i]->vfs_name);
495 1.18 thorpej printf(" halt\n");
496 1.18 thorpej } else {
497 1.18 thorpej mountroot = vops->vfs_mountroot;
498 1.18 thorpej break;
499 1.18 thorpej }
500 1.18 thorpej }
501 1.18 thorpej
502 1.18 thorpej } else if (rootspec == NULL) {
503 1.18 thorpej int majdev;
504 1.18 thorpej
505 1.18 thorpej /*
506 1.18 thorpej * Wildcarded root; use the boot device.
507 1.18 thorpej */
508 1.18 thorpej majdev = findblkmajor(bootdv->dv_xname, nam2blk);
509 1.18 thorpej if (majdev >= 0) {
510 1.18 thorpej /*
511 1.25 mrg * Root is on a disk. `bootpartition' is root.
512 1.18 thorpej */
513 1.25 mrg rootdv = bootdv;
514 1.18 thorpej rootdev = MAKEDISKDEV(majdev, bootdv->dv_unit,
515 1.18 thorpej bootpartition);
516 1.18 thorpej } else {
517 1.18 thorpej /*
518 1.25 mrg * Root is on the net.
519 1.18 thorpej */
520 1.25 mrg rootdv = bootdv;
521 1.18 thorpej }
522 1.25 mrg /* Initialise dumpdev */
523 1.25 mrg dumpdev = NODEV;
524 1.18 thorpej } else {
525 1.18 thorpej
526 1.18 thorpej /*
527 1.25 mrg * `root on <dev> ...'
528 1.18 thorpej */
529 1.18 thorpej
530 1.18 thorpej /*
531 1.18 thorpej * If it's a network interface, we can bail out
532 1.18 thorpej * early.
533 1.18 thorpej */
534 1.18 thorpej for (dv = alldevs.tqh_first; dv != NULL;
535 1.18 thorpej dv = dv->dv_list.tqe_next)
536 1.18 thorpej if (strcmp(dv->dv_xname, rootspec) == 0)
537 1.18 thorpej break;
538 1.18 thorpej if (dv != NULL && dv->dv_class == DV_IFNET) {
539 1.18 thorpej root_device = dv;
540 1.18 thorpej return;
541 1.18 thorpej }
542 1.18 thorpej
543 1.18 thorpej rootdevname = findblkname(major(rootdev), nam2blk);
544 1.18 thorpej if (rootdevname == NULL) {
545 1.18 thorpej printf("unknown device major 0x%x\n", rootdev);
546 1.18 thorpej boothowto |= RB_ASKNAME;
547 1.18 thorpej goto top;
548 1.18 thorpej }
549 1.18 thorpej bzero(buf, sizeof(buf));
550 1.18 thorpej sprintf(buf, "%s%d", rootdevname, DISKUNIT(rootdev));
551 1.18 thorpej
552 1.18 thorpej for (dv = alldevs.tqh_first; dv != NULL;
553 1.18 thorpej dv = dv->dv_list.tqe_next) {
554 1.18 thorpej if (strcmp(buf, dv->dv_xname) == 0) {
555 1.18 thorpej root_device = dv;
556 1.18 thorpej break;
557 1.18 thorpej }
558 1.18 thorpej }
559 1.18 thorpej if (dv == NULL) {
560 1.18 thorpej printf("device %s (0x%x) not configured\n",
561 1.18 thorpej buf, rootdev);
562 1.18 thorpej boothowto |= RB_ASKNAME;
563 1.18 thorpej goto top;
564 1.18 thorpej }
565 1.18 thorpej
566 1.18 thorpej return;
567 1.18 thorpej }
568 1.18 thorpej
569 1.18 thorpej root_device = rootdv;
570 1.18 thorpej
571 1.18 thorpej switch (rootdv->dv_class) {
572 1.18 thorpej case DV_IFNET:
573 1.18 thorpej return;
574 1.18 thorpej
575 1.18 thorpej case DV_DISK:
576 1.18 thorpej printf("root on %s%c", rootdv->dv_xname,
577 1.18 thorpej DISKPART(rootdev) + 'a');
578 1.18 thorpej printf("\n");
579 1.18 thorpej break;
580 1.18 thorpej
581 1.18 thorpej default:
582 1.18 thorpej printf("can't determine root device\n");
583 1.18 thorpej boothowto |= RB_ASKNAME;
584 1.18 thorpej goto top;
585 1.18 thorpej }
586 1.18 thorpej }
587 1.18 thorpej
588 1.18 thorpej static int
589 1.18 thorpej findblkmajor(name, nam2blk)
590 1.18 thorpej const char *name;
591 1.18 thorpej struct devnametobdevmaj *nam2blk;
592 1.18 thorpej {
593 1.18 thorpej int i;
594 1.18 thorpej
595 1.18 thorpej if (nam2blk == NULL)
596 1.18 thorpej return (-1);
597 1.18 thorpej
598 1.18 thorpej for (i = 0; nam2blk[i].d_name != NULL; i++)
599 1.18 thorpej if (strncmp(name, nam2blk[i].d_name,
600 1.18 thorpej strlen(nam2blk[i].d_name)) == 0)
601 1.18 thorpej return (nam2blk[i].d_maj);
602 1.18 thorpej return (-1);
603 1.18 thorpej }
604 1.18 thorpej
605 1.18 thorpej const char *
606 1.18 thorpej findblkname(maj, nam2blk)
607 1.18 thorpej int maj;
608 1.18 thorpej struct devnametobdevmaj *nam2blk;
609 1.18 thorpej {
610 1.18 thorpej int i;
611 1.18 thorpej
612 1.18 thorpej if (nam2blk == NULL)
613 1.18 thorpej return (NULL);
614 1.18 thorpej
615 1.18 thorpej for (i = 0; nam2blk[i].d_name != NULL; i++)
616 1.18 thorpej if (nam2blk[i].d_maj == maj)
617 1.18 thorpej return (nam2blk[i].d_name);
618 1.18 thorpej return (NULL);
619 1.18 thorpej }
620 1.18 thorpej
621 1.18 thorpej static struct device *
622 1.18 thorpej getdisk(str, len, defpart, nam2blk, devp)
623 1.18 thorpej char *str;
624 1.18 thorpej int len, defpart;
625 1.18 thorpej struct devnametobdevmaj *nam2blk;
626 1.18 thorpej dev_t *devp;
627 1.18 thorpej {
628 1.18 thorpej struct device *dv;
629 1.18 thorpej
630 1.18 thorpej if ((dv = parsedisk(str, len, defpart, nam2blk, devp)) == NULL) {
631 1.18 thorpej printf("use one of:");
632 1.18 thorpej #ifdef MEMORY_DISK_HOOKS
633 1.18 thorpej printf(" %s[a-%c]", fakemdrootdev.dv_xname,
634 1.19 cgd 'a' + MAXPARTITIONS - 1);
635 1.18 thorpej #endif
636 1.18 thorpej for (dv = alldevs.tqh_first; dv != NULL;
637 1.18 thorpej dv = dv->dv_list.tqe_next) {
638 1.18 thorpej if (dv->dv_class == DV_DISK)
639 1.18 thorpej printf(" %s[a-%c]", dv->dv_xname,
640 1.19 cgd 'a' + MAXPARTITIONS - 1);
641 1.18 thorpej if (dv->dv_class == DV_IFNET)
642 1.18 thorpej printf(" %s", dv->dv_xname);
643 1.18 thorpej }
644 1.18 thorpej printf(" halt\n");
645 1.18 thorpej }
646 1.18 thorpej return (dv);
647 1.18 thorpej }
648 1.18 thorpej
649 1.18 thorpej static struct device *
650 1.18 thorpej parsedisk(str, len, defpart, nam2blk, devp)
651 1.18 thorpej char *str;
652 1.18 thorpej int len, defpart;
653 1.18 thorpej struct devnametobdevmaj *nam2blk;
654 1.18 thorpej dev_t *devp;
655 1.18 thorpej {
656 1.18 thorpej struct device *dv;
657 1.18 thorpej char *cp, c;
658 1.18 thorpej int majdev, part;
659 1.18 thorpej
660 1.18 thorpej if (len == 0)
661 1.18 thorpej return (NULL);
662 1.18 thorpej
663 1.18 thorpej if (len == 4 && strcmp(str, "halt") == 0)
664 1.23 gwr cpu_reboot(RB_HALT, NULL);
665 1.18 thorpej
666 1.18 thorpej cp = str + len - 1;
667 1.18 thorpej c = *cp;
668 1.18 thorpej if (c >= 'a' && c <= ('a' + MAXPARTITIONS - 1)) {
669 1.18 thorpej part = c - 'a';
670 1.18 thorpej *cp = '\0';
671 1.18 thorpej } else
672 1.18 thorpej part = defpart;
673 1.18 thorpej
674 1.18 thorpej #ifdef MEMORY_DISK_HOOKS
675 1.18 thorpej if (strcmp(str, fakemdrootdev.dv_xname) == 0) {
676 1.18 thorpej dv = &fakemdrootdev;
677 1.18 thorpej goto gotdisk;
678 1.18 thorpej }
679 1.18 thorpej #endif
680 1.18 thorpej
681 1.18 thorpej for (dv = alldevs.tqh_first; dv != NULL; dv = dv->dv_list.tqe_next) {
682 1.18 thorpej if (dv->dv_class == DV_DISK &&
683 1.18 thorpej strcmp(str, dv->dv_xname) == 0) {
684 1.18 thorpej #ifdef MEMORY_DISK_HOOKS
685 1.18 thorpej gotdisk:
686 1.18 thorpej #endif
687 1.18 thorpej majdev = findblkmajor(dv->dv_xname, nam2blk);
688 1.18 thorpej if (majdev < 0)
689 1.18 thorpej panic("parsedisk");
690 1.18 thorpej *devp = MAKEDISKDEV(majdev, dv->dv_unit, part);
691 1.18 thorpej break;
692 1.18 thorpej }
693 1.18 thorpej
694 1.18 thorpej if (dv->dv_class == DV_IFNET &&
695 1.18 thorpej strcmp(str, dv->dv_xname) == 0) {
696 1.18 thorpej *devp = NODEV;
697 1.18 thorpej break;
698 1.18 thorpej }
699 1.18 thorpej }
700 1.18 thorpej
701 1.18 thorpej *cp = c;
702 1.18 thorpej return (dv);
703 1.18 thorpej }
704 1.18 thorpej
705 1.18 thorpej /*
706 1.18 thorpej * XXX shouldn't this be a common function?
707 1.18 thorpej */
708 1.18 thorpej static int
709 1.18 thorpej getstr(cp, size)
710 1.18 thorpej char *cp;
711 1.18 thorpej int size;
712 1.18 thorpej {
713 1.18 thorpej char *lp;
714 1.18 thorpej int c, len;
715 1.18 thorpej
716 1.20 cgd cnpollc(1);
717 1.20 cgd
718 1.18 thorpej lp = cp;
719 1.18 thorpej len = 0;
720 1.18 thorpej for (;;) {
721 1.18 thorpej c = cngetc();
722 1.18 thorpej switch (c) {
723 1.18 thorpej case '\n':
724 1.18 thorpej case '\r':
725 1.18 thorpej printf("\n");
726 1.18 thorpej *lp++ = '\0';
727 1.20 cgd cnpollc(0);
728 1.18 thorpej return (len);
729 1.18 thorpej case '\b':
730 1.18 thorpej case '\177':
731 1.18 thorpej case '#':
732 1.18 thorpej if (len) {
733 1.18 thorpej --len;
734 1.18 thorpej --lp;
735 1.18 thorpej printf("\b \b");
736 1.18 thorpej }
737 1.18 thorpej continue;
738 1.18 thorpej case '@':
739 1.18 thorpej case 'u'&037:
740 1.18 thorpej len = 0;
741 1.18 thorpej lp = cp;
742 1.18 thorpej printf("\n");
743 1.18 thorpej continue;
744 1.18 thorpej default:
745 1.18 thorpej if (len + 1 >= size || c < ' ') {
746 1.18 thorpej printf("\007");
747 1.18 thorpej continue;
748 1.18 thorpej }
749 1.18 thorpej printf("%c", c);
750 1.18 thorpej ++len;
751 1.18 thorpej *lp++ = c;
752 1.18 thorpej }
753 1.17 cgd }
754 1.10 cgd }
755