Home | History | Annotate | Line # | Download | only in lib
exec.c revision 1.14.2.1
      1  1.14.2.1    bouyer /*	$NetBSD: exec.c,v 1.14.2.1 2000/11/20 20:09:40 bouyer Exp $	 */
      2       1.1     perry 
      3       1.1     perry /*
      4       1.1     perry  * Copyright (c) 1982, 1986, 1990, 1993
      5       1.1     perry  *	The Regents of the University of California.  All rights reserved.
      6       1.1     perry  * Copyright (c) 1996
      7       1.1     perry  *	Matthias Drochner.  All rights reserved.
      8       1.1     perry  * Copyright (c) 1996
      9       1.1     perry  * 	Perry E. Metzger.  All rights reserved.
     10       1.8  christos  * Copyright (c) 1997
     11       1.8  christos  * 	Martin Husemann.  All rights reserved.
     12       1.1     perry  *
     13       1.1     perry  * Redistribution and use in source and binary forms, with or without
     14       1.1     perry  * modification, are permitted provided that the following conditions
     15       1.1     perry  * are met:
     16       1.1     perry  * 1. Redistributions of source code must retain the above copyright
     17       1.1     perry  *    notice, this list of conditions and the following disclaimer.
     18       1.1     perry  * 2. Redistributions in binary form must reproduce the above copyright
     19       1.1     perry  *    notice, this list of conditions and the following disclaimer in the
     20       1.1     perry  *    documentation and/or other materials provided with the distribution.
     21       1.1     perry  * 3. All advertising materials mentioning features or use of this software
     22       1.1     perry  *    must display the following acknowledgement:
     23       1.1     perry  *	This product includes software developed by the University of
     24       1.1     perry  *	California, Berkeley and its contributors.
     25       1.1     perry  * 4. Neither the name of the University nor the names of its contributors
     26       1.1     perry  *    may be used to endorse or promote products derived from this software
     27       1.1     perry  *    without specific prior written permission.
     28       1.1     perry  *
     29       1.1     perry  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     30       1.1     perry  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     31       1.1     perry  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     32       1.1     perry  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     33       1.1     perry  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     34       1.1     perry  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     35       1.1     perry  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     36       1.1     perry  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     37       1.1     perry  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     38       1.1     perry  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     39       1.1     perry  * SUCH DAMAGE.
     40       1.1     perry  *
     41       1.1     perry  * 	@(#)boot.c	8.1 (Berkeley) 6/10/93
     42       1.1     perry  */
     43       1.1     perry 
     44       1.2   thorpej /*
     45       1.8  christos  * starts NetBSD a.out kernel
     46       1.8  christos  * needs lowlevel startup from startprog.S
     47       1.8  christos  * This is a special version of exec.c to support use of XMS.
     48       1.1     perry  */
     49       1.8  christos 
     50       1.1     perry #include <sys/param.h>
     51       1.1     perry #include <sys/reboot.h>
     52       1.1     perry #ifdef COMPAT_OLDBOOT
     53       1.1     perry #include <sys/disklabel.h>
     54       1.1     perry #endif
     55       1.1     perry 
     56       1.1     perry #include <lib/libsa/stand.h>
     57       1.4  drochner 
     58       1.6  christos #include "loadfile.h"
     59       1.1     perry #include "libi386.h"
     60       1.4  drochner #include "bootinfo.h"
     61       1.1     perry 
     62       1.1     perry #ifdef COMPAT_OLDBOOT
     63      1.11  drochner static int dev2major __P((char *, int *));
     64      1.11  drochner 
     65       1.1     perry static int
     66       1.1     perry dev2major(devname, major)
     67       1.2   thorpej 	char           *devname;
     68       1.2   thorpej 	int            *major;
     69       1.1     perry {
     70       1.2   thorpej 	static char    *devices[] = {"wd", "", "fd", "", "sd"};
     71       1.1     perry #define NUMDEVICES (sizeof(devices)/sizeof(char *))
     72       1.2   thorpej 	int             i;
     73       1.1     perry 
     74       1.2   thorpej 	for (i = 0; i < NUMDEVICES; i++)
     75       1.2   thorpej 		if (!strcmp(devname, devices[i])) {
     76       1.2   thorpej 			*major = i;
     77       1.2   thorpej 			return (0);
     78       1.2   thorpej 		}
     79       1.2   thorpej 	return (-1);
     80       1.1     perry }
     81       1.1     perry #endif
     82       1.6  christos #define BOOT_NARGS	6
     83       1.1     perry 
     84       1.4  drochner extern struct btinfo_console btinfo_console;
     85       1.4  drochner 
     86       1.2   thorpej int
     87       1.4  drochner exec_netbsd(file, loadaddr, boothowto)
     88       1.2   thorpej 	const char     *file;
     89       1.2   thorpej 	physaddr_t      loadaddr;
     90       1.2   thorpej 	int             boothowto;
     91       1.1     perry {
     92       1.6  christos 	u_long          boot_argv[BOOT_NARGS];
     93       1.6  christos 	int		fd;
     94       1.8  christos 	u_long		marks[MARK_MAX];
     95       1.8  christos 	struct btinfo_symtab btinfo_symtab;
     96       1.8  christos 	u_long		extmem;
     97  1.14.2.1    bouyer 	u_long		basemem;
     98       1.8  christos #ifdef XMS
     99       1.8  christos 	u_long		xmsmem;
    100       1.8  christos 	physaddr_t	origaddr = loadaddr;
    101       1.8  christos #endif
    102       1.8  christos 
    103       1.1     perry #ifdef COMPAT_OLDBOOT
    104       1.2   thorpej 	char           *fsname, *devname;
    105       1.2   thorpej 	int             unit, part;
    106       1.2   thorpej 	const char     *filename;
    107       1.2   thorpej 	int             bootdevnr;
    108       1.1     perry #endif
    109       1.1     perry 
    110       1.1     perry #ifdef	DEBUG
    111      1.13  drochner 	printf("exec: file=%s loadaddr=0x%lx\n",
    112      1.13  drochner 	       file ? file : "NULL", loadaddr);
    113       1.1     perry #endif
    114       1.4  drochner 
    115       1.6  christos 	BI_ALLOC(6); /* ??? */
    116       1.4  drochner 
    117       1.4  drochner 	BI_ADD(&btinfo_console, BTINFO_CONSOLE, sizeof(struct btinfo_console));
    118       1.4  drochner 
    119       1.8  christos 	extmem = getextmem();
    120  1.14.2.1    bouyer 	basemem = getbasemem();
    121       1.8  christos 
    122       1.8  christos #ifdef XMS
    123       1.8  christos 	if ((getextmem1() == 0) && (xmsmem = checkxms())) {
    124       1.8  christos 	        u_long kernsize;
    125       1.8  christos 
    126       1.8  christos 		/*
    127       1.8  christos 		 * With "CONSERVATIVE_MEMDETECT", extmem is 0 because
    128       1.8  christos 		 *  getextmem() is getextmem1(). Without, the "smart"
    129       1.8  christos 		 *  methods could fail to report all memory as well.
    130       1.8  christos 		 * xmsmem is a few kB less than the actual size, but
    131       1.8  christos 		 *  better than nothing.
    132       1.8  christos 		 */
    133       1.8  christos 		if (xmsmem > extmem)
    134       1.8  christos 			extmem = xmsmem;
    135       1.8  christos 		/*
    136       1.8  christos 		 * Get the size of the kernel
    137       1.8  christos 		 */
    138       1.8  christos 		marks[MARK_START] = loadaddr;
    139      1.12  christos 		if ((fd = loadfile(file, marks, COUNT_KERNEL)) == -1)
    140       1.8  christos 			goto out;
    141       1.8  christos 		close(fd);
    142       1.8  christos 
    143       1.8  christos 		kernsize = marks[MARK_END];
    144       1.8  christos 		kernsize = (kernsize + 1023) / 1024;
    145       1.8  christos 
    146       1.8  christos 		loadaddr = xmsalloc(kernsize);
    147       1.8  christos 		if (!loadaddr)
    148       1.8  christos 			return(ENOMEM);
    149       1.8  christos 	}
    150       1.8  christos #endif
    151       1.7  christos 	marks[MARK_START] = loadaddr;
    152      1.12  christos 	if ((fd = loadfile(file, marks, LOAD_KERNEL)) == -1)
    153       1.4  drochner 		goto out;
    154       1.1     perry 
    155       1.1     perry 	boot_argv[0] = boothowto;
    156       1.1     perry 
    157       1.1     perry #ifdef COMPAT_OLDBOOT
    158       1.1     perry 	/* prepare boot device information for kernel */
    159       1.2   thorpej 	if (parsebootfile(file, &fsname, &devname, &unit, &part, &filename)
    160       1.2   thorpej 	    || strcmp(fsname, "ufs"))
    161       1.2   thorpej 		bootdevnr = 0;	/* XXX error out if parse error??? */
    162       1.1     perry 	else {
    163       1.2   thorpej 		int             major;
    164       1.1     perry 
    165       1.3   thorpej 		if (strcmp(devname, "hd") == 0) {
    166       1.2   thorpej 			/* generic BIOS disk, have to guess type */
    167       1.6  christos 			struct open_file *f = &files[fd];	/* XXX */
    168       1.2   thorpej 
    169       1.2   thorpej 			if (biosdisk_gettype(f) == DTYPE_SCSI)
    170       1.2   thorpej 				devname = "sd";
    171       1.2   thorpej 			else
    172       1.2   thorpej 				devname = "wd";
    173       1.3   thorpej 
    174       1.3   thorpej 			/*
    175       1.3   thorpej 			 * The old boot block performed the following
    176       1.3   thorpej 			 * conversion:
    177       1.3   thorpej 			 *
    178       1.3   thorpej 			 *	hdN -> Xd0
    179       1.3   thorpej 			 *
    180       1.3   thorpej 			 * where X is the type specified by the label.
    181       1.3   thorpej 			 * We mimmick that here, for lack of any better
    182       1.3   thorpej 			 * way of doing things.
    183       1.3   thorpej 			 */
    184       1.3   thorpej 			unit = 0;
    185       1.2   thorpej 		}
    186       1.3   thorpej 
    187       1.2   thorpej 		if (dev2major(devname, &major))
    188       1.2   thorpej 			bootdevnr = 0;	/* XXX error out??? */
    189       1.1     perry 		else
    190       1.2   thorpej 			bootdevnr = MAKEBOOTDEV(major, 0, 0, unit, part);
    191       1.1     perry 	}
    192       1.1     perry 
    193       1.1     perry 	boot_argv[1] = bootdevnr;
    194       1.5  drochner #else
    195       1.5  drochner 	boot_argv[1] = 0;
    196       1.5  drochner #endif
    197       1.8  christos 	boot_argv[2] = vtophys(bootinfo);	/* old cyl offset */
    198       1.8  christos 	/* argv[3] below */
    199       1.8  christos 	boot_argv[4] = extmem;
    200  1.14.2.1    bouyer 	boot_argv[5] = basemem;
    201       1.8  christos 
    202       1.8  christos 	close(fd);
    203      1.10  drochner 
    204      1.10  drochner 	/*
    205      1.10  drochner 	 * Gather some information for the kernel. Do this after the
    206      1.10  drochner 	 * "point of no return" to avoid memory leaks.
    207      1.10  drochner 	 * (but before DOS might be trashed in the XMS case)
    208      1.10  drochner 	 */
    209      1.10  drochner #ifdef PASS_BIOSGEOM
    210      1.10  drochner 	bi_getbiosgeom();
    211      1.10  drochner #endif
    212      1.10  drochner #ifdef PASS_MEMMAP
    213      1.10  drochner 	bi_getmemmap();
    214      1.10  drochner #endif
    215       1.8  christos 
    216       1.8  christos #ifdef XMS
    217       1.8  christos 	if (loadaddr != origaddr) {
    218       1.8  christos 		/*
    219      1.14      ross 		 * We now have done our last DOS IO, so we may
    220       1.8  christos 		 * trash the OS. Copy the data from the temporary
    221       1.8  christos 		 * buffer to its real adress.
    222       1.8  christos 		 */
    223       1.8  christos 		marks[MARK_START] -= loadaddr;
    224       1.8  christos 		marks[MARK_END] -= loadaddr;
    225       1.8  christos 		marks[MARK_SYM] -= loadaddr;
    226       1.8  christos 		marks[MARK_END] -= loadaddr;
    227       1.8  christos 		ppbcopy(loadaddr, origaddr, marks[MARK_END]);
    228       1.8  christos 	}
    229       1.8  christos #endif
    230       1.8  christos 	marks[MARK_END] = (((u_long) marks[MARK_END] + sizeof(int) - 1)) &
    231       1.8  christos 	    (-sizeof(int));
    232       1.8  christos 
    233       1.7  christos 	boot_argv[3] = marks[MARK_END];
    234       1.1     perry 
    235       1.1     perry 
    236       1.1     perry #ifdef DEBUG
    237       1.8  christos 	printf("Start @ 0x%lx [%ld=0x%lx-0x%lx]...\n", marks[MARK_ENTRY],
    238       1.7  christos 	    marks[MARK_NSYM], marks[MARK_SYM], marks[MARK_END]);
    239       1.1     perry #endif
    240       1.1     perry 
    241       1.8  christos 	btinfo_symtab.nsym = marks[MARK_NSYM];
    242       1.8  christos 	btinfo_symtab.ssym = marks[MARK_SYM];
    243       1.8  christos 	btinfo_symtab.esym = marks[MARK_END];
    244       1.8  christos 	BI_ADD(&btinfo_symtab, BTINFO_SYMTAB, sizeof(struct btinfo_symtab));
    245       1.8  christos 
    246  1.14.2.1    bouyer 	startprog(marks[MARK_ENTRY], BOOT_NARGS, boot_argv,
    247  1.14.2.1    bouyer 		i386_trunc_page(basemem*1024));
    248       1.1     perry 	panic("exec returned");
    249       1.1     perry 
    250       1.4  drochner out:
    251       1.4  drochner 	BI_FREE();
    252       1.4  drochner 	bootinfo = 0;
    253       1.2   thorpej 	return (-1);
    254       1.1     perry }
    255