1 /* Make dynamic PLABELs for function pointers. HPPA version.
2 Copyright (C) 1999, 2000 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
22 #include <sys/param.h>
27 #include <elf/dynamic-link.h>
28 #include <dl-machine.h>
29 #ifdef _LIBC_REENTRANT
30 # include <pt-machine.h>
32 /* Remember, we use 0 to mean that a lock is taken on PA-RISC. */
33 static int __hppa_fptr_lock
= 1;
36 /* Because ld.so is now versioned, these functions can be in their own
37 file; no relocations need to be done to call them. Of course, if
38 ld.so is not versioned... */
41 # error "This will not work with versioning turned off, sorry."
46 /* The fd is not examined when using MAP_ANON. */
49 extern int _dl_zerofd
;
50 #define ANONFD _dl_zerofd
53 struct hppa_fptr __boot_ldso_fptr
[HPPA_BOOT_FPTR_SIZE
];
54 struct hppa_fptr
*__fptr_root
= NULL
;
55 struct hppa_fptr
*__fptr_next
= __boot_ldso_fptr
;
56 static struct hppa_fptr
*__fptr_free
= NULL
;
57 int __fptr_count
= HPPA_BOOT_FPTR_SIZE
;
60 __hppa_make_fptr (const struct link_map
*sym_map
, Elf32_Addr value
,
61 struct hppa_fptr
**root
, struct hppa_fptr
*mem
)
63 struct hppa_fptr
**loc
;
66 #ifdef _LIBC_REENTRANT
67 /* Make sure we are alone. We don't need a lock during bootstrap. */
69 while (testandset (&__hppa_fptr_lock
));
72 /* Search the sorted linked list for an existing entry for this
76 while (f
!= NULL
&& f
->func
<= value
)
84 /* Not found. Create a new one. */
87 else if (__fptr_free
!= NULL
)
90 __fptr_free
= f
->next
;
94 if (__fptr_count
== 0)
100 _dl_zerofd
= _dl_sysdep_open_zero_fill ();
101 if (_dl_zerofd
== -1)
104 _dl_signal_error (errno
, NULL
,
105 "cannot open zero fill device");
110 __fptr_next
= __mmap (0, _dl_pagesize
, PROT_READ
| PROT_WRITE
,
111 MAP_ANON
| MAP_PRIVATE
, ANONFD
, 0);
112 if (__fptr_next
== MAP_FAILED
)
113 _dl_signal_error(errno
, NULL
, "cannot map page for fptr");
114 __fptr_count
= _dl_pagesize
/ sizeof (struct hppa_fptr
);
121 /* GOT has already been relocated in elf_get_dynamic_info - don't
122 try to relocate it again. */
123 f
->gp
= sym_map
->l_info
[DT_PLTGOT
]->d_un
.d_ptr
;
128 #ifdef _LIBC_REENTRANT
129 /* Release the lock. Again, remember, zero means the lock is taken! */
131 __hppa_fptr_lock
= 1;
134 /* Set bit 30 to indicate to $$dyncall that this is a PLABEL. */
135 return (Elf32_Addr
) f
| 2;
139 _dl_unmap (struct link_map
*map
)
141 struct hppa_fptr
**floc
;
143 struct hppa_fptr
**lloc
;
146 __munmap ((void *) map
->l_map_start
, map
->l_map_end
- map
->l_map_start
);
148 #ifdef _LIBC_REENTRANT
149 /* Make sure we are alone. */
150 while (testandset (&__hppa_fptr_lock
));
153 /* Search the sorted linked list for the first entry for this object. */
156 while (f
!= NULL
&& f
->func
< map
->l_map_start
)
163 if (f
!= NULL
&& f
->func
< map
->l_map_end
)
165 /* Get the last entry. */
168 while (l
&& l
->func
< map
->l_map_end
)
177 /* Prepend them to the free list. */
182 #ifdef _LIBC_REENTRANT
183 /* Release the lock. */
184 __hppa_fptr_lock
= 1;
189 _dl_lookup_address (const void *address
)
191 Elf32_Addr addr
= (Elf32_Addr
) address
;
194 #ifdef _LIBC_REENTRANT
195 /* Make sure we are alone. */
196 while (testandset (&__hppa_fptr_lock
));
199 for (f
= __fptr_root
; f
!= NULL
; f
= f
->next
)
206 #ifdef _LIBC_REENTRANT
207 /* Release the lock. */
208 __hppa_fptr_lock
= 1;