]> git.ipfire.org Git - thirdparty/glibc.git/blame - elf/dl-support.c
Update timezone code from tzcode 2018i.
[thirdparty/glibc.git] / elf / dl-support.c
CommitLineData
266180eb 1/* Support for dynamic linking code in static libc.
688903eb 2 Copyright (C) 1996-2018 Free Software Foundation, Inc.
afd4eb37 3 This file is part of the GNU C Library.
266180eb 4
afd4eb37 5 The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
266180eb 9
afd4eb37
UD
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2 13 Lesser General Public License for more details.
266180eb 14
41bdb6e2 15 You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
266180eb 18
266180eb
RM
19/* This file defines some things that for the dynamic linker are defined in
20 rtld.c and dl-sysdep.c in ways appropriate to bootstrap dynamic linking. */
21
3c720987 22#include <errno.h>
8e17ea58 23#include <libintl.h>
b13927da 24#include <stdlib.h>
0a54e401 25#include <unistd.h>
32b4c839 26#include <sys/param.h>
e054f494 27#include <stdint.h>
a42195db 28#include <ldsodefs.h>
0a54e401 29#include <dl-machine.h>
ec999b8e 30#include <libc-lock.h>
5688da55 31#include <dl-cache.h>
74955460 32#include <dl-librecon.h>
594d423a 33#include <dl-procinfo.h>
74955460 34#include <unsecvars.h>
3b5c1b57 35#include <hp-timing.h>
30950a5f 36#include <stackinfo.h>
b13927da 37
266180eb
RM
38extern char *__progname;
39char **_dl_argv = &__progname; /* This is checked for some error messages. */
40
0a54e401
UD
41/* Name of the architecture. */
42const char *_dl_platform;
43size_t _dl_platformlen;
3c720987 44
62dcee57 45int _dl_debug_mask;
12b5b6b7 46int _dl_lazy;
97fd3a30 47ElfW(Addr) _dl_use_load_bias = -2;
dec126b4 48int _dl_dynamic_weak;
0a54e401 49
b13927da
UD
50/* If nonzero print warnings about problematic situations. */
51int _dl_verbose;
52
3996f34b
UD
53/* We never do profiling. */
54const char *_dl_profile;
53bfdc1c 55const char *_dl_profile_output;
3996f34b 56
fcf70d41
UD
57/* Names of shared object for which the RUNPATHs and RPATHs should be
58 ignored. */
b0a01055 59const char *_dl_inhibit_rpath;
310930c1 60
a3d6fb9b
UD
61/* The map for the object we will profile. */
62struct link_map *_dl_profile_map;
63
c0fb8a56
UD
64/* This is the address of the last stack address ever used. */
65void *__libc_stack_end;
66
f787edde
UD
67/* Path where the binary is found. */
68const char *_dl_origin_path;
69
f53c03c2
UD
70/* Nonzero if runtime lookup should not update the .got/.plt. */
71int _dl_bind_not;
72
f91f1c0f
MR
73/* A dummy link map for the executable, used by dlopen to access the global
74 scope. We don't export any symbols ourselves, so this can be minimal. */
75static struct link_map _dl_main_map =
76 {
77 .l_name = (char *) "",
78 .l_real = &_dl_main_map,
79 .l_ns = LM_ID_BASE,
80 .l_libname = &(struct libname_list) { .name = "", .dont_free = 1 },
81 .l_searchlist =
82 {
83 .r_list = &(struct link_map *) { &_dl_main_map },
84 .r_nlist = 1,
85 },
86 .l_symbolic_searchlist = { .r_list = &(struct link_map *) { NULL } },
87 .l_type = lt_executable,
88 .l_scope_mem = { &_dl_main_map.l_searchlist },
89 .l_scope_max = (sizeof (_dl_main_map.l_scope_mem)
90 / sizeof (_dl_main_map.l_scope_mem[0])),
91 .l_scope = _dl_main_map.l_scope_mem,
92 .l_local_scope = { &_dl_main_map.l_searchlist },
93 .l_used = 1,
94 .l_tls_offset = NO_TLS_OFFSET,
95 .l_serial = 1,
96 };
97
c0f62c56 98/* Namespace information. */
f91f1c0f
MR
99struct link_namespaces _dl_ns[DL_NNS] =
100 {
101 [LM_ID_BASE] =
102 {
103 ._ns_loaded = &_dl_main_map,
104 ._ns_nloaded = 1,
105 ._ns_main_searchlist = &_dl_main_map.l_searchlist,
106 }
107 };
108size_t _dl_nns = 1;
be935610 109
bed12f78 110/* Incremented whenever something may have been added to dl_loaded. */
f91f1c0f 111unsigned long long _dl_load_adds = 1;
bed12f78 112
f91f1c0f
MR
113/* Fake scope of the main application. */
114struct r_scope_elem _dl_initial_searchlist =
115 {
116 .r_list = &(struct link_map *) { &_dl_main_map },
117 .r_nlist = 1,
118 };
be935610 119
ce6e047f 120#ifndef HAVE_INLINED_SYSCALLS
9ad04ff7
UD
121/* Nonzero during startup. */
122int _dl_starting_up = 1;
ce6e047f 123#endif
9ad04ff7 124
965cb60a
UD
125/* Random data provided by the kernel. */
126void *_dl_random;
127
ccdf0cab 128/* Get architecture specific initializer. */
4a306ef1 129#include <dl-procruntime.c>
ccdf0cab
UD
130#include <dl-procinfo.c>
131
5fc48cd7 132/* Initial value of the CPU clock. */
eaad82e0 133#ifndef HP_TIMING_NONAVAIL
3b5c1b57 134hp_timing_t _dl_cpuclock_offset;
5fc48cd7
UD
135#endif
136
adc12574 137void (*_dl_init_static_tls) (struct link_map *) = &_dl_nothread_init_static_tls;
adc12574 138
32b4c839 139size_t _dl_pagesize = EXEC_PAGESIZE;
d6b5d570 140
73d65cc3
SP
141int _dl_inhibit_cache;
142
d6b5d570
UD
143unsigned int _dl_osversion;
144
145/* All known directories in sorted order. */
146struct r_search_path_elem *_dl_all_dirs;
147
148/* All directories after startup. */
149struct r_search_path_elem *_dl_init_all_dirs;
150
151/* The object to be initialized first. */
152struct link_map *_dl_initfirst;
153
5688da55
UD
154/* Descriptor to write debug messages to. */
155int _dl_debug_fd = STDERR_FILENO;
156
157int _dl_correct_cache_id = _DL_CACHE_DEFAULT_ID;
158
c7683a6d 159ElfW(auxv_t) *_dl_auxv;
dc0a0263 160const ElfW(Phdr) *_dl_phdr;
fcda29e2 161size_t _dl_phnum;
ab1d521d 162uint64_t _dl_hwcap __attribute__ ((nocommon));
1ae8bfe0 163uint64_t _dl_hwcap2 __attribute__ ((nocommon));
172ce013 164
95e7cf29
MR
165/* The value of the FPU control word the kernel will preset in hardware. */
166fpu_control_t _dl_fpu_control = _FPU_DEFAULT;
167
ff08fc59 168#if !HAVE_TUNABLES
7bfa311f
RM
169/* This is not initialized to HWCAP_IMPORTANT, matching the definition
170 of _dl_important_hwcaps, below, where no hwcap strings are ever
171 used. This mask is still used to mediate the lookups in the cache
172 file. Since there is no way to set this nonzero (we don't grok the
173 LD_HWCAP_MASK environment variable here), there is no real point in
174 setting _dl_hwcap nonzero below, but we do anyway. */
175uint64_t _dl_hwcap_mask __attribute__ ((nocommon));
ff08fc59 176#endif
7bfa311f 177
30950a5f
RA
178/* Prevailing state of the stack. Generally this includes PF_X, indicating it's
179 * executable but this isn't true for all platforms. */
180ElfW(Word) _dl_stack_flags = DEFAULT_STACK_PERMS;
ecdeaac0
RM
181
182/* If loading a shared object requires that we make the stack executable
183 when it was not, we do it by calling this function.
184 It returns an errno code or zero on success. */
e1d2ae8d 185int (*_dl_make_stack_executable_hook) (void **) = _dl_make_stack_executable;
ecdeaac0
RM
186
187
df94b641
UD
188/* Function in libpthread to wait for termination of lookups. */
189void (*_dl_wait_lookup_done) (void);
190
a5df0318
ST
191#if !THREAD_GSCOPE_IN_TCB
192int _dl_thread_gscope_count;
193#endif
e4eb675d
UD
194struct dl_scope_free_list *_dl_scope_free_list;
195
5e289179
UD
196#ifdef NEED_DL_SYSINFO
197/* Needed for improved syscall handling on at least x86/Linux. */
198uintptr_t _dl_sysinfo = DL_SYSINFO_DEFAULT;
30e32d23 199#endif
7775448e 200#ifdef NEED_DL_SYSINFO_DSO
f866314b
UD
201/* Address of the ELF headers in the vsyscall page. */
202const ElfW(Ehdr) *_dl_sysinfo_dso;
9cee5585
L
203
204struct link_map *_dl_sysinfo_map;
205
206# include "get-dynamic-info.h"
5e289179 207#endif
d0d4f868 208#include "setup-vdso.h"
5e289179 209
cf197e41
UD
210/* During the program run we must not modify the global data of
211 loaded shared object simultanously in two threads. Therefore we
212 protect `_dl_open' and `_dl_close' in dl-close.c.
213
214 This must be a recursive lock since the initializer function of
215 the loaded object might as well require a call to this function.
216 At this time it is not anymore a problem to modify the tables. */
d3c9f895 217__rtld_lock_define_initialized_recursive (, _dl_load_lock)
5a2a1d75
AS
218/* This lock is used to keep __dl_iterate_phdr from inspecting the
219 list of loaded objects while an object is added to or removed from
220 that list. */
221__rtld_lock_define_initialized_recursive (, _dl_load_write_lock)
cf197e41 222
f8f900ec 223
e4a5f77d 224#ifdef HAVE_AUX_VECTOR
d6b5d570 225int _dl_clktck;
0a54e401 226
e4a5f77d 227void
e4a5f77d 228_dl_aux_init (ElfW(auxv_t) *av)
b13927da 229{
be4d8038
UD
230 int seen = 0;
231 uid_t uid = 0;
232 gid_t gid = 0;
233
c7683a6d 234 _dl_auxv = av;
f8f900ec
UD
235 for (; av->a_type != AT_NULL; ++av)
236 switch (av->a_type)
237 {
238 case AT_PAGESZ:
aefc9b8c
RM
239 if (av->a_un.a_val != 0)
240 GLRO(dl_pagesize) = av->a_un.a_val;
f8f900ec 241 break;
f8f900ec 242 case AT_CLKTCK:
afdca0f2 243 GLRO(dl_clktck) = av->a_un.a_val;
f8f900ec 244 break;
fcda29e2 245 case AT_PHDR:
dc0a0263 246 GL(dl_phdr) = (const void *) av->a_un.a_val;
fcda29e2
UD
247 break;
248 case AT_PHNUM:
249 GL(dl_phnum) = av->a_un.a_val;
250 break;
76c5ae00
CES
251 case AT_PLATFORM:
252 GLRO(dl_platform) = (void *) av->a_un.a_val;
253 break;
11bf8ce1 254 case AT_HWCAP:
ab1d521d 255 GLRO(dl_hwcap) = (unsigned long int) av->a_un.a_val;
11bf8ce1 256 break;
1ae8bfe0
RA
257 case AT_HWCAP2:
258 GLRO(dl_hwcap2) = (unsigned long int) av->a_un.a_val;
259 break;
95e7cf29
MR
260 case AT_FPUCW:
261 GLRO(dl_fpu_control) = av->a_un.a_val;
262 break;
5df8349b
UD
263#ifdef NEED_DL_SYSINFO
264 case AT_SYSINFO:
265 GL(dl_sysinfo) = av->a_un.a_val;
266 break;
30e32d23 267#endif
7775448e 268#ifdef NEED_DL_SYSINFO_DSO
30e32d23 269 case AT_SYSINFO_EHDR:
39fb308f 270 GL(dl_sysinfo_dso) = (void *) av->a_un.a_val;
30e32d23 271 break;
5df8349b 272#endif
be4d8038
UD
273 case AT_UID:
274 uid ^= av->a_un.a_val;
275 seen |= 1;
276 break;
277 case AT_EUID:
278 uid ^= av->a_un.a_val;
279 seen |= 2;
280 break;
281 case AT_GID:
282 gid ^= av->a_un.a_val;
283 seen |= 4;
284 break;
285 case AT_EGID:
286 gid ^= av->a_un.a_val;
287 seen |= 8;
288 break;
c801e765
RM
289 case AT_SECURE:
290 seen = -1;
291 __libc_enable_secure = av->a_un.a_val;
292 __libc_enable_secure_decided = 1;
293 break;
965cb60a
UD
294 case AT_RANDOM:
295 _dl_random = (void *) av->a_un.a_val;
296 break;
47dbe62b
RH
297# ifdef DL_PLATFORM_AUXV
298 DL_PLATFORM_AUXV
299# endif
f8f900ec 300 }
be4d8038
UD
301 if (seen == 0xf)
302 {
303 __libc_enable_secure = uid != 0 || gid != 0;
304 __libc_enable_secure_decided = 1;
305 }
e4a5f77d 306}
155fd00c 307#endif
f8f900ec 308
e4a5f77d 309
d417e0ff 310void
d417e0ff 311_dl_non_dynamic_init (void)
e4a5f77d 312{
f91f1c0f 313 _dl_main_map.l_origin = _dl_get_origin ();
0d23a5c1
MR
314 _dl_main_map.l_phdr = GL(dl_phdr);
315 _dl_main_map.l_phnum = GL(dl_phnum);
f91f1c0f 316
8c682bb2 317 if (HP_SMALL_TIMING_AVAIL)
eaad82e0 318 HP_TIMING_NOW (_dl_cpuclock_offset);
5fc48cd7 319
f8f900ec 320 _dl_verbose = *(getenv ("LD_WARN") ?: "") == '\0' ? 0 : 1;
e34b0f29 321
9cee5585
L
322 /* Set up the data structures for the system-supplied DSO early,
323 so they can influence _dl_init_paths. */
324 setup_vdso (NULL, NULL);
325
0a54e401
UD
326 /* Initialize the data structures for the search paths for shared
327 objects. */
b4debac9 328 _dl_init_paths (getenv ("LD_LIBRARY_PATH"));
0a54e401 329
bc5fb037
AS
330 /* Remember the last search directory added at startup. */
331 _dl_init_all_dirs = GL(dl_all_dirs);
332
12b5b6b7
UD
333 _dl_lazy = *(getenv ("LD_BIND_NOW") ?: "") == '\0';
334
f53c03c2
UD
335 _dl_bind_not = *(getenv ("LD_BIND_NOT") ?: "") != '\0';
336
dec126b4
UD
337 _dl_dynamic_weak = *(getenv ("LD_DYNAMIC_WEAK") ?: "") == '\0';
338
53bfdc1c
UD
339 _dl_profile_output = getenv ("LD_PROFILE_OUTPUT");
340 if (_dl_profile_output == NULL || _dl_profile_output[0] == '\0')
341 _dl_profile_output
342 = &"/var/tmp\0/var/profile"[__libc_enable_secure ? 9 : 0];
343
74955460
UD
344 if (__libc_enable_secure)
345 {
c4e328a1
UD
346 static const char unsecure_envvars[] =
347 UNSECURE_ENVVARS
74955460
UD
348#ifdef EXTRA_UNSECURE_ENVVARS
349 EXTRA_UNSECURE_ENVVARS
350#endif
c4e328a1
UD
351 ;
352 const char *cp = unsecure_envvars;
74955460 353
c4e328a1
UD
354 while (cp < unsecure_envvars + sizeof (unsecure_envvars))
355 {
356 __unsetenv (cp);
357 cp = (const char *) __rawmemchr (cp, '\0') + 1;
358 }
74955460 359
67e58f39 360#if !HAVE_TUNABLES
74955460 361 if (__access ("/etc/suid-debug", F_OK) != 0)
c4e328a1 362 __unsetenv ("MALLOC_CHECK_");
67e58f39 363#endif
74955460
UD
364 }
365
0a54e401
UD
366#ifdef DL_PLATFORM_INIT
367 DL_PLATFORM_INIT;
368#endif
369
2402cdf3
RM
370#ifdef DL_OSVERSION_INIT
371 DL_OSVERSION_INIT;
372#endif
373
0a54e401
UD
374 /* Now determine the length of the platform string. */
375 if (_dl_platform != NULL)
376 _dl_platformlen = strlen (_dl_platform);
ecdeaac0
RM
377
378 /* Scan for a program header telling us the stack is nonexecutable. */
379 if (_dl_phdr != NULL)
380 for (uint_fast16_t i = 0; i < _dl_phnum; ++i)
381 if (_dl_phdr[i].p_type == PT_GNU_STACK)
382 {
383 _dl_stack_flags = _dl_phdr[i].p_flags;
384 break;
385 }
b13927da 386}
d417e0ff 387
5e289179
UD
388#ifdef DL_SYSINFO_IMPLEMENTATION
389DL_SYSINFO_IMPLEMENTATION
390#endif
9d7a3741
L
391
392#if ENABLE_STATIC_PIE
393/* Since relocation to hidden _dl_main_map causes relocation overflow on
394 aarch64, a function is used to get the address of _dl_main_map. */
395
396struct link_map *
397_dl_get_dl_main_map (void)
398{
399 return &_dl_main_map;
400}
401#endif