1 /* On-demand PLT fixup for shared objects.
2 Copyright (C) 1995-2006, 2007 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. */
25 #include <sys/param.h>
27 #include <sysdep-cancel.h>
28 #include "dynamic-link.h"
32 #if (!defined ELF_MACHINE_NO_RELA && !defined ELF_MACHINE_PLT_REL) \
34 # define PLTREL ElfW(Rela)
36 # define PLTREL ElfW(Rel)
40 # define VERSYMIDX(sym) (DT_NUM + DT_THISPROCNUM + DT_VERSIONTAGIDX (sym))
43 /* The fixup functions might have need special attributes. If none
44 are provided define the macro as empty. */
45 #ifndef ARCH_FIXUP_ATTRIBUTE
46 # define ARCH_FIXUP_ATTRIBUTE
50 /* This function is called through a special trampoline from the PLT the
51 first time each PLT entry is called. We must perform the relocation
52 specified in the PLT of the given shared object, and return the resolved
53 function address to the trampoline, which will restart the original call
54 to that address. Future calls will bounce directly from the PLT to the
57 #ifndef ELF_MACHINE_NO_PLT
59 __attribute ((noinline
)) ARCH_FIXUP_ATTRIBUTE
61 # ifdef ELF_MACHINE_RUNTIME_FIXUP_ARGS
62 ELF_MACHINE_RUNTIME_FIXUP_ARGS
,
64 /* GKM FIXME: Fix trampoline to pass bounds so we can do
65 without the `__unbounded' qualifier. */
66 struct link_map
*__unbounded l
, ElfW(Word
) reloc_offset
)
68 const ElfW(Sym
) *const symtab
69 = (const void *) D_PTR (l
, l_info
[DT_SYMTAB
]);
70 const char *strtab
= (const void *) D_PTR (l
, l_info
[DT_STRTAB
]);
72 const PLTREL
*const reloc
73 = (const void *) (D_PTR (l
, l_info
[DT_JMPREL
]) + reloc_offset
);
74 const ElfW(Sym
) *sym
= &symtab
[ELFW(R_SYM
) (reloc
->r_info
)];
75 void *const rel_addr
= (void *)(l
->l_addr
+ reloc
->r_offset
);
77 DL_FIXUP_VALUE_TYPE value
;
79 /* Sanity check that we're really looking at a PLT relocation. */
80 assert (ELFW(R_TYPE
)(reloc
->r_info
) == ELF_MACHINE_JMP_SLOT
);
82 /* Look up the target symbol. If the normal lookup rules are not
83 used don't look in the global scope. */
84 if (__builtin_expect (ELFW(ST_VISIBILITY
) (sym
->st_other
), 0) == 0)
86 const struct r_found_version
*version
= NULL
;
88 if (l
->l_info
[VERSYMIDX (DT_VERSYM
)] != NULL
)
90 const ElfW(Half
) *vernum
=
91 (const void *) D_PTR (l
, l_info
[VERSYMIDX (DT_VERSYM
)]);
92 ElfW(Half
) ndx
= vernum
[ELFW(R_SYM
) (reloc
->r_info
)] & 0x7fff;
93 version
= &l
->l_versions
[ndx
];
94 if (version
->hash
== 0)
98 /* We need to keep the scope around so do some locking. This is
99 not necessary for objects which cannot be unloaded or when
100 we are not using any threads (yet). */
101 int flags
= DL_LOOKUP_ADD_DEPENDENCY
;
102 if (!RTLD_SINGLE_THREAD_P
)
104 THREAD_GSCOPE_SET_FLAG ();
105 flags
|= DL_LOOKUP_GSCOPE_LOCK
;
108 result
= _dl_lookup_symbol_x (strtab
+ sym
->st_name
, l
, &sym
, l
->l_scope
,
109 version
, ELF_RTYPE_CLASS_PLT
, flags
, NULL
);
111 /* We are done with the global scope. */
112 if (!RTLD_SINGLE_THREAD_P
)
113 THREAD_GSCOPE_RESET_FLAG ();
115 /* Currently result contains the base load address (or link map)
116 of the object that defines sym. Now add in the symbol
118 value
= DL_FIXUP_MAKE_VALUE (result
,
119 sym
? (LOOKUP_VALUE_ADDRESS (result
)
120 + sym
->st_value
) : 0);
124 /* We already found the symbol. The module (and therefore its load
125 address) is also known. */
126 value
= DL_FIXUP_MAKE_VALUE (l
, l
->l_addr
+ sym
->st_value
);
130 /* And now perhaps the relocation addend. */
131 value
= elf_machine_plt_value (l
, reloc
, value
);
133 /* Finally, fix up the plt itself. */
134 if (__builtin_expect (GLRO(dl_bind_not
), 0))
137 return elf_machine_fixup_plt (l
, result
, reloc
, rel_addr
, value
);
141 #if !defined PROF && !defined ELF_MACHINE_NO_PLT && !__BOUNDED_POINTERS__
144 __attribute ((noinline
)) ARCH_FIXUP_ATTRIBUTE
146 #ifdef ELF_MACHINE_RUNTIME_FIXUP_ARGS
147 ELF_MACHINE_RUNTIME_FIXUP_ARGS
,
149 struct link_map
*l
, ElfW(Word
) reloc_offset
,
150 ElfW(Addr
) retaddr
, void *regs
, long int *framesizep
)
152 void (*mcount_fct
) (ElfW(Addr
), ElfW(Addr
)) = INTUSE(_dl_mcount
);
154 /* This is the address in the array where we store the result of previous
156 struct reloc_result
*reloc_result
157 = &l
->l_reloc_result
[reloc_offset
/ sizeof (PLTREL
)];
158 DL_FIXUP_VALUE_TYPE
*resultp
= &reloc_result
->addr
;
160 DL_FIXUP_VALUE_TYPE value
= *resultp
;
161 if (DL_FIXUP_VALUE_CODE_ADDR (value
) == 0)
163 /* This is the first time we have to relocate this object. */
164 const ElfW(Sym
) *const symtab
165 = (const void *) D_PTR (l
, l_info
[DT_SYMTAB
]);
166 const char *strtab
= (const char *) D_PTR (l
, l_info
[DT_STRTAB
]);
168 const PLTREL
*const reloc
169 = (const void *) (D_PTR (l
, l_info
[DT_JMPREL
]) + reloc_offset
);
170 const ElfW(Sym
) *refsym
= &symtab
[ELFW(R_SYM
) (reloc
->r_info
)];
171 const ElfW(Sym
) *defsym
= refsym
;
174 /* Sanity check that we're really looking at a PLT relocation. */
175 assert (ELFW(R_TYPE
)(reloc
->r_info
) == ELF_MACHINE_JMP_SLOT
);
177 /* Look up the target symbol. If the symbol is marked STV_PROTECTED
178 don't look in the global scope. */
179 if (__builtin_expect (ELFW(ST_VISIBILITY
) (refsym
->st_other
), 0) == 0)
181 const struct r_found_version
*version
= NULL
;
183 if (l
->l_info
[VERSYMIDX (DT_VERSYM
)] != NULL
)
185 const ElfW(Half
) *vernum
=
186 (const void *) D_PTR (l
, l_info
[VERSYMIDX (DT_VERSYM
)]);
187 ElfW(Half
) ndx
= vernum
[ELFW(R_SYM
) (reloc
->r_info
)] & 0x7fff;
188 version
= &l
->l_versions
[ndx
];
189 if (version
->hash
== 0)
193 /* We need to keep the scope around so do some locking. This is
194 not necessary for objects which cannot be unloaded or when
195 we are not using any threads (yet). */
196 int flags
= DL_LOOKUP_ADD_DEPENDENCY
;
197 if (!RTLD_SINGLE_THREAD_P
)
199 THREAD_GSCOPE_SET_FLAG ();
200 flags
|= DL_LOOKUP_GSCOPE_LOCK
;
203 result
= _dl_lookup_symbol_x (strtab
+ refsym
->st_name
, l
,
204 &defsym
, l
->l_scope
, version
,
205 ELF_RTYPE_CLASS_PLT
, flags
, NULL
);
207 /* We are done with the global scope. */
208 if (!RTLD_SINGLE_THREAD_P
)
209 THREAD_GSCOPE_RESET_FLAG ();
211 /* Currently result contains the base load address (or link map)
212 of the object that defines sym. Now add in the symbol
214 value
= DL_FIXUP_MAKE_VALUE (result
,
216 ? LOOKUP_VALUE_ADDRESS (result
)
217 + defsym
->st_value
: 0);
221 /* We already found the symbol. The module (and therefore its load
222 address) is also known. */
223 value
= DL_FIXUP_MAKE_VALUE (l
, l
->l_addr
+ refsym
->st_value
);
226 /* And now perhaps the relocation addend. */
227 value
= elf_machine_plt_value (l
, reloc
, value
);
230 /* Auditing checkpoint: we have a new binding. Provide the
231 auditing libraries the possibility to change the value and
232 tell us whether further auditing is wanted. */
233 if (defsym
!= NULL
&& GLRO(dl_naudit
) > 0)
235 reloc_result
->bound
= result
;
236 /* Compute index of the symbol entry in the symbol table of
237 the DSO with the definition. */
238 reloc_result
->boundndx
= (defsym
239 - (ElfW(Sym
) *) D_PTR (result
,
242 /* Determine whether any of the two participating DSOs is
243 interested in auditing. */
244 if ((l
->l_audit_any_plt
| result
->l_audit_any_plt
) != 0)
246 unsigned int altvalue
= 0;
247 struct audit_ifaces
*afct
= GLRO(dl_audit
);
248 /* Synthesize a symbol record where the st_value field is
250 ElfW(Sym
) sym
= *defsym
;
251 sym
.st_value
= DL_FIXUP_VALUE_ADDR (value
);
253 /* Keep track whether there is any interest in tracing
254 the call in the lower two bits. */
255 assert (DL_NNS
* 2 <= sizeof (reloc_result
->flags
) * 8);
256 assert ((LA_SYMB_NOPLTENTER
| LA_SYMB_NOPLTEXIT
) == 3);
257 reloc_result
->enterexit
= LA_SYMB_NOPLTENTER
| LA_SYMB_NOPLTEXIT
;
259 const char *strtab2
= (const void *) D_PTR (result
,
262 for (unsigned int cnt
= 0; cnt
< GLRO(dl_naudit
); ++cnt
)
264 /* XXX Check whether both DSOs must request action or
266 if ((l
->l_audit
[cnt
].bindflags
& LA_FLG_BINDFROM
) != 0
267 && (result
->l_audit
[cnt
].bindflags
& LA_FLG_BINDTO
) != 0)
269 unsigned int flags
= altvalue
;
270 if (afct
->symbind
!= NULL
)
273 = afct
->symbind (&sym
, reloc_result
->boundndx
,
274 &l
->l_audit
[cnt
].cookie
,
275 &result
->l_audit
[cnt
].cookie
,
277 strtab2
+ defsym
->st_name
);
278 if (new_value
!= (uintptr_t) sym
.st_value
)
280 altvalue
= LA_SYMB_ALTVALUE
;
281 sym
.st_value
= new_value
;
285 /* Remember the results for every audit library and
286 store a summary in the first two bits. */
287 reloc_result
->enterexit
288 &= flags
& (LA_SYMB_NOPLTENTER
| LA_SYMB_NOPLTEXIT
);
289 reloc_result
->enterexit
290 |= ((flags
& (LA_SYMB_NOPLTENTER
| LA_SYMB_NOPLTEXIT
))
294 /* If the bind flags say this auditor is not interested,
295 set the bits manually. */
296 reloc_result
->enterexit
297 |= ((LA_SYMB_NOPLTENTER
| LA_SYMB_NOPLTEXIT
)
303 reloc_result
->flags
= altvalue
;
304 value
= DL_FIXUP_ADDR_VALUE (sym
.st_value
);
307 /* Set all bits since this symbol binding is not interesting. */
308 reloc_result
->enterexit
= (1u << DL_NNS
) - 1;
312 /* Store the result for later runs. */
313 if (__builtin_expect (! GLRO(dl_bind_not
), 1))
317 /* By default we do not call the pltexit function. */
318 long int framesize
= -1;
321 /* Auditing checkpoint: report the PLT entering and allow the
322 auditors to change the value. */
323 if (DL_FIXUP_VALUE_CODE_ADDR (value
) != 0 && GLRO(dl_naudit
) > 0
324 /* Don't do anything if no auditor wants to intercept this call. */
325 && (reloc_result
->enterexit
& LA_SYMB_NOPLTENTER
) == 0)
327 ElfW(Sym
) *defsym
= ((ElfW(Sym
) *) D_PTR (reloc_result
->bound
,
329 + reloc_result
->boundndx
);
331 /* Set up the sym parameter. */
332 ElfW(Sym
) sym
= *defsym
;
333 sym
.st_value
= DL_FIXUP_VALUE_ADDR (value
);
335 /* Get the symbol name. */
336 const char *strtab
= (const void *) D_PTR (reloc_result
->bound
,
338 const char *symname
= strtab
+ sym
.st_name
;
340 /* Keep track of overwritten addresses. */
341 unsigned int altvalue
= reloc_result
->flags
;
343 struct audit_ifaces
*afct
= GLRO(dl_audit
);
344 for (unsigned int cnt
= 0; cnt
< GLRO(dl_naudit
); ++cnt
)
346 if (afct
->ARCH_LA_PLTENTER
!= NULL
347 && (reloc_result
->enterexit
348 & (LA_SYMB_NOPLTENTER
<< (2 * (cnt
+ 1)))) == 0)
350 unsigned int flags
= altvalue
;
351 long int new_framesize
= -1;
353 = afct
->ARCH_LA_PLTENTER (&sym
, reloc_result
->boundndx
,
354 &l
->l_audit
[cnt
].cookie
,
355 &reloc_result
->bound
->l_audit
[cnt
].cookie
,
356 regs
, &flags
, symname
,
358 if (new_value
!= (uintptr_t) sym
.st_value
)
360 altvalue
= LA_SYMB_ALTVALUE
;
361 sym
.st_value
= new_value
;
364 /* Remember the results for every audit library and
365 store a summary in the first two bits. */
366 reloc_result
->enterexit
367 |= ((flags
& (LA_SYMB_NOPLTENTER
| LA_SYMB_NOPLTEXIT
))
370 if ((reloc_result
->enterexit
& (LA_SYMB_NOPLTEXIT
372 == 0 && new_framesize
!= -1 && framesize
!= -2)
374 /* If this is the first call providing information,
377 framesize
= new_framesize
;
378 /* If two pltenter calls provide conflicting information,
379 use the larger value. */
380 else if (new_framesize
!= framesize
)
381 framesize
= MAX (new_framesize
, framesize
);
388 value
= DL_FIXUP_ADDR_VALUE (sym
.st_value
);
392 /* Store the frame size information. */
393 *framesizep
= framesize
;
395 (*mcount_fct
) (retaddr
, DL_FIXUP_VALUE_CODE_ADDR (value
));
400 #endif /* PROF && ELF_MACHINE_NO_PLT */
406 _dl_call_pltexit (struct link_map
*l
, ElfW(Word
) reloc_offset
,
407 const void *inregs
, void *outregs
)
410 /* This is the address in the array where we store the result of previous
412 // XXX Maybe the bound information must be stored on the stack since
413 // XXX with bind_not a new value could have been stored in the meantime.
414 struct reloc_result
*reloc_result
415 = &l
->l_reloc_result
[reloc_offset
/ sizeof (PLTREL
)];
416 ElfW(Sym
) *defsym
= ((ElfW(Sym
) *) D_PTR (reloc_result
->bound
,
418 + reloc_result
->boundndx
);
420 /* Set up the sym parameter. */
421 ElfW(Sym
) sym
= *defsym
;
423 /* Get the symbol name. */
424 const char *strtab
= (const void *) D_PTR (reloc_result
->bound
,
426 const char *symname
= strtab
+ sym
.st_name
;
428 struct audit_ifaces
*afct
= GLRO(dl_audit
);
429 for (unsigned int cnt
= 0; cnt
< GLRO(dl_naudit
); ++cnt
)
431 if (afct
->ARCH_LA_PLTEXIT
!= NULL
432 && (reloc_result
->enterexit
433 & (LA_SYMB_NOPLTEXIT
>> (2 * cnt
))) == 0)
435 afct
->ARCH_LA_PLTEXIT (&sym
, reloc_result
->boundndx
,
436 &l
->l_audit
[cnt
].cookie
,
437 &reloc_result
->bound
->l_audit
[cnt
].cookie
,
438 inregs
, outregs
, symname
);