1 .\" Copyright 1995-2000 David Engel (david@ods.com)
2 .\" Copyright 1995 Rickard E. Faith (faith@cs.unc.edu)
3 .\" Copyright 2000 Ben Collins (bcollins@debian.org)
4 .\" Redone for GLibc 2.2
5 .\" Copyright 2000 Jakub Jelinek (jakub@redhat.com)
7 .\" and Copyright (C) 2012, 2016, Michael Kerrisk <mtk.manpages@gmail.com>
9 .\" %%%LICENSE_START(GPL_NOVERSION_ONELINE)
10 .\" Do not restrict distribution.
11 .\" May be distributed under the GNU General Public License
14 .TH LDD 1 2021-03-22 "" "Linux Programmer's Manual"
16 ldd \- print shared object dependencies
19 .BR ldd " [\fIoption\fP]... \fIfile\fP..."
23 prints the shared objects (shared libraries) required by each program or
24 shared object specified on the command line.
25 An example of its use and output
28 to trim leading white space for readability in this page)
33 $ \fBldd /bin/ls | sed \(aqs/^ */ /\(aq\fP
34 linux\-vdso.so.1 (0x00007ffcc3563000)
35 libselinux.so.1 => /lib64/libselinux.so.1 (0x00007f87e5459000)
36 libcap.so.2 => /lib64/libcap.so.2 (0x00007f87e5254000)
37 libc.so.6 => /lib64/libc.so.6 (0x00007f87e4e92000)
38 libpcre.so.1 => /lib64/libpcre.so.1 (0x00007f87e4c22000)
39 libdl.so.2 => /lib64/libdl.so.2 (0x00007f87e4a1e000)
40 /lib64/ld\-linux\-x86\-64.so.2 (0x00005574bf12e000)
41 libattr.so.1 => /lib64/libattr.so.1 (0x00007f87e4817000)
42 libpthread.so.0 => /lib64/libpthread.so.0 (0x00007f87e45fa000)
48 invokes the standard dynamic linker (see
51 .B LD_TRACE_LOADED_OBJECTS
52 environment variable set to 1.
53 This causes the dynamic linker to inspect the program's dynamic dependencies,
54 and find (according to the rules described in
56 and load the objects that satisfy those dependencies.
59 displays the location of the matching object
60 and the (hexadecimal) address at which it is loaded.
65 shared dependencies are special; see
71 Be aware that in some circumstances
72 (e.g., where the program specifies an ELF interpreter other than
74 .\" The circumstances are where the program has an interpreter
75 .\" other than ld-linux.so. In this case, ldd tries to execute the
76 .\" program directly with LD_TRACE_LOADED_OBJECTS=1, with the
77 .\" result that the program interpreter gets control, and can do
78 .\" what it likes, or pass control to the program itself.
79 .\" Much more detail at
80 .\" http://www.catonmat.net/blog/ldd-arbitrary-code-execution/
83 may attempt to obtain the dependency information
84 by attempting to directly execute the program,
85 which may lead to the execution of whatever code is defined
86 in the program's ELF interpreter,
87 and perhaps to execution of the program itself.
88 .\" Mainline glibc's ldd allows this possibility (the line
90 .\" in glibc 2.15, for example), but many distro versions of
91 .\" ldd seem to remove that code path from the script.
92 (In glibc versions before 2.27,
93 .\" glibc commit eedca9772e99c72ab4c3c34e43cc764250aa3e3c
96 implementation did this for example,
97 although most distributions provided a modified version that did not.)
103 on an untrusted executable,
104 since this may result in the execution of arbitrary code.
105 A safer alternative when dealing with untrusted executables is:
109 $ \fBobjdump \-p /path/to/program | grep NEEDED\fP
113 Note, however, that this alternative shows only the direct dependencies
114 of the executable, while
116 shows the entire dependency tree of the executable.
120 Print the version number of
123 .BR \-v ", " \-\-verbose
124 Print all information, including, for example,
125 symbol versioning information.
127 .BR \-u ", " \-\-unused
128 Print unused direct dependencies.
131 .BR \-d ", " \-\-data\-relocs
132 Perform relocations and report any missing objects (ELF only).
134 .BR \-r ", " \-\-function\-relocs
135 Perform relocations for both data objects and functions, and
136 report any missing objects or functions (ELF only).
141 .\" The standard version of
143 .\" comes with glibc2.
144 .\" Libc5 came with an older version, still present
146 .\" The long options are not supported by the libc5 version.
147 .\" On the other hand, the glibc2 version does not support
149 .\" and only has the equivalent
150 .\" .BR \-\-version .
152 .\" The libc5 version of this program will use the name of a library given
153 .\" on the command line as-is when it contains a \(aq/\(aq; otherwise it
154 .\" searches for the library in the standard locations.
156 .\" on a shared library in the current directory, prefix the name with "./".
159 does not work on a.out shared libraries.
162 does not work with some extremely old a.out programs which were
165 support was added to the compiler releases.
168 on one of these programs, the program will attempt to run with
170 = 0 and the results will be unpredictable.
173 .\" Roland McGrath and Ulrich Drepper.