* locale/setlocale.c (_nl_C_name): Variable removed.
[glibc.git] / elf / rtld.c
blobd727e1361fea111c388e5eefe4f67fbdcd3a1101
1 /* Run time dynamic linker.
2 Copyright (C) 1995, 1996 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 License, or (at your option) any later version.
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
13 Library General Public License for more details.
15 You should have received a copy of the GNU Library General Public
16 License along with the GNU C Library; see the file COPYING.LIB. If
17 not, write to the Free Software Foundation, Inc., 675 Mass Ave,
18 Cambridge, MA 02139, USA. */
20 #include <link.h>
21 #include "dynamic-link.h"
22 #include <stddef.h>
23 #include <stdlib.h>
24 #include <unistd.h>
25 #include "../stdio-common/_itoa.h"
28 #ifdef RTLD_START
29 RTLD_START
30 #else
31 #error "sysdeps/MACHINE/dl-machine.h fails to define RTLD_START"
32 #endif
34 /* System-specific function to do initial startup for the dynamic linker.
35 After this, file access calls and getenv must work. This is responsible
36 for setting _dl_secure if we need to be secure (e.g. setuid),
37 and for setting _dl_argc and _dl_argv, and then calling _dl_main. */
38 extern Elf32_Addr _dl_sysdep_start (void **start_argptr,
39 void (*dl_main) (const Elf32_Phdr *phdr,
40 Elf32_Word phent,
41 Elf32_Addr *user_entry));
42 extern void _dl_sysdep_start_cleanup (void);
44 int _dl_secure;
45 int _dl_argc;
46 char **_dl_argv;
47 const char *_dl_rpath;
49 struct r_debug dl_r_debug;
51 static void dl_main (const Elf32_Phdr *phdr,
52 Elf32_Word phent,
53 Elf32_Addr *user_entry);
55 static struct link_map rtld_map;
57 Elf32_Addr
58 _dl_start (void *arg)
60 struct link_map bootstrap_map;
62 /* Figure out the run-time load address of the dynamic linker itself. */
63 bootstrap_map.l_addr = elf_machine_load_address ();
65 /* Read our own dynamic section and fill in the info array.
66 Conveniently, the first element of the GOT contains the
67 offset of _DYNAMIC relative to the run-time load address. */
68 bootstrap_map.l_ld = (void *) bootstrap_map.l_addr + *elf_machine_got ();
69 elf_get_dynamic_info (bootstrap_map.l_ld, bootstrap_map.l_info);
71 #ifdef ELF_MACHINE_BEFORE_RTLD_RELOC
72 ELF_MACHINE_BEFORE_RTLD_RELOC (bootstrap_map.l_info);
73 #endif
75 /* Relocate ourselves so we can do normal function calls and
76 data access using the global offset table. */
78 /* We must initialize `l_type' to make sure it is not `lt_interpreter'.
79 That is the type to describe us, but not during bootstrapping--it
80 indicates to elf_machine_rel{,a} that we were already relocated during
81 bootstrapping, so it must anti-perform each bootstrapping relocation
82 before applying the final relocation when ld.so is linked in as
83 normal a shared library. */
84 bootstrap_map.l_type = lt_library;
85 ELF_DYNAMIC_RELOCATE (&bootstrap_map, 0, NULL);
88 /* Now life is sane; we can call functions and access global data.
89 Set up to use the operating system facilities, and find out from
90 the operating system's program loader where to find the program
91 header table in core. */
94 /* Transfer data about ourselves to the permanent link_map structure. */
95 rtld_map.l_addr = bootstrap_map.l_addr;
96 rtld_map.l_ld = bootstrap_map.l_ld;
97 memcpy (rtld_map.l_info, bootstrap_map.l_info, sizeof rtld_map.l_info);
98 _dl_setup_hash (&rtld_map);
100 /* Cache the DT_RPATH stored in ld.so itself; this will be
101 the default search path. */
102 _dl_rpath = (void *) (rtld_map.l_addr +
103 rtld_map.l_info[DT_STRTAB]->d_un.d_ptr +
104 rtld_map.l_info[DT_RPATH]->d_un.d_val);
106 /* Call the OS-dependent function to set up life so we can do things like
107 file access. It will call `dl_main' (below) to do all the real work
108 of the dynamic linker, and then unwind our frame and run the user
109 entry point on the same stack we entered on. */
110 return _dl_sysdep_start (&arg, &dl_main);
114 /* Now life is peachy; we can do all normal operations.
115 On to the real work. */
117 void _start (void);
119 unsigned int _dl_skip_args; /* Nonzero if we were run directly. */
121 static void
122 dl_main (const Elf32_Phdr *phdr,
123 Elf32_Word phent,
124 Elf32_Addr *user_entry)
126 void doit (void)
128 const Elf32_Phdr *ph;
129 struct link_map *l, *last, *before_rtld;
130 const char *interpreter_name;
131 int lazy;
132 int list_only = 0;
134 if (*user_entry == (Elf32_Addr) &_start)
136 /* Ho ho. We are not the program interpreter! We are the program
137 itself! This means someone ran ld.so as a command. Well, that
138 might be convenient to do sometimes. We support it by
139 interpreting the args like this:
141 ld.so PROGRAM ARGS...
143 The first argument is the name of a file containing an ELF
144 executable we will load and run with the following arguments.
145 To simplify life here, PROGRAM is searched for using the
146 normal rules for shared objects, rather than $PATH or anything
147 like that. We just load it and use its entry point; we don't
148 pay attention to its PT_INTERP command (we are the interpreter
149 ourselves). This is an easy way to test a new ld.so before
150 installing it. */
151 if (_dl_argc < 2)
152 _dl_sysdep_fatal ("\
153 Usage: ld.so [--list] EXECUTABLE-FILE [ARGS-FOR-PROGRAM...]\n\
154 You have invoked `ld.so', the helper program for shared library executables.\n\
155 This program usually lives in the file `/lib/ld.so', and special directives\n\
156 in executable files using ELF shared libraries tell the system's program\n\
157 loader to load the helper program from this file. This helper program loads\n\
158 the shared libraries needed by the program executable, prepares the program\n\
159 to run, and runs it. You may invoke this helper program directly from the\n\
160 command line to load and run an ELF executable file; this is like executing\n\
161 that file itself, but always uses this helper program from the file you\n\
162 specified, instead of the helper program file specified in the executable\n\
163 file you run. This is mostly of use for maintainers to test new versions\n\
164 of this helper program; chances are you did not intend to run this program.\n",
165 NULL);
167 interpreter_name = _dl_argv[0];
169 if (! strcmp (_dl_argv[1], "--list"))
171 list_only = 1;
173 ++_dl_skip_args;
174 --_dl_argc;
175 ++_dl_argv;
178 ++_dl_skip_args;
179 --_dl_argc;
180 ++_dl_argv;
182 l = _dl_map_object (NULL, _dl_argv[0]);
183 phdr = l->l_phdr;
184 phent = l->l_phnum;
185 l->l_name = (char *) "";
186 *user_entry = l->l_entry;
188 else
190 /* Create a link_map for the executable itself.
191 This will be what dlopen on "" returns. */
192 l = _dl_new_object ((char *) "", "", lt_executable);
193 l->l_phdr = phdr;
194 l->l_phnum = phent;
195 interpreter_name = 0;
196 l->l_entry = *user_entry;
199 if (l != _dl_loaded)
201 /* GDB assumes that the first element on the chain is the
202 link_map for the executable itself, and always skips it.
203 Make sure the first one is indeed that one. */
204 l->l_prev->l_next = l->l_next;
205 if (l->l_next)
206 l->l_next->l_prev = l->l_prev;
207 l->l_prev = NULL;
208 l->l_next = _dl_loaded;
209 _dl_loaded->l_prev = l;
210 _dl_loaded = l;
213 /* Scan the program header table for the dynamic section. */
214 for (ph = phdr; ph < &phdr[phent]; ++ph)
215 switch (ph->p_type)
217 case PT_DYNAMIC:
218 /* This tells us where to find the dynamic section,
219 which tells us everything we need to do. */
220 l->l_ld = (void *) l->l_addr + ph->p_vaddr;
221 break;
222 case PT_INTERP:
223 /* This "interpreter segment" was used by the program loader to
224 find the program interpreter, which is this program itself, the
225 dynamic linker. We note what name finds us, so that a future
226 dlopen call or DT_NEEDED entry, for something that wants to link
227 against the dynamic linker as a shared library, will know that
228 the shared object is already loaded. */
229 interpreter_name = (void *) l->l_addr + ph->p_vaddr;
230 break;
232 assert (interpreter_name); /* How else did we get here? */
234 /* Extract the contents of the dynamic section for easy access. */
235 elf_get_dynamic_info (l->l_ld, l->l_info);
236 if (l->l_info[DT_HASH])
237 /* Set up our cache of pointers into the hash table. */
238 _dl_setup_hash (l);
240 if (l->l_info[DT_DEBUG])
241 /* There is a DT_DEBUG entry in the dynamic section. Fill it in
242 with the run-time address of the r_debug structure, which we
243 will set up later to communicate with the debugger. */
244 l->l_info[DT_DEBUG]->d_un.d_ptr = (Elf32_Addr) &dl_r_debug;
246 /* Put the link_map for ourselves on the chain so it can be found by
247 name. */
248 rtld_map.l_name = (char *) rtld_map.l_libname = interpreter_name;
249 rtld_map.l_type = lt_interpreter;
250 while (l->l_next)
251 l = l->l_next;
252 l->l_next = &rtld_map;
253 rtld_map.l_prev = l;
255 /* Now process all the DT_NEEDED entries and map in the objects.
256 Each new link_map will go on the end of the chain, so we will
257 come across it later in the loop to map in its dependencies. */
258 before_rtld = NULL;
259 for (l = _dl_loaded; l; l = l->l_next)
261 if (l->l_info[DT_NEEDED])
263 const char *strtab
264 = (void *) l->l_addr + l->l_info[DT_STRTAB]->d_un.d_ptr;
265 const Elf32_Dyn *d;
266 last = l;
267 for (d = l->l_ld; d->d_tag != DT_NULL; ++d)
268 if (d->d_tag == DT_NEEDED)
270 struct link_map *new;
271 new = _dl_map_object (l, strtab + d->d_un.d_val);
272 if (!before_rtld && new == &rtld_map)
273 before_rtld = last;
274 last = new;
277 l->l_deps_loaded = 1;
280 /* If any DT_NEEDED entry referred to the interpreter object itself,
281 reorder the list so it appears after its dependent. If not,
282 remove it from the maps we will use for symbol resolution. */
283 rtld_map.l_prev->l_next = rtld_map.l_next;
284 if (rtld_map.l_next)
285 rtld_map.l_next->l_prev = rtld_map.l_prev;
286 if (before_rtld)
288 rtld_map.l_prev = before_rtld;
289 rtld_map.l_next = before_rtld->l_next;
290 before_rtld->l_next = &rtld_map;
291 if (rtld_map.l_next)
292 rtld_map.l_next->l_prev = &rtld_map;
295 if (list_only)
297 /* We were run just to list the shared libraries. It is
298 important that we do this before real relocation, because the
299 functions we call below for output may no longer work properly
300 after relocation. */
302 int i;
304 if (! _dl_loaded->l_info[DT_NEEDED])
305 _dl_sysdep_message ("\t", "statically linked\n", NULL);
306 else
307 for (l = _dl_loaded->l_next; l; l = l->l_next)
309 char buf[20], *bp;
310 buf[sizeof buf - 1] = '\0';
311 bp = _itoa (l->l_addr, &buf[sizeof buf - 1], 16, 0);
312 while (&buf[sizeof buf - 1] - bp < sizeof l->l_addr * 2)
313 *--bp = '0';
314 _dl_sysdep_message ("\t", l->l_libname, " => ", l->l_name,
315 " (0x", bp, ")\n", NULL);
318 for (i = 1; i < _dl_argc; ++i)
320 const Elf32_Sym *ref = NULL;
321 Elf32_Addr loadbase = _dl_lookup_symbol (_dl_argv[i], &ref,
322 _dl_loaded, "argument",
324 char buf[20], *bp;
325 buf[sizeof buf - 1] = '\0';
326 bp = _itoa (ref->st_value, &buf[sizeof buf - 1], 16, 0);
327 while (&buf[sizeof buf - 1] - bp < sizeof loadbase * 2)
328 *--bp = '0';
329 _dl_sysdep_message (_dl_argv[i], " found at 0x", bp, NULL);
330 buf[sizeof buf - 1] = '\0';
331 bp = _itoa (loadbase, &buf[sizeof buf - 1], 16, 0);
332 while (&buf[sizeof buf - 1] - bp < sizeof loadbase * 2)
333 *--bp = '0';
334 _dl_sysdep_message (" in object at 0x", bp, "\n", NULL);
337 _exit (0);
340 lazy = !_dl_secure && *(getenv ("LD_BIND_NOW") ?: "") == '\0';
342 /* Now we have all the objects loaded. Relocate them all except for
343 the dynamic linker itself. We do this in reverse order so that
344 copy relocs of earlier objects overwrite the data written by later
345 objects. We do not re-relocate the dynamic linker itself in this
346 loop because that could result in the GOT entries for functions we
347 call being changed, and that would break us. It is safe to
348 relocate the dynamic linker out of order because it has no copy
349 relocs (we know that because it is self-contained). */
350 l = _dl_loaded;
351 while (l->l_next)
352 l = l->l_next;
355 if (l != &rtld_map)
356 _dl_relocate_object (l, lazy);
357 l = l->l_prev;
358 } while (l);
360 /* Do any necessary cleanups for the startup OS interface code.
361 We do these now so that no calls are made after rtld re-relocation
362 which might be resolved to different functions than we expect.
363 We cannot do this before relocating the other objects because
364 _dl_relocate_object might need to call `mprotect' for DT_TEXTREL. */
365 _dl_sysdep_start_cleanup ();
367 if (rtld_map.l_opencount > 0)
368 /* There was an explicit ref to the dynamic linker as a shared lib.
369 Re-relocate ourselves with user-controlled symbol definitions. */
370 _dl_relocate_object (&rtld_map, lazy);
372 /* Tell the debugger where to find the map of loaded objects. */
373 dl_r_debug.r_version = 1 /* R_DEBUG_VERSION XXX */;
374 dl_r_debug.r_ldbase = rtld_map.l_addr; /* Record our load address. */
375 dl_r_debug.r_map = _dl_loaded;
376 dl_r_debug.r_brk = (Elf32_Addr) &_dl_r_debug_state;
378 if (rtld_map.l_info[DT_INIT])
380 /* Call the initializer for the compatibility version of the
381 dynamic linker. There is no additional initialization
382 required for the ABI-compliant dynamic linker. */
384 (*(void (*) (void)) (rtld_map.l_addr +
385 rtld_map.l_info[DT_INIT]->d_un.d_ptr)) ();
387 /* Clear the field so a future dlopen won't run it again. */
388 rtld_map.l_info[DT_INIT] = NULL;
391 const char *errstring;
392 const char *errobj;
393 int err;
395 err = _dl_catch_error (&errstring, &errobj, &doit);
396 if (errstring)
397 _dl_sysdep_fatal (_dl_argv[0] ?: "<program name unknown>",
398 ": error in loading shared libraries\n",
399 errobj ?: "", errobj ? ": " : "",
400 errstring, err ? ": " : "",
401 err ? strerror (err) : "", "\n", NULL);
403 /* Once we return, _dl_sysdep_start will invoke
404 the DT_INIT functions and then *USER_ENTRY. */
407 /* This function exists solely to have a breakpoint set on it by the
408 debugger. */
409 void
410 _dl_r_debug_state (void)