1 /* Manage function descriptors. Generic version.
2 Copyright (C) 1999-2017 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
23 #include <sys/param.h>
27 #include <elf/dynamic-link.h>
29 #include <dl-unmap-segments.h>
31 #include <libc-pointer-arith.h>
33 #ifndef ELF_MACHINE_BOOT_FPTR_TABLE_LEN
34 /* ELF_MACHINE_BOOT_FPTR_TABLE_LEN should be greater than the number of
35 dynamic symbols in ld.so. */
36 # define ELF_MACHINE_BOOT_FPTR_TABLE_LEN 256
39 #ifndef ELF_MACHINE_LOAD_ADDRESS
40 # error "ELF_MACHINE_LOAD_ADDRESS is not defined."
43 #ifndef COMPARE_AND_SWAP
44 # define COMPARE_AND_SWAP(ptr, old, new) \
45 (catomic_compare_and_exchange_bool_acq (ptr, new, old) == 0)
48 ElfW(Addr
) _dl_boot_fptr_table
[ELF_MACHINE_BOOT_FPTR_TABLE_LEN
];
52 struct fdesc_table
*root
;
53 struct fdesc
*free_list
;
54 unsigned int npages
; /* # of pages to allocate */
55 /* the next to members MUST be consecutive! */
56 struct fdesc_table boot_table
;
57 struct fdesc boot_fdescs
[1024];
62 /* Address of .boot_table is not known until runtime. */
65 .root
= &local
.boot_table
,
70 .len
= sizeof (local
.boot_fdescs
) / sizeof (local
.boot_fdescs
[0]),
75 /* Create a new fdesc table and return a pointer to the first fdesc
76 entry. The fdesc lock must have been acquired already. */
78 static struct fdesc_table
*
79 new_fdesc_table (struct local
*l
, size_t *size
)
81 size_t old_npages
= l
->npages
;
82 size_t new_npages
= old_npages
+ old_npages
;
83 struct fdesc_table
*new_table
;
85 /* If someone has just created a new table, we return NULL to tell
86 the caller to use the new table. */
87 if (! COMPARE_AND_SWAP (&l
->npages
, old_npages
, new_npages
))
88 return (struct fdesc_table
*) NULL
;
90 *size
= old_npages
* GLRO(dl_pagesize
);
91 new_table
= __mmap (NULL
, *size
,
92 PROT_READ
| PROT_WRITE
, MAP_ANON
| MAP_PRIVATE
, -1, 0);
93 if (new_table
== MAP_FAILED
)
94 _dl_signal_error (errno
, NULL
, NULL
,
95 N_("cannot map pages for fdesc table"));
98 = (*size
- sizeof (*new_table
)) / sizeof (struct fdesc
);
99 new_table
->first_unused
= 1;
103 /* Must call _dl_fptr_init before using any other function. */
109 ELF_MACHINE_LOAD_ADDRESS (l
, local
);
110 l
->root
= &l
->boot_table
;
114 make_fdesc (ElfW(Addr
) ip
, ElfW(Addr
) gp
)
116 struct fdesc
*fdesc
= NULL
;
117 struct fdesc_table
*root
;
121 ELF_MACHINE_LOAD_ADDRESS (l
, local
);
127 old
= root
->first_unused
;
128 if (old
>= root
->len
)
130 else if (COMPARE_AND_SWAP (&root
->first_unused
, old
, old
+ 1))
132 fdesc
= &root
->fdesc
[old
];
139 /* Get it from free-list. */
142 fdesc
= l
->free_list
;
146 while (! COMPARE_AND_SWAP ((ElfW(Addr
) *) &l
->free_list
,
147 (ElfW(Addr
)) fdesc
, fdesc
->ip
));
151 /* Create a new fdesc table. */
153 struct fdesc_table
*new_table
= new_fdesc_table (l
, &size
);
155 if (new_table
== NULL
)
158 new_table
->next
= root
;
159 if (! COMPARE_AND_SWAP ((ElfW(Addr
) *) &l
->root
,
161 (ElfW(Addr
)) new_table
))
163 /* Someone has just installed a new table. Return NULL to
164 tell the caller to use the new table. */
165 __munmap (new_table
, size
);
169 /* Note that the first entry was reserved while allocating the
170 memory for the new page. */
171 fdesc
= &new_table
->fdesc
[0];
178 return (ElfW(Addr
)) fdesc
;
182 static inline ElfW(Addr
) * __attribute__ ((always_inline
))
183 make_fptr_table (struct link_map
*map
)
185 const ElfW(Sym
) *symtab
= (const void *) D_PTR (map
, l_info
[DT_SYMTAB
]);
186 const char *strtab
= (const void *) D_PTR (map
, l_info
[DT_STRTAB
]);
187 ElfW(Addr
) *fptr_table
;
190 const ElfW(Sym
) *symtabend
;
192 /* Determine the end of the dynamic symbol table using the hash. */
193 if (map
->l_info
[DT_HASH
] != NULL
)
194 symtabend
= (symtab
+ ((Elf_Symndx
*) D_PTR (map
, l_info
[DT_HASH
]))[1]);
196 /* There is no direct way to determine the number of symbols in the
197 dynamic symbol table and no hash table is present. The ELF
198 binary is ill-formed but what shall we do? Use the beginning of
199 the string table which generally follows the symbol table. */
200 symtabend
= (const ElfW(Sym
) *) strtab
;
202 len
= (((char *) symtabend
- (char *) symtab
)
203 / map
->l_info
[DT_SYMENT
]->d_un
.d_val
);
204 size
= ALIGN_UP (len
* sizeof (fptr_table
[0]), GLRO(dl_pagesize
));
206 /* We don't support systems without MAP_ANON. We avoid using malloc
207 because this might get called before malloc is setup. */
208 fptr_table
= __mmap (NULL
, size
,
209 PROT_READ
| PROT_WRITE
, MAP_ANON
| MAP_PRIVATE
,
211 if (fptr_table
== MAP_FAILED
)
212 _dl_signal_error (errno
, NULL
, NULL
,
213 N_("cannot map pages for fptr table"));
215 if (COMPARE_AND_SWAP ((ElfW(Addr
) *) &map
->l_mach
.fptr_table
,
216 (ElfW(Addr
)) NULL
, (ElfW(Addr
)) fptr_table
))
217 map
->l_mach
.fptr_table_len
= len
;
219 __munmap (fptr_table
, len
* sizeof (fptr_table
[0]));
221 return map
->l_mach
.fptr_table
;
226 _dl_make_fptr (struct link_map
*map
, const ElfW(Sym
) *sym
,
229 ElfW(Addr
) *ftab
= map
->l_mach
.fptr_table
;
230 const ElfW(Sym
) *symtab
;
234 if (__builtin_expect (ftab
== NULL
, 0))
235 ftab
= make_fptr_table (map
);
237 symtab
= (const void *) D_PTR (map
, l_info
[DT_SYMTAB
]);
238 symidx
= sym
- symtab
;
240 if (symidx
>= map
->l_mach
.fptr_table_len
)
241 _dl_signal_error (0, NULL
, NULL
,
242 N_("internal error: symidx out of range of fptr table"));
244 while (ftab
[symidx
] == 0)
246 /* GOT has already been relocated in elf_get_dynamic_info -
247 don't try to relocate it again. */
249 = make_fdesc (ip
, map
->l_info
[DT_PLTGOT
]->d_un
.d_ptr
);
251 if (__builtin_expect (COMPARE_AND_SWAP (&ftab
[symidx
], (ElfW(Addr
)) NULL
,
254 /* Noone has updated the entry and the new function
255 descriptor has been installed. */
258 = (const void *) D_PTR (map
, l_info
[DT_STRTAB
]);
260 ELF_MACHINE_LOAD_ADDRESS (l
, local
);
261 if (l
->root
!= &l
->boot_table
262 || l
->boot_table
.first_unused
> 20)
263 _dl_debug_printf ("created fdesc symbol `%s' at %lx\n",
264 strtab
+ sym
->st_name
, ftab
[symidx
]);
270 /* We created a duplicated function descriptor. We put it on
272 struct fdesc
*f
= (struct fdesc
*) fdesc
;
274 ELF_MACHINE_LOAD_ADDRESS (l
, local
);
277 f
->ip
= (ElfW(Addr
)) l
->free_list
;
278 while (! COMPARE_AND_SWAP ((ElfW(Addr
) *) &l
->free_list
,
288 _dl_unmap (struct link_map
*map
)
290 ElfW(Addr
) *ftab
= map
->l_mach
.fptr_table
;
291 struct fdesc
*head
= NULL
, *tail
= NULL
;
294 _dl_unmap_segments (map
);
299 /* String together the fdesc structures that are being freed. */
300 for (i
= 0; i
< map
->l_mach
.fptr_table_len
; ++i
)
304 *(struct fdesc
**) ftab
[i
] = head
;
305 head
= (struct fdesc
*) ftab
[i
];
311 /* Prepend the new list to the free_list: */
314 tail
->ip
= (ElfW(Addr
)) local
.free_list
;
315 while (! COMPARE_AND_SWAP ((ElfW(Addr
) *) &local
.free_list
,
316 tail
->ip
, (ElfW(Addr
)) head
));
318 __munmap (ftab
, (map
->l_mach
.fptr_table_len
319 * sizeof (map
->l_mach
.fptr_table
[0])));
321 map
->l_mach
.fptr_table
= NULL
;
324 extern ElfW(Addr
) _dl_fixup (struct link_map
*, ElfW(Word
)) attribute_hidden
;
326 static inline Elf32_Addr
327 elf_machine_resolve (void)
333 "1: addil L'_dl_runtime_resolve - ($PIC_pcrel$0 - 8),%0\n"
334 " ldo R'_dl_runtime_resolve - ($PIC_pcrel$0 - 12)(%%r1),%0\n"
335 : "=r" (addr
) : : "r1");
341 _dl_read_access_allowed (unsigned int *addr
)
345 asm ("proberi (%1),3,%0" : "=r" (result
) : "r" (addr
) : );
351 _dl_lookup_address (const void *address
)
353 ElfW(Addr
) addr
= (ElfW(Addr
)) address
;
354 unsigned int *desc
, *gptr
;
356 /* Return ADDR if the least-significant two bits of ADDR are not consistent
357 with ADDR being a linker defined function pointer. The normal value for
358 a code address in a backtrace is 3. */
359 if (((unsigned int) addr
& 3) != 2)
362 /* Handle special case where ADDR points to page 0. */
363 if ((unsigned int) addr
< 4096)
366 /* Clear least-significant two bits from descriptor address. */
367 desc
= (unsigned int *) ((unsigned int) addr
& ~3);
368 if (!_dl_read_access_allowed (desc
))
371 /* Load first word of candidate descriptor. It should be a pointer
372 with word alignment and point to memory that can be read. */
373 gptr
= (unsigned int *) desc
[0];
374 if (((unsigned int) gptr
& 3) != 0
375 || !_dl_read_access_allowed (gptr
))
378 /* See if descriptor requires resolution. The following trampoline is
379 used in each global offset table for function resolution:
386 .word _dl_runtime_resolve
387 .word "_dl_runtime_resolve ltp"
389 .word "struct link map address" */
390 if (gptr
[0] == 0xea9f1fdd /* b,l .-12,r20 */
391 && gptr
[1] == 0xd6801c1e /* depwi 0,31,2,r20 */
392 && (ElfW(Addr
)) gptr
[2] == elf_machine_resolve ())
393 _dl_fixup ((struct link_map
*) gptr
[5], (ElfW(Word
)) desc
[1]);
395 return (ElfW(Addr
)) desc
[0];