Add more bits for native hammer boot support.
[dragonfly.git] / sys / boot / pc32 / boot2 / boot2.c
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  * $DragonFly: src/sys/boot/pc32/boot2/boot2.c,v 1.18 2008/09/13 11:45:45 corecode Exp $
49  */
50 #ifdef HAMMERFS
51 #undef __BOOT2_HACK
52 #endif
53
54 #include <sys/param.h>
55 #ifdef DISKLABEL64
56 #include <sys/disklabel64.h>
57 #else
58 #include <sys/disklabel32.h>
59 #endif
60 #include <sys/diskslice.h>
61 #include <sys/diskmbr.h>
62 #include <sys/dtype.h>
63 #include <sys/dirent.h>
64 #include <machine/bootinfo.h>
65 #include <machine/elf.h>
66
67 #include <stdarg.h>
68
69 #include <a.out.h>
70
71 #include <btxv86.h>
72
73 #ifdef DISKLABEL64
74 #include "boot2_64.h"
75 #else
76 #include "boot2_32.h"
77 #endif
78
79 #include "lib.h"
80 #include "../bootasm.h"
81
82 #define SECOND          18      /* Circa that many ticks in a second. */
83
84 #define RBX_ASKNAME     0x0     /* -a */
85 #define RBX_SINGLE      0x1     /* -s */
86 #define RBX_DFLTROOT    0x5     /* -r */
87 #define RBX_KDB         0x6     /* -d */
88 #define RBX_CONFIG      0xa     /* -c */
89 #define RBX_VERBOSE     0xb     /* -v */
90 #define RBX_SERIAL      0xc     /* -h */
91 #define RBX_CDROM       0xd     /* -C */
92 #define RBX_GDB         0xf     /* -g */
93 #define RBX_MUTE        0x10    /* -m */
94 #define RBX_PAUSE       0x12    /* -p */
95 #define RBX_NOINTR      0x1c    /* -n */
96 #define RBX_VIDEO       0x1d    /* -V */
97 #define RBX_PROBEKBD    0x1e    /* -P */
98 /* 0x1f is reserved for the historical RB_BOOTINFO option */
99
100 #define RBF_MUTE        (1 << RBX_MUTE)
101 #define RBF_SERIAL      (1 << RBX_SERIAL)
102 #define RBF_VIDEO       (1 << RBX_VIDEO)
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      "/boot/loader"          /* /boot in root */
109 #define PATH_BOOT3_ALT  "/loader"               /* /boot partition */
110 #define PATH_KERNEL     "/kernel"
111
112 #define NDEV            3
113 #define MEM_BASE        0x12
114 #define MEM_EXT         0x15
115 #define V86_CY(x)       ((x) & 1)
116 #define V86_ZR(x)       ((x) & 0x40)
117
118 #define DRV_HARD        0x80
119 #define DRV_MASK        0x7f
120
121 #define TYPE_AD         0
122 #define TYPE_DA         1
123 #define TYPE_MAXHARD    TYPE_DA
124 #define TYPE_FD         2
125
126 #define NOPT            12
127
128 #define INVALID_S       "Bad %s\n"
129
130 extern uint32_t _end;
131
132 static const char optstr[NOPT] = { "VhaCgmnPprsv" };
133 static const unsigned char flags[NOPT] = {
134     RBX_VIDEO,
135     RBX_SERIAL,
136     RBX_ASKNAME,
137     RBX_CDROM,
138     RBX_GDB,
139     RBX_MUTE,
140     RBX_NOINTR,
141     RBX_PROBEKBD,
142     RBX_PAUSE,
143     RBX_DFLTROOT,
144     RBX_SINGLE,
145     RBX_VERBOSE
146 };
147
148 static const char *const dev_nm[NDEV] = {"ad", "da", "fd"};
149 static const unsigned char dev_maj[NDEV] = {30, 4, 2};
150
151 static struct dsk {
152     unsigned drive;
153     unsigned type;
154     unsigned unit;
155     unsigned slice;
156     unsigned part;
157     unsigned start;
158     int init;
159 } dsk;
160 static char cmd[512];
161 static char kname[1024];
162 static uint32_t opts;
163 static struct bootinfo bootinfo;
164
165 static int ls, dsk_meta;
166 static uint32_t fs_off;
167
168 void exit(int);
169 static void load(void);
170 static int parse(void);
171 static int xfsread(ino_t, void *, size_t);
172 static int dskread(void *, unsigned, unsigned);
173 static void printf(const char *,...);
174 static void putchar(int);
175 static uint32_t memsize(void);
176 static int drvread(void *, unsigned, unsigned);
177 static int keyhit(unsigned);
178 static void xputc(int);
179 static int xgetc(int);
180 static int getc(int);
181
182 static void 
183 memcpy(void *d, const void *s, int len)
184 {
185     char *dd = d;
186     const char *ss = s;
187
188 #if 0
189     if (dd < ss) {
190         while (--len >= 0)
191             *dd++ = *ss++;
192     } else {
193 #endif
194         while (--len >= 0)
195             dd[len] = ss[len];
196 #if 0
197     }
198 #endif
199 }
200
201 static inline int
202 strcmp(const char *s1, const char *s2)
203 {
204     for (; *s1 == *s2 && *s1; s1++, s2++);
205     return (unsigned char)*s1 - (unsigned char)*s2;
206 }
207
208 #if HAMMERFS
209 #include "hammerread.c"
210 #else
211 #include "ufsread.c"
212 #endif
213
214 static int
215 xfsread(ino_t inode, void *buf, size_t nbyte)
216 {
217     if ((size_t)fsread(inode, buf, nbyte) != nbyte) {
218         printf(INVALID_S, "format");
219         return -1;
220     }
221     return 0;
222 }
223
224 static inline uint32_t
225 memsize(void)
226 {
227     v86.addr = MEM_EXT;
228     v86.eax = 0x8800;
229     v86int();
230     return v86.eax;
231 }
232
233 static inline void
234 getstr(void)
235 {
236     char *s;
237     int c;
238
239     s = cmd;
240     for (;;) {
241         switch (c = xgetc(0)) {
242         case 0:
243             break;
244         case '\177':
245         case '\b':
246             if (s > cmd) {
247                 s--;
248                 printf("\b \b");
249             }
250             break;
251         case '\n':
252         case '\r':
253             *s = 0;
254             return;
255         default:
256             if (s - cmd < sizeof(cmd) - 1)
257                 *s++ = c;
258             putchar(c);
259         }
260     }
261 }
262
263 static inline void
264 putc(int c)
265 {
266     v86.addr = 0x10;
267     v86.eax = 0xe00 | (c & 0xff);
268     v86.ebx = 0x7;
269     v86int();
270 }
271
272 int
273 main(void)
274 {
275     int autoboot;
276     ino_t ino;
277
278     dmadat = (void *)(roundup2(__base + (int32_t)&_end, 0x10000) - __base);
279     v86.ctl = V86_FLAGS;
280     dsk.drive = *(uint8_t *)PTOV(MEM_BTX_USR_ARG);
281     dsk.type = dsk.drive & DRV_HARD ? TYPE_AD : TYPE_FD;
282     dsk.unit = dsk.drive & DRV_MASK;
283     dsk.slice = *(uint8_t *)PTOV(MEM_BTX_USR_ARG + 1) + 1;
284     bootinfo.bi_version = BOOTINFO_VERSION;
285     bootinfo.bi_size = sizeof(bootinfo);
286     bootinfo.bi_basemem = 0;    /* XXX will be filled by loader or kernel */
287     bootinfo.bi_extmem = memsize();
288     bootinfo.bi_memsizes_valid++;
289
290     /* Process configuration file */
291
292     autoboot = 1;
293
294     if ((ino = lookup(PATH_CONFIG)))
295         fsread(ino, cmd, sizeof(cmd));
296
297     if (cmd[0]) {
298         printf("%s: %s", PATH_CONFIG, cmd);
299         if (parse())
300             autoboot = 0;
301         /* Do not process this command twice */
302         *cmd = 0;
303     }
304
305     /*
306      * Setup our (serial) console after processing the config file.  If
307      * the initialization fails, don't try to use the serial port.  This
308      * can happen if the serial port is unmaped (happens on new laptops a lot).
309      */
310     if ((opts & (RBF_MUTE|RBF_SERIAL|RBF_VIDEO)) == 0)
311         opts |= RBF_SERIAL|RBF_VIDEO;
312     if (opts & RBF_SERIAL) {
313         if (sio_init())
314             opts = RBF_VIDEO;
315     }
316
317
318     /*
319      * Try to exec stage 3 boot loader. If interrupted by a keypress,
320      * or in case of failure, try to load a kernel directly instead.
321      *
322      * We have to try boot /boot/loader and /loader to support booting
323      * from a /boot partition instead of a root partition.
324      */
325     if (autoboot && !*kname) {
326         memcpy(kname, PATH_BOOT3, sizeof(PATH_BOOT3));
327         if (!keyhit(3*SECOND)) {
328             load();
329             memcpy(kname, PATH_BOOT3_ALT, sizeof(PATH_BOOT3_ALT));
330             load();
331             memcpy(kname, PATH_KERNEL, sizeof(PATH_KERNEL));
332         }
333     }
334
335     /* Present the user with the boot2 prompt. */
336
337     for (;;) {
338         printf("\nDragonFly boot\n"
339                "%u:%s(%u,%c)%s: ",
340                dsk.drive & DRV_MASK, dev_nm[dsk.type], dsk.unit,
341                'a' + dsk.part, kname);
342         if (!autoboot || keyhit(5*SECOND))
343             getstr();
344         else
345             putchar('\n');
346         autoboot = 0;
347         if (parse())
348             putchar('\a');
349         else
350             load();
351     }
352 }
353
354 /* XXX - Needed for btxld to link the boot2 binary; do not remove. */
355 void
356 exit(int x)
357 {
358 }
359
360 static void
361 load(void)
362 {
363     union {
364         struct exec ex;
365         Elf32_Ehdr eh;
366     } hdr;
367     Elf32_Phdr ep[2];
368     Elf32_Shdr es[2];
369     caddr_t p;
370     ino_t ino;
371     uint32_t addr, x;
372     int fmt, i, j;
373
374     if (!(ino = lookup(kname))) {
375         if (!ls)
376             printf("No %s\n", kname);
377         return;
378     }
379     if (xfsread(ino, &hdr, sizeof(hdr)))
380         return;
381     if (N_GETMAGIC(hdr.ex) == ZMAGIC)
382         fmt = 0;
383     else if (IS_ELF(hdr.eh))
384         fmt = 1;
385     else {
386         printf(INVALID_S, "format");
387         return;
388     }
389     if (fmt == 0) {
390         addr = hdr.ex.a_entry & 0xffffff;
391         p = PTOV(addr);
392         fs_off = PAGE_SIZE;
393         if (xfsread(ino, p, hdr.ex.a_text))
394             return;
395         p += roundup2(hdr.ex.a_text, PAGE_SIZE);
396         if (xfsread(ino, p, hdr.ex.a_data))
397             return;
398         p += hdr.ex.a_data + roundup2(hdr.ex.a_bss, PAGE_SIZE);
399         bootinfo.bi_symtab = VTOP(p);
400         memcpy(p, &hdr.ex.a_syms, sizeof(hdr.ex.a_syms));
401         p += sizeof(hdr.ex.a_syms);
402         if (hdr.ex.a_syms) {
403             if (xfsread(ino, p, hdr.ex.a_syms))
404                 return;
405             p += hdr.ex.a_syms;
406             if (xfsread(ino, p, sizeof(int)))
407                 return;
408             x = *(uint32_t *)p;
409             p += sizeof(int);
410             x -= sizeof(int);
411             if (xfsread(ino, p, x))
412                 return;
413             p += x;
414         }
415     } else {
416         fs_off = hdr.eh.e_phoff;
417         for (j = i = 0; i < hdr.eh.e_phnum && j < 2; i++) {
418             if (xfsread(ino, ep + j, sizeof(ep[0])))
419                 return;
420             if (ep[j].p_type == PT_LOAD)
421                 j++;
422         }
423         for (i = 0; i < 2; i++) {
424             p = PTOV(ep[i].p_paddr & 0xffffff);
425             fs_off = ep[i].p_offset;
426             if (xfsread(ino, p, ep[i].p_filesz))
427                 return;
428         }
429         p += roundup2(ep[1].p_memsz, PAGE_SIZE);
430         bootinfo.bi_symtab = VTOP(p);
431         if (hdr.eh.e_shnum == hdr.eh.e_shstrndx + 3) {
432             fs_off = hdr.eh.e_shoff + sizeof(es[0]) *
433                 (hdr.eh.e_shstrndx + 1);
434             if (xfsread(ino, &es, sizeof(es)))
435                 return;
436             for (i = 0; i < 2; i++) {
437                 memcpy(p, &es[i].sh_size, sizeof(es[i].sh_size));
438                 p += sizeof(es[i].sh_size);
439                 fs_off = es[i].sh_offset;
440                 if (xfsread(ino, p, es[i].sh_size))
441                     return;
442                 p += es[i].sh_size;
443             }
444         }
445         addr = hdr.eh.e_entry & 0xffffff;
446     }
447     bootinfo.bi_esymtab = VTOP(p);
448     bootinfo.bi_kernelname = VTOP(kname);
449     bootinfo.bi_bios_dev = dsk.drive;
450     __exec((caddr_t)addr, opts & RBX_MASK,
451            MAKEBOOTDEV(dev_maj[dsk.type], 0, dsk.slice, dsk.unit, dsk.part),
452            0, 0, 0, VTOP(&bootinfo));
453 }
454
455 static int
456 parse()
457 {
458     char *arg = cmd;
459     char *p, *q;
460     unsigned int drv;
461     int c, i;
462
463     while ((c = *arg++)) {
464         if (c == ' ' || c == '\t' || c == '\n')
465             continue;
466         for (p = arg; *p && *p != '\n' && *p != ' ' && *p != '\t'; p++)
467             ;
468         if (*p)
469             *p++ = 0;
470         if (c == '-') {
471             while ((c = *arg++)) {
472                 for (i = NOPT - 1; i >= 0; --i) {
473                     if (optstr[i] == c) {
474                         opts ^= 1 << flags[i];
475                         goto ok;
476                     }
477                 }
478                 return(-1);
479                 ok: ;   /* ugly but save space */
480             }
481             if (opts & (1 << RBX_PROBEKBD)) {
482                 i = *(uint8_t *)PTOV(0x496) & 0x10;
483                 if (!i) {
484                     printf("NO KB\n");
485                     opts |= RBF_VIDEO | RBF_SERIAL;
486                 }
487                 opts &= ~(1 << RBX_PROBEKBD);
488             }
489         } else {
490             for (q = arg--; *q && *q != '('; q++);
491             if (*q) {
492                 drv = -1;
493                 if (arg[1] == ':') {
494                     drv = *arg - '0';
495                     if (drv > 9)
496                         return (-1);
497                     arg += 2;
498                 }
499                 if (q - arg != 2)
500                     return -1;
501                 for (i = 0; arg[0] != dev_nm[i][0] ||
502                             arg[1] != dev_nm[i][1]; i++)
503                     if (i == NDEV - 1)
504                         return -1;
505                 dsk.type = i;
506                 arg += 3;
507                 dsk.unit = *arg - '0';
508                 if (arg[1] != ',' || dsk.unit > 9)
509                     return -1;
510                 arg += 2;
511                 dsk.slice = WHOLE_DISK_SLICE;
512                 if (arg[1] == ',') {
513                     dsk.slice = *arg - '0' + 1;
514                     if (dsk.slice > NDOSPART)
515                         return -1;
516                     arg += 2;
517                 }
518                 if (arg[1] != ')')
519                     return -1;
520                 dsk.part = *arg - 'a';
521                 if (dsk.part > 7)
522                     return (-1);
523                 arg += 2;
524                 if (drv == -1)
525                     drv = dsk.unit;
526                 dsk.drive = (dsk.type <= TYPE_MAXHARD
527                              ? DRV_HARD : 0) + drv;
528                 dsk_meta = 0;
529             }
530             if ((i = p - arg - !*(p - 1))) {
531                 if ((size_t)i >= sizeof(kname))
532                     return -1;
533                 memcpy(kname, arg, i + 1);
534             }
535         }
536         arg = p;
537     }
538     return 0;
539 }
540
541 static int
542 dskread(void *buf, unsigned lba, unsigned nblk)
543 {
544     struct dos_partition *dp;
545 #ifdef DISKLABEL64
546     struct disklabel64 *d;
547 #else
548     struct disklabel32 *d;
549 #endif
550     char *sec;
551     unsigned sl, i;
552
553     if (!dsk_meta) {
554         sec = dmadat->secbuf;
555         dsk.start = 0;
556         if (drvread(sec, DOSBBSECTOR, 1))
557             return -1;
558         dp = (void *)(sec + DOSPARTOFF);
559         sl = dsk.slice;
560         if (sl < BASE_SLICE) {
561             for (i = 0; i < NDOSPART; i++)
562                 if (dp[i].dp_typ == DOSPTYP_386BSD &&
563                     (dp[i].dp_flag & 0x80 || sl < BASE_SLICE)) {
564                     sl = BASE_SLICE + i;
565                     if (dp[i].dp_flag & 0x80 ||
566                         dsk.slice == COMPATIBILITY_SLICE)
567                         break;
568                 }
569             if (dsk.slice == WHOLE_DISK_SLICE)
570                 dsk.slice = sl;
571         }
572         if (sl != WHOLE_DISK_SLICE) {
573             if (sl != COMPATIBILITY_SLICE)
574                 dp += sl - BASE_SLICE;
575             if (dp->dp_typ != DOSPTYP_386BSD) {
576                 printf(INVALID_S, "slice");
577                 return -1;
578             }
579             dsk.start = dp->dp_start;
580         }
581 #ifdef DISKLABEL64
582         if (drvread(sec, dsk.start, (sizeof(struct disklabel64) + 511) / 512))
583                 return -1;
584         d = (void *)sec;
585         if (d->d_magic != DISKMAGIC64) {
586             printf(INVALID_S, "label");
587             return -1;
588         } else {
589             if (dsk.part >= d->d_npartitions || d->d_partitions[dsk.part].p_bsize == 0) {
590                 printf(INVALID_S, "partition");
591                 return -1;
592             }
593             dsk.start += d->d_partitions[dsk.part].p_boffset / 512;
594         }
595 #else
596         if (drvread(sec, dsk.start + LABELSECTOR32, 1))
597                 return -1;
598         d = (void *)(sec + LABELOFFSET32);
599         if (d->d_magic != DISKMAGIC32 || d->d_magic2 != DISKMAGIC32) {
600             if (dsk.part != RAW_PART) {
601                 printf(INVALID_S, "label");
602                 return -1;
603             }
604         } else {
605             if (!dsk.init) {
606                 if (d->d_type == DTYPE_SCSI)
607                     dsk.type = TYPE_DA;
608                 dsk.init++;
609             }
610             if (dsk.part >= d->d_npartitions ||
611                 !d->d_partitions[dsk.part].p_size) {
612                 printf(INVALID_S, "partition");
613                 return -1;
614             }
615             dsk.start += d->d_partitions[dsk.part].p_offset;
616             dsk.start -= d->d_partitions[RAW_PART].p_offset;
617         }
618 #endif
619     }
620     return drvread(buf, dsk.start + lba, nblk);
621 }
622
623 static void
624 printf(const char *fmt,...)
625 {
626     va_list ap;
627     char buf[10];
628     char *s;
629     unsigned u;
630     int c;
631
632     va_start(ap, fmt);
633     while ((c = *fmt++)) {
634         if (c == '%') {
635             c = *fmt++;
636             switch (c) {
637             case 'c':
638                 putchar(va_arg(ap, int));
639                 continue;
640             case 's':
641                 for (s = va_arg(ap, char *); *s; s++)
642                     putchar(*s);
643                 continue;
644             case 'u':
645                 u = va_arg(ap, unsigned);
646                 s = buf;
647                 do
648                     *s++ = '0' + u % 10U;
649                 while (u /= 10U);
650                 while (--s >= buf)
651                     putchar(*s);
652                 continue;
653             }
654         }
655         putchar(c);
656     }
657     va_end(ap);
658     return;
659 }
660
661 static void
662 putchar(int c)
663 {
664     if (c == '\n')
665         xputc('\r');
666     xputc(c);
667 }
668
669 static int
670 drvread(void *buf, unsigned lba, unsigned nblk)
671 {
672     static unsigned c = 0x2d5c7c2f;     /* twiddle */
673
674     c = (c << 8) | (c >> 24);
675     xputc(c);
676     xputc('\b');
677     v86.ctl = V86_ADDR | V86_CALLF | V86_FLAGS;
678     v86.addr = XREADORG;                /* call to xread in boot1 */
679     v86.es = VTOPSEG(buf);
680     v86.eax = lba;
681     v86.ebx = VTOPOFF(buf);
682     v86.ecx = lba >> 16;
683     v86.edx = nblk << 8 | dsk.drive;
684     v86int();
685     v86.ctl = V86_FLAGS;
686     if (V86_CY(v86.efl)) {
687         printf("error %u lba %u\n", v86.eax >> 8 & 0xff, lba);
688         return -1;
689     }
690     return 0;
691 }
692
693 static int
694 keyhit(unsigned ticks)
695 {
696     uint32_t t0, t1;
697
698     if (opts & 1 << RBX_NOINTR)
699         return 0;
700     t0 = 0;
701     for (;;) {
702         if (xgetc(1))
703             return 1;
704         t1 = *(uint32_t *)PTOV(0x46c);
705         if (!t0)
706             t0 = t1;
707         if (t1 < t0 || t1 >= t0 + ticks)
708             return 0;
709     }
710 }
711
712 static void
713 xputc(int c)
714 {
715     if (opts & RBF_VIDEO)
716         putc(c);
717     if (opts & RBF_SERIAL)
718         sio_putc(c);
719 }
720
721 static int
722 xgetc(int fn)
723 {
724     if (opts & 1 << RBX_NOINTR)
725         return 0;
726     for (;;) {
727         if ((opts & RBF_VIDEO) && getc(1))
728             return fn ? 1 : getc(0);
729         if ((opts & RBF_SERIAL) && sio_ischar())
730             return fn ? 1 : sio_getc();
731         if (fn)
732             return 0;
733     }
734 }
735
736 static int
737 getc(int fn)
738 {
739     v86.addr = 0x16;
740     v86.eax = fn << 8;
741     v86int();
742     return fn == 0 ? v86.eax & 0xff : !V86_ZR(v86.efl);
743 }