2 # Copyright (C) 1996-2001, 2002, 2003, 2004 Free Software Foundation, Inc.
3 # This file is part of the GNU C Library.
5 # The GNU C Library is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU Lesser General Public
7 # License as published by the Free Software Foundation; either
8 # version 2.1 of the License, or (at your option) any later version.
10 # The GNU C Library is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 # Lesser General Public License for more details.
15 # You should have received a copy of the GNU Lesser General Public
16 # License along with the GNU C Library; if not, write to the Free
17 # Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
21 # This is the `ldd' command, which lists what shared libraries are
22 # used by given dynamically-linked executables. It works by invoking the
23 # run-time dynamic linker as a command and setting the environment
24 # variable LD_TRACE_LOADED_OBJECTS to a non-empty value.
26 # We should be able to find the translation right at the beginning.
28 TEXTDOMAINDIR
=@TEXTDOMAINDIR@
35 while test $# -gt 0; do
37 --vers |
--versi |
--versio |
--version)
38 echo 'ldd (GNU libc) @VERSION@'
39 printf $
"Copyright (C) %s Free Software Foundation, Inc.
40 This is free software; see the source for copying conditions. There is NO
41 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
43 printf $
"Written by %s and %s.
44 " "Roland McGrath" "Ulrich Drepper"
47 --h |
--he |
--hel |
--help)
48 echo $
"Usage: ldd [OPTION]... FILE...
49 --help print this help and exit
50 --version print version information and exit
51 -d, --data-relocs process data relocations
52 -r, --function-relocs process data and function relocations
53 -u, --unused print unused direct dependencies
54 -v, --verbose print all information
55 For bug reporting instructions, please see:
56 <http://www.gnu.org/software/libc/bugs.html>."
59 -d |
--d |
--da |
--dat |
--data |
--data- |
--data-r |
--data-re | \
60 --data-rel |
--data-relo |
--data-reloc |
--data-relocs)
64 -r |
--f |
--fu |
--fun |
--func |
--funct |
--functi |
--functio | \
65 --function |
--function- |
--function-r |
--function-re |
--function-rel | \
66 --function-relo |
--function-reloc |
--function-relocs)
71 -v |
--verb |
--verbo |
--verbos |
--verbose)
75 -u |
--u |
--un |
--unu |
--unus |
--unuse |
--unused)
80 echo >&2 $
"ldd: option \`$1' is ambiguous"
83 --) # Stop option processing.
87 echo >&2 'ldd:' $
"unrecognized option" "\`$1'"
88 echo >&2 $
"Try \`ldd --help' for more information."
99 # Maybe extra code for non-ELF binaries.
103 add_env
="LD_TRACE_LOADED_OBJECTS=1 LD_WARN=$warn LD_BIND_NOW=$bind_now"
104 add_env
="$add_env LD_VERBOSE=$verbose"
105 if test "$unused" = yes; then
106 add_env
="$add_env LD_DEBUG=\"$LD_DEBUG${LD_DEBUG:+,}unused\""
110 echo >&2 'ldd:' $
"missing file arguments"
111 echo >&2 $
"Try \`ldd --help' for more information."
124 # We don't list the file name when there is only one.
125 test $single_file = t ||
echo "${file}:"
132 if test ! -f "$file"; then
133 echo "ldd: ${file}:" $
"No such file or directory" >&2
135 elif test -r "$file"; then
136 test -x "$file" ||
echo 'ldd:' $
"\
137 warning: you do not have execution permission for" "\`$file'" >&2
139 for rtld
in ${RTLDLIST}; do
140 if test -x $rtld; then
141 verify_out
=`${rtld} --verify "$file"`
144 [02]) RTLD
=${rtld}; break;;
148 if test -z "${RTLD}"; then
151 verify_out
=`${RTLD} --verify "$file"`
156 eval $add_env '"$file"' || result
=1
159 # This can be a non-ELF binary or no binary at all.
161 echo $
" not a dynamic executable"
166 # The following use of cat is needed to make ldd work in SELinux
167 # environments where the executed program might not have permissions
168 # to write to the console/tty.
169 eval $add_env \
${RTLD} '"$file"' |
cat || result
=1
172 echo 'ldd:' ${RTLD} $
"exited with unknown exit code" "($ret)" >&2
177 echo 'ldd:' $
"error: you do not have read permission for" "\`$file'" >&2