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