1 /* Minimal replacements for basic facilities used in the dynamic linker.
2 Copyright (C) 1995,96,97,98,2000,2001,2002 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
26 #include <sys/param.h>
27 #include <sys/types.h>
29 #include <stdio-common/_itoa.h>
33 /* Minimal `malloc' allocator for use while loading shared libraries.
34 No block is ever freed. */
36 static void *alloc_ptr
, *alloc_end
, *alloc_last_block
;
38 /* Declarations of global functions. */
39 extern void weak_function
free (void *ptr
);
40 extern void * weak_function
realloc (void *ptr
, size_t n
);
41 extern unsigned long int weak_function
__strtoul_internal (const char *nptr
,
45 extern unsigned long int weak_function
strtoul (const char *nptr
,
46 char **endptr
, int base
);
53 #define _dl_zerofd (-1)
55 extern int _dl_zerofd
;
58 _dl_zerofd
= _dl_sysdep_open_zero_fill ();
64 /* Consume any unused space in the last page of our data segment. */
65 extern int _end attribute_hidden
;
67 alloc_end
= (void *) 0 + (((alloc_ptr
- (void *) 0)
68 + GL(dl_pagesize
) - 1)
69 & ~(GL(dl_pagesize
) - 1));
72 /* Make sure the allocation pointer is ideally aligned. */
73 alloc_ptr
= (void *) 0 + (((alloc_ptr
- (void *) 0) + sizeof (double) - 1)
74 & ~(sizeof (double) - 1));
76 if (alloc_ptr
+ n
>= alloc_end
)
78 /* Insufficient space left; allocate another page. */
80 size_t nup
= (n
+ GL(dl_pagesize
) - 1) & ~(GL(dl_pagesize
) - 1);
81 page
= __mmap (0, nup
, PROT_READ
|PROT_WRITE
,
82 MAP_ANON
|MAP_PRIVATE
, _dl_zerofd
, 0);
83 assert (page
!= MAP_FAILED
);
84 if (page
!= alloc_end
)
86 alloc_end
= page
+ nup
;
89 alloc_last_block
= (void *) alloc_ptr
;
91 return alloc_last_block
;
94 /* We use this function occasionally since the real implementation may
95 be optimized when it can assume the memory it returns already is
98 calloc (size_t nmemb
, size_t size
)
100 size_t total
= nmemb
* size
;
101 void *result
= malloc (total
);
102 return memset (result
, '\0', total
);
105 /* This will rarely be called. */
109 /* We can free only the last block allocated. */
110 if (ptr
== alloc_last_block
)
111 alloc_ptr
= alloc_last_block
;
114 /* This is only called with the most recent block returned by malloc. */
116 realloc (void *ptr
, size_t n
)
121 assert (ptr
== alloc_last_block
);
122 alloc_ptr
= alloc_last_block
;
128 /* Return alligned memory block. */
130 __libc_memalign (size_t align
, size_t n
)
132 void *newp
= malloc (n
+ align
- 1);
134 return (void *) roundup ((uintptr_t) newp
, align
);
137 /* Avoid signal frobnication in setjmp/longjmp. Keeps things smaller. */
142 __sigjmp_save (sigjmp_buf env
, int savemask
__attribute__ ((unused
)))
144 env
[0].__mask_was_saved
= 0;
149 longjmp (jmp_buf env
, int val
)
151 __longjmp (env
[0].__jmpbuf
, val
);
154 /* Define our own version of the internal function used by strerror. We
155 only provide the messages for some common errors. This avoids pulling
156 in the whole error list. */
159 __strerror_r (int errnum
, char *buf
, size_t buflen
)
166 msg
= (char *) "Cannot allocate memory";
169 msg
= (char *) "Invalid argument";
172 msg
= (char *) "No such file or directory";
175 msg
= (char *) "Operation not permitted";
178 msg
= (char *) "Input/output error";
181 msg
= (char *) "Permission denied";
184 /* No need to check buffer size, all calls in the dynamic linker
185 provide enough space. */
186 buf
[buflen
- 1] = '\0';
187 msg
= _itoa (errnum
, buf
+ buflen
- 1, 10, 0);
188 msg
= memcpy (msg
- (sizeof ("Error ") - 1), "Error ",
189 sizeof ("Error ") - 1);
198 /* Define (weakly) our own assert failure function which doesn't use stdio.
199 If we are linked into the user program (-ldl), the normal __assert_fail
200 defn can override this one. */
203 __assert_fail (const char *assertion
,
204 const char *file
, unsigned int line
, const char *function
)
207 Inconsistency detected by ld.so: %s: %u: %s%sAssertion `%s' failed!\n",
208 file
, line
, function
?: "", function
? ": " : "",
212 INTDEF(__assert_fail
)
215 __assert_perror_fail (int errnum
,
216 const char *file
, unsigned int line
,
217 const char *function
)
221 Inconsistency detected by ld.so: %s: %u: %s%sUnexpected error: %s\n",
222 file
, line
, function
?: "", function
? ": " : "",
223 __strerror_r (errnum
, errbuf
, sizeof (errbuf
)));
228 unsigned long int weak_function
229 __strtoul_internal (const char *nptr
, char **endptr
, int base
, int group
)
231 unsigned long int result
= 0;
234 while (*nptr
== ' ' || *nptr
== '\t')
242 else if (*nptr
== '+')
245 if (*nptr
< '0' || *nptr
> '9')
248 *endptr
= (char *) nptr
;
256 if (nptr
[1] == 'x' || nptr
[1] == 'X')
265 while (*nptr
>= '0' && *nptr
<= '9')
267 unsigned long int digval
= *nptr
- '0';
268 if (result
> LONG_MAX
/ 10
269 || (result
== ULONG_MAX
/ 10 && digval
> ULONG_MAX
% 10))
273 *endptr
= (char *) nptr
;
282 *endptr
= (char *) nptr
;
283 return result
* sign
;
287 /* We always use _itoa instead of _itoa_word in ld.so since the former
288 also has to be present and it is never about speed when these
289 functions are used. */
291 _itoa (value
, buflim
, base
, upper_case
)
292 unsigned long long int value
;
297 extern const char INTUSE(_itoa_lower_digits
)[] attribute_hidden
;
299 assert (! upper_case
);
302 *--buflim
= INTUSE(_itoa_lower_digits
)[value
% base
];
303 while ((value
/= base
) != 0);
309 /* The following is not a complete strsep implementation. It cannot
310 handle empty delimiter strings. But this isn't necessary for the
311 execution of ld.so. */
315 __strsep (char **stringp
, const char *delim
)
319 assert (delim
[0] != '\0');
326 while (*end
!= '\0' || (end
= NULL
))
328 const char *dp
= delim
;
333 while (*++dp
!= '\0');
349 weak_alias (__strsep
, strsep
)
350 strong_alias (__strsep
, __strsep_g
)
353 /* The '_itoa_lower_digits' variable in libc.so is able to handle bases
354 up to 36. We don't need this here. */
355 const char INTUSE(_itoa_lower_digits
)[16] attribute_hidden
356 = "0123456789abcdef";
361 /* The 'errno' in ld.so is not exported. */
362 #if USE_TLS && HAVE___THREAD
363 extern __thread
int errno attribute_hidden
;
365 extern int errno attribute_hidden
;
368 __errno_location (void)