/* $NetBSD: exec.c,v 1.4 1997/09/17 18:02:11 drochner Exp $ */ /* * Copyright (c) 1982, 1986, 1990, 1993 * The Regents of the University of California. All rights reserved. * Copyright (c) 1996 * Matthias Drochner. All rights reserved. * Copyright (c) 1996 * Perry E. Metzger. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the University of * California, Berkeley and its contributors. * 4. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * @(#)boot.c 8.1 (Berkeley) 6/10/93 */ /* * starts NetBSD a.out kernel needs lowlevel startup from startprog.S */ #include #include #include #ifdef COMPAT_OLDBOOT #include #endif #include #include "libi386.h" #include "bootinfo.h" #ifdef COMPAT_OLDBOOT static int dev2major(devname, major) char *devname; int *major; { static char *devices[] = {"wd", "", "fd", "", "sd"}; #define NUMDEVICES (sizeof(devices)/sizeof(char *)) int i; for (i = 0; i < NUMDEVICES; i++) if (!strcmp(devname, devices[i])) { *major = i; return (0); } return (-1); } #endif extern struct btinfo_console btinfo_console; int exec_netbsd(file, loadaddr, boothowto) const char *file; physaddr_t loadaddr; int boothowto; { register int io; struct exec x; int cc, magic; physaddr_t entry; register physaddr_t cp; u_long boot_argv[6]; #ifdef COMPAT_OLDBOOT char *fsname, *devname; int unit, part; const char *filename; int bootdevnr; #endif #ifdef DEBUG printf("exec: file=%s loadaddr=0x%lx\n", file, loadaddr); #endif BI_ALLOC(5); /* ??? */ BI_ADD(&btinfo_console, BTINFO_CONSOLE, sizeof(struct btinfo_console)); io = open(file, 0); if (io < 0) goto out; /* * Read in the exec header, and validate it. */ if (read(io, (char *) &x, sizeof(x)) != sizeof(x)) goto shread; magic = N_GETMAGIC(x); if ((magic != ZMAGIC) || (N_GETMID(x) != MID_MACHINE)) { #ifdef DEBUG printf("invalid NetBSD kernel (%o/%d)\n", magic, N_GETMID(x)); #endif errno = EFTYPE; goto closeout; } entry = x.a_entry & 0xffffff; if (!loadaddr) loadaddr = (entry & 0x100000); cp = loadaddr; /* * Leave a copy of the exec header before the text. * The kernel may use this to verify that the * symbols were loaded by this boot program. */ vpbcopy(&x, cp, sizeof(x)); cp += sizeof(x); /* * Read in the text segment. */ printf("%ld", x.a_text); if (pread(io, cp, x.a_text - sizeof(x)) != x.a_text - sizeof(x)) goto shread; cp += x.a_text - sizeof(x); /* * Read in the data segment. */ printf("+%ld", x.a_data); if (pread(io, cp, x.a_data) != x.a_data) goto shread; cp += x.a_data; /* * Zero out the BSS section. * (Kernel doesn't care, but do it anyway.) */ printf("+%ld", x.a_bss); pbzero(cp, x.a_bss); cp += x.a_bss; /* * Read in the symbol table and strings. * (Always set the symtab size word.) */ vpbcopy(&x.a_syms, cp, sizeof(x.a_syms)); cp += sizeof(x.a_syms); if (x.a_syms > 0) { /* Symbol table and string table length word. */ printf("+[%ld", x.a_syms); if (pread(io, cp, x.a_syms) != x.a_syms) goto shread; cp += x.a_syms; read(io, &cc, sizeof(cc)); vpbcopy(&cc, cp, sizeof(cc)); cp += sizeof(cc); /* String table. Length word includes itself. */ printf("+%d]", cc); cc -= sizeof(int); if (cc <= 0) goto shread; if (pread(io, cp, cc) != cc) goto shread; cp += cc; } boot_argv[3] = (((u_int) cp + sizeof(int) - 1)) & (-sizeof(int)); printf("=0x%lx\n", cp - loadaddr); boot_argv[0] = boothowto; #ifdef COMPAT_OLDBOOT /* prepare boot device information for kernel */ if (parsebootfile(file, &fsname, &devname, &unit, &part, &filename) || strcmp(fsname, "ufs")) bootdevnr = 0; /* XXX error out if parse error??? */ else { int major; if (strcmp(devname, "hd") == 0) { /* generic BIOS disk, have to guess type */ struct open_file *f = &files[io]; /* XXX */ if (biosdisk_gettype(f) == DTYPE_SCSI) devname = "sd"; else devname = "wd"; /* * The old boot block performed the following * conversion: * * hdN -> Xd0 * * where X is the type specified by the label. * We mimmick that here, for lack of any better * way of doing things. */ unit = 0; } if (dev2major(devname, &major)) bootdevnr = 0; /* XXX error out??? */ else bootdevnr = MAKEBOOTDEV(major, 0, 0, unit, part); } boot_argv[1] = bootdevnr; boot_argv[2] = 0; /* cyl offset, unused */ #else /* XXX to be specified */ #ifdef PASS_BIOSGEOM bi_getbiosgeom(); #endif boot_argv[1] = 0; boot_argv[2] = vtophys(bootinfo); /* cyl offset */ #endif /* * boot_argv[3] = end (set above) */ boot_argv[4] = getextmem(); boot_argv[5] = getbasemem(); close(io); #ifdef DEBUG printf("Start @ 0x%lx ...\n", entry); #endif startprog(entry, 6, boot_argv, 0x90000); panic("exec returned"); shread: printf("exec: short read\n"); errno = EIO; closeout: close(io); out: BI_FREE(); bootinfo = 0; return (-1); }