]> git.ipfire.org Git - thirdparty/man-pages.git/blob - man8/ld.so.8
close.2: Place discussion of error handling under a subheading in NOTES
[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 symbol.
358 .TP
359 .BR LD_DEBUG " (since glibc 2.1)"
360 Output verbose debugging information about the dynamic linker.
361 If set to
362 .BR all ,
363 print all debugging information,
364 Setting this variable to
365 .BR help
366 does not run the specified program,
367 and displays a help message about which categories can be specified in this
368 environment variable.
369 The categories are:
370 .RS
371 .TP 12
372 .I bindings
373 Display information about which definition each symbol is bound to.
374 .TP
375 .I files
376 Display progress for input file.
377 .TP
378 .I libs
379 Display library search paths.
380 .TP
381 .I reloc
382 Display relocation processing.
383 .TP
384 .I scopes
385 Display scope information.
386 .TP
387 .I statistics
388 Display relocation statistics.
389 .TP
390 .I symbols
391 Display search paths for each symbol look-up.
392 .TP
393 .I unused
394 Determine unused DSOs.
395 .TP
396 .I versions
397 Display version dependencies.
398 .RE
399 .IP
400 The value in
401 .BR LD_DEBUG
402 can specify multiple categories, separated by colons, commas,
403 or (if the value is quoted) spaces.
404
405 Since glibc 2.3.4,
406 .B LD_DEBUG
407 is ignored in secure-execution mode, unless the file
408 .IR /etc/suid\-debug
409 exists (the content of the file is irrelevant).
410 .TP
411 .BR LD_DEBUG_OUTPUT " (since glibc 2.1)"
412 File in which
413 .B LD_DEBUG
414 output should be written.
415 The default is standard error.
416 .B LD_DEBUG_OUTPUT
417 is ignored in secure-execution mode.
418 .TP
419 .BR LD_DYNAMIC_WEAK " (since glibc 2.1.91)"
420 If this environment variable is defined (with any value),
421 allow weak symbols to be overridden (reverting to old glibc behavior).
422 .\" See weak handling
423 .\" https://www.sourceware.org/ml/libc-hacker/2000-06/msg00029.html
424 .\" To: GNU libc hacker <libc-hacker at sourceware dot cygnus dot com>
425 .\" Subject: weak handling
426 .\" From: Ulrich Drepper <drepper at redhat dot com>
427 .\" Date: 07 Jun 2000 20:08:12 -0700
428 .\" Reply-To: drepper at cygnus dot com (Ulrich Drepper)
429 Since glibc 2.3.4,
430 .B LD_DYNAMIC_WEAK
431 is ignored in secure-execution mode.
432 .TP
433 .BR LD_HWCAP_MASK " (since glibc 2.1)"
434 Mask for hardware capabilities.
435 .TP
436 .BR LD_ORIGIN_PATH " (since glibc 2.1)"
437 Path where the binary is found.
438 Since glibc 2.4,
439 .B LD_ORIGIN_PATH
440 is ignored in secure-execution mode.
441 .\" Used only if $ORIGIN can't be determined by normal means
442 .\" (from the origin path saved at load time, or from /proc/self/exe)?
443 .TP
444 .BR LD_POINTER_GUARD " (glibc from 2.4 to 2.22)"
445 Set to 0 to disable pointer guarding.
446 Any other value enables pointer guarding, which is also the default.
447 Pointer guarding is a security mechanism whereby some pointers to code
448 stored in writable program memory (return addresses saved by
449 .BR setjmp (3)
450 or function pointers used by various glibc internals) are mangled
451 semi-randomly to make it more difficult for an attacker to hijack
452 the pointers for use in the event of a buffer overrun or
453 stack-smashing attack.
454 Since glibc 2.23,
455 .\" commit a014cecd82b71b70a6a843e250e06b541ad524f7
456 .B LD_POINTER_GUARD
457 can no longer be used to disable pointer guarding,
458 which is now always enabled.
459 .TP
460 .BR LD_PROFILE " (since glibc 2.1)"
461 The name of a (single) shared object to be profiled,
462 specified either as a pathname or a soname.
463 Profiling output is appended to the file whose name is:
464 "\fI$LD_PROFILE_OUTPUT\fP/\fI$LD_PROFILE\fP.profile".
465 .TP
466 .BR LD_PROFILE_OUTPUT " (since glibc 2.1)"
467 Directory where
468 .B LD_PROFILE
469 output should be written.
470 If this variable is not defined, or is defined as an empty string,
471 then the default is
472 .IR /var/tmp .
473 .B LD_PROFILE_OUTPUT
474 is ignored in secure-execution mode; instead
475 .IR /var/profile
476 is always used.
477 .TP
478 .BR LD_SHOW_AUXV " (since glibc 2.1)"
479 If this environment variable is defined (with any value),
480 show the auxiliary array passed up from the kernel (see also
481 .BR getauxval (3)).
482 Since glibc 2.3.5,
483 .B LD_SHOW_AUXV
484 is ignored in secure-execution mode.
485 .TP
486 .BR LD_TRACE_PRELINKING " (since glibc 2.4)"
487 If this environment variable is defined (with any value),
488 trace prelinking of the object whose name is assigned to
489 this environment variable.
490 (Use
491 .BR ldd (1)
492 to get a list of the objects that might be traced.)
493 If the object name is not recognized,
494 .\" (This is what seems to happen, from experimenting)
495 then all prelinking activity is traced.
496 .TP
497 .BR LD_USE_LOAD_BIAS " (since glibc 2.3.3)"
498 .\" http://sources.redhat.com/ml/libc-hacker/2003-11/msg00127.html
499 .\" Subject: [PATCH] Support LD_USE_LOAD_BIAS
500 .\" Jakub Jelinek
501 By default (i.e., if this variable is not defined),
502 executables and prelinked
503 shared objects will honor base addresses of their dependent shared objects
504 and (nonprelinked) position-independent executables (PIEs)
505 and other shared objects will not honor them.
506 If
507 .B LD_USE_LOAD_BIAS
508 is defined with the value 1, both executables and PIEs
509 will honor the base addresses.
510 If
511 .B LD_USE_LOAD_BIAS
512 is defined with the value 0,
513 neither executables nor PIEs will honor the base addresses.
514 This variable is ignored in secure-execution mode.
515 .TP
516 .BR LD_VERBOSE " (since glibc 2.1)"
517 If set to a nonempty string,
518 output symbol versioning information about the
519 program if the
520 .B LD_TRACE_LOADED_OBJECTS
521 environment variable has been set.
522 .TP
523 .BR LD_WARN " (since glibc 2.1.3)
524 If set to a nonempty string, warn about unresolved symbols.
525 .TP
526 .BR LD_PREFER_MAP_32BIT_EXEC " (x86-64 only; since glibc 2.23)"
527 According to the Intel Silvermont software optimization guide, for 64-bit
528 applications, branch prediction performance can be negatively impacted
529 when the target of a branch is more than 4GB away from the branch.
530 If this environment variable is set (to any value),
531 .BR ld.so
532 will first try to map executable pages using the
533 .BR mmap (2)
534 .BR MAP_32BIT
535 flag, and fall back to mapping without that flag if that attempt fails.
536 NB: MAP_32BIT will map to the low 2GB (not 4GB) of the address space.
537 Because
538 .B MAP_32BIT
539 reduces the address range available for address space layout
540 randomization (ASLR),
541 .B LD_PREFER_MAP_32BIT_EXEC
542 is always disabled in secure-execution mode.
543 .SH FILES
544 .PD 0
545 .TP
546 .I /lib/ld.so
547 a.out dynamic linker/loader
548 .TP
549 .IR /lib/ld\-linux.so. { 1 , 2 }
550 ELF dynamic linker/loader
551 .TP
552 .I /etc/ld.so.cache
553 File containing a compiled list of directories in which to search for
554 shared objects and an ordered list of candidate shared objects.
555 .TP
556 .I /etc/ld.so.preload
557 File containing a whitespace-separated list of ELF shared objects to
558 be loaded before the program.
559 .TP
560 .B lib*.so*
561 shared objects
562 .PD
563 .SH NOTES
564 .SS Hardware capabilities
565 Some shared objects are compiled using hardware-specific instructions which do
566 not exist on every CPU.
567 Such objects should be installed in directories whose names define the
568 required hardware capabilities, such as
569 .IR /usr/lib/sse2/ .
570 The dynamic linker checks these directories against the hardware of the
571 machine and selects the most suitable version of a given shared object.
572 Hardware capability directories can be cascaded to combine CPU features.
573 The list of supported hardware capability names depends on the CPU.
574 The following names are currently recognized:
575 .TP
576 .B Alpha
577 ev4, ev5, ev56, ev6, ev67
578 .TP
579 .B MIPS
580 loongson2e, loongson2f, octeon, octeon2
581 .TP
582 .B PowerPC
583 4xxmac, altivec, arch_2_05, arch_2_06, booke, cellbe, dfp, efpdouble, efpsingle,
584 fpu, ic_snoop, mmu, notb, pa6t, power4, power5, power5+, power6x, ppc32, ppc601,
585 ppc64, smt, spe, ucache, vsx
586 .TP
587 .B SPARC
588 flush, muldiv, stbar, swap, ultra3, v9, v9v, v9v2
589 .TP
590 .B s390
591 dfp, eimm, esan3, etf3enh, g5, highgprs, hpage, ldisp, msa, stfle,
592 z900, z990, z9-109, z10, zarch
593 .TP
594 .B x86 (32-bit only)
595 acpi, apic, clflush, cmov, cx8, dts, fxsr, ht, i386, i486, i586, i686, mca, mmx,
596 mtrr, pat, pbe, pge, pn, pse36, sep, ss, sse, sse2, tm
597 .SH SEE ALSO
598 .BR ld (1),
599 .BR ldd (1),
600 .BR pldd (1),
601 .BR sprof (1),
602 .BR dlopen (3),
603 .BR getauxval (3),
604 .BR capabilities (7),
605 .BR rtld-audit (7),
606 .BR ldconfig (8),
607 .BR sln (8)
608 .\" .SH AUTHORS
609 .\" ld.so: David Engel, Eric Youngdale, Peter MacDonald, Hongjiu Lu, Linus
610 .\" Torvalds, Lars Wirzenius and Mitch D'Souza
611 .\" ld-linux.so: Roland McGrath, Ulrich Drepper and others.
612 .\"
613 .\" In the above, (libc5) stands for David Engel's ld.so/ld-linux.so.