1 /* Manage function descriptors. Generic version.
2 Copyright (C) 1999-2015 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>
32 #ifndef ELF_MACHINE_BOOT_FPTR_TABLE_LEN
33 /* ELF_MACHINE_BOOT_FPTR_TABLE_LEN should be greater than the number of
34 dynamic symbols in ld.so. */
35 # define ELF_MACHINE_BOOT_FPTR_TABLE_LEN 256
38 #ifndef ELF_MACHINE_LOAD_ADDRESS
39 # error "ELF_MACHINE_LOAD_ADDRESS is not defined."
42 #ifndef COMPARE_AND_SWAP
43 # define COMPARE_AND_SWAP(ptr, old, new) \
44 (catomic_compare_and_exchange_bool_acq (ptr, new, old) == 0)
47 ElfW(Addr
) _dl_boot_fptr_table
[ELF_MACHINE_BOOT_FPTR_TABLE_LEN
];
51 struct fdesc_table
*root
;
52 struct fdesc
*free_list
;
53 unsigned int npages
; /* # of pages to allocate */
54 /* the next to members MUST be consecutive! */
55 struct fdesc_table boot_table
;
56 struct fdesc boot_fdescs
[1024];
61 /* Address of .boot_table is not known until runtime. */
64 .root
= &local
.boot_table
,
69 .len
= sizeof (local
.boot_fdescs
) / sizeof (local
.boot_fdescs
[0]),
74 /* Create a new fdesc table and return a pointer to the first fdesc
75 entry. The fdesc lock must have been acquired already. */
77 static struct fdesc_table
*
78 new_fdesc_table (struct local
*l
, size_t *size
)
80 size_t old_npages
= l
->npages
;
81 size_t new_npages
= old_npages
+ old_npages
;
82 struct fdesc_table
*new_table
;
84 /* If someone has just created a new table, we return NULL to tell
85 the caller to use the new table. */
86 if (! COMPARE_AND_SWAP (&l
->npages
, old_npages
, new_npages
))
87 return (struct fdesc_table
*) NULL
;
89 *size
= old_npages
* GLRO(dl_pagesize
);
90 new_table
= __mmap (NULL
, *size
,
91 PROT_READ
| PROT_WRITE
, MAP_ANON
| MAP_PRIVATE
, -1, 0);
92 if (new_table
== MAP_FAILED
)
93 _dl_signal_error (errno
, NULL
, NULL
,
94 N_("cannot map pages for fdesc table"));
97 = (*size
- sizeof (*new_table
)) / sizeof (struct fdesc
);
98 new_table
->first_unused
= 1;
102 /* Must call _dl_fptr_init before using any other function. */
108 ELF_MACHINE_LOAD_ADDRESS (l
, local
);
109 l
->root
= &l
->boot_table
;
113 make_fdesc (ElfW(Addr
) ip
, ElfW(Addr
) gp
)
115 struct fdesc
*fdesc
= NULL
;
116 struct fdesc_table
*root
;
120 ELF_MACHINE_LOAD_ADDRESS (l
, local
);
126 old
= root
->first_unused
;
127 if (old
>= root
->len
)
129 else if (COMPARE_AND_SWAP (&root
->first_unused
, old
, old
+ 1))
131 fdesc
= &root
->fdesc
[old
];
138 /* Get it from free-list. */
141 fdesc
= l
->free_list
;
145 while (! COMPARE_AND_SWAP ((ElfW(Addr
) *) &l
->free_list
,
146 (ElfW(Addr
)) fdesc
, fdesc
->ip
));
150 /* Create a new fdesc table. */
152 struct fdesc_table
*new_table
= new_fdesc_table (l
, &size
);
154 if (new_table
== NULL
)
157 new_table
->next
= root
;
158 if (! COMPARE_AND_SWAP ((ElfW(Addr
) *) &l
->root
,
160 (ElfW(Addr
)) new_table
))
162 /* Someone has just installed a new table. Return NULL to
163 tell the caller to use the new table. */
164 __munmap (new_table
, size
);
168 /* Note that the first entry was reserved while allocating the
169 memory for the new page. */
170 fdesc
= &new_table
->fdesc
[0];
177 return (ElfW(Addr
)) fdesc
;
181 static inline ElfW(Addr
) * __attribute__ ((always_inline
))
182 make_fptr_table (struct link_map
*map
)
184 const ElfW(Sym
) *symtab
185 = (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
;
191 /* XXX Apparently the only way to find out the size of the dynamic
192 symbol section is to assume that the string table follows right
194 len
= ((strtab
- (char *) symtab
)
195 / map
->l_info
[DT_SYMENT
]->d_un
.d_val
);
196 size
= ((len
* sizeof (fptr_table
[0]) + GLRO(dl_pagesize
) - 1)
197 & -GLRO(dl_pagesize
));
198 /* XXX We don't support here in the moment systems without MAP_ANON.
199 There probably are none for IA-64. In case this is proven wrong
200 we will have to open /dev/null here and use the file descriptor
201 instead of the hard-coded -1. */
202 fptr_table
= __mmap (NULL
, size
,
203 PROT_READ
| PROT_WRITE
, MAP_ANON
| MAP_PRIVATE
,
205 if (fptr_table
== MAP_FAILED
)
206 _dl_signal_error (errno
, NULL
, NULL
,
207 N_("cannot map pages for fptr table"));
209 if (COMPARE_AND_SWAP ((ElfW(Addr
) *) &map
->l_mach
.fptr_table
,
210 (ElfW(Addr
)) NULL
, (ElfW(Addr
)) fptr_table
))
211 map
->l_mach
.fptr_table_len
= len
;
213 __munmap (fptr_table
, len
* sizeof (fptr_table
[0]));
215 return map
->l_mach
.fptr_table
;
220 _dl_make_fptr (struct link_map
*map
, const ElfW(Sym
) *sym
,
223 ElfW(Addr
) *ftab
= map
->l_mach
.fptr_table
;
224 const ElfW(Sym
) *symtab
;
228 if (__builtin_expect (ftab
== NULL
, 0))
229 ftab
= make_fptr_table (map
);
231 symtab
= (const void *) D_PTR (map
, l_info
[DT_SYMTAB
]);
232 symidx
= sym
- symtab
;
234 if (symidx
>= map
->l_mach
.fptr_table_len
)
235 _dl_signal_error (0, NULL
, NULL
,
236 N_("internal error: symidx out of range of fptr table"));
238 while (ftab
[symidx
] == 0)
240 /* GOT has already been relocated in elf_get_dynamic_info -
241 don't try to relocate it again. */
243 = make_fdesc (ip
, map
->l_info
[DT_PLTGOT
]->d_un
.d_ptr
);
245 if (__builtin_expect (COMPARE_AND_SWAP (&ftab
[symidx
], (ElfW(Addr
)) NULL
,
248 /* Noone has updated the entry and the new function
249 descriptor has been installed. */
252 = (const void *) D_PTR (map
, l_info
[DT_STRTAB
]);
254 ELF_MACHINE_LOAD_ADDRESS (l
, local
);
255 if (l
->root
!= &l
->boot_table
256 || l
->boot_table
.first_unused
> 20)
257 _dl_debug_printf ("created fdesc symbol `%s' at %lx\n",
258 strtab
+ sym
->st_name
, ftab
[symidx
]);
264 /* We created a duplicated function descriptor. We put it on
266 struct fdesc
*f
= (struct fdesc
*) fdesc
;
268 ELF_MACHINE_LOAD_ADDRESS (l
, local
);
271 f
->ip
= (ElfW(Addr
)) l
->free_list
;
272 while (! COMPARE_AND_SWAP ((ElfW(Addr
) *) &l
->free_list
,
282 _dl_unmap (struct link_map
*map
)
284 ElfW(Addr
) *ftab
= map
->l_mach
.fptr_table
;
285 struct fdesc
*head
= NULL
, *tail
= NULL
;
288 _dl_unmap_segments (map
);
293 /* String together the fdesc structures that are being freed. */
294 for (i
= 0; i
< map
->l_mach
.fptr_table_len
; ++i
)
298 *(struct fdesc
**) ftab
[i
] = head
;
299 head
= (struct fdesc
*) ftab
[i
];
305 /* Prepend the new list to the free_list: */
308 tail
->ip
= (ElfW(Addr
)) local
.free_list
;
309 while (! COMPARE_AND_SWAP ((ElfW(Addr
) *) &local
.free_list
,
310 tail
->ip
, (ElfW(Addr
)) head
));
312 __munmap (ftab
, (map
->l_mach
.fptr_table_len
313 * sizeof (map
->l_mach
.fptr_table
[0])));
315 map
->l_mach
.fptr_table
= NULL
;
320 _dl_lookup_address (const void *address
)
322 ElfW(Addr
) addr
= (ElfW(Addr
)) address
;
323 struct fdesc_table
*t
;
326 for (t
= local
.root
; t
!= NULL
; t
= t
->next
)
328 i
= (struct fdesc
*) addr
- &t
->fdesc
[0];
329 if (i
< t
->first_unused
&& addr
== (ElfW(Addr
)) &t
->fdesc
[i
])
331 addr
= t
->fdesc
[i
].ip
;