Home | History | Annotate | Line # | Download | only in lib
exec.c revision 1.33.2.2
      1  1.33.2.2     skrll /*	$NetBSD: exec.c,v 1.33.2.2 2009/03/03 18:29:00 skrll Exp $	 */
      2      1.23        ad 
      3      1.23        ad /*-
      4      1.23        ad  * Copyright (c) 2008 The NetBSD Foundation, Inc.
      5      1.23        ad  * All rights reserved.
      6      1.23        ad  *
      7      1.23        ad  * Redistribution and use in source and binary forms, with or without
      8      1.23        ad  * modification, are permitted provided that the following conditions
      9      1.23        ad  * are met:
     10      1.23        ad  * 1. Redistributions of source code must retain the above copyright
     11      1.23        ad  *    notice, this list of conditions and the following disclaimer.
     12      1.23        ad  * 2. Redistributions in binary form must reproduce the above copyright
     13      1.23        ad  *    notice, this list of conditions and the following disclaimer in the
     14      1.23        ad  *    documentation and/or other materials provided with the distribution.
     15      1.23        ad  *
     16      1.23        ad  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     17      1.23        ad  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     18      1.23        ad  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     19      1.23        ad  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     20      1.23        ad  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     21      1.23        ad  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     22      1.23        ad  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     23      1.23        ad  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     24      1.23        ad  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     25      1.23        ad  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     26      1.23        ad  * POSSIBILITY OF SUCH DAMAGE.
     27      1.23        ad  */
     28       1.1     perry 
     29       1.1     perry /*
     30       1.1     perry  * Copyright (c) 1982, 1986, 1990, 1993
     31       1.1     perry  *	The Regents of the University of California.  All rights reserved.
     32      1.19       agc  *
     33      1.19       agc  * Redistribution and use in source and binary forms, with or without
     34      1.19       agc  * modification, are permitted provided that the following conditions
     35      1.19       agc  * are met:
     36      1.19       agc  * 1. Redistributions of source code must retain the above copyright
     37      1.19       agc  *    notice, this list of conditions and the following disclaimer.
     38      1.19       agc  * 2. Redistributions in binary form must reproduce the above copyright
     39      1.19       agc  *    notice, this list of conditions and the following disclaimer in the
     40      1.19       agc  *    documentation and/or other materials provided with the distribution.
     41      1.19       agc  * 3. Neither the name of the University nor the names of its contributors
     42      1.19       agc  *    may be used to endorse or promote products derived from this software
     43      1.19       agc  *    without specific prior written permission.
     44      1.19       agc  *
     45      1.19       agc  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     46      1.19       agc  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     47      1.19       agc  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     48      1.19       agc  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     49      1.19       agc  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     50      1.19       agc  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     51      1.19       agc  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     52      1.19       agc  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     53      1.19       agc  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     54      1.19       agc  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     55      1.19       agc  * SUCH DAMAGE.
     56      1.19       agc  *
     57      1.19       agc  * 	@(#)boot.c	8.1 (Berkeley) 6/10/93
     58      1.19       agc  */
     59      1.19       agc 
     60      1.19       agc /*
     61       1.1     perry  * Copyright (c) 1996
     62       1.1     perry  *	Matthias Drochner.  All rights reserved.
     63       1.1     perry  * Copyright (c) 1996
     64       1.1     perry  * 	Perry E. Metzger.  All rights reserved.
     65       1.1     perry  *
     66       1.1     perry  * Redistribution and use in source and binary forms, with or without
     67       1.1     perry  * modification, are permitted provided that the following conditions
     68       1.1     perry  * are met:
     69       1.1     perry  * 1. Redistributions of source code must retain the above copyright
     70       1.1     perry  *    notice, this list of conditions and the following disclaimer.
     71       1.1     perry  * 2. Redistributions in binary form must reproduce the above copyright
     72       1.1     perry  *    notice, this list of conditions and the following disclaimer in the
     73       1.1     perry  *    documentation and/or other materials provided with the distribution.
     74       1.1     perry  * 3. All advertising materials mentioning features or use of this software
     75       1.1     perry  *    must display the following acknowledgement:
     76       1.1     perry  *	This product includes software developed by the University of
     77       1.1     perry  *	California, Berkeley and its contributors.
     78       1.1     perry  * 4. Neither the name of the University nor the names of its contributors
     79       1.1     perry  *    may be used to endorse or promote products derived from this software
     80       1.1     perry  *    without specific prior written permission.
     81       1.1     perry  *
     82       1.1     perry  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     83       1.1     perry  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     84       1.1     perry  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     85       1.1     perry  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     86       1.1     perry  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     87       1.1     perry  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     88       1.1     perry  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     89       1.1     perry  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     90       1.1     perry  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     91       1.1     perry  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     92       1.1     perry  * SUCH DAMAGE.
     93       1.1     perry  *
     94       1.1     perry  * 	@(#)boot.c	8.1 (Berkeley) 6/10/93
     95       1.1     perry  */
     96       1.1     perry 
     97       1.2   thorpej /*
     98       1.8  christos  * starts NetBSD a.out kernel
     99       1.8  christos  * needs lowlevel startup from startprog.S
    100       1.8  christos  * This is a special version of exec.c to support use of XMS.
    101       1.1     perry  */
    102       1.8  christos 
    103       1.1     perry #include <sys/param.h>
    104       1.1     perry #include <sys/reboot.h>
    105       1.1     perry 
    106      1.33     joerg #include <machine/multiboot.h>
    107      1.33     joerg 
    108       1.1     perry #include <lib/libsa/stand.h>
    109      1.23        ad #include <lib/libkern/libkern.h>
    110       1.4  drochner 
    111       1.6  christos #include "loadfile.h"
    112       1.1     perry #include "libi386.h"
    113       1.4  drochner #include "bootinfo.h"
    114      1.23        ad #include "bootmod.h"
    115      1.16  jdolecek #ifdef SUPPORT_PS2
    116      1.16  jdolecek #include "biosmca.h"
    117      1.16  jdolecek #endif
    118       1.1     perry 
    119       1.6  christos #define BOOT_NARGS	6
    120       1.1     perry 
    121      1.23        ad #ifndef	PAGE_SIZE
    122      1.23        ad #define	PAGE_SIZE	4096
    123      1.23        ad #endif
    124      1.23        ad 
    125       1.4  drochner extern struct btinfo_console btinfo_console;
    126       1.4  drochner 
    127      1.23        ad boot_module_t *boot_modules;
    128      1.23        ad bool boot_modules_enabled = true;
    129      1.23        ad bool kernel_loaded;
    130      1.23        ad 
    131  1.33.2.2     skrll static struct btinfo_framebuffer btinfo_framebuffer;
    132  1.33.2.2     skrll 
    133      1.23        ad static struct btinfo_modulelist *btinfo_modulelist;
    134      1.23        ad static size_t btinfo_modulelist_size;
    135      1.23        ad static uint32_t image_end;
    136      1.26        ad static char module_base[64] = "/";
    137      1.23        ad 
    138      1.23        ad static void	module_init(void);
    139      1.23        ad 
    140  1.33.2.1     skrll void
    141  1.33.2.2     skrll framebuffer_configure(struct btinfo_framebuffer *fb)
    142  1.33.2.2     skrll {
    143  1.33.2.2     skrll 	if (fb)
    144  1.33.2.2     skrll 		btinfo_framebuffer = *fb;
    145  1.33.2.2     skrll 	else {
    146  1.33.2.2     skrll 		btinfo_framebuffer.physaddr = 0;
    147  1.33.2.2     skrll 		btinfo_framebuffer.flags = 0;
    148  1.33.2.2     skrll 	}
    149  1.33.2.2     skrll }
    150  1.33.2.2     skrll 
    151  1.33.2.2     skrll void
    152  1.33.2.1     skrll module_add(char *name)
    153  1.33.2.1     skrll {
    154  1.33.2.1     skrll 	boot_module_t *bm, *bmp;
    155  1.33.2.1     skrll 	size_t len;
    156  1.33.2.1     skrll 	char *str;
    157  1.33.2.1     skrll 
    158  1.33.2.1     skrll 	while (*name == ' ' || *name == '\t')
    159  1.33.2.1     skrll 		++name;
    160  1.33.2.1     skrll 
    161  1.33.2.1     skrll 	bm = alloc(sizeof(boot_module_t));
    162  1.33.2.1     skrll 	len = strlen(name) + 1;
    163  1.33.2.1     skrll 	str = alloc(len);
    164  1.33.2.1     skrll 	if (bm == NULL || str == NULL) {
    165  1.33.2.1     skrll 		printf("couldn't allocate module\n");
    166  1.33.2.1     skrll 		return;
    167  1.33.2.1     skrll 	}
    168  1.33.2.1     skrll 	memcpy(str, name, len);
    169  1.33.2.1     skrll 	bm->bm_path = str;
    170  1.33.2.1     skrll 	bm->bm_next = NULL;
    171  1.33.2.1     skrll 	if (boot_modules == NULL)
    172  1.33.2.1     skrll 		boot_modules = bm;
    173  1.33.2.1     skrll 	else {
    174  1.33.2.1     skrll 		for (bmp = boot_modules; bmp->bm_next;
    175  1.33.2.1     skrll 		    bmp = bmp->bm_next)
    176  1.33.2.1     skrll 			;
    177  1.33.2.1     skrll 		bmp->bm_next = bm;
    178  1.33.2.1     skrll 	}
    179  1.33.2.1     skrll }
    180  1.33.2.1     skrll 
    181      1.32     joerg static int
    182      1.32     joerg common_load_kernel(const char *file, u_long *basemem, u_long *extmem,
    183      1.32     joerg     physaddr_t loadaddr, int floppy, u_long marks[MARK_MAX])
    184       1.1     perry {
    185      1.32     joerg 	int fd;
    186       1.8  christos #ifdef XMS
    187       1.8  christos 	u_long		xmsmem;
    188       1.8  christos 	physaddr_t	origaddr = loadaddr;
    189       1.8  christos #endif
    190       1.8  christos 
    191      1.32     joerg 	*extmem = getextmem();
    192      1.32     joerg 	*basemem = getbasemem();
    193       1.8  christos 
    194       1.8  christos #ifdef XMS
    195       1.8  christos 	if ((getextmem1() == 0) && (xmsmem = checkxms())) {
    196       1.8  christos 	        u_long kernsize;
    197       1.8  christos 
    198       1.8  christos 		/*
    199       1.8  christos 		 * With "CONSERVATIVE_MEMDETECT", extmem is 0 because
    200       1.8  christos 		 *  getextmem() is getextmem1(). Without, the "smart"
    201       1.8  christos 		 *  methods could fail to report all memory as well.
    202       1.8  christos 		 * xmsmem is a few kB less than the actual size, but
    203       1.8  christos 		 *  better than nothing.
    204       1.8  christos 		 */
    205      1.32     joerg 		if (xmsmem > *extmem)
    206      1.32     joerg 			*extmem = xmsmem;
    207      1.21  junyoung 		/*
    208       1.8  christos 		 * Get the size of the kernel
    209       1.8  christos 		 */
    210       1.8  christos 		marks[MARK_START] = loadaddr;
    211      1.12  christos 		if ((fd = loadfile(file, marks, COUNT_KERNEL)) == -1)
    212      1.32     joerg 			return EIO;
    213       1.8  christos 		close(fd);
    214       1.8  christos 
    215       1.8  christos 		kernsize = marks[MARK_END];
    216       1.8  christos 		kernsize = (kernsize + 1023) / 1024;
    217       1.8  christos 
    218       1.8  christos 		loadaddr = xmsalloc(kernsize);
    219       1.8  christos 		if (!loadaddr)
    220      1.21  junyoung 			return ENOMEM;
    221       1.8  christos 	}
    222       1.8  christos #endif
    223       1.7  christos 	marks[MARK_START] = loadaddr;
    224      1.29  christos 	if ((fd = loadfile(file, marks,
    225      1.29  christos 	    LOAD_KERNEL & ~(floppy ? LOAD_NOTE : 0))) == -1)
    226      1.32     joerg 		return EIO;
    227       1.1     perry 
    228       1.8  christos 	close(fd);
    229      1.10  drochner 
    230  1.33.2.1     skrll 	/* Now we know the root fs type, load modules for it. */
    231  1.33.2.1     skrll 	module_add(fsmod);
    232  1.33.2.1     skrll 	if (fsmod2 != NULL && strcmp(fsmod, fsmod2) != 0)
    233  1.33.2.1     skrll 		module_add(fsmod2);
    234  1.33.2.1     skrll 
    235      1.10  drochner 	/*
    236      1.10  drochner 	 * Gather some information for the kernel. Do this after the
    237      1.10  drochner 	 * "point of no return" to avoid memory leaks.
    238      1.10  drochner 	 * (but before DOS might be trashed in the XMS case)
    239      1.10  drochner 	 */
    240      1.10  drochner #ifdef PASS_BIOSGEOM
    241      1.10  drochner 	bi_getbiosgeom();
    242      1.10  drochner #endif
    243      1.10  drochner #ifdef PASS_MEMMAP
    244      1.10  drochner 	bi_getmemmap();
    245      1.10  drochner #endif
    246       1.8  christos 
    247       1.8  christos #ifdef XMS
    248       1.8  christos 	if (loadaddr != origaddr) {
    249       1.8  christos 		/*
    250      1.14      ross 		 * We now have done our last DOS IO, so we may
    251       1.8  christos 		 * trash the OS. Copy the data from the temporary
    252      1.20       wiz 		 * buffer to its real address.
    253       1.8  christos 		 */
    254       1.8  christos 		marks[MARK_START] -= loadaddr;
    255       1.8  christos 		marks[MARK_END] -= loadaddr;
    256       1.8  christos 		marks[MARK_SYM] -= loadaddr;
    257       1.8  christos 		marks[MARK_END] -= loadaddr;
    258       1.8  christos 		ppbcopy(loadaddr, origaddr, marks[MARK_END]);
    259       1.8  christos 	}
    260       1.8  christos #endif
    261       1.8  christos 	marks[MARK_END] = (((u_long) marks[MARK_END] + sizeof(int) - 1)) &
    262       1.8  christos 	    (-sizeof(int));
    263      1.23        ad 	image_end = marks[MARK_END];
    264      1.23        ad 	kernel_loaded = true;
    265       1.1     perry 
    266      1.32     joerg 	return 0;
    267      1.32     joerg }
    268      1.32     joerg 
    269      1.32     joerg int
    270      1.32     joerg exec_netbsd(const char *file, physaddr_t loadaddr, int boothowto, int floppy)
    271      1.32     joerg {
    272      1.32     joerg 	u_long          boot_argv[BOOT_NARGS];
    273      1.32     joerg 	u_long		marks[MARK_MAX];
    274      1.32     joerg 	struct btinfo_symtab btinfo_symtab;
    275      1.32     joerg 	u_long		extmem;
    276      1.32     joerg 	u_long		basemem;
    277      1.32     joerg 
    278      1.32     joerg #ifdef	DEBUG
    279      1.32     joerg 	printf("exec: file=%s loadaddr=0x%lx\n",
    280      1.32     joerg 	       file ? file : "NULL", loadaddr);
    281      1.32     joerg #endif
    282      1.32     joerg 
    283      1.32     joerg 	BI_ALLOC(32); /* ??? */
    284      1.32     joerg 
    285      1.32     joerg 	BI_ADD(&btinfo_console, BTINFO_CONSOLE, sizeof(struct btinfo_console));
    286  1.33.2.2     skrll 	BI_ADD(&btinfo_framebuffer, BTINFO_FRAMEBUFFER,
    287  1.33.2.2     skrll 	    sizeof(struct btinfo_framebuffer));
    288      1.32     joerg 
    289      1.32     joerg 	if (common_load_kernel(file, &basemem, &extmem, loadaddr, floppy, marks))
    290      1.32     joerg 		goto out;
    291      1.32     joerg 
    292      1.31     joerg 	boot_argv[0] = boothowto;
    293      1.31     joerg 	boot_argv[1] = 0;
    294      1.31     joerg 	boot_argv[2] = vtophys(bootinfo);	/* old cyl offset */
    295      1.31     joerg 	boot_argv[3] = marks[MARK_END];
    296      1.31     joerg 	boot_argv[4] = extmem;
    297      1.31     joerg 	boot_argv[5] = basemem;
    298      1.31     joerg 
    299      1.23        ad 	/* pull in any modules if necessary */
    300      1.23        ad 	if (boot_modules_enabled) {
    301      1.23        ad 		module_init();
    302      1.23        ad 		if (btinfo_modulelist) {
    303      1.23        ad 			BI_ADD(btinfo_modulelist, BTINFO_MODULELIST,
    304      1.23        ad 			    btinfo_modulelist_size);
    305      1.23        ad 		}
    306      1.23        ad 	}
    307       1.1     perry 
    308       1.1     perry #ifdef DEBUG
    309       1.8  christos 	printf("Start @ 0x%lx [%ld=0x%lx-0x%lx]...\n", marks[MARK_ENTRY],
    310       1.7  christos 	    marks[MARK_NSYM], marks[MARK_SYM], marks[MARK_END]);
    311       1.1     perry #endif
    312       1.1     perry 
    313       1.8  christos 	btinfo_symtab.nsym = marks[MARK_NSYM];
    314       1.8  christos 	btinfo_symtab.ssym = marks[MARK_SYM];
    315       1.8  christos 	btinfo_symtab.esym = marks[MARK_END];
    316       1.8  christos 	BI_ADD(&btinfo_symtab, BTINFO_SYMTAB, sizeof(struct btinfo_symtab));
    317       1.8  christos 
    318      1.15       dbj 	startprog(marks[MARK_ENTRY], BOOT_NARGS, boot_argv,
    319      1.21  junyoung 		  x86_trunc_page(basemem*1024));
    320       1.1     perry 	panic("exec returned");
    321       1.1     perry 
    322       1.4  drochner out:
    323       1.4  drochner 	BI_FREE();
    324       1.4  drochner 	bootinfo = 0;
    325      1.21  junyoung 	return -1;
    326       1.1     perry }
    327      1.23        ad 
    328      1.26        ad static const char *
    329      1.26        ad module_path(boot_module_t *bm)
    330      1.26        ad {
    331      1.26        ad 	static char buf[256];
    332      1.33     joerg 	char name_buf[256];
    333      1.33     joerg 	const char *name, *name2;
    334      1.26        ad 
    335      1.26        ad 	name = bm->bm_path;
    336      1.33     joerg 	for (name2 = name; *name2; ++name2) {
    337      1.33     joerg 		if (*name2 == ' ' || *name2 == '\t') {
    338      1.33     joerg 			strlcpy(name_buf, name, sizeof(name_buf));
    339      1.33     joerg 			if (name2 - name < sizeof(name_buf))
    340      1.33     joerg 				name_buf[name2 - name] = '\0';
    341      1.33     joerg 			name = name_buf;
    342      1.33     joerg 			break;
    343      1.33     joerg 		}
    344      1.33     joerg 	}
    345      1.33     joerg  	if (name[0] == '/')
    346      1.33     joerg 		snprintf(buf, sizeof(buf), "%s", name);
    347      1.33     joerg 	else
    348      1.33     joerg 		snprintf(buf, sizeof(buf), "%s/%s/%s.kmod",
    349      1.33     joerg 		    module_base, name, name);
    350      1.33     joerg 
    351      1.26        ad 	return buf;
    352      1.26        ad }
    353      1.26        ad 
    354  1.33.2.1     skrll static int
    355      1.28     chris module_open(boot_module_t *bm, int mode)
    356      1.28     chris {
    357      1.28     chris 	int fd;
    358      1.28     chris 	const char *path;
    359  1.33.2.1     skrll 
    360      1.28     chris 	/* check the expanded path first */
    361      1.28     chris 	path = module_path(bm);
    362      1.28     chris 	fd = open(path, mode);
    363      1.28     chris 	if (fd == -1) {
    364      1.28     chris 		printf("WARNING: couldn't open %s\n", path);
    365      1.28     chris 		/* now attempt the raw path provided */
    366      1.28     chris 		fd = open(bm->bm_path, mode);
    367      1.28     chris 		if (fd == -1)
    368      1.28     chris 			printf("WARNING: couldn't open %s\n", bm->bm_path);
    369      1.28     chris 	}
    370      1.28     chris 	return fd;
    371      1.28     chris }
    372      1.28     chris 
    373      1.23        ad static void
    374      1.23        ad module_init(void)
    375      1.23        ad {
    376      1.23        ad 	struct bi_modulelist_entry *bi;
    377      1.23        ad 	struct stat st;
    378      1.30     joerg 	const char *machine;
    379      1.23        ad 	char *buf;
    380      1.23        ad 	boot_module_t *bm;
    381      1.23        ad 	size_t len;
    382      1.23        ad 	off_t off;
    383      1.23        ad 	int err, fd;
    384      1.23        ad 
    385      1.30     joerg 	switch (netbsd_elf_class) {
    386      1.30     joerg 	case ELFCLASS32:
    387      1.30     joerg 		machine = "i386";
    388      1.30     joerg 		break;
    389      1.30     joerg 	case ELFCLASS64:
    390      1.30     joerg 		machine = "amd64";
    391      1.30     joerg 		break;
    392      1.30     joerg 	default:
    393      1.30     joerg 		machine = "generic";
    394      1.30     joerg 		break;
    395      1.30     joerg 	}
    396      1.30     joerg 	if (netbsd_version / 1000000 % 100 == 99) {
    397      1.30     joerg 		/* -current */
    398      1.30     joerg 		snprintf(module_base, sizeof(module_base),
    399      1.30     joerg 		    "/stand/%s/%d.%d.%d/modules", machine,
    400      1.30     joerg 		    netbsd_version / 100000000,
    401      1.30     joerg 		    netbsd_version / 1000000 % 100,
    402      1.30     joerg 		    netbsd_version / 100 % 100);
    403      1.30     joerg 	} else if (netbsd_version != 0) {
    404      1.30     joerg 		/* release */
    405      1.30     joerg 		snprintf(module_base, sizeof(module_base),
    406      1.30     joerg 		    "/stand/%s/%d.%d/modules", machine,
    407      1.30     joerg 		    netbsd_version / 100000000,
    408      1.30     joerg 		    netbsd_version / 1000000 % 100);
    409      1.30     joerg 	}
    410      1.30     joerg 
    411      1.23        ad 	/* First, see which modules are valid and calculate btinfo size */
    412      1.23        ad 	len = sizeof(struct btinfo_modulelist);
    413      1.23        ad 	for (bm = boot_modules; bm; bm = bm->bm_next) {
    414      1.28     chris 		fd = module_open(bm, 0);
    415      1.23        ad 		if (fd == -1) {
    416      1.23        ad 			bm->bm_len = -1;
    417      1.23        ad 			continue;
    418      1.23        ad 		}
    419      1.23        ad 		err = fstat(fd, &st);
    420      1.24        ad 		if (err == -1 || st.st_size == -1) {
    421      1.28     chris 			printf("WARNING: couldn't stat %s\n", bm->bm_path);
    422      1.23        ad 			close(fd);
    423      1.23        ad 			bm->bm_len = -1;
    424      1.23        ad 			continue;
    425      1.23        ad 		}
    426      1.23        ad 		bm->bm_len = st.st_size;
    427      1.23        ad 		close(fd);
    428      1.23        ad 		len += sizeof(struct bi_modulelist_entry);
    429      1.23        ad 	}
    430      1.23        ad 
    431      1.23        ad 	/* Allocate the module list */
    432      1.23        ad 	btinfo_modulelist = alloc(len);
    433      1.23        ad 	if (btinfo_modulelist == NULL) {
    434      1.23        ad 		printf("WARNING: couldn't allocate module list\n");
    435      1.23        ad 		return;
    436      1.23        ad 	}
    437      1.23        ad 	memset(btinfo_modulelist, 0, len);
    438      1.23        ad 	btinfo_modulelist_size = len;
    439      1.23        ad 
    440      1.23        ad 	/* Fill in btinfo structure */
    441      1.23        ad 	buf = (char *)btinfo_modulelist;
    442      1.23        ad 	btinfo_modulelist->num = 0;
    443      1.23        ad 	off = sizeof(struct btinfo_modulelist);
    444      1.23        ad 
    445      1.23        ad 	for (bm = boot_modules; bm; bm = bm->bm_next) {
    446      1.23        ad 		if (bm->bm_len == -1)
    447      1.23        ad 			continue;
    448      1.28     chris 		printf("Loading %s ", bm->bm_path);
    449      1.28     chris 		fd = module_open(bm, 0);
    450      1.23        ad 		if (fd == -1) {
    451      1.28     chris 			printf("ERROR: couldn't open %s\n", bm->bm_path);
    452      1.23        ad 			continue;
    453      1.23        ad 		}
    454      1.24        ad 		image_end = (image_end + PAGE_SIZE - 1) & ~(PAGE_SIZE - 1);
    455      1.24        ad 		len = pread(fd, (void *)image_end, SSIZE_MAX);
    456      1.24        ad 		if (len < bm->bm_len) {
    457      1.23        ad 			printf(" FAILED\n");
    458      1.23        ad 		} else {
    459      1.23        ad 			btinfo_modulelist->num++;
    460      1.23        ad 			bi = (struct bi_modulelist_entry *)(buf + off);
    461      1.23        ad 			off += sizeof(struct bi_modulelist_entry);
    462      1.23        ad 			strncpy(bi->path, bm->bm_path, sizeof(bi->path) - 1);
    463      1.24        ad 			bi->base = image_end;
    464      1.24        ad 			bi->len = len;
    465      1.23        ad 			bi->type = BI_MODULE_ELF;
    466      1.23        ad 			printf(" \n");
    467      1.23        ad 		}
    468      1.24        ad 		if (len > 0)
    469      1.24        ad 			image_end += len;
    470      1.23        ad 		close(fd);
    471      1.23        ad 	}
    472      1.23        ad 	btinfo_modulelist->endpa = image_end;
    473      1.23        ad }
    474      1.33     joerg 
    475      1.33     joerg int
    476      1.33     joerg exec_multiboot(const char *file, char *args)
    477      1.33     joerg {
    478      1.33     joerg 	struct multiboot_info *mbi;
    479      1.33     joerg 	struct multiboot_module *mbm;
    480      1.33     joerg 	struct bi_modulelist_entry *bim;
    481      1.33     joerg 	int		i, len;
    482      1.33     joerg 	u_long		marks[MARK_MAX];
    483      1.33     joerg 	u_long		extmem;
    484      1.33     joerg 	u_long		basemem;
    485      1.33     joerg 	char		*cmdline;
    486      1.33     joerg 
    487      1.33     joerg 	mbi = alloc(sizeof(struct multiboot_info));
    488      1.33     joerg 	mbi->mi_flags = MULTIBOOT_INFO_HAS_MEMORY;
    489      1.33     joerg 
    490      1.33     joerg 	if (common_load_kernel(file, &basemem, &extmem, 0, 0, marks))
    491      1.33     joerg 		goto out;
    492      1.33     joerg 
    493      1.33     joerg 	mbi->mi_mem_upper = extmem;
    494      1.33     joerg 	mbi->mi_mem_lower = basemem;
    495      1.33     joerg 
    496      1.33     joerg 	if (args) {
    497      1.33     joerg 		mbi->mi_flags |= MULTIBOOT_INFO_HAS_CMDLINE;
    498      1.33     joerg 		len = strlen(file) + 1 + strlen(args) + 1;
    499      1.33     joerg 		cmdline = alloc(len);
    500      1.33     joerg 		snprintf(cmdline, len, "%s %s", file, args);
    501      1.33     joerg 		mbi->mi_cmdline = (char *) vtophys(cmdline);
    502      1.33     joerg 	}
    503      1.33     joerg 
    504      1.33     joerg 	/* pull in any modules if necessary */
    505      1.33     joerg 	if (boot_modules_enabled) {
    506      1.33     joerg 		module_init();
    507      1.33     joerg 		if (btinfo_modulelist) {
    508      1.33     joerg 			mbm = alloc(sizeof(struct multiboot_module) *
    509      1.33     joerg 					   btinfo_modulelist->num);
    510      1.33     joerg 
    511      1.33     joerg 			bim = (struct bi_modulelist_entry *)
    512      1.33     joerg 			  (((char *) btinfo_modulelist) +
    513      1.33     joerg 			   sizeof(struct btinfo_modulelist));
    514      1.33     joerg 			for (i = 0; i < btinfo_modulelist->num; i++) {
    515      1.33     joerg 				mbm[i].mmo_start = bim->base;
    516      1.33     joerg 				mbm[i].mmo_end = bim->base + bim->len;
    517      1.33     joerg 				mbm[i].mmo_string = (char *)vtophys(bim->path);
    518      1.33     joerg 				mbm[i].mmo_reserved = 0;
    519      1.33     joerg 				bim++;
    520      1.33     joerg 			}
    521      1.33     joerg 			mbi->mi_flags |= MULTIBOOT_INFO_HAS_MODS;
    522      1.33     joerg 			mbi->mi_mods_count = btinfo_modulelist->num;
    523      1.33     joerg 			mbi->mi_mods_addr = vtophys(mbm);
    524      1.33     joerg 		}
    525      1.33     joerg 	}
    526      1.33     joerg 
    527      1.33     joerg #ifdef DEBUG
    528      1.33     joerg 	printf("Start @ 0x%lx [%ld=0x%lx-0x%lx]...\n", marks[MARK_ENTRY],
    529      1.33     joerg 	    marks[MARK_NSYM], marks[MARK_SYM], marks[MARK_END]);
    530      1.33     joerg #endif
    531      1.33     joerg 
    532      1.33     joerg 
    533      1.33     joerg #if 0
    534      1.33     joerg 	if (btinfo_symtab.nsym) {
    535      1.33     joerg 		mbi->mi_flags |= MULTIBOOT_INFO_HAS_ELF_SYMS;
    536      1.33     joerg 		mbi->mi_elfshdr_addr = marks[MARK_SYM];
    537      1.33     joerg 	btinfo_symtab.nsym = marks[MARK_NSYM];
    538      1.33     joerg 	btinfo_symtab.ssym = marks[MARK_SYM];
    539      1.33     joerg 	btinfo_symtab.esym = marks[MARK_END];
    540      1.33     joerg #endif
    541      1.33     joerg 
    542      1.33     joerg 	multiboot(marks[MARK_ENTRY], vtophys(mbi),
    543      1.33     joerg 		  x86_trunc_page(mbi->mi_mem_lower*1024));
    544      1.33     joerg 	panic("exec returned");
    545      1.33     joerg 
    546      1.33     joerg out:
    547      1.33     joerg         dealloc(mbi, 0);
    548      1.33     joerg 	return -1;
    549      1.33     joerg }
    550