1 /* On-demand PLT fixup for shared objects.
2 Copyright (C) 1995-2009, 2010, 2011 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 # define reloc_offset reloc_arg
51 # define reloc_index reloc_arg / sizeof (PLTREL)
56 /* This function is called through a special trampoline from the PLT the
57 first time each PLT entry is called. We must perform the relocation
58 specified in the PLT of the given shared object, and return the resolved
59 function address to the trampoline, which will restart the original call
60 to that address. Future calls will bounce directly from the PLT to the
63 #ifndef ELF_MACHINE_NO_PLT
65 __attribute ((noinline)) ARCH_FIXUP_ATTRIBUTE
67 # ifdef ELF_MACHINE_RUNTIME_FIXUP_ARGS
68 ELF_MACHINE_RUNTIME_FIXUP_ARGS,
70 /* GKM FIXME: Fix trampoline to pass bounds so we can do
71 without the `__unbounded' qualifier. */
72 struct link_map *__unbounded l, ElfW(Word) reloc_arg)
74 const ElfW(Sym) *const symtab
75 = (const void *) D_PTR (l, l_info[DT_SYMTAB]);
76 const char *strtab = (const void *) D_PTR (l, l_info[DT_STRTAB]);
78 const PLTREL *const reloc
79 = (const void *) (D_PTR (l, l_info[DT_JMPREL]) + reloc_offset);
80 const ElfW(Sym) *sym = &symtab[ELFW(R_SYM) (reloc->r_info)];
81 void *const rel_addr = (void *)(l->l_addr + reloc->r_offset);
83 DL_FIXUP_VALUE_TYPE value;
85 /* Sanity check that we're really looking at a PLT relocation. */
86 assert (ELFW(R_TYPE)(reloc->r_info) == ELF_MACHINE_JMP_SLOT);
88 /* Look up the target symbol. If the normal lookup rules are not
89 used don't look in the global scope. */
90 if (__builtin_expect (ELFW(ST_VISIBILITY) (sym->st_other), 0) == 0)
92 const struct r_found_version *version = NULL;
94 if (l->l_info[VERSYMIDX (DT_VERSYM)] != NULL)
96 const ElfW(Half) *vernum =
97 (const void *) D_PTR (l, l_info[VERSYMIDX (DT_VERSYM)]);
98 ElfW(Half) ndx = vernum[ELFW(R_SYM) (reloc->r_info)] & 0x7fff;
99 version = &l->l_versions[ndx];
100 if (version->hash == 0)
104 /* We need to keep the scope around so do some locking. This is
105 not necessary for objects which cannot be unloaded or when
106 we are not using any threads (yet). */
107 int flags = DL_LOOKUP_ADD_DEPENDENCY;
108 if (!RTLD_SINGLE_THREAD_P)
110 THREAD_GSCOPE_SET_FLAG ();
111 flags |= DL_LOOKUP_GSCOPE_LOCK;
114 #ifdef RTLD_ENABLE_FOREIGN_CALL
115 RTLD_ENABLE_FOREIGN_CALL;
118 result = _dl_lookup_symbol_x (strtab + sym->st_name, l, &sym, l->l_scope,
119 version, ELF_RTYPE_CLASS_PLT, flags, NULL);
121 /* We are done with the global scope. */
122 if (!RTLD_SINGLE_THREAD_P)
123 THREAD_GSCOPE_RESET_FLAG ();
125 #ifdef RTLD_FINALIZE_FOREIGN_CALL
126 RTLD_FINALIZE_FOREIGN_CALL;
129 /* Currently result contains the base load address (or link map)
130 of the object that defines sym. Now add in the symbol
132 value = DL_FIXUP_MAKE_VALUE (result,
133 sym ? (LOOKUP_VALUE_ADDRESS (result)
134 + sym->st_value) : 0);
138 /* We already found the symbol. The module (and therefore its load
139 address) is also known. */
140 value = DL_FIXUP_MAKE_VALUE (l, l->l_addr + sym->st_value);
144 /* And now perhaps the relocation addend. */
145 value = elf_machine_plt_value (l, reloc, value);
148 && __builtin_expect (ELFW(ST_TYPE) (sym->st_info) == STT_GNU_IFUNC, 0))
149 value = ((DL_FIXUP_VALUE_TYPE (*) (void)) DL_FIXUP_VALUE_ADDR (value)) ();
151 /* Finally, fix up the plt itself. */
152 if (__builtin_expect (GLRO(dl_bind_not), 0))
155 return elf_machine_fixup_plt (l, result, reloc, rel_addr, value);
159 #if !defined PROF && !defined ELF_MACHINE_NO_PLT && !__BOUNDED_POINTERS__
161 __attribute ((noinline)) ARCH_FIXUP_ATTRIBUTE
163 #ifdef ELF_MACHINE_RUNTIME_FIXUP_ARGS
164 ELF_MACHINE_RUNTIME_FIXUP_ARGS,
166 struct link_map *l, ElfW(Word) reloc_arg,
167 ElfW(Addr) retaddr, void *regs, long int *framesizep)
169 void (*mcount_fct) (ElfW(Addr), ElfW(Addr)) = INTUSE(_dl_mcount);
171 /* This is the address in the array where we store the result of previous
173 struct reloc_result *reloc_result = &l->l_reloc_result[reloc_index];
174 DL_FIXUP_VALUE_TYPE *resultp = &reloc_result->addr;
176 DL_FIXUP_VALUE_TYPE value = *resultp;
177 if (DL_FIXUP_VALUE_CODE_ADDR (value) == 0)
179 /* This is the first time we have to relocate this object. */
180 const ElfW(Sym) *const symtab
181 = (const void *) D_PTR (l, l_info[DT_SYMTAB]);
182 const char *strtab = (const char *) D_PTR (l, l_info[DT_STRTAB]);
184 const PLTREL *const reloc
185 = (const void *) (D_PTR (l, l_info[DT_JMPREL]) + reloc_offset);
186 const ElfW(Sym) *refsym = &symtab[ELFW(R_SYM) (reloc->r_info)];
187 const ElfW(Sym) *defsym = refsym;
190 /* Sanity check that we're really looking at a PLT relocation. */
191 assert (ELFW(R_TYPE)(reloc->r_info) == ELF_MACHINE_JMP_SLOT);
193 /* Look up the target symbol. If the symbol is marked STV_PROTECTED
194 don't look in the global scope. */
195 if (__builtin_expect (ELFW(ST_VISIBILITY) (refsym->st_other), 0) == 0)
197 const struct r_found_version *version = NULL;
199 if (l->l_info[VERSYMIDX (DT_VERSYM)] != NULL)
201 const ElfW(Half) *vernum =
202 (const void *) D_PTR (l, l_info[VERSYMIDX (DT_VERSYM)]);
203 ElfW(Half) ndx = vernum[ELFW(R_SYM) (reloc->r_info)] & 0x7fff;
204 version = &l->l_versions[ndx];
205 if (version->hash == 0)
209 /* We need to keep the scope around so do some locking. This is
210 not necessary for objects which cannot be unloaded or when
211 we are not using any threads (yet). */
212 int flags = DL_LOOKUP_ADD_DEPENDENCY;
213 if (!RTLD_SINGLE_THREAD_P)
215 THREAD_GSCOPE_SET_FLAG ();
216 flags |= DL_LOOKUP_GSCOPE_LOCK;
219 result = _dl_lookup_symbol_x (strtab + refsym->st_name, l,
220 &defsym, l->l_scope, version,
221 ELF_RTYPE_CLASS_PLT, flags, NULL);
223 /* We are done with the global scope. */
224 if (!RTLD_SINGLE_THREAD_P)
225 THREAD_GSCOPE_RESET_FLAG ();
227 /* Currently result contains the base load address (or link map)
228 of the object that defines sym. Now add in the symbol
230 value = DL_FIXUP_MAKE_VALUE (result,
232 ? LOOKUP_VALUE_ADDRESS (result)
233 + defsym->st_value : 0);
236 && __builtin_expect (ELFW(ST_TYPE) (defsym->st_info)
237 == STT_GNU_IFUNC, 0))
238 value = ((DL_FIXUP_VALUE_TYPE (*) (void))
239 DL_FIXUP_VALUE_ADDR (value)) ();
243 /* We already found the symbol. The module (and therefore its load
244 address) is also known. */
245 value = DL_FIXUP_MAKE_VALUE (l, l->l_addr + refsym->st_value);
247 if (__builtin_expect (ELFW(ST_TYPE) (refsym->st_info)
248 == STT_GNU_IFUNC, 0))
249 value = ((DL_FIXUP_VALUE_TYPE (*) (void))
250 DL_FIXUP_VALUE_ADDR (value)) ();
254 /* And now perhaps the relocation addend. */
255 value = elf_machine_plt_value (l, reloc, value);
258 /* Auditing checkpoint: we have a new binding. Provide the
259 auditing libraries the possibility to change the value and
260 tell us whether further auditing is wanted. */
261 if (defsym != NULL && GLRO(dl_naudit) > 0)
263 reloc_result->bound = result;
264 /* Compute index of the symbol entry in the symbol table of
265 the DSO with the definition. */
266 reloc_result->boundndx = (defsym
267 - (ElfW(Sym) *) D_PTR (result,
270 /* Determine whether any of the two participating DSOs is
271 interested in auditing. */
272 if ((l->l_audit_any_plt | result->l_audit_any_plt) != 0)
274 unsigned int flags = 0;
275 struct audit_ifaces *afct = GLRO(dl_audit);
276 /* Synthesize a symbol record where the st_value field is
278 ElfW(Sym) sym = *defsym;
279 sym.st_value = DL_FIXUP_VALUE_ADDR (value);
281 /* Keep track whether there is any interest in tracing
282 the call in the lower two bits. */
283 assert (DL_NNS * 2 <= sizeof (reloc_result->flags) * 8);
284 assert ((LA_SYMB_NOPLTENTER | LA_SYMB_NOPLTEXIT) == 3);
285 reloc_result->enterexit = LA_SYMB_NOPLTENTER | LA_SYMB_NOPLTEXIT;
287 const char *strtab2 = (const void *) D_PTR (result,
290 for (unsigned int cnt = 0; cnt < GLRO(dl_naudit); ++cnt)
292 /* XXX Check whether both DSOs must request action or
294 if ((l->l_audit[cnt].bindflags & LA_FLG_BINDFROM) != 0
295 && (result->l_audit[cnt].bindflags & LA_FLG_BINDTO) != 0)
297 if (afct->symbind != NULL)
300 = afct->symbind (&sym, reloc_result->boundndx,
301 &l->l_audit[cnt].cookie,
302 &result->l_audit[cnt].cookie,
304 strtab2 + defsym->st_name);
305 if (new_value != (uintptr_t) sym.st_value)
307 flags |= LA_SYMB_ALTVALUE;
308 sym.st_value = new_value;
312 /* Remember the results for every audit library and
313 store a summary in the first two bits. */
314 reloc_result->enterexit
315 &= flags & (LA_SYMB_NOPLTENTER | LA_SYMB_NOPLTEXIT);
316 reloc_result->enterexit
317 |= ((flags & (LA_SYMB_NOPLTENTER | LA_SYMB_NOPLTEXIT))
321 /* If the bind flags say this auditor is not interested,
322 set the bits manually. */
323 reloc_result->enterexit
324 |= ((LA_SYMB_NOPLTENTER | LA_SYMB_NOPLTEXIT)
330 reloc_result->flags = flags;
331 value = DL_FIXUP_ADDR_VALUE (sym.st_value);
334 /* Set all bits since this symbol binding is not interesting. */
335 reloc_result->enterexit = (1u << DL_NNS) - 1;
339 /* Store the result for later runs. */
340 if (__builtin_expect (! GLRO(dl_bind_not), 1))
344 /* By default we do not call the pltexit function. */
345 long int framesize = -1;
348 /* Auditing checkpoint: report the PLT entering and allow the
349 auditors to change the value. */
350 if (DL_FIXUP_VALUE_CODE_ADDR (value) != 0 && GLRO(dl_naudit) > 0
351 /* Don't do anything if no auditor wants to intercept this call. */
352 && (reloc_result->enterexit & LA_SYMB_NOPLTENTER) == 0)
354 ElfW(Sym) *defsym = ((ElfW(Sym) *) D_PTR (reloc_result->bound,
356 + reloc_result->boundndx);
358 /* Set up the sym parameter. */
359 ElfW(Sym) sym = *defsym;
360 sym.st_value = DL_FIXUP_VALUE_ADDR (value);
362 /* Get the symbol name. */
363 const char *strtab = (const void *) D_PTR (reloc_result->bound,
365 const char *symname = strtab + sym.st_name;
367 /* Keep track of overwritten addresses. */
368 unsigned int flags = reloc_result->flags;
370 struct audit_ifaces *afct = GLRO(dl_audit);
371 for (unsigned int cnt = 0; cnt < GLRO(dl_naudit); ++cnt)
373 if (afct->ARCH_LA_PLTENTER != NULL
374 && (reloc_result->enterexit
375 & (LA_SYMB_NOPLTENTER << (2 * (cnt + 1)))) == 0)
377 long int new_framesize = -1;
379 = afct->ARCH_LA_PLTENTER (&sym, reloc_result->boundndx,
380 &l->l_audit[cnt].cookie,
381 &reloc_result->bound->l_audit[cnt].cookie,
382 regs, &flags, symname,
384 if (new_value != (uintptr_t) sym.st_value)
386 flags |= LA_SYMB_ALTVALUE;
387 sym.st_value = new_value;
390 /* Remember the results for every audit library and
391 store a summary in the first two bits. */
392 reloc_result->enterexit
393 |= ((flags & (LA_SYMB_NOPLTENTER | LA_SYMB_NOPLTEXIT))
396 if ((reloc_result->enterexit & (LA_SYMB_NOPLTEXIT
398 == 0 && new_framesize != -1 && framesize != -2)
400 /* If this is the first call providing information,
403 framesize = new_framesize;
404 /* If two pltenter calls provide conflicting information,
405 use the larger value. */
406 else if (new_framesize != framesize)
407 framesize = MAX (new_framesize, framesize);
414 value = DL_FIXUP_ADDR_VALUE (sym.st_value);
418 /* Store the frame size information. */
419 *framesizep = framesize;
421 (*mcount_fct) (retaddr, DL_FIXUP_VALUE_CODE_ADDR (value));
426 #endif /* PROF && ELF_MACHINE_NO_PLT */
432 _dl_call_pltexit (struct link_map *l, ElfW(Word) reloc_arg,
433 const void *inregs, void *outregs)
436 /* This is the address in the array where we store the result of previous
438 // XXX Maybe the bound information must be stored on the stack since
439 // XXX with bind_not a new value could have been stored in the meantime.
440 struct reloc_result *reloc_result = &l->l_reloc_result[reloc_index];
441 ElfW(Sym) *defsym = ((ElfW(Sym) *) D_PTR (reloc_result->bound,
443 + reloc_result->boundndx);
445 /* Set up the sym parameter. */
446 ElfW(Sym) sym = *defsym;
447 sym.st_value = DL_FIXUP_VALUE_ADDR (reloc_result->addr);
449 /* Get the symbol name. */
450 const char *strtab = (const void *) D_PTR (reloc_result->bound,
452 const char *symname = strtab + sym.st_name;
454 struct audit_ifaces *afct = GLRO(dl_audit);
455 for (unsigned int cnt = 0; cnt < GLRO(dl_naudit); ++cnt)
457 if (afct->ARCH_LA_PLTEXIT != NULL
458 && (reloc_result->enterexit
459 & (LA_SYMB_NOPLTEXIT >> (2 * cnt))) == 0)
461 afct->ARCH_LA_PLTEXIT (&sym, reloc_result->boundndx,
462 &l->l_audit[cnt].cookie,
463 &reloc_result->bound->l_audit[cnt].cookie,
464 inregs, outregs, symname);