1995-08-26 13:17:39 +00:00
|
|
|
.\" Copyright (c) 1995 Paul Kranenburg
|
|
|
|
.\" All rights reserved.
|
|
|
|
.\"
|
|
|
|
.\" Redistribution and use in source and binary forms, with or without
|
|
|
|
.\" modification, are permitted provided that the following conditions
|
|
|
|
.\" are met:
|
|
|
|
.\" 1. Redistributions of source code must retain the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer.
|
|
|
|
.\" 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer in the
|
|
|
|
.\" documentation and/or other materials provided with the distribution.
|
|
|
|
.\" 3. All advertising materials mentioning features or use of this software
|
1997-01-12 00:19:14 +00:00
|
|
|
.\" must display the following acknowledgment:
|
1995-08-26 13:17:39 +00:00
|
|
|
.\" This product includes software developed by Paul Kranenburg.
|
|
|
|
.\" 3. The name of the author may not be used to endorse or promote products
|
|
|
|
.\" derived from this software without specific prior written permission
|
|
|
|
.\"
|
|
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
.\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
.\"
|
2003-06-02 15:02:06 +00:00
|
|
|
.\" $FreeBSD$
|
|
|
|
.\"
|
2017-05-29 13:36:32 +00:00
|
|
|
.Dd May 20, 2017
|
1995-08-26 13:17:39 +00:00
|
|
|
.Dt RTLD 1
|
2001-07-10 10:49:54 +00:00
|
|
|
.Os
|
1995-08-26 13:17:39 +00:00
|
|
|
.Sh NAME
|
2000-01-29 03:16:54 +00:00
|
|
|
.Nm ld-elf.so.1 ,
|
2003-02-13 23:07:28 +00:00
|
|
|
.Nm ld.so ,
|
1999-09-28 05:35:59 +00:00
|
|
|
.Nm rtld
|
1995-08-26 13:17:39 +00:00
|
|
|
.Nd run-time link-editor
|
|
|
|
.Sh DESCRIPTION
|
2002-07-06 19:19:48 +00:00
|
|
|
The
|
1995-08-26 13:17:39 +00:00
|
|
|
.Nm
|
2002-07-06 19:19:48 +00:00
|
|
|
utility is a self-contained shared object providing run-time
|
1995-08-26 13:17:39 +00:00
|
|
|
support for loading and link-editing shared objects into a process'
|
2002-01-10 17:49:57 +00:00
|
|
|
address space.
|
|
|
|
It is also commonly known as the dynamic linker.
|
2000-01-29 03:16:54 +00:00
|
|
|
It uses the data structures
|
1995-08-26 13:17:39 +00:00
|
|
|
contained within dynamically linked programs to determine which shared
|
2000-01-29 03:16:54 +00:00
|
|
|
libraries are needed and loads them using the
|
1995-08-26 13:17:39 +00:00
|
|
|
.Xr mmap 2
|
|
|
|
system call.
|
|
|
|
.Pp
|
1997-01-12 00:19:14 +00:00
|
|
|
After all shared libraries have been successfully loaded,
|
1995-08-26 13:17:39 +00:00
|
|
|
.Nm
|
|
|
|
proceeds to resolve external references from both the main program and
|
2002-01-10 17:49:57 +00:00
|
|
|
all objects loaded.
|
|
|
|
A mechanism is provided for initialization routines
|
2000-01-29 03:16:54 +00:00
|
|
|
to be called on a per-object basis, giving a shared object an opportunity
|
|
|
|
to perform any extra set-up before execution of the program proper begins.
|
1997-05-27 13:46:40 +00:00
|
|
|
This is useful for C++ libraries that contain static constructors.
|
1995-08-26 13:17:39 +00:00
|
|
|
.Pp
|
2009-04-01 14:38:20 +00:00
|
|
|
When resolving dependencies for the loaded objects,
|
|
|
|
.Nm
|
2017-05-29 13:36:32 +00:00
|
|
|
translates dynamic token strings in rpath and soname.
|
|
|
|
If the
|
2009-04-01 14:38:20 +00:00
|
|
|
.Fl "z origin"
|
2017-05-29 13:36:32 +00:00
|
|
|
option of the static linker was set when linking the binary,
|
|
|
|
the token expansion is performed at the object load time, see
|
2009-04-01 14:38:20 +00:00
|
|
|
.Xr ld 1 .
|
|
|
|
The following strings are recognized now:
|
|
|
|
.Bl -tag -width ".Pa $PLATFORM"
|
|
|
|
.It Pa $ORIGIN
|
|
|
|
Translated to the full path of the loaded object.
|
|
|
|
.It Pa $OSNAME
|
|
|
|
Translated to the name of the operating system implementation.
|
|
|
|
.It Pa $OSREL
|
|
|
|
Translated to the release level of the operating system.
|
|
|
|
.It Pa $PLATFORM
|
|
|
|
Translated to the machine hardware platform.
|
|
|
|
.El
|
|
|
|
.Pp
|
2002-07-06 19:19:48 +00:00
|
|
|
The
|
1995-08-26 13:17:39 +00:00
|
|
|
.Nm
|
2002-07-06 19:19:48 +00:00
|
|
|
utility itself is loaded by the kernel together with any dynamically-linked
|
2002-01-10 17:49:57 +00:00
|
|
|
program that is to be executed.
|
|
|
|
The kernel transfers control to the
|
|
|
|
dynamic linker.
|
|
|
|
After the dynamic linker has finished loading,
|
2000-01-29 03:16:54 +00:00
|
|
|
relocating, and initializing the program and its required shared
|
|
|
|
objects, it transfers control to the entry point of the program.
|
2012-07-15 10:53:48 +00:00
|
|
|
The following search order is used to locate required shared objects:
|
1995-08-26 13:17:39 +00:00
|
|
|
.Pp
|
2012-07-15 10:53:48 +00:00
|
|
|
.Bl -enum -offset indent -compact
|
|
|
|
.It
|
|
|
|
.Dv DT_RPATH
|
|
|
|
of the referencing object unless that object also contains a
|
|
|
|
.Dv DT_RUNPATH
|
|
|
|
tag
|
|
|
|
.It
|
|
|
|
.Dv DT_RPATH
|
|
|
|
of the program unless the referencing object contains a
|
|
|
|
.Dv DT_RUNPATH
|
|
|
|
tag
|
|
|
|
.It
|
|
|
|
Path indicated by
|
|
|
|
.Ev LD_LIBRARY_PATH
|
|
|
|
environment variable
|
|
|
|
.It
|
|
|
|
.Dv DT_RUNPATH
|
|
|
|
of the referencing object
|
|
|
|
.It
|
|
|
|
Hints file produced by the
|
1995-08-26 13:17:39 +00:00
|
|
|
.Xr ldconfig 8
|
2012-07-15 10:53:48 +00:00
|
|
|
utility
|
|
|
|
.It
|
|
|
|
The
|
|
|
|
.Pa /lib
|
|
|
|
and
|
|
|
|
.Pa /usr/lib
|
|
|
|
directories, unless the referencing object was linked using the
|
|
|
|
.Dq Fl z Ar nodefaultlib
|
|
|
|
option
|
|
|
|
.El
|
1995-08-26 13:17:39 +00:00
|
|
|
.Pp
|
2002-07-06 19:19:48 +00:00
|
|
|
The
|
1995-08-26 13:17:39 +00:00
|
|
|
.Nm
|
2002-07-06 19:19:48 +00:00
|
|
|
utility
|
1997-09-13 16:01:53 +00:00
|
|
|
recognizes a number of environment variables that can be used to modify
|
2006-03-27 00:53:58 +00:00
|
|
|
its behaviour.
|
|
|
|
On 64-bit architectures, the linker for 32-bit objects recognizes
|
|
|
|
all the environment variables listed below, but is being prefixed with
|
2006-09-17 21:48:47 +00:00
|
|
|
.Ev LD_32_ ,
|
|
|
|
for example:
|
|
|
|
.Ev LD_32_TRACE_LOADED_OBJECTS .
|
2003-06-02 15:02:06 +00:00
|
|
|
.Bl -tag -width ".Ev LD_LIBMAP_DISABLE"
|
2003-06-19 03:55:38 +00:00
|
|
|
.It Ev LD_DUMP_REL_POST
|
2007-01-23 22:38:39 +00:00
|
|
|
If set,
|
2003-06-19 03:55:38 +00:00
|
|
|
.Nm
|
2003-06-19 04:34:09 +00:00
|
|
|
will print a table containing all relocations after symbol
|
2003-06-19 03:55:38 +00:00
|
|
|
binding and relocation.
|
|
|
|
.It Ev LD_DUMP_REL_PRE
|
2007-01-23 22:38:39 +00:00
|
|
|
If set,
|
2003-06-19 03:55:38 +00:00
|
|
|
.Nm
|
2003-06-19 04:34:09 +00:00
|
|
|
will print a table containing all relocations before symbol
|
2003-06-19 03:55:38 +00:00
|
|
|
binding and relocation.
|
2005-02-04 02:46:41 +00:00
|
|
|
.It Ev LD_LIBMAP
|
|
|
|
A library replacement list in the same format as
|
|
|
|
.Xr libmap.conf 5 .
|
|
|
|
For convenience, the characters
|
|
|
|
.Ql =
|
|
|
|
and
|
|
|
|
.Ql \&,
|
|
|
|
can be used instead of a space and a newline.
|
2005-06-14 08:41:11 +00:00
|
|
|
This variable is parsed after
|
2005-02-04 02:46:41 +00:00
|
|
|
.Xr libmap.conf 5 ,
|
|
|
|
and will override its entries.
|
2007-05-17 19:14:25 +00:00
|
|
|
This variable is unset for set-user-ID and set-group-ID programs.
|
2003-05-31 14:45:11 +00:00
|
|
|
.It Ev LD_LIBMAP_DISABLE
|
2003-06-02 15:02:06 +00:00
|
|
|
If set, disables the use of
|
2005-06-14 08:41:11 +00:00
|
|
|
.Xr libmap.conf 5
|
2005-02-04 02:46:41 +00:00
|
|
|
and
|
|
|
|
.Ev LD_LIBMAP .
|
2007-05-17 19:14:25 +00:00
|
|
|
This variable is unset for set-user-ID and set-group-ID programs.
|
2009-03-23 16:49:00 +00:00
|
|
|
.It Ev LD_ELF_HINTS_PATH
|
|
|
|
This variable will override the default location of
|
|
|
|
.Dq hints
|
|
|
|
file.
|
|
|
|
This variable is unset for set-user-ID and set-group-ID programs.
|
1995-08-26 13:17:39 +00:00
|
|
|
.It Ev LD_LIBRARY_PATH
|
|
|
|
A colon separated list of directories, overriding the default search path
|
|
|
|
for shared libraries.
|
2007-05-17 19:14:25 +00:00
|
|
|
This variable is unset for set-user-ID and set-group-ID programs.
|
2012-07-15 10:53:48 +00:00
|
|
|
.It Ev LD_LIBRARY_PATH_RPATH
|
|
|
|
If the variable is specified and has a value starting with
|
|
|
|
any of \'y\', \'Y\' or \'1\' symbols, the path specified by
|
|
|
|
.Ev LD_LIBRARY_PATH
|
|
|
|
variable is allowed to override the path from
|
|
|
|
.Dv DT_RPATH
|
|
|
|
for binaries which does not contain
|
|
|
|
.Dv DT_RUNPATH
|
|
|
|
tag.
|
|
|
|
For such binaries, when the variable
|
|
|
|
.Ev LD_LIBRARY_PATH_RPATH
|
|
|
|
is set,
|
|
|
|
.Dq Fl z Ar nodefaultlib
|
|
|
|
link-time option is ignored as well.
|
1996-04-20 18:29:50 +00:00
|
|
|
.It Ev LD_PRELOAD
|
2000-01-29 03:16:54 +00:00
|
|
|
A list of shared libraries, separated by colons and/or white space,
|
|
|
|
to be linked in before any
|
2002-01-10 17:49:57 +00:00
|
|
|
other shared libraries.
|
|
|
|
If the directory is not specified then
|
|
|
|
the directories specified by
|
|
|
|
.Ev LD_LIBRARY_PATH
|
|
|
|
will be searched first
|
1996-04-20 18:29:50 +00:00
|
|
|
followed by the set of built-in standard directories.
|
2007-05-17 19:14:25 +00:00
|
|
|
This variable is unset for set-user-ID and set-group-ID programs.
|
2017-05-18 00:32:05 +00:00
|
|
|
.It Ev LD_LIBRARY_PATH_FDS
|
2014-06-20 17:08:32 +00:00
|
|
|
A colon separated list of file descriptor numbers for library directories.
|
|
|
|
This is intended for use within
|
|
|
|
.Xr capsicum 4
|
|
|
|
sandboxes, when global namespaces such as the filesystem are unavailable.
|
|
|
|
It is consulted just after LD_LIBRARY_PATH.
|
|
|
|
This variable is unset for set-user-ID and set-group-ID programs.
|
2017-03-15 21:11:57 +00:00
|
|
|
.It Ev LD_BIND_NOT
|
|
|
|
When set to a nonempty string, prevents modifications of the PLT slots when
|
|
|
|
doing bindings.
|
|
|
|
As result, each call of the PLT-resolved function is resolved.
|
|
|
|
In combination with debug output, this provides complete account of
|
|
|
|
all bind actions at runtime.
|
2017-03-16 22:15:43 +00:00
|
|
|
This variable is unset for set-user-ID and set-group-ID programs.
|
1997-01-12 00:16:36 +00:00
|
|
|
.It Ev LD_BIND_NOW
|
|
|
|
When set to a nonempty string, causes
|
|
|
|
.Nm
|
|
|
|
to relocate all external function calls before starting execution of the
|
2002-01-10 17:49:57 +00:00
|
|
|
program.
|
|
|
|
Normally, function calls are bound lazily, at the first call
|
1997-01-12 00:16:36 +00:00
|
|
|
of each function.
|
|
|
|
.Ev LD_BIND_NOW
|
|
|
|
increases the start-up time of a program, but it avoids run-time
|
|
|
|
surprises caused by unexpectedly undefined functions.
|
1995-08-26 13:17:39 +00:00
|
|
|
.It Ev LD_TRACE_LOADED_OBJECTS
|
1997-01-12 00:16:36 +00:00
|
|
|
When set to a nonempty string, causes
|
1995-08-26 13:17:39 +00:00
|
|
|
.Nm
|
|
|
|
to exit after loading the shared objects and printing a summary which includes
|
|
|
|
the absolute pathnames of all objects, to standard output.
|
2002-02-17 07:04:32 +00:00
|
|
|
.It Ev LD_TRACE_LOADED_OBJECTS_ALL
|
|
|
|
When set to a nonempty string, causes
|
|
|
|
.Nm
|
|
|
|
to expand the summary to indicate which objects caused each object to
|
|
|
|
be loaded.
|
Update to handle new version ld.so.hints and info in executable for
configurable fallback search paths, as well as new crt interface version.
Also:
- even faster getenv(), get all environment variable settings in a single
pass.
- ldd printf-like format specifications
- minor code cleanups, one vsprintf -> vsnprintf (harmless)
The library search sequence is a little more complete now. Before,
it'd search $LD_LIBRARY_PATH (by opendir/readdir/closedir), then read
the hints file, then read /usr/lib (again by scanning thr directory). It
would then fail if there was no "found" library.
Now, it does LD_LIBRARY_PATH and the hints file the same, but then uses
a longer fallback path. The -R path is fetched from the executable if
specified at build time, the ldconfig path is appended, and /usr/lib is
appended to that. Duplicates are suppressed. This means that simply
placing a new library in /usr/local/lib will work (the same as it did in
/usr/lib) without needing ldconfig -m. It will find it quicker if the
ldconfig is run though.
Similar changes have been made to the NetBSD ld.so, but ours is rather
different now due to John Polstra's speedups and fixes from a while back.
The ldd printf-like format support came direct from NetBSD.
Reviewed by: nate, jdp
1996-10-01 01:52:03 +00:00
|
|
|
.It Ev LD_TRACE_LOADED_OBJECTS_FMT1
|
|
|
|
.It Ev LD_TRACE_LOADED_OBJECTS_FMT2
|
|
|
|
When set, these variables are interpreted as format strings a la
|
|
|
|
.Xr printf 3
|
|
|
|
to customize the trace output and are used by
|
2001-01-16 09:15:57 +00:00
|
|
|
.Xr ldd 1 Ns 's
|
Update to handle new version ld.so.hints and info in executable for
configurable fallback search paths, as well as new crt interface version.
Also:
- even faster getenv(), get all environment variable settings in a single
pass.
- ldd printf-like format specifications
- minor code cleanups, one vsprintf -> vsnprintf (harmless)
The library search sequence is a little more complete now. Before,
it'd search $LD_LIBRARY_PATH (by opendir/readdir/closedir), then read
the hints file, then read /usr/lib (again by scanning thr directory). It
would then fail if there was no "found" library.
Now, it does LD_LIBRARY_PATH and the hints file the same, but then uses
a longer fallback path. The -R path is fetched from the executable if
specified at build time, the ldconfig path is appended, and /usr/lib is
appended to that. Duplicates are suppressed. This means that simply
placing a new library in /usr/local/lib will work (the same as it did in
/usr/lib) without needing ldconfig -m. It will find it quicker if the
ldconfig is run though.
Similar changes have been made to the NetBSD ld.so, but ours is rather
different now due to John Polstra's speedups and fixes from a while back.
The ldd printf-like format support came direct from NetBSD.
Reviewed by: nate, jdp
1996-10-01 01:52:03 +00:00
|
|
|
.Fl f
|
|
|
|
option and allows
|
|
|
|
.Xr ldd 1
|
|
|
|
to be operated as a filter more conveniently.
|
2007-05-12 12:24:49 +00:00
|
|
|
If the dependency name starts with string
|
|
|
|
.Pa lib ,
|
|
|
|
.Ev LD_TRACE_LOADED_OBJECTS_FMT1
|
|
|
|
is used, otherwise
|
|
|
|
.Ev LD_TRACE_LOADED_OBJECTS_FMT2
|
|
|
|
is used.
|
Update to handle new version ld.so.hints and info in executable for
configurable fallback search paths, as well as new crt interface version.
Also:
- even faster getenv(), get all environment variable settings in a single
pass.
- ldd printf-like format specifications
- minor code cleanups, one vsprintf -> vsnprintf (harmless)
The library search sequence is a little more complete now. Before,
it'd search $LD_LIBRARY_PATH (by opendir/readdir/closedir), then read
the hints file, then read /usr/lib (again by scanning thr directory). It
would then fail if there was no "found" library.
Now, it does LD_LIBRARY_PATH and the hints file the same, but then uses
a longer fallback path. The -R path is fetched from the executable if
specified at build time, the ldconfig path is appended, and /usr/lib is
appended to that. Duplicates are suppressed. This means that simply
placing a new library in /usr/local/lib will work (the same as it did in
/usr/lib) without needing ldconfig -m. It will find it quicker if the
ldconfig is run though.
Similar changes have been made to the NetBSD ld.so, but ours is rather
different now due to John Polstra's speedups and fixes from a while back.
The ldd printf-like format support came direct from NetBSD.
Reviewed by: nate, jdp
1996-10-01 01:52:03 +00:00
|
|
|
The following conversions can be used:
|
2002-01-10 17:49:57 +00:00
|
|
|
.Bl -tag -width 4n
|
|
|
|
.It Li %a
|
Update to handle new version ld.so.hints and info in executable for
configurable fallback search paths, as well as new crt interface version.
Also:
- even faster getenv(), get all environment variable settings in a single
pass.
- ldd printf-like format specifications
- minor code cleanups, one vsprintf -> vsnprintf (harmless)
The library search sequence is a little more complete now. Before,
it'd search $LD_LIBRARY_PATH (by opendir/readdir/closedir), then read
the hints file, then read /usr/lib (again by scanning thr directory). It
would then fail if there was no "found" library.
Now, it does LD_LIBRARY_PATH and the hints file the same, but then uses
a longer fallback path. The -R path is fetched from the executable if
specified at build time, the ldconfig path is appended, and /usr/lib is
appended to that. Duplicates are suppressed. This means that simply
placing a new library in /usr/local/lib will work (the same as it did in
/usr/lib) without needing ldconfig -m. It will find it quicker if the
ldconfig is run though.
Similar changes have been made to the NetBSD ld.so, but ours is rather
different now due to John Polstra's speedups and fixes from a while back.
The ldd printf-like format support came direct from NetBSD.
Reviewed by: nate, jdp
1996-10-01 01:52:03 +00:00
|
|
|
The main program's name
|
2001-08-07 15:48:51 +00:00
|
|
|
(also known as
|
|
|
|
.Dq __progname ) .
|
2002-01-10 17:49:57 +00:00
|
|
|
.It Li \&%A
|
Update to handle new version ld.so.hints and info in executable for
configurable fallback search paths, as well as new crt interface version.
Also:
- even faster getenv(), get all environment variable settings in a single
pass.
- ldd printf-like format specifications
- minor code cleanups, one vsprintf -> vsnprintf (harmless)
The library search sequence is a little more complete now. Before,
it'd search $LD_LIBRARY_PATH (by opendir/readdir/closedir), then read
the hints file, then read /usr/lib (again by scanning thr directory). It
would then fail if there was no "found" library.
Now, it does LD_LIBRARY_PATH and the hints file the same, but then uses
a longer fallback path. The -R path is fetched from the executable if
specified at build time, the ldconfig path is appended, and /usr/lib is
appended to that. Duplicates are suppressed. This means that simply
placing a new library in /usr/local/lib will work (the same as it did in
/usr/lib) without needing ldconfig -m. It will find it quicker if the
ldconfig is run though.
Similar changes have been made to the NetBSD ld.so, but ours is rather
different now due to John Polstra's speedups and fixes from a while back.
The ldd printf-like format support came direct from NetBSD.
Reviewed by: nate, jdp
1996-10-01 01:52:03 +00:00
|
|
|
The value of the environment variable
|
2008-05-15 10:47:14 +00:00
|
|
|
.Ev LD_TRACE_LOADED_OBJECTS_PROGNAME .
|
|
|
|
Typically used to print both the names of programs and shared libraries
|
|
|
|
being inspected using
|
|
|
|
.Xr ldd 1 .
|
2002-01-10 17:49:57 +00:00
|
|
|
.It Li %o
|
1997-01-12 00:19:14 +00:00
|
|
|
The library name.
|
2002-01-10 17:49:57 +00:00
|
|
|
.It Li %p
|
Update to handle new version ld.so.hints and info in executable for
configurable fallback search paths, as well as new crt interface version.
Also:
- even faster getenv(), get all environment variable settings in a single
pass.
- ldd printf-like format specifications
- minor code cleanups, one vsprintf -> vsnprintf (harmless)
The library search sequence is a little more complete now. Before,
it'd search $LD_LIBRARY_PATH (by opendir/readdir/closedir), then read
the hints file, then read /usr/lib (again by scanning thr directory). It
would then fail if there was no "found" library.
Now, it does LD_LIBRARY_PATH and the hints file the same, but then uses
a longer fallback path. The -R path is fetched from the executable if
specified at build time, the ldconfig path is appended, and /usr/lib is
appended to that. Duplicates are suppressed. This means that simply
placing a new library in /usr/local/lib will work (the same as it did in
/usr/lib) without needing ldconfig -m. It will find it quicker if the
ldconfig is run though.
Similar changes have been made to the NetBSD ld.so, but ours is rather
different now due to John Polstra's speedups and fixes from a while back.
The ldd printf-like format support came direct from NetBSD.
Reviewed by: nate, jdp
1996-10-01 01:52:03 +00:00
|
|
|
The full pathname as determined by
|
|
|
|
.Nm rtld Ns 's
|
|
|
|
library search rules.
|
2002-01-10 17:49:57 +00:00
|
|
|
.It Li %x
|
Update to handle new version ld.so.hints and info in executable for
configurable fallback search paths, as well as new crt interface version.
Also:
- even faster getenv(), get all environment variable settings in a single
pass.
- ldd printf-like format specifications
- minor code cleanups, one vsprintf -> vsnprintf (harmless)
The library search sequence is a little more complete now. Before,
it'd search $LD_LIBRARY_PATH (by opendir/readdir/closedir), then read
the hints file, then read /usr/lib (again by scanning thr directory). It
would then fail if there was no "found" library.
Now, it does LD_LIBRARY_PATH and the hints file the same, but then uses
a longer fallback path. The -R path is fetched from the executable if
specified at build time, the ldconfig path is appended, and /usr/lib is
appended to that. Duplicates are suppressed. This means that simply
placing a new library in /usr/local/lib will work (the same as it did in
/usr/lib) without needing ldconfig -m. It will find it quicker if the
ldconfig is run though.
Similar changes have been made to the NetBSD ld.so, but ours is rather
different now due to John Polstra's speedups and fixes from a while back.
The ldd printf-like format support came direct from NetBSD.
Reviewed by: nate, jdp
1996-10-01 01:52:03 +00:00
|
|
|
The library's load address.
|
|
|
|
.El
|
|
|
|
.Pp
|
|
|
|
Additionally,
|
2002-01-10 17:49:57 +00:00
|
|
|
.Ql \en
|
Update to handle new version ld.so.hints and info in executable for
configurable fallback search paths, as well as new crt interface version.
Also:
- even faster getenv(), get all environment variable settings in a single
pass.
- ldd printf-like format specifications
- minor code cleanups, one vsprintf -> vsnprintf (harmless)
The library search sequence is a little more complete now. Before,
it'd search $LD_LIBRARY_PATH (by opendir/readdir/closedir), then read
the hints file, then read /usr/lib (again by scanning thr directory). It
would then fail if there was no "found" library.
Now, it does LD_LIBRARY_PATH and the hints file the same, but then uses
a longer fallback path. The -R path is fetched from the executable if
specified at build time, the ldconfig path is appended, and /usr/lib is
appended to that. Duplicates are suppressed. This means that simply
placing a new library in /usr/local/lib will work (the same as it did in
/usr/lib) without needing ldconfig -m. It will find it quicker if the
ldconfig is run though.
Similar changes have been made to the NetBSD ld.so, but ours is rather
different now due to John Polstra's speedups and fixes from a while back.
The ldd printf-like format support came direct from NetBSD.
Reviewed by: nate, jdp
1996-10-01 01:52:03 +00:00
|
|
|
and
|
2002-01-10 17:49:57 +00:00
|
|
|
.Ql \et
|
1997-09-13 16:01:53 +00:00
|
|
|
are recognized and have their usual meaning.
|
2007-01-23 22:38:39 +00:00
|
|
|
.It Ev LD_UTRACE
|
|
|
|
If set,
|
|
|
|
.Nm
|
|
|
|
will log events such as the loading and unloading of shared objects via
|
|
|
|
.Xr utrace 2 .
|
2010-12-25 08:51:20 +00:00
|
|
|
.It Ev LD_LOADFLTR
|
|
|
|
If set,
|
|
|
|
.Nm
|
|
|
|
will process the filtee dependencies of the loaded objects immediately,
|
|
|
|
instead of postponing it until required.
|
|
|
|
Normally, the filtees are opened at the time of the first symbol resolution
|
|
|
|
from the filter object.
|
1995-08-26 13:17:39 +00:00
|
|
|
.El
|
2017-05-29 13:38:26 +00:00
|
|
|
.Sh DIRECT EXECUTION MODE
|
|
|
|
.Nm
|
|
|
|
is typically used implicitly, loaded by the kernel as requested by the
|
|
|
|
.Dv PT_INTERP
|
|
|
|
program header of the executed binary.
|
|
|
|
.Fx
|
|
|
|
also supports a direct execution mode for the dynamic linker.
|
|
|
|
In this mode, the user explicitly executes
|
|
|
|
.Nm
|
|
|
|
and provides the path of the program to be linked and executed as
|
|
|
|
an argument.
|
|
|
|
This mode allows use of a non-standard dynamic linker for a program
|
|
|
|
activation without changing the binary or without changing
|
|
|
|
the installed dynamic linker.
|
|
|
|
Execution options may be specified.
|
|
|
|
.Pp
|
|
|
|
The syntax of the direct invocation is
|
|
|
|
.Bd -ragged -offset indent
|
|
|
|
.Pa /libexec/ld-elf.so.1
|
|
|
|
.Op Fl f Ar fd
|
|
|
|
.Op Fl p
|
|
|
|
.Op Fl -
|
|
|
|
.Pa image_path
|
|
|
|
.Op Ar image arguments
|
|
|
|
.Ed
|
|
|
|
.Pp
|
2017-07-14 15:42:12 +00:00
|
|
|
The options are:
|
2017-05-29 13:38:26 +00:00
|
|
|
.Bl -tag -width indent
|
|
|
|
.It Fl f Ar fd
|
|
|
|
File descriptor
|
|
|
|
.Ar fd
|
|
|
|
references the binary to be activated by
|
|
|
|
.Nm .
|
|
|
|
It must already be opened in the process when executing
|
|
|
|
.Nm .
|
|
|
|
If this option is specified,
|
|
|
|
.Ar image_path
|
|
|
|
is only used to provide the
|
|
|
|
.Va argv[0]
|
|
|
|
value to the program.
|
|
|
|
.It Fl p
|
|
|
|
If the
|
|
|
|
.Pa image_path
|
|
|
|
argument specifies a name which does not contain a slash
|
|
|
|
.Dq Li /
|
|
|
|
character,
|
|
|
|
.Nm
|
|
|
|
uses the search path provided by the environment variable
|
|
|
|
.Dv PATH
|
|
|
|
to find the binary to execute.
|
|
|
|
.It Fl -
|
|
|
|
Ends the
|
|
|
|
.Nm
|
|
|
|
options.
|
|
|
|
The argument following
|
|
|
|
.Fl -
|
2017-07-14 15:42:12 +00:00
|
|
|
is interpreted as the path of the binary to execute.
|
2017-05-29 13:38:26 +00:00
|
|
|
.El
|
|
|
|
.Pp
|
2017-07-14 15:42:12 +00:00
|
|
|
In the direct execution mode,
|
2017-05-29 13:38:26 +00:00
|
|
|
.Nm
|
2017-07-14 15:42:12 +00:00
|
|
|
emulates verification of the binary execute permission for the
|
|
|
|
current user.
|
|
|
|
This is done to avoid breaking user expectations in naively restricted
|
|
|
|
execution environments.
|
2017-05-29 13:38:26 +00:00
|
|
|
The verification only uses Unix
|
|
|
|
.Dv DACs ,
|
|
|
|
ignores
|
2017-09-01 16:56:37 +00:00
|
|
|
.Dv ACLs ,
|
2017-07-14 15:42:12 +00:00
|
|
|
and is naturally prone to race conditions.
|
|
|
|
Environments which rely on such restrictions are weak
|
|
|
|
and breakable on their own.
|
1995-08-26 13:17:39 +00:00
|
|
|
.Sh FILES
|
2006-03-27 00:53:58 +00:00
|
|
|
.Bl -tag -width ".Pa /var/run/ld-elf32.so.hints" -compact
|
2000-12-20 13:26:01 +00:00
|
|
|
.It Pa /var/run/ld-elf.so.hints
|
2003-05-16 21:34:21 +00:00
|
|
|
Hints file.
|
2006-03-27 00:53:58 +00:00
|
|
|
.It Pa /var/run/ld-elf32.so.hints
|
|
|
|
Hints file for 32-bit binaries on 64-bit system.
|
2003-04-07 16:21:26 +00:00
|
|
|
.It Pa /etc/libmap.conf
|
2003-05-16 21:34:21 +00:00
|
|
|
The libmap configuration file.
|
2006-03-27 00:53:58 +00:00
|
|
|
.It Pa /etc/libmap32.conf
|
|
|
|
The libmap configuration file for 32-bit binaries on 64-bit system.
|
2000-12-20 13:26:01 +00:00
|
|
|
.El
|
1995-08-26 13:17:39 +00:00
|
|
|
.Sh SEE ALSO
|
1996-09-23 22:24:39 +00:00
|
|
|
.Xr ld 1 ,
|
2000-03-28 09:01:04 +00:00
|
|
|
.Xr ldd 1 ,
|
2014-06-20 17:08:32 +00:00
|
|
|
.Xr capsicum 4 ,
|
2001-07-06 16:46:48 +00:00
|
|
|
.Xr elf 5 ,
|
2003-05-17 19:46:49 +00:00
|
|
|
.Xr libmap.conf 5 ,
|
1997-01-13 00:25:51 +00:00
|
|
|
.Xr ldconfig 8
|