1 /* Minimal replacements for basic facilities used in the dynamic linker.
2 Copyright (C) 1995-1998,2000-2002,2004 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
);
49 /* Allocate an aligned memory block. */
51 __libc_memalign (size_t align
, size_t n
)
54 #define _dl_zerofd (-1)
56 extern int _dl_zerofd
;
59 _dl_zerofd
= _dl_sysdep_open_zero_fill ();
65 /* Consume any unused space in the last page of our data segment. */
66 extern int _end attribute_hidden
;
68 alloc_end
= (void *) 0 + (((alloc_ptr
- (void *) 0)
69 + GLRO(dl_pagesize
) - 1)
70 & ~(GLRO(dl_pagesize
) - 1));
73 /* Make sure the allocation pointer is ideally aligned. */
74 alloc_ptr
= (void *) 0 + (((alloc_ptr
- (void *) 0) + align
- 1)
77 if (alloc_ptr
+ n
>= alloc_end
)
79 /* Insufficient space left; allocate another page. */
81 size_t nup
= (n
+ GLRO(dl_pagesize
) - 1) & ~(GLRO(dl_pagesize
) - 1);
82 page
= __mmap (0, nup
, PROT_READ
|PROT_WRITE
,
83 MAP_ANON
|MAP_PRIVATE
, _dl_zerofd
, 0);
84 assert (page
!= MAP_FAILED
);
85 if (page
!= alloc_end
)
87 alloc_end
= page
+ nup
;
90 alloc_last_block
= (void *) alloc_ptr
;
92 return alloc_last_block
;
98 return __libc_memalign (sizeof (double), n
);
101 /* We use this function occasionally since the real implementation may
102 be optimized when it can assume the memory it returns already is
105 calloc (size_t nmemb
, size_t size
)
107 /* New memory from the trivial malloc above is always already cleared.
108 (We make sure that's true in the rare occasion it might not be,
109 by clearing memory in free, below.) */
110 return malloc (nmemb
* size
);
113 /* This will rarely be called. */
117 /* We can free only the last block allocated. */
118 if (ptr
== alloc_last_block
)
120 /* Since this is rare, we clear the freed block here
121 so that calloc can presume malloc returns cleared memory. */
122 memset (alloc_last_block
, '\0', alloc_ptr
- alloc_last_block
);
123 alloc_ptr
= alloc_last_block
;
127 /* This is only called with the most recent block returned by malloc. */
129 realloc (void *ptr
, size_t n
)
134 assert (ptr
== alloc_last_block
);
135 alloc_ptr
= alloc_last_block
;
141 /* Avoid signal frobnication in setjmp/longjmp. Keeps things smaller. */
146 __sigjmp_save (sigjmp_buf env
, int savemask
__attribute__ ((unused
)))
148 env
[0].__mask_was_saved
= 0;
153 longjmp (jmp_buf env
, int val
)
155 __longjmp (env
[0].__jmpbuf
, val
);
158 /* Define our own version of the internal function used by strerror. We
159 only provide the messages for some common errors. This avoids pulling
160 in the whole error list. */
163 __strerror_r (int errnum
, char *buf
, size_t buflen
)
170 msg
= (char *) "Cannot allocate memory";
173 msg
= (char *) "Invalid argument";
176 msg
= (char *) "No such file or directory";
179 msg
= (char *) "Operation not permitted";
182 msg
= (char *) "Input/output error";
185 msg
= (char *) "Permission denied";
188 /* No need to check buffer size, all calls in the dynamic linker
189 provide enough space. */
190 buf
[buflen
- 1] = '\0';
191 msg
= _itoa (errnum
, buf
+ buflen
- 1, 10, 0);
192 msg
= memcpy (msg
- (sizeof ("Error ") - 1), "Error ",
193 sizeof ("Error ") - 1);
202 /* Define (weakly) our own assert failure function which doesn't use stdio.
203 If we are linked into the user program (-ldl), the normal __assert_fail
204 defn can override this one. */
207 __assert_fail (const char *assertion
,
208 const char *file
, unsigned int line
, const char *function
)
211 Inconsistency detected by ld.so: %s: %u: %s%sAssertion `%s' failed!\n",
212 file
, line
, function
?: "", function
? ": " : "",
216 rtld_hidden_weak(__assert_fail
)
219 __assert_perror_fail (int errnum
,
220 const char *file
, unsigned int line
,
221 const char *function
)
225 Inconsistency detected by ld.so: %s: %u: %s%sUnexpected error: %s.\n",
226 file
, line
, function
?: "", function
? ": " : "",
227 __strerror_r (errnum
, errbuf
, sizeof errbuf
));
230 rtld_hidden_weak (__assert_perror_fail
)
233 unsigned long int weak_function
234 __strtoul_internal (const char *nptr
, char **endptr
, int base
, int group
)
236 unsigned long int result
= 0;
239 while (*nptr
== ' ' || *nptr
== '\t')
247 else if (*nptr
== '+')
250 if (*nptr
< '0' || *nptr
> '9')
253 *endptr
= (char *) nptr
;
261 if (nptr
[1] == 'x' || nptr
[1] == 'X')
270 while (*nptr
>= '0' && *nptr
<= '9')
272 unsigned long int digval
= *nptr
- '0';
273 if (result
> LONG_MAX
/ 10
274 || (result
== ULONG_MAX
/ 10 && digval
> ULONG_MAX
% 10))
278 *endptr
= (char *) nptr
;
287 *endptr
= (char *) nptr
;
288 return result
* sign
;
292 /* We always use _itoa instead of _itoa_word in ld.so since the former
293 also has to be present and it is never about speed when these
294 functions are used. */
296 _itoa (value
, buflim
, base
, upper_case
)
297 unsigned long long int value
;
302 extern const char INTUSE(_itoa_lower_digits
)[] attribute_hidden
;
304 assert (! upper_case
);
307 *--buflim
= INTUSE(_itoa_lower_digits
)[value
% base
];
308 while ((value
/= base
) != 0);
314 /* The following is not a complete strsep implementation. It cannot
315 handle empty delimiter strings. But this isn't necessary for the
316 execution of ld.so. */
320 __strsep (char **stringp
, const char *delim
)
324 assert (delim
[0] != '\0');
331 while (*end
!= '\0' || (end
= NULL
))
333 const char *dp
= delim
;
338 while (*++dp
!= '\0');
354 weak_alias (__strsep
, strsep
)
355 strong_alias (__strsep
, __strsep_g
)
358 __attribute__ ((noreturn
))
363 rtld_hidden_def (__chk_fail
)
365 /* The '_itoa_lower_digits' variable in libc.so is able to handle bases
366 up to 36. We don't need this here. */
367 const char INTUSE(_itoa_lower_digits
)[16] attribute_hidden
368 = "0123456789abcdef";