1 /* Machine-dependent ELF dynamic relocation inline functions. ARM version.
2 Copyright (C) 1995-2022 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, see
17 <https://www.gnu.org/licenses/>. */
22 #define ELF_MACHINE_NAME "ARM"
25 #include <sys/param.h>
27 #include <dl-tlsdesc.h>
29 #include <dl-static-tls.h>
30 #include <dl-machine-rel.h>
33 # error CLEAR_CACHE definition required to handle TEXTREL
36 /* Return nonzero iff ELF header is compatible with the running host. */
37 static inline int __attribute__ ((unused
))
38 elf_machine_matches_host (const Elf32_Ehdr
*ehdr
)
40 return ehdr
->e_machine
== EM_ARM
;
43 /* Return the run-time load address of the shared object. */
44 static inline ElfW(Addr
) __attribute__ ((unused
))
45 elf_machine_load_address (void)
47 extern const ElfW(Ehdr
) __ehdr_start attribute_hidden
;
48 return (ElfW(Addr
)) &__ehdr_start
;
51 /* Return the link-time address of _DYNAMIC. */
52 static inline ElfW(Addr
) __attribute__ ((unused
))
53 elf_machine_dynamic (void)
55 extern ElfW(Dyn
) _DYNAMIC
[] attribute_hidden
;
56 return (ElfW(Addr
)) _DYNAMIC
- elf_machine_load_address ();
59 /* Set up the loaded object described by L so its unrelocated PLT
60 entries will jump to the on-demand fixup code in dl-runtime.c. */
62 static inline int __attribute__ ((unused
))
63 elf_machine_runtime_setup (struct link_map
*l
, struct r_scope_elem
*scope
[],
64 int lazy
, int profile
)
67 extern void _dl_runtime_resolve (Elf32_Word
);
68 extern void _dl_runtime_profile (Elf32_Word
);
70 if (l
->l_info
[DT_JMPREL
] && lazy
)
72 /* patb: this is different than i386 */
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 index into the .got section, load ip with &_GLOBAL_OFFSET_TABLE_[3],
76 and then jump to _GLOBAL_OFFSET_TABLE[2]. */
77 got
= (Elf32_Addr
*) D_PTR (l
, l_info
[DT_PLTGOT
]);
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. */
82 l
->l_mach
.plt
= got
[1] + l
->l_addr
;
83 got
[1] = (Elf32_Addr
) l
; /* Identify this shared object. */
85 /* The got[2] entry contains the address of a function which gets
86 called to get the address of a so far unresolved function and
87 jump to it. The profiling extension of the dynamic linker allows
88 to intercept the calls to collect information. In this case we
89 don't store the address in the GOT so that all future calls also
90 end in this function. */
93 got
[2] = (Elf32_Addr
) &_dl_runtime_profile
;
95 if (GLRO(dl_profile
) != NULL
96 && _dl_name_match_p (GLRO(dl_profile
), l
))
97 /* Say that we really want profiling and the timers are
99 GL(dl_profile_map
) = l
;
102 /* This function will get called to fix up the GOT entry indicated by
103 the offset on the stack, and then jump to the resolved address. */
104 got
[2] = (Elf32_Addr
) &_dl_runtime_resolve
;
110 #if defined(ARCH_HAS_BX)
111 #define BX(x) "bx\t" #x
113 #define BX(x) "mov\tpc, " #x
116 /* Mask identifying addresses reserved for the user program,
117 where the dynamic linker should not map anything. */
118 #define ELF_MACHINE_USER_ADDRESS_MASK 0xf8000000UL
120 /* Initial entry point code for the dynamic linker.
121 The C function `_dl_start' is the real entry point;
122 its return value is the user program's entry point. */
124 #define RTLD_START asm ("\
127 .type _start, %function\n\
128 .globl _dl_start_user\n\
129 .type _dl_start_user, %function\n\
131 @ we are PIC code, so get global offset table\n\
132 ldr sl, .L_GET_GOT\n\
133 @ at start time, all the args are on the stack\n\
136 @ returns user entry point in r0\n\
138 adr r6, .L_GET_GOT\n\
141 @ save the entry point in another register\n\
143 @ get the original arg count\n\
145 @ get the argv address\n\
148 add r3, r2, r1, lsl #2\n\
150 @ now we call _dl_init\n\
155 @ load the finalizer function\n\
156 ldr r0, .L_FINI_PROC\n\
158 @ jump to the user_s entry point\n\
162 .word _GLOBAL_OFFSET_TABLE_ - .L_GET_GOT\n\
164 .word _dl_fini(GOTOFF)\n\
166 .word __GI__dl_argv(GOTOFF)\n\
168 .word _rtld_local(GOTOFF)\n\
172 /* ELF_RTYPE_CLASS_PLT iff TYPE describes relocation of a PLT entry or
173 TLS variable, so undefined references should not be allowed to
175 ELF_RTYPE_CLASS_COPY iff TYPE should not be allowed to resolve to one
176 of the main executable's symbols, as for a COPY reloc. */
177 #ifndef RTLD_BOOTSTRAP
178 # define elf_machine_type_class(type) \
179 ((((type) == R_ARM_JUMP_SLOT || (type) == R_ARM_TLS_DTPMOD32 \
180 || (type) == R_ARM_TLS_DTPOFF32 || (type) == R_ARM_TLS_TPOFF32 \
181 || (type) == R_ARM_TLS_DESC) \
182 * ELF_RTYPE_CLASS_PLT) \
183 | (((type) == R_ARM_COPY) * ELF_RTYPE_CLASS_COPY))
185 #define elf_machine_type_class(type) \
186 ((((type) == R_ARM_JUMP_SLOT) * ELF_RTYPE_CLASS_PLT) \
187 | (((type) == R_ARM_COPY) * ELF_RTYPE_CLASS_COPY))
190 /* A reloc type used for ld.so cmdline arg lookups to reject PLT entries. */
191 #define ELF_MACHINE_JMP_SLOT R_ARM_JUMP_SLOT
193 /* We define an initialization functions. This is called very early in
195 #define DL_PLATFORM_INIT dl_platform_init ()
197 static inline void __attribute__ ((unused
))
198 dl_platform_init (void)
200 if (GLRO(dl_platform
) != NULL
&& *GLRO(dl_platform
) == '\0')
201 /* Avoid an empty string which would disturb us. */
202 GLRO(dl_platform
) = NULL
;
205 static inline Elf32_Addr
206 elf_machine_fixup_plt (struct link_map
*map
, lookup_t t
,
207 const ElfW(Sym
) *refsym
, const ElfW(Sym
) *sym
,
208 const Elf32_Rel
*reloc
,
209 Elf32_Addr
*reloc_addr
, Elf32_Addr value
)
211 return *reloc_addr
= value
;
214 /* Return the final value of a plt relocation. */
215 static inline Elf32_Addr
216 elf_machine_plt_value (struct link_map
*map
, const Elf32_Rel
*reloc
,
222 #endif /* !dl_machine_h */
225 /* Names of the architecture-specific auditing callback functions. */
226 #define ARCH_LA_PLTENTER arm_gnu_pltenter
227 #define ARCH_LA_PLTEXIT arm_gnu_pltexit
230 /* Set NEW_VALUE based on V, and return true iff it overflows 24 bits. */
231 static inline bool set_new_value (Elf32_Addr
*new_value
, Elf32_Addr v
,
232 Elf32_Addr
*const reloc_addr
,
235 *new_value
= v
+ addend
- (Elf32_Addr
) reloc_addr
;
236 Elf32_Addr topbits
= *new_value
& 0xfe000000;
237 return topbits
!= 0xfe000000 && topbits
!= 0x00000000;
240 /* Handle a PC24 reloc, including the out-of-range case. */
242 relocate_pc24 (struct link_map
*map
, Elf32_Addr value
,
243 Elf32_Addr
*const reloc_addr
, Elf32_Sword addend
)
245 Elf32_Addr new_value
;
247 if (set_new_value (&new_value
, value
, reloc_addr
, addend
))
249 /* The PC-relative address doesn't fit in 24 bits! */
251 static void *fix_page
;
252 static size_t fix_offset
;
253 if (fix_page
== NULL
)
255 void *new_page
= __mmap (NULL
, GLRO(dl_pagesize
),
256 PROT_READ
| PROT_WRITE
| PROT_EXEC
,
257 MAP_PRIVATE
| MAP_ANON
, -1, 0);
258 if (new_page
== MAP_FAILED
)
259 _dl_signal_error (0, map
->l_name
, NULL
,
260 "could not map page for fixup");
262 assert (fix_offset
== 0);
265 Elf32_Word
*fix_address
= fix_page
+ fix_offset
;
266 fix_address
[0] = 0xe51ff004; /* ldr pc, [pc, #-4] */
267 fix_address
[1] = value
;
269 fix_offset
+= sizeof fix_address
[0] * 2;
270 if (fix_offset
>= GLRO(dl_pagesize
))
276 if (set_new_value (&new_value
, (Elf32_Addr
) fix_address
, reloc_addr
,
278 _dl_signal_error (0, map
->l_name
, NULL
,
279 "R_ARM_PC24 relocation out of range");
282 *reloc_addr
= (*reloc_addr
& 0xff000000) | ((new_value
>> 2) & 0x00ffffff);
285 /* Perform the relocation specified by RELOC and SYM (which is fully resolved).
286 MAP is the object containing the reloc. */
289 __attribute__ ((always_inline
))
290 elf_machine_rel (struct link_map
*map
, struct r_scope_elem
*scope
[],
291 const Elf32_Rel
*reloc
, const Elf32_Sym
*sym
,
292 const struct r_found_version
*version
,
293 void *const reloc_addr_arg
, int skip_ifunc
)
295 Elf32_Addr
*const reloc_addr
= reloc_addr_arg
;
296 const unsigned int r_type
= ELF32_R_TYPE (reloc
->r_info
);
298 #if !defined RTLD_BOOTSTRAP
299 if (__builtin_expect (r_type
== R_ARM_RELATIVE
, 0))
300 *reloc_addr
+= map
->l_addr
;
301 # ifndef RTLD_BOOTSTRAP
302 else if (__builtin_expect (r_type
== R_ARM_NONE
, 0))
308 const Elf32_Sym
*const refsym
= sym
;
309 struct link_map
*sym_map
= RESOLVE_MAP (map
, scope
, &sym
, version
,
311 Elf32_Addr value
= SYMBOL_ADDRESS (sym_map
, sym
, true);
314 && __builtin_expect (ELFW(ST_TYPE
) (sym
->st_info
) == STT_GNU_IFUNC
, 0)
315 && __builtin_expect (sym
->st_shndx
!= SHN_UNDEF
, 1)
316 && __builtin_expect (!skip_ifunc
, 1))
317 value
= elf_ifunc_invoke (value
);
323 /* This can happen in trace mode if an object could not be
326 if (sym
->st_size
> refsym
->st_size
327 || (GLRO(dl_verbose
) && sym
->st_size
< refsym
->st_size
))
331 strtab
= (const void *) D_PTR (map
, l_info
[DT_STRTAB
]);
333 %s: Symbol `%s' has different size in shared object, consider re-linking\n",
334 RTLD_PROGNAME
, strtab
+ refsym
->st_name
);
336 memcpy (reloc_addr_arg
, (void *) value
,
337 MIN (sym
->st_size
, refsym
->st_size
));
340 case R_ARM_JUMP_SLOT
:
341 # ifdef RTLD_BOOTSTRAP
342 /* Fix weak undefined references. */
343 if (sym
!= NULL
&& sym
->st_value
== 0)
354 } __attribute__ ((packed
, may_alias
));
355 # ifndef RTLD_BOOTSTRAP
356 /* This is defined in rtld.c, but nowhere in the static
357 libc.a; make the reference weak so static programs can
358 still link. This declaration cannot be done when
359 compiling rtld.c (i.e. #ifdef RTLD_BOOTSTRAP) because
360 rtld.c contains the common defn for _dl_rtld_map, which
361 is incompatible with a weak decl in the same file. */
363 weak_extern (_dl_rtld_map
);
365 if (map
== &GL(dl_rtld_map
))
366 /* Undo the relocation done here during bootstrapping.
367 Now we will relocate it anew, possibly using a
368 binding found in the user program or a loaded library
369 rather than the dynamic linker's built-in definitions
370 used while loading those libraries. */
371 value
-= SYMBOL_ADDRESS (map
, refsym
, true);
373 /* Support relocations on mis-aligned offsets. */
374 ((struct unaligned
*) reloc_addr
)->x
+= value
;
379 struct tlsdesc
*td
= (struct tlsdesc
*)reloc_addr
;
381 # ifndef RTLD_BOOTSTRAP
383 td
->entry
= _dl_tlsdesc_undefweak
;
387 if (ELF32_R_SYM (reloc
->r_info
) == STN_UNDEF
)
388 value
= td
->argument
.value
;
390 value
= sym
->st_value
;
392 # ifndef RTLD_BOOTSTRAP
394 CHECK_STATIC_TLS (map
, sym_map
);
396 if (!TRY_STATIC_TLS (map
, sym_map
))
399 = _dl_make_tlsdesc_dynamic (sym_map
, value
);
400 td
->entry
= _dl_tlsdesc_dynamic
;
406 td
->argument
.value
= value
+ sym_map
->l_tls_offset
;
407 td
->entry
= _dl_tlsdesc_return
;
413 relocate_pc24 (map
, value
, reloc_addr
,
414 /* Sign-extend the 24-bit addend in the
415 instruction (which counts instructions), and
416 then shift it up two so as to count bytes. */
417 (((Elf32_Sword
) *reloc_addr
<< 8) >> 8) << 2);
419 #if !defined RTLD_BOOTSTRAP
420 case R_ARM_TLS_DTPMOD32
:
421 /* Get the information from the link map returned by the
424 *reloc_addr
= sym_map
->l_tls_modid
;
427 case R_ARM_TLS_DTPOFF32
:
429 *reloc_addr
+= sym
->st_value
;
432 case R_ARM_TLS_TPOFF32
:
435 CHECK_STATIC_TLS (map
, sym_map
);
436 *reloc_addr
+= sym
->st_value
+ sym_map
->l_tls_offset
;
439 case R_ARM_IRELATIVE
:
440 value
= map
->l_addr
+ *reloc_addr
;
441 if (__glibc_likely (!skip_ifunc
))
442 value
= ((Elf32_Addr (*) (int)) value
) (GLRO(dl_hwcap
));
447 _dl_reloc_bad_type (map
, r_type
, 0);
455 __attribute__ ((always_inline
))
456 elf_machine_rel_relative (Elf32_Addr l_addr
, const Elf32_Rel
*reloc
,
457 void *const reloc_addr_arg
)
459 Elf32_Addr
*const reloc_addr
= reloc_addr_arg
;
460 *reloc_addr
+= l_addr
;
465 __attribute__ ((always_inline
))
466 elf_machine_lazy_rel (struct link_map
*map
, struct r_scope_elem
*scope
[],
467 Elf32_Addr l_addr
, const Elf32_Rel
*reloc
,
470 Elf32_Addr
*const reloc_addr
= (void *) (l_addr
+ reloc
->r_offset
);
471 const unsigned int r_type
= ELF32_R_TYPE (reloc
->r_info
);
472 /* Check for unexpected PLT reloc type. */
473 if (__builtin_expect (r_type
== R_ARM_JUMP_SLOT
, 1))
475 if (__builtin_expect (map
->l_mach
.plt
, 0) == 0)
476 *reloc_addr
+= l_addr
;
478 *reloc_addr
= map
->l_mach
.plt
;
480 else if (__builtin_expect (r_type
== R_ARM_TLS_DESC
, 1))
482 const Elf_Symndx symndx
= ELFW (R_SYM
) (reloc
->r_info
);
483 const ElfW (Sym
) *symtab
= (const void *)D_PTR (map
, l_info
[DT_SYMTAB
]);
484 const ElfW (Sym
) *sym
= &symtab
[symndx
];
485 const struct r_found_version
*version
= NULL
;
487 if (map
->l_info
[VERSYMIDX (DT_VERSYM
)] != NULL
)
489 const ElfW (Half
) *vernum
=
490 (const void *)D_PTR (map
, l_info
[VERSYMIDX (DT_VERSYM
)]);
491 version
= &map
->l_versions
[vernum
[symndx
] & 0x7fff];
494 /* Always initialize TLS descriptors completely, because lazy
495 initialization requires synchronization at every TLS access. */
496 elf_machine_rel (map
, scope
, reloc
, sym
, version
, reloc_addr
, skip_ifunc
);
499 _dl_reloc_bad_type (map
, r_type
, 1);
502 #endif /* RESOLVE_MAP */