1 /* On-demand PLT fixup for shared objects.
2 Copyright (C) 1995-1999, 2000, 2001, 2002 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
20 #define IN_DL_RUNTIME 1 /* This can be tested in dl-machine.h. */
26 #include "dynamic-link.h"
28 #if (!defined ELF_MACHINE_NO_RELA && !defined ELF_MACHINE_PLT_REL) \
30 # define PLTREL ElfW(Rela)
32 # define PLTREL ElfW(Rel)
36 # define VERSYMIDX(sym) (DT_NUM + DT_THISPROCNUM + DT_VERSIONTAGIDX (sym))
40 /* This function is called through a special trampoline from the PLT the
41 first time each PLT entry is called. We must perform the relocation
42 specified in the PLT of the given shared object, and return the resolved
43 function address to the trampoline, which will restart the original call
44 to that address. Future calls will bounce directly from the PLT to the
47 #ifndef ELF_MACHINE_NO_PLT
48 static ElfW(Addr
) __attribute_used__
50 # ifdef ELF_MACHINE_RUNTIME_FIXUP_ARGS
51 ELF_MACHINE_RUNTIME_FIXUP_ARGS
,
53 /* GKM FIXME: Fix trampoline to pass bounds so we can do
54 without the `__unbounded' qualifier. */
55 struct link_map
*__unbounded l
, ElfW(Word
) reloc_offset
)
57 const ElfW(Sym
) *const symtab
58 = (const void *) D_PTR (l
, l_info
[DT_SYMTAB
]);
59 const char *strtab
= (const void *) D_PTR (l
, l_info
[DT_STRTAB
]);
61 const PLTREL
*const reloc
62 = (const void *) (D_PTR (l
, l_info
[DT_JMPREL
]) + reloc_offset
);
63 const ElfW(Sym
) *sym
= &symtab
[ELFW(R_SYM
) (reloc
->r_info
)];
64 void *const rel_addr
= (void *)(l
->l_addr
+ reloc
->r_offset
);
68 /* The use of `alloca' here looks ridiculous but it helps. The goal is
69 to prevent the function from being inlined and thus optimized out.
70 There is no official way to do this so we use this trick. gcc never
71 inlines functions which use `alloca'. */
72 alloca (sizeof (int));
74 /* Sanity check that we're really looking at a PLT relocation. */
75 assert (ELFW(R_TYPE
)(reloc
->r_info
) == ELF_MACHINE_JMP_SLOT
);
77 /* Look up the target symbol. If the normal lookup rules are not
78 used don't look in the global scope. */
79 if (__builtin_expect (ELFW(ST_VISIBILITY
) (sym
->st_other
), 0) == 0)
81 switch (l
->l_info
[VERSYMIDX (DT_VERSYM
)] != NULL
)
85 const ElfW(Half
) *vernum
=
86 (const void *) D_PTR (l
, l_info
[VERSYMIDX (DT_VERSYM
)]);
87 ElfW(Half
) ndx
= vernum
[ELFW(R_SYM
) (reloc
->r_info
) & 0x7fff];
88 const struct r_found_version
*version
= &l
->l_versions
[ndx
];
90 if (version
->hash
!= 0)
92 result
= INTUSE(_dl_lookup_versioned_symbol
) (strtab
102 result
= INTUSE(_dl_lookup_symbol
) (strtab
+ sym
->st_name
, l
, &sym
,
103 l
->l_scope
, ELF_RTYPE_CLASS_PLT
,
104 DL_LOOKUP_ADD_DEPENDENCY
);
107 /* Currently result contains the base load address (or link map)
108 of the object that defines sym. Now add in the symbol
110 value
= (sym
? LOOKUP_VALUE_ADDRESS (result
) + sym
->st_value
: 0);
114 /* We already found the symbol. The module (and therefore its load
115 address) is also known. */
116 value
= l
->l_addr
+ sym
->st_value
;
117 #ifdef DL_LOOKUP_RETURNS_MAP
122 /* And now perhaps the relocation addend. */
123 value
= elf_machine_plt_value (l
, reloc
, value
);
125 /* Finally, fix up the plt itself. */
126 if (__builtin_expect (GL(dl_bind_not
), 0))
129 return elf_machine_fixup_plt (l
, result
, reloc
, rel_addr
, value
);
133 #if !defined PROF && !defined ELF_MACHINE_NO_PLT && !__BOUNDED_POINTERS__
135 static ElfW(Addr
) __attribute_used__
137 #ifdef ELF_MACHINE_RUNTIME_FIXUP_ARGS
138 ELF_MACHINE_RUNTIME_FIXUP_ARGS
,
140 struct link_map
*l
, ElfW(Word
) reloc_offset
, ElfW(Addr
) retaddr
)
142 void (*mcount_fct
) (ElfW(Addr
), ElfW(Addr
)) = INTUSE(_dl_mcount
);
147 /* The use of `alloca' here looks ridiculous but it helps. The goal is
148 to prevent the function from being inlined, and thus optimized out.
149 There is no official way to do this so we use this trick. gcc never
150 inlines functions which use `alloca'. */
151 alloca (sizeof (int));
153 /* This is the address in the array where we store the result of previous
155 resultp
= &l
->l_reloc_result
[reloc_offset
/ sizeof (PLTREL
)];
160 /* This is the first time we have to relocate this object. */
161 const ElfW(Sym
) *const symtab
162 = (const void *) D_PTR (l
, l_info
[DT_SYMTAB
]);
163 const char *strtab
= (const void *) D_PTR (l
, l_info
[DT_STRTAB
]);
165 const PLTREL
*const reloc
166 = (const void *) (D_PTR (l
, l_info
[DT_JMPREL
]) + reloc_offset
);
167 const ElfW(Sym
) *sym
= &symtab
[ELFW(R_SYM
) (reloc
->r_info
)];
169 /* Sanity check that we're really looking at a PLT relocation. */
170 assert (ELFW(R_TYPE
)(reloc
->r_info
) == ELF_MACHINE_JMP_SLOT
);
172 /* Look up the target symbol. If the symbol is marked STV_PROTECTED
173 don't look in the global scope. */
174 if (__builtin_expect (ELFW(ST_VISIBILITY
) (sym
->st_other
), 0) == 0)
176 switch (l
->l_info
[VERSYMIDX (DT_VERSYM
)] != NULL
)
180 const ElfW(Half
) *vernum
=
181 (const void *) D_PTR (l
,l_info
[VERSYMIDX (DT_VERSYM
)]);
182 ElfW(Half
) ndx
= vernum
[ELFW(R_SYM
) (reloc
->r_info
) & 0x7fff];
183 const struct r_found_version
*version
= &l
->l_versions
[ndx
];
185 if (version
->hash
!= 0)
187 result
= INTUSE(_dl_lookup_versioned_symbol
) (strtab
198 result
= INTUSE(_dl_lookup_symbol
) (strtab
+ sym
->st_name
, l
,
201 DL_LOOKUP_ADD_DEPENDENCY
);
204 /* Currently result contains the base load address (or link map)
205 of the object that defines sym. Now add in the symbol
207 value
= (sym
? LOOKUP_VALUE_ADDRESS (result
) + sym
->st_value
: 0);
211 /* We already found the symbol. The module (and therefore its load
212 address) is also known. */
213 value
= l
->l_addr
+ sym
->st_value
;
214 #ifdef DL_LOOKUP_RETURNS_MAP
218 /* And now perhaps the relocation addend. */
219 value
= elf_machine_plt_value (l
, reloc
, value
);
221 /* Store the result for later runs. */
222 if (__builtin_expect (! GL(dl_bind_not
), 1))
226 (*mcount_fct
) (retaddr
, value
);
231 #endif /* PROF && ELF_MACHINE_NO_PLT */
234 /* This macro is defined in dl-machine.h to define the entry point called
235 by the PLT. The `fixup' function above does the real work, but a little
236 more twiddling is needed to get the stack right and jump to the address
239 ELF_MACHINE_RUNTIME_TRAMPOLINE