2 * Copyright (c) 1998 Michael Smith <msmith@freebsd.org>
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * from: FreeBSD: src/sys/boot/sparc64/loader/metadata.c,v 1.6
27 * $FreeBSD: src/sys/boot/powerpc/loader/metadata.c,v 1.3 2003/04/30 22:00:15 peter Exp $
28 * $DragonFly: src/sys/boot/powerpc/loader/metadata.c,v 1.1 2003/11/10 06:08:40 dillon Exp $
32 #include <sys/param.h>
33 #include <sys/reboot.h>
34 #include <sys/linker.h>
36 #include <machine/metadata.h>
38 #include "bootstrap.h"
42 * Return a 'boothowto' value corresponding to the kernel arguments in
43 * (kargs) and any relevant environment variables.
50 {"boot_askname", RB_ASKNAME
},
51 {"boot_cdrom", RB_CDROM
},
52 {"boot_userconfig", RB_CONFIG
},
55 {"boot_single", RB_SINGLE
},
56 {"boot_verbose", RB_VERBOSE
},
57 {"boot_multicons", RB_MULTIPLE
},
58 {"boot_serial", RB_SERIAL
},
63 md_getboothowto(char *kargs
)
76 if (!active
&& (*cp
== '-')) {
105 howto
|= RB_DFLTROOT
;
120 /* get equivalents from the environment */
121 for (i
= 0; howto_names
[i
].ev
!= NULL
; i
++)
122 if (getenv(howto_names
[i
].ev
) != NULL
)
123 howto
|= howto_names
[i
].mask
;
124 if (!strcmp(getenv("console"), "comconsole"))
126 if (!strcmp(getenv("console"), "nullconsole"))
132 * Copy the environment into the load area starting at (addr).
133 * Each variable is formatted as <name>=<value>, with a single nul
134 * separating each variable, and a double nul terminating the environment.
137 md_copyenv(vm_offset_t addr
)
141 /* traverse the environment */
142 for (ep
= environ
; ep
!= NULL
; ep
= ep
->ev_next
) {
143 archsw
.arch_copyin(ep
->ev_name
, addr
, strlen(ep
->ev_name
));
144 addr
+= strlen(ep
->ev_name
);
145 archsw
.arch_copyin("=", addr
, 1);
147 if (ep
->ev_value
!= NULL
) {
148 archsw
.arch_copyin(ep
->ev_value
, addr
, strlen(ep
->ev_value
));
149 addr
+= strlen(ep
->ev_value
);
151 archsw
.arch_copyin("", addr
, 1);
154 archsw
.arch_copyin("", addr
, 1);
160 * Copy module-related data into the load area, where it can be
161 * used as a directory for loaded modules.
163 * Module data is presented in a self-describing format. Each datum
164 * is preceded by a 32-bit identifier and a 32-bit size field.
166 * Currently, the following data are saved:
168 * MOD_NAME (variable) module name (string)
169 * MOD_TYPE (variable) module type (string)
170 * MOD_ARGS (variable) module parameters (string)
171 * MOD_ADDR sizeof(vm_offset_t) module load address
172 * MOD_SIZE sizeof(size_t) module size
173 * MOD_METADATA (variable) type-specific metadata
175 #define COPY32(v, a, c) { \
178 archsw.arch_copyin(&x, a, sizeof(x)); \
182 #define MOD_STR(t, a, s, c) { \
184 COPY32(strlen(s) + 1, a, c) \
186 archsw.arch_copyin(s, a, strlen(s) + 1);\
187 a += roundup(strlen(s) + 1, sizeof(u_long));\
190 #define MOD_NAME(a, s, c) MOD_STR(MODINFO_NAME, a, s, c)
191 #define MOD_TYPE(a, s, c) MOD_STR(MODINFO_TYPE, a, s, c)
192 #define MOD_ARGS(a, s, c) MOD_STR(MODINFO_ARGS, a, s, c)
194 #define MOD_VAR(t, a, s, c) { \
196 COPY32(sizeof(s), a, c); \
198 archsw.arch_copyin(&s, a, sizeof(s)); \
199 a += roundup(sizeof(s), sizeof(u_long)); \
202 #define MOD_ADDR(a, s, c) MOD_VAR(MODINFO_ADDR, a, s, c)
203 #define MOD_SIZE(a, s, c) MOD_VAR(MODINFO_SIZE, a, s, c)
205 #define MOD_METADATA(a, mm, c) { \
206 COPY32(MODINFO_METADATA | mm->md_type, a, c);\
207 COPY32(mm->md_size, a, c); \
209 archsw.arch_copyin(mm->md_data, a, mm->md_size);\
210 a += roundup(mm->md_size, sizeof(u_long)); \
213 #define MOD_END(a, c) { \
214 COPY32(MODINFO_END, a, c); \
219 md_copymodules(vm_offset_t addr
)
221 struct preloaded_file
*fp
;
222 struct file_metadata
*md
;
226 /* start with the first module on the list, should be the kernel */
227 for (fp
= file_findfile(NULL
, NULL
); fp
!= NULL
; fp
= fp
->f_next
) {
229 MOD_NAME(addr
, fp
->f_name
, c
); /* this field must come first */
230 MOD_TYPE(addr
, fp
->f_type
, c
);
232 MOD_ARGS(addr
, fp
->f_args
, c
);
233 MOD_ADDR(addr
, fp
->f_addr
, c
);
234 MOD_SIZE(addr
, fp
->f_size
, c
);
235 for (md
= fp
->f_metadata
; md
!= NULL
; md
= md
->md_next
) {
236 if (!(md
->md_type
& MODINFOMD_NOCOPY
)) {
237 MOD_METADATA(addr
, md
, c
);
246 * Load the information expected by a powerpc kernel.
248 * - The 'boothowto' argument is constructed
249 * - The 'bootdev' argument is constructed
250 * - The kernel environment is copied into kernel space.
251 * - Module metadata are formatted and placed in kernel space.
254 md_load(char *args
, vm_offset_t
*modulep
)
256 struct preloaded_file
*kfp
;
257 struct preloaded_file
*xp
;
258 struct file_metadata
*md
;
268 howto
= md_getboothowto(args
);
271 * Allow the environment variable 'rootdev' to override the supplied device
272 * This should perhaps go to MI code and/or have $rootdev tested/set by
273 * MI code before launching the kernel.
275 rootdevname
= getenv("rootdev");
276 if (rootdevname
== NULL
)
277 rootdevname
= getenv("currdev");
278 /* Try reading the /etc/fstab file to select the root device */
279 getrootmount(rootdevname
);
281 /* find the last module in the chain */
283 for (xp
= file_findfile(NULL
, NULL
); xp
!= NULL
; xp
= xp
->f_next
) {
284 if (addr
< (xp
->f_addr
+ xp
->f_size
))
285 addr
= xp
->f_addr
+ xp
->f_size
;
287 /* pad to a page boundary */
288 addr
= roundup(addr
, PAGE_SIZE
);
290 /* copy our environment */
292 addr
= md_copyenv(addr
);
294 /* pad to a page boundary */
295 addr
= roundup(addr
, PAGE_SIZE
);
298 kfp
= file_findfile(NULL
, "elf32 kernel");
300 kfp
= file_findfile(NULL
, "elf kernel");
302 panic("can't find kernel file");
303 file_addmetadata(kfp
, MODINFOMD_HOWTO
, sizeof howto
, &howto
);
304 file_addmetadata(kfp
, MODINFOMD_ENVP
, sizeof envp
, &envp
);
305 file_addmetadata(kfp
, MODINFOMD_KERNEND
, sizeof kernend
, &kernend
);
308 size
= md_copymodules(0);
309 kernend
= roundup(addr
+ size
, PAGE_SIZE
);
311 md
= file_findmetadata(kfp
, MODINFOMD_KERNEND
);
312 bcopy(&kernend
, md
->md_data
, sizeof kernend
);
314 (void)md_copymodules(addr
);