2 * A small little ldd implementation for uClibc
4 * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
6 * Several functions in this file (specifically, elf_find_section_type(),
7 * elf_find_phdr_type(), and elf_find_dynamic(), were stolen from elflib.c from
8 * elfvector (http://www.BitWagon.com/elfvector.html) by John F. Reiser
9 * <jreiser@BitWagon.com>, which is copyright 2000 BitWagon Software LLC
12 * Licensed under GPLv2 or later
18 #define MATCH_MACHINE(x) (x == EM_KVX)
19 #define ELFCLASSM ELFCLASS64
22 #if defined(__aarch64__)
23 #define MATCH_MACHINE(x) (x == EM_AARCH64)
24 #define ELFCLASSM ELFCLASS64
27 #if defined(__alpha__)
28 #define MATCH_MACHINE(x) (x == EM_ALPHA)
29 #define ELFCLASSM ELFCLASS64
33 #define MATCH_MACHINE(x) (x == EM_ARCOMPACT || x == EM_ARCV2)
34 #define ELFCLASSM ELFCLASS32
37 #if defined(__ARC64_ARCH32__)
38 #define MATCH_MACHINE(x) (x == EM_ARCV3_32)
39 #define ELFCLASSM ELFCLASS32
42 #if defined(__arm__) || defined(__thumb__)
43 #define MATCH_MACHINE(x) (x == EM_ARM)
44 #define ELFCLASSM ELFCLASS32
47 #if defined(__avr32__)
48 #define MATCH_MACHINE(x) (x == EM_AVR32)
49 #define ELFCLASSM ELFCLASS32
53 #define MATCH_MACHINE(x) (x == EM_BLACKFIN)
54 #define ELFCLASSM ELFCLASS32
57 #if defined(__TMS320C6X__)
58 #define MATCH_MACHINE(x) (x == EM_TI_C6000)
59 #define ELFCLASSM ELFCLASS32
63 #define MATCH_MACHINE(x) (x == EM_CRIS)
64 #define ELFCLASSM ELFCLASS32
68 #define MATCH_MACHINE(x) (x == EM_MCORE)
69 #define ELFCLASSM ELFCLASS32
73 #define MATCH_MACHINE(x) (x == EM_CYGNUS_FRV)
74 #define ELFCLASSM ELFCLASS32
78 #define MATCH_MACHINE(x) (x == EM_PARISC)
80 #define ELFCLASSM ELFCLASS64
82 #define ELFCLASSM ELFCLASS32
88 #define MATCH_MACHINE(x) (x == EM_386)
90 #define MATCH_MACHINE(x) (x == EM_386 || x == EM_486)
92 #define ELFCLASSM ELFCLASS32
96 #define MATCH_MACHINE(x) (x == EM_IA_64)
97 #define ELFCLASSM ELFCLASS64
100 #if defined(__mc68000__)
101 #define MATCH_MACHINE(x) (x == EM_68K)
102 #define ELFCLASSM ELFCLASS32
105 #if defined(__metag__)
106 #define MATCH_MACHINE(x) (x == EM_METAG)
107 #define ELFCLASSM ELFCLASS32
110 #if defined(__microblaze__)
111 #define MATCH_MACHINE(x) (x == EM_MICROBLAZE)
112 #define ELFCLASSM ELFCLASS32
115 #if defined(__mips__)
116 #define MATCH_MACHINE(x) (x == EM_MIPS || x == EM_MIPS_RS3_LE)
117 #define ELFCLASSM ELFCLASS32
120 #if defined(__nds32__)
121 #define MATCH_MACHINE(x) (x == EM_NDS32)
122 #define ELFCLASSM ELFCLASS32
125 #if defined(__nios2__)
126 #define MATCH_MACHINE(x) (x == EM_NIOS32)
127 #define ELFCLASSM ELFCLASS32
130 #if defined(__powerpc__)
131 #define MATCH_MACHINE(x) (x == EM_PPC)
132 #define ELFCLASSM ELFCLASS32
136 #define MATCH_MACHINE(x) (x == EM_RISCV)
137 #define ELFCLASSM ELFCLASS64
141 #define MATCH_MACHINE(x) (x == EM_SH)
142 #define ELFCLASSM ELFCLASS32
145 #if defined(__sparc__)
146 #define MATCH_MACHINE(x) ((x) == EM_SPARC || (x) == EM_SPARC32PLUS)
147 #define ELFCLASSM ELFCLASS32
150 #if defined(__x86_64__)
151 #define MATCH_MACHINE(x) (x == EM_X86_64)
152 #define ELFCLASSM ELFCLASS64
155 #if defined(__xtensa__)
156 #define MATCH_MACHINE(x) (x == EM_XTENSA)
157 #define ELFCLASSM ELFCLASS32
160 #ifndef MATCH_MACHINE
162 # include <asm/elf.h>
165 # define MATCH_MACHINE(x) (x == ELF_ARCH)
168 # define ELFCLASSM ELF_CLASS
171 #ifndef MATCH_MACHINE
172 # warning "You really should add a MATCH_MACHINE() macro for your architecture"
175 #if UCLIBC_ENDIAN_HOST == UCLIBC_ENDIAN_LITTLE
176 #define ELFDATAM ELFDATA2LSB
177 #elif UCLIBC_ENDIAN_HOST == UCLIBC_ENDIAN_BIG
178 #define ELFDATAM ELFDATA2MSB
181 #define TRUSTED_LDSO UCLIBC_RUNTIME_PREFIX "lib/" UCLIBC_LDSO
187 struct library
*next
;
189 static struct library
*lib_list
= NULL
;
190 static char not_found
[] = "not found";
191 static char *interp_name
= NULL
;
192 static char *interp_dir
= NULL
;
194 static int interpreter_already_found
= 0;
196 static __inline__
uint32_t byteswap32_to_host(uint32_t value
)
199 return (bswap_32(value
));
204 static __inline__
uint64_t byteswap64_to_host(uint64_t value
)
207 return (bswap_64(value
));
214 # define byteswap_to_host(x) byteswap64_to_host(x)
216 # define byteswap_to_host(x) byteswap32_to_host(x)
219 static ElfW(Shdr
) *elf_find_section_type(uint32_t key
, ElfW(Ehdr
) *ehdr
)
223 shdr
= (ElfW(Shdr
) *) (ehdr
->e_shoff
+ (char *)ehdr
);
224 for (j
= ehdr
->e_shnum
; --j
>= 0; ++shdr
) {
225 if (key
== byteswap32_to_host(shdr
->sh_type
)) {
232 static ElfW(Phdr
) *elf_find_phdr_type(uint32_t type
, ElfW(Ehdr
) *ehdr
)
235 ElfW(Phdr
) *phdr
= (ElfW(Phdr
) *) (ehdr
->e_phoff
+ (char *)ehdr
);
236 for (j
= ehdr
->e_phnum
; --j
>= 0; ++phdr
) {
237 if (type
== byteswap32_to_host(phdr
->p_type
)) {
244 /* Returns value if return_val==1, ptr otherwise */
245 static void *elf_find_dynamic(int64_t const key
, ElfW(Dyn
) *dynp
,
246 ElfW(Ehdr
) *ehdr
, int return_val
)
248 ElfW(Phdr
) *pt_text
= elf_find_phdr_type(PT_LOAD
, ehdr
);
249 unsigned tx_reloc
= byteswap_to_host(pt_text
->p_vaddr
) - byteswap_to_host(pt_text
->p_offset
);
250 for (; DT_NULL
!= byteswap_to_host(dynp
->d_tag
); ++dynp
) {
251 if (key
== byteswap_to_host(dynp
->d_tag
)) {
253 return (void *)byteswap_to_host(dynp
->d_un
.d_val
);
255 return (void *)(byteswap_to_host(dynp
->d_un
.d_val
) - tx_reloc
+ (char *)ehdr
);
261 static char *elf_find_rpath(ElfW(Ehdr
) *ehdr
, ElfW(Dyn
) *dynamic
)
265 for (dyns
= dynamic
; byteswap_to_host(dyns
->d_tag
) != DT_NULL
; ++dyns
) {
266 if (DT_RPATH
== byteswap_to_host(dyns
->d_tag
)) {
268 strtab
= (char *)elf_find_dynamic(DT_STRTAB
, dynamic
, ehdr
, 0);
269 return ((char *)strtab
+ byteswap_to_host(dyns
->d_un
.d_val
));
275 static int check_elf_header(ElfW(Ehdr
) *const ehdr
)
277 if (!ehdr
|| *(uint32_t*)ehdr
!= ELFMAG_U32
278 /* Use __WORDSIZE, not ELFCLASSM which depends on the host */
279 || ehdr
->e_ident
[EI_CLASS
] != (__WORDSIZE
>> 5)
280 || ehdr
->e_ident
[EI_VERSION
] != EV_CURRENT
285 /* Check if the target endianness matches the host's endianness */
286 byteswap
= !(ehdr
->e_ident
[5] == ELFDATAM
);
288 /* Be very lazy, and only byteswap the stuff we use */
290 ehdr
->e_type
= bswap_16(ehdr
->e_type
);
291 ehdr
->e_phoff
= byteswap_to_host(ehdr
->e_phoff
);
292 ehdr
->e_shoff
= byteswap_to_host(ehdr
->e_shoff
);
293 ehdr
->e_phnum
= bswap_16(ehdr
->e_phnum
);
294 ehdr
->e_shnum
= bswap_16(ehdr
->e_shnum
);
300 #ifdef __LDSO_CACHE_SUPPORT__
301 static caddr_t cache_addr
= NULL
;
302 static size_t cache_size
= 0;
304 static int map_cache(void)
312 if (cache_addr
== (caddr_t
) - 1)
314 else if (cache_addr
!= NULL
)
317 if (stat(LDSO_CACHE
, &st
) || (fd
= open(LDSO_CACHE
, O_RDONLY
)) < 0) {
318 fprintf(stderr
, "ldd: can't open cache '%s'\n", LDSO_CACHE
);
319 cache_addr
= (caddr_t
) - 1; /* so we won't try again */
323 cache_size
= st
.st_size
;
324 cache_addr
= mmap(0, cache_size
, PROT_READ
, MAP_SHARED
, fd
, 0);
326 if (cache_addr
== MAP_FAILED
) {
327 fprintf(stderr
, "ldd: can't map cache '%s'\n", LDSO_CACHE
);
331 header
= (header_t
*) cache_addr
;
333 if (cache_size
< sizeof(header_t
)
334 || memcmp(header
->magic
, LDSO_CACHE_MAGIC
, LDSO_CACHE_MAGIC_LEN
)
335 || memcmp(header
->version
, LDSO_CACHE_VER
, LDSO_CACHE_VER_LEN
)
336 || cache_size
< (sizeof(header_t
) + header
->nlibs
* sizeof(libentry_t
))
337 || cache_addr
[cache_size
- 1] != '\0')
339 fprintf(stderr
, "ldd: cache '%s' is corrupt\n", LDSO_CACHE
);
343 strtabsize
= cache_size
- sizeof(header_t
) - header
->nlibs
* sizeof(libentry_t
);
344 libent
= (libentry_t
*) & header
[1];
346 for (i
= 0; i
< header
->nlibs
; i
++) {
347 if (libent
[i
].sooffset
>= strtabsize
|| libent
[i
].liboffset
>= strtabsize
) {
348 fprintf(stderr
, "ldd: cache '%s' is corrupt\n", LDSO_CACHE
);
356 munmap(cache_addr
, cache_size
);
357 cache_addr
= (caddr_t
) - 1;
361 static int unmap_cache(void)
363 if (cache_addr
== NULL
|| cache_addr
== (caddr_t
) - 1)
367 munmap(cache_addr
, cache_size
);
374 static __inline__
void map_cache(void)
377 static __inline__
void unmap_cache(void)
382 /* This function's behavior must exactly match that
383 * in uClibc/ldso/ldso/dl-elf.c */
384 static void search_for_named_library(char *name
, char *result
,
385 const char *path_list
)
389 struct stat filestat
;
391 /* We need a writable copy of this string */
392 path
= strdup(path_list
);
394 fprintf(stderr
, "%s: Out of memory!\n", __func__
);
397 /* Eliminate all double //s */
399 while ((path_n
= strstr(path_n
, "//"))) {
401 memmove(path_n
, path_n
+ 1, i
- 1);
402 *(path_n
+ i
- 1) = '\0';
405 /* Replace colons with zeros in path_list and count them */
406 for (i
= strlen(path
); i
> 0; i
--) {
407 if (path
[i
] == ':') {
413 for (i
= 0; i
< count
; i
++) {
414 strcpy(result
, path_n
);
416 strcat(result
, name
);
417 if (stat(result
, &filestat
) == 0 && filestat
.st_mode
& S_IRUSR
) {
421 path_n
+= (strlen(path_n
) + 1);
427 static void locate_library_file(ElfW(Ehdr
) *ehdr
, ElfW(Dyn
) *dynamic
,
428 int is_suid
, struct library
*lib
)
432 struct stat filestat
;
434 /* If this is a fully resolved name, our job is easy */
435 if (stat(lib
->name
, &filestat
) == 0) {
436 lib
->path
= strdup(lib
->name
);
440 /* We need some elbow room here. Make some room... */
443 fprintf(stderr
, "%s: Out of memory!\n", __func__
);
447 /* This function must match the behavior of _dl_load_shared_library
448 * in readelflib1.c or things won't work out as expected... */
450 /* The ABI specifies that RPATH is searched first, so do that now. */
451 path
= elf_find_rpath(ehdr
, dynamic
);
453 search_for_named_library(lib
->name
, buf
, path
);
460 /* Next check LD_{ELF_}LIBRARY_PATH if specified and allowed.
461 * Since this app doesn't actually run an executable I will skip
462 * the suid check, and just use LD_{ELF_}LIBRARY_PATH if set */
466 path
= getenv("LD_LIBRARY_PATH");
468 search_for_named_library(lib
->name
, buf
, path
);
474 #ifdef __LDSO_CACHE_SUPPORT__
475 if (cache_addr
!= NULL
&& cache_addr
!= (caddr_t
) - 1) {
477 header_t
*header
= (header_t
*) cache_addr
;
478 libentry_t
*libent
= (libentry_t
*) & header
[1];
479 char *strs
= (char *)&libent
[header
->nlibs
];
481 for (i
= 0; i
< header
->nlibs
; i
++) {
482 if ((libent
[i
].flags
== LIB_ELF
||
483 libent
[i
].flags
== LIB_ELF_LIBC0
||
484 libent
[i
].flags
== LIB_ELF_LIBC5
) &&
485 strcmp(lib
->name
, strs
+ libent
[i
].sooffset
) == 0)
487 lib
->path
= strdup(strs
+ libent
[i
].liboffset
);
494 /* Next look for libraries wherever the shared library
495 * loader was installed -- this is usually where we
496 * should find things... */
498 search_for_named_library(lib
->name
, buf
, interp_dir
);
505 /* Lastly, search the standard list of paths for the library.
506 This list must exactly match the list in uClibc/ldso/ldso/dl-elf.c */
507 path
= UCLIBC_RUNTIME_PREFIX
"lib:" UCLIBC_RUNTIME_PREFIX
"usr/lib"
508 #ifndef __LDSO_CACHE_SUPPORT__
509 ":" UCLIBC_RUNTIME_PREFIX
"usr/X11R6/lib"
512 search_for_named_library(lib
->name
, buf
, path
);
517 lib
->path
= not_found
;
521 static int add_library(ElfW(Ehdr
) *ehdr
, ElfW(Dyn
) *dynamic
, int is_setuid
, char *s
)
523 char *tmp
, *tmp1
, *tmp2
;
524 struct library
*cur
, *newlib
= lib_list
;
526 if (!s
|| !strlen(s
))
536 /* We add ldso elsewhere */
537 if (interpreter_already_found
&& (tmp
= strrchr(interp_name
, '/')) != NULL
) {
538 int len
= strlen(interp_dir
);
539 if (strcmp(s
, interp_name
+ 1 + len
) == 0)
543 for (cur
= lib_list
; cur
; cur
= cur
->next
) {
544 /* Check if this library is already in the list */
545 tmp1
= tmp2
= cur
->name
;
553 if (strcmp(tmp2
, s
) == 0) {
554 /*printf("find_elf_interpreter is skipping '%s' (already in list)\n", cur->name); */
559 /* Ok, this lib needs to be added to the list */
560 newlib
= malloc(sizeof(struct library
));
563 newlib
->name
= malloc(strlen(s
) + 1);
564 strcpy(newlib
->name
, s
);
565 newlib
->resolved
= 0;
569 /* Now try and locate where this library might be living... */
570 locate_library_file(ehdr
, dynamic
, is_setuid
, newlib
);
572 /*printf("add_library is adding '%s' to '%s'\n", newlib->name, newlib->path); */
576 for (cur
= lib_list
; cur
->next
; cur
= cur
->next
) ; /* nothing */
582 static void find_needed_libraries(ElfW(Ehdr
) *ehdr
, ElfW(Dyn
) *dynamic
, int is_setuid
)
586 for (dyns
= dynamic
; byteswap_to_host(dyns
->d_tag
) != DT_NULL
; ++dyns
) {
587 if (DT_NEEDED
== byteswap_to_host(dyns
->d_tag
)) {
589 strtab
= (char *)elf_find_dynamic(DT_STRTAB
, dynamic
, ehdr
, 0);
590 add_library(ehdr
, dynamic
, is_setuid
, (char *)strtab
+ byteswap_to_host(dyns
->d_un
.d_val
));
595 #ifdef __LDSO_LDD_SUPPORT__
596 static struct library
*find_elf_interpreter(ElfW(Ehdr
) *ehdr
)
600 if (interpreter_already_found
== 1)
602 phdr
= elf_find_phdr_type(PT_INTERP
, ehdr
);
604 struct library
*cur
, *newlib
= NULL
;
605 char *s
= (char *)ehdr
+ byteswap_to_host(phdr
->p_offset
);
608 interp_name
= strdup(s
);
609 interp_dir
= strdup(s
);
610 tmp
= strrchr(interp_dir
, '/');
615 interp_dir
= interp_name
;
623 for (cur
= lib_list
; cur
; cur
= cur
->next
) {
624 /* Check if this library is already in the list */
625 if (!tmp1
|| !cur
->name
)
627 if (strcmp(cur
->name
, tmp1
) == 0) {
628 /*printf("find_elf_interpreter is replacing '%s' (already in list)\n", cur->name); */
631 if (newlib
->path
!= not_found
) {
640 newlib
= malloc(sizeof(struct library
));
643 newlib
->name
= malloc(strlen(s
) + 1);
644 strcpy(newlib
->name
, s
);
645 newlib
->path
= strdup(newlib
->name
);
646 newlib
->resolved
= 1;
650 /*printf("find_elf_interpreter is adding '%s' to '%s'\n", newlib->name, newlib->path); */
654 for (cur
= lib_list
; cur
->next
; cur
= cur
->next
) ; /* nothing */
658 interpreter_already_found
= 1;
663 #endif /* __LDSO_LDD_SUPPORT__ */
665 /* map the .so, and locate interesting pieces */
667 #warning "There may be two warnings here about vfork() clobbering, ignore them"
669 static int find_dependencies(char *filename
)
674 ElfW(Ehdr
) *ehdr
= NULL
;
675 ElfW(Shdr
) *dynsec
= NULL
;
676 ElfW(Dyn
) *dynamic
= NULL
;
677 #ifdef __LDSO_LDD_SUPPORT__
678 struct library
*interp
;
681 if (filename
== not_found
)
685 fprintf(stderr
, "No filename specified.\n");
688 if (!(thefile
= fopen(filename
, "r"))) {
692 if (fstat(fileno(thefile
), &statbuf
) < 0) {
698 if ((size_t) statbuf
.st_size
< sizeof(ElfW(Ehdr
)))
701 if (!S_ISREG(statbuf
.st_mode
))
704 /* mmap the file to make reading stuff from it effortless */
705 ehdr
= mmap(0, statbuf
.st_size
, PROT_READ
| PROT_WRITE
, MAP_PRIVATE
, fileno(thefile
), 0);
706 if (ehdr
== MAP_FAILED
) {
708 fprintf(stderr
, "mmap(%s) failed: %s\n", filename
, strerror(errno
));
715 /* Check if this looks like a legit ELF file */
716 if (check_elf_header(ehdr
)) {
717 fprintf(stderr
, "%s: not an ELF file.\n", filename
);
720 /* Check if this is the right kind of ELF file */
721 if (ehdr
->e_type
!= ET_EXEC
&& ehdr
->e_type
!= ET_DYN
) {
722 fprintf(stderr
, "%s: not a dynamic executable\n", filename
);
725 if (ehdr
->e_type
== ET_EXEC
|| ehdr
->e_type
== ET_DYN
) {
726 if (statbuf
.st_mode
& S_ISUID
)
728 if ((statbuf
.st_mode
& (S_ISGID
| S_IXGRP
)) == (S_ISGID
| S_IXGRP
))
732 fprintf(stderr
, "%s: is setuid\n", filename
);
735 interpreter_already_found
= 0;
736 #ifdef __LDSO_LDD_SUPPORT__
737 interp
= find_elf_interpreter(ehdr
);
740 && (ehdr
->e_type
== ET_EXEC
|| ehdr
->e_type
== ET_DYN
)
741 && ehdr
->e_ident
[EI_CLASS
] == ELFCLASSM
742 && ehdr
->e_ident
[EI_DATA
] == ELFDATAM
743 && ehdr
->e_ident
[EI_VERSION
] == EV_CURRENT
744 && MATCH_MACHINE(ehdr
->e_machine
))
747 if (stat(interp
->path
, &st
) == 0 && S_ISREG(st
.st_mode
)) {
750 static const char *const environment
[] = {
751 "PATH=/usr/bin:/bin:/usr/sbin:/sbin",
753 "LD_TRACE_LOADED_OBJECTS=1",
756 # ifdef __LDSO_STANDALONE_SUPPORT__
757 char * lib_path
= getenv("LD_LIBRARY_PATH");
759 /* The 'extended' environment inclusing the LD_LIBRARY_PATH */
760 static char *ext_environment
[ARRAY_SIZE(environment
) + 1];
761 char **envp
= (char **) environment
;
765 * If the LD_LIBRARY_PATH is set, it needs to include it
766 * into the environment for the new process to be spawned
768 char ** eenvp
= (char **) ext_environment
;
770 /* Copy the N-1 environment's entries */
774 /* Make room for LD_LIBRARY_PATH */
775 *eenvp
= (char *) malloc(sizeof("LD_LIBRARY_PATH=")
777 strcpy(*eenvp
, "LD_LIBRARY_PATH=");
778 strcat(*eenvp
, lib_path
);
780 /* ext_environment[size] is already NULL */
782 /* Use the extended environment */
783 envp
= ext_environment
;
785 if ((pid
= vfork()) == 0) {
787 * Force to use the standard dynamic linker in stand-alone mode.
788 * It will fails at runtime if support is not actually available
790 execle(TRUSTED_LDSO
, TRUSTED_LDSO
, filename
, NULL
, envp
);
794 if ((pid
= vfork()) == 0) {
795 /* Cool, it looks like we should be able to actually
796 * run this puppy. Do so now... */
797 execle(filename
, filename
, NULL
, environment
);
801 /* Wait till it returns */
802 waitpid(pid
, &status
, 0);
804 # ifdef __LDSO_STANDALONE_SUPPORT__
809 if (WIFEXITED(status
) && WEXITSTATUS(status
) == 0) {
813 /* If the exec failed, we fall through to trying to find
814 * all the needed libraries ourselves by rummaging about
815 * in the ELF headers... */
820 dynsec
= elf_find_section_type(SHT_DYNAMIC
, ehdr
);
822 dynamic
= (ElfW(Dyn
) *) (byteswap_to_host(dynsec
->sh_offset
) + (char *)ehdr
);
823 find_needed_libraries(ehdr
, dynamic
, is_suid
);
829 int main(int argc
, char **argv
)
833 char *filename
= NULL
;
837 fprintf(stderr
, "ldd: missing file arguments\n"
838 "Try `ldd --help' for more information.\n");
847 if (strcmp(*argv
, "--") == 0) {
852 if (strcmp(*argv
, "--help") == 0 || strcmp(*argv
, "-h") == 0) {
853 fprintf(stderr
, "Usage: ldd [OPTION]... FILE...\n"
854 "\t--help\t\tprint this help and exit\n");
860 fprintf(stderr
, "No filename specified.\n");
865 printf("%s:\n", *argv
);
870 if (find_dependencies(filename
) != 0)
875 /* Keep walking the list till everybody is resolved */
876 for (cur
= lib_list
; cur
; cur
= cur
->next
) {
877 if (cur
->resolved
== 0 && cur
->path
) {
879 printf("checking sub-depends for '%s'\n", cur
->path
);
880 find_dependencies(cur
->path
);
890 for (cur
= lib_list
; cur
; cur
= cur
->next
) {
892 printf("\t%s => %s (0x00000000)\n", cur
->name
, cur
->path
);
894 if (interp_name
&& interpreter_already_found
== 1)
895 printf("\t%s => %s (0x00000000)\n", interp_name
, interp_name
);
897 printf("\tnot a dynamic executable\n");
899 for (cur
= lib_list
; cur
; cur
= cur
->next
) {
902 if (cur
->path
&& cur
->path
!= not_found
) {