1 /* vi: set sw=4 ts=4: */
3 * A small little ldd implementation for uClibc
5 * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
7 * Several functions in this file (specifically, elf_find_section_type(),
8 * elf_find_phdr_type(), and elf_find_dynamic(), were stolen from elflib.c from
9 * elfvector (http://www.BitWagon.com/elfvector.html) by John F. Reiser
10 * <jreiser@BitWagon.com>, which is copyright 2000 BitWagon Software LLC
13 * Licensed under GPLv2 or later
18 #if defined(__alpha__)
19 #define MATCH_MACHINE(x) (x == EM_ALPHA)
20 #define ELFCLASSM ELFCLASS64
24 #define MATCH_MACHINE(x) (x == EM_ARCOMPACT)
25 #define ELFCLASSM ELFCLASS32
28 #if defined(__arm__) || defined(__thumb__)
29 #define MATCH_MACHINE(x) (x == EM_ARM)
30 #define ELFCLASSM ELFCLASS32
33 #if defined(__avr32__)
34 #define MATCH_MACHINE(x) (x == EM_AVR32)
35 #define ELFCLASSM ELFCLASS32
39 #define MATCH_MACHINE(x) (x == EM_BLACKFIN)
40 #define ELFCLASSM ELFCLASS32
44 #define MATCH_MACHINE(x) (x == EM_S390)
45 #define ELFCLASSM ELFCLASS32
49 #define MATCH_MACHINE(x) (x == EM_PARISC)
51 #define ELFCLASSM ELFCLASS64
53 #define ELFCLASSM ELFCLASS32
59 #define MATCH_MACHINE(x) (x == EM_386)
61 #define MATCH_MACHINE(x) (x == EM_386 || x == EM_486)
63 #define ELFCLASSM ELFCLASS32
67 #define MATCH_MACHINE(x) (x == EM_IA_64)
68 #define ELFCLASSM ELFCLASS64
71 #if defined(__mc68000__)
72 #define MATCH_MACHINE(x) (x == EM_68K)
73 #define ELFCLASSM ELFCLASS32
76 #if defined(__metag__)
77 #define MATCH_MACHINE(x) (x == EM_METAG)
78 #define ELFCLASSM ELFCLASS32
82 #define MATCH_MACHINE(x) (x == EM_MIPS || x == EM_MIPS_RS3_LE)
83 #define ELFCLASSM ELFCLASS32
86 #if defined(__powerpc64__)
87 #define MATCH_MACHINE(x) (x == EM_PPC64)
88 #define ELFCLASSM ELFCLASS64
89 #elif defined(__powerpc__)
90 #define MATCH_MACHINE(x) (x == EM_PPC)
91 #define ELFCLASSM ELFCLASS32
95 #define MATCH_MACHINE(x) (x == EM_SH)
96 #define ELFCLASSM ELFCLASS32
99 #if defined(__sparc__)
100 #define MATCH_MACHINE(x) ((x) == EM_SPARC || (x) == EM_SPARC32PLUS)
101 #define ELFCLASSM ELFCLASS32
104 #if defined(__cris__)
105 #define MATCH_MACHINE(x) (x == EM_CRIS)
106 #define ELFCLASSM ELFCLASS32
109 #if defined(__x86_64__)
110 #define MATCH_MACHINE(x) (x == EM_X86_64)
111 #define ELFCLASSM ELFCLASS64
114 #if defined(__microblaze__)
115 #define MATCH_MACHINE(x) (x == EM_MICROBLAZE)
116 #define ELFCLASSM ELFCLASS32
119 #if defined(__xtensa__)
120 #define MATCH_MACHINE(x) (x == EM_XTENSA)
121 #define ELFCLASSM ELFCLASS32
124 #ifndef MATCH_MACHINE
126 # include <asm/elf.h>
129 # define MATCH_MACHINE(x) (x == ELF_ARCH)
132 # define ELFCLASSM ELF_CLASS
135 #ifndef MATCH_MACHINE
136 # warning "You really should add a MATCH_MACHINE() macro for your architecture"
139 #if UCLIBC_ENDIAN_HOST == UCLIBC_ENDIAN_LITTLE
140 #define ELFDATAM ELFDATA2LSB
141 #elif UCLIBC_ENDIAN_HOST == UCLIBC_ENDIAN_BIG
142 #define ELFDATAM ELFDATA2MSB
145 #define TRUSTED_LDSO UCLIBC_RUNTIME_PREFIX "lib/" UCLIBC_LDSO
151 struct library
*next
;
153 static struct library
*lib_list
= NULL
;
154 static char not_found
[] = "not found";
155 static char *interp_name
= NULL
;
156 static char *interp_dir
= NULL
;
158 static int interpreter_already_found
= 0;
160 static __inline__
uint32_t byteswap32_to_host(uint32_t value
)
163 return (bswap_32(value
));
168 static __inline__
uint64_t byteswap64_to_host(uint64_t value
)
171 return (bswap_64(value
));
178 # define byteswap_to_host(x) byteswap64_to_host(x)
180 # define byteswap_to_host(x) byteswap32_to_host(x)
183 static ElfW(Shdr
) *elf_find_section_type(uint32_t key
, ElfW(Ehdr
) *ehdr
)
187 shdr
= (ElfW(Shdr
) *) (ehdr
->e_shoff
+ (char *)ehdr
);
188 for (j
= ehdr
->e_shnum
; --j
>= 0; ++shdr
) {
189 if (key
== byteswap32_to_host(shdr
->sh_type
)) {
196 static ElfW(Phdr
) *elf_find_phdr_type(uint32_t type
, ElfW(Ehdr
) *ehdr
)
199 ElfW(Phdr
) *phdr
= (ElfW(Phdr
) *) (ehdr
->e_phoff
+ (char *)ehdr
);
200 for (j
= ehdr
->e_phnum
; --j
>= 0; ++phdr
) {
201 if (type
== byteswap32_to_host(phdr
->p_type
)) {
208 /* Returns value if return_val==1, ptr otherwise */
209 static void *elf_find_dynamic(int64_t const key
, ElfW(Dyn
) *dynp
,
210 ElfW(Ehdr
) *ehdr
, int return_val
)
212 ElfW(Phdr
) *pt_text
= elf_find_phdr_type(PT_LOAD
, ehdr
);
213 unsigned tx_reloc
= byteswap_to_host(pt_text
->p_vaddr
) - byteswap_to_host(pt_text
->p_offset
);
214 for (; DT_NULL
!= byteswap_to_host(dynp
->d_tag
); ++dynp
) {
215 if (key
== byteswap_to_host(dynp
->d_tag
)) {
217 return (void *)byteswap_to_host(dynp
->d_un
.d_val
);
219 return (void *)(byteswap_to_host(dynp
->d_un
.d_val
) - tx_reloc
+ (char *)ehdr
);
225 static char *elf_find_rpath(ElfW(Ehdr
) *ehdr
, ElfW(Dyn
) *dynamic
)
229 for (dyns
= dynamic
; byteswap_to_host(dyns
->d_tag
) != DT_NULL
; ++dyns
) {
230 if (DT_RPATH
== byteswap_to_host(dyns
->d_tag
)) {
232 strtab
= (char *)elf_find_dynamic(DT_STRTAB
, dynamic
, ehdr
, 0);
233 return ((char *)strtab
+ byteswap_to_host(dyns
->d_un
.d_val
));
239 static int check_elf_header(ElfW(Ehdr
) *const ehdr
)
241 if (!ehdr
|| *(uint32_t*)ehdr
!= ELFMAG_U32
242 /* Use __WORDSIZE, not ELFCLASSM which depends on the host */
243 || ehdr
->e_ident
[EI_CLASS
] != (__WORDSIZE
>> 5)
244 || ehdr
->e_ident
[EI_VERSION
] != EV_CURRENT
249 /* Check if the target endianness matches the host's endianness */
250 byteswap
= !(ehdr
->e_ident
[5] == ELFDATAM
);
252 /* Be very lazy, and only byteswap the stuff we use */
254 ehdr
->e_type
= bswap_16(ehdr
->e_type
);
255 ehdr
->e_phoff
= byteswap_to_host(ehdr
->e_phoff
);
256 ehdr
->e_shoff
= byteswap_to_host(ehdr
->e_shoff
);
257 ehdr
->e_phnum
= bswap_16(ehdr
->e_phnum
);
258 ehdr
->e_shnum
= bswap_16(ehdr
->e_shnum
);
264 #ifdef __LDSO_CACHE_SUPPORT__
265 static caddr_t cache_addr
= NULL
;
266 static size_t cache_size
= 0;
268 static int map_cache(void)
276 if (cache_addr
== (caddr_t
) - 1)
278 else if (cache_addr
!= NULL
)
281 if (stat(LDSO_CACHE
, &st
) || (fd
= open(LDSO_CACHE
, O_RDONLY
)) < 0) {
282 fprintf(stderr
, "ldd: can't open cache '%s'\n", LDSO_CACHE
);
283 cache_addr
= (caddr_t
) - 1; /* so we won't try again */
287 cache_size
= st
.st_size
;
288 cache_addr
= mmap(0, cache_size
, PROT_READ
, MAP_SHARED
, fd
, 0);
290 if (cache_addr
== MAP_FAILED
) {
291 fprintf(stderr
, "ldd: can't map cache '%s'\n", LDSO_CACHE
);
295 header
= (header_t
*) cache_addr
;
297 if (cache_size
< sizeof(header_t
)
298 || memcmp(header
->magic
, LDSO_CACHE_MAGIC
, LDSO_CACHE_MAGIC_LEN
)
299 || memcmp(header
->version
, LDSO_CACHE_VER
, LDSO_CACHE_VER_LEN
)
300 || cache_size
< (sizeof(header_t
) + header
->nlibs
* sizeof(libentry_t
))
301 || cache_addr
[cache_size
- 1] != '\0')
303 fprintf(stderr
, "ldd: cache '%s' is corrupt\n", LDSO_CACHE
);
307 strtabsize
= cache_size
- sizeof(header_t
) - header
->nlibs
* sizeof(libentry_t
);
308 libent
= (libentry_t
*) & header
[1];
310 for (i
= 0; i
< header
->nlibs
; i
++) {
311 if (libent
[i
].sooffset
>= strtabsize
|| libent
[i
].liboffset
>= strtabsize
) {
312 fprintf(stderr
, "ldd: cache '%s' is corrupt\n", LDSO_CACHE
);
320 munmap(cache_addr
, cache_size
);
321 cache_addr
= (caddr_t
) - 1;
325 static int unmap_cache(void)
327 if (cache_addr
== NULL
|| cache_addr
== (caddr_t
) - 1)
331 munmap(cache_addr
, cache_size
);
338 static __inline__
void map_cache(void)
341 static __inline__
void unmap_cache(void)
346 /* This function's behavior must exactly match that
347 * in uClibc/ldso/ldso/dl-elf.c */
348 static void search_for_named_library(char *name
, char *result
,
349 const char *path_list
)
353 struct stat filestat
;
355 /* We need a writable copy of this string */
356 path
= strdup(path_list
);
358 fprintf(stderr
, "%s: Out of memory!\n", __func__
);
361 /* Eliminate all double //s */
363 while ((path_n
= strstr(path_n
, "//"))) {
365 memmove(path_n
, path_n
+ 1, i
- 1);
366 *(path_n
+ i
- 1) = '\0';
369 /* Replace colons with zeros in path_list and count them */
370 for (i
= strlen(path
); i
> 0; i
--) {
371 if (path
[i
] == ':') {
377 for (i
= 0; i
< count
; i
++) {
378 strcpy(result
, path_n
);
380 strcat(result
, name
);
381 if (stat(result
, &filestat
) == 0 && filestat
.st_mode
& S_IRUSR
) {
385 path_n
+= (strlen(path_n
) + 1);
391 static void locate_library_file(ElfW(Ehdr
) *ehdr
, ElfW(Dyn
) *dynamic
,
392 int is_suid
, struct library
*lib
)
396 struct stat filestat
;
398 /* If this is a fully resolved name, our job is easy */
399 if (stat(lib
->name
, &filestat
) == 0) {
400 lib
->path
= strdup(lib
->name
);
404 /* We need some elbow room here. Make some room... */
407 fprintf(stderr
, "%s: Out of memory!\n", __func__
);
411 /* This function must match the behavior of _dl_load_shared_library
412 * in readelflib1.c or things won't work out as expected... */
414 /* The ABI specifies that RPATH is searched first, so do that now. */
415 path
= elf_find_rpath(ehdr
, dynamic
);
417 search_for_named_library(lib
->name
, buf
, path
);
424 /* Next check LD_{ELF_}LIBRARY_PATH if specified and allowed.
425 * Since this app doesn't actually run an executable I will skip
426 * the suid check, and just use LD_{ELF_}LIBRARY_PATH if set */
430 path
= getenv("LD_LIBRARY_PATH");
432 search_for_named_library(lib
->name
, buf
, path
);
438 #ifdef __LDSO_CACHE_SUPPORT__
439 if (cache_addr
!= NULL
&& cache_addr
!= (caddr_t
) - 1) {
441 header_t
*header
= (header_t
*) cache_addr
;
442 libentry_t
*libent
= (libentry_t
*) & header
[1];
443 char *strs
= (char *)&libent
[header
->nlibs
];
445 for (i
= 0; i
< header
->nlibs
; i
++) {
446 if ((libent
[i
].flags
== LIB_ELF
||
447 libent
[i
].flags
== LIB_ELF_LIBC0
||
448 libent
[i
].flags
== LIB_ELF_LIBC5
) &&
449 strcmp(lib
->name
, strs
+ libent
[i
].sooffset
) == 0)
451 lib
->path
= strdup(strs
+ libent
[i
].liboffset
);
458 /* Next look for libraries wherever the shared library
459 * loader was installed -- this is usually where we
460 * should find things... */
462 search_for_named_library(lib
->name
, buf
, interp_dir
);
469 /* Lastly, search the standard list of paths for the library.
470 This list must exactly match the list in uClibc/ldso/ldso/dl-elf.c */
471 path
= UCLIBC_RUNTIME_PREFIX
"lib:" UCLIBC_RUNTIME_PREFIX
"usr/lib"
472 #ifndef __LDSO_CACHE_SUPPORT__
473 ":" UCLIBC_RUNTIME_PREFIX
"usr/X11R6/lib"
476 search_for_named_library(lib
->name
, buf
, path
);
481 lib
->path
= not_found
;
485 static int add_library(ElfW(Ehdr
) *ehdr
, ElfW(Dyn
) *dynamic
, int is_setuid
, char *s
)
487 char *tmp
, *tmp1
, *tmp2
;
488 struct library
*cur
, *newlib
= lib_list
;
490 if (!s
|| !strlen(s
))
500 /* We add ldso elsewhere */
501 if (interpreter_already_found
&& (tmp
= strrchr(interp_name
, '/')) != NULL
) {
502 int len
= strlen(interp_dir
);
503 if (strcmp(s
, interp_name
+ 1 + len
) == 0)
507 for (cur
= lib_list
; cur
; cur
= cur
->next
) {
508 /* Check if this library is already in the list */
509 tmp1
= tmp2
= cur
->name
;
517 if (strcmp(tmp2
, s
) == 0) {
518 /*printf("find_elf_interpreter is skipping '%s' (already in list)\n", cur->name); */
523 /* Ok, this lib needs to be added to the list */
524 newlib
= malloc(sizeof(struct library
));
527 newlib
->name
= malloc(strlen(s
) + 1);
528 strcpy(newlib
->name
, s
);
529 newlib
->resolved
= 0;
533 /* Now try and locate where this library might be living... */
534 locate_library_file(ehdr
, dynamic
, is_setuid
, newlib
);
536 /*printf("add_library is adding '%s' to '%s'\n", newlib->name, newlib->path); */
540 for (cur
= lib_list
; cur
->next
; cur
= cur
->next
) ; /* nothing */
546 static void find_needed_libraries(ElfW(Ehdr
) *ehdr
, ElfW(Dyn
) *dynamic
, int is_setuid
)
550 for (dyns
= dynamic
; byteswap_to_host(dyns
->d_tag
) != DT_NULL
; ++dyns
) {
551 if (DT_NEEDED
== byteswap_to_host(dyns
->d_tag
)) {
553 strtab
= (char *)elf_find_dynamic(DT_STRTAB
, dynamic
, ehdr
, 0);
554 add_library(ehdr
, dynamic
, is_setuid
, (char *)strtab
+ byteswap_to_host(dyns
->d_un
.d_val
));
559 #ifdef __LDSO_LDD_SUPPORT__
560 static struct library
*find_elf_interpreter(ElfW(Ehdr
) *ehdr
)
564 if (interpreter_already_found
== 1)
566 phdr
= elf_find_phdr_type(PT_INTERP
, ehdr
);
568 struct library
*cur
, *newlib
= NULL
;
569 char *s
= (char *)ehdr
+ byteswap_to_host(phdr
->p_offset
);
572 interp_name
= strdup(s
);
573 interp_dir
= strdup(s
);
574 tmp
= strrchr(interp_dir
, '/');
579 interp_dir
= interp_name
;
587 for (cur
= lib_list
; cur
; cur
= cur
->next
) {
588 /* Check if this library is already in the list */
589 if (!tmp1
|| !cur
->name
)
591 if (strcmp(cur
->name
, tmp1
) == 0) {
592 /*printf("find_elf_interpreter is replacing '%s' (already in list)\n", cur->name); */
595 if (newlib
->path
!= not_found
) {
604 newlib
= malloc(sizeof(struct library
));
607 newlib
->name
= malloc(strlen(s
) + 1);
608 strcpy(newlib
->name
, s
);
609 newlib
->path
= strdup(newlib
->name
);
610 newlib
->resolved
= 1;
614 /*printf("find_elf_interpreter is adding '%s' to '%s'\n", newlib->name, newlib->path); */
618 for (cur
= lib_list
; cur
->next
; cur
= cur
->next
) ; /* nothing */
622 interpreter_already_found
= 1;
627 #endif /* __LDSO_LDD_SUPPORT__ */
629 /* map the .so, and locate interesting pieces */
631 #warning "There may be two warnings here about vfork() clobbering, ignore them"
633 static int find_dependencies(char *filename
)
638 ElfW(Ehdr
) *ehdr
= NULL
;
639 ElfW(Shdr
) *dynsec
= NULL
;
640 ElfW(Dyn
) *dynamic
= NULL
;
641 #ifdef __LDSO_LDD_SUPPORT__
642 struct library
*interp
;
645 if (filename
== not_found
)
649 fprintf(stderr
, "No filename specified.\n");
652 if (!(thefile
= fopen(filename
, "r"))) {
656 if (fstat(fileno(thefile
), &statbuf
) < 0) {
662 if ((size_t) statbuf
.st_size
< sizeof(ElfW(Ehdr
)))
665 if (!S_ISREG(statbuf
.st_mode
))
668 /* mmap the file to make reading stuff from it effortless */
669 ehdr
= mmap(0, statbuf
.st_size
, PROT_READ
| PROT_WRITE
, MAP_PRIVATE
, fileno(thefile
), 0);
670 if (ehdr
== MAP_FAILED
) {
672 fprintf(stderr
, "mmap(%s) failed: %s\n", filename
, strerror(errno
));
679 /* Check if this looks like a legit ELF file */
680 if (check_elf_header(ehdr
)) {
681 fprintf(stderr
, "%s: not an ELF file.\n", filename
);
684 /* Check if this is the right kind of ELF file */
685 if (ehdr
->e_type
!= ET_EXEC
&& ehdr
->e_type
!= ET_DYN
) {
686 fprintf(stderr
, "%s: not a dynamic executable\n", filename
);
689 if (ehdr
->e_type
== ET_EXEC
|| ehdr
->e_type
== ET_DYN
) {
690 if (statbuf
.st_mode
& S_ISUID
)
692 if ((statbuf
.st_mode
& (S_ISGID
| S_IXGRP
)) == (S_ISGID
| S_IXGRP
))
696 fprintf(stderr
, "%s: is setuid\n", filename
);
699 interpreter_already_found
= 0;
700 #ifdef __LDSO_LDD_SUPPORT__
701 interp
= find_elf_interpreter(ehdr
);
704 && (ehdr
->e_type
== ET_EXEC
|| ehdr
->e_type
== ET_DYN
)
705 && ehdr
->e_ident
[EI_CLASS
] == ELFCLASSM
706 && ehdr
->e_ident
[EI_DATA
] == ELFDATAM
707 && ehdr
->e_ident
[EI_VERSION
] == EV_CURRENT
708 && MATCH_MACHINE(ehdr
->e_machine
))
711 if (stat(interp
->path
, &st
) == 0 && S_ISREG(st
.st_mode
)) {
714 static const char *const environment
[] = {
715 "PATH=/usr/bin:/bin:/usr/sbin:/sbin",
717 "LD_TRACE_LOADED_OBJECTS=1",
720 # ifdef __LDSO_STANDALONE_SUPPORT__
721 char * lib_path
= getenv("LD_LIBRARY_PATH");
723 /* The 'extended' environment inclusing the LD_LIBRARY_PATH */
724 static char *ext_environment
[ARRAY_SIZE(environment
) + 1];
725 char **envp
= (char **) environment
;
729 * If the LD_LIBRARY_PATH is set, it needs to include it
730 * into the environment for the new process to be spawned
732 char ** eenvp
= (char **) ext_environment
;
734 /* Copy the N-1 environment's entries */
738 /* Make room for LD_LIBRARY_PATH */
739 *eenvp
= (char *) malloc(sizeof("LD_LIBRARY_PATH=")
741 strcpy(*eenvp
, "LD_LIBRARY_PATH=");
742 strcat(*eenvp
, lib_path
);
744 /* ext_environment[size] is already NULL */
746 /* Use the extended environment */
747 envp
= ext_environment
;
749 if ((pid
= vfork()) == 0) {
751 * Force to use the standard dynamic linker in stand-alone mode.
752 * It will fails at runtime if support is not actually available
754 execle(TRUSTED_LDSO
, TRUSTED_LDSO
, filename
, NULL
, envp
);
758 if ((pid
= vfork()) == 0) {
759 /* Cool, it looks like we should be able to actually
760 * run this puppy. Do so now... */
761 execle(filename
, filename
, NULL
, environment
);
765 /* Wait till it returns */
766 waitpid(pid
, &status
, 0);
768 # ifdef __LDSO_STANDALONE_SUPPORT__
773 if (WIFEXITED(status
) && WEXITSTATUS(status
) == 0) {
777 /* If the exec failed, we fall through to trying to find
778 * all the needed libraries ourselves by rummaging about
779 * in the ELF headers... */
784 dynsec
= elf_find_section_type(SHT_DYNAMIC
, ehdr
);
786 dynamic
= (ElfW(Dyn
) *) (byteswap_to_host(dynsec
->sh_offset
) + (char *)ehdr
);
787 find_needed_libraries(ehdr
, dynamic
, is_suid
);
793 int main(int argc
, char **argv
)
797 char *filename
= NULL
;
801 fprintf(stderr
, "ldd: missing file arguments\n"
802 "Try `ldd --help' for more information.\n");
811 if (strcmp(*argv
, "--") == 0) {
816 if (strcmp(*argv
, "--help") == 0 || strcmp(*argv
, "-h") == 0) {
817 fprintf(stderr
, "Usage: ldd [OPTION]... FILE...\n"
818 "\t--help\t\tprint this help and exit\n");
824 fprintf(stderr
, "No filename specified.\n");
829 printf("%s:\n", *argv
);
834 if (find_dependencies(filename
) != 0)
839 /* Keep walking the list till everybody is resolved */
840 for (cur
= lib_list
; cur
; cur
= cur
->next
) {
841 if (cur
->resolved
== 0 && cur
->path
) {
843 printf("checking sub-depends for '%s'\n", cur
->path
);
844 find_dependencies(cur
->path
);
854 for (cur
= lib_list
; cur
; cur
= cur
->next
) {
856 printf("\t%s => %s (0x00000000)\n", cur
->name
, cur
->path
);
858 if (interp_name
&& interpreter_already_found
== 1)
859 printf("\t%s => %s (0x00000000)\n", interp_name
, interp_name
);
861 printf("\tnot a dynamic executable\n");
863 for (cur
= lib_list
; cur
; cur
= cur
->next
) {
866 if (cur
->path
&& cur
->path
!= not_found
) {