xref: /NextBSD/sys/boot/common/bootstrap.h (revision 287e3b14e9552995def1802ec9c5034f4adf28ec)
1 /*-
2  * Copyright (c) 1998 Michael Smith <msmith@freebsd.org>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
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.
13  *
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
24  * SUCH DAMAGE.
25  *
26  * $FreeBSD$
27  */
28 
29 #ifndef _BOOTSTRAP_H_
30 #define	_BOOTSTRAP_H_
31 
32 #include <sys/types.h>
33 #include <sys/queue.h>
34 #include <sys/linker_set.h>
35 
36 /*
37  * Generic device specifier; architecture-dependant
38  * versions may be larger, but should be allowed to
39  * overlap.
40  */
41 struct devdesc
42 {
43     struct devsw	*d_dev;
44     int			d_type;
45 #define DEVT_NONE	0
46 #define DEVT_DISK	1
47 #define DEVT_NET	2
48 #define	DEVT_CD		3
49 #define DEVT_ZFS	4
50     int			d_unit;
51     void		*d_opendata;
52 };
53 
54 /* Commands and return values; nonzero return sets command_errmsg != NULL */
55 typedef int	(bootblk_cmd_t)(int argc, char *argv[]);
56 extern char	*command_errmsg;
57 extern char	command_errbuf[];	/* XXX blah, length */
58 #define CMD_OK		0
59 #define CMD_ERROR	1
60 
61 /* interp.c */
62 void	interact(const char *rc);
63 int	include(const char *filename);
64 
65 /* interp_backslash.c */
66 char	*backslash(char *str);
67 
68 /* interp_parse.c */
69 int	parse(int *argc, char ***argv, char *str);
70 
71 /* interp_forth.c */
72 void	bf_init(const char *rc);
73 int	bf_run(char *line);
74 
75 /* boot.c */
76 int	autoboot(int timeout, char *prompt);
77 void	autoboot_maybe(void);
78 int	getrootmount(char *rootdev);
79 
80 /* misc.c */
81 char	*unargv(int argc, char *argv[]);
82 void	hexdump(caddr_t region, size_t len);
83 size_t	strlenout(vm_offset_t str);
84 char	*strdupout(vm_offset_t str);
85 void	kern_bzero(vm_offset_t dest, size_t len);
86 int	kern_pread(int fd, vm_offset_t dest, size_t len, off_t off);
87 void	*alloc_pread(int fd, off_t off, size_t len);
88 
89 /* bcache.c */
90 int	bcache_init(u_int nblks, size_t bsize);
91 void	bcache_flush(void);
92 int	bcache_strategy(void *devdata, int unit, int rw, daddr_t blk,
93 			size_t size, char *buf, size_t *rsize);
94 
95 /*
96  * Disk block cache
97  */
98 struct bcache_devdata
99 {
100     int         (*dv_strategy)(void *devdata, int rw, daddr_t blk, size_t size, char *buf, size_t *rsize);
101     void	*dv_devdata;
102 };
103 
104 /*
105  * Modular console support.
106  */
107 struct console
108 {
109     const char	*c_name;
110     const char	*c_desc;
111     int		c_flags;
112 #define C_PRESENTIN	(1<<0)	    /* console can provide input */
113 #define C_PRESENTOUT	(1<<1)	    /* console can provide output */
114 #define C_ACTIVEIN	(1<<2)	    /* user wants input from console */
115 #define C_ACTIVEOUT	(1<<3)	    /* user wants output to console */
116     void	(* c_probe)(struct console *cp);	/* set c_flags to match hardware */
117     int		(* c_init)(int arg);			/* reinit XXX may need more args */
118     void	(* c_out)(int c);			/* emit c */
119     int		(* c_in)(void);				/* wait for and return input */
120     int		(* c_ready)(void);			/* return nonzer if input waiting */
121 };
122 extern struct console	*consoles[];
123 void		cons_probe(void);
124 
125 /*
126  * Plug-and-play enumerator/configurator interface.
127  */
128 struct pnphandler
129 {
130     const char	*pp_name;		/* handler/bus name */
131     void	(* pp_enumerate)(void);	/* enumerate PnP devices, add to chain */
132 };
133 
134 struct pnpident
135 {
136     char			*id_ident;	/* ASCII identifier, actual format varies with bus/handler */
137     STAILQ_ENTRY(pnpident)	id_link;
138 };
139 
140 struct pnpinfo
141 {
142     char			*pi_desc;	/* ASCII description, optional */
143     int				pi_revision;	/* optional revision (or -1) if not supported */
144     char			*pi_module;	/* module/args nominated to handle device */
145     int				pi_argc;	/* module arguments */
146     char			**pi_argv;
147     struct pnphandler		*pi_handler;	/* handler which detected this device */
148     STAILQ_HEAD(,pnpident)	pi_ident;	/* list of identifiers */
149     STAILQ_ENTRY(pnpinfo)	pi_link;
150 };
151 
152 STAILQ_HEAD(pnpinfo_stql, pnpinfo);
153 
154 extern struct pnpinfo_stql pnp_devices;
155 
156 extern struct pnphandler	*pnphandlers[];		/* provided by MD code */
157 
158 void			pnp_addident(struct pnpinfo *pi, char *ident);
159 struct pnpinfo		*pnp_allocinfo(void);
160 void			pnp_freeinfo(struct pnpinfo *pi);
161 void			pnp_addinfo(struct pnpinfo *pi);
162 char			*pnp_eisaformat(u_int8_t *data);
163 
164 /*
165  *  < 0	- No ISA in system
166  * == 0	- Maybe ISA, search for read data port
167  *  > 0	- ISA in system, value is read data port address
168  */
169 extern int			isapnp_readport;
170 
171 /*
172  * Preloaded file metadata header.
173  *
174  * Metadata are allocated on our heap, and copied into kernel space
175  * before executing the kernel.
176  */
177 struct file_metadata
178 {
179     size_t			md_size;
180     u_int16_t			md_type;
181     struct file_metadata	*md_next;
182     char			md_data[1];	/* data are immediately appended */
183 };
184 
185 struct preloaded_file;
186 struct mod_depend;
187 
188 struct kernel_module
189 {
190     char			*m_name;	/* module name */
191     int				m_version;	/* module version */
192 /*    char			*m_args;*/	/* arguments for the module */
193     struct preloaded_file	*m_fp;
194     struct kernel_module	*m_next;
195 };
196 
197 /*
198  * Preloaded file information. Depending on type, file can contain
199  * additional units called 'modules'.
200  *
201  * At least one file (the kernel) must be loaded in order to boot.
202  * The kernel is always loaded first.
203  *
204  * String fields (m_name, m_type) should be dynamically allocated.
205  */
206 struct preloaded_file
207 {
208     char			*f_name;	/* file name */
209     char			*f_type;	/* verbose file type, eg 'ELF kernel', 'pnptable', etc. */
210     char			*f_args;	/* arguments for the file */
211     struct file_metadata	*f_metadata;	/* metadata that will be placed in the module directory */
212     int				f_loader;	/* index of the loader that read the file */
213     vm_offset_t			f_addr;		/* load address */
214     size_t			f_size;		/* file size */
215     struct kernel_module	*f_modules;	/* list of modules if any */
216     struct preloaded_file	*f_next;	/* next file */
217 };
218 
219 struct file_format
220 {
221     /* Load function must return EFTYPE if it can't handle the module supplied */
222     int		(* l_load)(char *filename, u_int64_t dest, struct preloaded_file **result);
223     /* Only a loader that will load a kernel (first module) should have an exec handler */
224     int		(* l_exec)(struct preloaded_file *mp);
225 };
226 
227 extern struct file_format	*file_formats[];	/* supplied by consumer */
228 extern struct preloaded_file	*preloaded_files;
229 
230 int			mod_load(char *name, struct mod_depend *verinfo, int argc, char *argv[]);
231 int			mod_loadkld(const char *name, int argc, char *argv[]);
232 void			unload(void);
233 
234 struct preloaded_file *file_alloc(void);
235 struct preloaded_file *file_findfile(const char *name, const char *type);
236 struct file_metadata *file_findmetadata(struct preloaded_file *fp, int type);
237 struct preloaded_file *file_loadraw(char *name, char *type, int insert);
238 void file_discard(struct preloaded_file *fp);
239 void file_addmetadata(struct preloaded_file *fp, int type, size_t size, void *p);
240 int  file_addmodule(struct preloaded_file *fp, char *modname, int version,
241 	struct kernel_module **newmp);
242 
243 /* MI module loaders */
244 #ifdef __elfN
245 /* Relocation types. */
246 #define ELF_RELOC_REL	1
247 #define ELF_RELOC_RELA	2
248 
249 /* Relocation offset for some architectures */
250 extern u_int64_t __elfN(relocation_offset);
251 
252 struct elf_file;
253 typedef Elf_Addr (symaddr_fn)(struct elf_file *ef, Elf_Size symidx);
254 
255 int	__elfN(loadfile)(char *filename, u_int64_t dest, struct preloaded_file **result);
256 int	__elfN(obj_loadfile)(char *filename, u_int64_t dest,
257 	    struct preloaded_file **result);
258 int	__elfN(reloc)(struct elf_file *ef, symaddr_fn *symaddr,
259 	    const void *reldata, int reltype, Elf_Addr relbase,
260 	    Elf_Addr dataaddr, void *data, size_t len);
261 int __elfN(loadfile_raw)(char *filename, u_int64_t dest,
262 	    struct preloaded_file **result, int multiboot);
263 int __elfN(load_modmetadata)(struct preloaded_file *fp, u_int64_t dest);
264 #endif
265 
266 /*
267  * Support for commands
268  */
269 struct bootblk_command
270 {
271     const char		*c_name;
272     const char		*c_desc;
273     bootblk_cmd_t	*c_fn;
274 };
275 
276 #define COMMAND_SET(tag, key, desc, func)				\
277     static bootblk_cmd_t func;						\
278     static struct bootblk_command _cmd_ ## tag = { key, desc, func };	\
279     DATA_SET(Xcommand_set, _cmd_ ## tag)
280 
281 SET_DECLARE(Xcommand_set, struct bootblk_command);
282 
283 /*
284  * The intention of the architecture switch is to provide a convenient
285  * encapsulation of the interface between the bootstrap MI and MD code.
286  * MD code may selectively populate the switch at runtime based on the
287  * actual configuration of the target system.
288  */
289 struct arch_switch
290 {
291     /* Automatically load modules as required by detected hardware */
292     int		(*arch_autoload)(void);
293     /* Locate the device for (name), return pointer to tail in (*path) */
294     int		(*arch_getdev)(void **dev, const char *name, const char **path);
295     /* Copy from local address space to module address space, similar to bcopy() */
296     ssize_t	(*arch_copyin)(const void *src, vm_offset_t dest,
297 			       const size_t len);
298     /* Copy to local address space from module address space, similar to bcopy() */
299     ssize_t	(*arch_copyout)(const vm_offset_t src, void *dest,
300 				const size_t len);
301     /* Read from file to module address space, same semantics as read() */
302     ssize_t	(*arch_readin)(const int fd, vm_offset_t dest,
303 			       const size_t len);
304     /* Perform ISA byte port I/O (only for systems with ISA) */
305     int		(*arch_isainb)(int port);
306     void	(*arch_isaoutb)(int port, int value);
307 
308     /*
309      * Interface to adjust the load address according to the "object"
310      * being loaded.
311      */
312     uint64_t	(*arch_loadaddr)(u_int type, void *data, uint64_t addr);
313 #define	LOAD_ELF	1	/* data points to the ELF header. */
314 #define	LOAD_RAW	2	/* data points to the file name. */
315 
316     /*
317      * Interface to inform MD code about a loaded (ELF) segment. This
318      * can be used to flush caches and/or set up translations.
319      */
320 #ifdef __elfN
321     void	(*arch_loadseg)(Elf_Ehdr *eh, Elf_Phdr *ph, uint64_t delta);
322 #else
323     void	(*arch_loadseg)(void *eh, void *ph, uint64_t delta);
324 #endif
325 
326     /* Probe ZFS pool(s), if needed. */
327     void	(*arch_zfs_probe)(void);
328 };
329 extern struct arch_switch archsw;
330 
331 /* This must be provided by the MD code, but should it be in the archsw? */
332 void	delay(int delay);
333 
334 void	dev_cleanup(void);
335 
336 time_t	time(time_t *tloc);
337 
338 #ifndef CTASSERT                /* Allow lint to override */
339 #define CTASSERT(x)             _CTASSERT(x, __LINE__)
340 #define _CTASSERT(x, y)         __CTASSERT(x, y)
341 #define __CTASSERT(x, y)        typedef char __assert ## y[(x) ? 1 : -1]
342 #endif
343 
344 #endif /* !_BOOTSTRAP_H_ */
345