1 .\" $FreeBSD: src/libexec/rtld-elf/rtld.1,v 1.18.2.7 2002/01/10 17:51:28 ru Exp $
2 .\" $DragonFly: src/libexec/rtld-elf/rtld.1,v 1.7 2008/05/02 02:05:05 swildner Exp $
4 .\" Copyright (c) 1995 Paul Kranenburg
5 .\" All rights reserved.
7 .\" Redistribution and use in source and binary forms, with or without
8 .\" modification, are permitted provided that the following conditions
10 .\" 1. Redistributions of source code must retain the above copyright
11 .\" notice, this list of conditions and the following disclaimer.
12 .\" 2. Redistributions in binary form must reproduce the above copyright
13 .\" notice, this list of conditions and the following disclaimer in the
14 .\" documentation and/or other materials provided with the distribution.
15 .\" 3. All advertising materials mentioning features or use of this software
16 .\" must display the following acknowledgment:
17 .\" This product includes software developed by Paul Kranenburg.
18 .\" 3. The name of the author may not be used to endorse or promote products
19 .\" derived from this software without specific prior written permission
21 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22 .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24 .\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25 .\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26 .\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 .\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30 .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 .Nd run-time link-editor
42 is a self-contained shared object providing run-time
43 support for loading and link-editing shared objects into a process'
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
52 After all shared libraries have been successfully loaded,
54 proceeds to resolve external references from both the main program and
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.
62 itself is loaded by the kernel together with any dynamically-linked
63 program that is to be executed.
64 The kernel transfers control to the
66 After the dynamic linker has finished loading,
67 relocating, and initializing the program and its required shared
68 objects, it transfers control to the entry point of the program.
70 To locate the required shared objects in the filesystem,
79 recognizes a number of environment variables that can be used to modify
80 its behaviour as follows:
81 .Bl -tag -width ".Ev LD_LIBRARY_PATH"
82 .It Ev LD_LIBRARY_PATH
83 A colon separated list of directories, overriding the default search path
85 This is ignored for set-user-ID and set-group-ID programs.
87 A list of shared libraries, separated by colons and/or white space,
88 to be linked in before any
89 other shared libraries.
90 If the directory is not specified then
91 the directories specified by
93 will be searched first
94 followed by the set of built-in standard directories.
95 This is ignored for set-user-ID and set-group-ID programs.
97 When set to a nonempty string, causes
99 to relocate all external function calls before starting execution of the
101 Normally, function calls are bound lazily, at the first call
104 increases the start-up time of a program, but it avoids run-time
105 surprises caused by unexpectedly undefined functions.
106 .It Ev LD_TRACE_LOADED_OBJECTS
107 When set to a nonempty string, causes
109 to exit after loading the shared objects and printing a summary which includes
110 the absolute pathnames of all objects, to standard output.
111 .It Ev LD_TRACE_LOADED_OBJECTS_FMT1
112 .It Ev LD_TRACE_LOADED_OBJECTS_FMT2
113 When set, these variables are interpreted as format strings a la
115 to customize the trace output and are used by
120 to be operated as a filter more conveniently.
121 The following conversions can be used:
124 The main program's name
128 The value of the environment variable
129 .Ev LD_TRACE_LOADED_OBJECTS_PROGNAME
133 The library's major version number.
135 The full pathname as determined by
137 library search rules.
139 The library's load address.
146 are recognized and have their usual meaning.
149 If a shared object preloaded by the
151 mechanism contains a public symbol
152 .Dq _rtld_functrace ,
154 will transfer control to this function each time
155 it needs to resolve an unbound function symbol.
156 By returning a non-zero value,
158 can advise the linker to keep tracing the specified
159 combination of caller shared object and called function;
160 returning 0 will prevent
162 to be called for this combination again.
164 When implementing a custom
166 function, be aware of the possibility that
168 might be called for functions called on its behalf,
169 or that multiple threads could enter
175 is specified as follows.
178 .Fn _rtld_functrace "const char *callerso" "const char *calleeso" "const char *calleefun" "void *stack"
179 .Sh DIFFERENCES BETWEEN .1 and .2
180 ABI changes have been made to support TLS allocation and initialization
181 and to give threading libraries a chance to complete initialization of the
182 TCB prior to the calling of the _init() functions for the dynamically loaded
185 .Bl -tag -width indent
186 .It Pa /var/run/ld-elf.so.hints