exec.c revision 1.46 1 1.46 jmcneill /* $NetBSD: exec.c,v 1.46 2011/02/06 23:16:05 jmcneill Exp $ */
2 1.23 ad
3 1.23 ad /*-
4 1.40 ad * Copyright (c) 2008, 2009 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 *
75 1.1 perry * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
76 1.1 perry * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
77 1.1 perry * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
78 1.1 perry * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
79 1.1 perry * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
80 1.1 perry * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
81 1.1 perry * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
82 1.1 perry * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
83 1.1 perry * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
84 1.1 perry * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
85 1.1 perry * SUCH DAMAGE.
86 1.1 perry *
87 1.1 perry * @(#)boot.c 8.1 (Berkeley) 6/10/93
88 1.1 perry */
89 1.1 perry
90 1.2 thorpej /*
91 1.8 christos * starts NetBSD a.out kernel
92 1.8 christos * needs lowlevel startup from startprog.S
93 1.8 christos * This is a special version of exec.c to support use of XMS.
94 1.1 perry */
95 1.8 christos
96 1.1 perry #include <sys/param.h>
97 1.1 perry #include <sys/reboot.h>
98 1.40 ad #include <sys/reboot.h>
99 1.1 perry
100 1.33 joerg #include <machine/multiboot.h>
101 1.40 ad #include <machine/stdarg.h>
102 1.33 joerg
103 1.1 perry #include <lib/libsa/stand.h>
104 1.23 ad #include <lib/libkern/libkern.h>
105 1.4 drochner
106 1.6 christos #include "loadfile.h"
107 1.1 perry #include "libi386.h"
108 1.4 drochner #include "bootinfo.h"
109 1.23 ad #include "bootmod.h"
110 1.42 jmcneill #include "vbe.h"
111 1.16 jdolecek #ifdef SUPPORT_PS2
112 1.16 jdolecek #include "biosmca.h"
113 1.16 jdolecek #endif
114 1.1 perry
115 1.6 christos #define BOOT_NARGS 6
116 1.1 perry
117 1.23 ad #ifndef PAGE_SIZE
118 1.23 ad #define PAGE_SIZE 4096
119 1.23 ad #endif
120 1.23 ad
121 1.43 tsutsui #define MODULE_WARNING_SEC 5
122 1.41 jmcneill
123 1.4 drochner extern struct btinfo_console btinfo_console;
124 1.4 drochner
125 1.23 ad boot_module_t *boot_modules;
126 1.23 ad bool boot_modules_enabled = true;
127 1.23 ad bool kernel_loaded;
128 1.23 ad
129 1.39 jmcneill static struct btinfo_framebuffer btinfo_framebuffer;
130 1.39 jmcneill
131 1.23 ad static struct btinfo_modulelist *btinfo_modulelist;
132 1.23 ad static size_t btinfo_modulelist_size;
133 1.23 ad static uint32_t image_end;
134 1.26 ad static char module_base[64] = "/";
135 1.40 ad static int howto;
136 1.23 ad
137 1.41 jmcneill static void module_init(const char *);
138 1.46 jmcneill static void module_add_common(char *, uint8_t);
139 1.23 ad
140 1.34 ad void
141 1.39 jmcneill framebuffer_configure(struct btinfo_framebuffer *fb)
142 1.39 jmcneill {
143 1.39 jmcneill if (fb)
144 1.39 jmcneill btinfo_framebuffer = *fb;
145 1.39 jmcneill else {
146 1.39 jmcneill btinfo_framebuffer.physaddr = 0;
147 1.39 jmcneill btinfo_framebuffer.flags = 0;
148 1.39 jmcneill }
149 1.39 jmcneill }
150 1.39 jmcneill
151 1.39 jmcneill void
152 1.34 ad module_add(char *name)
153 1.34 ad {
154 1.46 jmcneill return module_add_common(name, BM_TYPE_KMOD);
155 1.46 jmcneill }
156 1.46 jmcneill
157 1.46 jmcneill void
158 1.46 jmcneill splash_add(char *name)
159 1.46 jmcneill {
160 1.46 jmcneill return module_add_common(name, BM_TYPE_IMAGE);
161 1.46 jmcneill }
162 1.46 jmcneill
163 1.46 jmcneill static void
164 1.46 jmcneill module_add_common(char *name, uint8_t type)
165 1.46 jmcneill {
166 1.34 ad boot_module_t *bm, *bmp;
167 1.34 ad size_t len;
168 1.34 ad char *str;
169 1.34 ad
170 1.35 ad while (*name == ' ' || *name == '\t')
171 1.35 ad ++name;
172 1.35 ad
173 1.34 ad bm = alloc(sizeof(boot_module_t));
174 1.34 ad len = strlen(name) + 1;
175 1.34 ad str = alloc(len);
176 1.34 ad if (bm == NULL || str == NULL) {
177 1.34 ad printf("couldn't allocate module\n");
178 1.34 ad return;
179 1.34 ad }
180 1.34 ad memcpy(str, name, len);
181 1.34 ad bm->bm_path = str;
182 1.34 ad bm->bm_next = NULL;
183 1.46 jmcneill bm->bm_type = type;
184 1.34 ad if (boot_modules == NULL)
185 1.34 ad boot_modules = bm;
186 1.34 ad else {
187 1.34 ad for (bmp = boot_modules; bmp->bm_next;
188 1.34 ad bmp = bmp->bm_next)
189 1.34 ad ;
190 1.34 ad bmp->bm_next = bm;
191 1.34 ad }
192 1.34 ad }
193 1.34 ad
194 1.32 joerg static int
195 1.32 joerg common_load_kernel(const char *file, u_long *basemem, u_long *extmem,
196 1.32 joerg physaddr_t loadaddr, int floppy, u_long marks[MARK_MAX])
197 1.1 perry {
198 1.32 joerg int fd;
199 1.8 christos #ifdef XMS
200 1.8 christos u_long xmsmem;
201 1.8 christos physaddr_t origaddr = loadaddr;
202 1.8 christos #endif
203 1.8 christos
204 1.32 joerg *extmem = getextmem();
205 1.32 joerg *basemem = getbasemem();
206 1.8 christos
207 1.8 christos #ifdef XMS
208 1.8 christos if ((getextmem1() == 0) && (xmsmem = checkxms())) {
209 1.8 christos u_long kernsize;
210 1.8 christos
211 1.8 christos /*
212 1.8 christos * With "CONSERVATIVE_MEMDETECT", extmem is 0 because
213 1.8 christos * getextmem() is getextmem1(). Without, the "smart"
214 1.8 christos * methods could fail to report all memory as well.
215 1.8 christos * xmsmem is a few kB less than the actual size, but
216 1.8 christos * better than nothing.
217 1.8 christos */
218 1.32 joerg if (xmsmem > *extmem)
219 1.32 joerg *extmem = xmsmem;
220 1.21 junyoung /*
221 1.8 christos * Get the size of the kernel
222 1.8 christos */
223 1.8 christos marks[MARK_START] = loadaddr;
224 1.12 christos if ((fd = loadfile(file, marks, COUNT_KERNEL)) == -1)
225 1.32 joerg return EIO;
226 1.8 christos close(fd);
227 1.8 christos
228 1.8 christos kernsize = marks[MARK_END];
229 1.8 christos kernsize = (kernsize + 1023) / 1024;
230 1.8 christos
231 1.8 christos loadaddr = xmsalloc(kernsize);
232 1.8 christos if (!loadaddr)
233 1.21 junyoung return ENOMEM;
234 1.8 christos }
235 1.8 christos #endif
236 1.7 christos marks[MARK_START] = loadaddr;
237 1.29 christos if ((fd = loadfile(file, marks,
238 1.44 christos LOAD_KERNEL & ~(floppy ? LOAD_BACKWARDS : 0))) == -1)
239 1.32 joerg return EIO;
240 1.1 perry
241 1.8 christos close(fd);
242 1.10 drochner
243 1.34 ad /* Now we know the root fs type, load modules for it. */
244 1.34 ad module_add(fsmod);
245 1.34 ad if (fsmod2 != NULL && strcmp(fsmod, fsmod2) != 0)
246 1.34 ad module_add(fsmod2);
247 1.34 ad
248 1.10 drochner /*
249 1.10 drochner * Gather some information for the kernel. Do this after the
250 1.10 drochner * "point of no return" to avoid memory leaks.
251 1.10 drochner * (but before DOS might be trashed in the XMS case)
252 1.10 drochner */
253 1.10 drochner #ifdef PASS_BIOSGEOM
254 1.10 drochner bi_getbiosgeom();
255 1.10 drochner #endif
256 1.10 drochner #ifdef PASS_MEMMAP
257 1.10 drochner bi_getmemmap();
258 1.10 drochner #endif
259 1.8 christos
260 1.8 christos #ifdef XMS
261 1.8 christos if (loadaddr != origaddr) {
262 1.8 christos /*
263 1.14 ross * We now have done our last DOS IO, so we may
264 1.8 christos * trash the OS. Copy the data from the temporary
265 1.20 wiz * buffer to its real address.
266 1.8 christos */
267 1.8 christos marks[MARK_START] -= loadaddr;
268 1.8 christos marks[MARK_END] -= loadaddr;
269 1.8 christos marks[MARK_SYM] -= loadaddr;
270 1.8 christos marks[MARK_END] -= loadaddr;
271 1.8 christos ppbcopy(loadaddr, origaddr, marks[MARK_END]);
272 1.8 christos }
273 1.8 christos #endif
274 1.8 christos marks[MARK_END] = (((u_long) marks[MARK_END] + sizeof(int) - 1)) &
275 1.8 christos (-sizeof(int));
276 1.23 ad image_end = marks[MARK_END];
277 1.23 ad kernel_loaded = true;
278 1.1 perry
279 1.32 joerg return 0;
280 1.32 joerg }
281 1.32 joerg
282 1.32 joerg int
283 1.40 ad exec_netbsd(const char *file, physaddr_t loadaddr, int boothowto, int floppy,
284 1.40 ad void (*callback)(void))
285 1.32 joerg {
286 1.32 joerg u_long boot_argv[BOOT_NARGS];
287 1.32 joerg u_long marks[MARK_MAX];
288 1.32 joerg struct btinfo_symtab btinfo_symtab;
289 1.32 joerg u_long extmem;
290 1.32 joerg u_long basemem;
291 1.32 joerg
292 1.32 joerg #ifdef DEBUG
293 1.32 joerg printf("exec: file=%s loadaddr=0x%lx\n",
294 1.32 joerg file ? file : "NULL", loadaddr);
295 1.32 joerg #endif
296 1.32 joerg
297 1.32 joerg BI_ALLOC(32); /* ??? */
298 1.32 joerg
299 1.32 joerg BI_ADD(&btinfo_console, BTINFO_CONSOLE, sizeof(struct btinfo_console));
300 1.32 joerg
301 1.40 ad howto = boothowto;
302 1.40 ad
303 1.32 joerg if (common_load_kernel(file, &basemem, &extmem, loadaddr, floppy, marks))
304 1.32 joerg goto out;
305 1.32 joerg
306 1.31 joerg boot_argv[0] = boothowto;
307 1.31 joerg boot_argv[1] = 0;
308 1.31 joerg boot_argv[2] = vtophys(bootinfo); /* old cyl offset */
309 1.31 joerg boot_argv[3] = marks[MARK_END];
310 1.31 joerg boot_argv[4] = extmem;
311 1.31 joerg boot_argv[5] = basemem;
312 1.31 joerg
313 1.23 ad /* pull in any modules if necessary */
314 1.23 ad if (boot_modules_enabled) {
315 1.41 jmcneill module_init(file);
316 1.23 ad if (btinfo_modulelist) {
317 1.23 ad BI_ADD(btinfo_modulelist, BTINFO_MODULELIST,
318 1.23 ad btinfo_modulelist_size);
319 1.23 ad }
320 1.23 ad }
321 1.1 perry
322 1.1 perry #ifdef DEBUG
323 1.8 christos printf("Start @ 0x%lx [%ld=0x%lx-0x%lx]...\n", marks[MARK_ENTRY],
324 1.7 christos marks[MARK_NSYM], marks[MARK_SYM], marks[MARK_END]);
325 1.1 perry #endif
326 1.1 perry
327 1.8 christos btinfo_symtab.nsym = marks[MARK_NSYM];
328 1.8 christos btinfo_symtab.ssym = marks[MARK_SYM];
329 1.8 christos btinfo_symtab.esym = marks[MARK_END];
330 1.8 christos BI_ADD(&btinfo_symtab, BTINFO_SYMTAB, sizeof(struct btinfo_symtab));
331 1.8 christos
332 1.42 jmcneill /* set new video mode if necessary */
333 1.42 jmcneill vbe_commit();
334 1.42 jmcneill BI_ADD(&btinfo_framebuffer, BTINFO_FRAMEBUFFER,
335 1.42 jmcneill sizeof(struct btinfo_framebuffer));
336 1.42 jmcneill
337 1.40 ad if (callback != NULL)
338 1.40 ad (*callback)();
339 1.15 dbj startprog(marks[MARK_ENTRY], BOOT_NARGS, boot_argv,
340 1.21 junyoung x86_trunc_page(basemem*1024));
341 1.1 perry panic("exec returned");
342 1.1 perry
343 1.4 drochner out:
344 1.4 drochner BI_FREE();
345 1.4 drochner bootinfo = 0;
346 1.21 junyoung return -1;
347 1.1 perry }
348 1.23 ad
349 1.41 jmcneill static void
350 1.41 jmcneill extract_device(const char *path, char *buf, size_t buflen)
351 1.41 jmcneill {
352 1.41 jmcneill int i;
353 1.41 jmcneill
354 1.41 jmcneill if (strchr(path, ':') != NULL) {
355 1.41 jmcneill for (i = 0; i < buflen - 2 && path[i] != ':'; i++)
356 1.41 jmcneill buf[i] = path[i];
357 1.41 jmcneill buf[i++] = ':';
358 1.41 jmcneill buf[i] = '\0';
359 1.41 jmcneill } else
360 1.41 jmcneill buf[0] = '\0';
361 1.41 jmcneill }
362 1.41 jmcneill
363 1.26 ad static const char *
364 1.41 jmcneill module_path(boot_module_t *bm, const char *kdev)
365 1.26 ad {
366 1.26 ad static char buf[256];
367 1.41 jmcneill char name_buf[256], dev_buf[64];
368 1.41 jmcneill const char *name, *name2, *p;
369 1.26 ad
370 1.26 ad name = bm->bm_path;
371 1.33 joerg for (name2 = name; *name2; ++name2) {
372 1.33 joerg if (*name2 == ' ' || *name2 == '\t') {
373 1.33 joerg strlcpy(name_buf, name, sizeof(name_buf));
374 1.33 joerg if (name2 - name < sizeof(name_buf))
375 1.33 joerg name_buf[name2 - name] = '\0';
376 1.33 joerg name = name_buf;
377 1.33 joerg break;
378 1.33 joerg }
379 1.33 joerg }
380 1.41 jmcneill if ((p = strchr(name, ':')) != NULL) {
381 1.41 jmcneill /* device specified, use it */
382 1.41 jmcneill if (p[1] == '/')
383 1.41 jmcneill snprintf(buf, sizeof(buf), "%s", name);
384 1.41 jmcneill else {
385 1.41 jmcneill p++;
386 1.41 jmcneill extract_device(name, dev_buf, sizeof(dev_buf));
387 1.41 jmcneill snprintf(buf, sizeof(buf), "%s%s/%s/%s.kmod",
388 1.41 jmcneill dev_buf, module_base, p, p);
389 1.41 jmcneill }
390 1.41 jmcneill } else {
391 1.41 jmcneill /* device not specified; load from kernel device if known */
392 1.41 jmcneill if (name[0] == '/')
393 1.41 jmcneill snprintf(buf, sizeof(buf), "%s%s", kdev, name);
394 1.41 jmcneill else
395 1.41 jmcneill snprintf(buf, sizeof(buf), "%s%s/%s/%s.kmod",
396 1.41 jmcneill kdev, module_base, name, name);
397 1.41 jmcneill }
398 1.33 joerg
399 1.26 ad return buf;
400 1.26 ad }
401 1.26 ad
402 1.36 christos static int
403 1.41 jmcneill module_open(boot_module_t *bm, int mode, const char *kdev, bool doload)
404 1.28 chris {
405 1.28 chris int fd;
406 1.28 chris const char *path;
407 1.36 christos
408 1.28 chris /* check the expanded path first */
409 1.41 jmcneill path = module_path(bm, kdev);
410 1.28 chris fd = open(path, mode);
411 1.41 jmcneill if (fd != -1) {
412 1.41 jmcneill if ((howto & AB_SILENT) == 0 && doload)
413 1.41 jmcneill printf("Loading %s ", path);
414 1.41 jmcneill } else {
415 1.28 chris /* now attempt the raw path provided */
416 1.28 chris fd = open(bm->bm_path, mode);
417 1.41 jmcneill if (fd != -1 && (howto & AB_SILENT) == 0 && doload)
418 1.41 jmcneill printf("Loading %s ", bm->bm_path);
419 1.41 jmcneill }
420 1.41 jmcneill if (!doload && fd == -1) {
421 1.41 jmcneill printf("WARNING: couldn't open %s", bm->bm_path);
422 1.41 jmcneill if (strcmp(bm->bm_path, path) != 0)
423 1.41 jmcneill printf(" (%s)", path);
424 1.41 jmcneill printf("\n");
425 1.28 chris }
426 1.28 chris return fd;
427 1.28 chris }
428 1.28 chris
429 1.23 ad static void
430 1.41 jmcneill module_init(const char *kernel_path)
431 1.23 ad {
432 1.23 ad struct bi_modulelist_entry *bi;
433 1.23 ad struct stat st;
434 1.30 joerg const char *machine;
435 1.41 jmcneill char kdev[64];
436 1.23 ad char *buf;
437 1.23 ad boot_module_t *bm;
438 1.23 ad size_t len;
439 1.23 ad off_t off;
440 1.41 jmcneill int err, fd, nfail = 0;
441 1.41 jmcneill
442 1.41 jmcneill extract_device(kernel_path, kdev, sizeof(kdev));
443 1.23 ad
444 1.30 joerg switch (netbsd_elf_class) {
445 1.30 joerg case ELFCLASS32:
446 1.30 joerg machine = "i386";
447 1.30 joerg break;
448 1.30 joerg case ELFCLASS64:
449 1.30 joerg machine = "amd64";
450 1.30 joerg break;
451 1.30 joerg default:
452 1.30 joerg machine = "generic";
453 1.30 joerg break;
454 1.30 joerg }
455 1.30 joerg if (netbsd_version / 1000000 % 100 == 99) {
456 1.30 joerg /* -current */
457 1.30 joerg snprintf(module_base, sizeof(module_base),
458 1.38 rmind "/stand/%s/%d.%d.%d/modules", machine,
459 1.30 joerg netbsd_version / 100000000,
460 1.30 joerg netbsd_version / 1000000 % 100,
461 1.30 joerg netbsd_version / 100 % 100);
462 1.30 joerg } else if (netbsd_version != 0) {
463 1.30 joerg /* release */
464 1.30 joerg snprintf(module_base, sizeof(module_base),
465 1.38 rmind "/stand/%s/%d.%d/modules", machine,
466 1.30 joerg netbsd_version / 100000000,
467 1.30 joerg netbsd_version / 1000000 % 100);
468 1.30 joerg }
469 1.30 joerg
470 1.23 ad /* First, see which modules are valid and calculate btinfo size */
471 1.23 ad len = sizeof(struct btinfo_modulelist);
472 1.23 ad for (bm = boot_modules; bm; bm = bm->bm_next) {
473 1.41 jmcneill fd = module_open(bm, 0, kdev, false);
474 1.23 ad if (fd == -1) {
475 1.23 ad bm->bm_len = -1;
476 1.41 jmcneill ++nfail;
477 1.23 ad continue;
478 1.23 ad }
479 1.23 ad err = fstat(fd, &st);
480 1.24 ad if (err == -1 || st.st_size == -1) {
481 1.28 chris printf("WARNING: couldn't stat %s\n", bm->bm_path);
482 1.23 ad close(fd);
483 1.23 ad bm->bm_len = -1;
484 1.41 jmcneill ++nfail;
485 1.23 ad continue;
486 1.23 ad }
487 1.23 ad bm->bm_len = st.st_size;
488 1.23 ad close(fd);
489 1.23 ad len += sizeof(struct bi_modulelist_entry);
490 1.23 ad }
491 1.23 ad
492 1.23 ad /* Allocate the module list */
493 1.23 ad btinfo_modulelist = alloc(len);
494 1.23 ad if (btinfo_modulelist == NULL) {
495 1.23 ad printf("WARNING: couldn't allocate module list\n");
496 1.43 tsutsui wait_sec(MODULE_WARNING_SEC);
497 1.23 ad return;
498 1.23 ad }
499 1.23 ad memset(btinfo_modulelist, 0, len);
500 1.23 ad btinfo_modulelist_size = len;
501 1.23 ad
502 1.23 ad /* Fill in btinfo structure */
503 1.23 ad buf = (char *)btinfo_modulelist;
504 1.23 ad btinfo_modulelist->num = 0;
505 1.23 ad off = sizeof(struct btinfo_modulelist);
506 1.23 ad
507 1.23 ad for (bm = boot_modules; bm; bm = bm->bm_next) {
508 1.23 ad if (bm->bm_len == -1)
509 1.23 ad continue;
510 1.41 jmcneill fd = module_open(bm, 0, kdev, true);
511 1.41 jmcneill if (fd == -1)
512 1.23 ad continue;
513 1.24 ad image_end = (image_end + PAGE_SIZE - 1) & ~(PAGE_SIZE - 1);
514 1.24 ad len = pread(fd, (void *)image_end, SSIZE_MAX);
515 1.24 ad if (len < bm->bm_len) {
516 1.40 ad if ((howto & AB_SILENT) != 0)
517 1.40 ad printf("Loading %s ", bm->bm_path);
518 1.23 ad printf(" FAILED\n");
519 1.23 ad } else {
520 1.23 ad btinfo_modulelist->num++;
521 1.23 ad bi = (struct bi_modulelist_entry *)(buf + off);
522 1.23 ad off += sizeof(struct bi_modulelist_entry);
523 1.23 ad strncpy(bi->path, bm->bm_path, sizeof(bi->path) - 1);
524 1.24 ad bi->base = image_end;
525 1.24 ad bi->len = len;
526 1.46 jmcneill bi->type = bm->bm_type == BM_TYPE_KMOD ?
527 1.46 jmcneill BI_MODULE_ELF : BI_MODULE_IMAGE;
528 1.40 ad if ((howto & AB_SILENT) == 0)
529 1.40 ad printf(" \n");
530 1.23 ad }
531 1.24 ad if (len > 0)
532 1.24 ad image_end += len;
533 1.23 ad close(fd);
534 1.23 ad }
535 1.23 ad btinfo_modulelist->endpa = image_end;
536 1.41 jmcneill
537 1.41 jmcneill if (nfail > 0) {
538 1.41 jmcneill printf("WARNING: %d module%s failed to load\n",
539 1.41 jmcneill nfail, nfail == 1 ? "" : "s");
540 1.41 jmcneill #if notyet
541 1.43 tsutsui wait_sec(MODULE_WARNING_SEC);
542 1.41 jmcneill #endif
543 1.41 jmcneill }
544 1.23 ad }
545 1.33 joerg
546 1.33 joerg int
547 1.33 joerg exec_multiboot(const char *file, char *args)
548 1.33 joerg {
549 1.33 joerg struct multiboot_info *mbi;
550 1.33 joerg struct multiboot_module *mbm;
551 1.33 joerg struct bi_modulelist_entry *bim;
552 1.33 joerg int i, len;
553 1.33 joerg u_long marks[MARK_MAX];
554 1.33 joerg u_long extmem;
555 1.33 joerg u_long basemem;
556 1.33 joerg char *cmdline;
557 1.33 joerg
558 1.33 joerg mbi = alloc(sizeof(struct multiboot_info));
559 1.33 joerg mbi->mi_flags = MULTIBOOT_INFO_HAS_MEMORY;
560 1.33 joerg
561 1.33 joerg if (common_load_kernel(file, &basemem, &extmem, 0, 0, marks))
562 1.33 joerg goto out;
563 1.33 joerg
564 1.33 joerg mbi->mi_mem_upper = extmem;
565 1.33 joerg mbi->mi_mem_lower = basemem;
566 1.33 joerg
567 1.33 joerg if (args) {
568 1.33 joerg mbi->mi_flags |= MULTIBOOT_INFO_HAS_CMDLINE;
569 1.33 joerg len = strlen(file) + 1 + strlen(args) + 1;
570 1.33 joerg cmdline = alloc(len);
571 1.33 joerg snprintf(cmdline, len, "%s %s", file, args);
572 1.33 joerg mbi->mi_cmdline = (char *) vtophys(cmdline);
573 1.33 joerg }
574 1.33 joerg
575 1.33 joerg /* pull in any modules if necessary */
576 1.33 joerg if (boot_modules_enabled) {
577 1.41 jmcneill module_init(file);
578 1.33 joerg if (btinfo_modulelist) {
579 1.33 joerg mbm = alloc(sizeof(struct multiboot_module) *
580 1.33 joerg btinfo_modulelist->num);
581 1.33 joerg
582 1.33 joerg bim = (struct bi_modulelist_entry *)
583 1.33 joerg (((char *) btinfo_modulelist) +
584 1.33 joerg sizeof(struct btinfo_modulelist));
585 1.33 joerg for (i = 0; i < btinfo_modulelist->num; i++) {
586 1.33 joerg mbm[i].mmo_start = bim->base;
587 1.33 joerg mbm[i].mmo_end = bim->base + bim->len;
588 1.33 joerg mbm[i].mmo_string = (char *)vtophys(bim->path);
589 1.33 joerg mbm[i].mmo_reserved = 0;
590 1.33 joerg bim++;
591 1.33 joerg }
592 1.33 joerg mbi->mi_flags |= MULTIBOOT_INFO_HAS_MODS;
593 1.33 joerg mbi->mi_mods_count = btinfo_modulelist->num;
594 1.33 joerg mbi->mi_mods_addr = vtophys(mbm);
595 1.33 joerg }
596 1.33 joerg }
597 1.33 joerg
598 1.33 joerg #ifdef DEBUG
599 1.33 joerg printf("Start @ 0x%lx [%ld=0x%lx-0x%lx]...\n", marks[MARK_ENTRY],
600 1.33 joerg marks[MARK_NSYM], marks[MARK_SYM], marks[MARK_END]);
601 1.33 joerg #endif
602 1.33 joerg
603 1.33 joerg
604 1.33 joerg #if 0
605 1.33 joerg if (btinfo_symtab.nsym) {
606 1.33 joerg mbi->mi_flags |= MULTIBOOT_INFO_HAS_ELF_SYMS;
607 1.33 joerg mbi->mi_elfshdr_addr = marks[MARK_SYM];
608 1.33 joerg btinfo_symtab.nsym = marks[MARK_NSYM];
609 1.33 joerg btinfo_symtab.ssym = marks[MARK_SYM];
610 1.33 joerg btinfo_symtab.esym = marks[MARK_END];
611 1.33 joerg #endif
612 1.33 joerg
613 1.33 joerg multiboot(marks[MARK_ENTRY], vtophys(mbi),
614 1.33 joerg x86_trunc_page(mbi->mi_mem_lower*1024));
615 1.33 joerg panic("exec returned");
616 1.33 joerg
617 1.33 joerg out:
618 1.33 joerg dealloc(mbi, 0);
619 1.33 joerg return -1;
620 1.33 joerg }
621 1.40 ad
622 1.40 ad void
623 1.40 ad x86_progress(const char *fmt, ...)
624 1.40 ad {
625 1.40 ad va_list ap;
626 1.40 ad
627 1.40 ad if ((howto & AB_SILENT) != 0)
628 1.40 ad return;
629 1.40 ad va_start(ap, fmt);
630 1.40 ad vprintf(fmt, ap);
631 1.40 ad va_end(ap);
632 1.40 ad }
633