OSDN Git Service

Joakim Tjernlund writes:
[uclinux-h8/uClibc.git] / ldso / ldso / dl-elf.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * This file contains the helper routines to load an ELF shared
4  * library into memory and add the symbol table info to the chain.
5  *
6  * Copyright (C) 2000-2004 by Erik Andersen <andersen@codpoet.org>
7  * Copyright (c) 1994-2000 Eric Youngdale, Peter MacDonald,
8  *                              David Engel, Hongjiu Lu and Mitch D'Souza
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. The name of the above contributors may not be
16  *    used to endorse or promote products derived from this software
17  *    without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE CONTRIBUTORS ``AS IS'' AND
20  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22  * ARE DISCLAIMED.  IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE
23  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29  * SUCH DAMAGE.
30  */
31
32
33 #include "ldso.h"
34
35 #ifdef USE_CACHE
36
37 static caddr_t _dl_cache_addr = NULL;
38 static size_t _dl_cache_size = 0;
39
40 int _dl_map_cache(void)
41 {
42         int fd;
43         struct stat st;
44         header_t *header;
45         libentry_t *libent;
46         int i, strtabsize;
47
48         if (_dl_cache_addr == (caddr_t) - 1)
49                 return -1;
50         else if (_dl_cache_addr != NULL)
51                 return 0;
52
53         if (_dl_stat(LDSO_CACHE, &st)
54                         || (fd = _dl_open(LDSO_CACHE, O_RDONLY, 0)) < 0) {
55                 _dl_dprintf(2, "%s: can't open cache '%s'\n", _dl_progname, LDSO_CACHE);
56                 _dl_cache_addr = (caddr_t) - 1; /* so we won't try again */
57                 return -1;
58         }
59
60         _dl_cache_size = st.st_size;
61         _dl_cache_addr = (caddr_t) _dl_mmap(0, _dl_cache_size, PROT_READ, MAP_SHARED, fd, 0);
62         _dl_close(fd);
63         if (_dl_mmap_check_error(_dl_cache_addr)) {
64                 _dl_dprintf(2, "%s: can't map cache '%s'\n",
65                                 _dl_progname, LDSO_CACHE);
66                 return -1;
67         }
68
69         header = (header_t *) _dl_cache_addr;
70
71         if (_dl_cache_size < sizeof(header_t) ||
72                         _dl_memcmp(header->magic, LDSO_CACHE_MAGIC, LDSO_CACHE_MAGIC_LEN)
73                         || _dl_memcmp(header->version, LDSO_CACHE_VER, LDSO_CACHE_VER_LEN)
74                         || _dl_cache_size <
75                         (sizeof(header_t) + header->nlibs * sizeof(libentry_t))
76                         || _dl_cache_addr[_dl_cache_size - 1] != '\0')
77         {
78                 _dl_dprintf(2, "%s: cache '%s' is corrupt\n", _dl_progname,
79                                 LDSO_CACHE);
80                 goto fail;
81         }
82
83         strtabsize = _dl_cache_size - sizeof(header_t) -
84                 header->nlibs * sizeof(libentry_t);
85         libent = (libentry_t *) & header[1];
86
87         for (i = 0; i < header->nlibs; i++) {
88                 if (libent[i].sooffset >= strtabsize ||
89                                 libent[i].liboffset >= strtabsize)
90                 {
91                         _dl_dprintf(2, "%s: cache '%s' is corrupt\n", _dl_progname, LDSO_CACHE);
92                         goto fail;
93                 }
94         }
95
96         return 0;
97
98 fail:
99         _dl_munmap(_dl_cache_addr, _dl_cache_size);
100         _dl_cache_addr = (caddr_t) - 1;
101         return -1;
102 }
103
104 int _dl_unmap_cache(void)
105 {
106         if (_dl_cache_addr == NULL || _dl_cache_addr == (caddr_t) - 1)
107                 return -1;
108
109 #if 1
110         _dl_munmap(_dl_cache_addr, _dl_cache_size);
111         _dl_cache_addr = NULL;
112 #endif
113
114         return 0;
115 }
116 #endif
117
118 /* This function's behavior must exactly match that
119  * in uClibc/ldso/util/ldd.c */
120 static struct elf_resolve *
121 search_for_named_library(const char *name, int secure, const char *path_list,
122         struct dyn_elf **rpnt)
123 {
124         int i, count = 1;
125         char *path, *path_n;
126         char mylibname[2050];
127         struct elf_resolve *tpnt1;
128
129         if (path_list==NULL)
130                 return NULL;
131
132         /* We need a writable copy of this string */
133         path = _dl_strdup(path_list);
134         if (!path) {
135                 _dl_dprintf(2, "Out of memory!\n");
136                 _dl_exit(0);
137         }
138
139
140         /* Unlike ldd.c, don't bother to eliminate double //s */
141
142
143         /* Replace colons with zeros in path_list and count them */
144         for(i=_dl_strlen(path); i > 0; i--) {
145                 if (path[i]==':') {
146                         path[i]=0;
147                         count++;
148                 }
149         }
150
151         path_n = path;
152         for (i = 0; i < count; i++) {
153                 _dl_strcpy(mylibname, path_n);
154                 _dl_strcat(mylibname, "/");
155                 _dl_strcat(mylibname, name);
156                 if ((tpnt1 = _dl_load_elf_shared_library(secure, rpnt, mylibname)) != NULL)
157                 {
158                         return tpnt1;
159                 }
160                 path_n += (_dl_strlen(path_n) + 1);
161         }
162         return NULL;
163 }
164
165 /* Check if the named library is already loaded... */
166 struct elf_resolve *_dl_check_if_named_library_is_loaded(const char *full_libname,
167                 int trace_loaded_objects)
168 {
169         const char *pnt, *pnt1;
170         struct elf_resolve *tpnt1;
171         const char *libname, *libname2;
172         static const char libc[] = "libc.so.";
173         static const char aborted_wrong_lib[] = "%s: aborted attempt to load %s!\n";
174
175         pnt = libname = full_libname;
176
177 #if defined (__SUPPORT_LD_DEBUG__)
178         if(_dl_debug)
179                 _dl_dprintf(_dl_debug_file, "Checking if '%s' is already loaded\n", full_libname);
180 #endif
181         /* quick hack to ensure mylibname buffer doesn't overflow.  don't
182            allow full_libname or any directory to be longer than 1024. */
183         if (_dl_strlen(full_libname) > 1024)
184                 return NULL;
185
186         /* Skip over any initial initial './' and '/' stuff to
187          * get the short form libname with no path garbage */
188         pnt1 = _dl_strrchr(pnt, '/');
189         if (pnt1) {
190                 libname = pnt1 + 1;
191         }
192
193         /* Make sure they are not trying to load the wrong C library!
194          * This sometimes happens esp with shared libraries when the
195          * library path is somehow wrong! */
196 #define isdigit(c)  (c >= '0' && c <= '9')
197         if ((_dl_strncmp(libname, libc, 8) == 0) &&  _dl_strlen(libname) >=8 &&
198                         isdigit(libname[8]))
199         {
200                 /* Abort attempts to load glibc, libc5, etc */
201                 if ( libname[8]!='0') {
202                         if (!trace_loaded_objects) {
203                                 _dl_dprintf(2, aborted_wrong_lib, libname, _dl_progname);
204                                 _dl_exit(1);
205                         }
206                         return NULL;
207                 }
208         }
209
210         /* Critical step!  Weed out duplicates early to avoid
211          * function aliasing, which wastes memory, and causes
212          * really bad things to happen with weaks and globals. */
213         for (tpnt1 = _dl_loaded_modules; tpnt1; tpnt1 = tpnt1->next) {
214
215                 /* Skip over any initial initial './' and '/' stuff to
216                  * get the short form libname with no path garbage */
217                 libname2 = tpnt1->libname;
218                 pnt1 = _dl_strrchr(libname2, '/');
219                 if (pnt1) {
220                         libname2 = pnt1 + 1;
221                 }
222
223                 if (_dl_strcmp(libname2, libname) == 0) {
224                         /* Well, that was certainly easy */
225                         return tpnt1;
226                 }
227         }
228
229         return NULL;
230 }
231
232
233 /* Used to return error codes back to dlopen et. al.  */
234 unsigned long _dl_error_number;
235 unsigned long _dl_internal_error_number;
236
237 struct elf_resolve *_dl_load_shared_library(int secure, struct dyn_elf **rpnt,
238         struct elf_resolve *tpnt, char *full_libname, int trace_loaded_objects)
239 {
240         char *pnt, *pnt1;
241         struct elf_resolve *tpnt1;
242         char *libname;
243
244         _dl_internal_error_number = 0;
245         libname = full_libname;
246
247         /* quick hack to ensure mylibname buffer doesn't overflow.  don't
248            allow full_libname or any directory to be longer than 1024. */
249         if (_dl_strlen(full_libname) > 1024)
250                 goto goof;
251
252         /* Skip over any initial initial './' and '/' stuff to
253          * get the short form libname with no path garbage */
254         pnt1 = _dl_strrchr(libname, '/');
255         if (pnt1) {
256                 libname = pnt1 + 1;
257         }
258 #if 0
259         /* Critical step!  Weed out duplicates early to avoid
260          * function aliasing, which wastes memory, and causes
261          * really bad things to happen with weaks and globals. */
262         if ((tpnt1=_dl_check_if_named_library_is_loaded(libname, trace_loaded_objects))!=NULL)
263                 return tpnt1;
264 #endif
265
266 #if defined (__SUPPORT_LD_DEBUG__)
267         if(_dl_debug) _dl_dprintf(_dl_debug_file, "\tfind library='%s'; searching\n", libname);
268 #endif
269         /* If the filename has any '/', try it straight and leave it at that.
270            For IBCS2 compatibility under linux, we substitute the string
271            /usr/i486-sysv4/lib for /usr/lib in library names. */
272
273         if (libname != full_libname) {
274 #if defined (__SUPPORT_LD_DEBUG__)
275                 if(_dl_debug) _dl_dprintf(_dl_debug_file, "\ttrying file='%s'\n", full_libname);
276 #endif
277                 tpnt1 = _dl_load_elf_shared_library(secure, rpnt, full_libname);
278                 if (tpnt1) {
279                         return tpnt1;
280                 }
281                 //goto goof;
282         }
283
284         /*
285          * The ABI specifies that RPATH is searched before LD_*_PATH or
286          * the default path of /usr/lib.  Check in rpath directories.
287          */
288         for (tpnt = _dl_loaded_modules; tpnt; tpnt = tpnt->next) {
289                 if (tpnt->libtype == elf_executable) {
290                         pnt = (char *) tpnt->dynamic_info[DT_RPATH];
291                         if (pnt) {
292                                 pnt += (unsigned long) tpnt->loadaddr + tpnt->dynamic_info[DT_STRTAB];
293 #if defined (__SUPPORT_LD_DEBUG__)
294                                 if(_dl_debug) _dl_dprintf(_dl_debug_file, "\tsearching RPATH='%s'\n", pnt);
295 #endif
296                                 if ((tpnt1 = search_for_named_library(libname, secure, pnt, rpnt)) != NULL)
297                                 {
298                                         return tpnt1;
299                                 }
300                         }
301                 }
302         }
303
304         /* Check in LD_{ELF_}LIBRARY_PATH, if specified and allowed */
305         if (_dl_library_path) {
306 #if defined (__SUPPORT_LD_DEBUG__)
307                 if(_dl_debug) _dl_dprintf(_dl_debug_file, "\tsearching LD_LIBRARY_PATH='%s'\n", _dl_library_path);
308 #endif
309                 if ((tpnt1 = search_for_named_library(libname, secure, _dl_library_path, rpnt)) != NULL)
310                 {
311                         return tpnt1;
312                 }
313         }
314
315         /*
316          * Where should the cache be searched?  There is no such concept in the
317          * ABI, so we have some flexibility here.  For now, search it before
318          * the hard coded paths that follow (i.e before /lib and /usr/lib).
319          */
320 #ifdef USE_CACHE
321         if (_dl_cache_addr != NULL && _dl_cache_addr != (caddr_t) - 1) {
322                 int i;
323                 header_t *header = (header_t *) _dl_cache_addr;
324                 libentry_t *libent = (libentry_t *) & header[1];
325                 char *strs = (char *) &libent[header->nlibs];
326
327 #if defined (__SUPPORT_LD_DEBUG__)
328                 if(_dl_debug) _dl_dprintf(_dl_debug_file, "\tsearching cache='%s'\n", LDSO_CACHE);
329 #endif
330                 for (i = 0; i < header->nlibs; i++) {
331                         if ((libent[i].flags == LIB_ELF ||
332                                                 libent[i].flags == LIB_ELF_LIBC5) &&
333                                         _dl_strcmp(libname, strs + libent[i].sooffset) == 0 &&
334                                         (tpnt1 = _dl_load_elf_shared_library(secure,
335                                                                                                                  rpnt, strs + libent[i].liboffset)))
336                                 return tpnt1;
337                 }
338         }
339 #endif
340
341         /* Look for libraries wherever the shared library loader
342          * was installed */
343 #if defined (__SUPPORT_LD_DEBUG__)
344         if(_dl_debug) _dl_dprintf(_dl_debug_file, "\tsearching ldso dir='%s'\n", _dl_ldsopath);
345 #endif
346         if ((tpnt1 = search_for_named_library(libname, secure, _dl_ldsopath, rpnt)) != NULL)
347         {
348                 return tpnt1;
349         }
350
351
352         /* Lastly, search the standard list of paths for the library.
353            This list must exactly match the list in uClibc/ldso/util/ldd.c */
354 #if defined (__SUPPORT_LD_DEBUG__)
355         if(_dl_debug) _dl_dprintf(_dl_debug_file, "\tsearching full lib path list\n");
356 #endif
357         if ((tpnt1 = search_for_named_library(libname, secure,
358                                         UCLIBC_RUNTIME_PREFIX "usr/X11R6/lib:"
359                                         UCLIBC_RUNTIME_PREFIX "usr/lib:"
360                                         UCLIBC_RUNTIME_PREFIX "lib:"
361                                         "/usr/X11R6/lib:"
362                                         "/usr/lib:"
363                                         "/lib", rpnt)
364                 ) != NULL)
365         {
366                 return tpnt1;
367         }
368
369 goof:
370         /* Well, we shot our wad on that one.  All we can do now is punt */
371         if (_dl_internal_error_number)
372                 _dl_error_number = _dl_internal_error_number;
373         else
374                 _dl_error_number = LD_ERROR_NOFILE;
375 #if defined (__SUPPORT_LD_DEBUG__)
376         if(_dl_debug) _dl_dprintf(2, "Bummer: could not find '%s'!\n", libname);
377 #endif
378         return NULL;
379 }
380
381
382 /*
383  * Read one ELF library into memory, mmap it into the correct locations and
384  * add the symbol info to the symbol chain.  Perform any relocations that
385  * are required.
386  */
387
388 struct elf_resolve *_dl_load_elf_shared_library(int secure,
389         struct dyn_elf **rpnt, char *libname)
390 {
391         ElfW(Ehdr) *epnt;
392         unsigned long dynamic_addr = 0;
393         unsigned long dynamic_size = 0;
394         Elf32_Dyn *dpnt;
395         struct elf_resolve *tpnt;
396         ElfW(Phdr) *ppnt;
397         char *status, *header;
398         unsigned long dynamic_info[24];
399         unsigned long *lpnt;
400         unsigned long libaddr;
401         unsigned long minvma = 0xffffffff, maxvma = 0;
402         int i, flags, piclib, infile;
403
404         /* If this file is already loaded, skip this step */
405         tpnt = _dl_check_hashed_files(libname);
406         if (tpnt) {
407                 if (*rpnt) {
408                         (*rpnt)->next = (struct dyn_elf *) _dl_malloc(sizeof(struct dyn_elf));
409                         _dl_memset((*rpnt)->next, 0, sizeof(struct dyn_elf));
410                         (*rpnt)->next->prev = (*rpnt);
411                         *rpnt = (*rpnt)->next;
412                         (*rpnt)->dyn = tpnt;
413                         tpnt->symbol_scope = _dl_symbol_tables;
414                 }
415                 tpnt->usage_count++;
416                 tpnt->libtype = elf_lib;
417 #if defined (__SUPPORT_LD_DEBUG__)
418                 if(_dl_debug) _dl_dprintf(2, "file='%s';  already loaded\n", libname);
419 #endif
420                 return tpnt;
421         }
422
423         /* If we are in secure mode (i.e. a setu/gid binary using LD_PRELOAD),
424            we don't load the library if it isn't setuid. */
425
426         if (secure) {
427                 struct stat st;
428
429                 if (_dl_stat(libname, &st) || !(st.st_mode & S_ISUID))
430                         return NULL;
431         }
432
433         libaddr = 0;
434         infile = _dl_open(libname, O_RDONLY, 0);
435         if (infile < 0) {
436 #if 0
437                 /*
438                  * NO!  When we open shared libraries we may search several paths.
439                  * it is inappropriate to generate an error here.
440                  */
441                 _dl_dprintf(2, "%s: can't open '%s'\n", _dl_progname, libname);
442 #endif
443                 _dl_internal_error_number = LD_ERROR_NOFILE;
444                 return NULL;
445         }
446
447         header = _dl_mmap((void *) 0, _dl_pagesize, PROT_READ | PROT_WRITE,
448                         MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
449         if (_dl_mmap_check_error(header)) {
450                 _dl_dprintf(2, "%s: can't map '%s'\n", _dl_progname, libname);
451                 _dl_internal_error_number = LD_ERROR_MMAP_FAILED;
452                 _dl_close(infile);
453                 return NULL;
454         };
455
456         _dl_read(infile, header, _dl_pagesize);
457         epnt = (ElfW(Ehdr) *) (intptr_t) header;
458         if (epnt->e_ident[0] != 0x7f ||
459                         epnt->e_ident[1] != 'E' ||
460                         epnt->e_ident[2] != 'L' ||
461                         epnt->e_ident[3] != 'F')
462         {
463                 _dl_dprintf(2, "%s: '%s' is not an ELF file\n", _dl_progname,
464                                 libname);
465                 _dl_internal_error_number = LD_ERROR_NOTELF;
466                 _dl_close(infile);
467                 _dl_munmap(header, _dl_pagesize);
468                 return NULL;
469         };
470
471         if ((epnt->e_type != ET_DYN) || (epnt->e_machine != MAGIC1
472 #ifdef MAGIC2
473                                 && epnt->e_machine != MAGIC2
474 #endif
475                                 ))
476         {
477                 _dl_internal_error_number =
478                         (epnt->e_type != ET_DYN ? LD_ERROR_NOTDYN : LD_ERROR_NOTMAGIC);
479                 _dl_dprintf(2, "%s: '%s' is not an ELF executable for " ELF_TARGET
480                                 "\n", _dl_progname, libname);
481                 _dl_close(infile);
482                 _dl_munmap(header, _dl_pagesize);
483                 return NULL;
484         };
485
486         ppnt = (ElfW(Phdr) *)(intptr_t) & header[epnt->e_phoff];
487
488         piclib = 1;
489         for (i = 0; i < epnt->e_phnum; i++) {
490
491                 if (ppnt->p_type == PT_DYNAMIC) {
492                         if (dynamic_addr)
493                                 _dl_dprintf(2, "%s: '%s' has more than one dynamic section\n",
494                                                 _dl_progname, libname);
495                         dynamic_addr = ppnt->p_vaddr;
496                         dynamic_size = ppnt->p_filesz;
497                 };
498
499                 if (ppnt->p_type == PT_LOAD) {
500                         /* See if this is a PIC library. */
501                         if (i == 0 && ppnt->p_vaddr > 0x1000000) {
502                                 piclib = 0;
503                                 minvma = ppnt->p_vaddr;
504                         }
505                         if (piclib && ppnt->p_vaddr < minvma) {
506                                 minvma = ppnt->p_vaddr;
507                         }
508                         if (((unsigned long) ppnt->p_vaddr + ppnt->p_memsz) > maxvma) {
509                                 maxvma = ppnt->p_vaddr + ppnt->p_memsz;
510                         }
511                 }
512                 ppnt++;
513         };
514
515         maxvma = (maxvma + ADDR_ALIGN) & ~ADDR_ALIGN;
516         minvma = minvma & ~0xffffU;
517
518         flags = MAP_PRIVATE /*| MAP_DENYWRITE */ ;
519         if (!piclib)
520                 flags |= MAP_FIXED;
521
522         status = (char *) _dl_mmap((char *) (piclib ? 0 : minvma),
523                         maxvma - minvma, PROT_NONE, flags | MAP_ANONYMOUS, -1, 0);
524         if (_dl_mmap_check_error(status)) {
525                 _dl_dprintf(2, "%s: can't map %s\n", _dl_progname, libname);
526                 _dl_internal_error_number = LD_ERROR_MMAP_FAILED;
527                 _dl_close(infile);
528                 _dl_munmap(header, _dl_pagesize);
529                 return NULL;
530         };
531         libaddr = (unsigned long) status;
532         flags |= MAP_FIXED;
533
534         /* Get the memory to store the library */
535         ppnt = (ElfW(Phdr) *)(intptr_t) & header[epnt->e_phoff];
536
537         for (i = 0; i < epnt->e_phnum; i++) {
538                 if (ppnt->p_type == PT_LOAD) {
539
540                         /* See if this is a PIC library. */
541                         if (i == 0 && ppnt->p_vaddr > 0x1000000) {
542                                 piclib = 0;
543                                 /* flags |= MAP_FIXED; */
544                         }
545
546
547
548                         if (ppnt->p_flags & PF_W) {
549                                 unsigned long map_size;
550                                 char *cpnt;
551
552                                 status = (char *) _dl_mmap((char *) ((piclib ? libaddr : 0) +
553                                                         (ppnt->p_vaddr & PAGE_ALIGN)), (ppnt->p_vaddr & ADDR_ALIGN)
554                                                 + ppnt->p_filesz, LXFLAGS(ppnt->p_flags), flags, infile,
555                                                 ppnt->p_offset & OFFS_ALIGN);
556
557                                 if (_dl_mmap_check_error(status)) {
558                                         _dl_dprintf(2, "%s: can't map '%s'\n",
559                                                         _dl_progname, libname);
560                                         _dl_internal_error_number = LD_ERROR_MMAP_FAILED;
561                                         _dl_munmap((char *) libaddr, maxvma - minvma);
562                                         _dl_close(infile);
563                                         _dl_munmap(header, _dl_pagesize);
564                                         return NULL;
565                                 };
566
567                                 /* Pad the last page with zeroes. */
568                                 cpnt = (char *) (status + (ppnt->p_vaddr & ADDR_ALIGN) +
569                                                 ppnt->p_filesz);
570                                 while (((unsigned long) cpnt) & ADDR_ALIGN)
571                                         *cpnt++ = 0;
572
573                                 /* I am not quite sure if this is completely
574                                  * correct to do or not, but the basic way that
575                                  * we handle bss segments is that we mmap
576                                  * /dev/zero if there are any pages left over
577                                  * that are not mapped as part of the file */
578
579                                 map_size = (ppnt->p_vaddr + ppnt->p_filesz + ADDR_ALIGN) & PAGE_ALIGN;
580
581                                 if (map_size < ppnt->p_vaddr + ppnt->p_memsz)
582                                         status = (char *) _dl_mmap((char *) map_size +
583                                                         (piclib ? libaddr : 0),
584                                                         ppnt->p_vaddr + ppnt->p_memsz - map_size,
585                                                         LXFLAGS(ppnt->p_flags), flags | MAP_ANONYMOUS, -1, 0);
586                         } else
587                                 status = (char *) _dl_mmap((char *) (ppnt->p_vaddr & PAGE_ALIGN)
588                                                 + (piclib ? libaddr : 0), (ppnt->p_vaddr & ADDR_ALIGN) +
589                                                 ppnt->p_filesz, LXFLAGS(ppnt->p_flags), flags,
590                                                 infile, ppnt->p_offset & OFFS_ALIGN);
591                         if (_dl_mmap_check_error(status)) {
592                                 _dl_dprintf(2, "%s: can't map '%s'\n", _dl_progname, libname);
593                                 _dl_internal_error_number = LD_ERROR_MMAP_FAILED;
594                                 _dl_munmap((char *) libaddr, maxvma - minvma);
595                                 _dl_close(infile);
596                                 _dl_munmap(header, _dl_pagesize);
597                                 return NULL;
598                         };
599
600                         /* if(libaddr == 0 && piclib) {
601                            libaddr = (unsigned long) status;
602                            flags |= MAP_FIXED;
603                            }; */
604                 };
605                 ppnt++;
606         };
607         _dl_close(infile);
608
609         /* For a non-PIC library, the addresses are all absolute */
610         if (piclib) {
611                 dynamic_addr += (unsigned long) libaddr;
612         }
613
614         /*
615          * OK, the ELF library is now loaded into VM in the correct locations
616          * The next step is to go through and do the dynamic linking (if needed).
617          */
618
619         /* Start by scanning the dynamic section to get all of the pointers */
620
621         if (!dynamic_addr) {
622                 _dl_internal_error_number = LD_ERROR_NODYNAMIC;
623                 _dl_dprintf(2, "%s: '%s' is missing a dynamic section\n",
624                                 _dl_progname, libname);
625                 _dl_munmap(header, _dl_pagesize);
626                 return NULL;
627         }
628
629         dpnt = (Elf32_Dyn *) dynamic_addr;
630
631         dynamic_size = dynamic_size / sizeof(Elf32_Dyn);
632         _dl_memset(dynamic_info, 0, sizeof(dynamic_info));
633
634 #if defined(__mips__)
635         {
636
637                 int indx = 1;
638                 Elf32_Dyn *dpnt = (Elf32_Dyn *) dynamic_addr;
639
640                 while(dpnt->d_tag) {
641                         dpnt++;
642                         indx++;
643                 }
644                 dynamic_size = indx;
645         }
646 #endif
647
648         {
649                 unsigned long indx;
650
651                 for (indx = 0; indx < dynamic_size; indx++)
652                 {
653                         if (dpnt->d_tag > DT_JMPREL) {
654                                 dpnt++;
655                                 continue;
656                         }
657                         dynamic_info[dpnt->d_tag] = dpnt->d_un.d_val;
658                         if (dpnt->d_tag == DT_TEXTREL)
659                                 dynamic_info[DT_TEXTREL] = 1;
660                         dpnt++;
661                 };
662         }
663
664         /* If the TEXTREL is set, this means that we need to make the pages
665            writable before we perform relocations.  Do this now. They get set
666            back again later. */
667
668         if (dynamic_info[DT_TEXTREL]) {
669 #ifndef FORCE_SHAREABLE_TEXT_SEGMENTS
670                 ppnt = (ElfW(Phdr) *)(intptr_t) & header[epnt->e_phoff];
671                 for (i = 0; i < epnt->e_phnum; i++, ppnt++) {
672                         if (ppnt->p_type == PT_LOAD && !(ppnt->p_flags & PF_W))
673                                 _dl_mprotect((void *) ((piclib ? libaddr : 0) +
674                                                         (ppnt->p_vaddr & PAGE_ALIGN)),
675                                                 (ppnt->p_vaddr & ADDR_ALIGN) + (unsigned long) ppnt->p_filesz,
676                                                 PROT_READ | PROT_WRITE | PROT_EXEC);
677                 }
678 #else
679                 _dl_dprintf(_dl_debug_file, "Can't modify %s's text section. Use GCC option -fPIC for shared objects, please.\n",libname);
680                 _dl_exit(1);
681 #endif
682         }
683
684         tpnt = _dl_add_elf_hash_table(libname, (char *) libaddr, dynamic_info,
685                         dynamic_addr, dynamic_size);
686
687         tpnt->ppnt = (ElfW(Phdr) *)(intptr_t) (tpnt->loadaddr + epnt->e_phoff);
688         tpnt->n_phent = epnt->e_phnum;
689
690         /*
691          * Add this object into the symbol chain
692          */
693         if (*rpnt) {
694                 (*rpnt)->next = (struct dyn_elf *) _dl_malloc(sizeof(struct dyn_elf));
695                 _dl_memset((*rpnt)->next, 0, sizeof(struct dyn_elf));
696                 (*rpnt)->next->prev = (*rpnt);
697                 *rpnt = (*rpnt)->next;
698                 (*rpnt)->dyn = tpnt;
699                 tpnt->symbol_scope = _dl_symbol_tables;
700         }
701         tpnt->usage_count++;
702         tpnt->libtype = elf_lib;
703
704         /*
705          * OK, the next thing we need to do is to insert the dynamic linker into
706          * the proper entry in the GOT so that the PLT symbols can be properly
707          * resolved.
708          */
709
710         lpnt = (unsigned long *) dynamic_info[DT_PLTGOT];
711
712         if (lpnt) {
713                 lpnt = (unsigned long *) (dynamic_info[DT_PLTGOT] +
714                                 ((int) libaddr));
715                 INIT_GOT(lpnt, tpnt);
716         };
717
718 #if defined (__SUPPORT_LD_DEBUG__)
719         if(_dl_debug) {
720                 _dl_dprintf(2, "\n\tfile='%s';  generating link map\n", libname);
721                 _dl_dprintf(2, "\t\tdynamic: %x  base: %x   size: %x\n",
722                                 dynamic_addr, libaddr, dynamic_size);
723                 _dl_dprintf(2, "\t\t  entry: %x  phdr: %x  phnum: %x\n\n",
724                                 epnt->e_entry + libaddr, tpnt->ppnt, tpnt->n_phent);
725
726         }
727 #endif
728         _dl_munmap(header, _dl_pagesize);
729
730         return tpnt;
731 }
732
733 int _dl_fixup(struct dyn_elf *rpnt, int flag)
734 {
735         int goof = 0;
736         struct elf_resolve *tpnt;
737         unsigned long reloc_size;
738
739         if (rpnt->next)
740                 goof += _dl_fixup(rpnt->next, flag);
741         tpnt = rpnt->dyn;
742
743 #if defined (__SUPPORT_LD_DEBUG__)
744         if(_dl_debug) _dl_dprintf(_dl_debug_file,"\nrelocation processing: %s", tpnt->libname);
745 #endif
746
747         if (unlikely(tpnt->dynamic_info[UNSUPPORTED_RELOC_TYPE])) {
748 #if defined (__SUPPORT_LD_DEBUG__)
749                 if(_dl_debug) {
750                         _dl_dprintf(2, "%s: can't handle %s relocation records\n",
751                                         _dl_progname, UNSUPPORTED_RELOC_STR);
752                 }
753 #endif
754                 goof++;
755                 return goof;
756         }
757
758 /* On some machines, notably SPARC & PPC, DT_REL* includes DT_JMPREL in its
759    range.  Note that according to the ELF spec, this is completely legal! */
760 #ifdef ELF_MACHINE_PLTREL_OVERLAP
761         reloc_size = tpnt->dynamic_info[DT_RELOC_TABLE_SIZE] - 
762                 tpnt->dynamic_info [DT_PLTRELSZ];
763 #else
764         reloc_size = tpnt->dynamic_info[DT_RELOC_TABLE_SIZE];
765 #endif
766         if (tpnt->dynamic_info[DT_RELOC_TABLE_ADDR]) {
767                 if (tpnt->init_flag & RELOCS_DONE)
768                         return goof;
769                 tpnt->init_flag |= RELOCS_DONE;
770                 goof += _dl_parse_relocation_information(rpnt,
771                                 tpnt->dynamic_info[DT_RELOC_TABLE_ADDR],
772                                 reloc_size, 0);
773         }
774
775         if (tpnt->dynamic_info[DT_JMPREL]) {
776                 if (tpnt->init_flag & JMP_RELOCS_DONE)
777                         return goof;
778                 tpnt->init_flag |= JMP_RELOCS_DONE;
779                 if (flag & RTLD_LAZY) {
780                         _dl_parse_lazy_relocation_information(rpnt,
781                                         tpnt->dynamic_info[DT_JMPREL],
782                                         tpnt->dynamic_info [DT_PLTRELSZ], 0);
783                 } else {
784                         goof += _dl_parse_relocation_information(rpnt,
785                                         tpnt->dynamic_info[DT_JMPREL],
786                                         tpnt->dynamic_info[DT_PLTRELSZ], 0);
787                 }
788         }
789
790         if (tpnt->init_flag & COPY_RELOCS_DONE)
791                 return goof;
792         tpnt->init_flag |= COPY_RELOCS_DONE;
793         goof += _dl_parse_copy_information(rpnt,
794                         tpnt->dynamic_info[DT_RELOC_TABLE_ADDR],
795                         tpnt->dynamic_info[DT_RELOC_TABLE_SIZE], 0);
796
797 #if defined (__SUPPORT_LD_DEBUG__)
798         if(_dl_debug) {
799                 _dl_dprintf(_dl_debug_file,"\nrelocation processing: %s", tpnt->libname);
800                 _dl_dprintf(_dl_debug_file,"; finished\n\n");
801         }
802 #endif
803
804         return goof;
805 }
806
807 /* Minimal printf which handles only %s, %d, and %x */
808 void _dl_dprintf(int fd, const char *fmt, ...)
809 {
810         int num;
811         va_list args;
812         char *start, *ptr, *string;
813         static char *buf;
814
815         buf = _dl_mmap((void *) 0, _dl_pagesize, PROT_READ | PROT_WRITE,
816                         MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
817         if (_dl_mmap_check_error(buf)) {
818                 _dl_write(fd, "mmap of a spare page failed!\n", 29);
819                 _dl_exit(20);
820         }
821
822         start = ptr = buf;
823
824         if (!fmt)
825                 return;
826
827         if (_dl_strlen(fmt) >= (_dl_pagesize - 1)) {
828                 _dl_write(fd, "overflow\n", 11);
829                 _dl_exit(20);
830         }
831
832         _dl_strcpy(buf, fmt);
833         va_start(args, fmt);
834
835         while (start) {
836                 while (*ptr != '%' && *ptr) {
837                         ptr++;
838                 }
839
840                 if (*ptr == '%') {
841                         *ptr++ = '\0';
842                         _dl_write(fd, start, _dl_strlen(start));
843
844                         switch (*ptr++) {
845                                 case 's':
846                                         string = va_arg(args, char *);
847
848                                         if (!string)
849                                                 _dl_write(fd, "(null)", 6);
850                                         else
851                                                 _dl_write(fd, string, _dl_strlen(string));
852                                         break;
853
854                                 case 'i':
855                                 case 'd':
856                                         {
857                                                 char tmp[22];
858                                                 num = va_arg(args, int);
859
860                                                 string = _dl_simple_ltoa(tmp, num);
861                                                 _dl_write(fd, string, _dl_strlen(string));
862                                                 break;
863                                         }
864                                 case 'x':
865                                 case 'X':
866                                         {
867                                                 char tmp[22];
868                                                 num = va_arg(args, int);
869
870                                                 string = _dl_simple_ltoahex(tmp, num);
871                                                 _dl_write(fd, string, _dl_strlen(string));
872                                                 break;
873                                         }
874                                 default:
875                                         _dl_write(fd, "(null)", 6);
876                                         break;
877                         }
878
879                         start = ptr;
880                 } else {
881                         _dl_write(fd, start, _dl_strlen(start));
882                         start = NULL;
883                 }
884         }
885         _dl_munmap(buf, _dl_pagesize);
886         return;
887 }
888
889 char *_dl_strdup(const char *string)
890 {
891         char *retval;
892         int len;
893
894         len = _dl_strlen(string);
895         retval = _dl_malloc(len + 1);
896         _dl_strcpy(retval, string);
897         return retval;
898 }
899