Mon Jul 8 02:14:25 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
[platform/upstream/glibc.git] / elf / dl-minimal.c
1 /* Minimal replacements for basic facilities used in the dynamic linker.
2 Copyright (C) 1995, 1996 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 License, or (at your option) any later version.
9
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 Library General Public License for more details.
14
15 You should have received a copy of the GNU Library General Public
16 License along with the GNU C Library; see the file COPYING.LIB.  If
17 not, write to the Free Software Foundation, Inc., 675 Mass Ave,
18 Cambridge, MA 02139, USA.  */
19
20 #include <sys/types.h>
21 #include <sys/mman.h>
22 #include <unistd.h>
23 #include <assert.h>
24 #include <string.h>
25 #include <link.h>
26 #include "../stdio-common/_itoa.h"
27
28 /* Minimal `malloc' allocator for use while loading shared libraries.
29    Only small blocks are allocated, and none are ever freed.  */
30
31 static void *alloc_ptr, *alloc_end, *alloc_last_block;
32
33 void * weak_function
34 malloc (size_t n)
35 {
36   extern int _dl_zerofd;
37
38   if (_dl_pagesize == 0)
39     _dl_pagesize = __getpagesize ();
40
41   if (_dl_zerofd == -1)
42     _dl_zerofd = _dl_sysdep_open_zero_fill ();
43
44   if (alloc_end == 0)
45     {
46       /* Consume any unused space in the last page of our data segment.  */
47       extern int _end;
48       alloc_ptr = &_end;
49       alloc_end = (void *) 0 + (((alloc_ptr - (void *) 0) + _dl_pagesize - 1)
50                                 & ~(_dl_pagesize - 1));
51     }
52
53   /* Make sure the allocation pointer is ideally aligned.  */
54   alloc_ptr = (void *) 0 + (((alloc_ptr - (void *) 0) + sizeof (double) - 1)
55                             & ~(sizeof (double) - 1));
56
57   if (alloc_ptr + n >= alloc_end)
58     {
59       /* Insufficient space left; allocate another page.  */
60       caddr_t page;
61       assert (n <= _dl_pagesize);
62       page = __mmap (0, _dl_pagesize, PROT_READ|PROT_WRITE,
63                      MAP_ANON|MAP_PRIVATE, _dl_zerofd, 0);
64       assert (page != (caddr_t) -1);
65       if (page != alloc_end)
66         alloc_ptr = page;
67       alloc_end = page + _dl_pagesize;
68     }
69
70   alloc_last_block = (void *) alloc_ptr;
71   alloc_ptr += n;
72   return alloc_last_block;
73 }
74
75 /* This will rarely be called.  */
76 void weak_function
77 free (void *ptr)
78 {
79   /* We can free only the last block allocated.  */
80   if (ptr == alloc_last_block)
81     alloc_ptr = alloc_last_block;
82 }
83
84 /* This is only called with the most recent block returned by malloc.  */
85 void * weak_function
86 realloc (void *ptr, size_t n)
87 {
88   void *new;
89   assert (ptr == alloc_last_block);
90   alloc_ptr = alloc_last_block;
91   new = malloc (n);
92   assert (new == ptr);
93   return new;
94 }
95 \f
96 /* Avoid signal frobnication in setjmp/longjmp.  Keeps things smaller.  */
97
98 #include <setjmp.h>
99
100 int weak_function
101 __sigjmp_save (sigjmp_buf env, int savemask)
102 { env[0].__mask_was_saved = savemask; return 0; }
103
104 void weak_function
105 longjmp (jmp_buf env, int val) { __longjmp (env[0].__jmpbuf, val); }
106 \f
107 /* Define our own stub for the localization function used by strerror.
108    English-only in the dynamic linker keeps it smaller.  */
109
110 char * weak_function
111 __dgettext (const char *domainname, const char *msgid)
112 {
113   assert (domainname == _libc_intl_domainname);
114   return (char *) msgid;
115 }
116 weak_alias (__dgettext, dgettext)
117 \f
118 #ifndef NDEBUG
119
120 /* Define (weakly) our own assert failure function which doesn't use stdio.
121    If we are linked into the user program (-ldl), the normal __assert_fail
122    defn can override this one.  */
123
124 void weak_function
125 __assert_fail (const char *assertion,
126                const char *file, unsigned int line, const char *function)
127 {
128   char buf[64];
129   buf[sizeof buf - 1] = '\0';
130   _dl_sysdep_fatal ("BUG IN DYNAMIC LINKER ld.so: ",
131                     file, ": ", _itoa (line, buf + sizeof buf - 1, 10, 0),
132                     ": ", function ?: "", function ? ": " : "",
133                     "Assertion `", assertion, "' failed!\n",
134                     NULL);
135
136 }
137
138 void weak_function
139 __assert_perror_fail (int errnum,
140                       const char *file, unsigned int line,
141                       const char *function)
142 {
143   char buf[64];
144   buf[sizeof buf - 1] = '\0';
145   _dl_sysdep_fatal ("BUG IN DYNAMIC LINKER ld.so: ",
146                     file, ": ", _itoa (line, buf + sizeof buf - 1, 10, 0),
147                     ": ", function ?: "", function ? ": " : "",
148                     "Unexpected error: ", strerror (errnum), "\n", NULL);
149
150 }
151
152 #endif