]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/x86_64/dl-machine.h
Use glibc_likely instead __builtin_expect.
[thirdparty/glibc.git] / sysdeps / x86_64 / dl-machine.h
CommitLineData
c9cf6dde 1/* Machine-dependent ELF dynamic relocation inline functions. x86-64 version.
d4697bc9 2 Copyright (C) 2001-2014 Free Software Foundation, Inc.
c9cf6dde
AJ
3 This file is part of the GNU C Library.
4 Contributed by Andreas Jaeger <aj@suse.de>.
5
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
10
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
17 License along with the GNU C Library; if not, see
18 <http://www.gnu.org/licenses/>. */
c9cf6dde
AJ
19
20#ifndef dl_machine_h
21#define dl_machine_h
22
23#define ELF_MACHINE_NAME "x86_64"
24
25#include <sys/param.h>
2b1c0eea 26#include <sysdep.h>
b177ed2b 27#include <tls.h>
c9ff0187 28#include <dl-tlsdesc.h>
c9cf6dde
AJ
29
30/* Return nonzero iff ELF header is compatible with the running host. */
31static inline int __attribute__ ((unused))
4b30f61a 32elf_machine_matches_host (const ElfW(Ehdr) *ehdr)
c9cf6dde
AJ
33{
34 return ehdr->e_machine == EM_X86_64;
35}
36
37
38/* Return the link-time address of _DYNAMIC. Conveniently, this is the
39 first element of the GOT. This must be inlined in a function which
40 uses global data. */
4b30f61a 41static inline ElfW(Addr) __attribute__ ((unused))
c9cf6dde
AJ
42elf_machine_dynamic (void)
43{
5f30cfec
L
44 /* This produces an IP-relative reloc which is resolved at link time. */
45 extern const ElfW(Addr) _GLOBAL_OFFSET_TABLE_[] attribute_hidden;
46 return _GLOBAL_OFFSET_TABLE_[0];
c9cf6dde
AJ
47}
48
49
50/* Return the run-time load address of the shared object. */
4b30f61a 51static inline ElfW(Addr) __attribute__ ((unused))
c9cf6dde
AJ
52elf_machine_load_address (void)
53{
5f30cfec
L
54 /* Compute the difference between the runtime address of _DYNAMIC as seen
55 by an IP-relative reference, and the link-time address found in the
56 special unrelocated first GOT entry. */
57 extern ElfW(Dyn) _DYNAMIC[] attribute_hidden;
58 return (ElfW(Addr)) &_DYNAMIC - elf_machine_dynamic ();
c9cf6dde
AJ
59}
60
61/* Set up the loaded object described by L so its unrelocated PLT
62 entries will jump to the on-demand fixup code in dl-runtime.c. */
63
50441a98 64static inline int __attribute__ ((unused, always_inline))
c9cf6dde
AJ
65elf_machine_runtime_setup (struct link_map *l, int lazy, int profile)
66{
67 Elf64_Addr *got;
4b30f61a
L
68 extern void _dl_runtime_resolve (ElfW(Word)) attribute_hidden;
69 extern void _dl_runtime_profile (ElfW(Word)) attribute_hidden;
c9cf6dde
AJ
70
71 if (l->l_info[DT_JMPREL] && lazy)
72 {
73 /* The GOT entries for functions in the PLT have not yet been filled
74 in. Their initial contents will arrange when called to push an
75 offset into the .rel.plt section, push _GLOBAL_OFFSET_TABLE_[1],
530a3249 76 and then jump to _GLOBAL_OFFSET_TABLE_[2]. */
c9cf6dde 77 got = (Elf64_Addr *) D_PTR (l, l_info[DT_PLTGOT]);
32e6df36
UD
78 /* If a library is prelinked but we have to relocate anyway,
79 we have to be able to undo the prelinking of .got.plt.
80 The prelinker saved us here address of .plt + 0x16. */
81 if (got[1])
82 {
83 l->l_mach.plt = got[1] + l->l_addr;
4b30f61a 84 l->l_mach.gotplt = (ElfW(Addr)) &got[3];
32e6df36 85 }
4b30f61a
L
86 /* Identify this shared object. */
87 *(ElfW(Addr) *) (got + 1) = (ElfW(Addr)) l;
c9cf6dde
AJ
88
89 /* The got[2] entry contains the address of a function which gets
90 called to get the address of a so far unresolved function and
91 jump to it. The profiling extension of the dynamic linker allows
92 to intercept the calls to collect information. In this case we
93 don't store the address in the GOT so that all future calls also
94 end in this function. */
a1ffb40e 95 if (__glibc_unlikely (profile))
c9cf6dde 96 {
4b30f61a 97 *(ElfW(Addr) *) (got + 2) = (ElfW(Addr)) &_dl_runtime_profile;
c9cf6dde 98
9dcafc55
UD
99 if (GLRO(dl_profile) != NULL
100 && _dl_name_match_p (GLRO(dl_profile), l))
c9cf6dde
AJ
101 /* This is the object we are looking for. Say that we really
102 want profiling and the timers are started. */
5688da55 103 GL(dl_profile_map) = l;
c9cf6dde
AJ
104 }
105 else
106 /* This function will get called to fix up the GOT entry indicated by
107 the offset on the stack, and then jump to the resolved address. */
4b30f61a 108 *(ElfW(Addr) *) (got + 2) = (ElfW(Addr)) &_dl_runtime_resolve;
c9cf6dde
AJ
109 }
110
c9ff0187 111 if (l->l_info[ADDRIDX (DT_TLSDESC_GOT)] && lazy)
4b30f61a
L
112 *(ElfW(Addr)*)(D_PTR (l, l_info[ADDRIDX (DT_TLSDESC_GOT)]) + l->l_addr)
113 = (ElfW(Addr)) &_dl_tlsdesc_resolve_rela;
c9ff0187 114
c9cf6dde
AJ
115 return lazy;
116}
117
c9cf6dde
AJ
118/* Initial entry point code for the dynamic linker.
119 The C function `_dl_start' is the real entry point;
120 its return value is the user program's entry point. */
121#define RTLD_START asm ("\n\
122.text\n\
123 .align 16\n\
124.globl _start\n\
125.globl _dl_start_user\n\
126_start:\n\
127 movq %rsp, %rdi\n\
128 call _dl_start\n\
129_dl_start_user:\n\
130 # Save the user entry point address in %r12.\n\
131 movq %rax, %r12\n\
c9cf6dde
AJ
132 # See if we were run as a command with the executable file\n\
133 # name as an extra leading argument.\n\
217ed70e 134 movl _dl_skip_args(%rip), %eax\n\
c9cf6dde
AJ
135 # Pop the original argument count.\n\
136 popq %rdx\n\
137 # Adjust the stack pointer to skip _dl_skip_args words.\n\
138 leaq (%rsp,%rax,8), %rsp\n\
139 # Subtract _dl_skip_args from argc.\n\
140 subl %eax, %edx\n\
141 # Push argc back on the stack.\n\
142 pushq %rdx\n\
143 # Call _dl_init (struct link_map *main_map, int argc, char **argv, char **env)\n\
144 # argc -> rsi\n\
145 movq %rdx, %rsi\n\
be184b1d
UD
146 # Save %rsp value in %r13.\n\
147 movq %rsp, %r13\n\
148 # And align stack for the _dl_init_internal call. \n\
149 andq $-16, %rsp\n\
c9cf6dde 150 # _dl_loaded -> rdi\n\
217ed70e 151 movq _rtld_local(%rip), %rdi\n\
c9cf6dde 152 # env -> rcx\n\
be184b1d 153 leaq 16(%r13,%rdx,8), %rcx\n\
c9cf6dde 154 # argv -> rdx\n\
be184b1d
UD
155 leaq 8(%r13), %rdx\n\
156 # Clear %rbp to mark outermost frame obviously even for constructors.\n\
ee618985 157 xorl %ebp, %ebp\n\
c9cf6dde 158 # Call the function to run the initializers.\n\
7969407a 159 call _dl_init_internal@PLT\n\
c9cf6dde 160 # Pass our finalizer function to the user in %rdx, as per ELF ABI.\n\
217ed70e 161 leaq _dl_fini(%rip), %rdx\n\
be184b1d
UD
162 # And make sure %rsp points to argc stored on the stack.\n\
163 movq %r13, %rsp\n\
c9cf6dde
AJ
164 # Jump to the user's entry point.\n\
165 jmp *%r12\n\
166.previous\n\
167");
168
8323008c
RM
169/* ELF_RTYPE_CLASS_PLT iff TYPE describes relocation of a PLT entry or
170 TLS variable, so undefined references should not be allowed to
171 define the value.
c9cf6dde
AJ
172 ELF_RTYPE_CLASS_NOCOPY iff TYPE should not be allowed to resolve to one
173 of the main executable's symbols, as for a COPY reloc. */
d063d164 174#define elf_machine_type_class(type) \
82c02215
RM
175 ((((type) == R_X86_64_JUMP_SLOT \
176 || (type) == R_X86_64_DTPMOD64 \
c9ff0187
UD
177 || (type) == R_X86_64_DTPOFF64 \
178 || (type) == R_X86_64_TPOFF64 \
179 || (type) == R_X86_64_TLSDESC) \
82c02215 180 * ELF_RTYPE_CLASS_PLT) \
c9cf6dde
AJ
181 | (((type) == R_X86_64_COPY) * ELF_RTYPE_CLASS_COPY))
182
183/* A reloc type used for ld.so cmdline arg lookups to reject PLT entries. */
184#define ELF_MACHINE_JMP_SLOT R_X86_64_JUMP_SLOT
185
ad0f5cad
UD
186/* The relative ifunc relocation. */
187// XXX This is a work-around for a broken linker. Remove!
188#define ELF_MACHINE_IRELATIVE R_X86_64_IRELATIVE
189
4b30f61a 190/* The x86-64 never uses Elf64_Rel/Elf32_Rel relocations. */
c9cf6dde
AJ
191#define ELF_MACHINE_NO_REL 1
192
530a3249 193/* We define an initialization function. This is called very early in
c9cf6dde
AJ
194 _dl_sysdep_start. */
195#define DL_PLATFORM_INIT dl_platform_init ()
196
c9cf6dde
AJ
197static inline void __attribute__ ((unused))
198dl_platform_init (void)
199{
afdca0f2 200 if (GLRO(dl_platform) != NULL && *GLRO(dl_platform) == '\0')
c9cf6dde 201 /* Avoid an empty string which would disturb us. */
afdca0f2 202 GLRO(dl_platform) = NULL;
c9cf6dde
AJ
203}
204
4b30f61a 205static inline ElfW(Addr)
c9cf6dde 206elf_machine_fixup_plt (struct link_map *map, lookup_t t,
4b30f61a
L
207 const ElfW(Rela) *reloc,
208 ElfW(Addr) *reloc_addr, ElfW(Addr) value)
c9cf6dde
AJ
209{
210 return *reloc_addr = value;
211}
212
530a3249
MP
213/* Return the final value of a PLT relocation. On x86-64 the
214 JUMP_SLOT relocation ignores the addend. */
4b30f61a
L
215static inline ElfW(Addr)
216elf_machine_plt_value (struct link_map *map, const ElfW(Rela) *reloc,
217 ElfW(Addr) value)
c9cf6dde
AJ
218{
219 return value;
220}
221
9dcafc55
UD
222
223/* Names of the architecture-specific auditing callback functions. */
224#define ARCH_LA_PLTENTER x86_64_gnu_pltenter
225#define ARCH_LA_PLTEXIT x86_64_gnu_pltexit
226
c9cf6dde
AJ
227#endif /* !dl_machine_h */
228
9dcafc55 229#ifdef RESOLVE_MAP
c9cf6dde
AJ
230
231/* Perform the relocation specified by RELOC and SYM (which is fully resolved).
232 MAP is the object containing the reloc. */
233
7090d3ca
AJ
234auto inline void
235__attribute__ ((always_inline))
4b30f61a
L
236elf_machine_rela (struct link_map *map, const ElfW(Rela) *reloc,
237 const ElfW(Sym) *sym, const struct r_found_version *version,
3a62d00d 238 void *const reloc_addr_arg, int skip_ifunc)
c9cf6dde 239{
4b30f61a
L
240 ElfW(Addr) *const reloc_addr = reloc_addr_arg;
241 const unsigned long int r_type = ELFW(R_TYPE) (reloc->r_info);
c9cf6dde 242
e7f110cd 243# if !defined RTLD_BOOTSTRAP || !defined HAVE_Z_COMBRELOC
a1ffb40e 244 if (__glibc_unlikely (r_type == R_X86_64_RELATIVE))
c9cf6dde 245 {
e7f110cd 246# if !defined RTLD_BOOTSTRAP && !defined HAVE_Z_COMBRELOC
c9cf6dde
AJ
247 /* This is defined in rtld.c, but nowhere in the static libc.a;
248 make the reference weak so static programs can still link.
249 This declaration cannot be done when compiling rtld.c
250 (i.e. #ifdef RTLD_BOOTSTRAP) because rtld.c contains the
251 common defn for _dl_rtld_map, which is incompatible with a
252 weak decl in the same file. */
e7f110cd 253# ifndef SHARED
5688da55 254 weak_extern (GL(dl_rtld_map));
e7f110cd 255# endif
5688da55 256 if (map != &GL(dl_rtld_map)) /* Already done in rtld itself. */
e7f110cd 257# endif
c9cf6dde
AJ
258 *reloc_addr = map->l_addr + reloc->r_addend;
259 }
260 else
df8a552f
L
261# endif
262# if !defined RTLD_BOOTSTRAP
263 /* l_addr + r_addend may be > 0xffffffff and R_X86_64_RELATIVE64
264 relocation updates the whole 64-bit entry. */
a1ffb40e 265 if (__glibc_unlikely (r_type == R_X86_64_RELATIVE64))
df8a552f
L
266 *(Elf64_Addr *) reloc_addr = (Elf64_Addr) map->l_addr + reloc->r_addend;
267 else
e7f110cd 268# endif
a1ffb40e 269 if (__glibc_unlikely (r_type == R_X86_64_NONE))
c9cf6dde
AJ
270 return;
271 else
272 {
e7f110cd 273# ifndef RTLD_BOOTSTRAP
4b30f61a 274 const ElfW(Sym) *const refsym = sym;
e7f110cd 275# endif
8323008c 276 struct link_map *sym_map = RESOLVE_MAP (&sym, version, r_type);
4b30f61a
L
277 ElfW(Addr) value = (sym == NULL ? 0
278 : (ElfW(Addr)) sym_map->l_addr + sym->st_value);
c9cf6dde 279
e7f110cd
UD
280 if (sym != NULL
281 && __builtin_expect (ELFW(ST_TYPE) (sym->st_info) == STT_GNU_IFUNC,
fd96f062 282 0)
3a62d00d
AS
283 && __builtin_expect (sym->st_shndx != SHN_UNDEF, 1)
284 && __builtin_expect (!skip_ifunc, 1))
4b30f61a 285 value = ((ElfW(Addr) (*) (void)) value) ();
e7f110cd 286
c9cf6dde
AJ
287 switch (r_type)
288 {
22676eaf
L
289# ifndef RTLD_BOOTSTRAP
290# ifdef __ILP32__
291 case R_X86_64_SIZE64:
292 /* Set to symbol size plus addend. */
293 *(Elf64_Addr *) (uintptr_t) reloc_addr
294 = (Elf64_Addr) sym->st_size + reloc->r_addend;
295 break;
296
297 case R_X86_64_SIZE32:
298# else
299 case R_X86_64_SIZE64:
300# endif
301 /* Set to symbol size plus addend. */
302 value = sym->st_size;
303# endif
c9cf6dde
AJ
304 case R_X86_64_GLOB_DAT:
305 case R_X86_64_JUMP_SLOT:
306 *reloc_addr = value + reloc->r_addend;
307 break;
8323008c 308
e7f110cd 309# ifndef RESOLVE_CONFLICT_FIND_MAP
8323008c 310 case R_X86_64_DTPMOD64:
e7f110cd 311# ifdef RTLD_BOOTSTRAP
8323008c
RM
312 /* During startup the dynamic linker is always the module
313 with index 1.
314 XXX If this relocation is necessary move before RESOLVE
315 call. */
316 *reloc_addr = 1;
e7f110cd 317# else
8323008c
RM
318 /* Get the information from the link map returned by the
319 resolve function. */
320 if (sym_map != NULL)
321 *reloc_addr = sym_map->l_tls_modid;
e7f110cd 322# endif
8323008c
RM
323 break;
324 case R_X86_64_DTPOFF64:
e7f110cd 325# ifndef RTLD_BOOTSTRAP
8323008c
RM
326 /* During relocation all TLS symbols are defined and used.
327 Therefore the offset is already correct. */
328 if (sym != NULL)
c8c59454
L
329 {
330 value = sym->st_value + reloc->r_addend;
331# ifdef __ILP32__
332 /* This relocation type computes a signed offset that is
333 usually negative. The symbol and addend values are 32
334 bits but the GOT entry is 64 bits wide and the whole
335 64-bit entry is used as a signed quantity, so we need
336 to sign-extend the computed value to 64 bits. */
b5c086a2 337 *(Elf64_Sxword *) reloc_addr = (Elf64_Sxword) (Elf32_Sword) value;
c8c59454
L
338# else
339 *reloc_addr = value;
340# endif
341 }
e7f110cd 342# endif
8323008c 343 break;
c9ff0187
UD
344 case R_X86_64_TLSDESC:
345 {
346 struct tlsdesc volatile *td =
347 (struct tlsdesc volatile *)reloc_addr;
348
e7f110cd 349# ifndef RTLD_BOOTSTRAP
c9ff0187
UD
350 if (! sym)
351 {
352 td->arg = (void*)reloc->r_addend;
353 td->entry = _dl_tlsdesc_undefweak;
354 }
355 else
e7f110cd 356# endif
c9ff0187 357 {
e7f110cd
UD
358# ifndef RTLD_BOOTSTRAP
359# ifndef SHARED
c9ff0187 360 CHECK_STATIC_TLS (map, sym_map);
e7f110cd 361# else
c9ff0187
UD
362 if (!TRY_STATIC_TLS (map, sym_map))
363 {
364 td->arg = _dl_make_tlsdesc_dynamic
365 (sym_map, sym->st_value + reloc->r_addend);
366 td->entry = _dl_tlsdesc_dynamic;
367 }
368 else
e7f110cd 369# endif
c9ff0187 370# endif
c9ff0187
UD
371 {
372 td->arg = (void*)(sym->st_value - sym_map->l_tls_offset
373 + reloc->r_addend);
374 td->entry = _dl_tlsdesc_return;
375 }
376 }
377 break;
378 }
8323008c
RM
379 case R_X86_64_TPOFF64:
380 /* The offset is negative, forward from the thread pointer. */
e7f110cd 381# ifndef RTLD_BOOTSTRAP
8323008c 382 if (sym != NULL)
e7f110cd 383# endif
2430d57a 384 {
e7f110cd 385# ifndef RTLD_BOOTSTRAP
eb775e67 386 CHECK_STATIC_TLS (map, sym_map);
e7f110cd 387# endif
2430d57a
RM
388 /* We know the offset of the object the symbol is contained in.
389 It is a negative value which will be added to the
390 thread pointer. */
c8c59454
L
391 value = (sym->st_value + reloc->r_addend
392 - sym_map->l_tls_offset);
393# ifdef __ILP32__
394 /* The symbol and addend values are 32 bits but the GOT
395 entry is 64 bits wide and the whole 64-bit entry is used
396 as a signed quantity, so we need to sign-extend the
397 computed value to 64 bits. */
398 *(Elf64_Sxword *) reloc_addr = (Elf64_Sxword) (Elf32_Sword) value;
399# else
400 *reloc_addr = value;
401# endif
2430d57a 402 }
8323008c 403 break;
e7f110cd 404# endif
8323008c 405
e7f110cd 406# ifndef RTLD_BOOTSTRAP
c9cf6dde 407 case R_X86_64_64:
df8a552f
L
408 /* value + r_addend may be > 0xffffffff and R_X86_64_64
409 relocation updates the whole 64-bit entry. */
410 *(Elf64_Addr *) reloc_addr = (Elf64_Addr) value + reloc->r_addend;
c9cf6dde 411 break;
22676eaf
L
412# ifndef __ILP32__
413 case R_X86_64_SIZE32:
414 /* Set to symbol size plus addend. */
415 value = sym->st_size;
416# endif
c9cf6dde 417 case R_X86_64_32:
e7f110cd
UD
418 value += reloc->r_addend;
419 *(unsigned int *) reloc_addr = value;
420
421 const char *fmt;
a1ffb40e 422 if (__glibc_unlikely (value > UINT_MAX))
6c2b2a19
AJ
423 {
424 const char *strtab;
425
e7f110cd
UD
426 fmt = "\
427%s: Symbol `%s' causes overflow in R_X86_64_32 relocation\n";
6cc8844f 428# ifndef RESOLVE_CONFLICT_FIND_MAP
e7f110cd 429 print_err:
6cc8844f 430# endif
6c2b2a19
AJ
431 strtab = (const char *) D_PTR (map, l_info[DT_STRTAB]);
432
b9375348 433 _dl_error_printf (fmt, RTLD_PROGNAME, strtab + refsym->st_name);
6c2b2a19 434 }
c9cf6dde 435 break;
e7f110cd 436# ifndef RESOLVE_CONFLICT_FIND_MAP
8e27f45e 437 /* Not needed for dl-conflict.c. */
c9cf6dde 438 case R_X86_64_PC32:
4b30f61a 439 value += reloc->r_addend - (ElfW(Addr)) reloc_addr;
e7f110cd 440 *(unsigned int *) reloc_addr = value;
a1ffb40e 441 if (__glibc_unlikely (value != (int) value))
6c2b2a19 442 {
e7f110cd
UD
443 fmt = "\
444%s: Symbol `%s' causes overflow in R_X86_64_PC32 relocation\n";
445 goto print_err;
6c2b2a19 446 }
c9cf6dde
AJ
447 break;
448 case R_X86_64_COPY:
449 if (sym == NULL)
450 /* This can happen in trace mode if an object could not be
451 found. */
452 break;
e7f110cd
UD
453 memcpy (reloc_addr_arg, (void *) value,
454 MIN (sym->st_size, refsym->st_size));
c9cf6dde
AJ
455 if (__builtin_expect (sym->st_size > refsym->st_size, 0)
456 || (__builtin_expect (sym->st_size < refsym->st_size, 0)
afdca0f2 457 && GLRO(dl_verbose)))
c9cf6dde 458 {
e7f110cd
UD
459 fmt = "\
460%s: Symbol `%s' has different size in shared object, consider re-linking\n";
461 goto print_err;
c9cf6dde 462 }
c9cf6dde 463 break;
e7f110cd 464# endif
74414708
UD
465 case R_X86_64_IRELATIVE:
466 value = map->l_addr + reloc->r_addend;
4b30f61a 467 value = ((ElfW(Addr) (*) (void)) value) ();
74414708
UD
468 *reloc_addr = value;
469 break;
c9cf6dde
AJ
470 default:
471 _dl_reloc_bad_type (map, r_type, 0);
472 break;
e7f110cd 473# endif
c9cf6dde 474 }
c9cf6dde
AJ
475 }
476}
477
7090d3ca
AJ
478auto inline void
479__attribute ((always_inline))
4b30f61a 480elf_machine_rela_relative (ElfW(Addr) l_addr, const ElfW(Rela) *reloc,
87d254a7 481 void *const reloc_addr_arg)
c9cf6dde 482{
4b30f61a 483 ElfW(Addr) *const reloc_addr = reloc_addr_arg;
0a10fb9e 484#if !defined RTLD_BOOTSTRAP
df8a552f
L
485 /* l_addr + r_addend may be > 0xffffffff and R_X86_64_RELATIVE64
486 relocation updates the whole 64-bit entry. */
a1ffb40e 487 if (__glibc_unlikely (ELFW(R_TYPE) (reloc->r_info) == R_X86_64_RELATIVE64))
df8a552f
L
488 *(Elf64_Addr *) reloc_addr = (Elf64_Addr) l_addr + reloc->r_addend;
489 else
0a10fb9e 490#endif
df8a552f
L
491 {
492 assert (ELFW(R_TYPE) (reloc->r_info) == R_X86_64_RELATIVE);
493 *reloc_addr = l_addr + reloc->r_addend;
494 }
c9cf6dde
AJ
495}
496
7090d3ca
AJ
497auto inline void
498__attribute ((always_inline))
c9cf6dde 499elf_machine_lazy_rel (struct link_map *map,
4b30f61a 500 ElfW(Addr) l_addr, const ElfW(Rela) *reloc,
3a62d00d 501 int skip_ifunc)
c9cf6dde 502{
4b30f61a
L
503 ElfW(Addr) *const reloc_addr = (void *) (l_addr + reloc->r_offset);
504 const unsigned long int r_type = ELFW(R_TYPE) (reloc->r_info);
c9cf6dde
AJ
505
506 /* Check for unexpected PLT reloc type. */
a1ffb40e 507 if (__glibc_likely (r_type == R_X86_64_JUMP_SLOT))
32e6df36
UD
508 {
509 if (__builtin_expect (map->l_mach.plt, 0) == 0)
510 *reloc_addr += l_addr;
511 else
512 *reloc_addr =
513 map->l_mach.plt
4b30f61a 514 + (((ElfW(Addr)) reloc_addr) - map->l_mach.gotplt) * 2;
32e6df36 515 }
a1ffb40e 516 else if (__glibc_likely (r_type == R_X86_64_TLSDESC))
c9ff0187
UD
517 {
518 struct tlsdesc volatile * __attribute__((__unused__)) td =
519 (struct tlsdesc volatile *)reloc_addr;
520
521 td->arg = (void*)reloc;
522 td->entry = (void*)(D_PTR (map, l_info[ADDRIDX (DT_TLSDESC_PLT)])
523 + map->l_addr);
524 }
a1ffb40e 525 else if (__glibc_unlikely (r_type == R_X86_64_IRELATIVE))
74414708 526 {
4b30f61a 527 ElfW(Addr) value = map->l_addr + reloc->r_addend;
a1ffb40e 528 if (__glibc_likely (!skip_ifunc))
4b30f61a 529 value = ((ElfW(Addr) (*) (void)) value) ();
74414708
UD
530 *reloc_addr = value;
531 }
c9cf6dde
AJ
532 else
533 _dl_reloc_bad_type (map, r_type, 1);
534}
535
9dcafc55 536#endif /* RESOLVE_MAP */