ldd
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:5k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #! /bin/sh
  2. # Copyright (C) 1996-2004, 2005 Free Software Foundation, Inc.
  3. # This file is part of the GNU C Library.
  4. # The GNU C Library is free software; you can redistribute it and/or
  5. # modify it under the terms of the GNU Lesser General Public
  6. # License as published by the Free Software Foundation; either
  7. # version 2.1 of the License, or (at your option) any later version.
  8. # The GNU C Library is distributed in the hope that it will be useful,
  9. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11. # Lesser General Public License for more details.
  12. # You should have received a copy of the GNU Lesser General Public
  13. # License along with the GNU C Library; if not, write to the Free
  14. # Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  15. # 02111-1307 USA.
  16. # This is the `ldd' command, which lists what shared libraries are
  17. # used by given dynamically-linked executables.  It works by invoking the
  18. # run-time dynamic linker as a command and setting the environment
  19. # variable LD_TRACE_LOADED_OBJECTS to a non-empty value.
  20. # We should be able to find the translation right at the beginning.
  21. TEXTDOMAIN=libc
  22. TEXTDOMAINDIR=/usr/share/locale
  23. RTLDLIST=/lib/ld-linux.so.2
  24. warn=
  25. bind_now=
  26. verbose=
  27. while test $# -gt 0; do
  28.   case "$1" in
  29.   --vers | --versi | --versio | --version)
  30.     echo 'ldd (GNU libc) 2.3.5'
  31.     printf $"Copyright (C) %s Free Software Foundation, Inc.
  32. This is free software; see the source for copying conditions.  There is NO
  33. warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  34. " "2005"
  35.     printf $"Written by %s and %s.
  36. " "Roland McGrath" "Ulrich Drepper"
  37.     exit 0
  38.     ;;
  39.   --h | --he | --hel | --help)
  40.     echo $"Usage: ldd [OPTION]... FILE...
  41.       --help              print this help and exit
  42.       --version           print version information and exit
  43.   -d, --data-relocs       process data relocations
  44.   -r, --function-relocs   process data and function relocations
  45.   -u, --unused            print unused direct dependencies
  46.   -v, --verbose           print all information
  47. For bug reporting instructions, please see:
  48. <http://www.gnu.org/software/libc/bugs.html>."
  49.     exit 0
  50.     ;;
  51.   -d | --d | --da | --dat | --data | --data- | --data-r | --data-re | 
  52.   --data-rel | --data-relo | --data-reloc | --data-relocs)
  53.     warn=yes
  54.     shift
  55.     ;;
  56.   -r | --f | --fu | --fun | --func | --funct | --functi | --functio | 
  57.   --function | --function- | --function-r | --function-re | --function-rel | 
  58.   --function-relo | --function-reloc | --function-relocs)
  59.     warn=yes
  60.     bind_now=yes
  61.     shift
  62.     ;;
  63.   -v | --verb | --verbo | --verbos | --verbose)
  64.     verbose=yes
  65.     shift
  66.     ;;
  67.   -u | --u | --un | --unu | --unus | --unuse | --unused)
  68.     unused=yes
  69.     shift
  70.     ;;
  71.   --v | --ve | --ver)
  72.     echo >&2 $"ldd: option `$1' is ambiguous"
  73.     exit 1
  74.     ;;
  75.   --) # Stop option processing.
  76.     shift; break
  77.     ;;
  78.   -*)
  79.     echo >&2 'ldd:' $"unrecognized option" "`$1'"
  80.     echo >&2 $"Try `ldd --help' for more information."
  81.     exit 1
  82.     ;;
  83.   *)
  84.     break
  85.     ;;
  86.   esac
  87. done
  88. nonelf ()
  89. {
  90.   # Maybe extra code for non-ELF binaries.
  91.   return 1;
  92. }
  93. add_env="LD_TRACE_LOADED_OBJECTS=1 LD_WARN=$warn LD_BIND_NOW=$bind_now"
  94. add_env="$add_env LD_VERBOSE=$verbose"
  95. if test "$unused" = yes; then
  96.   add_env="$add_env LD_DEBUG="$LD_DEBUG${LD_DEBUG:+,}unused""
  97. fi
  98. # The following use of cat is needed to make ldd work in SELinux
  99. # environments where the executed program might not have permissions
  100. # to write to the console/tty.  But only bash 3.x supports the pipefail
  101. # option, and we don't bother to handle the case for older bash versions.
  102. if set -o pipefail 2> /dev/null; then
  103.   try_trace() {
  104.     eval $add_env '"$@"' | cat
  105.   }
  106. else
  107.   try_trace() {
  108.     eval $add_env '"$@"'
  109.   }
  110. fi
  111. case $# in
  112. 0)
  113.   echo >&2 'ldd:' $"missing file arguments"
  114.   echo >&2 $"Try `ldd --help' for more information."
  115.   exit 1
  116.   ;;
  117. 1)
  118.   single_file=t
  119.   ;;
  120. *)
  121.   single_file=f
  122.   ;;
  123. esac
  124. result=0
  125. for file do
  126.   # We don't list the file name when there is only one.
  127.   test $single_file = t || echo "${file}:"
  128.   case $file in
  129.   */*) :
  130.        ;;
  131.   *) file=./$file
  132.      ;;
  133.   esac
  134.   if test ! -f "$file"; then
  135.     echo "ldd: ${file}:" $"No such file or directory" >&2
  136.     result=1
  137.   elif test -r "$file"; then
  138.     test -x "$file" || echo 'ldd:' $"
  139. warning: you do not have execution permission for" "`$file'" >&2
  140.     RTLD=
  141.     for rtld in ${RTLDLIST}; do
  142.       if test -x $rtld; then
  143. verify_out=`${rtld} --verify "$file"`
  144.         ret=$?
  145. case $ret in
  146. [02]) RTLD=${rtld}; break;;
  147. esac
  148.       fi
  149.     done
  150.     if test -z "${RTLD}"; then
  151.       set ${RTLDLIST}
  152.       RTLD=$1
  153.       verify_out=`${RTLD} --verify "$file"`
  154.       ret=$?
  155.     fi
  156.     case $ret in
  157.     0)
  158.       # If the program exits with exit code 5, it means the process has been
  159.       # invoked with __libc_enable_secure.  Fall back to running it through
  160.       # the dynamic linker.
  161.       try_trace "$file"
  162.       rc=$?
  163.       if [ $rc = 5 ]; then
  164. try_trace "$RTLD" "$file"
  165. rc=$?
  166.       fi
  167.       [ $rc = 0 ] || result=1
  168.       ;;
  169.     1)
  170.       # This can be a non-ELF binary or no binary at all.
  171.       nonelf "$file" || {
  172. echo $" not a dynamic executable"
  173. result=1
  174.       }
  175.       ;;
  176.     2)
  177.       try_trace "$RTLD" "$file" || result=1
  178.       ;;
  179.     *)
  180.       echo 'ldd:' ${RTLD} $"exited with unknown exit code" "($ret)" >&2
  181.       exit 1
  182.       ;;
  183.     esac
  184.   else
  185.     echo 'ldd:' $"error: you do not have read permission for" "`$file'" >&2
  186.     result=1
  187.   fi
  188. done
  189. exit $result
  190. # Local Variables:
  191. #  mode:ksh
  192. # End: