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