OSDN Git Service

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