1 /* Machine-dependent ELF dynamic relocation inline functions. MIPS version.
2 Copyright (C) 1996-2001, 2002, 2003, 2004, 2005
3 Free Software Foundation, Inc.
4 This file is part of the GNU C Library.
5 Contributed by Kazumoto Kojima <kkojima@info.kanagawa-u.ac.jp>.
7 The GNU C Library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Lesser General Public
9 License as published by the Free Software Foundation; either
10 version 2.1 of the License, or (at your option) any later version.
12 The GNU C Library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Lesser General Public License for more details.
17 You should have received a copy of the GNU Lesser General Public
18 License along with the GNU C Library; if not, write to the Free
19 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
22 /* FIXME: Profiling of shared libraries is not implemented yet. */
26 #define ELF_MACHINE_NAME "MIPS"
28 #define ELF_MACHINE_NO_PLT
33 #error ENTRY_POINT needs to be defined for MIPS.
40 /* The offset of gp from GOT might be system-dependent. It's set by
41 ld. The same value is also */
42 #define OFFSET_GP_GOT 0x7ff0
44 #ifndef _RTLD_PROLOGUE
45 # define _RTLD_PROLOGUE(entry) \
46 ".globl\t" __STRING(entry) "\n\t" \
47 ".ent\t" __STRING(entry) "\n\t" \
48 ".type\t" __STRING(entry) ", @function\n" \
49 __STRING(entry) ":\n\t"
52 #ifndef _RTLD_EPILOGUE
53 # define _RTLD_EPILOGUE(entry) \
54 ".end\t" __STRING(entry) "\n\t" \
55 ".size\t" __STRING(entry) ", . - " __STRING(entry) "\n\t"
58 /* A reloc type used for ld.so cmdline arg lookups to reject PLT entries.
59 This makes no sense on MIPS but we have to define this to R_MIPS_REL32
60 to avoid the asserts in dl-lookup.c from blowing. */
61 #define ELF_MACHINE_JMP_SLOT R_MIPS_REL32
62 #define elf_machine_type_class(type) ELF_RTYPE_CLASS_PLT
64 /* Translate a processor specific dynamic tag to the index
66 #define DT_MIPS(x) (DT_MIPS_##x - DT_LOPROC + DT_NUM)
68 /* If there is a DT_MIPS_RLD_MAP entry in the dynamic section, fill it in
69 with the run-time address of the r_debug structure */
70 #define ELF_MACHINE_DEBUG_SETUP(l,r) \
71 do { if ((l)->l_info[DT_MIPS (RLD_MAP)]) \
72 *(ElfW(Addr) *)((l)->l_info[DT_MIPS (RLD_MAP)]->d_un.d_ptr) = \
76 /* Return nonzero iff ELF header is compatible with the running host. */
77 static inline int __attribute_used__
78 elf_machine_matches_host (const ElfW(Ehdr
) *ehdr
)
80 #if _MIPS_SIM == _ABIO32 || _MIPS_SIM == _ABIN32
81 /* Don't link o32 and n32 together. */
82 if (((ehdr
->e_flags
& EF_MIPS_ABI2
) != 0) != (_MIPS_SIM
== _ABIN32
))
86 switch (ehdr
->e_machine
)
96 static inline ElfW(Addr
) *
97 elf_mips_got_from_gpreg (ElfW(Addr
) gpreg
)
99 /* FIXME: the offset of gp from GOT may be system-dependent. */
100 return (ElfW(Addr
) *) (gpreg
- OFFSET_GP_GOT
);
103 /* Return the link-time address of _DYNAMIC. Conveniently, this is the
104 first element of the GOT. This must be inlined in a function which
105 uses global data. We assume its $gp points to the primary GOT. */
106 static inline ElfW(Addr
)
107 elf_machine_dynamic (void)
109 register ElfW(Addr
) gp
__asm__ ("$28");
110 return *elf_mips_got_from_gpreg (gp
);
113 #define STRINGXP(X) __STRING(X)
114 #define STRINGXV(X) STRINGV_(X)
115 #define STRINGV_(...) # __VA_ARGS__
117 /* Return the run-time load address of the shared object. */
118 static inline ElfW(Addr
)
119 elf_machine_load_address (void)
122 asm (" .set noreorder\n"
123 " " STRINGXP (PTR_LA
) " %0, 0f\n"
126 "0: " STRINGXP (PTR_SUBU
) " %0, $31, %0\n"
134 /* The MSB of got[1] of a gnu object is set to identify gnu objects. */
135 #if _MIPS_SIM == _ABI64
136 # define ELF_MIPS_GNU_GOT1_MASK 0x8000000000000000L
138 # define ELF_MIPS_GNU_GOT1_MASK 0x80000000L
141 /* We can't rely on elf_machine_got_rel because _dl_object_relocation_scope
142 fiddles with global data. */
143 #define ELF_MACHINE_BEFORE_RTLD_RELOC(dynamic_info) \
145 struct link_map *map = &bootstrap_map; \
150 got = (ElfW(Addr) *) D_PTR (map, l_info[DT_PLTGOT]); \
152 if (__builtin_expect (map->l_addr == 0, 1)) \
155 /* got[0] is reserved. got[1] is also reserved for the dynamic object \
156 generated by gnu ld. Skip these reserved entries from \
158 i = (got[1] & ELF_MIPS_GNU_GOT1_MASK)? 2 : 1; \
159 n = map->l_info[DT_MIPS (LOCAL_GOTNO)]->d_un.d_val; \
161 /* Add the run-time displacement to all local got entries. */ \
163 got[i++] += map->l_addr; \
165 /* Handle global got entries. */ \
167 sym = (ElfW(Sym) *) D_PTR(map, l_info[DT_SYMTAB]) \
168 + map->l_info[DT_MIPS (GOTSYM)]->d_un.d_val; \
169 i = (map->l_info[DT_MIPS (SYMTABNO)]->d_un.d_val \
170 - map->l_info[DT_MIPS (GOTSYM)]->d_un.d_val); \
174 if (sym->st_shndx == SHN_UNDEF || sym->st_shndx == SHN_COMMON) \
175 *got = map->l_addr + sym->st_value; \
176 else if (ELFW(ST_TYPE) (sym->st_info) == STT_FUNC \
177 && *got != sym->st_value) \
178 *got += map->l_addr; \
179 else if (ELFW(ST_TYPE) (sym->st_info) == STT_SECTION) \
181 if (sym->st_other == 0) \
182 *got += map->l_addr; \
185 *got = map->l_addr + sym->st_value; \
193 /* Mask identifying addresses reserved for the user program,
194 where the dynamic linker should not map anything. */
195 #define ELF_MACHINE_USER_ADDRESS_MASK 0x80000000UL
198 /* Initial entry point code for the dynamic linker.
199 The C function `_dl_start' is the real entry point;
200 its return value is the user program's entry point.
201 Note how we have to be careful about two things:
203 1) That we allocate a minimal stack of 24 bytes for
204 every function call, the MIPS ABI states that even
205 if all arguments are passed in registers the procedure
206 called can use the 16 byte area pointed to by $sp
207 when it is called to store away the arguments passed
210 2) That under Linux the entry is named __start
211 and not just plain _start. */
213 #define RTLD_START asm (\
215 " _RTLD_PROLOGUE(ENTRY_POINT) "\
216 " STRINGXV(SETUP_GPX($25)) "\n\
217 " STRINGXV(SETUP_GPX64($18,$25)) "\n\
218 # i386 ABI book says that the first entry of GOT holds\n\
219 # the address of the dynamic structure. Though MIPS ABI\n\
220 # doesn't say nothing about this, I emulate this here.\n\
221 " STRINGXP(PTR_LA) " $4, _DYNAMIC\n\
222 # Subtract OFFSET_GP_GOT\n\
223 " STRINGXP(PTR_S) " $4, -0x7ff0($28)\n\
225 " STRINGXP(PTR_SUBIU) " $29, 16\n\
227 " STRINGXP(PTR_LA) " $8, .Lcoff\n\
229 .Lcoff: " STRINGXP(PTR_SUBU) " $8, $31, $8\n\
231 " STRINGXP(PTR_LA) " $25, _dl_start\n\
232 " STRINGXP(PTR_ADDU) " $25, $8\n\
235 " STRINGXP(PTR_ADDIU) " $29, 16\n\
236 # Get the value of label '_dl_start_user' in t9 ($25).\n\
237 " STRINGXP(PTR_LA) " $25, _dl_start_user\n\
238 " _RTLD_EPILOGUE(ENTRY_POINT) "\
241 " _RTLD_PROLOGUE(_dl_start_user) "\
242 " STRINGXP(SETUP_GP) "\n\
243 " STRINGXV(SETUP_GP64($18,_dl_start_user)) "\n\
245 # Save the user entry point address in a saved register.\n\
247 # See if we were run as a command with the executable file\n\
248 # name as an extra leading argument.\n\
249 lw $2, _dl_skip_args\n\
251 # Load the original argument count.\n\
252 " STRINGXP(PTR_L) " $4, 0($29)\n\
253 # Subtract _dl_skip_args from it.\n\
255 # Adjust the stack pointer to skip _dl_skip_args words.\n\
256 sll $2, " STRINGXP (PTRLOG) "\n\
257 " STRINGXP(PTR_ADDU) " $29, $2\n\
258 # Save back the modified argument count.\n\
259 " STRINGXP(PTR_S) " $4, 0($29)\n\
260 1: # Call _dl_init (struct link_map *main_map, int argc, char **argv, char **env) \n\
261 " STRINGXP(PTR_L) " $4, _rtld_local\n\
262 " STRINGXP(PTR_L) /* or lw??? fixme */ " $5, 0($29)\n\
263 " STRINGXP(PTR_LA) " $6, " STRINGXP (PTRSIZE) "($29)\n\
264 sll $7, $5, " STRINGXP (PTRLOG) "\n\
265 " STRINGXP(PTR_ADDU) " $7, $7, $6\n\
266 " STRINGXP(PTR_ADDU) " $7, $7, " STRINGXP (PTRSIZE) " \n\
267 # Make sure the stack pointer is aligned for _dl_init_internal.\n\
268 and $2, $29, -2 * " STRINGXP(SZREG) "\n\
269 " STRINGXP(PTR_S) " $29, -4($2)\n\
270 " STRINGXP(PTR_SUBIU) " $29, $2, 32\n\
271 " STRINGXP(SAVE_GP(16)) "\n\
272 # Call the function to run the initializers.\n\
273 jal _dl_init_internal\n\
274 # Restore the stack pointer for _start.\n\
275 " STRINGXP(PTR_L) " $29, 28($29)\n\
276 # Pass our finalizer function to the user in $2 as per ELF ABI.\n\
277 " STRINGXP(PTR_LA) " $2, _dl_fini\n\
278 # Jump to the user entry point.\n\
281 _RTLD_EPILOGUE(_dl_start_user)\
285 /* The MIPS never uses Elfxx_Rela relocations. */
286 #define ELF_MACHINE_NO_RELA 1
288 /* Names of the architecture-specific auditing callback functions. */
289 # if _MIPS_SIM == _ABIO32
290 # define ARCH_LA_PLTENTER mips_o32_gnu_pltenter
291 # define ARCH_LA_PLTEXIT mips_o32_gnu_pltexit
292 # elif _MIPS_SIM == _ABIN32
293 # define ARCH_LA_PLTENTER mips_n32_gnu_pltenter
294 # define ARCH_LA_PLTEXIT mips_n32_gnu_pltexit
296 # define ARCH_LA_PLTENTER mips_n64_gnu_pltenter
297 # define ARCH_LA_PLTEXIT mips_n64_gnu_pltexit
300 #endif /* !dl_machine_h */
304 /* Perform the relocation specified by RELOC and SYM (which is fully resolved).
305 MAP is the object containing the reloc. */
308 __attribute__ ((always_inline
))
309 elf_machine_rel (struct link_map
*map
, const ElfW(Rel
) *reloc
,
310 const ElfW(Sym
) *sym
, const struct r_found_version
*version
,
311 void *const reloc_addr
)
313 const unsigned long int r_type
= ELFW(R_TYPE
) (reloc
->r_info
);
315 #if !defined RTLD_BOOTSTRAP && !defined SHARED
316 /* This is defined in rtld.c, but nowhere in the static libc.a;
317 make the reference weak so static programs can still link. This
318 declaration cannot be done when compiling rtld.c (i.e. #ifdef
319 RTLD_BOOTSTRAP) because rtld.c contains the common defn for
320 _dl_rtld_map, which is incompatible with a weak decl in the same
322 weak_extern (GL(dl_rtld_map
));
327 #if defined (USE_TLS) && !defined (RTLD_BOOTSTRAP)
328 # if _MIPS_SIM == _ABI64
329 case R_MIPS_TLS_DTPMOD64
:
330 case R_MIPS_TLS_DTPREL64
:
331 case R_MIPS_TLS_TPREL64
:
333 case R_MIPS_TLS_DTPMOD32
:
334 case R_MIPS_TLS_DTPREL32
:
335 case R_MIPS_TLS_TPREL32
:
338 struct link_map
*sym_map
= RESOLVE_MAP (&sym
, version
, r_type
);
339 Elf32_Addr value
= sym
== NULL
? 0 : sym_map
->l_addr
+ sym
->st_value
;
342 value
+= sym
->st_value
;
346 case R_MIPS_TLS_DTPMOD64
:
347 case R_MIPS_TLS_DTPMOD32
:
349 *(ElfW(Word
) *)reloc_addr
= sym_map
->l_tls_modid
;
352 case R_MIPS_TLS_DTPREL64
:
353 case R_MIPS_TLS_DTPREL32
:
354 *(ElfW(Word
) *)reloc_addr
+= TLS_DTPREL_VALUE (sym
);
357 case R_MIPS_TLS_TPREL32
:
358 case R_MIPS_TLS_TPREL64
:
359 CHECK_STATIC_TLS (map
, sym_map
);
360 *(ElfW(Word
) *)reloc_addr
+= TLS_TPREL_VALUE (sym_map
, sym
);
368 #if _MIPS_SIM == _ABI64
369 case (R_MIPS_64
<< 8) | R_MIPS_REL32
:
374 int symidx
= ELFW(R_SYM
) (reloc
->r_info
);
375 ElfW(Addr
) reloc_value
;
377 /* Support relocations on mis-aligned offsets. Should we ever
378 implement RELA, this should be replaced with an assignment
379 from reloc->r_addend. */
380 __builtin_memcpy (&reloc_value
, reloc_addr
, sizeof (reloc_value
));
384 const ElfW(Word
) gotsym
385 = (const ElfW(Word
)) map
->l_info
[DT_MIPS (GOTSYM
)]->d_un
.d_val
;
387 if ((ElfW(Word
))symidx
< gotsym
)
389 /* This wouldn't work for a symbol imported from other
390 libraries for which there's no GOT entry, but MIPS
391 requires every symbol referenced in a dynamic
392 relocation to have a GOT entry in the primary GOT,
393 so we only get here for locally-defined symbols.
394 For section symbols, we should *NOT* be adding
395 sym->st_value (per the definition of the meaning of
396 S in reloc expressions in the ELF64 MIPS ABI),
397 since it should have already been added to
398 reloc_value by the linker, but older versions of
399 GNU ld didn't add it, and newer versions don't emit
400 useless relocations to section symbols any more, so
401 it is safe to keep on adding sym->st_value, even
402 though it's not ABI compliant. Some day we should
403 bite the bullet and stop doing this. */
404 #ifndef RTLD_BOOTSTRAP
405 if (map
!= &GL(dl_rtld_map
))
407 reloc_value
+= sym
->st_value
+ map
->l_addr
;
411 #ifndef RTLD_BOOTSTRAP
412 const ElfW(Addr
) *got
413 = (const ElfW(Addr
) *) D_PTR (map
, l_info
[DT_PLTGOT
]);
414 const ElfW(Word
) local_gotno
416 map
->l_info
[DT_MIPS (LOCAL_GOTNO
)]->d_un
.d_val
;
418 reloc_value
+= got
[symidx
+ local_gotno
- gotsym
];
423 #ifndef RTLD_BOOTSTRAP
424 if (map
!= &GL(dl_rtld_map
))
426 reloc_value
+= map
->l_addr
;
428 __builtin_memcpy (reloc_addr
, &reloc_value
, sizeof (reloc_value
));
431 case R_MIPS_NONE
: /* Alright, Wilbur. */
433 #if _MIPS_SIM == _ABI64
435 /* For full compliance with the ELF64 ABI, one must precede the
436 _REL32/_64 pair of relocations with a _64 relocation, such
437 that the in-place addend is read as a 64-bit value. IRIX
438 didn't pick up on this requirement, so we treat the
439 _REL32/_64 relocation as a 64-bit relocation even if it's by
440 itself. For ABI compliance, we ignore such _64 dummy
441 relocations. For RELA, this may be simply removed, since
442 it's totally unnecessary. */
443 if (ELFW(R_SYM
) (reloc
->r_info
) == 0)
448 _dl_reloc_bad_type (map
, r_type
, 0);
454 __attribute__((always_inline
))
455 elf_machine_rel_relative (ElfW(Addr
) l_addr
, const ElfW(Rel
) *reloc
,
456 void *const reloc_addr
)
458 /* XXX Nothing to do. There is no relative relocation, right? */
462 __attribute__((always_inline
))
463 elf_machine_lazy_rel (struct link_map
*map
,
464 ElfW(Addr
) l_addr
, const ElfW(Rel
) *reloc
)
470 __attribute__ ((always_inline
))
471 elf_machine_rela (struct link_map
*map
, const ElfW(Rela
) *reloc
,
472 const ElfW(Sym
) *sym
, const struct r_found_version
*version
,
473 void *const reloc_addr
)
478 __attribute__((always_inline
))
479 elf_machine_rela_relative (ElfW(Addr
) l_addr
, const ElfW(Rela
) *reloc
,
480 void *const reloc_addr
)
484 #ifndef RTLD_BOOTSTRAP
487 __attribute__((always_inline
))
488 elf_machine_got_rel (struct link_map
*map
, int lazy
)
492 const ElfW(Half
) *vernum
;
495 #define RESOLVE_GOTSYM(sym,vernum,sym_index) \
497 const ElfW(Sym) *ref = sym; \
498 const struct r_found_version *version \
499 = vernum ? &map->l_versions[vernum[sym_index] & 0x7fff] : NULL; \
500 struct link_map *sym_map; \
501 sym_map = RESOLVE_MAP (&ref, version, R_MIPS_REL32); \
502 ref ? sym_map->l_addr + ref->st_value : 0; \
505 if (map
->l_info
[VERSYMIDX (DT_VERSYM
)] != NULL
)
506 vernum
= (const void *) D_PTR (map
, l_info
[VERSYMIDX (DT_VERSYM
)]);
510 got
= (ElfW(Addr
) *) D_PTR (map
, l_info
[DT_PLTGOT
]);
512 n
= map
->l_info
[DT_MIPS (LOCAL_GOTNO
)]->d_un
.d_val
;
513 /* The dynamic linker's local got entries have already been relocated. */
514 if (map
!= &GL(dl_rtld_map
))
516 /* got[0] is reserved. got[1] is also reserved for the dynamic object
517 generated by gnu ld. Skip these reserved entries from relocation. */
518 i
= (got
[1] & ELF_MIPS_GNU_GOT1_MASK
)? 2 : 1;
520 /* Add the run-time displacement to all local got entries if
522 if (__builtin_expect (map
->l_addr
!= 0, 0))
525 got
[i
++] += map
->l_addr
;
529 /* Handle global got entries. */
531 /* Keep track of the symbol index. */
532 symidx
= map
->l_info
[DT_MIPS (GOTSYM
)]->d_un
.d_val
;
533 sym
= (ElfW(Sym
) *) D_PTR (map
, l_info
[DT_SYMTAB
]) + symidx
;
534 i
= (map
->l_info
[DT_MIPS (SYMTABNO
)]->d_un
.d_val
535 - map
->l_info
[DT_MIPS (GOTSYM
)]->d_un
.d_val
);
537 /* This loop doesn't handle Quickstart. */
540 if (sym
->st_shndx
== SHN_UNDEF
)
542 if (ELFW(ST_TYPE
) (sym
->st_info
) == STT_FUNC
543 && sym
->st_value
&& lazy
)
544 *got
= sym
->st_value
+ map
->l_addr
;
546 *got
= RESOLVE_GOTSYM (sym
, vernum
, symidx
);
548 else if (sym
->st_shndx
== SHN_COMMON
)
549 *got
= RESOLVE_GOTSYM (sym
, vernum
, symidx
);
550 else if (ELFW(ST_TYPE
) (sym
->st_info
) == STT_FUNC
551 && *got
!= sym
->st_value
554 else if (ELFW(ST_TYPE
) (sym
->st_info
) == STT_SECTION
)
556 if (sym
->st_other
== 0)
560 *got
= RESOLVE_GOTSYM (sym
, vernum
, symidx
);
567 #undef RESOLVE_GOTSYM
571 /* Set up the loaded object described by L so its stub function
572 will jump to the on-demand fixup code __dl_runtime_resolve. */
575 __attribute__((always_inline
))
576 elf_machine_runtime_setup (struct link_map
*l
, int lazy
, int profile
)
578 # ifndef RTLD_BOOTSTRAP
580 extern void _dl_runtime_resolve (ElfW(Word
));
581 extern int _dl_mips_gnu_objects
;
585 /* The GOT entries for functions have not yet been filled in.
586 Their initial contents will arrange when called to put an
587 offset into the .dynsym section in t8, the return address
588 in t7 and then jump to _GLOBAL_OFFSET_TABLE[0]. */
589 got
= (ElfW(Addr
) *) D_PTR (l
, l_info
[DT_PLTGOT
]);
591 /* This function will get called to fix up the GOT entry indicated by
592 the register t8, and then jump to the resolved address. */
593 got
[0] = (ElfW(Addr
)) &_dl_runtime_resolve
;
595 /* Store l to _GLOBAL_OFFSET_TABLE[1] for gnu object. The MSB
596 of got[1] of a gnu object is set to identify gnu objects.
597 Where we can store l for non gnu objects? XXX */
598 if ((got
[1] & ELF_MIPS_GNU_GOT1_MASK
) != 0)
599 got
[1] = ((ElfW(Addr
)) l
| ELF_MIPS_GNU_GOT1_MASK
);
601 _dl_mips_gnu_objects
= 0;
604 /* Relocate global offset table. */
605 elf_machine_got_rel (l
, lazy
);
611 #endif /* RESOLVE_MAP */