Cleanup old obsolete PPC_REL16 checks
[glibc.git] / sysdeps / powerpc / powerpc32 / dl-machine.h
blob5351d9691d05010ecb91d23105c8051ca2dcb6ed
1 /* Machine-dependent ELF dynamic relocation inline functions. PowerPC version.
2 Copyright (C) 1995-2002, 2003, 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 "powerpc"
25 #include <assert.h>
26 #include <dl-tls.h>
28 /* Translate a processor specific dynamic tag to the index
29 in l_info array. */
30 #define DT_PPC(x) (DT_PPC_##x - DT_LOPROC + DT_NUM)
32 /* Return nonzero iff ELF header is compatible with the running host. */
33 static inline int
34 elf_machine_matches_host (const Elf32_Ehdr *ehdr)
36 return ehdr->e_machine == EM_PPC;
39 /* Return the value of the GOT pointer. */
40 static inline Elf32_Addr * __attribute__ ((const))
41 ppc_got (void)
43 Elf32_Addr *got;
45 asm ("bcl 20,31,1f\n"
46 "1: mflr %0\n"
47 " addis %0,%0,_GLOBAL_OFFSET_TABLE_-1b@ha\n"
48 " addi %0,%0,_GLOBAL_OFFSET_TABLE_-1b@l\n"
49 : "=b" (got) : : "lr");
51 return got;
54 /* Return the link-time address of _DYNAMIC, stored as
55 the first value in the GOT. */
56 static inline Elf32_Addr __attribute__ ((const))
57 elf_machine_dynamic (void)
59 return *ppc_got ();
62 /* Return the run-time load address of the shared object. */
63 static inline Elf32_Addr __attribute__ ((const))
64 elf_machine_load_address (void)
66 Elf32_Addr *branchaddr;
67 Elf32_Addr runtime_dynamic;
69 /* This is much harder than you'd expect. Possibly I'm missing something.
70 The 'obvious' way:
72 Apparently, "bcl 20,31,$+4" is what should be used to load LR
73 with the address of the next instruction.
74 I think this is so that machines that do bl/blr pairing don't
75 get confused.
77 asm ("bcl 20,31,0f ;"
78 "0: mflr 0 ;"
79 "lis %0,0b@ha;"
80 "addi %0,%0,0b@l;"
81 "subf %0,%0,0"
82 : "=b" (addr) : : "r0", "lr");
84 doesn't work, because the linker doesn't have to (and in fact doesn't)
85 update the @ha and @l references; the loader (which runs after this
86 code) will do that.
88 Instead, we use the following trick:
90 The linker puts the _link-time_ address of _DYNAMIC at the first
91 word in the GOT. We could branch to that address, if we wanted,
92 by using an @local reloc; the linker works this out, so it's safe
93 to use now. We can't, of course, actually branch there, because
94 we'd cause an illegal instruction exception; so we need to compute
95 the address ourselves. That gives us the following code: */
97 /* Get address of the 'b _DYNAMIC@local'... */
98 asm ("bcl 20,31,0f;"
99 "b _DYNAMIC@local;"
100 "0:"
101 : "=l" (branchaddr));
103 /* So now work out the difference between where the branch actually points,
104 and the offset of that location in memory from the start of the file. */
105 runtime_dynamic = ((Elf32_Addr) branchaddr
106 + ((Elf32_Sword) (*branchaddr << 6 & 0xffffff00) >> 6));
108 return runtime_dynamic - elf_machine_dynamic ();
111 #define ELF_MACHINE_BEFORE_RTLD_RELOC(dynamic_info) /* nothing */
113 /* The PLT uses Elf32_Rela relocs. */
114 #define elf_machine_relplt elf_machine_rela
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 0xf0000000UL
120 /* The actual _start code is in dl-start.S. Use a really
121 ugly bit of assembler to let dl-start.o see _dl_start. */
122 #define RTLD_START asm (".globl _dl_start");
124 /* Decide where a relocatable object should be loaded. */
125 extern ElfW(Addr)
126 __elf_preferred_address(struct link_map *loader, size_t maplength,
127 ElfW(Addr) mapstartpref);
128 #define ELF_PREFERRED_ADDRESS(loader, maplength, mapstartpref) \
129 __elf_preferred_address (loader, maplength, mapstartpref)
131 /* ELF_RTYPE_CLASS_PLT iff TYPE describes relocation of a PLT entry, so
132 PLT entries should not be allowed to define the value.
133 ELF_RTYPE_CLASS_NOCOPY iff TYPE should not be allowed to resolve to one
134 of the main executable's symbols, as for a COPY reloc. */
135 /* We never want to use a PLT entry as the destination of a
136 reloc, when what is being relocated is a branch. This is
137 partly for efficiency, but mostly so we avoid loops. */
138 #if !defined RTLD_BOOTSTRAP || USE___THREAD
139 #define elf_machine_type_class(type) \
140 ((((type) == R_PPC_JMP_SLOT \
141 || (type) == R_PPC_REL24 \
142 || ((type) >= R_PPC_DTPMOD32 /* contiguous TLS */ \
143 && (type) <= R_PPC_DTPREL32) \
144 || (type) == R_PPC_ADDR24) * ELF_RTYPE_CLASS_PLT) \
145 | (((type) == R_PPC_COPY) * ELF_RTYPE_CLASS_COPY))
146 #else
147 #define elf_machine_type_class(type) \
148 ((((type) == R_PPC_JMP_SLOT \
149 || (type) == R_PPC_REL24 \
150 || (type) == R_PPC_ADDR24) * ELF_RTYPE_CLASS_PLT) \
151 | (((type) == R_PPC_COPY) * ELF_RTYPE_CLASS_COPY))
152 #endif
154 /* A reloc type used for ld.so cmdline arg lookups to reject PLT entries. */
155 #define ELF_MACHINE_JMP_SLOT R_PPC_JMP_SLOT
157 /* The PowerPC never uses REL relocations. */
158 #define ELF_MACHINE_NO_REL 1
160 /* Set up the loaded object described by MAP so its unrelocated PLT
161 entries will jump to the on-demand fixup code in dl-runtime.c.
162 Also install a small trampoline to be used by entries that have
163 been relocated to an address too far away for a single branch. */
164 extern int __elf_machine_runtime_setup (struct link_map *map,
165 int lazy, int profile);
167 static inline int
168 elf_machine_runtime_setup (struct link_map *map,
169 int lazy, int profile)
171 if (map->l_info[DT_JMPREL] == 0)
172 return lazy;
174 if (map->l_info[DT_PPC(GOT)] == 0)
175 /* Handle old style PLT. */
176 return __elf_machine_runtime_setup (map, lazy, profile);
178 /* New style non-exec PLT consisting of an array of addresses. */
179 map->l_info[DT_PPC(GOT)]->d_un.d_ptr += map->l_addr;
180 if (lazy)
182 Elf32_Addr *plt, *got, glink;
183 Elf32_Word num_plt_entries;
184 void (*dlrr) (void);
185 extern void _dl_runtime_resolve (void);
186 extern void _dl_prof_resolve (void);
188 if (__builtin_expect (!profile, 1))
189 dlrr = _dl_runtime_resolve;
190 else
192 if (GLRO(dl_profile) != NULL
193 &&_dl_name_match_p (GLRO(dl_profile), map))
194 GL(dl_profile_map) = map;
195 dlrr = _dl_prof_resolve;
197 got = (Elf32_Addr *) map->l_info[DT_PPC(GOT)]->d_un.d_ptr;
198 glink = got[1];
199 got[1] = (Elf32_Addr) dlrr;
200 got[2] = (Elf32_Addr) map;
202 /* Relocate everything in .plt by the load address offset. */
203 plt = (Elf32_Addr *) D_PTR (map, l_info[DT_PLTGOT]);
204 num_plt_entries = (map->l_info[DT_PLTRELSZ]->d_un.d_val
205 / sizeof (Elf32_Rela));
207 /* If a library is prelinked but we have to relocate anyway,
208 we have to be able to undo the prelinking of .plt section.
209 The prelinker saved us at got[1] address of .glink
210 section's start. */
211 if (glink)
213 glink += map->l_addr;
214 while (num_plt_entries-- != 0)
215 *plt++ = glink, glink += 4;
217 else
218 while (num_plt_entries-- != 0)
219 *plt++ += map->l_addr;
221 return lazy;
224 /* Change the PLT entry whose reloc is 'reloc' to call the actual routine. */
225 extern Elf32_Addr __elf_machine_fixup_plt (struct link_map *map,
226 Elf32_Addr *reloc_addr,
227 Elf32_Addr finaladdr);
229 static inline Elf32_Addr
230 elf_machine_fixup_plt (struct link_map *map, lookup_t t,
231 const Elf32_Rela *reloc,
232 Elf32_Addr *reloc_addr, Elf64_Addr finaladdr)
234 if (map->l_info[DT_PPC(GOT)] == 0)
235 /* Handle old style PLT. */
236 return __elf_machine_fixup_plt (map, reloc_addr, finaladdr);
238 *reloc_addr = finaladdr;
239 return finaladdr;
242 /* Return the final value of a plt relocation. */
243 static inline Elf32_Addr
244 elf_machine_plt_value (struct link_map *map, const Elf32_Rela *reloc,
245 Elf32_Addr value)
247 return value + reloc->r_addend;
251 /* Names of the architecture-specific auditing callback functions. */
252 #define ARCH_LA_PLTENTER ppc32_gnu_pltenter
253 #define ARCH_LA_PLTEXIT ppc32_gnu_pltexit
255 #endif /* dl_machine_h */
257 #ifdef RESOLVE_MAP
259 /* Do the actual processing of a reloc, once its target address
260 has been determined. */
261 extern void __process_machine_rela (struct link_map *map,
262 const Elf32_Rela *reloc,
263 struct link_map *sym_map,
264 const Elf32_Sym *sym,
265 const Elf32_Sym *refsym,
266 Elf32_Addr *const reloc_addr,
267 Elf32_Addr finaladdr,
268 int rinfo) attribute_hidden;
270 /* Call _dl_signal_error when a resolved value overflows a relocated area. */
271 extern void _dl_reloc_overflow (struct link_map *map,
272 const char *name,
273 Elf32_Addr *const reloc_addr,
274 const Elf32_Sym *refsym) attribute_hidden;
276 /* Perform the relocation specified by RELOC and SYM (which is fully resolved).
277 LOADADDR is the load address of the object; INFO is an array indexed
278 by DT_* of the .dynamic section info. */
280 auto inline void __attribute__ ((always_inline))
281 elf_machine_rela (struct link_map *map, const Elf32_Rela *reloc,
282 const Elf32_Sym *sym, const struct r_found_version *version,
283 void *const reloc_addr_arg)
285 Elf32_Addr *const reloc_addr = reloc_addr_arg;
286 const Elf32_Sym *const refsym = sym;
287 Elf32_Addr value;
288 const int r_type = ELF32_R_TYPE (reloc->r_info);
289 struct link_map *sym_map = NULL;
291 #ifndef RESOLVE_CONFLICT_FIND_MAP
292 if (r_type == R_PPC_RELATIVE)
294 *reloc_addr = map->l_addr + reloc->r_addend;
295 return;
298 if (__builtin_expect (r_type == R_PPC_NONE, 0))
299 return;
301 /* binutils on ppc32 includes st_value in r_addend for relocations
302 against local symbols. */
303 if (__builtin_expect (ELF32_ST_BIND (sym->st_info) == STB_LOCAL, 0)
304 && sym->st_shndx != SHN_UNDEF)
305 value = map->l_addr;
306 else
308 sym_map = RESOLVE_MAP (&sym, version, r_type);
309 value = sym_map == NULL ? 0 : sym_map->l_addr + sym->st_value;
311 value += reloc->r_addend;
312 #else
313 value = reloc->r_addend;
314 #endif
316 if (sym != NULL
317 && __builtin_expect (ELFW(ST_TYPE) (sym->st_info) == STT_GNU_IFUNC, 0)
318 && __builtin_expect (sym->st_shndx != SHN_UNDEF, 1))
319 value = ((Elf32_Addr (*) (void)) value) ();
321 /* A small amount of code is duplicated here for speed. In libc,
322 more than 90% of the relocs are R_PPC_RELATIVE; in the X11 shared
323 libraries, 60% are R_PPC_RELATIVE, 24% are R_PPC_GLOB_DAT or
324 R_PPC_ADDR32, and 16% are R_PPC_JMP_SLOT (which this routine
325 wouldn't usually handle). As an bonus, doing this here allows
326 the switch statement in __process_machine_rela to work. */
327 switch (r_type)
329 case R_PPC_GLOB_DAT:
330 case R_PPC_ADDR32:
331 *reloc_addr = value;
332 break;
334 #if (!defined RTLD_BOOTSTRAP || USE___THREAD) \
335 && !defined RESOLVE_CONFLICT_FIND_MAP
336 # ifdef RTLD_BOOTSTRAP
337 # define NOT_BOOTSTRAP 0
338 # else
339 # define NOT_BOOTSTRAP 1
340 # endif
342 case R_PPC_DTPMOD32:
343 if (!NOT_BOOTSTRAP)
344 /* During startup the dynamic linker is always index 1. */
345 *reloc_addr = 1;
346 else if (sym_map != NULL)
347 /* Get the information from the link map returned by the
348 RESOLVE_MAP function. */
349 *reloc_addr = sym_map->l_tls_modid;
350 break;
351 case R_PPC_DTPREL32:
352 /* During relocation all TLS symbols are defined and used.
353 Therefore the offset is already correct. */
354 if (NOT_BOOTSTRAP && sym_map != NULL)
355 *reloc_addr = TLS_DTPREL_VALUE (sym, reloc);
356 break;
357 case R_PPC_TPREL32:
358 if (!NOT_BOOTSTRAP || sym_map != NULL)
360 if (NOT_BOOTSTRAP)
361 CHECK_STATIC_TLS (map, sym_map);
362 *reloc_addr = TLS_TPREL_VALUE (sym_map, sym, reloc);
364 break;
365 #endif
367 case R_PPC_JMP_SLOT:
368 #ifdef RESOLVE_CONFLICT_FIND_MAP
369 RESOLVE_CONFLICT_FIND_MAP (map, reloc_addr);
370 #endif
371 if (map->l_info[DT_PPC(GOT)] != 0)
373 *reloc_addr = value;
374 break;
376 /* FALLTHROUGH */
378 default:
379 __process_machine_rela (map, reloc, sym_map, sym, refsym,
380 reloc_addr, value, r_type);
384 auto inline void __attribute__ ((always_inline))
385 elf_machine_rela_relative (Elf32_Addr l_addr, const Elf32_Rela *reloc,
386 void *const reloc_addr_arg)
388 Elf32_Addr *const reloc_addr = reloc_addr_arg;
389 *reloc_addr = l_addr + reloc->r_addend;
392 auto inline void __attribute__ ((always_inline))
393 elf_machine_lazy_rel (struct link_map *map,
394 Elf32_Addr l_addr, const Elf32_Rela *reloc)
396 /* elf_machine_runtime_setup handles this. */
399 /* The SVR4 ABI specifies that the JMPREL relocs must be inside the
400 DT_RELA table. */
401 #define ELF_MACHINE_PLTREL_OVERLAP 1
403 #endif /* RESOLVE_MAP */