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 struct mod_depend; 42 43 /* 44 * Object representing a file which has been loaded by the linker. 45 */ 46 typedef struct linker_file* linker_file_t; 47 typedef TAILQ_HEAD(, linker_file) linker_file_list_t; 48 49 typedef caddr_t linker_sym_t; /* opaque symbol */ 50 typedef c_caddr_t c_linker_sym_t; /* const opaque symbol */ 51 typedef int (*linker_function_name_callback_t)(const char *, void *); 52 53 /* 54 * expanded out linker_sym_t 55 */ 56 typedef struct linker_symval { 57 const char* name; 58 caddr_t value; 59 size_t size; 60 } linker_symval_t; 61 62 typedef int (*linker_function_nameval_callback_t)(linker_file_t, linker_symval_t *, void *); 63 64 struct common_symbol { 65 STAILQ_ENTRY(common_symbol) link; 66 char* name; 67 caddr_t address; 68 }; 69 70 struct linker_file { 71 KOBJ_FIELDS; 72 int refs; /* reference count */ 73 int userrefs; /* kldload(2) count */ 74 int flags; 75 #define LINKER_FILE_LINKED 0x1 /* file has been fully linked */ 76 TAILQ_ENTRY(linker_file) link; /* list of all loaded files */ 77 char* filename; /* file which was loaded */ 78 char* pathname; /* file name with full path */ 79 int id; /* unique id */ 80 caddr_t address; /* load address */ 81 size_t size; /* size of file */ 82 int ndeps; /* number of dependencies */ 83 linker_file_t* deps; /* list of dependencies */ 84 STAILQ_HEAD(, common_symbol) common; /* list of common symbols */ 85 TAILQ_HEAD(, module) modules; /* modules in this file */ 86 TAILQ_ENTRY(linker_file) loaded; /* preload dependency support */ 87 int loadcnt; /* load counter value */ 88 89 /* 90 * Function Boundary Tracing (FBT) or Statically Defined Tracing (SDT) 91 * fields. 92 */ 93 int nenabled; /* number of enabled probes. */ 94 int fbt_nentries; /* number of fbt entries created. */ 95 void *sdt_probes; 96 int sdt_nentries; 97 size_t sdt_nprobes; 98 size_t sdt_size; 99 }; 100 101 /* 102 * Object implementing a class of file (a.out, elf, etc.) 103 */ 104 typedef struct linker_class *linker_class_t; 105 typedef TAILQ_HEAD(, linker_class) linker_class_list_t; 106 107 struct linker_class { 108 KOBJ_CLASS_FIELDS; 109 TAILQ_ENTRY(linker_class) link; /* list of all file classes */ 110 }; 111 112 /* 113 * Function type used when iterating over the list of linker files. 114 */ 115 typedef int linker_predicate_t(linker_file_t, void *); 116 117 /* 118 * The "file" for the kernel. 119 */ 120 extern linker_file_t linker_kernel_file; 121 122 /* 123 * Obtain a reference to a module, loading it if required. 124 */ 125 int linker_reference_module(const char* _modname, struct mod_depend *_verinfo, 126 linker_file_t* _result); 127 128 /* 129 * Release a reference to a module, unloading it if there are no more 130 * references. Note that one should either provide a module name and 131 * optional version info or a linker file, but not both. 132 */ 133 int linker_release_module(const char *_modname, struct mod_depend *_verinfo, 134 linker_file_t _file); 135 136 /* 137 * Iterate over all of the currently loaded linker files calling the 138 * predicate function while the function returns 0. Returns the value 139 * returned by the last predicate function. 140 */ 141 int linker_file_foreach(linker_predicate_t *_predicate, void *_context); 142 143 /* 144 * Lookup a symbol in a file. If deps is TRUE, look in dependencies 145 * if not found in file. 146 */ 147 caddr_t linker_file_lookup_symbol(linker_file_t _file, const char* _name, 148 int _deps); 149 150 /* 151 * Lookup a linker set in a file. Return pointers to the first entry, 152 * last + 1, and count of entries. Use: for (p = start; p < stop; p++) {} 153 * void *start is really: "struct yoursetmember ***start;" 154 */ 155 int linker_file_lookup_set(linker_file_t _file, const char *_name, 156 void *_start, void *_stop, int *_count); 157 158 /* 159 * List all functions in a file. 160 */ 161 int linker_file_function_listall(linker_file_t, int (*)(linker_file_t, 162 linker_symval_t *, void *), void *); 163 164 /* 165 * Functions soley for use by the linker class handlers. 166 */ 167 int linker_add_class(linker_class_t _cls); 168 int linker_file_unload(linker_file_t _file, int flags); 169 int linker_load_dependencies(linker_file_t _lf); 170 linker_file_t linker_make_file(const char* _filename, linker_class_t _cls); 171 172 /* 173 * DDB Helpers, tuned specifically for ddb/db_kld.c 174 */ 175 int linker_ddb_lookup(const char *_symstr, c_linker_sym_t *_sym); 176 int linker_ddb_search_symbol(caddr_t _value, c_linker_sym_t *_sym, 177 long *_diffp); 178 int linker_ddb_symbol_values(c_linker_sym_t _sym, linker_symval_t *_symval); 179 180 181 /* HWPMC helper */ 182 void *linker_hwpmc_list_objects(void); 183 184 #endif /* _KERNEL */ 185 186 /* 187 * Module information subtypes 188 */ 189 #define MODINFO_END 0x0000 /* End of list */ 190 #define MODINFO_NAME 0x0001 /* Name of module (string) */ 191 #define MODINFO_TYPE 0x0002 /* Type of module (string) */ 192 #define MODINFO_ADDR 0x0003 /* Loaded address */ 193 #define MODINFO_SIZE 0x0004 /* Size of module */ 194 #define MODINFO_EMPTY 0x0005 /* Has been deleted */ 195 #define MODINFO_ARGS 0x0006 /* Parameters string */ 196 #define MODINFO_METADATA 0x8000 /* Module-specfic */ 197 198 #define MODINFOMD_AOUTEXEC 0x0001 /* a.out exec header */ 199 #define MODINFOMD_ELFHDR 0x0002 /* ELF header */ 200 #define MODINFOMD_SSYM 0x0003 /* start of symbols */ 201 #define MODINFOMD_ESYM 0x0004 /* end of symbols */ 202 #define MODINFOMD_DYNAMIC 0x0005 /* _DYNAMIC pointer */ 203 /* These values are MD on these two platforms */ 204 #if !defined(__sparc64__) && !defined(__powerpc__) 205 #define MODINFOMD_ENVP 0x0006 /* envp[] */ 206 #define MODINFOMD_HOWTO 0x0007 /* boothowto */ 207 #define MODINFOMD_KERNEND 0x0008 /* kernend */ 208 #endif 209 #define MODINFOMD_SHDR 0x0009 /* section header table */ 210 #define MODINFOMD_NOCOPY 0x8000 /* don't copy this metadata to the kernel */ 211 212 #define MODINFOMD_DEPLIST (0x4001 | MODINFOMD_NOCOPY) /* depends on */ 213 214 #ifdef _KERNEL 215 #define MD_FETCH(mdp, info, type) ({ \ 216 type *__p; \ 217 __p = (type *)preload_search_info((mdp), MODINFO_METADATA | (info)); \ 218 __p ? *__p : 0; \ 219 }) 220 #endif 221 222 #define LINKER_HINTS_VERSION 1 /* linker.hints file version */ 223 224 #ifdef _KERNEL 225 226 /* 227 * Module lookup 228 */ 229 extern caddr_t preload_metadata; 230 extern caddr_t preload_search_by_name(const char *_name); 231 extern caddr_t preload_search_by_type(const char *_type); 232 extern caddr_t preload_search_next_name(caddr_t _base); 233 extern caddr_t preload_search_info(caddr_t _mod, int _inf); 234 extern void preload_delete_name(const char *_name); 235 extern void preload_bootstrap_relocate(vm_offset_t _offset); 236 237 #ifdef KLD_DEBUG 238 239 extern int kld_debug; 240 #define KLD_DEBUG_FILE 1 /* file load/unload */ 241 #define KLD_DEBUG_SYM 2 /* symbol lookup */ 242 243 #define KLD_DPF(cat, args) \ 244 do { \ 245 if (kld_debug & KLD_DEBUG_##cat) printf args; \ 246 } while (0) 247 248 #else 249 250 #define KLD_DPF(cat, args) 251 252 #endif 253 254 typedef Elf_Addr elf_lookup_fn(linker_file_t, Elf_Size, int); 255 256 /* Support functions */ 257 int elf_reloc(linker_file_t _lf, Elf_Addr base, const void *_rel, int _type, elf_lookup_fn _lu); 258 int elf_reloc_local(linker_file_t _lf, Elf_Addr base, const void *_rel, int _type, elf_lookup_fn _lu); 259 const Elf_Sym *elf_get_sym(linker_file_t _lf, Elf_Size _symidx); 260 const char *elf_get_symname(linker_file_t _lf, Elf_Size _symidx); 261 262 int elf_cpu_load_file(linker_file_t); 263 int elf_cpu_unload_file(linker_file_t); 264 265 /* values for type */ 266 #define ELF_RELOC_REL 1 267 #define ELF_RELOC_RELA 2 268 269 /* 270 * This is version 1 of the KLD file status structure. It is identified 271 * by its _size_ in the version field. 272 */ 273 struct kld_file_stat_1 { 274 int version; /* set to sizeof(struct kld_file_stat_1) */ 275 char name[MAXPATHLEN]; 276 int refs; 277 int id; 278 caddr_t address; /* load address */ 279 size_t size; /* size in bytes */ 280 }; 281 #endif /* _KERNEL */ 282 283 struct kld_file_stat { 284 int version; /* set to sizeof(struct kld_file_stat) */ 285 char name[MAXPATHLEN]; 286 int refs; 287 int id; 288 caddr_t address; /* load address */ 289 size_t size; /* size in bytes */ 290 char pathname[MAXPATHLEN]; 291 }; 292 293 struct kld_sym_lookup { 294 int version; /* set to sizeof(struct kld_sym_lookup) */ 295 char *symname; /* Symbol name we are looking up */ 296 u_long symvalue; 297 size_t symsize; 298 }; 299 #define KLDSYM_LOOKUP 1 300 301 /* 302 * Flags for kldunloadf() and linker_file_unload() 303 */ 304 #define LINKER_UNLOAD_NORMAL 0 305 #define LINKER_UNLOAD_FORCE 1 306 307 #ifndef _KERNEL 308 309 #include <sys/cdefs.h> 310 311 __BEGIN_DECLS 312 int kldload(const char* _file); 313 int kldunload(int _fileid); 314 int kldunloadf(int _fileid, int flags); 315 int kldfind(const char* _file); 316 int kldnext(int _fileid); 317 int kldstat(int _fileid, struct kld_file_stat* _stat); 318 int kldfirstmod(int _fileid); 319 int kldsym(int _fileid, int _cmd, void *_data); 320 __END_DECLS 321 322 #endif 323 324 #endif /* !_SYS_LINKER_H_ */ 325