Remove `.ctors' and `.dtors' output sections
[glibc.git] / sysdeps / i386 / dl-machine.h
bloba093d2b1516a4ec7cd1320aa3563df939510357c
1 /* Machine-dependent ELF dynamic relocation inline functions. i386 version.
2 Copyright (C) 1995-2005, 2006, 2009 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 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.
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 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA. */
20 #ifndef dl_machine_h
21 #define dl_machine_h
23 #define ELF_MACHINE_NAME "i386"
25 #include <sys/param.h>
26 #include <sysdep.h>
27 #include <tls.h>
28 #include <dl-tlsdesc.h>
30 /* Return nonzero iff ELF header is compatible with the running host. */
31 static inline int __attribute__ ((unused))
32 elf_machine_matches_host (const Elf32_Ehdr *ehdr)
34 return ehdr->e_machine == EM_386;
38 #ifdef PI_STATIC_AND_HIDDEN
40 /* Return the link-time address of _DYNAMIC. Conveniently, this is the
41 first element of the GOT, a special entry that is never relocated. */
42 static inline Elf32_Addr __attribute__ ((unused, const))
43 elf_machine_dynamic (void)
45 /* This produces a GOTOFF reloc that resolves to zero at link time, so in
46 fact just loads from the GOT register directly. By doing it without
47 an asm we can let the compiler choose any register. */
48 extern const Elf32_Addr _GLOBAL_OFFSET_TABLE_[] attribute_hidden;
49 return _GLOBAL_OFFSET_TABLE_[0];
52 /* Return the run-time load address of the shared object. */
53 static inline Elf32_Addr __attribute__ ((unused))
54 elf_machine_load_address (void)
56 /* Compute the difference between the runtime address of _DYNAMIC as seen
57 by a GOTOFF reference, and the link-time address found in the special
58 unrelocated first GOT entry. */
59 extern Elf32_Dyn bygotoff[] asm ("_DYNAMIC") attribute_hidden;
60 return (Elf32_Addr) &bygotoff - elf_machine_dynamic ();
63 #else /* Without .hidden support, we can't compile the code above. */
65 /* Return the link-time address of _DYNAMIC. Conveniently, this is the
66 first element of the GOT. This must be inlined in a function which
67 uses global data. */
68 static inline Elf32_Addr __attribute__ ((unused))
69 elf_machine_dynamic (void)
71 register Elf32_Addr *got asm ("%ebx");
72 return *got;
76 /* Return the run-time load address of the shared object. */
77 static inline Elf32_Addr __attribute__ ((unused))
78 elf_machine_load_address (void)
80 /* It doesn't matter what variable this is, the reference never makes
81 it to assembly. We need a dummy reference to some global variable
82 via the GOT to make sure the compiler initialized %ebx in time. */
83 extern int _dl_argc;
84 Elf32_Addr addr;
85 asm ("leal _dl_start@GOTOFF(%%ebx), %0\n"
86 "subl _dl_start@GOT(%%ebx), %0"
87 : "=r" (addr) : "m" (_dl_argc) : "cc");
88 return addr;
91 #endif
94 /* Set up the loaded object described by L so its unrelocated PLT
95 entries will jump to the on-demand fixup code in dl-runtime.c. */
97 static inline int __attribute__ ((unused, always_inline))
98 elf_machine_runtime_setup (struct link_map *l, int lazy, int profile)
100 Elf32_Addr *got;
101 extern void _dl_runtime_resolve (Elf32_Word) attribute_hidden;
102 extern void _dl_runtime_profile (Elf32_Word) attribute_hidden;
104 if (l->l_info[DT_JMPREL] && lazy)
106 /* The GOT entries for functions in the PLT have not yet been filled
107 in. Their initial contents will arrange when called to push an
108 offset into the .rel.plt section, push _GLOBAL_OFFSET_TABLE_[1],
109 and then jump to _GLOBAL_OFFSET_TABLE[2]. */
110 got = (Elf32_Addr *) D_PTR (l, l_info[DT_PLTGOT]);
111 /* If a library is prelinked but we have to relocate anyway,
112 we have to be able to undo the prelinking of .got.plt.
113 The prelinker saved us here address of .plt + 0x16. */
114 if (got[1])
116 l->l_mach.plt = got[1] + l->l_addr;
117 l->l_mach.gotplt = (Elf32_Addr) &got[3];
119 got[1] = (Elf32_Addr) l; /* Identify this shared object. */
121 /* The got[2] entry contains the address of a function which gets
122 called to get the address of a so far unresolved function and
123 jump to it. The profiling extension of the dynamic linker allows
124 to intercept the calls to collect information. In this case we
125 don't store the address in the GOT so that all future calls also
126 end in this function. */
127 if (__builtin_expect (profile, 0))
129 got[2] = (Elf32_Addr) &_dl_runtime_profile;
131 if (GLRO(dl_profile) != NULL
132 && _dl_name_match_p (GLRO(dl_profile), l))
133 /* This is the object we are looking for. Say that we really
134 want profiling and the timers are started. */
135 GL(dl_profile_map) = l;
137 else
138 /* This function will get called to fix up the GOT entry indicated by
139 the offset on the stack, and then jump to the resolved address. */
140 got[2] = (Elf32_Addr) &_dl_runtime_resolve;
143 return lazy;
146 #ifdef IN_DL_RUNTIME
148 # if !defined PROF && !__BOUNDED_POINTERS__
149 /* We add a declaration of this function here so that in dl-runtime.c
150 the ELF_MACHINE_RUNTIME_TRAMPOLINE macro really can pass the parameters
151 in registers.
153 We cannot use this scheme for profiling because the _mcount call
154 destroys the passed register information. */
155 /* GKM FIXME: Fix trampoline to pass bounds so we can do
156 without the `__unbounded' qualifier. */
157 #define ARCH_FIXUP_ATTRIBUTE __attribute__ ((regparm (3), stdcall, unused))
159 extern ElfW(Addr) _dl_fixup (struct link_map *__unbounded l,
160 ElfW(Word) reloc_offset)
161 ARCH_FIXUP_ATTRIBUTE;
162 extern ElfW(Addr) _dl_profile_fixup (struct link_map *l,
163 ElfW(Word) reloc_offset,
164 ElfW(Addr) retaddr, void *regs,
165 long int *framesizep)
166 ARCH_FIXUP_ATTRIBUTE;
167 # endif
169 #endif
171 /* Mask identifying addresses reserved for the user program,
172 where the dynamic linker should not map anything. */
173 #define ELF_MACHINE_USER_ADDRESS_MASK 0xf8000000UL
175 /* Initial entry point code for the dynamic linker.
176 The C function `_dl_start' is the real entry point;
177 its return value is the user program's entry point. */
179 #define RTLD_START asm ("\n\
180 .text\n\
181 .align 16\n\
182 0: movl (%esp), %ebx\n\
183 ret\n\
184 .align 16\n\
185 .globl _start\n\
186 .globl _dl_start_user\n\
187 _start:\n\
188 # Note that _dl_start gets the parameter in %eax.\n\
189 movl %esp, %eax\n\
190 call _dl_start\n\
191 _dl_start_user:\n\
192 # Save the user entry point address in %edi.\n\
193 movl %eax, %edi\n\
194 # Point %ebx at the GOT.\n\
195 call 0b\n\
196 addl $_GLOBAL_OFFSET_TABLE_, %ebx\n\
197 # See if we were run as a command with the executable file\n\
198 # name as an extra leading argument.\n\
199 movl _dl_skip_args@GOTOFF(%ebx), %eax\n\
200 # Pop the original argument count.\n\
201 popl %edx\n\
202 # Adjust the stack pointer to skip _dl_skip_args words.\n\
203 leal (%esp,%eax,4), %esp\n\
204 # Subtract _dl_skip_args from argc.\n\
205 subl %eax, %edx\n\
206 # Push argc back on the stack.\n\
207 push %edx\n\
208 # The special initializer gets called with the stack just\n\
209 # as the application's entry point will see it; it can\n\
210 # switch stacks if it moves these contents over.\n\
211 " RTLD_START_SPECIAL_INIT "\n\
212 # Load the parameters again.\n\
213 # (eax, edx, ecx, *--esp) = (_dl_loaded, argc, argv, envp)\n\
214 movl _rtld_local@GOTOFF(%ebx), %eax\n\
215 leal 8(%esp,%edx,4), %esi\n\
216 leal 4(%esp), %ecx\n\
217 movl %esp, %ebp\n\
218 # Make sure _dl_init is run with 16 byte aligned stack.\n\
219 andl $-16, %esp\n\
220 pushl %eax\n\
221 pushl %eax\n\
222 pushl %ebp\n\
223 pushl %esi\n\
224 # Clear %ebp, so that even constructors have terminated backchain.\n\
225 xorl %ebp, %ebp\n\
226 # Call the function to run the initializers.\n\
227 call _dl_init_internal@PLT\n\
228 # Pass our finalizer function to the user in %edx, as per ELF ABI.\n\
229 leal _dl_fini@GOTOFF(%ebx), %edx\n\
230 # Restore %esp _start expects.\n\
231 movl (%esp), %esp\n\
232 # Jump to the user's entry point.\n\
233 jmp *%edi\n\
234 .previous\n\
237 #ifndef RTLD_START_SPECIAL_INIT
238 # define RTLD_START_SPECIAL_INIT /* nothing */
239 #endif
241 /* ELF_RTYPE_CLASS_PLT iff TYPE describes relocation of a PLT entry or
242 TLS variable, so undefined references should not be allowed to
243 define the value.
244 ELF_RTYPE_CLASS_NOCOPY iff TYPE should not be allowed to resolve to one
245 of the main executable's symbols, as for a COPY reloc. */
246 #if !defined RTLD_BOOTSTRAP || USE___THREAD
247 # define elf_machine_type_class(type) \
248 ((((type) == R_386_JMP_SLOT || (type) == R_386_TLS_DTPMOD32 \
249 || (type) == R_386_TLS_DTPOFF32 || (type) == R_386_TLS_TPOFF32 \
250 || (type) == R_386_TLS_TPOFF || (type) == R_386_TLS_DESC) \
251 * ELF_RTYPE_CLASS_PLT) \
252 | (((type) == R_386_COPY) * ELF_RTYPE_CLASS_COPY))
253 #else
254 # define elf_machine_type_class(type) \
255 ((((type) == R_386_JMP_SLOT) * ELF_RTYPE_CLASS_PLT) \
256 | (((type) == R_386_COPY) * ELF_RTYPE_CLASS_COPY))
257 #endif
259 /* A reloc type used for ld.so cmdline arg lookups to reject PLT entries. */
260 #define ELF_MACHINE_JMP_SLOT R_386_JMP_SLOT
262 /* The i386 never uses Elf32_Rela relocations for the dynamic linker.
263 Prelinked libraries may use Elf32_Rela though. */
264 #define ELF_MACHINE_PLT_REL 1
266 /* We define an initialization functions. This is called very early in
267 _dl_sysdep_start. */
268 #define DL_PLATFORM_INIT dl_platform_init ()
270 static inline void __attribute__ ((unused))
271 dl_platform_init (void)
273 if (GLRO(dl_platform) != NULL && *GLRO(dl_platform) == '\0')
274 /* Avoid an empty string which would disturb us. */
275 GLRO(dl_platform) = NULL;
278 static inline Elf32_Addr
279 elf_machine_fixup_plt (struct link_map *map, lookup_t t,
280 const Elf32_Rel *reloc,
281 Elf32_Addr *reloc_addr, Elf32_Addr value)
283 return *reloc_addr = value;
286 /* Return the final value of a plt relocation. */
287 static inline Elf32_Addr
288 elf_machine_plt_value (struct link_map *map, const Elf32_Rel *reloc,
289 Elf32_Addr value)
291 return value;
295 /* Names of the architecture-specific auditing callback functions. */
296 #define ARCH_LA_PLTENTER i86_gnu_pltenter
297 #define ARCH_LA_PLTEXIT i86_gnu_pltexit
299 #endif /* !dl_machine_h */
301 /* The i386 never uses Elf32_Rela relocations for the dynamic linker.
302 Prelinked libraries may use Elf32_Rela though. */
303 #define ELF_MACHINE_NO_RELA defined RTLD_BOOTSTRAP
305 #ifdef RESOLVE_MAP
307 /* Perform the relocation specified by RELOC and SYM (which is fully resolved).
308 MAP is the object containing the reloc. */
310 auto inline void
311 __attribute ((always_inline))
312 elf_machine_rel (struct link_map *map, const Elf32_Rel *reloc,
313 const Elf32_Sym *sym, const struct r_found_version *version,
314 void *const reloc_addr_arg)
316 Elf32_Addr *const reloc_addr = reloc_addr_arg;
317 const unsigned int r_type = ELF32_R_TYPE (reloc->r_info);
319 # if !defined RTLD_BOOTSTRAP || !defined HAVE_Z_COMBRELOC
320 if (__builtin_expect (r_type == R_386_RELATIVE, 0))
322 # if !defined RTLD_BOOTSTRAP && !defined HAVE_Z_COMBRELOC
323 /* This is defined in rtld.c, but nowhere in the static libc.a;
324 make the reference weak so static programs can still link.
325 This declaration cannot be done when compiling rtld.c
326 (i.e. #ifdef RTLD_BOOTSTRAP) because rtld.c contains the
327 common defn for _dl_rtld_map, which is incompatible with a
328 weak decl in the same file. */
329 # ifndef SHARED
330 weak_extern (_dl_rtld_map);
331 # endif
332 if (map != &GL(dl_rtld_map)) /* Already done in rtld itself. */
333 # endif
334 *reloc_addr += map->l_addr;
336 # ifndef RTLD_BOOTSTRAP
337 else if (__builtin_expect (r_type == R_386_NONE, 0))
338 return;
339 # endif
340 else
341 # endif /* !RTLD_BOOTSTRAP and have no -z combreloc */
343 const Elf32_Sym *const refsym = sym;
344 struct link_map *sym_map = RESOLVE_MAP (&sym, version, r_type);
345 Elf32_Addr value = sym_map == NULL ? 0 : sym_map->l_addr + sym->st_value;
347 if (sym != NULL
348 && __builtin_expect (ELFW(ST_TYPE) (sym->st_info) == STT_GNU_IFUNC,
350 && __builtin_expect (sym->st_shndx != SHN_UNDEF, 1))
351 value = ((Elf32_Addr (*) (void)) value) ();
353 switch (r_type)
355 case R_386_GLOB_DAT:
356 case R_386_JMP_SLOT:
357 *reloc_addr = value;
358 break;
360 # if !defined RTLD_BOOTSTRAP || USE___THREAD
361 case R_386_TLS_DTPMOD32:
362 # ifdef RTLD_BOOTSTRAP
363 /* During startup the dynamic linker is always the module
364 with index 1.
365 XXX If this relocation is necessary move before RESOLVE
366 call. */
367 *reloc_addr = 1;
368 # else
369 /* Get the information from the link map returned by the
370 resolv function. */
371 if (sym_map != NULL)
372 *reloc_addr = sym_map->l_tls_modid;
373 # endif
374 break;
375 case R_386_TLS_DTPOFF32:
376 # ifndef RTLD_BOOTSTRAP
377 /* During relocation all TLS symbols are defined and used.
378 Therefore the offset is already correct. */
379 if (sym != NULL)
380 *reloc_addr = sym->st_value;
381 # endif
382 break;
383 case R_386_TLS_DESC:
385 struct tlsdesc volatile *td =
386 (struct tlsdesc volatile *)reloc_addr;
388 # ifndef RTLD_BOOTSTRAP
389 if (! sym)
390 td->entry = _dl_tlsdesc_undefweak;
391 else
392 # endif
394 # ifndef RTLD_BOOTSTRAP
395 # ifndef SHARED
396 CHECK_STATIC_TLS (map, sym_map);
397 # else
398 if (!TRY_STATIC_TLS (map, sym_map))
400 td->arg = _dl_make_tlsdesc_dynamic
401 (sym_map, sym->st_value + (ElfW(Word))td->arg);
402 td->entry = _dl_tlsdesc_dynamic;
404 else
405 # endif
406 # endif
408 td->arg = (void*)(sym->st_value - sym_map->l_tls_offset
409 + (ElfW(Word))td->arg);
410 td->entry = _dl_tlsdesc_return;
413 break;
415 case R_386_TLS_TPOFF32:
416 /* The offset is positive, backward from the thread pointer. */
417 # ifdef RTLD_BOOTSTRAP
418 *reloc_addr += map->l_tls_offset - sym->st_value;
419 # else
420 /* We know the offset of object the symbol is contained in.
421 It is a positive value which will be subtracted from the
422 thread pointer. To get the variable position in the TLS
423 block we subtract the offset from that of the TLS block. */
424 if (sym != NULL)
426 CHECK_STATIC_TLS (map, sym_map);
427 *reloc_addr += sym_map->l_tls_offset - sym->st_value;
429 # endif
430 break;
431 case R_386_TLS_TPOFF:
432 /* The offset is negative, forward from the thread pointer. */
433 # ifdef RTLD_BOOTSTRAP
434 *reloc_addr += sym->st_value - map->l_tls_offset;
435 # else
436 /* We know the offset of object the symbol is contained in.
437 It is a negative value which will be added to the
438 thread pointer. */
439 if (sym != NULL)
441 CHECK_STATIC_TLS (map, sym_map);
442 *reloc_addr += sym->st_value - sym_map->l_tls_offset;
444 # endif
445 break;
446 # endif /* use TLS */
448 # ifndef RTLD_BOOTSTRAP
449 case R_386_32:
450 *reloc_addr += value;
451 break;
452 case R_386_PC32:
453 *reloc_addr += (value - (Elf32_Addr) reloc_addr);
454 break;
455 case R_386_COPY:
456 if (sym == NULL)
457 /* This can happen in trace mode if an object could not be
458 found. */
459 break;
460 if (__builtin_expect (sym->st_size > refsym->st_size, 0)
461 || (__builtin_expect (sym->st_size < refsym->st_size, 0)
462 && GLRO(dl_verbose)))
464 const char *strtab;
466 strtab = (const char *) D_PTR (map, l_info[DT_STRTAB]);
467 _dl_error_printf ("\
468 %s: Symbol `%s' has different size in shared object, consider re-linking\n",
469 rtld_progname ?: "<program name unknown>",
470 strtab + refsym->st_name);
472 memcpy (reloc_addr_arg, (void *) value,
473 MIN (sym->st_size, refsym->st_size));
474 break;
475 case R_386_IRELATIVE:
476 value = map->l_addr + *reloc_addr;
477 value = ((Elf32_Addr (*) (void)) value) ();
478 *reloc_addr = value;
479 break;
480 default:
481 _dl_reloc_bad_type (map, r_type, 0);
482 break;
483 # endif /* !RTLD_BOOTSTRAP */
488 # ifndef RTLD_BOOTSTRAP
489 auto inline void
490 __attribute__ ((always_inline))
491 elf_machine_rela (struct link_map *map, const Elf32_Rela *reloc,
492 const Elf32_Sym *sym, const struct r_found_version *version,
493 void *const reloc_addr_arg)
495 Elf32_Addr *const reloc_addr = reloc_addr_arg;
496 const unsigned int r_type = ELF32_R_TYPE (reloc->r_info);
498 if (ELF32_R_TYPE (reloc->r_info) == R_386_RELATIVE)
499 *reloc_addr = map->l_addr + reloc->r_addend;
500 else if (r_type != R_386_NONE)
502 # ifndef RESOLVE_CONFLICT_FIND_MAP
503 const Elf32_Sym *const refsym = sym;
504 # endif
505 struct link_map *sym_map = RESOLVE_MAP (&sym, version, r_type);
506 Elf32_Addr value = sym == NULL ? 0 : sym_map->l_addr + sym->st_value;
508 if (sym != NULL
509 && __builtin_expect (sym->st_shndx != SHN_UNDEF, 1)
510 && __builtin_expect (ELFW(ST_TYPE) (sym->st_info) == STT_GNU_IFUNC,
512 value = ((Elf32_Addr (*) (void)) value) ();
514 switch (ELF32_R_TYPE (reloc->r_info))
516 case R_386_GLOB_DAT:
517 case R_386_JMP_SLOT:
518 case R_386_32:
519 *reloc_addr = value + reloc->r_addend;
520 break;
521 # ifndef RESOLVE_CONFLICT_FIND_MAP
522 /* Not needed for dl-conflict.c. */
523 case R_386_PC32:
524 *reloc_addr = (value + reloc->r_addend - (Elf32_Addr) reloc_addr);
525 break;
527 case R_386_TLS_DTPMOD32:
528 /* Get the information from the link map returned by the
529 resolv function. */
530 if (sym_map != NULL)
531 *reloc_addr = sym_map->l_tls_modid;
532 break;
533 case R_386_TLS_DTPOFF32:
534 /* During relocation all TLS symbols are defined and used.
535 Therefore the offset is already correct. */
536 *reloc_addr = (sym == NULL ? 0 : sym->st_value) + reloc->r_addend;
537 break;
538 case R_386_TLS_DESC:
540 struct tlsdesc volatile *td =
541 (struct tlsdesc volatile *)reloc_addr;
543 # ifndef RTLD_BOOTSTRAP
544 if (!sym)
546 td->arg = (void*)reloc->r_addend;
547 td->entry = _dl_tlsdesc_undefweak;
549 else
550 # endif
552 # ifndef RTLD_BOOTSTRAP
553 # ifndef SHARED
554 CHECK_STATIC_TLS (map, sym_map);
555 # else
556 if (!TRY_STATIC_TLS (map, sym_map))
558 td->arg = _dl_make_tlsdesc_dynamic
559 (sym_map, sym->st_value + reloc->r_addend);
560 td->entry = _dl_tlsdesc_dynamic;
562 else
563 # endif
564 # endif
566 td->arg = (void*)(sym->st_value - sym_map->l_tls_offset
567 + reloc->r_addend);
568 td->entry = _dl_tlsdesc_return;
572 break;
573 case R_386_TLS_TPOFF32:
574 /* The offset is positive, backward from the thread pointer. */
575 /* We know the offset of object the symbol is contained in.
576 It is a positive value which will be subtracted from the
577 thread pointer. To get the variable position in the TLS
578 block we subtract the offset from that of the TLS block. */
579 if (sym != NULL)
581 CHECK_STATIC_TLS (map, sym_map);
582 *reloc_addr = sym_map->l_tls_offset - sym->st_value
583 + reloc->r_addend;
585 break;
586 case R_386_TLS_TPOFF:
587 /* The offset is negative, forward from the thread pointer. */
588 /* We know the offset of object the symbol is contained in.
589 It is a negative value which will be added to the
590 thread pointer. */
591 if (sym != NULL)
593 CHECK_STATIC_TLS (map, sym_map);
594 *reloc_addr = sym->st_value - sym_map->l_tls_offset
595 + reloc->r_addend;
597 break;
598 case R_386_COPY:
599 if (sym == NULL)
600 /* This can happen in trace mode if an object could not be
601 found. */
602 break;
603 if (__builtin_expect (sym->st_size > refsym->st_size, 0)
604 || (__builtin_expect (sym->st_size < refsym->st_size, 0)
605 && GLRO(dl_verbose)))
607 const char *strtab;
609 strtab = (const char *) D_PTR (map, l_info[DT_STRTAB]);
610 _dl_error_printf ("\
611 %s: Symbol `%s' has different size in shared object, consider re-linking\n",
612 rtld_progname ?: "<program name unknown>",
613 strtab + refsym->st_name);
615 memcpy (reloc_addr_arg, (void *) value,
616 MIN (sym->st_size, refsym->st_size));
617 break;
618 # endif /* !RESOLVE_CONFLICT_FIND_MAP */
619 case R_386_IRELATIVE:
620 value = map->l_addr + reloc->r_addend;
621 value = ((Elf32_Addr (*) (void)) value) ();
622 *reloc_addr = value;
623 break;
624 default:
625 /* We add these checks in the version to relocate ld.so only
626 if we are still debugging. */
627 _dl_reloc_bad_type (map, r_type, 0);
628 break;
632 # endif /* !RTLD_BOOTSTRAP */
634 auto inline void
635 __attribute ((always_inline))
636 elf_machine_rel_relative (Elf32_Addr l_addr, const Elf32_Rel *reloc,
637 void *const reloc_addr_arg)
639 Elf32_Addr *const reloc_addr = reloc_addr_arg;
640 assert (ELF32_R_TYPE (reloc->r_info) == R_386_RELATIVE);
641 *reloc_addr += l_addr;
644 # ifndef RTLD_BOOTSTRAP
645 auto inline void
646 __attribute__ ((always_inline))
647 elf_machine_rela_relative (Elf32_Addr l_addr, const Elf32_Rela *reloc,
648 void *const reloc_addr_arg)
650 Elf32_Addr *const reloc_addr = reloc_addr_arg;
651 *reloc_addr = l_addr + reloc->r_addend;
653 # endif /* !RTLD_BOOTSTRAP */
655 auto inline void
656 __attribute__ ((always_inline))
657 elf_machine_lazy_rel (struct link_map *map,
658 Elf32_Addr l_addr, const Elf32_Rel *reloc)
660 Elf32_Addr *const reloc_addr = (void *) (l_addr + reloc->r_offset);
661 const unsigned int r_type = ELF32_R_TYPE (reloc->r_info);
662 /* Check for unexpected PLT reloc type. */
663 if (__builtin_expect (r_type == R_386_JMP_SLOT, 1))
665 if (__builtin_expect (map->l_mach.plt, 0) == 0)
666 *reloc_addr += l_addr;
667 else
668 *reloc_addr = (map->l_mach.plt
669 + (((Elf32_Addr) reloc_addr) - map->l_mach.gotplt) * 4);
671 else if (__builtin_expect (r_type == R_386_TLS_DESC, 1))
673 struct tlsdesc volatile * __attribute__((__unused__)) td =
674 (struct tlsdesc volatile *)reloc_addr;
676 /* Handle relocations that reference the local *ABS* in a simple
677 way, so as to preserve a potential addend. */
678 if (ELF32_R_SYM (reloc->r_info) == 0)
679 td->entry = _dl_tlsdesc_resolve_abs_plus_addend;
680 /* Given a known-zero addend, we can store a pointer to the
681 reloc in the arg position. */
682 else if (td->arg == 0)
684 td->arg = (void*)reloc;
685 td->entry = _dl_tlsdesc_resolve_rel;
687 else
689 /* We could handle non-*ABS* relocations with non-zero addends
690 by allocating dynamically an arg to hold a pointer to the
691 reloc, but that sounds pointless. */
692 const Elf32_Rel *const r = reloc;
693 /* The code below was borrowed from elf_dynamic_do_rel(). */
694 const ElfW(Sym) *const symtab =
695 (const void *) D_PTR (map, l_info[DT_SYMTAB]);
697 # ifdef RTLD_BOOTSTRAP
698 /* The dynamic linker always uses versioning. */
699 assert (map->l_info[VERSYMIDX (DT_VERSYM)] != NULL);
700 # else
701 if (map->l_info[VERSYMIDX (DT_VERSYM)])
702 # endif
704 const ElfW(Half) *const version =
705 (const void *) D_PTR (map, l_info[VERSYMIDX (DT_VERSYM)]);
706 ElfW(Half) ndx = version[ELFW(R_SYM) (r->r_info)] & 0x7fff;
707 elf_machine_rel (map, r, &symtab[ELFW(R_SYM) (r->r_info)],
708 &map->l_versions[ndx],
709 (void *) (l_addr + r->r_offset));
711 # ifndef RTLD_BOOTSTRAP
712 else
713 elf_machine_rel (map, r, &symtab[ELFW(R_SYM) (r->r_info)], NULL,
714 (void *) (l_addr + r->r_offset));
715 # endif
718 else if (__builtin_expect (r_type == R_386_IRELATIVE, 0))
720 Elf32_Addr value = map->l_addr + *reloc_addr;
721 value = ((Elf32_Addr (*) (void)) value) ();
722 *reloc_addr = value;
724 else
725 _dl_reloc_bad_type (map, r_type, 1);
728 # ifndef RTLD_BOOTSTRAP
730 auto inline void
731 __attribute__ ((always_inline))
732 elf_machine_lazy_rela (struct link_map *map,
733 Elf32_Addr l_addr, const Elf32_Rela *reloc)
735 Elf32_Addr *const reloc_addr = (void *) (l_addr + reloc->r_offset);
736 const unsigned int r_type = ELF32_R_TYPE (reloc->r_info);
737 if (__builtin_expect (r_type == R_386_JMP_SLOT, 1))
739 else if (__builtin_expect (r_type == R_386_TLS_DESC, 1))
741 struct tlsdesc volatile * __attribute__((__unused__)) td =
742 (struct tlsdesc volatile *)reloc_addr;
744 td->arg = (void*)reloc;
745 td->entry = _dl_tlsdesc_resolve_rela;
747 else if (__builtin_expect (r_type == R_386_IRELATIVE, 0))
749 Elf32_Addr value = map->l_addr + reloc->r_addend;
750 value = ((Elf32_Addr (*) (void)) value) ();
751 *reloc_addr = value;
753 else
754 _dl_reloc_bad_type (map, r_type, 1);
757 # endif /* !RTLD_BOOTSTRAP */
759 #endif /* RESOLVE_MAP */