2021-02-02 01:57:40 +08:00
|
|
|
Notes for UNIX-like platforms
|
2020-06-10 23:49:25 +08:00
|
|
|
=============================
|
2017-03-02 06:43:03 +08:00
|
|
|
|
2020-06-10 23:49:25 +08:00
|
|
|
For Unix/POSIX runtime systems on Windows,
|
2021-02-02 01:57:40 +08:00
|
|
|
please see the [Notes for Windows platforms](NOTES-WINDOWS.md).
|
2017-03-02 06:43:03 +08:00
|
|
|
|
2018-06-19 19:03:55 +08:00
|
|
|
OpenSSL uses the compiler to link programs and shared libraries
|
|
|
|
---------------------------------------------------------------
|
2017-03-02 06:43:03 +08:00
|
|
|
|
2018-06-19 19:03:55 +08:00
|
|
|
OpenSSL's generated Makefile uses the C compiler command line to
|
|
|
|
link programs, shared libraries and dynamically loadable shared
|
|
|
|
objects. Because of this, any linking option that's given to the
|
|
|
|
configuration scripts MUST be in a form that the compiler can accept.
|
|
|
|
This varies between systems, where some have compilers that accept
|
2020-06-10 23:49:25 +08:00
|
|
|
linker flags directly, while others take them in `-Wl,` form. You need
|
2018-06-19 19:03:55 +08:00
|
|
|
to read your compiler documentation to figure out what is acceptable,
|
2020-06-10 23:49:25 +08:00
|
|
|
and `ld(1)` to figure out what linker options are available.
|
2017-03-02 06:43:03 +08:00
|
|
|
|
2018-06-19 19:03:55 +08:00
|
|
|
Shared libraries and installation in non-default locations
|
|
|
|
----------------------------------------------------------
|
|
|
|
|
|
|
|
Every Unix system has its own set of default locations for shared
|
2020-06-10 23:49:25 +08:00
|
|
|
libraries, such as `/lib`, `/usr/lib` or possibly `/usr/local/lib`. If
|
2018-06-19 19:03:55 +08:00
|
|
|
libraries are installed in non-default locations, dynamically linked
|
2018-06-22 20:13:59 +08:00
|
|
|
binaries will not find them and therefore fail to run, unless they get
|
|
|
|
a bit of help from a defined runtime shared library search path.
|
2018-06-19 19:03:55 +08:00
|
|
|
|
2020-06-10 23:49:25 +08:00
|
|
|
For OpenSSL's application (the `openssl` command), our configuration
|
2018-06-19 19:03:55 +08:00
|
|
|
scripts do NOT generally set the runtime shared library search path for
|
2018-06-22 20:13:59 +08:00
|
|
|
you. It's therefore advisable to set it explicitly when configuring,
|
2018-06-19 19:03:55 +08:00
|
|
|
unless the libraries are to be installed in directories that you know
|
|
|
|
to be in the default list.
|
|
|
|
|
|
|
|
Runtime shared library search paths are specified with different
|
|
|
|
linking options depending on operating system and versions thereof, and
|
|
|
|
are talked about differently in their respective documentation;
|
|
|
|
variations of RPATH are the most usual (note: ELF systems have two such
|
|
|
|
tags, more on that below).
|
|
|
|
|
|
|
|
Possible options to set the runtime shared library search path include
|
|
|
|
the following:
|
|
|
|
|
2020-06-10 23:49:25 +08:00
|
|
|
-Wl,-rpath,/whatever/path # Linux, *BSD, etc.
|
|
|
|
-R /whatever/path # Solaris
|
|
|
|
-Wl,-R,/whatever/path # AIX (-bsvr4 is passed internally)
|
|
|
|
-Wl,+b,/whatever/path # HP-UX
|
|
|
|
-rpath /whatever/path # Tru64, IRIX
|
2018-02-15 17:06:15 +08:00
|
|
|
|
2018-06-19 19:03:55 +08:00
|
|
|
OpenSSL's configuration scripts recognise all these options and pass
|
2018-06-22 20:13:59 +08:00
|
|
|
them to the Makefile that they build. (In fact, all arguments starting
|
2020-06-10 23:49:25 +08:00
|
|
|
with `-Wl,` are recognised as linker options.)
|
2021-08-11 22:21:03 +08:00
|
|
|
Please note that 'l' in '-Wl' is lowercase L and not 1.
|
2018-06-19 19:03:55 +08:00
|
|
|
|
|
|
|
Please do not use verbatim directories in your runtime shared library
|
|
|
|
search path! Some OpenSSL config targets add an extra directory level
|
|
|
|
for multilib installations. To help with that, the produced Makefile
|
|
|
|
includes the variable LIBRPATH, which is a convenience variable to be
|
|
|
|
used with the runtime shared library search path options, as shown in
|
|
|
|
this example:
|
2018-02-15 17:06:15 +08:00
|
|
|
|
2020-03-04 00:20:07 +08:00
|
|
|
$ ./Configure --prefix=/usr/local/ssl --openssldir=/usr/local/ssl \
|
2018-06-19 19:03:55 +08:00
|
|
|
'-Wl,-rpath,$(LIBRPATH)'
|
|
|
|
|
|
|
|
On modern ELF based systems, there are two runtime search paths tags to
|
2020-06-10 23:49:25 +08:00
|
|
|
consider, `DT_RPATH` and `DT_RUNPATH`. Shared objects are searched for in
|
2018-06-19 19:03:55 +08:00
|
|
|
this order:
|
|
|
|
|
2020-06-10 23:49:25 +08:00
|
|
|
1. Using directories specified in DT_RPATH, unless DT_RUNPATH is also set.
|
|
|
|
2. Using the environment variable LD_LIBRARY_PATH
|
|
|
|
3. Using directories specified in DT_RUNPATH.
|
|
|
|
4. Using system shared object caches and default directories.
|
2018-06-19 19:03:55 +08:00
|
|
|
|
2020-06-10 23:49:25 +08:00
|
|
|
This means that the values in the environment variable `LD_LIBRARY_PATH`
|
|
|
|
won't matter if the library is found in the paths given by `DT_RPATH`
|
|
|
|
(and `DT_RUNPATH` isn't set).
|
2018-02-15 17:06:15 +08:00
|
|
|
|
2020-06-10 23:49:25 +08:00
|
|
|
Exactly which of `DT_RPATH` or `DT_RUNPATH` is set by default appears to
|
2018-06-19 19:03:55 +08:00
|
|
|
depend on the system. For example, according to documentation,
|
2020-06-10 23:49:25 +08:00
|
|
|
`DT_RPATH` appears to be deprecated on Solaris in favor of `DT_RUNPATH`,
|
|
|
|
while on Debian GNU/Linux, either can be set, and `DT_RPATH` is the
|
2018-06-19 19:03:55 +08:00
|
|
|
default at the time of writing.
|
|
|
|
|
|
|
|
How to choose which runtime search path tag is to be set depends on
|
|
|
|
your system, please refer to ld(1) for the exact information on your
|
2020-06-10 23:49:25 +08:00
|
|
|
system. As an example, the way to ensure the `DT_RUNPATH` is set on
|
2018-06-19 19:03:55 +08:00
|
|
|
Debian GNU/Linux systems rather than DT_RPATH is to tell the linker to
|
|
|
|
set new dtags, like this:
|
|
|
|
|
2020-03-04 00:20:07 +08:00
|
|
|
$ ./Configure --prefix=/usr/local/ssl --openssldir=/usr/local/ssl \
|
2018-06-19 19:03:55 +08:00
|
|
|
'-Wl,--enable-new-dtags,-rpath,$(LIBRPATH)'
|
2018-06-22 20:13:59 +08:00
|
|
|
|
|
|
|
It might be worth noting that some/most ELF systems implement support
|
|
|
|
for runtime search path relative to the directory containing current
|
2020-06-10 23:49:25 +08:00
|
|
|
executable, by interpreting `$ORIGIN` along with some other internal
|
2018-06-22 20:13:59 +08:00
|
|
|
variables. Consult your system documentation.
|
|
|
|
|
|
|
|
Linking your application
|
|
|
|
------------------------
|
|
|
|
|
|
|
|
Third-party applications dynamically linked with OpenSSL (or any other)
|
|
|
|
shared library face exactly the same problem with non-default locations.
|
|
|
|
The OpenSSL config options mentioned above might or might not have bearing
|
|
|
|
on linking of the target application. "Might" means that under some
|
2022-09-22 19:27:27 +08:00
|
|
|
circumstances, it would be sufficient to link with OpenSSL shared library
|
2020-06-10 23:49:25 +08:00
|
|
|
"naturally", i.e. with `-L/whatever/path -lssl -lcrypto`. But there are
|
2018-06-22 20:13:59 +08:00
|
|
|
also cases when you'd have to explicitly specify runtime search path
|
|
|
|
when linking your application. Consult your system documentation and use
|
|
|
|
above section as inspiration...
|
|
|
|
|
|
|
|
Shared OpenSSL builds also install static libraries. Linking with the
|
2022-09-22 19:27:27 +08:00
|
|
|
latter is likely to require special care because linkers usually look
|
2018-06-22 20:13:59 +08:00
|
|
|
for shared libraries first and tend to remain "blind" to static OpenSSL
|
|
|
|
libraries. Referring to system documentation would suffice, if not for
|
|
|
|
a corner case. On AIX static libraries (in shared build) are named
|
2020-06-10 23:49:25 +08:00
|
|
|
differently, add `_a` suffix to link with them, e.g. `-lcrypto_a`.
|