1 /* Machine-dependent ELF dynamic relocation inline functions. MIPS version.
2 Copyright (C) 1996-2012 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Kazumoto Kojima <kkojima@info.kanagawa-u.ac.jp>.
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 /* FIXME: Profiling of shared libraries is not implemented yet. */
24 #define ELF_MACHINE_NAME "MIPS"
29 #error ENTRY_POINT needs to be defined for MIPS.
36 /* The offset of gp from GOT might be system-dependent. It's set by
37 ld. The same value is also */
38 #define OFFSET_GP_GOT 0x7ff0
40 #ifndef _RTLD_PROLOGUE
41 # define _RTLD_PROLOGUE(entry) \
42 ".globl\t" __STRING(entry) "\n\t" \
43 ".ent\t" __STRING(entry) "\n\t" \
44 ".type\t" __STRING(entry) ", @function\n" \
45 __STRING(entry) ":\n\t"
48 #ifndef _RTLD_EPILOGUE
49 # define _RTLD_EPILOGUE(entry) \
50 ".end\t" __STRING(entry) "\n\t" \
51 ".size\t" __STRING(entry) ", . - " __STRING(entry) "\n\t"
54 /* A reloc type used for ld.so cmdline arg lookups to reject PLT entries.
55 This only makes sense on MIPS when using PLTs, so choose the
56 PLT relocation (not encountered when not using PLTs). */
57 #define ELF_MACHINE_JMP_SLOT R_MIPS_JUMP_SLOT
58 #define elf_machine_type_class(type) \
59 ((((type) == ELF_MACHINE_JMP_SLOT) * ELF_RTYPE_CLASS_PLT) \
60 | (((type) == R_MIPS_COPY) * ELF_RTYPE_CLASS_COPY))
62 #define ELF_MACHINE_PLT_REL 1
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 Unix 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, -" STRINGXP(SZREG) "($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, 32-" STRINGXP(SZREG) "($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 /* Names of the architecture-specific auditing callback functions. */
286 # if _MIPS_SIM == _ABIO32
287 # define ARCH_LA_PLTENTER mips_o32_gnu_pltenter
288 # define ARCH_LA_PLTEXIT mips_o32_gnu_pltexit
289 # elif _MIPS_SIM == _ABIN32
290 # define ARCH_LA_PLTENTER mips_n32_gnu_pltenter
291 # define ARCH_LA_PLTEXIT mips_n32_gnu_pltexit
293 # define ARCH_LA_PLTENTER mips_n64_gnu_pltenter
294 # define ARCH_LA_PLTEXIT mips_n64_gnu_pltexit
297 /* We define an initialization function. This is called very early in
299 #define DL_PLATFORM_INIT dl_platform_init ()
301 static inline void __attribute__ ((unused
))
302 dl_platform_init (void)
304 if (GLRO(dl_platform
) != NULL
&& *GLRO(dl_platform
) == '\0')
305 /* Avoid an empty string which would disturb us. */
306 GLRO(dl_platform
) = NULL
;
309 /* For a non-writable PLT, rewrite the .got.plt entry at RELOC_ADDR to
310 point at the symbol with address VALUE. For a writable PLT, rewrite
311 the corresponding PLT entry instead. */
312 static inline ElfW(Addr
)
313 elf_machine_fixup_plt (struct link_map
*map
, lookup_t t
,
314 const ElfW(Rel
) *reloc
,
315 ElfW(Addr
) *reloc_addr
, ElfW(Addr
) value
)
317 return *reloc_addr
= value
;
320 static inline ElfW(Addr
)
321 elf_machine_plt_value (struct link_map
*map
, const ElfW(Rel
) *reloc
,
327 #endif /* !dl_machine_h */
331 /* Perform a relocation described by R_INFO at the location pointed to
332 by RELOC_ADDR. SYM is the relocation symbol specified by R_INFO and
333 MAP is the object containing the reloc. */
336 __attribute__ ((always_inline
))
337 elf_machine_reloc (struct link_map
*map
, ElfW(Addr
) r_info
,
338 const ElfW(Sym
) *sym
, const struct r_found_version
*version
,
339 void *reloc_addr
, ElfW(Addr
) r_addend
, int inplace_p
)
341 const unsigned long int r_type
= ELFW(R_TYPE
) (r_info
);
342 ElfW(Addr
) *addr_field
= (ElfW(Addr
) *) reloc_addr
;
344 #if !defined RTLD_BOOTSTRAP && !defined SHARED
345 /* This is defined in rtld.c, but nowhere in the static libc.a;
346 make the reference weak so static programs can still link. This
347 declaration cannot be done when compiling rtld.c (i.e. #ifdef
348 RTLD_BOOTSTRAP) because rtld.c contains the common defn for
349 _dl_rtld_map, which is incompatible with a weak decl in the same
351 weak_extern (GL(dl_rtld_map
));
356 #if !defined (RTLD_BOOTSTRAP)
357 # if _MIPS_SIM == _ABI64
358 case R_MIPS_TLS_DTPMOD64
:
359 case R_MIPS_TLS_DTPREL64
:
360 case R_MIPS_TLS_TPREL64
:
362 case R_MIPS_TLS_DTPMOD32
:
363 case R_MIPS_TLS_DTPREL32
:
364 case R_MIPS_TLS_TPREL32
:
367 struct link_map
*sym_map
= RESOLVE_MAP (&sym
, version
, r_type
);
371 case R_MIPS_TLS_DTPMOD64
:
372 case R_MIPS_TLS_DTPMOD32
:
374 *addr_field
= sym_map
->l_tls_modid
;
377 case R_MIPS_TLS_DTPREL64
:
378 case R_MIPS_TLS_DTPREL32
:
382 r_addend
= *addr_field
;
383 *addr_field
= r_addend
+ TLS_DTPREL_VALUE (sym
);
387 case R_MIPS_TLS_TPREL32
:
388 case R_MIPS_TLS_TPREL64
:
391 CHECK_STATIC_TLS (map
, sym_map
);
393 r_addend
= *addr_field
;
394 *addr_field
= r_addend
+ TLS_TPREL_VALUE (sym_map
, sym
);
403 #if _MIPS_SIM == _ABI64
404 case (R_MIPS_64
<< 8) | R_MIPS_REL32
:
409 int symidx
= ELFW(R_SYM
) (r_info
);
410 ElfW(Addr
) reloc_value
;
413 /* Support relocations on mis-aligned offsets. */
414 __builtin_memcpy (&reloc_value
, reloc_addr
, sizeof (reloc_value
));
416 reloc_value
= r_addend
;
420 const ElfW(Word
) gotsym
421 = (const ElfW(Word
)) map
->l_info
[DT_MIPS (GOTSYM
)]->d_un
.d_val
;
423 if ((ElfW(Word
))symidx
< gotsym
)
425 /* This wouldn't work for a symbol imported from other
426 libraries for which there's no GOT entry, but MIPS
427 requires every symbol referenced in a dynamic
428 relocation to have a GOT entry in the primary GOT,
429 so we only get here for locally-defined symbols.
430 For section symbols, we should *NOT* be adding
431 sym->st_value (per the definition of the meaning of
432 S in reloc expressions in the ELF64 MIPS ABI),
433 since it should have already been added to
434 reloc_value by the linker, but older versions of
435 GNU ld didn't add it, and newer versions don't emit
436 useless relocations to section symbols any more, so
437 it is safe to keep on adding sym->st_value, even
438 though it's not ABI compliant. Some day we should
439 bite the bullet and stop doing this. */
440 #ifndef RTLD_BOOTSTRAP
441 if (map
!= &GL(dl_rtld_map
))
443 reloc_value
+= sym
->st_value
+ map
->l_addr
;
447 #ifndef RTLD_BOOTSTRAP
448 const ElfW(Addr
) *got
449 = (const ElfW(Addr
) *) D_PTR (map
, l_info
[DT_PLTGOT
]);
450 const ElfW(Word
) local_gotno
452 map
->l_info
[DT_MIPS (LOCAL_GOTNO
)]->d_un
.d_val
;
454 reloc_value
+= got
[symidx
+ local_gotno
- gotsym
];
459 #ifndef RTLD_BOOTSTRAP
460 if (map
!= &GL(dl_rtld_map
))
462 reloc_value
+= map
->l_addr
;
464 __builtin_memcpy (reloc_addr
, &reloc_value
, sizeof (reloc_value
));
467 #ifndef RTLD_BOOTSTRAP
468 #if _MIPS_SIM == _ABI64
469 case (R_MIPS_64
<< 8) | R_MIPS_GLOB_DAT
:
471 case R_MIPS_GLOB_DAT
:
474 int symidx
= ELFW(R_SYM
) (r_info
);
475 const ElfW(Word
) gotsym
476 = (const ElfW(Word
)) map
->l_info
[DT_MIPS (GOTSYM
)]->d_un
.d_val
;
478 if (__builtin_expect ((ElfW(Word
)) symidx
>= gotsym
, 1))
480 const ElfW(Addr
) *got
481 = (const ElfW(Addr
) *) D_PTR (map
, l_info
[DT_PLTGOT
]);
482 const ElfW(Word
) local_gotno
483 = ((const ElfW(Word
))
484 map
->l_info
[DT_MIPS (LOCAL_GOTNO
)]->d_un
.d_val
);
486 ElfW(Addr
) reloc_value
= got
[symidx
+ local_gotno
- gotsym
];
487 __builtin_memcpy (reloc_addr
, &reloc_value
, sizeof (reloc_value
));
492 case R_MIPS_NONE
: /* Alright, Wilbur. */
495 case R_MIPS_JUMP_SLOT
:
497 struct link_map
*sym_map
;
500 /* The addend for a jump slot relocation must always be zero:
501 calls via the PLT always branch to the symbol's address and
502 not to the address plus a non-zero offset. */
504 _dl_signal_error (0, map
->l_name
, NULL
,
505 "found jump slot relocation with non-zero addend");
507 sym_map
= RESOLVE_MAP (&sym
, version
, r_type
);
508 value
= sym_map
== NULL
? 0 : sym_map
->l_addr
+ sym
->st_value
;
516 const ElfW(Sym
) *const refsym
= sym
;
517 struct link_map
*sym_map
;
520 /* Calculate the address of the symbol. */
521 sym_map
= RESOLVE_MAP (&sym
, version
, r_type
);
522 value
= sym_map
== NULL
? 0 : sym_map
->l_addr
+ sym
->st_value
;
524 if (__builtin_expect (sym
== NULL
, 0))
525 /* This can happen in trace mode if an object could not be
528 if (__builtin_expect (sym
->st_size
> refsym
->st_size
, 0)
529 || (__builtin_expect (sym
->st_size
< refsym
->st_size
, 0)
530 && GLRO(dl_verbose
)))
534 strtab
= (const void *) D_PTR (map
, l_info
[DT_STRTAB
]);
536 %s: Symbol `%s' has different size in shared object, consider re-linking\n",
537 rtld_progname
?: "<program name unknown>",
538 strtab
+ refsym
->st_name
);
540 memcpy (reloc_addr
, (void *) value
,
541 MIN (sym
->st_size
, refsym
->st_size
));
545 #if _MIPS_SIM == _ABI64
547 /* For full compliance with the ELF64 ABI, one must precede the
548 _REL32/_64 pair of relocations with a _64 relocation, such
549 that the in-place addend is read as a 64-bit value. IRIX
550 didn't pick up on this requirement, so we treat the
551 _REL32/_64 relocation as a 64-bit relocation even if it's by
552 itself. For ABI compliance, we ignore such _64 dummy
553 relocations. For RELA, this may be simply removed, since
554 it's totally unnecessary. */
555 if (ELFW(R_SYM
) (r_info
) == 0)
560 _dl_reloc_bad_type (map
, r_type
, 0);
565 /* Perform the relocation specified by RELOC and SYM (which is fully resolved).
566 MAP is the object containing the reloc. */
569 __attribute__ ((always_inline
))
570 elf_machine_rel (struct link_map
*map
, const ElfW(Rel
) *reloc
,
571 const ElfW(Sym
) *sym
, const struct r_found_version
*version
,
572 void *const reloc_addr
, int skip_ifunc
)
574 elf_machine_reloc (map
, reloc
->r_info
, sym
, version
, reloc_addr
, 0, 1);
578 __attribute__((always_inline
))
579 elf_machine_rel_relative (ElfW(Addr
) l_addr
, const ElfW(Rel
) *reloc
,
580 void *const reloc_addr
)
582 /* XXX Nothing to do. There is no relative relocation, right? */
586 __attribute__((always_inline
))
587 elf_machine_lazy_rel (struct link_map
*map
,
588 ElfW(Addr
) l_addr
, const ElfW(Rel
) *reloc
,
591 ElfW(Addr
) *const reloc_addr
= (void *) (l_addr
+ reloc
->r_offset
);
592 const unsigned int r_type
= ELFW(R_TYPE
) (reloc
->r_info
);
593 /* Check for unexpected PLT reloc type. */
594 if (__builtin_expect (r_type
== R_MIPS_JUMP_SLOT
, 1))
596 if (__builtin_expect (map
->l_mach
.plt
, 0) == 0)
598 /* Nothing is required here since we only support lazy
599 relocation in executables. */
602 *reloc_addr
= map
->l_mach
.plt
;
605 _dl_reloc_bad_type (map
, r_type
, 1);
609 __attribute__ ((always_inline
))
610 elf_machine_rela (struct link_map
*map
, const ElfW(Rela
) *reloc
,
611 const ElfW(Sym
) *sym
, const struct r_found_version
*version
,
612 void *const reloc_addr
, int skip_ifunc
)
614 elf_machine_reloc (map
, reloc
->r_info
, sym
, version
, reloc_addr
,
619 __attribute__((always_inline
))
620 elf_machine_rela_relative (ElfW(Addr
) l_addr
, const ElfW(Rela
) *reloc
,
621 void *const reloc_addr
)
625 #ifndef RTLD_BOOTSTRAP
628 __attribute__((always_inline
))
629 elf_machine_got_rel (struct link_map
*map
, int lazy
)
633 const ElfW(Half
) *vernum
;
636 #define RESOLVE_GOTSYM(sym,vernum,sym_index,reloc) \
638 const ElfW(Sym) *ref = sym; \
639 const struct r_found_version *version \
640 = vernum ? &map->l_versions[vernum[sym_index] & 0x7fff] : NULL; \
641 struct link_map *sym_map; \
642 sym_map = RESOLVE_MAP (&ref, version, reloc); \
643 ref ? sym_map->l_addr + ref->st_value : 0; \
646 if (map
->l_info
[VERSYMIDX (DT_VERSYM
)] != NULL
)
647 vernum
= (const void *) D_PTR (map
, l_info
[VERSYMIDX (DT_VERSYM
)]);
651 got
= (ElfW(Addr
) *) D_PTR (map
, l_info
[DT_PLTGOT
]);
653 n
= map
->l_info
[DT_MIPS (LOCAL_GOTNO
)]->d_un
.d_val
;
654 /* The dynamic linker's local got entries have already been relocated. */
655 if (map
!= &GL(dl_rtld_map
))
657 /* got[0] is reserved. got[1] is also reserved for the dynamic object
658 generated by gnu ld. Skip these reserved entries from relocation. */
659 i
= (got
[1] & ELF_MIPS_GNU_GOT1_MASK
)? 2 : 1;
661 /* Add the run-time displacement to all local got entries if
663 if (__builtin_expect (map
->l_addr
!= 0, 0))
666 got
[i
++] += map
->l_addr
;
670 /* Handle global got entries. */
672 /* Keep track of the symbol index. */
673 symidx
= map
->l_info
[DT_MIPS (GOTSYM
)]->d_un
.d_val
;
674 sym
= (ElfW(Sym
) *) D_PTR (map
, l_info
[DT_SYMTAB
]) + symidx
;
675 i
= (map
->l_info
[DT_MIPS (SYMTABNO
)]->d_un
.d_val
676 - map
->l_info
[DT_MIPS (GOTSYM
)]->d_un
.d_val
);
678 /* This loop doesn't handle Quickstart. */
681 if (sym
->st_shndx
== SHN_UNDEF
)
683 if (ELFW(ST_TYPE
) (sym
->st_info
) == STT_FUNC
&& sym
->st_value
684 && !(sym
->st_other
& STO_MIPS_PLT
))
687 *got
= sym
->st_value
+ map
->l_addr
;
689 /* This is a lazy-binding stub, so we don't need the
690 canonical address. */
691 *got
= RESOLVE_GOTSYM (sym
, vernum
, symidx
, R_MIPS_JUMP_SLOT
);
694 *got
= RESOLVE_GOTSYM (sym
, vernum
, symidx
, R_MIPS_32
);
696 else if (sym
->st_shndx
== SHN_COMMON
)
697 *got
= RESOLVE_GOTSYM (sym
, vernum
, symidx
, R_MIPS_32
);
698 else if (ELFW(ST_TYPE
) (sym
->st_info
) == STT_FUNC
699 && *got
!= sym
->st_value
)
704 /* This is a lazy-binding stub, so we don't need the
705 canonical address. */
706 *got
= RESOLVE_GOTSYM (sym
, vernum
, symidx
, R_MIPS_JUMP_SLOT
);
708 else if (ELFW(ST_TYPE
) (sym
->st_info
) == STT_SECTION
)
710 if (sym
->st_other
== 0)
714 *got
= RESOLVE_GOTSYM (sym
, vernum
, symidx
, R_MIPS_32
);
721 #undef RESOLVE_GOTSYM
725 /* Set up the loaded object described by L so its stub function
726 will jump to the on-demand fixup code __dl_runtime_resolve. */
729 __attribute__((always_inline
))
730 elf_machine_runtime_setup (struct link_map
*l
, int lazy
, int profile
)
732 # ifndef RTLD_BOOTSTRAP
734 extern void _dl_runtime_resolve (ElfW(Word
));
735 extern void _dl_runtime_pltresolve (void);
736 extern int _dl_mips_gnu_objects
;
740 /* The GOT entries for functions have not yet been filled in.
741 Their initial contents will arrange when called to put an
742 offset into the .dynsym section in t8, the return address
743 in t7 and then jump to _GLOBAL_OFFSET_TABLE[0]. */
744 got
= (ElfW(Addr
) *) D_PTR (l
, l_info
[DT_PLTGOT
]);
746 /* This function will get called to fix up the GOT entry indicated by
747 the register t8, and then jump to the resolved address. */
748 got
[0] = (ElfW(Addr
)) &_dl_runtime_resolve
;
750 /* Store l to _GLOBAL_OFFSET_TABLE[1] for gnu object. The MSB
751 of got[1] of a gnu object is set to identify gnu objects.
752 Where we can store l for non gnu objects? XXX */
753 if ((got
[1] & ELF_MIPS_GNU_GOT1_MASK
) != 0)
754 got
[1] = ((ElfW(Addr
)) l
| ELF_MIPS_GNU_GOT1_MASK
);
756 _dl_mips_gnu_objects
= 0;
759 /* Relocate global offset table. */
760 elf_machine_got_rel (l
, lazy
);
762 /* If using PLTs, fill in the first two entries of .got.plt. */
763 if (l
->l_info
[DT_JMPREL
] && lazy
)
766 gotplt
= (ElfW(Addr
) *) D_PTR (l
, l_info
[DT_MIPS (PLTGOT
)]);
767 /* If a library is prelinked but we have to relocate anyway,
768 we have to be able to undo the prelinking of .got.plt.
769 The prelinker saved the address of .plt for us here. */
771 l
->l_mach
.plt
= gotplt
[1] + l
->l_addr
;
772 gotplt
[0] = (ElfW(Addr
)) &_dl_runtime_pltresolve
;
773 gotplt
[1] = (ElfW(Addr
)) l
;
780 #endif /* RESOLVE_MAP */