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