OSDN Git Service

ldso: use _dl_strdup and _dl_dprintf only in ld-uClibc.so
[uclinux-h8/uclibc-ng.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 #include <stdbool.h>
32 #define _FCNTL_H
33 #include <bits/fcntl.h>
34 #include <bits/wordsize.h>
35 /* Pull in the arch specific type information */
36 #include <sys/types.h>
37 /* Pull in the arch specific page size */
38 #include <bits/uClibc_page.h>
39 /* Pull in the MIN macro */
40 #include <sys/param.h>
41 /* Pull in the ldso syscalls and string functions */
42 #ifndef __ARCH_HAS_NO_SHARED__
43 #include <dl-syscall.h>
44 #include <dl-string.h>
45 #include <dlfcn.h>
46 /* Now the ldso specific headers */
47 #include <dl-elf.h>
48 #ifdef __UCLIBC_HAS_TLS__
49 /* Defines USE_TLS */
50 #include <tls.h>
51 #endif
52 #include <dl-hash.h>
53
54 /* common align masks, if not specified by sysdep headers */
55 #ifndef ADDR_ALIGN
56 #define ADDR_ALIGN (_dl_pagesize - 1)
57 #endif
58
59 #ifndef PAGE_ALIGN
60 #define PAGE_ALIGN (~ADDR_ALIGN)
61 #endif
62
63 #ifndef OFFS_ALIGN
64 #define OFFS_ALIGN (PAGE_ALIGN & ~(1ul << (sizeof(_dl_pagesize) * 8 - 1)))
65 #endif
66
67 /* For INIT/FINI dependency sorting. */
68 struct init_fini_list {
69         struct init_fini_list *next;
70         struct elf_resolve *tpnt;
71 };
72
73 /* Global variables used within the shared library loader */
74 extern char *_dl_library_path;         /* Where we look for libraries */
75 extern char *_dl_preload;              /* Things to be loaded before the libs */
76 #ifdef __LDSO_SEARCH_INTERP_PATH__
77 extern const char *_dl_ldsopath;       /* Where the shared lib loader was found */
78 #endif
79 extern const char *_dl_progname;       /* The name of the executable being run */
80 extern size_t _dl_pagesize;            /* Store the page size for use later */
81 #ifdef __LDSO_PRELINK_SUPPORT__
82 extern char *_dl_trace_prelink;        /* Library for prelinking trace */
83 extern struct elf_resolve *_dl_trace_prelink_map;       /* Library map for prelinking trace */
84 #else
85 #define _dl_trace_prelink               0
86 #endif
87 #ifdef __DSBT__
88 extern void **_dl_ldso_dsbt;
89 #endif
90
91 #if defined(USE_TLS) && USE_TLS
92 extern void _dl_add_to_slotinfo (struct link_map  *l);
93 extern void ** __attribute__ ((const)) _dl_initial_error_catch_tsd (void);
94 #endif
95
96 #ifdef USE_TLS
97 void _dl_add_to_slotinfo (struct link_map  *l);
98 void ** __attribute__ ((const)) _dl_initial_error_catch_tsd (void);
99 #endif
100 #ifdef __SUPPORT_LD_DEBUG__
101 extern char *_dl_debug;
102 extern char *_dl_debug_symbols;
103 extern char *_dl_debug_move;
104 extern char *_dl_debug_reloc;
105 extern char *_dl_debug_detail;
106 extern char *_dl_debug_nofixups;
107 extern char *_dl_debug_bindings;
108 extern int   _dl_debug_file;
109 # define __dl_debug_dprint(fmt, args...) \
110         _dl_dprintf(_dl_debug_file, "%s:%i: " fmt, __func__, __LINE__, ## args);
111 # define _dl_if_debug_dprint(fmt, args...) \
112         do { if (_dl_debug) __dl_debug_dprint(fmt, ## args); } while (0)
113 #else
114 # define __dl_debug_dprint(fmt, args...) do {} while (0)
115 # define _dl_if_debug_dprint(fmt, args...) do {} while (0)
116 /* disabled on purpose, _dl_debug_file should be guarded by __SUPPORT_LD_DEBUG__
117 # define _dl_debug_file 2*/
118 #endif /* __SUPPORT_LD_DEBUG__ */
119
120 #ifdef IS_IN_rtld
121 # ifdef __SUPPORT_LD_DEBUG__
122 #  define _dl_assert(expr)                                              \
123         do {                                                            \
124                 if (!(expr)) {                                          \
125                         __dl_debug_dprint("assert(%s)\n", #expr);       \
126                         _dl_exit(45);                                   \
127                 }                                                       \
128         } while (0)
129 # else
130 #  define _dl_assert(expr) ((void)0)
131 # endif
132 #else
133 # include <assert.h>
134 # define _dl_assert(expr) assert(expr)
135 #endif
136
137 #ifdef __SUPPORT_LD_DEBUG_EARLY__
138 # define _dl_debug_early(fmt, args...) __dl_debug_dprint(fmt, ## args)
139 #else
140 # define _dl_debug_early(fmt, args...) do {} while (0)
141 #endif /* __SUPPORT_LD_DEBUG_EARLY__ */
142
143 #ifndef NULL
144 #define NULL ((void *) 0)
145 #endif
146
147 extern void *_dl_malloc(size_t size);
148 extern void *_dl_calloc(size_t __nmemb, size_t __size);
149 extern void *_dl_realloc(void *__ptr, size_t __size);
150 extern void _dl_free(void *);
151 extern char *_dl_getenv(const char *symbol, char **envp);
152 extern void _dl_unsetenv(const char *symbol, char **envp);
153 #ifdef IS_IN_rtld
154 extern char *_dl_strdup(const char *string);
155 extern void _dl_dprintf(int, const char *, ...);
156 #else
157 # include <string.h>
158 # define _dl_strdup strdup
159 # include <stdio.h>
160 # ifdef __USE_GNU
161 #  define _dl_dprintf dprintf
162 # else
163 #  define _dl_dprintf(fd, fmt, args...) fprintf(stderr, fmt, ## args)
164 # endif
165 #endif
166
167 #ifndef DL_GET_READY_TO_RUN_EXTRA_PARMS
168 # define DL_GET_READY_TO_RUN_EXTRA_PARMS
169 #endif
170 #ifndef DL_GET_READY_TO_RUN_EXTRA_ARGS
171 # define DL_GET_READY_TO_RUN_EXTRA_ARGS
172 #endif
173
174 extern void *_dl_get_ready_to_run(struct elf_resolve *tpnt, DL_LOADADDR_TYPE load_addr,
175                 ElfW(auxv_t) auxvt[AT_EGID + 1], char **envp, char **argv
176                 DL_GET_READY_TO_RUN_EXTRA_PARMS);
177
178 #ifdef HAVE_DL_INLINES_H
179 #include <dl-inlines.h>
180 #endif
181
182 #else /* __ARCH_HAS_NO_SHARED__ */
183 #include <dl-defs.h>
184 #endif
185
186 #endif /* _LDSO_H */