xref: /freebsd/libexec/rtld-elf/rtld.h (revision 2608aefc0b9af62b8a8f3120bc94fd86fefd46fd)
1 /*-
2  * Copyright 1996, 1997, 1998, 1999, 2000 John D. Polstra.
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 ``AS IS'' AND ANY EXPRESS OR
15  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24  *
25  * $FreeBSD$
26  */
27 
28 #ifndef RTLD_H /* { */
29 #define RTLD_H 1
30 
31 #include <machine/elf.h>
32 #include <sys/types.h>
33 #include <sys/queue.h>
34 
35 #include <elf-hints.h>
36 #include <link.h>
37 #include <setjmp.h>
38 #include <stddef.h>
39 
40 #include "rtld_lock.h"
41 #include "rtld_machdep.h"
42 
43 #ifdef COMPAT_32BIT
44 #undef STANDARD_LIBRARY_PATH
45 #undef _PATH_ELF_HINTS
46 #define	_PATH_ELF_HINTS		"/var/run/ld-elf32.so.hints"
47 /* For running 32 bit binaries  */
48 #define	STANDARD_LIBRARY_PATH	"/lib32:/usr/lib32"
49 #define LD_ "LD_32_"
50 #endif
51 
52 #ifndef STANDARD_LIBRARY_PATH
53 #define STANDARD_LIBRARY_PATH	"/lib:/usr/lib"
54 #endif
55 #ifndef LD_
56 #define LD_ "LD_"
57 #endif
58 
59 #define NEW(type)	((type *) xmalloc(sizeof(type)))
60 #define CNEW(type)	((type *) xcalloc(sizeof(type)))
61 
62 /* We might as well do booleans like C++. */
63 typedef unsigned char bool;
64 #define false	0
65 #define true	1
66 
67 extern size_t tls_last_offset;
68 extern size_t tls_last_size;
69 extern size_t tls_static_space;
70 extern int tls_dtv_generation;
71 extern int tls_max_index;
72 
73 struct stat;
74 struct Struct_Obj_Entry;
75 
76 /* Lists of shared objects */
77 typedef struct Struct_Objlist_Entry {
78     STAILQ_ENTRY(Struct_Objlist_Entry) link;
79     struct Struct_Obj_Entry *obj;
80 } Objlist_Entry;
81 
82 typedef STAILQ_HEAD(Struct_Objlist, Struct_Objlist_Entry) Objlist;
83 
84 /* Types of init and fini functions */
85 typedef void (*InitFunc)(void);
86 
87 /* Lists of shared object dependencies */
88 typedef struct Struct_Needed_Entry {
89     struct Struct_Needed_Entry *next;
90     struct Struct_Obj_Entry *obj;
91     unsigned long name;		/* Offset of name in string table */
92 } Needed_Entry;
93 
94 typedef struct Struct_Name_Entry {
95     STAILQ_ENTRY(Struct_Name_Entry) link;
96     char   name[1];
97 } Name_Entry;
98 
99 /* Lock object */
100 typedef struct Struct_LockInfo {
101     void *context;		/* Client context for creating locks */
102     void *thelock;		/* The one big lock */
103     /* Debugging aids. */
104     volatile int rcount;	/* Number of readers holding lock */
105     volatile int wcount;	/* Number of writers holding lock */
106     /* Methods */
107     void *(*lock_create)(void *context);
108     void (*rlock_acquire)(void *lock);
109     void (*wlock_acquire)(void *lock);
110     void (*rlock_release)(void *lock);
111     void (*wlock_release)(void *lock);
112     void (*lock_destroy)(void *lock);
113     void (*context_destroy)(void *context);
114 } LockInfo;
115 
116 typedef struct Struct_Ver_Entry {
117 	Elf_Word     hash;
118 	unsigned int flags;
119 	const char  *name;
120 	const char  *file;
121 } Ver_Entry;
122 
123 #define VER_INFO_HIDDEN	0x01
124 
125 /*
126  * Shared object descriptor.
127  *
128  * Items marked with "(%)" are dynamically allocated, and must be freed
129  * when the structure is destroyed.
130  *
131  * CAUTION: It appears that the JDK port peeks into these structures.
132  * It looks at "next" and "mapbase" at least.  Don't add new members
133  * near the front, until this can be straightened out.
134  */
135 typedef struct Struct_Obj_Entry {
136     /*
137      * These two items have to be set right for compatibility with the
138      * original ElfKit crt1.o.
139      */
140     Elf_Size magic;		/* Magic number (sanity check) */
141     Elf_Size version;		/* Version number of struct format */
142 
143     struct Struct_Obj_Entry *next;
144     char *path;			/* Pathname of underlying file (%) */
145     char *origin_path;		/* Directory path of origin file */
146     int refcount;
147     int dl_refcount;		/* Number of times loaded by dlopen */
148 
149     /* These items are computed by map_object() or by digest_phdr(). */
150     caddr_t mapbase;		/* Base address of mapped region */
151     size_t mapsize;		/* Size of mapped region in bytes */
152     size_t textsize;		/* Size of text segment in bytes */
153     Elf_Addr vaddrbase;		/* Base address in shared object file */
154     caddr_t relocbase;		/* Relocation constant = mapbase - vaddrbase */
155     const Elf_Dyn *dynamic;	/* Dynamic section */
156     caddr_t entry;		/* Entry point */
157     const Elf_Phdr *phdr;	/* Program header if it is mapped, else NULL */
158     size_t phsize;		/* Size of program header in bytes */
159     const char *interp;		/* Pathname of the interpreter, if any */
160 
161     /* TLS information */
162     int tlsindex;		/* Index in DTV for this module */
163     void *tlsinit;		/* Base address of TLS init block */
164     size_t tlsinitsize;		/* Size of TLS init block for this module */
165     size_t tlssize;		/* Size of TLS block for this module */
166     size_t tlsoffset;		/* Offset of static TLS block for this module */
167     size_t tlsalign;		/* Alignment of static TLS block */
168 
169     /* Items from the dynamic section. */
170     Elf_Addr *pltgot;		/* PLT or GOT, depending on architecture */
171     const Elf_Rel *rel;		/* Relocation entries */
172     unsigned long relsize;	/* Size in bytes of relocation info */
173     const Elf_Rela *rela;	/* Relocation entries with addend */
174     unsigned long relasize;	/* Size in bytes of addend relocation info */
175     const Elf_Rel *pltrel;	/* PLT relocation entries */
176     unsigned long pltrelsize;	/* Size in bytes of PLT relocation info */
177     const Elf_Rela *pltrela;	/* PLT relocation entries with addend */
178     unsigned long pltrelasize;	/* Size in bytes of PLT addend reloc info */
179     const Elf_Sym *symtab;	/* Symbol table */
180     const char *strtab;		/* String table */
181     unsigned long strsize;	/* Size in bytes of string table */
182 #ifdef __mips__
183     Elf_Word local_gotno;	/* Number of local GOT entries */
184     Elf_Word symtabno;		/* Number of dynamic symbols */
185     Elf_Word gotsym;		/* First dynamic symbol in GOT */
186 #endif
187 
188     const Elf_Verneed *verneed; /* Required versions. */
189     Elf_Word verneednum;	/* Number of entries in verneed table */
190     const Elf_Verdef  *verdef;	/* Provided versions. */
191     Elf_Word verdefnum;		/* Number of entries in verdef table */
192     const Elf_Versym *versyms;  /* Symbol versions table */
193 
194     const Elf_Hashelt *buckets;	/* Hash table buckets array */
195     unsigned long nbuckets;	/* Number of buckets */
196     const Elf_Hashelt *chains;	/* Hash table chain array */
197     unsigned long nchains;	/* Number of chains */
198 
199     char *rpath;		/* Search path specified in object */
200     Needed_Entry *needed;	/* Shared objects needed by this one (%) */
201     Needed_Entry *needed_filtees;
202     Needed_Entry *needed_aux_filtees;
203 
204     STAILQ_HEAD(, Struct_Name_Entry) names; /* List of names for this object we
205 					       know about. */
206     Ver_Entry *vertab;		/* Versions required /defined by this object */
207     int vernum;			/* Number of entries in vertab */
208 
209     Elf_Addr init;		/* Initialization function to call */
210     Elf_Addr fini;		/* Termination function to call */
211 
212     bool mainprog : 1;		/* True if this is the main program */
213     bool rtld : 1;		/* True if this is the dynamic linker */
214     bool textrel : 1;		/* True if there are relocations to text seg */
215     bool symbolic : 1;		/* True if generated with "-Bsymbolic" */
216     bool bind_now : 1;		/* True if all relocations should be made first */
217     bool traced : 1;		/* Already printed in ldd trace output */
218     bool jmpslots_done : 1;	/* Already have relocated the jump slots */
219     bool init_done : 1;		/* Already have added object to init list */
220     bool tls_done : 1;		/* Already allocated offset for static TLS */
221     bool phdr_alloc : 1;	/* Phdr is allocated and needs to be freed. */
222     bool z_origin : 1;		/* Process rpath and soname tokens */
223     bool z_nodelete : 1;	/* Do not unload the object and dependencies */
224     bool z_noopen : 1;		/* Do not load on dlopen */
225     bool z_loadfltr : 1;	/* Immediately load filtees */
226     bool ref_nodel : 1;		/* Refcount increased to prevent dlclose */
227     bool init_scanned: 1;	/* Object is already on init list. */
228     bool on_fini_list: 1;	/* Object is already on fini list. */
229     bool dag_inited : 1;	/* Object has its DAG initialized. */
230     bool filtees_loaded : 1;	/* Filtees loaded */
231 
232     struct link_map linkmap;	/* For GDB and dlinfo() */
233     Objlist dldags;		/* Object belongs to these dlopened DAGs (%) */
234     Objlist dagmembers;		/* DAG has these members (%) */
235     dev_t dev;			/* Object's filesystem's device */
236     ino_t ino;			/* Object's inode number */
237     void *priv;			/* Platform-dependant */
238 } Obj_Entry;
239 
240 #define RTLD_MAGIC	0xd550b87a
241 #define RTLD_VERSION	1
242 
243 #define RTLD_STATIC_TLS_EXTRA	128
244 
245 /* Flags to be passed into symlook_ family of functions. */
246 #define SYMLOOK_IN_PLT	0x01	/* Lookup for PLT symbol */
247 #define SYMLOOK_DLSYM	0x02	/* Return newes versioned symbol. Used by
248 				   dlsym. */
249 
250 /* Flags for load_object(). */
251 #define	RTLD_LO_NOLOAD	0x01	/* dlopen() specified RTLD_NOLOAD. */
252 #define	RTLD_LO_DLOPEN	0x02	/* Load_object() called from dlopen(). */
253 #define	RTLD_LO_TRACE	0x04	/* Only tracing. */
254 #define	RTLD_LO_NODELETE 0x08	/* Loaded object cannot be closed. */
255 #define	RTLD_LO_FILTEES 0x10	/* Loading filtee. */
256 
257 /*
258  * Symbol cache entry used during relocation to avoid multiple lookups
259  * of the same symbol.
260  */
261 typedef struct Struct_SymCache {
262     const Elf_Sym *sym;		/* Symbol table entry */
263     const Obj_Entry *obj;	/* Shared object which defines it */
264 } SymCache;
265 
266 /*
267  * This structure provides a reentrant way to keep a list of objects and
268  * check which ones have already been processed in some way.
269  */
270 typedef struct Struct_DoneList {
271     const Obj_Entry **objs;		/* Array of object pointers */
272     unsigned int num_alloc;		/* Allocated size of the array */
273     unsigned int num_used;		/* Number of array slots used */
274 } DoneList;
275 
276 struct Struct_RtldLockState {
277 	int lockstate;
278 	jmp_buf env;
279 };
280 
281 /*
282  * The pack of arguments and results for the symbol lookup functions.
283  */
284 typedef struct Struct_SymLook {
285     const char *name;
286     unsigned long hash;
287     const Ver_Entry *ventry;
288     int flags;
289     const Obj_Entry *defobj_out;
290     const Elf_Sym *sym_out;
291     struct Struct_RtldLockState *lockstate;
292 } SymLook;
293 
294 extern void _rtld_error(const char *, ...) __printflike(1, 2);
295 extern Obj_Entry *map_object(int, const char *, const struct stat *);
296 extern void *xcalloc(size_t);
297 extern void *xmalloc(size_t);
298 extern char *xstrdup(const char *);
299 extern Elf_Addr _GLOBAL_OFFSET_TABLE_[];
300 extern Elf_Sym sym_zero;	/* For resolving undefined weak refs. */
301 
302 extern void dump_relocations (Obj_Entry *);
303 extern void dump_obj_relocations (Obj_Entry *);
304 extern void dump_Elf_Rel (Obj_Entry *, const Elf_Rel *, u_long);
305 extern void dump_Elf_Rela (Obj_Entry *, const Elf_Rela *, u_long);
306 
307 /*
308  * Function declarations.
309  */
310 unsigned long elf_hash(const char *);
311 const Elf_Sym *find_symdef(unsigned long, const Obj_Entry *,
312   const Obj_Entry **, int, SymCache *, struct Struct_RtldLockState *);
313 void init_pltgot(Obj_Entry *);
314 void lockdflt_init(void);
315 void obj_free(Obj_Entry *);
316 Obj_Entry *obj_new(void);
317 void _rtld_bind_start(void);
318 void symlook_init(SymLook *, const char *);
319 int symlook_obj(SymLook *, const Obj_Entry *);
320 void *tls_get_addr_common(Elf_Addr** dtvp, int index, size_t offset);
321 void *allocate_tls(Obj_Entry *, void *, size_t, size_t);
322 void free_tls(void *, size_t, size_t);
323 void *allocate_module_tls(int index);
324 bool allocate_tls_offset(Obj_Entry *obj);
325 void free_tls_offset(Obj_Entry *obj);
326 const Ver_Entry *fetch_ventry(const Obj_Entry *obj, unsigned long);
327 
328 /*
329  * MD function declarations.
330  */
331 int do_copy_relocations(Obj_Entry *);
332 int reloc_non_plt(Obj_Entry *, Obj_Entry *, struct Struct_RtldLockState *);
333 int reloc_plt(Obj_Entry *);
334 int reloc_jmpslots(Obj_Entry *, struct Struct_RtldLockState *);
335 void allocate_initial_tls(Obj_Entry *);
336 
337 #endif /* } */
338