OSDN Git Service

Merge commit 'origin/master' into prelink
[uclinux-h8/uClibc.git] / ldso / include / ldso.h
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Copyright (C) 2000-2005 by Erik Andersen <andersen@codepoet.org>
4  *
5  * GNU Lesser General Public License version 2.1 or later.
6  */
7
8 #ifndef _LDSO_H_
9 #define _LDSO_H_
10
11 #include <features.h>
12
13 /* Prepare for the case that `__builtin_expect' is not available.  */
14 #if defined __GNUC__ && __GNUC__ == 2 && __GNUC_MINOR__ < 96
15 #define __builtin_expect(x, expected_value) (x)
16 #endif
17 #ifndef likely
18 # define likely(x)      __builtin_expect((!!(x)),1)
19 #endif
20 #ifndef unlikely
21 # define unlikely(x)    __builtin_expect((!!(x)),0)
22 #endif
23 #ifndef __LINUX_COMPILER_H
24 #define __LINUX_COMPILER_H
25 #endif
26
27 /* Pull in compiler and arch stuff */
28 #include <stdlib.h>
29 #include <stdarg.h>
30 #include <stddef.h> /* for ptrdiff_t */
31 #define _FCNTL_H
32 #include <bits/fcntl.h>
33 #include <bits/wordsize.h>
34 /* Pull in the arch specific type information */
35 #include <sys/types.h>
36 /* Pull in the arch specific page size */
37 #include <bits/uClibc_page.h>
38 /* Pull in the ldso syscalls and string functions */
39 #ifndef __ARCH_HAS_NO_SHARED__
40 #include <dl-syscall.h>
41 #include <dl-string.h>
42 #include <dlfcn.h>
43 /* Now the ldso specific headers */
44 #include <dl-elf.h>
45 #ifdef __UCLIBC_HAS_TLS__
46 /* Defines USE_TLS */
47 #include <tls.h>
48 #endif
49 #include <dl-hash.h>
50
51 /* common align masks, if not specified by sysdep headers */
52 #ifndef ADDR_ALIGN
53 #define ADDR_ALIGN (_dl_pagesize - 1)
54 #endif
55
56 #ifndef PAGE_ALIGN
57 #define PAGE_ALIGN (~ADDR_ALIGN)
58 #endif
59
60 #ifndef OFFS_ALIGN
61 #define OFFS_ALIGN (PAGE_ALIGN & ~(1ul << (sizeof(_dl_pagesize) * 8 - 1)))
62 #endif
63
64 /* For INIT/FINI dependency sorting. */
65 struct init_fini_list {
66         struct init_fini_list *next;
67         struct elf_resolve *tpnt;
68 };
69
70 /* Global variables used within the shared library loader */
71 extern char *_dl_library_path;         /* Where we look for libraries */
72 extern char *_dl_preload;              /* Things to be loaded before the libs */
73 extern char *_dl_ldsopath;             /* Where the shared lib loader was found */
74 extern const char *_dl_progname;       /* The name of the executable being run */
75 extern size_t _dl_pagesize;            /* Store the page size for use later */
76 #ifdef __LDSO_PRELINK_SUPPORT__
77 extern char *_dl_trace_prelink;        /* Library for prelinking trace */
78 extern struct elf_resolve *_dl_trace_prelink_map;       /* Library map for prelinking trace */
79 #else
80 #define _dl_trace_prelink               0
81 #endif
82
83 #if defined(USE_TLS) && USE_TLS
84 extern void _dl_add_to_slotinfo (struct link_map  *l);
85 extern void ** __attribute__ ((const)) _dl_initial_error_catch_tsd (void);
86 #endif
87
88 #ifdef USE_TLS
89 void _dl_add_to_slotinfo (struct link_map  *l);
90 void ** __attribute__ ((const)) _dl_initial_error_catch_tsd (void);
91 #endif
92 #ifdef __SUPPORT_LD_DEBUG__
93 extern char *_dl_debug;
94 extern char *_dl_debug_symbols;
95 extern char *_dl_debug_move;
96 extern char *_dl_debug_reloc;
97 extern char *_dl_debug_detail;
98 extern char *_dl_debug_nofixups;
99 extern char *_dl_debug_bindings;
100 extern int   _dl_debug_file;
101 # define __dl_debug_dprint(fmt, args...) \
102         _dl_dprintf(_dl_debug_file, "%s:%i: " fmt, __FUNCTION__, __LINE__, ## args);
103 # define _dl_if_debug_dprint(fmt, args...) \
104         do { if (_dl_debug) __dl_debug_dprint(fmt, ## args); } while (0)
105 #else
106 # define __dl_debug_dprint(fmt, args...) do {} while (0)
107 # define _dl_if_debug_dprint(fmt, args...) do {} while (0)
108 # define _dl_debug_file 2
109 #endif /* __SUPPORT_LD_DEBUG__ */
110
111 #ifdef IS_IN_rtld
112 # ifdef __SUPPORT_LD_DEBUG__
113 #  define _dl_assert(expr)                                              \
114         do {                                                            \
115                 if (!(expr)) {                                          \
116                         __dl_debug_dprint("assert(%s)\n", #expr);       \
117                         _dl_exit(45);                                   \
118                 }                                                       \
119         } while (0)
120 # else
121 #  define _dl_assert(expr) ((void)0)
122 # endif
123 #else
124 # include <assert.h>
125 # define _dl_assert(expr) assert(expr)
126 #endif
127
128 #ifdef __SUPPORT_LD_DEBUG_EARLY__
129 # define _dl_debug_early(fmt, args...) __dl_debug_dprint(fmt, ## args)
130 #else
131 # define _dl_debug_early(fmt, args...) do {} while (0)
132 #endif /* __SUPPORT_LD_DEBUG_EARLY__ */
133
134 #ifndef NULL
135 #define NULL ((void *) 0)
136 #endif
137
138 extern void *_dl_malloc(size_t size);
139 extern void *_dl_calloc(size_t __nmemb, size_t __size);
140 extern void *_dl_realloc(void *__ptr, size_t __size);
141 extern void _dl_free(void *);
142 extern char *_dl_getenv(const char *symbol, char **envp);
143 extern void _dl_unsetenv(const char *symbol, char **envp);
144 extern char *_dl_strdup(const char *string);
145 extern void _dl_dprintf(int, const char *, ...);
146
147 #ifndef DL_GET_READY_TO_RUN_EXTRA_PARMS
148 # define DL_GET_READY_TO_RUN_EXTRA_PARMS
149 #endif
150 #ifndef DL_GET_READY_TO_RUN_EXTRA_ARGS
151 # define DL_GET_READY_TO_RUN_EXTRA_ARGS
152 #endif
153
154 extern void *_dl_get_ready_to_run(struct elf_resolve *tpnt, DL_LOADADDR_TYPE load_addr,
155                 ElfW(auxv_t) auxvt[AT_EGID + 1], char **envp, char **argv
156                 DL_GET_READY_TO_RUN_EXTRA_PARMS);
157
158 #ifdef HAVE_DL_INLINES_H
159 #include <dl-inlines.h>
160 #endif
161
162 #else /* __ARCH_HAS_NO_SHARED__ */
163 #include <dl-defs.h>
164 #endif
165
166 #endif /* _LDSO_H_ */