support_become_root: Enable file creation in user namespaces
[glibc.git] / sysdeps / hppa / dl-machine.h
blobacfb9fc31fab228256cfaec1afdf231ba623939f
1 /* Machine-dependent ELF dynamic relocation inline functions. PA-RISC version.
2 Copyright (C) 1995-2017 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 ElfW(Sym) *refsym, const ElfW(Sym) *sym,
116 const Elf32_Rela *reloc,
117 Elf32_Addr *reloc_addr, struct fdesc value)
119 volatile Elf32_Addr *rfdesc = reloc_addr;
120 /* map is the link_map for the caller, t is the link_map for the object
121 being called */
122 rfdesc[1] = value.gp;
123 /* Need to ensure that the gp is visible before the code
124 entry point is updated */
125 rfdesc[0] = value.ip;
126 return value;
129 /* Return the final value of a plt relocation. */
130 static inline struct fdesc
131 elf_machine_plt_value (struct link_map *map, const Elf32_Rela *reloc,
132 struct fdesc value)
134 /* We are rela only, return a function descriptor as a plt entry. */
135 return (struct fdesc) { value.ip + reloc->r_addend, value.gp };
138 /* Set up the loaded object described by L so its unrelocated PLT
139 entries will jump to the on-demand fixup code in dl-runtime.c. */
141 static inline int
142 elf_machine_runtime_setup (struct link_map *l, int lazy, int profile)
144 Elf32_Addr *got = NULL;
145 Elf32_Addr l_addr, iplt, jmprel, end_jmprel, r_type, r_sym;
146 const Elf32_Rela *reloc;
147 struct fdesc *fptr;
148 static union {
149 unsigned char c[8];
150 Elf32_Addr i[2];
151 } sig = {{0x00,0xc0,0xff,0xee, 0xde,0xad,0xbe,0xef}};
153 /* If we don't have a PLT we can just skip all this... */
154 if (__builtin_expect (l->l_info[DT_JMPREL] == NULL,0))
155 return lazy;
157 /* All paths use these values */
158 l_addr = l->l_addr;
159 jmprel = D_PTR(l, l_info[DT_JMPREL]);
160 end_jmprel = jmprel + l->l_info[DT_PLTRELSZ]->d_un.d_val;
162 extern void _dl_runtime_resolve (void);
163 extern void _dl_runtime_profile (void);
165 /* Linking lazily */
166 if (lazy)
168 /* FIXME: Search for the got, but backwards through the relocs, technically we should
169 find it on the first try. However, assuming the relocs got out of order the
170 routine is made a bit more robust by searching them all in case of failure. */
171 for (iplt = (end_jmprel - sizeof(Elf32_Rela)); iplt >= jmprel; iplt -= sizeof (Elf32_Rela))
174 reloc = (const Elf32_Rela *) iplt;
175 r_type = ELF32_R_TYPE (reloc->r_info);
176 r_sym = ELF32_R_SYM (reloc->r_info);
178 got = (Elf32_Addr *) (reloc->r_offset + l_addr + PLT_ENTRY_SIZE + SIZEOF_PLT_STUB);
180 /* If we aren't an IPLT, and we aren't NONE then it's a bad reloc */
181 if (__builtin_expect (r_type != R_PARISC_IPLT, 0))
183 if (__builtin_expect (r_type != R_PARISC_NONE, 0))
184 _dl_reloc_bad_type (l, r_type, 1);
185 continue;
188 /* Check for the plt_stub that binutils placed here for us
189 to use with _dl_runtime_resolve */
190 if (got[-2] != sig.i[0] || got[-1] != sig.i[1])
192 got = NULL; /* Not the stub... keep looking */
194 else
196 /* Found the GOT! */
197 register Elf32_Addr ltp __asm__ ("%r19");
199 /* Identify this shared object. Second entry in the got. */
200 got[1] = (Elf32_Addr) l;
202 /* This function will be called to perform the relocation. */
203 if (__builtin_expect (!profile, 1))
205 /* If a static application called us, then _dl_runtime_resolve is not
206 a function descriptor, but the *real* address of the function... */
207 if((unsigned long) &_dl_runtime_resolve & 3)
209 got[-2] = (Elf32_Addr) ((struct fdesc *)
210 ((unsigned long) &_dl_runtime_resolve & ~3))->ip;
212 else
214 /* Static executable! */
215 got[-2] = (Elf32_Addr) &_dl_runtime_resolve;
218 else
220 if (GLRO(dl_profile) != NULL
221 && _dl_name_match_p (GLRO(dl_profile), l))
223 /* This is the object we are looking for. Say that
224 we really want profiling and the timers are
225 started. */
226 GL(dl_profile_map) = l;
229 if((unsigned long) &_dl_runtime_profile & 3)
231 got[-2] = (Elf32_Addr) ((struct fdesc *)
232 ((unsigned long) &_dl_runtime_profile & ~3))->ip;
234 else
236 /* Static executable */
237 got[-2] = (Elf32_Addr) &_dl_runtime_profile;
240 /* Plunk in the gp of this function descriptor so we
241 can make the call to _dl_runtime_xxxxxx */
242 got[-1] = ltp;
243 break;
244 /* Done looking for the GOT, and stub is setup */
245 } /* else we found the GOT */
246 } /* for, walk the relocs backwards */
248 if(!got)
249 return 0; /* No lazy linking for you! */
251 /* Process all the relocs, now that we know the GOT... */
252 for (iplt = jmprel; iplt < end_jmprel; iplt += sizeof (Elf32_Rela))
254 reloc = (const Elf32_Rela *) iplt;
255 r_type = ELF32_R_TYPE (reloc->r_info);
256 r_sym = ELF32_R_SYM (reloc->r_info);
258 if (__builtin_expect (r_type == R_PARISC_IPLT, 1))
260 fptr = (struct fdesc *) (reloc->r_offset + l_addr);
261 if (r_sym != 0)
263 /* Relocate the pointer to the stub. */
264 fptr->ip = (Elf32_Addr) got - GOT_FROM_PLT_STUB;
266 /* Instead of the LTP value, we put the reloc offset
267 here. The trampoline code will load the proper
268 LTP and pass the reloc offset to the fixup
269 function. */
270 fptr->gp = iplt - jmprel;
271 } /* r_sym != 0 */
272 else
274 /* Relocate this *ABS* entry. */
275 fptr->ip = reloc->r_addend + l_addr;
276 fptr->gp = D_PTR (l, l_info[DT_PLTGOT]);
278 } /* r_type == R_PARISC_IPLT */
279 } /* for all the relocations */
280 } /* if lazy */
281 else
283 for (iplt = jmprel; iplt < end_jmprel; iplt += sizeof (Elf32_Rela))
285 reloc = (const Elf32_Rela *) iplt;
286 r_type = ELF32_R_TYPE (reloc->r_info);
287 r_sym = ELF32_R_SYM (reloc->r_info);
289 if (__builtin_expect ((r_type == R_PARISC_IPLT) && (r_sym == 0), 1))
291 fptr = (struct fdesc *) (reloc->r_offset + l_addr);
292 /* Relocate this *ABS* entry, set only the gp, the rest is set later
293 when elf_machine_rela_relative is called (WITHOUT the linkmap) */
294 fptr->gp = D_PTR (l, l_info[DT_PLTGOT]);
295 } /* r_type == R_PARISC_IPLT */
296 } /* for all the relocations */
298 return lazy;
302 /* Names of the architecture-specific auditing callback functions. */
303 #define ARCH_LA_PLTENTER hppa_gnu_pltenter
304 #define ARCH_LA_PLTEXIT hppa_gnu_pltexit
306 /* Adjust DL_STACK_END to get value we want in __libc_stack_end. */
307 #define DL_STACK_END(cookie) \
308 ((void *) (((long) (cookie)) + 0x160))
310 /* Initial entry point code for the dynamic linker.
311 The C function `_dl_start' is the real entry point;
312 its return value is the user program's entry point. */
314 #define RTLD_START \
315 /* Set up dp for any non-PIC lib constructors that may be called. */ \
316 static struct link_map * __attribute__((used)) \
317 set_dp (struct link_map *map) \
319 register Elf32_Addr dp asm ("%r27"); \
320 dp = D_PTR (map, l_info[DT_PLTGOT]); \
321 asm volatile ("" : : "r" (dp)); \
322 return map; \
325 asm ( \
326 " .text\n" \
327 " .globl _start\n" \
328 " .type _start,@function\n" \
329 "_start:\n" \
330 /* The kernel does not give us an initial stack frame. */ \
331 " ldo 64(%sp),%sp\n" \
332 /* Save the relevant arguments (yes, those are the correct \
333 registers, the kernel is weird) in their stack slots. */ \
334 " stw %r25,-40(%sp)\n" /* argc */ \
335 " stw %r24,-44(%sp)\n" /* argv */ \
337 /* We need the LTP, and we need it now. \
338 $PIC_pcrel$0 points 8 bytes past the current instruction, \
339 just like a branch reloc. This sequence gets us the \
340 runtime address of _DYNAMIC. */ \
341 " bl 0f,%r19\n" \
342 " depi 0,31,2,%r19\n" /* clear priviledge bits */ \
343 "0: addil L'_DYNAMIC - ($PIC_pcrel$0 - 8),%r19\n" \
344 " ldo R'_DYNAMIC - ($PIC_pcrel$0 - 12)(%r1),%r26\n" \
346 /* The link time address is stored in the first entry of the \
347 GOT. */ \
348 " addil L'_GLOBAL_OFFSET_TABLE_ - ($PIC_pcrel$0 - 16),%r19\n" \
349 " ldw R'_GLOBAL_OFFSET_TABLE_ - ($PIC_pcrel$0 - 20)(%r1),%r20\n" \
351 " sub %r26,%r20,%r20\n" /* Calculate load offset */ \
353 /* Rummage through the dynamic entries, looking for \
354 DT_PLTGOT. */ \
355 " ldw,ma 8(%r26),%r19\n" \
356 "1: cmpib,=,n 3,%r19,2f\n" /* tag == DT_PLTGOT? */ \
357 " cmpib,<>,n 0,%r19,1b\n" \
358 " ldw,ma 8(%r26),%r19\n" \
360 /* Uh oh! We didn't find one. Abort. */ \
361 " iitlbp %r0,(%sr0,%r0)\n" \
363 "2: ldw -4(%r26),%r19\n" /* Found it, load value. */ \
364 " add %r19,%r20,%r19\n" /* And add the load offset. */ \
366 /* Our initial stack layout is rather different from everyone \
367 else's due to the unique PA-RISC ABI. As far as I know it \
368 looks like this: \
370 ----------------------------------- (this frame created above) \
371 | 32 bytes of magic | \
372 |---------------------------------| \
373 | 32 bytes argument/sp save area | \
374 |---------------------------------| ((current->mm->env_end) \
375 | N bytes of slack | + 63 & ~63) \
376 |---------------------------------| \
377 | envvar and arg strings | \
378 |---------------------------------| \
379 | ELF auxiliary info | \
380 | (up to 28 words) | \
381 |---------------------------------| \
382 | Environment variable pointers | \
383 | upwards to NULL | \
384 |---------------------------------| \
385 | Argument pointers | \
386 | upwards to NULL | \
387 |---------------------------------| \
388 | argc (1 word) | \
389 ----------------------------------- \
391 So, obviously, we can't just pass %sp to _dl_start. That's \
392 okay, argv-4 will do just fine. \
394 The pleasant part of this is that if we need to skip \
395 arguments we can just decrement argc and move argv, because \
396 the stack pointer is utterly unrelated to the location of \
397 the environment and argument vectors. */ \
399 /* This is always within range so we'll be okay. */ \
400 " bl _dl_start,%rp\n" \
401 " ldo -4(%r24),%r26\n" \
403 " .globl _dl_start_user\n" \
404 " .type _dl_start_user,@function\n" \
405 "_dl_start_user:\n" \
406 /* Save the entry point in %r3. */ \
407 " copy %ret0,%r3\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,%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_COPY 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 RTLD_BOOTSTRAP
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
491 #define ELF_MACHINE_NO_RELA 0
493 /* Return the address of the entry point. */
494 #define ELF_MACHINE_START_ADDRESS(map, start) \
495 ({ \
496 ElfW(Addr) addr; \
497 DL_DT_FUNCTION_ADDRESS(map, start, static, addr) \
498 addr; \
501 /* We define an initialization functions. This is called very early in
502 * _dl_sysdep_start. */
503 #define DL_PLATFORM_INIT dl_platform_init ()
505 static inline void __attribute__ ((unused))
506 dl_platform_init (void)
508 if (GLRO(dl_platform) != NULL && *GLRO(dl_platform) == '\0')
509 /* Avoid an empty string which would disturb us. */
510 GLRO(dl_platform) = NULL;
513 #endif /* !dl_machine_h */
515 /* These are only actually used where RESOLVE_MAP is defined, anyway. */
516 #ifdef RESOLVE_MAP
518 #define reassemble_21(as21) \
519 ( (((as21) & 0x100000) >> 20) \
520 | (((as21) & 0x0ffe00) >> 8) \
521 | (((as21) & 0x000180) << 7) \
522 | (((as21) & 0x00007c) << 14) \
523 | (((as21) & 0x000003) << 12))
525 #define reassemble_14(as14) \
526 ( (((as14) & 0x1fff) << 1) \
527 | (((as14) & 0x2000) >> 13))
529 auto void __attribute__((always_inline))
530 elf_machine_rela (struct link_map *map,
531 const Elf32_Rela *reloc,
532 const Elf32_Sym *sym,
533 const struct r_found_version *version,
534 void *const reloc_addr_arg,
535 int skip_ifunc)
537 Elf32_Addr *const reloc_addr = reloc_addr_arg;
538 const Elf32_Sym *const refsym = sym;
539 unsigned long const r_type = ELF32_R_TYPE (reloc->r_info);
540 struct link_map *sym_map;
541 Elf32_Addr value;
543 # if !defined RTLD_BOOTSTRAP && !defined HAVE_Z_COMBRELOC && !defined SHARED
544 /* This is defined in rtld.c, but nowhere in the static libc.a; make the
545 reference weak so static programs can still link. This declaration
546 cannot be done when compiling rtld.c (i.e. #ifdef RTLD_BOOTSTRAP)
547 because rtld.c contains the common defn for _dl_rtld_map, which is
548 incompatible with a weak decl in the same file. */
549 weak_extern (GL(dl_rtld_map));
550 # endif
552 /* RESOLVE_MAP will return a null value for undefined syms, and
553 non-null for all other syms. In particular, relocs with no
554 symbol (symbol index of zero), also called *ABS* relocs, will be
555 resolved to MAP. (The first entry in a symbol table is all
556 zeros, and an all zero Elf32_Sym has a binding of STB_LOCAL.)
557 See RESOLVE_MAP definition in elf/dl-reloc.c */
558 # ifdef RTLD_BOOTSTRAP
559 /* RESOLVE_MAP in rtld.c doesn't have the local sym test. */
560 sym_map = (ELF32_ST_BIND (sym->st_info) != STB_LOCAL
561 ? RESOLVE_MAP (&sym, version, r_type) : map);
562 # else
563 sym_map = RESOLVE_MAP (&sym, version, r_type);
564 # endif
566 if (sym_map)
568 value = sym ? sym_map->l_addr + sym->st_value : 0;
569 value += reloc->r_addend;
571 else
572 value = 0;
574 switch (r_type)
576 case R_PARISC_DIR32:
577 /* .eh_frame can have unaligned relocs. */
578 if ((unsigned long) reloc_addr_arg & 3)
580 char *rel_addr = (char *) reloc_addr_arg;
581 rel_addr[0] = value >> 24;
582 rel_addr[1] = value >> 16;
583 rel_addr[2] = value >> 8;
584 rel_addr[3] = value;
585 return;
587 break;
589 case R_PARISC_DIR21L:
591 unsigned int insn = *(unsigned int *)reloc_addr;
592 value = sym_map->l_addr + sym->st_value
593 + ((reloc->r_addend + 0x1000) & -0x2000);
594 value = value >> 11;
595 insn = (insn &~ 0x1fffff) | reassemble_21 (value);
596 *(unsigned int *)reloc_addr = insn;
598 return;
600 case R_PARISC_DIR14R:
602 unsigned int insn = *(unsigned int *)reloc_addr;
603 value = ((sym_map->l_addr + sym->st_value) & 0x7ff)
604 + (((reloc->r_addend & 0x1fff) ^ 0x1000) - 0x1000);
605 insn = (insn &~ 0x3fff) | reassemble_14 (value);
606 *(unsigned int *)reloc_addr = insn;
608 return;
610 case R_PARISC_PLABEL32:
611 /* Easy rule: If there is a symbol and it is global, then we
612 need to make a dynamic function descriptor. Otherwise we
613 have the address of a PLT slot for a local symbol which we
614 know to be unique. */
615 if (sym == NULL
616 || sym_map == NULL
617 || ELF32_ST_BIND (sym->st_info) == STB_LOCAL)
619 break;
621 /* Set bit 30 to indicate to $$dyncall that this is a PLABEL.
622 We have to do this outside of the generic function descriptor
623 code, since it doesn't know about our requirement for setting
624 protection bits */
625 value = (Elf32_Addr)((unsigned int)_dl_make_fptr (sym_map, sym, value) | 2);
626 break;
628 case R_PARISC_PLABEL21L:
629 case R_PARISC_PLABEL14R:
631 unsigned int insn = *(unsigned int *)reloc_addr;
633 if (__builtin_expect (sym == NULL, 0))
634 break;
636 value = (Elf32_Addr)((unsigned int)_dl_make_fptr (sym_map, sym, value) | 2);
638 if (r_type == R_PARISC_PLABEL21L)
640 value >>= 11;
641 insn = (insn &~ 0x1fffff) | reassemble_21 (value);
643 else
645 value &= 0x7ff;
646 insn = (insn &~ 0x3fff) | reassemble_14 (value);
649 *(unsigned int *)reloc_addr = insn;
651 return;
653 case R_PARISC_IPLT:
654 if (__builtin_expect (sym_map != NULL, 1))
656 elf_machine_fixup_plt (NULL, sym_map, NULL, NULL, reloc, reloc_addr,
657 DL_FIXUP_MAKE_VALUE(sym_map, value));
659 else
661 /* If we get here, it's a (weak) undefined sym. */
662 elf_machine_fixup_plt (NULL, map, NULL, NULL, reloc, reloc_addr,
663 DL_FIXUP_MAKE_VALUE(map, value));
665 return;
667 case R_PARISC_COPY:
668 if (__builtin_expect (sym == NULL, 0))
669 /* This can happen in trace mode if an object could not be
670 found. */
671 break;
672 if (__builtin_expect (sym->st_size > refsym->st_size, 0)
673 || (__builtin_expect (sym->st_size < refsym->st_size, 0)
674 && __builtin_expect (GLRO(dl_verbose), 0)))
676 const char *strtab;
678 strtab = (const char *) D_PTR (map, l_info[DT_STRTAB]);
679 _dl_error_printf ("%s: Symbol `%s' has different size in shared object, "
680 "consider re-linking\n",
681 RTLD_PROGNAME, strtab + refsym->st_name);
683 memcpy (reloc_addr_arg, (void *) value,
684 MIN (sym->st_size, refsym->st_size));
685 return;
687 #if !defined RTLD_BOOTSTRAP
688 case R_PARISC_TLS_DTPMOD32:
689 value = sym_map->l_tls_modid;
690 break;
692 case R_PARISC_TLS_DTPOFF32:
693 /* During relocation all TLS symbols are defined and used.
694 Therefore the offset is already correct. */
695 if (sym != NULL)
696 *reloc_addr = sym->st_value;
697 return;
699 case R_PARISC_TLS_TPREL32:
700 /* The offset is negative, forward from the thread pointer */
701 if (sym != NULL)
703 CHECK_STATIC_TLS (map, sym_map);
704 value = sym_map->l_tls_offset + sym->st_value + reloc->r_addend;
706 break;
707 #endif /* use TLS */
709 case R_PARISC_NONE: /* Alright, Wilbur. */
710 return;
712 default:
713 _dl_reloc_bad_type (map, r_type, 0);
716 *reloc_addr = value;
719 /* hppa doesn't have an R_PARISC_RELATIVE reloc, but uses relocs with
720 ELF32_R_SYM (info) == 0 for a similar purpose. */
721 auto void __attribute__((always_inline))
722 elf_machine_rela_relative (Elf32_Addr l_addr,
723 const Elf32_Rela *reloc,
724 void *const reloc_addr_arg)
726 unsigned long const r_type = ELF32_R_TYPE (reloc->r_info);
727 Elf32_Addr *const reloc_addr = reloc_addr_arg;
728 static char msgbuf[] = { "Unknown" };
729 struct link_map map;
730 Elf32_Addr value;
732 value = l_addr + reloc->r_addend;
734 if (ELF32_R_SYM (reloc->r_info) != 0){
735 _dl_error_printf ("%s: In elf_machine_rela_relative "
736 "ELF32_R_SYM (reloc->r_info) != 0. Aborting.",
737 RTLD_PROGNAME);
738 ABORT_INSTRUCTION; /* Crash. */
741 switch (r_type)
743 case R_PARISC_DIR32:
744 /* .eh_frame can have unaligned relocs. */
745 if ((unsigned long) reloc_addr_arg & 3)
747 char *rel_addr = (char *) reloc_addr_arg;
748 rel_addr[0] = value >> 24;
749 rel_addr[1] = value >> 16;
750 rel_addr[2] = value >> 8;
751 rel_addr[3] = value;
752 return;
754 break;
756 case R_PARISC_PLABEL32:
757 break;
759 case R_PARISC_IPLT: /* elf_machine_runtime_setup already set gp */
760 break;
762 case R_PARISC_NONE:
763 return;
765 default: /* Bad reloc, map unknown (really it's the current map) */
766 map.l_name = msgbuf;
767 _dl_reloc_bad_type (&map, r_type, 0);
768 return;
771 *reloc_addr = value;
774 auto void __attribute__((always_inline))
775 elf_machine_lazy_rel (struct link_map *map,
776 Elf32_Addr l_addr, const Elf32_Rela *reloc,
777 int skip_ifunc)
779 /* We don't have anything to do here. elf_machine_runtime_setup has
780 done all the relocs already. */
783 #endif /* RESOLVE_MAP */