xref: /freebsd/libexec/rtld-elf/rtld.h (revision 4928135658a9d0eaee37003df6137ab363fcb0b4)
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3  *
4  * Copyright 1996, 1997, 1998, 1999, 2000 John D. Polstra.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  *
27  * $FreeBSD$
28  */
29 
30 #ifndef RTLD_H /* { */
31 #define RTLD_H 1
32 
33 #include <machine/elf.h>
34 #include <sys/types.h>
35 #include <sys/queue.h>
36 
37 #include <elf-hints.h>
38 #include <link.h>
39 #include <stdarg.h>
40 #include <setjmp.h>
41 #include <stddef.h>
42 
43 #include "rtld_lock.h"
44 #include "rtld_machdep.h"
45 
46 #define NEW(type)	((type *) xmalloc(sizeof(type)))
47 #define CNEW(type)	((type *) xcalloc(1, sizeof(type)))
48 
49 /* We might as well do booleans like C++. */
50 typedef unsigned char bool;
51 #define false	0
52 #define true	1
53 
54 extern size_t tls_last_offset;
55 extern size_t tls_last_size;
56 extern size_t tls_static_space;
57 extern int tls_dtv_generation;
58 extern int tls_max_index;
59 
60 extern int npagesizes;
61 extern size_t *pagesizes;
62 
63 extern int main_argc;
64 extern char **main_argv;
65 extern char **environ;
66 
67 struct stat;
68 struct Struct_Obj_Entry;
69 
70 /* Lists of shared objects */
71 typedef struct Struct_Objlist_Entry {
72     STAILQ_ENTRY(Struct_Objlist_Entry) link;
73     struct Struct_Obj_Entry *obj;
74 } Objlist_Entry;
75 
76 typedef STAILQ_HEAD(Struct_Objlist, Struct_Objlist_Entry) Objlist;
77 
78 /* Types of init and fini functions */
79 typedef void (*InitFunc)(void);
80 typedef void (*InitArrFunc)(int, char **, char **);
81 
82 /* Lists of shared object dependencies */
83 typedef struct Struct_Needed_Entry {
84     struct Struct_Needed_Entry *next;
85     struct Struct_Obj_Entry *obj;
86     unsigned long name;		/* Offset of name in string table */
87 } Needed_Entry;
88 
89 typedef struct Struct_Name_Entry {
90     STAILQ_ENTRY(Struct_Name_Entry) link;
91     char   name[1];
92 } Name_Entry;
93 
94 /* Lock object */
95 typedef struct Struct_LockInfo {
96     void *context;		/* Client context for creating locks */
97     void *thelock;		/* The one big lock */
98     /* Debugging aids. */
99     volatile int rcount;	/* Number of readers holding lock */
100     volatile int wcount;	/* Number of writers holding lock */
101     /* Methods */
102     void *(*lock_create)(void *context);
103     void (*rlock_acquire)(void *lock);
104     void (*wlock_acquire)(void *lock);
105     void (*rlock_release)(void *lock);
106     void (*wlock_release)(void *lock);
107     void (*lock_destroy)(void *lock);
108     void (*context_destroy)(void *context);
109 } LockInfo;
110 
111 typedef struct Struct_Ver_Entry {
112 	Elf_Word     hash;
113 	unsigned int flags;
114 	const char  *name;
115 	const char  *file;
116 } Ver_Entry;
117 
118 typedef struct Struct_Sym_Match_Result {
119     const Elf_Sym *sym_out;
120     const Elf_Sym *vsymp;
121     int vcount;
122 } Sym_Match_Result;
123 
124 #define VER_INFO_HIDDEN	0x01
125 
126 /*
127  * Shared object descriptor.
128  *
129  * Items marked with "(%)" are dynamically allocated, and must be freed
130  * when the structure is destroyed.
131  *
132  * CAUTION: It appears that the JDK port peeks into these structures.
133  * It looks at "next" and "mapbase" at least.  Don't add new members
134  * near the front, until this can be straightened out.
135  */
136 typedef struct Struct_Obj_Entry {
137     /*
138      * These two items have to be set right for compatibility with the
139      * original ElfKit crt1.o.
140      */
141     Elf_Size magic;		/* Magic number (sanity check) */
142     Elf_Size version;		/* Version number of struct format */
143 
144     TAILQ_ENTRY(Struct_Obj_Entry) next;
145     char *path;			/* Pathname of underlying file (%) */
146     char *origin_path;		/* Directory path of origin file */
147     int refcount;		/* DAG references */
148     int holdcount;		/* Count of transient references */
149     int dl_refcount;		/* Number of times loaded by dlopen */
150 
151     /* These items are computed by map_object() or by digest_phdr(). */
152     caddr_t mapbase;		/* Base address of mapped region */
153     size_t mapsize;		/* Size of mapped region in bytes */
154     size_t textsize;		/* Size of text segment in bytes */
155     Elf_Addr vaddrbase;		/* Base address in shared object file */
156     caddr_t relocbase;		/* Relocation constant = mapbase - vaddrbase */
157     const Elf_Dyn *dynamic;	/* Dynamic section */
158     caddr_t entry;		/* Entry point */
159     const Elf_Phdr *phdr;	/* Program header if it is mapped, else NULL */
160     size_t phsize;		/* Size of program header in bytes */
161     const char *interp;		/* Pathname of the interpreter, if any */
162     Elf_Word stack_flags;
163 
164     /* TLS information */
165     int tlsindex;		/* Index in DTV for this module */
166     void *tlsinit;		/* Base address of TLS init block */
167     size_t tlsinitsize;		/* Size of TLS init block for this module */
168     size_t tlssize;		/* Size of TLS block for this module */
169     size_t tlsoffset;		/* Offset of static TLS block for this module */
170     size_t tlsalign;		/* Alignment of static TLS block */
171 
172     caddr_t relro_page;
173     size_t relro_size;
174 
175     /* Items from the dynamic section. */
176     Elf_Addr *pltgot;		/* PLT or GOT, depending on architecture */
177     const Elf_Rel *rel;		/* Relocation entries */
178     unsigned long relsize;	/* Size in bytes of relocation info */
179     const Elf_Rela *rela;	/* Relocation entries with addend */
180     unsigned long relasize;	/* Size in bytes of addend relocation info */
181     const Elf_Rel *pltrel;	/* PLT relocation entries */
182     unsigned long pltrelsize;	/* Size in bytes of PLT relocation info */
183     const Elf_Rela *pltrela;	/* PLT relocation entries with addend */
184     unsigned long pltrelasize;	/* Size in bytes of PLT addend reloc info */
185     const Elf_Sym *symtab;	/* Symbol table */
186     const char *strtab;		/* String table */
187     unsigned long strsize;	/* Size in bytes of string table */
188 #ifdef __mips__
189     Elf_Word local_gotno;	/* Number of local GOT entries */
190     Elf_Word symtabno;		/* Number of dynamic symbols */
191     Elf_Word gotsym;		/* First dynamic symbol in GOT */
192     Elf_Addr *mips_pltgot;	/* Second PLT GOT */
193 #endif
194 #ifdef __powerpc64__
195     Elf_Addr glink;		/* GLINK PLT call stub section */
196 #endif
197 
198     const Elf_Verneed *verneed; /* Required versions. */
199     Elf_Word verneednum;	/* Number of entries in verneed table */
200     const Elf_Verdef  *verdef;	/* Provided versions. */
201     Elf_Word verdefnum;		/* Number of entries in verdef table */
202     const Elf_Versym *versyms;  /* Symbol versions table */
203 
204     const Elf_Hashelt *buckets;	/* Hash table buckets array */
205     unsigned long nbuckets;	/* Number of buckets */
206     const Elf_Hashelt *chains;	/* Hash table chain array */
207     unsigned long nchains;	/* Number of entries in chain array */
208 
209     Elf32_Word nbuckets_gnu;		/* Number of GNU hash buckets*/
210     Elf32_Word symndx_gnu;		/* 1st accessible symbol on dynsym table */
211     Elf32_Word maskwords_bm_gnu;  	/* Bloom filter words - 1 (bitmask) */
212     Elf32_Word shift2_gnu;		/* Bloom filter shift count */
213     Elf32_Word dynsymcount;		/* Total entries in dynsym table */
214     Elf_Addr *bloom_gnu;		/* Bloom filter used by GNU hash func */
215     const Elf_Hashelt *buckets_gnu;	/* GNU hash table bucket array */
216     const Elf_Hashelt *chain_zero_gnu;	/* GNU hash table value array (Zeroed) */
217 
218     char *rpath;		/* Search path specified in object */
219     char *runpath;		/* Search path with different priority */
220     Needed_Entry *needed;	/* Shared objects needed by this one (%) */
221     Needed_Entry *needed_filtees;
222     Needed_Entry *needed_aux_filtees;
223 
224     STAILQ_HEAD(, Struct_Name_Entry) names; /* List of names for this object we
225 					       know about. */
226     Ver_Entry *vertab;		/* Versions required /defined by this object */
227     int vernum;			/* Number of entries in vertab */
228 
229     Elf_Addr init;		/* Initialization function to call */
230     Elf_Addr fini;		/* Termination function to call */
231     Elf_Addr preinit_array;	/* Pre-initialization array of functions */
232     Elf_Addr init_array;	/* Initialization array of functions */
233     Elf_Addr fini_array;	/* Termination array of functions */
234     int preinit_array_num;	/* Number of entries in preinit_array */
235     int init_array_num; 	/* Number of entries in init_array */
236     int fini_array_num; 	/* Number of entries in fini_array */
237 
238     int32_t osrel;		/* OSREL note value */
239 
240     bool mainprog : 1;		/* True if this is the main program */
241     bool rtld : 1;		/* True if this is the dynamic linker */
242     bool relocated : 1;		/* True if processed by relocate_objects() */
243     bool ver_checked : 1;	/* True if processed by rtld_verify_object_versions */
244     bool textrel : 1;		/* True if there are relocations to text seg */
245     bool symbolic : 1;		/* True if generated with "-Bsymbolic" */
246     bool bind_now : 1;		/* True if all relocations should be made first */
247     bool traced : 1;		/* Already printed in ldd trace output */
248     bool jmpslots_done : 1;	/* Already have relocated the jump slots */
249     bool init_done : 1;		/* Already have added object to init list */
250     bool tls_done : 1;		/* Already allocated offset for static TLS */
251     bool phdr_alloc : 1;	/* Phdr is allocated and needs to be freed. */
252     bool z_origin : 1;		/* Process rpath and soname tokens */
253     bool z_nodelete : 1;	/* Do not unload the object and dependencies */
254     bool z_noopen : 1;		/* Do not load on dlopen */
255     bool z_loadfltr : 1;	/* Immediately load filtees */
256     bool z_interpose : 1;	/* Interpose all objects but main */
257     bool z_nodeflib : 1;	/* Don't search default library path */
258     bool z_global : 1;		/* Make the object global */
259     bool ref_nodel : 1;		/* Refcount increased to prevent dlclose */
260     bool init_scanned: 1;	/* Object is already on init list. */
261     bool on_fini_list: 1;	/* Object is already on fini list. */
262     bool dag_inited : 1;	/* Object has its DAG initialized. */
263     bool filtees_loaded : 1;	/* Filtees loaded */
264     bool irelative : 1;		/* Object has R_MACHDEP_IRELATIVE relocs */
265     bool gnu_ifunc : 1;		/* Object has references to STT_GNU_IFUNC */
266     bool non_plt_gnu_ifunc : 1;	/* Object has non-plt IFUNC references */
267     bool crt_no_init : 1;	/* Object' crt does not call _init/_fini */
268     bool valid_hash_sysv : 1;	/* A valid System V hash hash tag is available */
269     bool valid_hash_gnu : 1;	/* A valid GNU hash tag is available */
270     bool dlopened : 1;		/* dlopen()-ed (vs. load statically) */
271     bool marker : 1;		/* marker on the global obj list */
272     bool unholdfree : 1;	/* unmap upon last unhold */
273     bool doomed : 1;		/* Object cannot be referenced */
274 
275     struct link_map linkmap;	/* For GDB and dlinfo() */
276     Objlist dldags;		/* Object belongs to these dlopened DAGs (%) */
277     Objlist dagmembers;		/* DAG has these members (%) */
278     dev_t dev;			/* Object's filesystem's device */
279     ino_t ino;			/* Object's inode number */
280     void *priv;			/* Platform-dependent */
281 } Obj_Entry;
282 
283 #define RTLD_MAGIC	0xd550b87a
284 #define RTLD_VERSION	1
285 
286 TAILQ_HEAD(obj_entry_q, Struct_Obj_Entry);
287 
288 #define RTLD_STATIC_TLS_EXTRA	128
289 
290 /* Flags to be passed into symlook_ family of functions. */
291 #define SYMLOOK_IN_PLT	0x01	/* Lookup for PLT symbol */
292 #define SYMLOOK_DLSYM	0x02	/* Return newest versioned symbol. Used by
293 				   dlsym. */
294 #define	SYMLOOK_EARLY	0x04	/* Symlook is done during initialization. */
295 #define	SYMLOOK_IFUNC	0x08	/* Allow IFUNC processing in
296 				   reloc_non_plt(). */
297 
298 /* Flags for load_object(). */
299 #define	RTLD_LO_NOLOAD	0x01	/* dlopen() specified RTLD_NOLOAD. */
300 #define	RTLD_LO_DLOPEN	0x02	/* Load_object() called from dlopen(). */
301 #define	RTLD_LO_TRACE	0x04	/* Only tracing. */
302 #define	RTLD_LO_NODELETE 0x08	/* Loaded object cannot be closed. */
303 #define	RTLD_LO_FILTEES 0x10	/* Loading filtee. */
304 #define	RTLD_LO_EARLY	0x20	/* Do not call ctors, postpone it to the
305 				   initialization during the image start. */
306 
307 /*
308  * Symbol cache entry used during relocation to avoid multiple lookups
309  * of the same symbol.
310  */
311 typedef struct Struct_SymCache {
312     const Elf_Sym *sym;		/* Symbol table entry */
313     const Obj_Entry *obj;	/* Shared object which defines it */
314 } SymCache;
315 
316 /*
317  * This structure provides a reentrant way to keep a list of objects and
318  * check which ones have already been processed in some way.
319  */
320 typedef struct Struct_DoneList {
321     const Obj_Entry **objs;		/* Array of object pointers */
322     unsigned int num_alloc;		/* Allocated size of the array */
323     unsigned int num_used;		/* Number of array slots used */
324 } DoneList;
325 
326 struct Struct_RtldLockState {
327 	int lockstate;
328 	sigjmp_buf env;
329 };
330 
331 struct fill_search_info_args {
332 	int request;
333 	unsigned int flags;
334 	struct dl_serinfo *serinfo;
335 	struct dl_serpath *serpath;
336 	char *strspace;
337 };
338 
339 /*
340  * The pack of arguments and results for the symbol lookup functions.
341  */
342 typedef struct Struct_SymLook {
343     const char *name;
344     unsigned long hash;
345     uint32_t hash_gnu;
346     const Ver_Entry *ventry;
347     int flags;
348     const Obj_Entry *defobj_out;
349     const Elf_Sym *sym_out;
350     struct Struct_RtldLockState *lockstate;
351 } SymLook;
352 
353 void _rtld_error(const char *, ...) __printflike(1, 2) __exported;
354 void rtld_die(void) __dead2;
355 const char *rtld_strerror(int);
356 Obj_Entry *map_object(int, const char *, const struct stat *);
357 void *xcalloc(size_t, size_t);
358 void *xmalloc(size_t);
359 char *xstrdup(const char *);
360 void *malloc_aligned(size_t size, size_t align);
361 void free_aligned(void *ptr);
362 extern Elf_Addr _GLOBAL_OFFSET_TABLE_[];
363 extern Elf_Sym sym_zero;	/* For resolving undefined weak refs. */
364 extern bool ld_bind_not;
365 
366 void dump_relocations(Obj_Entry *);
367 void dump_obj_relocations(Obj_Entry *);
368 void dump_Elf_Rel(Obj_Entry *, const Elf_Rel *, u_long);
369 void dump_Elf_Rela(Obj_Entry *, const Elf_Rela *, u_long);
370 
371 /*
372  * Function declarations.
373  */
374 unsigned long elf_hash(const char *);
375 const Elf_Sym *find_symdef(unsigned long, const Obj_Entry *,
376   const Obj_Entry **, int, SymCache *, struct Struct_RtldLockState *);
377 void lockdflt_init(void);
378 void digest_notes(Obj_Entry *, Elf_Addr, Elf_Addr);
379 Obj_Entry *globallist_curr(const Obj_Entry *obj);
380 Obj_Entry *globallist_next(const Obj_Entry *obj);
381 void obj_free(Obj_Entry *);
382 Obj_Entry *obj_new(void);
383 void _rtld_bind_start(void);
384 void *rtld_resolve_ifunc(const Obj_Entry *obj, const Elf_Sym *def);
385 void symlook_init(SymLook *, const char *);
386 int symlook_obj(SymLook *, const Obj_Entry *);
387 void *tls_get_addr_common(Elf_Addr** dtvp, int index, size_t offset);
388 void *allocate_tls(Obj_Entry *, void *, size_t, size_t);
389 void free_tls(void *, size_t, size_t);
390 void *allocate_module_tls(int index);
391 bool allocate_tls_offset(Obj_Entry *obj);
392 void free_tls_offset(Obj_Entry *obj);
393 const Ver_Entry *fetch_ventry(const Obj_Entry *obj, unsigned long);
394 int convert_prot(int elfflags);
395 
396 /*
397  * MD function declarations.
398  */
399 int do_copy_relocations(Obj_Entry *);
400 int reloc_non_plt(Obj_Entry *, Obj_Entry *, int flags,
401     struct Struct_RtldLockState *);
402 int reloc_plt(Obj_Entry *);
403 int reloc_jmpslots(Obj_Entry *, int flags, struct Struct_RtldLockState *);
404 int reloc_iresolve(Obj_Entry *, struct Struct_RtldLockState *);
405 int reloc_gnu_ifunc(Obj_Entry *, int flags, struct Struct_RtldLockState *);
406 void ifunc_init(Elf_Auxinfo[__min_size(AT_COUNT)]);
407 void pre_init(void);
408 void init_pltgot(Obj_Entry *);
409 void allocate_initial_tls(Obj_Entry *);
410 
411 #endif /* } */
412