rtld.h revision 1.97 1 1.97 skrll /* $NetBSD: rtld.h,v 1.97 2010/12/24 12:41:43 skrll Exp $ */
2 1.1 cgd
3 1.1 cgd /*
4 1.1 cgd * Copyright 1996 John D. Polstra.
5 1.1 cgd * Copyright 1996 Matt Thomas <matt (at) 3am-software.com>
6 1.1 cgd * All rights reserved.
7 1.1 cgd *
8 1.1 cgd * Redistribution and use in source and binary forms, with or without
9 1.1 cgd * modification, are permitted provided that the following conditions
10 1.1 cgd * are met:
11 1.1 cgd * 1. Redistributions of source code must retain the above copyright
12 1.1 cgd * notice, this list of conditions and the following disclaimer.
13 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
14 1.1 cgd * notice, this list of conditions and the following disclaimer in the
15 1.1 cgd * documentation and/or other materials provided with the distribution.
16 1.1 cgd * 3. All advertising materials mentioning features or use of this software
17 1.1 cgd * must display the following acknowledgement:
18 1.1 cgd * This product includes software developed by John Polstra.
19 1.1 cgd * 4. The name of the author may not be used to endorse or promote products
20 1.1 cgd * derived from this software without specific prior written permission.
21 1.1 cgd *
22 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23 1.1 cgd * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24 1.1 cgd * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25 1.1 cgd * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
26 1.1 cgd * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
27 1.1 cgd * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 1.1 cgd * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 1.1 cgd * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 1.1 cgd * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
31 1.1 cgd * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 1.1 cgd */
33 1.1 cgd
34 1.8 christos #ifndef RTLD_H
35 1.8 christos #define RTLD_H
36 1.1 cgd
37 1.17 mycroft #include <dlfcn.h>
38 1.75 joerg #include <stdbool.h>
39 1.1 cgd #include <stddef.h>
40 1.1 cgd #include <sys/param.h>
41 1.1 cgd #include <sys/types.h>
42 1.17 mycroft #include <sys/queue.h>
43 1.1 cgd #include <sys/exec_elf.h>
44 1.1 cgd #include "rtldenv.h"
45 1.1 cgd #include "link.h"
46 1.1 cgd
47 1.14 thorpej #if defined(_RTLD_SOURCE)
48 1.14 thorpej
49 1.33 lukem #ifndef RTLD_DEFAULT_LIBRARY_PATH
50 1.9 kleink #define RTLD_DEFAULT_LIBRARY_PATH "/usr/lib"
51 1.33 lukem #endif
52 1.16 christos #define _PATH_LD_HINTS "/etc/ld.so.conf"
53 1.1 cgd
54 1.82 skrll extern size_t _rtld_pagesz;
55 1.8 christos
56 1.55 junyoung #define round_down(x) ((x) & ~(_rtld_pagesz - 1))
57 1.55 junyoung #define round_up(x) round_down((x) + _rtld_pagesz - 1)
58 1.1 cgd
59 1.1 cgd #define NEW(type) ((type *) xmalloc(sizeof(type)))
60 1.1 cgd #define CNEW(type) ((type *) xcalloc(sizeof(type)))
61 1.1 cgd
62 1.89 roy /*
63 1.89 roy * Fill in a DoneList with an allocation large enough to hold all of
64 1.90 roy * the currently-loaded objects. Keep this in a macro since it calls
65 1.90 roy * alloca and we want that to occur within the scope of the caller.
66 1.89 roy */
67 1.90 roy #define _rtld_donelist_init(dlp) \
68 1.90 roy ((dlp)->num_alloc = _rtld_objcount, \
69 1.90 roy (dlp)->objs = alloca((dlp)->num_alloc * sizeof((dlp)->objs[0])), \
70 1.90 roy assert((dlp)->objs != NULL), \
71 1.89 roy (dlp)->num_used = 0)
72 1.89 roy
73 1.14 thorpej #endif /* _RTLD_SOURCE */
74 1.14 thorpej
75 1.1 cgd /*
76 1.1 cgd * C++ has mandated the use of the following keywords for its new boolean
77 1.1 cgd * type. We might as well follow their lead.
78 1.1 cgd */
79 1.1 cgd struct Struct_Obj_Entry;
80 1.1 cgd
81 1.17 mycroft typedef struct Struct_Objlist_Entry {
82 1.17 mycroft SIMPLEQ_ENTRY(Struct_Objlist_Entry) link;
83 1.17 mycroft struct Struct_Obj_Entry *obj;
84 1.17 mycroft } Objlist_Entry;
85 1.17 mycroft
86 1.17 mycroft typedef SIMPLEQ_HEAD(Struct_Objlist, Struct_Objlist_Entry) Objlist;
87 1.17 mycroft
88 1.95 skrll typedef struct Struct_Name_Entry {
89 1.95 skrll STAILQ_ENTRY(Struct_Name_Entry) link;
90 1.95 skrll char name[1];
91 1.95 skrll } Name_Entry;
92 1.95 skrll
93 1.1 cgd typedef struct Struct_Needed_Entry {
94 1.8 christos struct Struct_Needed_Entry *next;
95 1.8 christos struct Struct_Obj_Entry *obj;
96 1.8 christos unsigned long name; /* Offset of name in string table */
97 1.52 junyoung } Needed_Entry;
98 1.1 cgd
99 1.1 cgd typedef struct _rtld_search_path_t {
100 1.8 christos struct _rtld_search_path_t *sp_next;
101 1.8 christos const char *sp_path;
102 1.8 christos size_t sp_pathlen;
103 1.52 junyoung } Search_Path;
104 1.1 cgd
105 1.21 christos
106 1.21 christos #define RTLD_MAX_ENTRY 10
107 1.21 christos #define RTLD_MAX_LIBRARY 4
108 1.22 christos #define RTLD_MAX_CTL 2
109 1.21 christos typedef struct _rtld_library_xform_t {
110 1.21 christos struct _rtld_library_xform_t *next;
111 1.21 christos char *name;
112 1.71 cube const char *ctlname;
113 1.21 christos struct {
114 1.21 christos char *value;
115 1.21 christos char *library[RTLD_MAX_LIBRARY];
116 1.21 christos } entry[RTLD_MAX_ENTRY];
117 1.21 christos } Library_Xform;
118 1.21 christos
119 1.1 cgd /*
120 1.1 cgd * Shared object descriptor.
121 1.1 cgd *
122 1.1 cgd * Items marked with "(%)" are dynamically allocated, and must be freed
123 1.1 cgd * when the structure is destroyed.
124 1.94 christos *
125 1.94 christos * The layout of this structure needs to be preserved because pre-2.0 binaries
126 1.94 christos * hard-coded the location of dlopen() and friends.
127 1.1 cgd */
128 1.1 cgd
129 1.1 cgd #define RTLD_MAGIC 0xd550b87a
130 1.1 cgd #define RTLD_VERSION 1
131 1.1 cgd
132 1.1 cgd typedef struct Struct_Obj_Entry {
133 1.8 christos Elf32_Word magic; /* Magic number (sanity check) */
134 1.8 christos Elf32_Word version; /* Version number of struct format */
135 1.1 cgd
136 1.8 christos struct Struct_Obj_Entry *next;
137 1.8 christos char *path; /* Pathname of underlying file (%) */
138 1.8 christos int refcount;
139 1.8 christos int dl_refcount; /* Number of times loaded by dlopen */
140 1.8 christos
141 1.8 christos /* These items are computed by map_object() or by digest_phdr(). */
142 1.8 christos caddr_t mapbase; /* Base address of mapped region */
143 1.8 christos size_t mapsize; /* Size of mapped region in bytes */
144 1.8 christos size_t textsize; /* Size of text segment in bytes */
145 1.8 christos Elf_Addr vaddrbase; /* Base address in shared object file */
146 1.8 christos caddr_t relocbase; /* Reloc const = mapbase - *vaddrbase */
147 1.8 christos Elf_Dyn *dynamic; /* Dynamic section */
148 1.8 christos caddr_t entry; /* Entry point */
149 1.95 skrll const Elf_Phdr *phdr; /* Program header (may be xmalloc'ed) */
150 1.95 skrll size_t phsize; /* Size of program header in bytes */
151 1.8 christos
152 1.8 christos /* Items from the dynamic section. */
153 1.8 christos Elf_Addr *pltgot; /* PLTGOT table */
154 1.8 christos const Elf_Rel *rel; /* Relocation entries */
155 1.8 christos const Elf_Rel *rellim; /* Limit of Relocation entries */
156 1.30 kleink const Elf_Rela *rela; /* Relocation entries */
157 1.30 kleink const Elf_Rela *relalim; /* Limit of Relocation entries */
158 1.8 christos const Elf_Rel *pltrel; /* PLT relocation entries */
159 1.8 christos const Elf_Rel *pltrellim; /* Limit of PLT relocation entries */
160 1.30 kleink const Elf_Rela *pltrela; /* PLT relocation entries */
161 1.30 kleink const Elf_Rela *pltrelalim; /* Limit of PLT relocation entries */
162 1.8 christos const Elf_Sym *symtab; /* Symbol table */
163 1.8 christos const char *strtab; /* String table */
164 1.8 christos unsigned long strsize; /* Size in bytes of string table */
165 1.58 mycroft #ifdef __mips__
166 1.8 christos Elf_Word local_gotno; /* Number of local GOT entries */
167 1.8 christos Elf_Word symtabno; /* Number of dynamic symbols */
168 1.8 christos Elf_Word gotsym; /* First dynamic symbol in GOT */
169 1.8 christos #endif
170 1.8 christos
171 1.93 skrll const Elf_Symindx *buckets; /* Hash table buckets array */
172 1.94 christos unsigned long unused1; /* Used to be nbuckets */
173 1.93 skrll const Elf_Symindx *chains; /* Hash table chain array */
174 1.8 christos unsigned long nchains; /* Number of chains */
175 1.8 christos
176 1.8 christos Search_Path *rpaths; /* Search path specified in object */
177 1.8 christos Needed_Entry *needed; /* Shared objects needed by this (%) */
178 1.8 christos
179 1.69 skrll void (*init)(void); /* Initialization function to call */
180 1.69 skrll void (*fini)(void); /* Termination function to call */
181 1.8 christos
182 1.86 skrll /* Entry points for dlopen() and friends. */
183 1.86 skrll void *(*dlopen)(const char *, int);
184 1.86 skrll void *(*dlsym)(void *, const char *);
185 1.86 skrll char *(*dlerror)(void);
186 1.86 skrll int (*dlclose)(void *);
187 1.86 skrll int (*dladdr)(const void *, Dl_info *);
188 1.86 skrll
189 1.67 mycroft u_int32_t mainprog:1, /* True if this is the main program */
190 1.67 mycroft rtld:1, /* True if this is the dynamic linker */
191 1.26 christos textrel:1, /* True if there are relocations to
192 1.8 christos * text seg */
193 1.26 christos symbolic:1, /* True if generated with
194 1.8 christos * "-Bsymbolic" */
195 1.44 mycroft printed:1, /* True if ldd has printed it */
196 1.61 mycroft isdynamic:1, /* True if this is a pure PIC object */
197 1.62 mycroft mainref:1, /* True if on _rtld_list_main */
198 1.76 ad globalref:1, /* True if on _rtld_list_global */
199 1.76 ad init_done:1, /* True if .init has been added */
200 1.76 ad init_called:1, /* True if .init function has been
201 1.76 ad * called */
202 1.76 ad fini_called:1, /* True if .fini function has been
203 1.76 ad * called */
204 1.97 skrll z_now:1, /* True if object's symbols should be
205 1.97 skrll bound immediately */
206 1.97 skrll z_nodelete:1, /* True if object should never be
207 1.97 skrll unloaded */
208 1.97 skrll z_initfirst:1, /* True if object's .init/.fini take
209 1.95 skrll * priority over others */
210 1.97 skrll z_noopen:1, /* True if object should never be
211 1.97 skrll dlopen'ed */
212 1.97 skrll phdr_loaded:1, /* Phdr is loaded and doesn't need to
213 1.95 skrll * be freed. */
214 1.97 skrll ref_nodel:1; /* Refcount increased to prevent dlclose */
215 1.1 cgd
216 1.8 christos struct link_map linkmap; /* for GDB */
217 1.17 mycroft
218 1.17 mycroft /* These items are computed by map_object() or by digest_phdr(). */
219 1.17 mycroft const char *interp; /* Pathname of the interpreter, if any */
220 1.17 mycroft Objlist dldags; /* Object belongs to these dlopened DAGs (%) */
221 1.17 mycroft Objlist dagmembers; /* DAG has these members (%) */
222 1.17 mycroft dev_t dev; /* Object's filesystem's device */
223 1.17 mycroft ino_t ino; /* Object's inode number */
224 1.88 skrll
225 1.88 skrll void *ehdr;
226 1.94 christos
227 1.94 christos uint32_t nbuckets; /* Number of buckets */
228 1.94 christos uint32_t nbuckets_m; /* Precomputed for fast remainder */
229 1.94 christos uint8_t nbuckets_s1;
230 1.94 christos uint8_t nbuckets_s2;
231 1.95 skrll size_t pathlen; /* Pathname length */
232 1.95 skrll STAILQ_HEAD(, Struct_Name_Entry) names; /* List of names for this object we
233 1.95 skrll know about. */
234 1.1 cgd } Obj_Entry;
235 1.1 cgd
236 1.89 roy typedef struct Struct_DoneList {
237 1.89 roy const Obj_Entry **objs; /* Array of object pointers */
238 1.89 roy unsigned int num_alloc; /* Allocated size of the array */
239 1.89 roy unsigned int num_used; /* Number of array slots used */
240 1.89 roy } DoneList;
241 1.89 roy
242 1.89 roy
243 1.14 thorpej #if defined(_RTLD_SOURCE)
244 1.14 thorpej
245 1.1 cgd extern struct r_debug _rtld_debug;
246 1.15 kleink extern Search_Path *_rtld_default_paths;
247 1.1 cgd extern Obj_Entry *_rtld_objlist;
248 1.1 cgd extern Obj_Entry **_rtld_objtail;
249 1.95 skrll extern u_int _rtld_objcount;
250 1.95 skrll extern u_int _rtld_objloads;
251 1.17 mycroft extern Obj_Entry *_rtld_objmain;
252 1.1 cgd extern Obj_Entry _rtld_objself;
253 1.1 cgd extern Search_Path *_rtld_paths;
254 1.21 christos extern Library_Xform *_rtld_xforms;
255 1.1 cgd extern bool _rtld_trust;
256 1.17 mycroft extern Objlist _rtld_list_global;
257 1.17 mycroft extern Objlist _rtld_list_main;
258 1.17 mycroft extern Elf_Sym _rtld_sym_zero;
259 1.1 cgd
260 1.97 skrll #define RTLD_MODEMASK 0x3
261 1.97 skrll
262 1.97 skrll /* Flags for _rtld_load_object() and friends. */
263 1.97 skrll #define _RTLD_GLOBAL 0x01 /* Add object to global DAG. */
264 1.97 skrll #define _RTLD_MAIN 0x02
265 1.97 skrll #define _RTLD_NOLOAD 0x04 /* dlopen() specified RTLD_NOLOAD. */
266 1.97 skrll #define _RTLD_DLOPEN 0x08 /* Load_object() called from dlopen(). */
267 1.97 skrll
268 1.1 cgd /* rtld.c */
269 1.70 skrll
270 1.95 skrll /* We export these symbols using _rtld_symbol_lookup and is_exported. */
271 1.96 joerg __dso_public char *dlerror(void);
272 1.96 joerg __dso_public void *dlopen(const char *, int);
273 1.96 joerg __dso_public void *dlsym(void *, const char *);
274 1.96 joerg __dso_public int dlclose(void *);
275 1.96 joerg __dso_public int dladdr(const void *, Dl_info *);
276 1.96 joerg __dso_public int dlinfo(void *, int, void *);
277 1.96 joerg __dso_public int dl_iterate_phdr(int (*)(struct dl_phdr_info *, size_t, void *),
278 1.95 skrll void *);
279 1.70 skrll
280 1.95 skrll /* These aren't exported */
281 1.69 skrll void _rtld_error(const char *, ...)
282 1.28 is __attribute__((__format__(__printf__,1,2)));
283 1.73 drochner void _rtld_die(void) __attribute__((__noreturn__));
284 1.69 skrll void *_rtld_objmain_sym(const char *);
285 1.69 skrll void _rtld_debug_state(void);
286 1.69 skrll void _rtld_linkmap_add(Obj_Entry *);
287 1.69 skrll void _rtld_linkmap_delete(Obj_Entry *);
288 1.76 ad void _rtld_objlist_push_head(Objlist *, Obj_Entry *);
289 1.76 ad void _rtld_objlist_push_tail(Objlist *, Obj_Entry *);
290 1.69 skrll Objlist_Entry *_rtld_objlist_find(Objlist *, const Obj_Entry *);
291 1.97 skrll void _rtld_ref_dag(Obj_Entry *);
292 1.1 cgd
293 1.74 christos /* expand.c */
294 1.74 christos size_t _rtld_expand_path(char *, size_t, const char *, const char *,\
295 1.74 christos const char *);
296 1.74 christos
297 1.1 cgd /* headers.c */
298 1.74 christos void _rtld_digest_dynamic(const char *, Obj_Entry *);
299 1.69 skrll Obj_Entry *_rtld_digest_phdr(const Elf_Phdr *, int, caddr_t);
300 1.1 cgd
301 1.1 cgd /* load.c */
302 1.72 christos Obj_Entry *_rtld_load_object(const char *, int);
303 1.69 skrll int _rtld_load_needed_objects(Obj_Entry *, int);
304 1.69 skrll int _rtld_preload(const char *);
305 1.1 cgd
306 1.97 skrll #define OBJ_ERR (Obj_Entry *)(-1)
307 1.1 cgd /* path.c */
308 1.74 christos void _rtld_add_paths(const char *, Search_Path **, const char *);
309 1.74 christos void _rtld_process_hints(const char *, Search_Path **, Library_Xform **,
310 1.74 christos const char *);
311 1.71 cube int _rtld_sysctl(const char *, void *, size_t *);
312 1.1 cgd
313 1.1 cgd /* reloc.c */
314 1.69 skrll int _rtld_do_copy_relocations(const Obj_Entry *);
315 1.69 skrll int _rtld_relocate_objects(Obj_Entry *, bool);
316 1.92 joerg int _rtld_relocate_nonplt_objects(Obj_Entry *);
317 1.69 skrll int _rtld_relocate_plt_lazy(const Obj_Entry *);
318 1.69 skrll int _rtld_relocate_plt_objects(const Obj_Entry *);
319 1.69 skrll void _rtld_setup_pltgot(const Obj_Entry *);
320 1.1 cgd
321 1.1 cgd /* search.c */
322 1.69 skrll Obj_Entry *_rtld_load_library(const char *, const Obj_Entry *, int);
323 1.1 cgd
324 1.1 cgd /* symbol.c */
325 1.69 skrll unsigned long _rtld_elf_hash(const char *);
326 1.69 skrll const Elf_Sym *_rtld_symlook_obj(const char *, unsigned long,
327 1.69 skrll const Obj_Entry *, bool);
328 1.69 skrll const Elf_Sym *_rtld_find_symdef(unsigned long, const Obj_Entry *,
329 1.69 skrll const Obj_Entry **, bool);
330 1.84 christos const Elf_Sym *_rtld_find_plt_symdef(unsigned long, const Obj_Entry *,
331 1.84 christos const Obj_Entry **, bool);
332 1.84 christos
333 1.17 mycroft const Elf_Sym *_rtld_symlook_list(const char *, unsigned long,
334 1.89 roy const Objlist *, const Obj_Entry **, bool, DoneList *);
335 1.68 christos const Elf_Sym *_rtld_symlook_default(const char *, unsigned long,
336 1.68 christos const Obj_Entry *, const Obj_Entry **, bool);
337 1.79 skrll const Elf_Sym *_rtld_symlook_needed(const char *, unsigned long,
338 1.89 roy const Needed_Entry *, const Obj_Entry **, bool,
339 1.89 roy DoneList *, DoneList *);
340 1.83 skrll #ifdef COMBRELOC
341 1.83 skrll void _rtld_combreloc_reset(const Obj_Entry *);
342 1.83 skrll #endif
343 1.1 cgd
344 1.1 cgd /* map_object.c */
345 1.92 joerg struct stat;
346 1.72 christos Obj_Entry *_rtld_map_object(const char *, int, const struct stat *);
347 1.17 mycroft void _rtld_obj_free(Obj_Entry *);
348 1.17 mycroft Obj_Entry *_rtld_obj_new(void);
349 1.31 thorpej
350 1.34 fredette /* function descriptors */
351 1.34 fredette #ifdef __HAVE_FUNCTION_DESCRIPTORS
352 1.69 skrll Elf_Addr _rtld_function_descriptor_alloc(const Obj_Entry *,
353 1.69 skrll const Elf_Sym *, Elf_Addr);
354 1.69 skrll const void *_rtld_function_descriptor_function(const void *);
355 1.34 fredette #endif /* __HAVE_FUNCTION_DESCRIPTORS */
356 1.1 cgd
357 1.14 thorpej #endif /* _RTLD_SOURCE */
358 1.14 thorpej
359 1.14 thorpej #endif /* RTLD_H */
360