xref: /freebsd/sys/sys/linker.h (revision 23f282aa31e9b6fceacd449020e936e98d6f2298)
1 /*-
2  * Copyright (c) 1997-2000 Doug Rabson
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 _SYS_LINKER_H_
30 #define _SYS_LINKER_H_
31 
32 #ifdef _KERNEL
33 
34 #include <machine/elf.h>
35 #include <sys/kobj.h>
36 
37 #ifdef MALLOC_DECLARE
38 MALLOC_DECLARE(M_LINKER);
39 #endif
40 
41 /*
42  * Object representing a file which has been loaded by the linker.
43  */
44 typedef struct linker_file* linker_file_t;
45 typedef TAILQ_HEAD(, linker_file) linker_file_list_t;
46 
47 typedef caddr_t linker_sym_t;		/* opaque symbol */
48 typedef c_caddr_t c_linker_sym_t;	/* const opaque symbol */
49 
50 /*
51  * expanded out linker_sym_t
52  */
53 typedef struct linker_symval {
54     const char*		name;
55     caddr_t		value;
56     size_t		size;
57 } linker_symval_t;
58 
59 struct common_symbol {
60     STAILQ_ENTRY(common_symbol) link;
61     char*		name;
62     caddr_t		address;
63 };
64 
65 struct linker_file {
66     KOBJ_FIELDS;
67     int			refs;		/* reference count */
68     int			userrefs;	/* kldload(2) count */
69     int			flags;
70 #define LINKER_FILE_LINKED	0x1	/* file has been fully linked */
71     TAILQ_ENTRY(linker_file) link;	/* list of all loaded files */
72     char*		filename;	/* file which was loaded */
73     int			id;		/* unique id */
74     caddr_t		address;	/* load address */
75     size_t		size;		/* size of file */
76     int			ndeps;		/* number of dependancies */
77     linker_file_t*	deps;		/* list of dependancies */
78     STAILQ_HEAD(, common_symbol) common; /* list of common symbols */
79     TAILQ_HEAD(, module) modules;	/* modules in this file */
80     TAILQ_ENTRY(linker_file) loaded;	/* preload dependency support */
81 };
82 
83 /*
84  * Object implementing a class of file (a.out, elf, etc.)
85  */
86 typedef struct linker_class *linker_class_t;
87 typedef TAILQ_HEAD(, linker_class) linker_class_list_t;
88 
89 struct linker_class {
90     KOBJ_CLASS_FIELDS;
91     TAILQ_ENTRY(linker_class) link;	/* list of all file classes */
92 };
93 
94 /*
95  * The "file" for the kernel.
96  */
97 extern linker_file_t	linker_kernel_file;
98 
99 /*
100  * Add a new file class to the linker.
101  */
102 int linker_add_class(linker_class_t cls);
103 
104 /*
105  * Load a file, trying each file class until one succeeds.
106  */
107 int linker_load_file(const char* filename, linker_file_t* result);
108 
109 /*
110  * Find a currently loaded file given its filename.
111  */
112 linker_file_t linker_find_file_by_name(const char* filename);
113 
114 /*
115  * Find a currently loaded file given its file id.
116  */
117 linker_file_t linker_find_file_by_id(int fileid);
118 
119 /*
120  * Called from a class handler when a file is laoded.
121  */
122 linker_file_t linker_make_file(const char* filename, linker_class_t cls);
123 
124 /*
125  * Unload a file, freeing up memory.
126  */
127 int linker_file_unload(linker_file_t file);
128 
129 /*
130  * Add a dependancy to a file.
131  */
132 int linker_file_add_dependancy(linker_file_t file, linker_file_t dep);
133 
134 /*
135  * Lookup a symbol in a file.  If deps is TRUE, look in dependancies
136  * if not found in file.
137  */
138 caddr_t linker_file_lookup_symbol(linker_file_t file, const char* name,
139 				  int deps);
140 
141 /*
142  * This routine is responsible for finding dependencies of userland
143  * initiated kldload(2)'s of files.
144  */
145 int linker_load_dependancies(linker_file_t lf);
146 
147 /*
148  * DDB Helpers, tuned specifically for ddb/db_kld.c
149  */
150 int linker_ddb_lookup(const char *symstr, c_linker_sym_t *sym);
151 int linker_ddb_search_symbol(caddr_t value, c_linker_sym_t *sym, long *diffp);
152 int linker_ddb_symbol_values(c_linker_sym_t sym, linker_symval_t *symval);
153 
154 
155 #endif	/* _KERNEL */
156 
157 /*
158  * Module information subtypes
159  */
160 #define MODINFO_END		0x0000		/* End of list */
161 #define MODINFO_NAME		0x0001		/* Name of module (string) */
162 #define MODINFO_TYPE		0x0002		/* Type of module (string) */
163 #define MODINFO_ADDR		0x0003		/* Loaded address */
164 #define MODINFO_SIZE		0x0004		/* Size of module */
165 #define MODINFO_EMPTY		0x0005		/* Has been deleted */
166 #define MODINFO_ARGS		0x0006		/* Parameters string */
167 #define MODINFO_METADATA	0x8000		/* Module-specfic */
168 
169 #define MODINFOMD_AOUTEXEC	0x0001		/* a.out exec header */
170 #define MODINFOMD_ELFHDR	0x0002		/* ELF header */
171 #define MODINFOMD_SSYM		0x0003		/* start of symbols */
172 #define MODINFOMD_ESYM		0x0004		/* end of symbols */
173 #define MODINFOMD_DYNAMIC	0x0005		/* _DYNAMIC pointer */
174 #define MODINFOMD_NOCOPY	0x8000		/* don't copy this metadata to the kernel */
175 
176 #define MODINFOMD_DEPLIST	(0x4001 | MODINFOMD_NOCOPY)	/* depends on */
177 
178 #ifdef _KERNEL
179 
180 /*
181  * Module lookup
182  */
183 extern caddr_t		preload_metadata;
184 extern caddr_t		preload_search_by_name(const char *name);
185 extern caddr_t		preload_search_by_type(const char *type);
186 extern caddr_t		preload_search_next_name(caddr_t base);
187 extern caddr_t		preload_search_info(caddr_t mod, int inf);
188 extern void		preload_delete_name(const char *name);
189 extern void		preload_bootstrap_relocate(vm_offset_t offset);
190 
191 #ifdef DDB
192 extern void		r_debug_state(void);
193 #endif
194 
195 #ifdef KLD_DEBUG
196 
197 extern int kld_debug;
198 #define KLD_DEBUG_FILE	1	/* file load/unload */
199 #define KLD_DEBUG_SYM	2	/* symbol lookup */
200 
201 #define KLD_DPF(cat, args)					\
202 	do {							\
203 		if (kld_debug & KLD_DEBUG_##cat) printf args;	\
204 	} while (0)
205 
206 #else
207 
208 #define KLD_DPF(cat, args)
209 
210 #endif
211 
212 /* Support functions */
213 int	elf_reloc(linker_file_t lf, const void *rel, int type, const char *sym);
214 /* values for type */
215 #define ELF_RELOC_REL	1
216 #define ELF_RELOC_RELA	2
217 
218 #endif /* _KERNEL */
219 
220 struct kld_file_stat {
221     int		version;	/* set to sizeof(linker_file_stat) */
222     char        name[MAXPATHLEN];
223     int		refs;
224     int		id;
225     caddr_t	address;	/* load address */
226     size_t	size;		/* size in bytes */
227 };
228 
229 struct kld_sym_lookup {
230     int		version;	/* set to sizeof(struct kld_sym_lookup) */
231     char	*symname;	/* Symbol name we are looking up */
232     u_long	symvalue;
233     size_t	symsize;
234 };
235 #define KLDSYM_LOOKUP	1
236 
237 #ifndef _KERNEL
238 
239 #include <sys/cdefs.h>
240 
241 __BEGIN_DECLS
242 int	kldload(const char* file);
243 int	kldunload(int fileid);
244 int	kldfind(const char* file);
245 int	kldnext(int fileid);
246 int	kldstat(int fileid, struct kld_file_stat* stat);
247 int	kldfirstmod(int fileid);
248 int	kldsym(int _fileid, int _cmd, void *_data);
249 __END_DECLS
250 
251 #endif
252 
253 #endif /* !_SYS_LINKER_H_ */
254