]> git.ipfire.org Git - thirdparty/man-pages.git/blame_incremental - man1/ldd.1
rename.2: SEE ALSO: add rename(1)
[thirdparty/man-pages.git] / man1 / ldd.1
... / ...
CommitLineData
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)
6.\" Corrected.
7.\" and Copyright (C) 2012, 2016, Michael Kerrisk <mtk.manpages@gmail.com>
8.\"
9.\" %%%LICENSE_START(GPL_NOVERSION_ONELINE)
10.\" Do not restrict distribution.
11.\" May be distributed under the GNU General Public License
12.\" %%%LICENSE_END
13.\"
14.TH LDD 1 2019-03-06 "" "Linux Programmer's Manual"
15.SH NAME
16ldd \- print shared object dependencies
17.SH SYNOPSIS
18.BR ldd " [\fIoption\fP]... \fIfile\fP..."
19.SH DESCRIPTION
20.B ldd
21prints the shared objects (shared libraries) required by each program or
22shared object specified on the command line.
23An example of its use and output is the following:
24.PP
25.in +2n
26.EX
27$ \fBldd /bin/ls\fP
28 linux-vdso.so.1 (0x00007ffcc3563000)
29 libselinux.so.1 => /lib64/libselinux.so.1 (0x00007f87e5459000)
30 libcap.so.2 => /lib64/libcap.so.2 (0x00007f87e5254000)
31 libc.so.6 => /lib64/libc.so.6 (0x00007f87e4e92000)
32 libpcre.so.1 => /lib64/libpcre.so.1 (0x00007f87e4c22000)
33 libdl.so.2 => /lib64/libdl.so.2 (0x00007f87e4a1e000)
34 /lib64/ld-linux-x86-64.so.2 (0x00005574bf12e000)
35 libattr.so.1 => /lib64/libattr.so.1 (0x00007f87e4817000)
36 libpthread.so.0 => /lib64/libpthread.so.0 (0x00007f87e45fa000)
37.EE
38.in
39.PP
40In the usual case,
41.B ldd
42invokes the standard dynamic linker (see
43.BR ld.so (8))
44with the
45.B LD_TRACE_LOADED_OBJECTS
46environment variable set to 1.
47This causes the dynamic linker to inspect the program's dynamic dependencies,
48and find (according to the rules described in
49.BR ld.so (8))
50and load the objects that satisfy those dependencies.
51For each dependency,
52.B ldd
53displays the location of the matching object
54and the (hexadecimal) address at which it is loaded.
55(The
56.I linux-vdso
57and
58.I ld-linux
59shared dependencies are special; see
60.BR vdso (7)
61and
62.BR ld.so (8).)
63.\"
64.SS Security
65Be aware that in some circumstances
66(e.g., where the program specifies an ELF interpreter other than
67.IR ld-linux.so ),
68.\" The circumstances are where the program has an interpreter
69.\" other than ld-linux.so. In this case, ldd tries to execute the
70.\" program directly with LD_TRACE_LOADED_OBJECTS=1, with the
71.\" result that the program interpreter gets control, and can do
72.\" what it likes, or pass control to the program itself.
73.\" Much more detail at
74.\" http://www.catonmat.net/blog/ldd-arbitrary-code-execution/
75some versions of
76.B ldd
77may attempt to obtain the dependency information
78by attempting to directly execute the program,
79which may lead to the execution of whatever code is defined
80in the program's ELF interpreter,
81and perhaps to execution of the program itself.
82.\" Mainline glibc's ldd allows this possibility (the line
83.\" try_trace "$file"
84.\" in glibc 2.15, for example), but many distro versions of
85.\" ldd seem to remove that code path from the script.
86(In glibc versions before 2.27,
87.\" glibc commit eedca9772e99c72ab4c3c34e43cc764250aa3e3c
88the upstream
89.B ldd
90implementation did this for example,
91although most distributions provided a modified version that did not.)
92.PP
93Thus, you should
94.I never
95employ
96.B ldd
97on an untrusted executable,
98since this may result in the execution of arbitrary code.
99A safer alternative when dealing with untrusted executables is:
100.PP
101.in +4n
102.EX
103$ \fBobjdump \-p /path/to/program | grep NEEDED\fP
104.EE
105.in
106.PP
107Note, however, that this alternative shows only the direct dependencies
108of the executable, while
109.B ldd
110shows the entire dependency tree of the executable.
111.SH OPTIONS
112.TP
113.B \-\-version
114Print the version number of
115.BR ldd .
116.TP
117.BR \-v ", " \-\-verbose
118Print all information, including, for example,
119symbol versioning information.
120.TP
121.BR \-u ", " \-\-unused
122Print unused direct dependencies.
123(Since glibc 2.3.4.)
124.TP
125.BR \-d ", " \-\-data\-relocs
126Perform relocations and report any missing objects (ELF only).
127.TP
128.BR \-r ", " \-\-function\-relocs
129Perform relocations for both data objects and functions, and
130report any missing objects or functions (ELF only).
131.TP
132.B \-\-help
133Usage information.
134.\" .SH NOTES
135.\" The standard version of
136.\" .B ldd
137.\" comes with glibc2.
138.\" Libc5 came with an older version, still present
139.\" on some systems.
140.\" The long options are not supported by the libc5 version.
141.\" On the other hand, the glibc2 version does not support
142.\" .B \-V
143.\" and only has the equivalent
144.\" .BR \-\-version .
145.\" .LP
146.\" The libc5 version of this program will use the name of a library given
147.\" on the command line as-is when it contains a \(aq/\(aq; otherwise it
148.\" searches for the library in the standard locations.
149.\" To run it
150.\" on a shared library in the current directory, prefix the name with "./".
151.SH BUGS
152.B ldd
153does not work on a.out shared libraries.
154.PP
155.B ldd
156does not work with some extremely old a.out programs which were
157built before
158.B ldd
159support was added to the compiler releases.
160If you use
161.B ldd
162on one of these programs, the program will attempt to run with
163.I argc
164= 0 and the results will be unpredictable.
165.\" .SH AUTHOR
166.\" David Engel.
167.\" Roland McGrath and Ulrich Drepper.
168.SH SEE ALSO
169.BR pldd (1),
170.BR sprof (1),
171.BR ld.so (8),
172.BR ldconfig (8)