boot - Fix boot probe ordering
[dragonfly.git] / sys / boot / pc32 / boot2 / boot2.c
... / ...
CommitLineData
1/*
2 * Copyright (c) 2003,2004 The DragonFly Project. All rights reserved.
3 *
4 * This code is derived from software contributed to The DragonFly Project
5 * by Matthew Dillon <dillon@backplane.com>
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 *
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
15 * the documentation and/or other materials provided with the
16 * distribution.
17 * 3. Neither the name of The DragonFly Project nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific, prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25 * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26 * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
27 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
29 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
31 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 *
34 * Copyright (c) 1998 Robert Nordier
35 * All rights reserved.
36 *
37 * Redistribution and use in source and binary forms are freely
38 * permitted provided that the above copyright notice and this
39 * paragraph and the following disclaimer are duplicated in all
40 * such forms.
41 *
42 * This software is provided "AS IS" and without any express or
43 * implied warranties, including, without limitation, the implied
44 * warranties of merchantability and fitness for a particular
45 * purpose.
46 *
47 * $FreeBSD: src/sys/boot/i386/boot2/boot2.c,v 1.64 2003/08/25 23:28:31 obrien Exp $
48 */
49
50#define AOUT_H_FORCE32
51#include <sys/param.h>
52#ifdef DISKLABEL64
53#include <sys/disklabel64.h>
54#else
55#include <sys/disklabel32.h>
56#endif
57#include <sys/diskslice.h>
58#include <sys/diskmbr.h>
59#include <sys/dtype.h>
60#include <sys/dirent.h>
61#include <machine/bootinfo.h>
62#include <machine/elf.h>
63#include <machine/psl.h>
64
65#include <stdarg.h>
66
67#include <a.out.h>
68
69#include <btxv86.h>
70
71#ifdef DISKLABEL64
72#include "boot2_64.h"
73#else
74#include "boot2_32.h"
75#endif
76#include "boot2.h"
77#include "lib.h"
78#include "../bootasm.h"
79
80#define SECOND 18 /* Circa that many ticks in a second. */
81
82#define RBX_ASKNAME 0x0 /* -a */
83#define RBX_SINGLE 0x1 /* -s */
84#define RBX_DFLTROOT 0x5 /* -r */
85#define RBX_KDB 0x6 /* -d */
86#define RBX_CONFIG 0xa /* -c */
87#define RBX_VERBOSE 0xb /* -v */
88#define RBX_SERIAL 0xc /* -h */
89#define RBX_CDROM 0xd /* -C */
90#define RBX_GDB 0xf /* -g */
91#define RBX_MUTE 0x10 /* -m */
92#define RBX_PAUSE 0x12 /* -p */
93#define RBX_NOINTR 0x1c /* -n */
94#define RBX_VIDEO 0x1d /* -V */
95#define RBX_PROBEKBD 0x1e /* -P */
96/* 0x1f is reserved for the historical RB_BOOTINFO option */
97
98#define RBF_MUTE (1 << RBX_MUTE)
99#define RBF_SERIAL (1 << RBX_SERIAL)
100#define RBF_VIDEO (1 << RBX_VIDEO)
101#define RBF_NOINTR (1 << RBX_NOINTR)
102#define RBF_PROBEKBD (1 << RBX_PROBEKBD)
103
104/* pass: -a, -s, -r, -d, -c, -v, -h, -C, -g, -m, -p, -V */
105#define RBX_MASK 0x2005ffff
106
107#define PATH_CONFIG "/boot.config"
108#define PATH_BOOT3 "/loader" /* /boot is dedicated */
109#define PATH_BOOT3_ALT "/boot/loader" /* /boot in root */
110#define PATH_KERNEL "/kernel"
111
112#define NOPT 12
113#define NDEV 3
114#define MEM_BASE 0x12
115#define MEM_EXT 0x15
116#define V86_CY(x) ((x) & PSL_C)
117#define V86_ZR(x) ((x) & PSL_Z)
118
119#define DRV_HARD 0x80
120#define DRV_MASK 0x7f
121
122#define TYPE_AD 0
123#define TYPE_DA 1
124#define TYPE_MAXHARD TYPE_DA
125#define TYPE_FD 2
126
127#define INVALID_S "Bad %s\n"
128
129extern uint32_t _end;
130
131static const char optstr[NOPT] = { "VhaCgmnPprsv" };
132static const unsigned char flags[NOPT] = {
133 RBX_VIDEO,
134 RBX_SERIAL,
135 RBX_ASKNAME,
136 RBX_CDROM,
137 RBX_GDB,
138 RBX_MUTE,
139 RBX_NOINTR,
140 RBX_PROBEKBD,
141 RBX_PAUSE,
142 RBX_DFLTROOT,
143 RBX_SINGLE,
144 RBX_VERBOSE
145};
146
147static const char *const dev_nm[NDEV] = {"ad", "da", "fd"};
148static const unsigned char dev_maj[NDEV] = {30, 4, 2};
149
150static struct dsk {
151 unsigned drive;
152 unsigned type;
153 unsigned unit;
154 uint8_t slice;
155 uint8_t part;
156 unsigned start;
157 int init;
158} dsk;
159
160static char cmd[512];
161static const char *kname;
162static uint32_t opts = RBF_VIDEO;
163static struct bootinfo bootinfo;
164
165/*
166 * boot2 encapsulated ABI elements provided to *fsread.c
167 *
168 * NOTE: boot2_dmadat is extended by per-filesystem APIs
169 */
170uint32_t fs_off;
171int ls;
172struct boot2_dmadat *boot2_dmadat;
173
174void exit(int);
175static void load(void);
176static int parse(void);
177static int dskprobe(void);
178static int xfsread(boot2_ino_t, void *, size_t);
179static int drvread(void *, unsigned, unsigned);
180static int keyhit(unsigned);
181static int xputc(int);
182static int xgetc(int);
183static int getc(int);
184
185void
186memcpy(void *d, const void *s, int len)
187{
188 char *dd = d;
189 const char *ss = s;
190
191 while (--len >= 0)
192 dd[len] = ss[len];
193}
194
195int
196strcmp(const char *s1, const char *s2)
197{
198 for (; *s1 == *s2 && *s1; s1++, s2++)
199 ;
200 return ((int)((unsigned char)*s1 - (unsigned char)*s2));
201}
202
203#if defined(UFS) && defined(HAMMERFS)
204
205const struct boot2_fsapi *fsapi;
206
207#elif defined(UFS)
208
209#define fsapi (&boot2_ufs_api)
210
211#elif defined(HAMMERFS)
212
213#define fsapi (&boot2_hammer_api)
214
215#endif
216
217static int
218xfsread(boot2_ino_t inode, void *buf, size_t nbyte)
219{
220 if ((size_t)fsapi->fsread(inode, buf, nbyte) != nbyte) {
221 printf(INVALID_S, "format");
222 return -1;
223 }
224 return 0;
225}
226
227static inline void
228getstr(void)
229{
230 char *s;
231 int c;
232
233 s = cmd;
234 for (;;) {
235 switch (c = xgetc(0)) {
236 case 0:
237 break;
238 case '\177':
239 case '\b':
240 if (s > cmd) {
241 s--;
242 printf("\b \b");
243 }
244 break;
245 case '\n':
246 case '\r':
247 *s = 0;
248 return;
249 default:
250 if (s - cmd < sizeof(cmd) - 1)
251 *s++ = c;
252 putchar(c);
253 }
254 }
255}
256
257static inline void
258putc(int c)
259{
260 v86.addr = 0x10;
261 v86.eax = 0xe00 | (c & 0xff);
262 v86.ebx = 0x7;
263 v86int();
264}
265
266int
267main(void)
268{
269 uint8_t autoboot;
270 boot2_ino_t ino;
271
272 kname = NULL;
273 boot2_dmadat =
274 (void *)(roundup2(__base + (int32_t)&_end, 0x10000) - __base);
275 v86.ctl = V86_FLAGS;
276 v86.efl = PSL_RESERVED_DEFAULT | PSL_I;
277 dsk.drive = *(uint8_t *)PTOV(MEM_BTX_USR_ARG);
278 dsk.type = dsk.drive & DRV_HARD ? TYPE_AD : TYPE_FD;
279 dsk.unit = dsk.drive & DRV_MASK;
280 dsk.slice = *(uint8_t *)PTOV(MEM_BTX_USR_ARG + 1) + 1;
281 bootinfo.bi_version = BOOTINFO_VERSION;
282 bootinfo.bi_size = sizeof(bootinfo);
283
284 autoboot = 1;
285
286 /*
287 * Probe the default disk and process the configuration file if
288 * successful.
289 */
290 if (dskprobe() == 0) {
291 if ((ino = fsapi->fslookup(PATH_CONFIG)))
292 fsapi->fsread(ino, cmd, sizeof(cmd));
293 }
294
295 /*
296 * Parse config file if present. parse() will re-probe if necessary.
297 */
298 if (cmd[0]) {
299 printf("%s: %s", PATH_CONFIG, cmd);
300 if (parse())
301 autoboot = 0;
302 /* Do not process this command twice */
303 *cmd = 0;
304 }
305
306 /*
307 * Setup our (serial) console after processing the config file. If
308 * the initialization fails, don't try to use the serial port. This
309 * can happen if the serial port is unmaped (happens on new laptops a lot).
310 */
311 if ((opts & (RBF_MUTE|RBF_SERIAL|RBF_VIDEO)) == 0)
312 opts |= RBF_SERIAL|RBF_VIDEO;
313 if (opts & RBF_SERIAL) {
314 if (sio_init())
315 opts = RBF_VIDEO;
316 }
317
318
319 /*
320 * Try to exec stage 3 boot loader. If interrupted by a keypress,
321 * or in case of failure, try to load a kernel directly instead.
322 *
323 * We have to try boot /boot/loader and /loader to support booting
324 * from a /boot partition instead of a root partition.
325 */
326 if (autoboot && !kname) {
327 kname = PATH_BOOT3;
328 if (!keyhit(3*SECOND)) {
329 load();
330 kname = PATH_BOOT3_ALT;
331 load();
332 kname = PATH_KERNEL;
333 }
334 }
335
336 /* Present the user with the boot2 prompt. */
337
338 for (;;) {
339 printf("\nDragonFly boot\n"
340 "%u:%s(%u,%c)%s: ",
341 dsk.drive & DRV_MASK, dev_nm[dsk.type], dsk.unit,
342 'a' + dsk.part, kname);
343 if (!autoboot || keyhit(5*SECOND))
344 getstr();
345 else
346 putchar('\n');
347 autoboot = 0;
348 if (parse())
349 putchar('\a');
350 else
351 load();
352 }
353}
354
355/* XXX - Needed for btxld to link the boot2 binary; do not remove. */
356void
357exit(int x)
358{
359}
360
361static void
362load(void)
363{
364 union {
365 struct exec ex;
366 Elf32_Ehdr eh;
367 } hdr;
368 static Elf32_Phdr ep[2];
369 static Elf32_Shdr es[2];
370 caddr_t p;
371 boot2_ino_t ino;
372 uint32_t addr;
373 int i, j;
374
375 if (!(ino = fsapi->fslookup(kname))) {
376 if (!ls)
377 printf("No %s\n", kname);
378 return;
379 }
380 if (xfsread(ino, &hdr, sizeof(hdr)))
381 return;
382
383 if (N_GETMAGIC(hdr.ex) == ZMAGIC) {
384 addr = hdr.ex.a_entry & 0xffffff;
385 p = PTOV(addr);
386 fs_off = PAGE_SIZE;
387 if (xfsread(ino, p, hdr.ex.a_text))
388 return;
389 p += roundup2(hdr.ex.a_text, PAGE_SIZE);
390 if (xfsread(ino, p, hdr.ex.a_data))
391 return;
392 } else if (IS_ELF(hdr.eh)) {
393 fs_off = hdr.eh.e_phoff;
394 for (j = i = 0; i < hdr.eh.e_phnum && j < 2; i++) {
395 if (xfsread(ino, ep + j, sizeof(ep[0])))
396 return;
397 if (ep[j].p_type == PT_LOAD)
398 j++;
399 }
400 for (i = 0; i < 2; i++) {
401 p = PTOV(ep[i].p_paddr & 0xffffff);
402 fs_off = ep[i].p_offset;
403 if (xfsread(ino, p, ep[i].p_filesz))
404 return;
405 }
406 p += roundup2(ep[1].p_memsz, PAGE_SIZE);
407 bootinfo.bi_symtab = VTOP(p);
408 if (hdr.eh.e_shnum == hdr.eh.e_shstrndx + 3) {
409 fs_off = hdr.eh.e_shoff + sizeof(es[0]) *
410 (hdr.eh.e_shstrndx + 1);
411 if (xfsread(ino, &es, sizeof(es)))
412 return;
413 for (i = 0; i < 2; i++) {
414 *(Elf32_Word *)p = es[i].sh_size;
415 p += sizeof(es[i].sh_size);
416 fs_off = es[i].sh_offset;
417 if (xfsread(ino, p, es[i].sh_size))
418 return;
419 p += es[i].sh_size;
420 }
421 }
422 addr = hdr.eh.e_entry & 0xffffff;
423 bootinfo.bi_esymtab = VTOP(p);
424 } else {
425 printf(INVALID_S, "format");
426 return;
427 }
428
429 bootinfo.bi_kernelname = VTOP(kname);
430 bootinfo.bi_bios_dev = dsk.drive;
431 __exec((caddr_t)addr, opts & RBX_MASK,
432 MAKEBOOTDEV(dev_maj[dsk.type], 0, dsk.slice, dsk.unit, dsk.part),
433 0, 0, 0, VTOP(&bootinfo));
434}
435
436static int
437parse(void)
438{
439 char *arg = cmd;
440 char *p, *q;
441 unsigned int drv;
442 int c, i;
443
444 while ((c = *arg++)) {
445 if (c == ' ' || c == '\t' || c == '\n')
446 continue;
447 for (p = arg; *p && *p != '\n' && *p != ' ' && *p != '\t'; p++)
448 ;
449 if (*p)
450 *p++ = 0;
451 if (c == '-') {
452 while ((c = *arg++)) {
453 for (i = NOPT - 1; i >= 0; --i) {
454 if (optstr[i] == c) {
455 opts ^= 1 << flags[i];
456 goto ok;
457 }
458 }
459 return(-1);
460 ok: ; /* ugly but save space */
461 }
462 if (opts & RBF_PROBEKBD) {
463 i = *(uint8_t *)PTOV(0x496) & 0x10;
464 if (!i) {
465 printf("NO KB\n");
466 opts |= RBF_VIDEO | RBF_SERIAL;
467 }
468 opts &= ~RBF_PROBEKBD;
469 }
470 } else {
471 for (q = arg--; *q && *q != '('; q++);
472 if (*q) {
473 drv = -1;
474 if (arg[1] == ':') {
475 drv = *arg - '0';
476 if (drv > 9)
477 return (-1);
478 arg += 2;
479 }
480 if (q - arg != 2)
481 return -1;
482 for (i = 0; arg[0] != dev_nm[i][0] ||
483 arg[1] != dev_nm[i][1]; i++)
484 if (i == NDEV - 1)
485 return -1;
486 dsk.type = i;
487 arg += 3;
488 dsk.unit = *arg - '0';
489 if (arg[1] != ',' || dsk.unit > 9)
490 return -1;
491 arg += 2;
492 dsk.slice = WHOLE_DISK_SLICE;
493 if (arg[1] == ',') {
494 dsk.slice = *arg - '0' + 1;
495 if (dsk.slice > NDOSPART + 1)
496 return -1;
497 arg += 2;
498 }
499 if (arg[1] != ')')
500 return -1;
501 dsk.part = *arg - 'a';
502 if (dsk.part > 7)
503 return (-1);
504 arg += 2;
505 if (drv == -1)
506 drv = dsk.unit;
507 dsk.drive = (dsk.type <= TYPE_MAXHARD
508 ? DRV_HARD : 0) + drv;
509 }
510 kname = arg;
511 }
512 arg = p;
513 }
514 return dskprobe();
515}
516
517static int
518dskprobe(void)
519{
520 struct dos_partition *dp;
521#ifdef DISKLABEL64
522 struct disklabel64 *d;
523#else
524 struct disklabel32 *d;
525#endif
526 char *sec;
527 unsigned i;
528 uint8_t sl;
529
530 /*
531 * Probe slice table
532 */
533 sec = boot2_dmadat->secbuf;
534 dsk.start = 0;
535 if (drvread(sec, DOSBBSECTOR, 1))
536 return -1;
537 dp = (void *)(sec + DOSPARTOFF);
538 sl = dsk.slice;
539 if (sl < BASE_SLICE) {
540 for (i = 0; i < NDOSPART; i++)
541 if (dp[i].dp_typ == DOSPTYP_386BSD &&
542 (dp[i].dp_flag & 0x80 || sl < BASE_SLICE)) {
543 sl = BASE_SLICE + i;
544 if (dp[i].dp_flag & 0x80 ||
545 dsk.slice == COMPATIBILITY_SLICE)
546 break;
547 }
548 if (dsk.slice == WHOLE_DISK_SLICE)
549 dsk.slice = sl;
550 }
551 if (sl != WHOLE_DISK_SLICE) {
552 if (sl != COMPATIBILITY_SLICE)
553 dp += sl - BASE_SLICE;
554 if (dp->dp_typ != DOSPTYP_386BSD) {
555 printf(INVALID_S, "slice");
556 return -1;
557 }
558 dsk.start = dp->dp_start;
559 }
560
561 /*
562 * Probe label and partition table
563 */
564#ifdef DISKLABEL64
565 if (drvread(sec, dsk.start, (sizeof(struct disklabel64) + 511) / 512))
566 return -1;
567 d = (void *)sec;
568 if (d->d_magic != DISKMAGIC64) {
569 printf(INVALID_S, "label");
570 return -1;
571 } else {
572 if (dsk.part >= d->d_npartitions || d->d_partitions[dsk.part].p_bsize == 0) {
573 printf(INVALID_S, "partition");
574 return -1;
575 }
576 dsk.start += d->d_partitions[dsk.part].p_boffset / 512;
577 }
578#else
579 if (drvread(sec, dsk.start + LABELSECTOR32, 1))
580 return -1;
581 d = (void *)(sec + LABELOFFSET32);
582 if (d->d_magic != DISKMAGIC32 || d->d_magic2 != DISKMAGIC32) {
583 if (dsk.part != RAW_PART) {
584 printf(INVALID_S, "label");
585 return -1;
586 }
587 } else {
588 if (!dsk.init) {
589 if (d->d_type == DTYPE_SCSI)
590 dsk.type = TYPE_DA;
591 dsk.init++;
592 }
593 if (dsk.part >= d->d_npartitions ||
594 !d->d_partitions[dsk.part].p_size) {
595 printf(INVALID_S, "partition");
596 return -1;
597 }
598 dsk.start += d->d_partitions[dsk.part].p_offset;
599 dsk.start -= d->d_partitions[RAW_PART].p_offset;
600 }
601#endif
602 /*
603 * Probe filesystem
604 */
605#if defined(UFS) && defined(HAMMERFS)
606 if (boot2_ufs_api.fsinit() == 0) {
607 fsapi = &boot2_ufs_api;
608 } else if (boot2_hammer_api.fsinit() == 0) {
609 fsapi = &boot2_hammer_api;
610 } else {
611 printf("fs probe failed\n");
612 fsapi = &boot2_ufs_api;
613 return -1;
614 }
615 return 0;
616#else
617 return fsapi->fsinit();
618#endif
619}
620
621
622/*
623 * Read from the probed disk. We have established the slice and partition
624 * base sector.
625 */
626int
627dskread(void *buf, unsigned lba, unsigned nblk)
628{
629 return drvread(buf, dsk.start + lba, nblk);
630}
631
632/*
633 * boot encapsulated ABI
634 */
635void
636printf(const char *fmt,...)
637{
638 va_list ap;
639 static char buf[10];
640 char *s;
641 unsigned u;
642 int c;
643
644 va_start(ap, fmt);
645 while ((c = *fmt++)) {
646 if (c == '%') {
647 c = *fmt++;
648 switch (c) {
649 case 'c':
650 putchar(va_arg(ap, int));
651 continue;
652 case 's':
653 for (s = va_arg(ap, char *); *s; s++)
654 putchar(*s);
655 continue;
656 case 'u':
657 u = va_arg(ap, unsigned);
658 s = buf;
659 do
660 *s++ = '0' + u % 10U;
661 while (u /= 10U);
662 while (--s >= buf)
663 putchar(*s);
664 continue;
665 }
666 }
667 putchar(c);
668 }
669 va_end(ap);
670 return;
671}
672
673/*
674 * boot encapsulated ABI
675 */
676void
677putchar(int c)
678{
679 if (c == '\n')
680 xputc('\r');
681 xputc(c);
682}
683
684/*
685 * boot encapsulated ABI
686 */
687static int
688drvread(void *buf, unsigned lba, unsigned nblk)
689{
690 static unsigned c = 0x2d5c7c2f; /* twiddle */
691
692 c = (c << 8) | (c >> 24);
693 xputc(c);
694 xputc('\b');
695 v86.ctl = V86_ADDR | V86_CALLF | V86_FLAGS;
696 v86.addr = XREADORG; /* call to xread in boot1 */
697 v86.es = VTOPSEG(buf);
698 v86.eax = lba;
699 v86.ebx = VTOPOFF(buf);
700 v86.ecx = lba >> 16;
701 v86.edx = nblk << 8 | dsk.drive;
702 v86int();
703 v86.ctl = V86_FLAGS;
704 if (V86_CY(v86.efl)) {
705 printf("error %u lba %u\n", v86.eax >> 8 & 0xff, lba);
706 return -1;
707 }
708 return 0;
709}
710
711static int
712keyhit(unsigned ticks)
713{
714 uint32_t t0, t1;
715
716 if (opts & RBF_NOINTR)
717 return 0;
718 t0 = 0;
719 for (;;) {
720 if (xgetc(1))
721 return 1;
722 t1 = *(uint32_t *)PTOV(0x46c);
723 if (!t0)
724 t0 = t1;
725 if ((uint32_t)(t1 - t0) >= ticks)
726 return 0;
727 }
728}
729
730static int
731xputc(int c)
732{
733 if (opts & RBF_VIDEO)
734 putc(c);
735 if (opts & RBF_SERIAL)
736 sio_putc(c);
737 return c;
738}
739
740static int
741getc(int fn)
742{
743 v86.addr = 0x16;
744 v86.eax = fn << 8;
745 v86int();
746 return fn == 0 ? v86.eax & 0xff : !V86_ZR(v86.efl);
747}
748
749static int
750xgetc(int fn)
751{
752 if (opts & RBF_NOINTR)
753 return 0;
754 for (;;) {
755 if ((opts & RBF_VIDEO) && getc(1))
756 return fn ? 1 : getc(0);
757 if ((opts & RBF_SERIAL) && sio_ischar())
758 return fn ? 1 : sio_getc();
759 if (fn)
760 return 0;
761 }
762}