Add Changelog ...
[glibc.git] / sysdeps / hppa / dl-machine.h
blob1bee330f8b98b03f6d6e80deafaaed1fff138f7c
1 /* Machine-dependent ELF dynamic relocation inline functions. PA-RISC version.
2 Copyright (C) 1995-2012 Free Software Foundation, Inc.
3 Contributed by David Huggins-Daines <dhd@debian.org>
4 This file is part of the GNU C Library.
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.
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.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library. If not, see
18 <http://www.gnu.org/licenses/>. */
20 #ifndef dl_machine_h
21 #define dl_machine_h 1
23 #define ELF_MACHINE_NAME "hppa"
25 #include <sys/param.h>
26 #include <assert.h>
27 #include <string.h>
28 #include <link.h>
29 #include <errno.h>
30 #include <dl-fptr.h>
31 #include <abort-instr.h>
32 #include <tls.h>
34 /* These two definitions must match the definition of the stub in
35 bfd/elf32-hppa.c (see plt_stub[]).
37 a. Define the size of the *entire* stub we place at the end of the PLT
38 table (right up against the GOT).
40 b. Define the number of bytes back from the GOT to the entry point of
41 the PLT stub. You see the PLT stub must be entered in the middle
42 so it can depwi to find it's own address (long jump stub)
44 c. Define the size of a single PLT entry so we can jump over the
45 last entry to get the stub address */
47 #define SIZEOF_PLT_STUB (7*4)
48 #define GOT_FROM_PLT_STUB (4*4)
49 #define PLT_ENTRY_SIZE (2*4)
51 /* Initialize the function descriptor table before relocations */
52 static inline void
53 __hppa_init_bootstrap_fdesc_table (struct link_map *map)
55 ElfW(Addr) *boot_table;
57 /* Careful: this will be called before got has been relocated... */
58 ELF_MACHINE_LOAD_ADDRESS(boot_table,_dl_boot_fptr_table);
60 map->l_mach.fptr_table_len = ELF_MACHINE_BOOT_FPTR_TABLE_LEN;
61 map->l_mach.fptr_table = boot_table;
64 #define ELF_MACHINE_BEFORE_RTLD_RELOC(dynamic_info) \
65 __hppa_init_bootstrap_fdesc_table (&bootstrap_map); \
66 _dl_fptr_init();
68 /* Return nonzero iff ELF header is compatible with the running host. */
69 static inline int
70 elf_machine_matches_host (const Elf32_Ehdr *ehdr)
72 return ehdr->e_machine == EM_PARISC;
75 /* Return the link-time address of _DYNAMIC. */
76 static inline Elf32_Addr
77 elf_machine_dynamic (void) __attribute__ ((const));
79 static inline Elf32_Addr
80 elf_machine_dynamic (void)
82 Elf32_Addr dynamic;
84 asm ("b,l 1f,%0\n"
85 " depi 0,31,2,%0\n"
86 "1: addil L'_GLOBAL_OFFSET_TABLE_ - ($PIC_pcrel$0 - 8),%0\n"
87 " ldw R'_GLOBAL_OFFSET_TABLE_ - ($PIC_pcrel$0 - 12)(%%r1),%0\n"
88 : "=r" (dynamic) : : "r1");
90 return dynamic;
93 /* Return the run-time load address of the shared object. */
94 static inline Elf32_Addr
95 elf_machine_load_address (void) __attribute__ ((const));
97 static inline Elf32_Addr
98 elf_machine_load_address (void)
100 Elf32_Addr dynamic;
102 asm (
103 " b,l 1f,%0\n"
104 " depi 0,31,2,%0\n"
105 "1: addil L'_DYNAMIC - ($PIC_pcrel$0 - 8),%0\n"
106 " ldo R'_DYNAMIC - ($PIC_pcrel$0 - 12)(%%r1),%0\n"
107 : "=r" (dynamic) : : "r1");
109 return dynamic - elf_machine_dynamic ();
112 /* Fixup a PLT entry to bounce directly to the function at VALUE. */
113 static inline struct fdesc __attribute__ ((always_inline))
114 elf_machine_fixup_plt (struct link_map *map, lookup_t t,
115 const Elf32_Rela *reloc,
116 Elf32_Addr *reloc_addr, struct fdesc value)
118 volatile Elf32_Addr *rfdesc = reloc_addr;
119 /* map is the link_map for the caller, t is the link_map for the object
120 being called */
121 rfdesc[1] = value.gp;
122 /* Need to ensure that the gp is visible before the code
123 entry point is updated */
124 rfdesc[0] = value.ip;
125 return value;
128 /* Return the final value of a plt relocation. */
129 static inline struct fdesc
130 elf_machine_plt_value (struct link_map *map, const Elf32_Rela *reloc,
131 struct fdesc value)
133 /* We are rela only, return a function descriptor as a plt entry. */
134 return (struct fdesc) { value.ip + reloc->r_addend, value.gp };
137 /* Set up the loaded object described by L so its unrelocated PLT
138 entries will jump to the on-demand fixup code in dl-runtime.c. */
140 static inline int
141 elf_machine_runtime_setup (struct link_map *l, int lazy, int profile)
143 Elf32_Addr *got = NULL;
144 Elf32_Addr l_addr, iplt, jmprel, end_jmprel, r_type, r_sym;
145 const Elf32_Rela *reloc;
146 struct fdesc *fptr;
147 static union {
148 unsigned char c[8];
149 Elf32_Addr i[2];
150 } sig = {{0x00,0xc0,0xff,0xee, 0xde,0xad,0xbe,0xef}};
152 /* If we don't have a PLT we can just skip all this... */
153 if (__builtin_expect (l->l_info[DT_JMPREL] == NULL,0))
154 return lazy;
156 /* All paths use these values */
157 l_addr = l->l_addr;
158 jmprel = D_PTR(l, l_info[DT_JMPREL]);
159 end_jmprel = jmprel + l->l_info[DT_PLTRELSZ]->d_un.d_val;
161 extern void _dl_runtime_resolve (void);
162 extern void _dl_runtime_profile (void);
164 /* Linking lazily */
165 if (lazy)
167 /* FIXME: Search for the got, but backwards through the relocs, technically we should
168 find it on the first try. However, assuming the relocs got out of order the
169 routine is made a bit more robust by searching them all in case of failure. */
170 for (iplt = (end_jmprel - sizeof(Elf32_Rela)); iplt >= jmprel; iplt -= sizeof (Elf32_Rela))
173 reloc = (const Elf32_Rela *) iplt;
174 r_type = ELF32_R_TYPE (reloc->r_info);
175 r_sym = ELF32_R_SYM (reloc->r_info);
177 got = (Elf32_Addr *) (reloc->r_offset + l_addr + PLT_ENTRY_SIZE + SIZEOF_PLT_STUB);
179 /* If we aren't an IPLT, and we aren't NONE then it's a bad reloc */
180 if (__builtin_expect (r_type != R_PARISC_IPLT, 0))
182 if (__builtin_expect (r_type != R_PARISC_NONE, 0))
183 _dl_reloc_bad_type (l, r_type, 1);
184 continue;
187 /* Check for the plt_stub that binutils placed here for us
188 to use with _dl_runtime_resolve */
189 if (got[-2] != sig.i[0] || got[-1] != sig.i[1])
191 got = NULL; /* Not the stub... keep looking */
193 else
195 /* Found the GOT! */
196 register Elf32_Addr ltp __asm__ ("%r19");
198 /* Identify this shared object. Second entry in the got. */
199 got[1] = (Elf32_Addr) l;
201 /* This function will be called to perform the relocation. */
202 if (__builtin_expect (!profile, 1))
204 /* If a static application called us, then _dl_runtime_resolve is not
205 a function descriptor, but the *real* address of the function... */
206 if((unsigned long) &_dl_runtime_resolve & 3)
208 got[-2] = (Elf32_Addr) ((struct fdesc *)
209 ((unsigned long) &_dl_runtime_resolve & ~3))->ip;
211 else
213 /* Static executable! */
214 got[-2] = (Elf32_Addr) &_dl_runtime_resolve;
217 else
219 if (GLRO(dl_profile) != NULL
220 && _dl_name_match_p (GLRO(dl_profile), l))
222 /* This is the object we are looking for. Say that
223 we really want profiling and the timers are
224 started. */
225 GL(dl_profile_map) = l;
228 if((unsigned long) &_dl_runtime_profile & 3)
230 got[-2] = (Elf32_Addr) ((struct fdesc *)
231 ((unsigned long) &_dl_runtime_profile & ~3))->ip;
233 else
235 /* Static executable */
236 got[-2] = (Elf32_Addr) &_dl_runtime_profile;
239 /* Plunk in the gp of this function descriptor so we
240 can make the call to _dl_runtime_xxxxxx */
241 got[-1] = ltp;
242 break;
243 /* Done looking for the GOT, and stub is setup */
244 } /* else we found the GOT */
245 } /* for, walk the relocs backwards */
247 if(!got)
248 return 0; /* No lazy linking for you! */
250 /* Process all the relocs, now that we know the GOT... */
251 for (iplt = jmprel; iplt < end_jmprel; iplt += sizeof (Elf32_Rela))
253 reloc = (const Elf32_Rela *) iplt;
254 r_type = ELF32_R_TYPE (reloc->r_info);
255 r_sym = ELF32_R_SYM (reloc->r_info);
257 if (__builtin_expect (r_type == R_PARISC_IPLT, 1))
259 fptr = (struct fdesc *) (reloc->r_offset + l_addr);
260 if (r_sym != 0)
262 /* Relocate the pointer to the stub. */
263 fptr->ip = (Elf32_Addr) got - GOT_FROM_PLT_STUB;
265 /* Instead of the LTP value, we put the reloc offset
266 here. The trampoline code will load the proper
267 LTP and pass the reloc offset to the fixup
268 function. */
269 fptr->gp = iplt - jmprel;
270 } /* r_sym != 0 */
271 else
273 /* Relocate this *ABS* entry. */
274 fptr->ip = reloc->r_addend + l_addr;
275 fptr->gp = D_PTR (l, l_info[DT_PLTGOT]);
277 } /* r_type == R_PARISC_IPLT */
278 } /* for all the relocations */
279 } /* if lazy */
280 else
282 for (iplt = jmprel; iplt < end_jmprel; iplt += sizeof (Elf32_Rela))
284 reloc = (const Elf32_Rela *) iplt;
285 r_type = ELF32_R_TYPE (reloc->r_info);
286 r_sym = ELF32_R_SYM (reloc->r_info);
288 if (__builtin_expect ((r_type == R_PARISC_IPLT) && (r_sym == 0), 1))
290 fptr = (struct fdesc *) (reloc->r_offset + l_addr);
291 /* Relocate this *ABS* entry, set only the gp, the rest is set later
292 when elf_machine_rela_relative is called (WITHOUT the linkmap) */
293 fptr->gp = D_PTR (l, l_info[DT_PLTGOT]);
294 } /* r_type == R_PARISC_IPLT */
295 } /* for all the relocations */
297 return lazy;
301 /* Names of the architecture-specific auditing callback functions. */
302 #define ARCH_LA_PLTENTER hppa_gnu_pltenter
303 #define ARCH_LA_PLTEXIT hppa_gnu_pltexit
305 /* Initial entry point code for the dynamic linker.
306 The C function `_dl_start' is the real entry point;
307 its return value is the user program's entry point. */
309 #define RTLD_START \
310 /* Set up dp for any non-PIC lib constructors that may be called. */ \
311 static struct link_map * __attribute__((used)) \
312 set_dp (struct link_map *map) \
314 register Elf32_Addr dp asm ("%r27"); \
315 dp = D_PTR (map, l_info[DT_PLTGOT]); \
316 asm volatile ("" : : "r" (dp)); \
317 return map; \
320 asm ( \
321 " .text\n" \
322 " .globl _start\n" \
323 " .type _start,@function\n" \
324 "_start:\n" \
325 /* The kernel does not give us an initial stack frame. */ \
326 " ldo 64(%sp),%sp\n" \
327 /* Save the relevant arguments (yes, those are the correct \
328 registers, the kernel is weird) in their stack slots. */ \
329 " stw %r25,-40(%sp)\n" /* argc */ \
330 " stw %r24,-44(%sp)\n" /* argv */ \
332 /* We need the LTP, and we need it now. \
333 $PIC_pcrel$0 points 8 bytes past the current instruction, \
334 just like a branch reloc. This sequence gets us the \
335 runtime address of _DYNAMIC. */ \
336 " bl 0f,%r19\n" \
337 " depi 0,31,2,%r19\n" /* clear priviledge bits */ \
338 "0: addil L'_DYNAMIC - ($PIC_pcrel$0 - 8),%r19\n" \
339 " ldo R'_DYNAMIC - ($PIC_pcrel$0 - 12)(%r1),%r26\n" \
341 /* The link time address is stored in the first entry of the \
342 GOT. */ \
343 " addil L'_GLOBAL_OFFSET_TABLE_ - ($PIC_pcrel$0 - 16),%r19\n" \
344 " ldw R'_GLOBAL_OFFSET_TABLE_ - ($PIC_pcrel$0 - 20)(%r1),%r20\n" \
346 " sub %r26,%r20,%r20\n" /* Calculate load offset */ \
348 /* Rummage through the dynamic entries, looking for \
349 DT_PLTGOT. */ \
350 " ldw,ma 8(%r26),%r19\n" \
351 "1: cmpib,=,n 3,%r19,2f\n" /* tag == DT_PLTGOT? */ \
352 " cmpib,<>,n 0,%r19,1b\n" \
353 " ldw,ma 8(%r26),%r19\n" \
355 /* Uh oh! We didn't find one. Abort. */ \
356 " iitlbp %r0,(%sr0,%r0)\n" \
358 "2: ldw -4(%r26),%r19\n" /* Found it, load value. */ \
359 " add %r19,%r20,%r19\n" /* And add the load offset. */ \
361 /* Our initial stack layout is rather different from everyone \
362 else's due to the unique PA-RISC ABI. As far as I know it \
363 looks like this: \
365 ----------------------------------- (this frame created above) \
366 | 32 bytes of magic | \
367 |---------------------------------| \
368 | 32 bytes argument/sp save area | \
369 |---------------------------------| ((current->mm->env_end) \
370 | N bytes of slack | + 63 & ~63) \
371 |---------------------------------| \
372 | envvar and arg strings | \
373 |---------------------------------| \
374 | ELF auxiliary info | \
375 | (up to 28 words) | \
376 |---------------------------------| \
377 | Environment variable pointers | \
378 | upwards to NULL | \
379 |---------------------------------| \
380 | Argument pointers | \
381 | upwards to NULL | \
382 |---------------------------------| \
383 | argc (1 word) | \
384 ----------------------------------- \
386 So, obviously, we can't just pass %sp to _dl_start. That's \
387 okay, argv-4 will do just fine. \
389 The pleasant part of this is that if we need to skip \
390 arguments we can just decrement argc and move argv, because \
391 the stack pointer is utterly unrelated to the location of \
392 the environment and argument vectors. */ \
394 /* This is always within range so we'll be okay. */ \
395 " bl _dl_start,%rp\n" \
396 " ldo -4(%r24),%r26\n" \
398 " .globl _dl_start_user\n" \
399 " .type _dl_start_user,@function\n" \
400 "_dl_start_user:\n" \
401 /* Save the entry point in %r3. */ \
402 " copy %ret0,%r3\n" \
404 /* Remember the lowest stack address. */ \
405 " addil LT'__libc_stack_end,%r19\n" \
406 " ldw RT'__libc_stack_end(%r1),%r20\n" \
407 " stw %sp,0(%r20)\n" \
409 /* See if we were called as a command with the executable file \
410 name as an extra leading argument. */ \
411 " addil LT'_dl_skip_args,%r19\n" \
412 " ldw RT'_dl_skip_args(%r1),%r20\n" \
413 " ldw 0(%r20),%r20\n" \
415 " ldw -40(%sp),%r25\n" /* argc */ \
416 " comib,= 0,%r20,.Lnofix\n" /* FIXME: Mispredicted branch */\
417 " ldw -44(%sp),%r24\n" /* argv (delay slot) */ \
419 " sub %r25,%r20,%r25\n" \
420 " stw %r25,-40(%sp)\n" \
421 " sh2add %r20,%r24,%r24\n" \
422 " stw %r24,-44(%sp)\n" \
424 ".Lnofix:\n" \
425 " addil LT'_rtld_local,%r19\n" \
426 " ldw RT'_rtld_local(%r1),%r26\n" \
427 " bl set_dp, %r2\n" \
428 " ldw 0(%r26),%r26\n" \
430 /* Call _dl_init(_dl_loaded, argc, argv, envp). */ \
431 " copy %r28,%r26\n" \
433 /* envp = argv + argc + 1 */ \
434 " sh2add %r25,%r24,%r23\n" \
435 " bl _dl_init_internal,%r2\n" \
436 " ldo 4(%r23),%r23\n" /* delay slot */ \
438 /* Reload argc, argv to the registers start.S expects. */ \
439 " ldw -40(%sp),%r25\n" \
440 " ldw -44(%sp),%r24\n" \
442 /* _dl_fini is a local function in the loader, so we construct \
443 a false OPD here and pass this to the application. */ \
444 /* FIXME: Should be able to use P%, and LR RR to have the \
445 the linker construct a proper OPD. */ \
446 " .section .data\n" \
447 "__dl_fini_plabel:\n" \
448 " .word _dl_fini\n" \
449 " .word 0xdeadbeef\n" \
450 " .previous\n" \
452 /* %r3 contains a function pointer, we need to mask out the \
453 lower bits and load the gp and jump address. */ \
454 " depi 0,31,2,%r3\n" \
455 " ldw 0(%r3),%r2\n" \
456 " addil LT'__dl_fini_plabel,%r19\n" \
457 " ldw RT'__dl_fini_plabel(%r1),%r23\n" \
458 " stw %r19,4(%r23)\n" \
459 " ldw 4(%r3),%r19\n" /* load the object's gp */ \
460 " bv %r0(%r2)\n" \
461 " depi 2,31,2,%r23\n" /* delay slot */ \
464 /* ELF_RTYPE_CLASS_PLT iff TYPE describes relocation of a PLT entry or
465 a TLS variable, so references should not be allowed to define the value.
466 ELF_RTYPE_CLASS_NOCOPY iff TYPE should not be allowed to resolve to one
467 of the main executable's symbols, as for a COPY reloc. */
468 #if defined USE_TLS && (!defined RTLD_BOOTSTRAP || USE___THREAD)
469 # define elf_machine_type_class(type) \
470 ((((type) == R_PARISC_IPLT \
471 || (type) == R_PARISC_EPLT \
472 || (type) == R_PARISC_TLS_DTPMOD32 \
473 || (type) == R_PARISC_TLS_DTPOFF32 \
474 || (type) == R_PARISC_TLS_TPREL32) \
475 * ELF_RTYPE_CLASS_PLT) \
476 | (((type) == R_PARISC_COPY) * ELF_RTYPE_CLASS_COPY))
477 #else
478 #define elf_machine_type_class(type) \
479 ((((type) == R_PARISC_IPLT \
480 || (type) == R_PARISC_EPLT) \
481 * ELF_RTYPE_CLASS_PLT) \
482 | (((type) == R_PARISC_COPY) * ELF_RTYPE_CLASS_COPY))
483 #endif
485 /* Used by the runtime in fixup to figure out if reloc is *really* PLT */
486 #define ELF_MACHINE_JMP_SLOT R_PARISC_IPLT
487 #define ELF_MACHINE_SIZEOF_JMP_SLOT PLT_ENTRY_SIZE
489 /* We only use RELA. */
490 #define ELF_MACHINE_NO_REL 1
492 /* Return the address of the entry point. */
493 #define ELF_MACHINE_START_ADDRESS(map, start) \
494 DL_STATIC_FUNCTION_ADDRESS (map, start)
496 /* We define an initialization functions. This is called very early in
497 * _dl_sysdep_start. */
498 #define DL_PLATFORM_INIT dl_platform_init ()
500 static inline void __attribute__ ((unused))
501 dl_platform_init (void)
503 if (GLRO(dl_platform) != NULL && *GLRO(dl_platform) == '\0')
504 /* Avoid an empty string which would disturb us. */
505 GLRO(dl_platform) = NULL;
508 #endif /* !dl_machine_h */
510 /* These are only actually used where RESOLVE_MAP is defined, anyway. */
511 #ifdef RESOLVE_MAP
513 #define reassemble_21(as21) \
514 ( (((as21) & 0x100000) >> 20) \
515 | (((as21) & 0x0ffe00) >> 8) \
516 | (((as21) & 0x000180) << 7) \
517 | (((as21) & 0x00007c) << 14) \
518 | (((as21) & 0x000003) << 12))
520 #define reassemble_14(as14) \
521 ( (((as14) & 0x1fff) << 1) \
522 | (((as14) & 0x2000) >> 13))
524 auto void __attribute__((always_inline))
525 elf_machine_rela (struct link_map *map,
526 const Elf32_Rela *reloc,
527 const Elf32_Sym *sym,
528 const struct r_found_version *version,
529 void *const reloc_addr_arg,
530 int skip_ifunc)
532 Elf32_Addr *const reloc_addr = reloc_addr_arg;
533 const Elf32_Sym *const refsym = sym;
534 unsigned long const r_type = ELF32_R_TYPE (reloc->r_info);
535 struct link_map *sym_map;
536 Elf32_Addr value;
538 # if !defined RTLD_BOOTSTRAP && !defined HAVE_Z_COMBRELOC && !defined SHARED
539 /* This is defined in rtld.c, but nowhere in the static libc.a; make the
540 reference weak so static programs can still link. This declaration
541 cannot be done when compiling rtld.c (i.e. #ifdef RTLD_BOOTSTRAP)
542 because rtld.c contains the common defn for _dl_rtld_map, which is
543 incompatible with a weak decl in the same file. */
544 weak_extern (GL(dl_rtld_map));
545 # endif
547 /* RESOLVE_MAP will return a null value for undefined syms, and
548 non-null for all other syms. In particular, relocs with no
549 symbol (symbol index of zero), also called *ABS* relocs, will be
550 resolved to MAP. (The first entry in a symbol table is all
551 zeros, and an all zero Elf32_Sym has a binding of STB_LOCAL.)
552 See RESOLVE_MAP definition in elf/dl-reloc.c */
553 # ifdef RTLD_BOOTSTRAP
554 /* RESOLVE_MAP in rtld.c doesn't have the local sym test. */
555 sym_map = (ELF32_ST_BIND (sym->st_info) != STB_LOCAL
556 ? RESOLVE_MAP (&sym, version, r_type) : map);
557 # else
558 sym_map = RESOLVE_MAP (&sym, version, r_type);
559 # endif
561 if (sym_map)
563 value = sym ? sym_map->l_addr + sym->st_value : 0;
564 value += reloc->r_addend;
566 else
567 value = 0;
569 switch (r_type)
571 case R_PARISC_DIR32:
572 /* .eh_frame can have unaligned relocs. */
573 if ((unsigned long) reloc_addr_arg & 3)
575 char *rel_addr = (char *) reloc_addr_arg;
576 rel_addr[0] = value >> 24;
577 rel_addr[1] = value >> 16;
578 rel_addr[2] = value >> 8;
579 rel_addr[3] = value;
580 return;
582 break;
584 case R_PARISC_DIR21L:
586 unsigned int insn = *(unsigned int *)reloc_addr;
587 value = sym_map->l_addr + sym->st_value
588 + ((reloc->r_addend + 0x1000) & -0x2000);
589 value = value >> 11;
590 insn = (insn &~ 0x1fffff) | reassemble_21 (value);
591 *(unsigned int *)reloc_addr = insn;
593 return;
595 case R_PARISC_DIR14R:
597 unsigned int insn = *(unsigned int *)reloc_addr;
598 value = ((sym_map->l_addr + sym->st_value) & 0x7ff)
599 + (((reloc->r_addend & 0x1fff) ^ 0x1000) - 0x1000);
600 insn = (insn &~ 0x3fff) | reassemble_14 (value);
601 *(unsigned int *)reloc_addr = insn;
603 return;
605 case R_PARISC_PLABEL32:
606 /* Easy rule: If there is a symbol and it is global, then we
607 need to make a dynamic function descriptor. Otherwise we
608 have the address of a PLT slot for a local symbol which we
609 know to be unique. */
610 if (sym == NULL
611 || sym_map == NULL
612 || ELF32_ST_BIND (sym->st_info) == STB_LOCAL)
614 break;
616 /* Set bit 30 to indicate to $$dyncall that this is a PLABEL.
617 We have to do this outside of the generic function descriptor
618 code, since it doesn't know about our requirement for setting
619 protection bits */
620 value = (Elf32_Addr)((unsigned int)_dl_make_fptr (sym_map, sym, value) | 2);
621 break;
623 case R_PARISC_PLABEL21L:
624 case R_PARISC_PLABEL14R:
626 unsigned int insn = *(unsigned int *)reloc_addr;
628 if (__builtin_expect (sym == NULL, 0))
629 break;
631 value = (Elf32_Addr)((unsigned int)_dl_make_fptr (sym_map, sym, value) | 2);
633 if (r_type == R_PARISC_PLABEL21L)
635 value >>= 11;
636 insn = (insn &~ 0x1fffff) | reassemble_21 (value);
638 else
640 value &= 0x7ff;
641 insn = (insn &~ 0x3fff) | reassemble_14 (value);
644 *(unsigned int *)reloc_addr = insn;
646 return;
648 case R_PARISC_IPLT:
649 if (__builtin_expect (sym_map != NULL, 1))
651 elf_machine_fixup_plt (NULL, sym_map, reloc, reloc_addr,
652 DL_FIXUP_MAKE_VALUE(sym_map, value));
654 else
656 /* If we get here, it's a (weak) undefined sym. */
657 elf_machine_fixup_plt (NULL, map, reloc, reloc_addr,
658 DL_FIXUP_MAKE_VALUE(map, value));
660 return;
662 case R_PARISC_COPY:
663 if (__builtin_expect (sym == NULL, 0))
664 /* This can happen in trace mode if an object could not be
665 found. */
666 break;
667 if (__builtin_expect (sym->st_size > refsym->st_size, 0)
668 || (__builtin_expect (sym->st_size < refsym->st_size, 0)
669 && __builtin_expect (GLRO(dl_verbose), 0)))
671 const char *strtab;
673 strtab = (const char *) D_PTR (map, l_info[DT_STRTAB]);
674 _dl_error_printf ("%s: Symbol `%s' has different size in shared object, "
675 "consider re-linking\n",
676 rtld_progname ?: "<program name unknown>",
677 strtab + refsym->st_name);
679 memcpy (reloc_addr_arg, (void *) value,
680 MIN (sym->st_size, refsym->st_size));
681 return;
683 #if defined USE_TLS && (!defined RTLD_BOOTSTRAP)
684 case R_PARISC_TLS_DTPMOD32:
685 value = sym_map->l_tls_modid;
686 break;
688 case R_PARISC_TLS_DTPOFF32:
689 /* During relocation all TLS symbols are defined and used.
690 Therefore the offset is already correct. */
691 if (sym != NULL)
692 *reloc_addr = sym->st_value;
693 return;
695 case R_PARISC_TLS_TPREL32:
696 /* The offset is negative, forward from the thread pointer */
697 if (sym != NULL)
699 CHECK_STATIC_TLS (map, sym_map);
700 value = sym_map->l_tls_offset + sym->st_value + reloc->r_addend;
702 break;
703 #endif /* use TLS */
705 case R_PARISC_NONE: /* Alright, Wilbur. */
706 return;
708 default:
709 _dl_reloc_bad_type (map, r_type, 0);
712 *reloc_addr = value;
715 /* hppa doesn't have an R_PARISC_RELATIVE reloc, but uses relocs with
716 ELF32_R_SYM (info) == 0 for a similar purpose. */
717 auto void __attribute__((always_inline))
718 elf_machine_rela_relative (Elf32_Addr l_addr,
719 const Elf32_Rela *reloc,
720 void *const reloc_addr_arg)
722 unsigned long const r_type = ELF32_R_TYPE (reloc->r_info);
723 Elf32_Addr *const reloc_addr = reloc_addr_arg;
724 static char msgbuf[] = { "Unknown" };
725 struct link_map map;
726 Elf32_Addr value;
728 value = l_addr + reloc->r_addend;
730 if (ELF32_R_SYM (reloc->r_info) != 0){
731 _dl_error_printf ("%s: In elf_machine_rela_relative "
732 "ELF32_R_SYM (reloc->r_info) != 0. Aborting.",
733 rtld_progname ?: "<program name unknown>");
734 ABORT_INSTRUCTION; /* Crash. */
737 switch (r_type)
739 case R_PARISC_DIR32:
740 /* .eh_frame can have unaligned relocs. */
741 if ((unsigned long) reloc_addr_arg & 3)
743 char *rel_addr = (char *) reloc_addr_arg;
744 rel_addr[0] = value >> 24;
745 rel_addr[1] = value >> 16;
746 rel_addr[2] = value >> 8;
747 rel_addr[3] = value;
748 return;
750 break;
752 case R_PARISC_PLABEL32:
753 break;
755 case R_PARISC_IPLT: /* elf_machine_runtime_setup already set gp */
756 break;
758 case R_PARISC_NONE:
759 return;
761 default: /* Bad reloc, map unknown (really it's the current map) */
762 map.l_name = msgbuf;
763 _dl_reloc_bad_type (&map, r_type, 0);
764 return;
767 *reloc_addr = value;
770 auto void __attribute__((always_inline))
771 elf_machine_lazy_rel (struct link_map *map,
772 Elf32_Addr l_addr, const Elf32_Rela *reloc,
773 int skip_ifunc)
775 /* We don't have anything to do here. elf_machine_runtime_setup has
776 done all the relocs already. */
779 #endif /* RESOLVE_MAP */