dlclose, dlopen, dlmopen - open and close a shared object
#include <dlfcn.h>
void *dlopen(const char *filename, int flags);
int dlclose(void *handle);
#define _GNU_SOURCE
#include <dlfcn.h>
void *dlmopen(Lmid_t lmid, const char *filename, int flags);
The function dlopen() loads the dynamic shared
object (shared library) file named by the null-terminated string
filename
and returns an opaque "handle" for the loaded object.
This handle is employed with other functions in the dlopen API, such as
dlsym(3), dladdr(3),
dlinfo(3), and dlclose().
If filename
is NULL, then the returned handle is for the
main program. If filename
contains a slash ("/"), then it is
interpreted as a (relative or absolute) pathname. Otherwise, the dynamic
linker searches for the object as follows (see ld.so(8)
for further details):
(ELF only) If the calling object (i.e., the shared library or executable from which dlopen() is called) contains a DT_RPATH tag, and does not contain a DT_RUNPATH tag, then the directories listed in the DT_RPATH tag are searched.
If, at the time that the program was started, the environment variable LD_LIBRARY_PATH was defined to contain a colon-separated list of directories, then these are searched. (As a security measure, this variable is ignored for set-user-ID and set-group-ID programs.)
(ELF only) If the calling object contains a DT_RUNPATH tag, then the directories listed in that tag are searched.
The cache file /etc/ld.so.cache
(maintained by
ldconfig(8)) is checked to see whether it contains an
entry for filename
.
The directories /lib
and /usr/lib
are searched
(in that order).
If the object specified by filename
has dependencies on
other shared objects, then these are also automatically loaded by the
dynamic linker using the same rules. (This process may occur
recursively, if those objects in turn have dependencies, and so on.)
One of the following two values must be included in
flags
:
Perform lazy binding. Resolve symbols only as the code that references them is executed. If the symbol is never referenced, then it is never resolved. (Lazy binding is performed only for function references; references to variables are always immediately bound when the shared object is loaded.) Since glibc 2.1.1, this flag is overridden by the effect of the LD_BIND_NOW environment variable.
If this value is specified, or the environment variable LD_BIND_NOW is set to a nonempty string, all undefined symbols in the shared object are resolved before dlopen() returns. If this cannot be done, an error is returned.
Zero or more of the following values may also be ORed in
flags
:
The symbols defined by this shared object will be made available for symbol resolution of subsequently loaded shared objects.
This is the converse of RTLD_GLOBAL, and the default if neither flag is specified. Symbols defined in this shared object are not made available to resolve references in subsequently loaded shared objects.
Do not unload the shared object during dlclose(). Consequently, the object's static and global variables are not reinitialized if the object is reloaded with dlopen() at a later time.
Don't load the shared object. This can be used to test if the object is already resident (dlopen() returns NULL if it is not, or the object's handle if it is resident). This flag can also be used to promote the flags on a shared object that is already loaded. For example, a shared object that was previously loaded with RTLD_LOCAL can be reopened with RTLD_NOLOAD | RTLD_GLOBAL.
Place the lookup scope of the symbols in this shared object ahead of the global scope. This means that a self-contained object will use its own symbols in preference to global symbols with the same name contained in objects that have already been loaded.
If filename
is NULL, then the returned handle is for the
main program. When given to dlsym(3), this handle
causes a search for a symbol in the main program, followed by all shared
objects loaded at program startup, and then all shared objects loaded by
dlopen() with the flag
RTLD_GLOBAL.
Symbol references in the shared object are resolved using (in order): symbols in the link map of objects loaded for the main program and its dependencies; symbols in shared objects (and their dependencies) that were previously opened with dlopen() using the RTLD_GLOBAL flag; and definitions in the shared object itself (and any dependencies that were loaded for that object).
Any global symbols in the executable that were placed into its dynamic symbol table by ld(1) can also be used to resolve references in a dynamically loaded shared object. Symbols may be placed in the dynamic symbol table either because the executable was linked with the flag "-rdynamic" (or, synonymously, "--export-dynamic"), which causes all of the executable's global symbols to be placed in the dynamic symbol table, or because ld(1) noted a dependency on a symbol in another object during static linking.
If the same shared object is opened again with dlopen(), the same object handle is returned. The dynamic linker maintains reference counts for object handles, so a dynamically loaded shared object is not deallocated until dlclose() has been called on it as many times as dlopen() has succeeded on it. Constructors (see below) are called only when the object is actually loaded into memory (i.e., when the reference count increases to 1).
A subsequent dlopen() call that loads the same shared object with RTLD_NOW may force symbol resolution for a shared object earlier loaded with RTLD_LAZY. Similarly, an object that was previously opened with RTLD_LOCAL can be promoted to RTLD_GLOBAL in a subsequent dlopen().
If dlopen() fails for any reason, it returns NULL.
This function performs the same task as dlopen()—the
filename
and flags
arguments, as well as the return
value, are the same, except for the differences noted below.
The dlmopen() function differs from
dlopen() primarily in that it accepts an additional
argument, lmid
, that specifies the link-map list (also referred
to as a namespace
) in which the shared object should be loaded.
(By comparison, dlopen() adds the dynamically loaded
shared object to the same namespace as the shared object from which the
dlopen() call is made.) The Lmid_t
type is an
opaque handle that refers to a namespace.
The lmid
argument is either the ID of an existing namespace
(which can be obtained using the dlinfo(3)
RTLD_DI_LMID request) or one of the following special
values:
Load the shared object in the initial namespace (i.e., the application's namespace).
Create a new namespace and load the shared object in that namespace. The object must have been correctly linked to reference all of the other shared objects that it requires, since the new namespace is initially empty.
If filename
is NULL, then the only permitted value for
lmid
is LM_ID_BASE.
The function dlclose() decrements the reference
count on the dynamically loaded shared object referred to by
handle
.
If the object's reference count drops to zero and no symbols in this object are required by other objects, then the object is unloaded after first calling any destructors defined for the object. (Symbols in this object might be required in another object because this object was opened with the RTLD_GLOBAL flag and one of its symbols satisfied a relocation in another object.)
All shared objects that were automatically loaded when
dlopen() was invoked on the object referred to by
handle
are recursively closed in the same manner.
A successful return from dlclose() does not
guarantee that the symbols associated with handle
are removed
from the caller's address space. In addition to references resulting
from explicit dlopen() calls, a shared object may have
been implicitly loaded (and reference counted) because of dependencies
in other shared objects. Only when all references have been released can
the shared object be removed from the address space.
On success, dlopen() and dlmopen() return a non-NULL handle for the loaded object. On error (file could not be found, was not readable, had the wrong format, or caused errors during loading), these functions return NULL.
On success, dlclose() returns 0; on error, it returns a nonzero value.
Errors from these functions can be diagnosed using dlerror(3).
The program below loads the (glibc) math library, looks up the address of the cos(3) function, and prints the cosine of 2.0. The following is an example of building and running the program:
$ cc dlopen_demo.c -ldl
$ ./a.out
-0.416147
#include <dlfcn.h>
#include <stdio.h>
#include <stdlib.h>
#include <gnu/lib-names.h> /* Defines LIBM_SO (which will be a
string such as "libm.so.6") */
int
main(void)
{
void *handle;
double (*cosine)(double);
char *error;
handle = dlopen(LIBM_SO, RTLD_LAZY);
if (!handle) {
fprintf(stderr, "%s\n", dlerror());
exit(EXIT_FAILURE);
}
dlerror(); /* Clear any existing error */
cosine = (double (*)(double)) dlsym(handle, "cos");
/* According to the ISO C standard, casting between function
pointers and 'void *', as done above, produces undefined results.
POSIX.1-2001 and POSIX.1-2008 accepted this state of affairs and
proposed the following workaround:
*(void **) (&cosine) = dlsym(handle, "cos");
This (clumsy) cast conforms with the ISO C standard and will
avoid any compiler warnings.
The 2013 Technical Corrigendum 1 to POSIX.1-2008 improved matters
by requiring that conforming implementations support casting
'void *' to a function pointer. Nevertheless, some compilers
(e.g., gcc with the '-pedantic' option) may complain about the
cast used in this program. */
error = dlerror();
if (error != NULL) {
fprintf(stderr, "%s\n", error);
exit(EXIT_FAILURE);
}
printf("%f\n", (*cosine)(2.0));
dlclose(handle);
exit(EXIT_SUCCESS);
}