2.9
[glibc/nacl-glibc.git] / sysdeps / i386 / dl-machine.h
blobe3342d8e128427e84c7379da315ae0472b264869
1 /* Machine-dependent ELF dynamic relocation inline functions. i386 version.
2 Copyright (C) 1995-2005, 2006 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 switch (r_type)
349 case R_386_GLOB_DAT:
350 case R_386_JMP_SLOT:
351 *reloc_addr = value;
352 break;
354 #if !defined RTLD_BOOTSTRAP || USE___THREAD
355 case R_386_TLS_DTPMOD32:
356 # ifdef RTLD_BOOTSTRAP
357 /* During startup the dynamic linker is always the module
358 with index 1.
359 XXX If this relocation is necessary move before RESOLVE
360 call. */
361 *reloc_addr = 1;
362 # else
363 /* Get the information from the link map returned by the
364 resolv function. */
365 if (sym_map != NULL)
366 *reloc_addr = sym_map->l_tls_modid;
367 # endif
368 break;
369 case R_386_TLS_DTPOFF32:
370 # ifndef RTLD_BOOTSTRAP
371 /* During relocation all TLS symbols are defined and used.
372 Therefore the offset is already correct. */
373 if (sym != NULL)
374 *reloc_addr = sym->st_value;
375 # endif
376 break;
377 case R_386_TLS_DESC:
379 struct tlsdesc volatile *td =
380 (struct tlsdesc volatile *)reloc_addr;
382 # ifndef RTLD_BOOTSTRAP
383 if (! sym)
384 td->entry = _dl_tlsdesc_undefweak;
385 else
386 # endif
388 # ifndef RTLD_BOOTSTRAP
389 # ifndef SHARED
390 CHECK_STATIC_TLS (map, sym_map);
391 # else
392 if (!TRY_STATIC_TLS (map, sym_map))
394 td->arg = _dl_make_tlsdesc_dynamic
395 (sym_map, sym->st_value + (ElfW(Word))td->arg);
396 td->entry = _dl_tlsdesc_dynamic;
398 else
399 # endif
400 # endif
402 td->arg = (void*)(sym->st_value - sym_map->l_tls_offset
403 + (ElfW(Word))td->arg);
404 td->entry = _dl_tlsdesc_return;
407 break;
409 case R_386_TLS_TPOFF32:
410 /* The offset is positive, backward from the thread pointer. */
411 # ifdef RTLD_BOOTSTRAP
412 *reloc_addr += map->l_tls_offset - sym->st_value;
413 # else
414 /* We know the offset of object the symbol is contained in.
415 It is a positive value which will be subtracted from the
416 thread pointer. To get the variable position in the TLS
417 block we subtract the offset from that of the TLS block. */
418 if (sym != NULL)
420 CHECK_STATIC_TLS (map, sym_map);
421 *reloc_addr += sym_map->l_tls_offset - sym->st_value;
423 # endif
424 break;
425 case R_386_TLS_TPOFF:
426 /* The offset is negative, forward from the thread pointer. */
427 # ifdef RTLD_BOOTSTRAP
428 *reloc_addr += sym->st_value - map->l_tls_offset;
429 # else
430 /* We know the offset of object the symbol is contained in.
431 It is a negative value which will be added to the
432 thread pointer. */
433 if (sym != NULL)
435 CHECK_STATIC_TLS (map, sym_map);
436 *reloc_addr += sym->st_value - sym_map->l_tls_offset;
438 # endif
439 break;
440 #endif /* use TLS */
442 #ifndef RTLD_BOOTSTRAP
443 case R_386_32:
444 *reloc_addr += value;
445 break;
446 case R_386_PC32:
447 *reloc_addr += (value - (Elf32_Addr) reloc_addr);
448 break;
449 case R_386_COPY:
450 if (sym == NULL)
451 /* This can happen in trace mode if an object could not be
452 found. */
453 break;
454 if (__builtin_expect (sym->st_size > refsym->st_size, 0)
455 || (__builtin_expect (sym->st_size < refsym->st_size, 0)
456 && GLRO(dl_verbose)))
458 const char *strtab;
460 strtab = (const char *) D_PTR (map, l_info[DT_STRTAB]);
461 _dl_error_printf ("\
462 %s: Symbol `%s' has different size in shared object, consider re-linking\n",
463 rtld_progname ?: "<program name unknown>",
464 strtab + refsym->st_name);
466 memcpy (reloc_addr_arg, (void *) value,
467 MIN (sym->st_size, refsym->st_size));
468 break;
469 default:
470 _dl_reloc_bad_type (map, r_type, 0);
471 break;
472 #endif /* !RTLD_BOOTSTRAP */
477 #ifndef RTLD_BOOTSTRAP
478 auto inline void
479 __attribute__ ((always_inline))
480 elf_machine_rela (struct link_map *map, const Elf32_Rela *reloc,
481 const Elf32_Sym *sym, const struct r_found_version *version,
482 void *const reloc_addr_arg)
484 Elf32_Addr *const reloc_addr = reloc_addr_arg;
485 const unsigned int r_type = ELF32_R_TYPE (reloc->r_info);
487 if (ELF32_R_TYPE (reloc->r_info) == R_386_RELATIVE)
488 *reloc_addr = map->l_addr + reloc->r_addend;
489 else if (r_type != R_386_NONE)
491 # ifndef RESOLVE_CONFLICT_FIND_MAP
492 const Elf32_Sym *const refsym = sym;
493 # endif
494 struct link_map *sym_map = RESOLVE_MAP (&sym, version, r_type);
495 Elf32_Addr value = sym == NULL ? 0 : sym_map->l_addr + sym->st_value;
497 switch (ELF32_R_TYPE (reloc->r_info))
499 case R_386_GLOB_DAT:
500 case R_386_JMP_SLOT:
501 case R_386_32:
502 *reloc_addr = value + reloc->r_addend;
503 break;
504 # ifndef RESOLVE_CONFLICT_FIND_MAP
505 /* Not needed for dl-conflict.c. */
506 case R_386_PC32:
507 *reloc_addr = (value + reloc->r_addend - (Elf32_Addr) reloc_addr);
508 break;
510 case R_386_TLS_DTPMOD32:
511 /* Get the information from the link map returned by the
512 resolv function. */
513 if (sym_map != NULL)
514 *reloc_addr = sym_map->l_tls_modid;
515 break;
516 case R_386_TLS_DTPOFF32:
517 /* During relocation all TLS symbols are defined and used.
518 Therefore the offset is already correct. */
519 *reloc_addr = (sym == NULL ? 0 : sym->st_value) + reloc->r_addend;
520 break;
521 case R_386_TLS_DESC:
523 struct tlsdesc volatile *td =
524 (struct tlsdesc volatile *)reloc_addr;
526 # ifndef RTLD_BOOTSTRAP
527 if (!sym)
529 td->arg = (void*)reloc->r_addend;
530 td->entry = _dl_tlsdesc_undefweak;
532 else
533 # endif
535 # ifndef RTLD_BOOTSTRAP
536 # ifndef SHARED
537 CHECK_STATIC_TLS (map, sym_map);
538 # else
539 if (!TRY_STATIC_TLS (map, sym_map))
541 td->arg = _dl_make_tlsdesc_dynamic
542 (sym_map, sym->st_value + reloc->r_addend);
543 td->entry = _dl_tlsdesc_dynamic;
545 else
546 # endif
547 # endif
549 td->arg = (void*)(sym->st_value - sym_map->l_tls_offset
550 + reloc->r_addend);
551 td->entry = _dl_tlsdesc_return;
555 break;
556 case R_386_TLS_TPOFF32:
557 /* The offset is positive, backward from the thread pointer. */
558 /* We know the offset of object the symbol is contained in.
559 It is a positive value which will be subtracted from the
560 thread pointer. To get the variable position in the TLS
561 block we subtract the offset from that of the TLS block. */
562 if (sym != NULL)
564 CHECK_STATIC_TLS (map, sym_map);
565 *reloc_addr = sym_map->l_tls_offset - sym->st_value
566 + reloc->r_addend;
568 break;
569 case R_386_TLS_TPOFF:
570 /* The offset is negative, forward from the thread pointer. */
571 /* We know the offset of object the symbol is contained in.
572 It is a negative value which will be added to the
573 thread pointer. */
574 if (sym != NULL)
576 CHECK_STATIC_TLS (map, sym_map);
577 *reloc_addr = sym->st_value - sym_map->l_tls_offset
578 + reloc->r_addend;
580 break;
581 case R_386_COPY:
582 if (sym == NULL)
583 /* This can happen in trace mode if an object could not be
584 found. */
585 break;
586 if (__builtin_expect (sym->st_size > refsym->st_size, 0)
587 || (__builtin_expect (sym->st_size < refsym->st_size, 0)
588 && GLRO(dl_verbose)))
590 const char *strtab;
592 strtab = (const char *) D_PTR (map, l_info[DT_STRTAB]);
593 _dl_error_printf ("\
594 %s: Symbol `%s' has different size in shared object, consider re-linking\n",
595 rtld_progname ?: "<program name unknown>",
596 strtab + refsym->st_name);
598 memcpy (reloc_addr_arg, (void *) value,
599 MIN (sym->st_size, refsym->st_size));
600 break;
601 # endif /* !RESOLVE_CONFLICT_FIND_MAP */
602 default:
603 /* We add these checks in the version to relocate ld.so only
604 if we are still debugging. */
605 _dl_reloc_bad_type (map, r_type, 0);
606 break;
610 #endif /* !RTLD_BOOTSTRAP */
612 auto inline void
613 __attribute ((always_inline))
614 elf_machine_rel_relative (Elf32_Addr l_addr, const Elf32_Rel *reloc,
615 void *const reloc_addr_arg)
617 Elf32_Addr *const reloc_addr = reloc_addr_arg;
618 assert (ELF32_R_TYPE (reloc->r_info) == R_386_RELATIVE);
619 *reloc_addr += l_addr;
622 #ifndef RTLD_BOOTSTRAP
623 auto inline void
624 __attribute__ ((always_inline))
625 elf_machine_rela_relative (Elf32_Addr l_addr, const Elf32_Rela *reloc,
626 void *const reloc_addr_arg)
628 Elf32_Addr *const reloc_addr = reloc_addr_arg;
629 *reloc_addr = l_addr + reloc->r_addend;
631 #endif /* !RTLD_BOOTSTRAP */
633 auto inline void
634 __attribute__ ((always_inline))
635 elf_machine_lazy_rel (struct link_map *map,
636 Elf32_Addr l_addr, const Elf32_Rel *reloc)
638 Elf32_Addr *const reloc_addr = (void *) (l_addr + reloc->r_offset);
639 const unsigned int r_type = ELF32_R_TYPE (reloc->r_info);
640 /* Check for unexpected PLT reloc type. */
641 if (__builtin_expect (r_type == R_386_JMP_SLOT, 1))
643 if (__builtin_expect (map->l_mach.plt, 0) == 0)
644 *reloc_addr += l_addr;
645 else
646 *reloc_addr = (map->l_mach.plt
647 + (((Elf32_Addr) reloc_addr) - map->l_mach.gotplt) * 4);
649 else if (__builtin_expect (r_type == R_386_TLS_DESC, 1))
651 struct tlsdesc volatile * __attribute__((__unused__)) td =
652 (struct tlsdesc volatile *)reloc_addr;
654 /* Handle relocations that reference the local *ABS* in a simple
655 way, so as to preserve a potential addend. */
656 if (ELF32_R_SYM (reloc->r_info) == 0)
657 td->entry = _dl_tlsdesc_resolve_abs_plus_addend;
658 /* Given a known-zero addend, we can store a pointer to the
659 reloc in the arg position. */
660 else if (td->arg == 0)
662 td->arg = (void*)reloc;
663 td->entry = _dl_tlsdesc_resolve_rel;
665 else
667 /* We could handle non-*ABS* relocations with non-zero addends
668 by allocating dynamically an arg to hold a pointer to the
669 reloc, but that sounds pointless. */
670 const Elf32_Rel *const r = reloc;
671 /* The code below was borrowed from elf_dynamic_do_rel(). */
672 const ElfW(Sym) *const symtab =
673 (const void *) D_PTR (map, l_info[DT_SYMTAB]);
675 #ifdef RTLD_BOOTSTRAP
676 /* The dynamic linker always uses versioning. */
677 assert (map->l_info[VERSYMIDX (DT_VERSYM)] != NULL);
678 #else
679 if (map->l_info[VERSYMIDX (DT_VERSYM)])
680 #endif
682 const ElfW(Half) *const version =
683 (const void *) D_PTR (map, l_info[VERSYMIDX (DT_VERSYM)]);
684 ElfW(Half) ndx = version[ELFW(R_SYM) (r->r_info)] & 0x7fff;
685 elf_machine_rel (map, r, &symtab[ELFW(R_SYM) (r->r_info)],
686 &map->l_versions[ndx],
687 (void *) (l_addr + r->r_offset));
689 #ifndef RTLD_BOOTSTRAP
690 else
691 elf_machine_rel (map, r, &symtab[ELFW(R_SYM) (r->r_info)], NULL,
692 (void *) (l_addr + r->r_offset));
693 #endif
696 else
697 _dl_reloc_bad_type (map, r_type, 1);
700 #ifndef RTLD_BOOTSTRAP
702 auto inline void
703 __attribute__ ((always_inline))
704 elf_machine_lazy_rela (struct link_map *map,
705 Elf32_Addr l_addr, const Elf32_Rela *reloc)
707 Elf32_Addr *const reloc_addr = (void *) (l_addr + reloc->r_offset);
708 const unsigned int r_type = ELF32_R_TYPE (reloc->r_info);
709 if (__builtin_expect (r_type == R_386_JMP_SLOT, 1))
711 else if (__builtin_expect (r_type == R_386_TLS_DESC, 1))
713 struct tlsdesc volatile * __attribute__((__unused__)) td =
714 (struct tlsdesc volatile *)reloc_addr;
716 td->arg = (void*)reloc;
717 td->entry = _dl_tlsdesc_resolve_rela;
719 else
720 _dl_reloc_bad_type (map, r_type, 1);
723 #endif /* !RTLD_BOOTSTRAP */
725 #endif /* RESOLVE_MAP */