]> CyberLeo.Net >> Repos - FreeBSD/releng/9.0.git/blob - libexec/rtld-elf/rtld.1
Copy stable/9 to releng/9.0 as part of the FreeBSD 9.0-RELEASE release
[FreeBSD/releng/9.0.git] / libexec / rtld-elf / rtld.1
1 .\" Copyright (c) 1995 Paul Kranenburg
2 .\" All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\" 3. All advertising materials mentioning features or use of this software
13 .\"    must display the following acknowledgment:
14 .\"      This product includes software developed by Paul Kranenburg.
15 .\" 3. The name of the author may not be used to endorse or promote products
16 .\"    derived from this software without specific prior written permission
17 .\"
18 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19 .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 .\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22 .\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23 .\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 .\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 .\"
29 .\" $FreeBSD$
30 .\"
31 .Dd April 1, 2009
32 .Dt RTLD 1
33 .Os
34 .Sh NAME
35 .Nm ld-elf.so.1 ,
36 .Nm ld.so ,
37 .Nm rtld
38 .Nd run-time link-editor
39 .Sh DESCRIPTION
40 The
41 .Nm
42 utility is a self-contained shared object providing run-time
43 support for loading and link-editing shared objects into a process'
44 address space.
45 It is also commonly known as the dynamic linker.
46 It uses the data structures
47 contained within dynamically linked programs to determine which shared
48 libraries are needed and loads them using the
49 .Xr mmap 2
50 system call.
51 .Pp
52 After all shared libraries have been successfully loaded,
53 .Nm
54 proceeds to resolve external references from both the main program and
55 all objects loaded.
56 A mechanism is provided for initialization routines
57 to be called on a per-object basis, giving a shared object an opportunity
58 to perform any extra set-up before execution of the program proper begins.
59 This is useful for C++ libraries that contain static constructors.
60 .Pp
61 When resolving dependencies for the loaded objects,
62 .Nm
63 may be allowed to translate dynamic token strings in rpath and soname
64 by setting
65 .Fl "z origin"
66 option of the static linker
67 .Xr ld 1 .
68 The following strings are recognized now:
69 .Bl -tag -width ".Pa $PLATFORM"
70 .It Pa $ORIGIN
71 Translated to the full path of the loaded object.
72 .It Pa $OSNAME
73 Translated to the name of the operating system implementation.
74 .It Pa $OSREL
75 Translated to the release level of the operating system.
76 .It Pa $PLATFORM
77 Translated to the machine hardware platform.
78 .El
79 .Pp
80 The
81 .Nm
82 utility itself is loaded by the kernel together with any dynamically-linked
83 program that is to be executed.
84 The kernel transfers control to the
85 dynamic linker.
86 After the dynamic linker has finished loading,
87 relocating, and initializing the program and its required shared
88 objects, it transfers control to the entry point of the program.
89 .Pp
90 To locate the required shared objects in the file system,
91 .Nm
92 may use a
93 .Dq hints
94 file prepared by the
95 .Xr ldconfig 8
96 utility.
97 .Pp
98 The
99 .Nm
100 utility
101 recognizes a number of environment variables that can be used to modify
102 its behaviour.
103 On 64-bit architectures, the linker for 32-bit objects recognizes
104 all the environment variables listed below, but is being prefixed with
105 .Ev LD_32_ ,
106 for example:
107 .Ev LD_32_TRACE_LOADED_OBJECTS .
108 .Bl -tag -width ".Ev LD_LIBMAP_DISABLE"
109 .It Ev LD_DUMP_REL_POST
110 If set,
111 .Nm
112 will print a table containing all relocations after symbol
113 binding and relocation.
114 .It Ev LD_DUMP_REL_PRE
115 If set,
116 .Nm
117 will print a table containing all relocations before symbol
118 binding and relocation.
119 .It Ev LD_LIBMAP
120 A library replacement list in the same format as
121 .Xr libmap.conf 5 .
122 For convenience, the characters
123 .Ql =
124 and
125 .Ql \&,
126 can be used instead of a space and a newline.
127 This variable is parsed after
128 .Xr libmap.conf 5 ,
129 and will override its entries.
130 This variable is unset for set-user-ID and set-group-ID programs.
131 .It Ev LD_LIBMAP_DISABLE
132 If set, disables the use of
133 .Xr libmap.conf 5
134 and
135 .Ev LD_LIBMAP .
136 This variable is unset for set-user-ID and set-group-ID programs.
137 .It Ev LD_ELF_HINTS_PATH
138 This variable will override the default location of
139 .Dq hints
140 file.
141 This variable is unset for set-user-ID and set-group-ID programs.
142 .It Ev LD_LIBRARY_PATH
143 A colon separated list of directories, overriding the default search path
144 for shared libraries.
145 This variable is unset for set-user-ID and set-group-ID programs.
146 .It Ev LD_PRELOAD
147 A list of shared libraries, separated by colons and/or white space,
148 to be linked in before any
149 other shared libraries.
150 If the directory is not specified then
151 the directories specified by
152 .Ev LD_LIBRARY_PATH
153 will be searched first
154 followed by the set of built-in standard directories.
155 This variable is unset for set-user-ID and set-group-ID programs.
156 .It Ev LD_BIND_NOW
157 When set to a nonempty string, causes
158 .Nm
159 to relocate all external function calls before starting execution of the
160 program.
161 Normally, function calls are bound lazily, at the first call
162 of each function.
163 .Ev LD_BIND_NOW
164 increases the start-up time of a program, but it avoids run-time
165 surprises caused by unexpectedly undefined functions.
166 .It Ev LD_TRACE_LOADED_OBJECTS
167 When set to a nonempty string, causes
168 .Nm
169 to exit after loading the shared objects and printing a summary which includes
170 the absolute pathnames of all objects, to standard output.
171 .It Ev LD_TRACE_LOADED_OBJECTS_ALL
172 When set to a nonempty string, causes
173 .Nm
174 to expand the summary to indicate which objects caused each object to
175 be loaded.
176 .It Ev LD_TRACE_LOADED_OBJECTS_FMT1
177 .It Ev LD_TRACE_LOADED_OBJECTS_FMT2
178 When set, these variables are interpreted as format strings a la
179 .Xr printf 3
180 to customize the trace output and are used by
181 .Xr ldd 1 Ns 's
182 .Fl f
183 option and allows
184 .Xr ldd 1
185 to be operated as a filter more conveniently.
186 If the dependency name starts with string
187 .Pa lib ,
188 .Ev LD_TRACE_LOADED_OBJECTS_FMT1
189 is used, otherwise
190 .Ev LD_TRACE_LOADED_OBJECTS_FMT2
191 is used.
192 The following conversions can be used:
193 .Bl -tag -width 4n
194 .It Li %a
195 The main program's name
196 (also known as
197 .Dq __progname ) .
198 .It Li \&%A
199 The value of the environment variable
200 .Ev LD_TRACE_LOADED_OBJECTS_PROGNAME .
201 Typically used to print both the names of programs and shared libraries
202 being inspected using
203 .Xr ldd 1 .
204 .It Li %o
205 The library name.
206 .It Li %p
207 The full pathname as determined by
208 .Nm rtld Ns 's
209 library search rules.
210 .It Li %x
211 The library's load address.
212 .El
213 .Pp
214 Additionally,
215 .Ql \en
216 and
217 .Ql \et
218 are recognized and have their usual meaning.
219 .It Ev LD_UTRACE
220 If set,
221 .Nm
222 will log events such as the loading and unloading of shared objects via
223 .Xr utrace 2 .
224 .Pp
225 .It Ev LD_LOADFLTR
226 If set,
227 .Nm
228 will process the filtee dependencies of the loaded objects immediately,
229 instead of postponing it until required.
230 Normally, the filtees are opened at the time of the first symbol resolution
231 from the filter object.
232 .El
233 .Sh FILES
234 .Bl -tag -width ".Pa /var/run/ld-elf32.so.hints" -compact
235 .It Pa /var/run/ld-elf.so.hints
236 Hints file.
237 .It Pa /var/run/ld-elf32.so.hints
238 Hints file for 32-bit binaries on 64-bit system.
239 .It Pa /etc/libmap.conf
240 The libmap configuration file.
241 .It Pa /etc/libmap32.conf
242 The libmap configuration file for 32-bit binaries on 64-bit system.
243 .El
244 .Sh SEE ALSO
245 .Xr ld 1 ,
246 .Xr ldd 1 ,
247 .Xr elf 5 ,
248 .Xr libmap.conf 5 ,
249 .Xr ldconfig 8