]> git.ipfire.org Git - thirdparty/man-pages.git/blob - man8/ld.so.8
ld.so.8: Describe use of LD_DEBUG with LD_BIND_NOT
[thirdparty/man-pages.git] / man8 / ld.so.8
1 .\" %%%LICENSE_START(PUBLIC_DOMAIN)
2 .\" This is in the public domain
3 .\" %%%LICENSE_END
4 .\"
5 .TH LD.SO 8 2016-10-08 "GNU" "Linux Programmer's Manual"
6 .SH NAME
7 ld.so, ld-linux.so* \- dynamic linker/loader
8 .SH SYNOPSIS
9 The dynamic linker can be run either indirectly by running some
10 dynamically linked program or shared object
11 (in which case no command-line options
12 to the dynamic linker can be passed and, in the ELF case, the dynamic linker
13 which is stored in the
14 .B .interp
15 section of the program is executed) or directly by running:
16 .P
17 .I /lib/ld-linux.so.*
18 [OPTIONS] [PROGRAM [ARGUMENTS]]
19 .SH DESCRIPTION
20 The programs
21 .B ld.so
22 and
23 .B ld-linux.so*
24 find and load the shared objects (shared libraries) needed by a program,
25 prepare the program to run, and then run it.
26 .LP
27 Linux binaries require dynamic linking (linking at run time)
28 unless the
29 .B \-static
30 option was given to
31 .BR ld (1)
32 during compilation.
33 .LP
34 The program
35 .B ld.so
36 handles a.out binaries, a format used long ago;
37 .B ld-linux.so*
38 (\fI/lib/ld-linux.so.1\fP for libc5, \fI/lib/ld-linux.so.2\fP for glibc2)
39 handles ELF,
40 which everybody has been using for years now.
41 Otherwise, both have the same behavior, and use the same
42 support files and programs
43 .BR ldd (1),
44 .BR ldconfig (8),
45 and
46 .IR /etc/ld.so.conf .
47 .LP
48 When resolving shared object dependencies,
49 the dynamic linker first inspects each dependency
50 string to see if it contains a slash (this can occur if
51 a shared object pathname containing slashes was specified at link time).
52 If a slash is found, then the dependency string is interpreted as
53 a (relative or absolute) pathname,
54 and the shared object is loaded using that pathname.
55 .LP
56 If a shared object dependency does not contain a slash,
57 then it is searched for in the following order:
58 .IP o 3
59 Using the directories specified in the
60 DT_RPATH dynamic section attribute
61 of the binary if present and DT_RUNPATH attribute does not exist.
62 Use of DT_RPATH is deprecated.
63 .IP o
64 Using the environment variable
65 .BR LD_LIBRARY_PATH
66 (unless the executable is being run in secure-execution mode; see below).
67 in which case it is ignored.
68 .IP o
69 Using the directories specified in the
70 DT_RUNPATH dynamic section attribute
71 of the binary if present.
72 .IP o
73 From the cache file
74 .IR /etc/ld.so.cache ,
75 which contains a compiled list of candidate shared objects previously found
76 in the augmented library path.
77 If, however, the binary was linked with the
78 .B \-z nodeflib
79 linker option, shared objects in the default paths are skipped.
80 Shared objects installed in hardware capability directories (see below)
81 are preferred to other shared objects.
82 .IP o
83 In the default path
84 .IR /lib ,
85 and then
86 .IR /usr/lib .
87 (On some 64-bit architectures, the default paths for 64-bit shared objects are
88 .IR /lib64 ,
89 and then
90 .IR /usr/lib64 .)
91 If the binary was linked with the
92 .B \-z nodeflib
93 linker option, this step is skipped.
94 .SS Rpath token expansion
95 .PP
96 .B ld.so
97 understands certain strings in an rpath specification (DT_RPATH or DT_RUNPATH); those strings are substituted as follows
98 .TP
99 .IR $ORIGIN " (or equivalently " ${ORIGIN} )
100 This expands to
101 the directory containing the program or shared object.
102 Thus, an application located in
103 .I somedir/app
104 could be compiled with
105
106 gcc \-Wl,\-rpath,\(aq$ORIGIN/../lib\(aq
107
108 so that it finds an associated shared object in
109 .I somedir/lib
110 no matter where
111 .I somedir
112 is located in the directory hierarchy.
113 This facilitates the creation of "turn-key" applications that
114 do not need to be installed into special directories,
115 but can instead be unpacked into any directory
116 and still find their own shared objects.
117 .TP
118 .IR $LIB " (or equivalently " ${LIB} )
119 This expands to
120 .I lib
121 or
122 .I lib64
123 depending on the architecture
124 (e.g., on x86-64, it expands to
125 .IR lib64
126 and
127 on x86-32, it expands to
128 .IR lib ).
129 .TP
130 .IR $PLATFORM " (or equivalently " ${PLATFORM} )
131 This expands to a string corresponding to the processor type
132 of the host system (e.g., "x86_64").
133 On some architectures, the Linux kernel doesn't provide a platform
134 string to the dynamic linker.
135 The value of this string is taken from the
136 .BR AT_PLATFORM
137 value in the auxiliary vector (see
138 .BR getauxval (3)).
139 .\" To get an idea of the places that $PLATFORM would match,
140 .\" look at the output of the following:
141 .\"
142 .\" mkdir /tmp/d
143 .\" LD_LIBRARY_PATH=/tmp/d strace -e open /bin/date 2>&1 | grep /tmp/d
144 .\"
145 .\" ld.so lets names be abbreviated, so $O will work for $ORIGIN;
146 .\" Don't do this!!
147 .SH OPTIONS
148 .TP
149 .B \-\-list
150 List all dependencies and how they are resolved.
151 .TP
152 .B \-\-verify
153 Verify that program is dynamically linked and this dynamic linker can handle
154 it.
155 .TP
156 .B \-\-inhibit-cache
157 Do not use
158 .IR /etc/ld.so.cache .
159 .TP
160 .BI \-\-library\-path " path"
161 Use
162 .I path
163 instead of
164 .B LD_LIBRARY_PATH
165 environment variable setting (see below).
166 The names
167 .IR ORIGIN ,
168 .IR LIB ,
169 and
170 .IR PLATFORM
171 are interpreted as for the
172 .BR LD_LIBRARY_PATH
173 environment variable.
174 .TP
175 .BI \-\-inhibit\-rpath " list"
176 Ignore RPATH and RUNPATH information in object names in
177 .IR list .
178 This option is ignored when running in secure-execution mode (see below).
179 .TP
180 .BI \-\-audit " list"
181 Use objects named in
182 .I list
183 as auditors.
184 .SH ENVIRONMENT
185 Various environment variables influence the operation of the dynamic linker.
186 .\"
187 .SS Secure-execution mode
188 For security reasons,
189 the effects of some environment variables are voided or modified if
190 the dynamic linker determines that the binary should be
191 run in secure-execution mode.
192 This determination is made by checking whether the
193 .B AT_SECURE
194 entry in the auxiliary vector (see
195 .BR getauxval (3))
196 has a nonzero value.
197 This entry may have a nonzero value for various reasons, including:
198 .IP * 3
199 The process's real and effective user IDs differ,
200 or the real and effective group IDs differ.
201 This typically occurs as a result of executing
202 a set-user-ID or set-group-ID program.
203 .IP *
204 A process with a non-root user ID executed a binary that
205 conferred permitted or effective capabilities.
206 .IP *
207 A nonzero value may have been set by a Linux Security Module.
208 .\"
209 .SS Environment variables
210 Among the more important environment variables are the following:
211 .TP
212 .BR LD_ASSUME_KERNEL " (since glibc 2.2.3)"
213 Each shared object can inform the dynamic linker of the minimum kernel ABI
214 version that it requires.
215 (This requirement is encoded in an ELF note section that is viewable via
216 .IR "readelf\ \-n"
217 as a section labeled
218 .BR NT_GNU_ABI_TAG .)
219 At run time,
220 the dynamic linker determines the ABI version of the running kernel and
221 will reject loading shared objects that specify minimum ABI versions
222 that exceed that ABI version.
223
224 .BR LD_ASSUME_KERNEL
225 can be used to
226 cause the dynamic linker to assume that it is running on a system with
227 a different kernel ABI version.
228 For example, the following command line causes the
229 dynamic linker to assume it is running on Linux 2.2.5 when loading
230 the shared objects required by
231 .IR myprog :
232
233 .in +4n
234 .nf
235 $ \fBLD_ASSUME_KERNEL=2.2.5 ./myprog\fP
236 .fi
237 .in
238
239 On systems that provide multiple versions of a shared object
240 (in different directories in the search path) that have
241 different minimum kernel ABI version requirements,
242 .BR LD_ASSUME_KERNEL
243 can be used to select the version of the object that is used
244 (dependent on the directory search order).
245 Historically, the most common use of the
246 .BR LD_ASSUME_KERNEL
247 feature was to manually select the older
248 LinuxThreads POSIX threads implementation on systems that provided both
249 LinuxThreads and NPTL
250 (which latter was typically the default on such systems);
251 see
252 .BR pthreads (7).
253 .TP
254 .BR LD_BIND_NOW " (since glibc 2.1.1)"
255 If set to a nonempty string,
256 causes the dynamic linker to resolve all symbols
257 at program startup instead of deferring function call resolution to the point
258 when they are first referenced.
259 This is useful when using a debugger.
260 .TP
261 .B LD_LIBRARY_PATH
262 A list of directories in which to search for
263 ELF libraries at execution-time.
264 The items in the list are separated by either colons or semicolons.
265 Similar to the
266 .B PATH
267 environment variable.
268 This variable is ignored in secure-execution mode.
269
270 Within the pathnames specified in
271 .BR LD_LIBRARY_PATH ,
272 the dynamic linker expands the strings
273 .IR $ORIGIN ,
274 .IR $LIB ,
275 and
276 .IR $PLATFORM
277 (or the versions using curly braces around the names)
278 as described above in
279 .IR "Rpath token expansion" .
280 Thus, for example,
281 the following would cause a library to be searched for in either the
282 .I lib
283 or
284 .I lib64
285 subdirectory below the directory containing the program to be executed:
286
287 $ \fBLD_LIBRARY_PATH='$ORIGIN/$LIB' prog\fP
288
289 (Note the use of single quotes, which prevent expansion of
290 .I ORIGIN
291 and
292 .I LIB
293 as shell variables!)
294 .TP
295 .B LD_PRELOAD
296 A list of additional, user-specified, ELF shared
297 objects to be loaded before all others.
298 The items of the list can be separated by spaces or colons.
299 This can be used to selectively override functions in other shared objects.
300 The objects are searched for using the rules given under DESCRIPTION.
301 In secure-execution mode,
302 preload pathnames containing slashes are ignored,
303 and only shared objects in the standard search directories that
304 have the set-user-ID mode bit enabled are loaded.
305
306 Within the pathnames specified in
307 .BR LD_PRELOAD ,
308 the dynamic linker understands the strings
309 .IR $ORIGIN ,
310 .IR $LIB ,
311 and
312 .IR $PLATFORM
313 (or the versions using curly braces around the names)
314 as described above in
315 .IR "Rpath token expansion" .
316 .\" Tested with the following:
317 .\"
318 .\" LD_PRELOAD='$LIB/libmod.so' LD_LIBRARY_PATH=. ./prog
319 .\"
320 .\" which will reload the libmod.so in 'lib' or 'lib64', using it
321 .\" in preference to the version in '.'.
322 .TP
323 .BR LD_TRACE_LOADED_OBJECTS
324 If set (to any value), causes the program to list its dynamic
325 dependencies, as if run by
326 .BR ldd (1),
327 instead of running normally.
328 .LP
329 Then there are lots of more or less obscure variables,
330 many obsolete or only for internal use.
331 .TP
332 .BR LD_AUDIT " (since glibc 2.4)"
333 A colon-separated list of user-specified, ELF shared objects
334 to be loaded before all others in a separate linker namespace
335 (i.e., one that does not intrude upon the normal symbol bindings that
336 would occur in the process).
337 These objects can be used to audit the operation of the dynamic linker.
338 .B LD_AUDIT
339 is ignored in secure-execution mode.
340
341 The dynamic linker will notify the audit
342 shared objects at so-called auditing checkpoints\(emfor example,
343 loading a new shared object, resolving a symbol,
344 or calling a symbol from another shared object\(emby
345 calling an appropriate function within the audit shared object.
346 For details, see
347 .BR rtld-audit (7).
348 The auditing interface is largely compatible with that provided on Solaris,
349 as described in its
350 .IR "Linker and Libraries Guide" ,
351 in the chapter
352 .IR "Runtime Linker Auditing Interface" .
353 .TP
354 .BR LD_BIND_NOT " (since glibc 2.1.95)"
355 If this environment variable is set to a nonempty string,
356 do not update the GOT (global offset table) and PLT (procedure linkage table)
357 after resolving a function symbol.
358 By combining the use of this variable with
359 .BR LD_DEBUG
360 (with the categories
361 .IR bindings
362 and
363 .IR symbols ),
364 one can observe all run-time function bindings.
365 .TP
366 .BR LD_DEBUG " (since glibc 2.1)"
367 Output verbose debugging information about the dynamic linker.
368 If set to
369 .BR all ,
370 print all debugging information,
371 Setting this variable to
372 .BR help
373 does not run the specified program,
374 and displays a help message about which categories can be specified in this
375 environment variable.
376 The categories are:
377 .RS
378 .TP 12
379 .I bindings
380 Display information about which definition each symbol is bound to.
381 .TP
382 .I files
383 Display progress for input file.
384 .TP
385 .I libs
386 Display library search paths.
387 .TP
388 .I reloc
389 Display relocation processing.
390 .TP
391 .I scopes
392 Display scope information.
393 .TP
394 .I statistics
395 Display relocation statistics.
396 .TP
397 .I symbols
398 Display search paths for each symbol look-up.
399 .TP
400 .I unused
401 Determine unused DSOs.
402 .TP
403 .I versions
404 Display version dependencies.
405 .RE
406 .IP
407 The value in
408 .BR LD_DEBUG
409 can specify multiple categories, separated by colons, commas,
410 or (if the value is quoted) spaces.
411
412 Since glibc 2.3.4,
413 .B LD_DEBUG
414 is ignored in secure-execution mode, unless the file
415 .IR /etc/suid\-debug
416 exists (the content of the file is irrelevant).
417 .TP
418 .BR LD_DEBUG_OUTPUT " (since glibc 2.1)"
419 File in which
420 .B LD_DEBUG
421 output should be written.
422 The default is standard error.
423 .B LD_DEBUG_OUTPUT
424 is ignored in secure-execution mode.
425 .TP
426 .BR LD_DYNAMIC_WEAK " (since glibc 2.1.91)"
427 If this environment variable is defined (with any value),
428 allow weak symbols to be overridden (reverting to old glibc behavior).
429 .\" See weak handling
430 .\" https://www.sourceware.org/ml/libc-hacker/2000-06/msg00029.html
431 .\" To: GNU libc hacker <libc-hacker at sourceware dot cygnus dot com>
432 .\" Subject: weak handling
433 .\" From: Ulrich Drepper <drepper at redhat dot com>
434 .\" Date: 07 Jun 2000 20:08:12 -0700
435 .\" Reply-To: drepper at cygnus dot com (Ulrich Drepper)
436 Since glibc 2.3.4,
437 .B LD_DYNAMIC_WEAK
438 is ignored in secure-execution mode.
439 .TP
440 .BR LD_HWCAP_MASK " (since glibc 2.1)"
441 Mask for hardware capabilities.
442 .TP
443 .BR LD_ORIGIN_PATH " (since glibc 2.1)"
444 Path where the binary is found.
445 Since glibc 2.4,
446 .B LD_ORIGIN_PATH
447 is ignored in secure-execution mode.
448 .\" Used only if $ORIGIN can't be determined by normal means
449 .\" (from the origin path saved at load time, or from /proc/self/exe)?
450 .TP
451 .BR LD_POINTER_GUARD " (glibc from 2.4 to 2.22)"
452 Set to 0 to disable pointer guarding.
453 Any other value enables pointer guarding, which is also the default.
454 Pointer guarding is a security mechanism whereby some pointers to code
455 stored in writable program memory (return addresses saved by
456 .BR setjmp (3)
457 or function pointers used by various glibc internals) are mangled
458 semi-randomly to make it more difficult for an attacker to hijack
459 the pointers for use in the event of a buffer overrun or
460 stack-smashing attack.
461 Since glibc 2.23,
462 .\" commit a014cecd82b71b70a6a843e250e06b541ad524f7
463 .B LD_POINTER_GUARD
464 can no longer be used to disable pointer guarding,
465 which is now always enabled.
466 .TP
467 .BR LD_PROFILE " (since glibc 2.1)"
468 The name of a (single) shared object to be profiled,
469 specified either as a pathname or a soname.
470 Profiling output is appended to the file whose name is:
471 "\fI$LD_PROFILE_OUTPUT\fP/\fI$LD_PROFILE\fP.profile".
472 .TP
473 .BR LD_PROFILE_OUTPUT " (since glibc 2.1)"
474 Directory where
475 .B LD_PROFILE
476 output should be written.
477 If this variable is not defined, or is defined as an empty string,
478 then the default is
479 .IR /var/tmp .
480 .B LD_PROFILE_OUTPUT
481 is ignored in secure-execution mode; instead
482 .IR /var/profile
483 is always used.
484 .TP
485 .BR LD_SHOW_AUXV " (since glibc 2.1)"
486 If this environment variable is defined (with any value),
487 show the auxiliary array passed up from the kernel (see also
488 .BR getauxval (3)).
489 Since glibc 2.3.5,
490 .B LD_SHOW_AUXV
491 is ignored in secure-execution mode.
492 .TP
493 .BR LD_TRACE_PRELINKING " (since glibc 2.4)"
494 If this environment variable is defined (with any value),
495 trace prelinking of the object whose name is assigned to
496 this environment variable.
497 (Use
498 .BR ldd (1)
499 to get a list of the objects that might be traced.)
500 If the object name is not recognized,
501 .\" (This is what seems to happen, from experimenting)
502 then all prelinking activity is traced.
503 .TP
504 .BR LD_USE_LOAD_BIAS " (since glibc 2.3.3)"
505 .\" http://sources.redhat.com/ml/libc-hacker/2003-11/msg00127.html
506 .\" Subject: [PATCH] Support LD_USE_LOAD_BIAS
507 .\" Jakub Jelinek
508 By default (i.e., if this variable is not defined),
509 executables and prelinked
510 shared objects will honor base addresses of their dependent shared objects
511 and (nonprelinked) position-independent executables (PIEs)
512 and other shared objects will not honor them.
513 If
514 .B LD_USE_LOAD_BIAS
515 is defined with the value 1, both executables and PIEs
516 will honor the base addresses.
517 If
518 .B LD_USE_LOAD_BIAS
519 is defined with the value 0,
520 neither executables nor PIEs will honor the base addresses.
521 This variable is ignored in secure-execution mode.
522 .TP
523 .BR LD_VERBOSE " (since glibc 2.1)"
524 If set to a nonempty string,
525 output symbol versioning information about the
526 program if the
527 .B LD_TRACE_LOADED_OBJECTS
528 environment variable has been set.
529 .TP
530 .BR LD_WARN " (since glibc 2.1.3)
531 If set to a nonempty string, warn about unresolved symbols.
532 .TP
533 .BR LD_PREFER_MAP_32BIT_EXEC " (x86-64 only; since glibc 2.23)"
534 According to the Intel Silvermont software optimization guide, for 64-bit
535 applications, branch prediction performance can be negatively impacted
536 when the target of a branch is more than 4GB away from the branch.
537 If this environment variable is set (to any value),
538 .BR ld.so
539 will first try to map executable pages using the
540 .BR mmap (2)
541 .BR MAP_32BIT
542 flag, and fall back to mapping without that flag if that attempt fails.
543 NB: MAP_32BIT will map to the low 2GB (not 4GB) of the address space.
544 Because
545 .B MAP_32BIT
546 reduces the address range available for address space layout
547 randomization (ASLR),
548 .B LD_PREFER_MAP_32BIT_EXEC
549 is always disabled in secure-execution mode.
550 .SH FILES
551 .PD 0
552 .TP
553 .I /lib/ld.so
554 a.out dynamic linker/loader
555 .TP
556 .IR /lib/ld\-linux.so. { 1 , 2 }
557 ELF dynamic linker/loader
558 .TP
559 .I /etc/ld.so.cache
560 File containing a compiled list of directories in which to search for
561 shared objects and an ordered list of candidate shared objects.
562 .TP
563 .I /etc/ld.so.preload
564 File containing a whitespace-separated list of ELF shared objects to
565 be loaded before the program.
566 .TP
567 .B lib*.so*
568 shared objects
569 .PD
570 .SH NOTES
571 .SS Hardware capabilities
572 Some shared objects are compiled using hardware-specific instructions which do
573 not exist on every CPU.
574 Such objects should be installed in directories whose names define the
575 required hardware capabilities, such as
576 .IR /usr/lib/sse2/ .
577 The dynamic linker checks these directories against the hardware of the
578 machine and selects the most suitable version of a given shared object.
579 Hardware capability directories can be cascaded to combine CPU features.
580 The list of supported hardware capability names depends on the CPU.
581 The following names are currently recognized:
582 .TP
583 .B Alpha
584 ev4, ev5, ev56, ev6, ev67
585 .TP
586 .B MIPS
587 loongson2e, loongson2f, octeon, octeon2
588 .TP
589 .B PowerPC
590 4xxmac, altivec, arch_2_05, arch_2_06, booke, cellbe, dfp, efpdouble, efpsingle,
591 fpu, ic_snoop, mmu, notb, pa6t, power4, power5, power5+, power6x, ppc32, ppc601,
592 ppc64, smt, spe, ucache, vsx
593 .TP
594 .B SPARC
595 flush, muldiv, stbar, swap, ultra3, v9, v9v, v9v2
596 .TP
597 .B s390
598 dfp, eimm, esan3, etf3enh, g5, highgprs, hpage, ldisp, msa, stfle,
599 z900, z990, z9-109, z10, zarch
600 .TP
601 .B x86 (32-bit only)
602 acpi, apic, clflush, cmov, cx8, dts, fxsr, ht, i386, i486, i586, i686, mca, mmx,
603 mtrr, pat, pbe, pge, pn, pse36, sep, ss, sse, sse2, tm
604 .SH SEE ALSO
605 .BR ld (1),
606 .BR ldd (1),
607 .BR pldd (1),
608 .BR sprof (1),
609 .BR dlopen (3),
610 .BR getauxval (3),
611 .BR capabilities (7),
612 .BR rtld-audit (7),
613 .BR ldconfig (8),
614 .BR sln (8)
615 .\" .SH AUTHORS
616 .\" ld.so: David Engel, Eric Youngdale, Peter MacDonald, Hongjiu Lu, Linus
617 .\" Torvalds, Lars Wirzenius and Mitch D'Souza
618 .\" ld-linux.so: Roland McGrath, Ulrich Drepper and others.
619 .\"
620 .\" In the above, (libc5) stands for David Engel's ld.so/ld-linux.so.