]> git.ipfire.org Git - thirdparty/man-pages.git/blob - man3/dlopen.3
18801ec5daa5fd4a05e671219ec1998ca921a428
[thirdparty/man-pages.git] / man3 / dlopen.3
1 .\" Copyright 1995 Yggdrasil Computing, Incorporated.
2 .\" written by Adam J. Richter (adam@yggdrasil.com),
3 .\" with typesetting help from Daniel Quinlan (quinlan@yggdrasil.com).
4 .\" and Copyright 2003, 2015 Michael Kerrisk <mtk.manpages@gmail.com>
5 .\"
6 .\" %%%LICENSE_START(GPLv2+_DOC_FULL)
7 .\" This is free documentation; you can redistribute it and/or
8 .\" modify it under the terms of the GNU General Public License as
9 .\" published by the Free Software Foundation; either version 2 of
10 .\" the License, or (at your option) any later version.
11 .\"
12 .\" The GNU General Public License's references to "object code"
13 .\" and "executables" are to be interpreted as the output of any
14 .\" document formatting or typesetting system, including
15 .\" intermediate and printed output.
16 .\"
17 .\" This manual is distributed in the hope that it will be useful,
18 .\" but WITHOUT ANY WARRANTY; without even the implied warranty of
19 .\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 .\" GNU General Public License for more details.
21 .\"
22 .\" You should have received a copy of the GNU General Public
23 .\" License along with this manual; if not, see
24 .\" <http://www.gnu.org/licenses/>.
25 .\" %%%LICENSE_END
26 .\"
27 .\" Modified by David A. Wheeler <dwheeler@dwheeler.com> 2000-11-28.
28 .\" Applied patch by Terran Melconian, aeb, 2001-12-14.
29 .\" Modified by Hacksaw <hacksaw@hacksaw.org> 2003-03-13.
30 .\" Modified by Matt Domsch, 2003-04-09: _init and _fini obsolete
31 .\" Modified by Michael Kerrisk <mtk.manpages@gmail.com> 2003-05-16.
32 .\" Modified by Walter Harms: dladdr, dlvsym
33 .\" Modified by Petr Baudis <pasky@suse.cz>, 2008-12-04: dladdr caveat
34 .\"
35 .TH DLOPEN 3 2017-09-15 "Linux" "Linux Programmer's Manual"
36 .SH NAME
37 dlclose, dlopen, dlmopen \-
38 open and close a shared object
39 .SH SYNOPSIS
40 .B #include <dlfcn.h>
41 .PP
42 .BI "void *dlopen(const char *" filename ", int " flags );
43 .PP
44 .BI "int dlclose(void *" handle );
45 .PP
46 .B #define _GNU_SOURCE
47 .br
48 .B #include <dlfcn.h>
49 .PP
50 .BI "void *dlmopen (Lmid_t " lmid ", const char *" filename ", int " flags );
51 .PP
52 Link with \fI\-ldl\fP.
53 .SH DESCRIPTION
54 .SS dlopen()
55 The function
56 .BR dlopen ()
57 loads the dynamic shared object (shared library)
58 file named by the null-terminated
59 string
60 .I filename
61 and returns an opaque "handle" for the loaded object.
62 This handle is employed with other functions in the dlopen API, such as
63 .BR dlsym (3),
64 .BR dladdr (3),
65 .BR dlinfo (3),
66 and
67 .BR dlclose ().
68 .PP
69 If
70 .I filename
71 .\" FIXME On Solaris, when handle is NULL, we seem to get back
72 .\" a handle for (something like) the root of the namespace.
73 .\" The point here is that if we do a dlmopen(LM_ID_NEWLM), then
74 .\" the filename==NULL case returns a different handle than
75 .\" in the initial namespace. But, on glibc, the same handle is
76 .\" returned. This is probably a bug in glibc.
77 .\"
78 is NULL, then the returned handle is for the main program.
79 If
80 .I filename
81 contains a slash ("/"), then it is interpreted as a (relative
82 or absolute) pathname.
83 Otherwise, the dynamic linker searches for the object as follows
84 (see
85 .BR ld.so (8)
86 for further details):
87 .IP o 4
88 (ELF only) If the executable file for the calling program
89 contains a DT_RPATH tag, and does not contain a DT_RUNPATH tag,
90 then the directories listed in the DT_RPATH tag are searched.
91 .IP o
92 If, at the time that the program was started, the environment variable
93 .B LD_LIBRARY_PATH
94 was defined to contain a colon-separated list of directories,
95 then these are searched.
96 (As a security measure, this variable is ignored for set-user-ID and
97 set-group-ID programs.)
98 .IP o
99 (ELF only) If the executable file for the calling program
100 contains a DT_RUNPATH tag, then the directories listed in that tag
101 are searched.
102 .IP o
103 The cache file
104 .I /etc/ld.so.cache
105 (maintained by
106 .BR ldconfig (8))
107 is checked to see whether it contains an entry for
108 .IR filename .
109 .IP o
110 The directories
111 .I /lib
112 and
113 .I /usr/lib
114 are searched (in that order).
115 .PP
116 If the object specified by
117 .I filename
118 has dependencies on other shared objects,
119 then these are also automatically loaded by the dynamic linker
120 using the same rules.
121 (This process may occur recursively,
122 if those objects in turn have dependencies, and so on.)
123 .PP
124 One of the following two values must be included in
125 .IR flags :
126 .TP
127 .B RTLD_LAZY
128 Perform lazy binding.
129 Resolve symbols only as the code that references them is executed.
130 If the symbol is never referenced, then it is never resolved.
131 (Lazy binding is performed only for function references;
132 references to variables are always immediately bound when
133 the shared object is loaded.)
134 Since glibc 2.1.1,
135 .\" commit 12b5b6b7f78ea111e89bbf638294a5413c791072
136 this flag is overridden by the effect of the
137 .B LD_BIND_NOW
138 environment variable.
139 .TP
140 .B RTLD_NOW
141 If this value is specified, or the environment variable
142 .B LD_BIND_NOW
143 is set to a nonempty string,
144 all undefined symbols in the shared object are resolved before
145 .BR dlopen ()
146 returns.
147 If this cannot be done, an error is returned.
148 .PP
149 Zero or more of the following values may also be ORed in
150 .IR flags :
151 .TP
152 .B RTLD_GLOBAL
153 The symbols defined by this shared object will be
154 made available for symbol resolution of subsequently loaded shared objects.
155 .TP
156 .B RTLD_LOCAL
157 This is the converse of
158 .BR RTLD_GLOBAL ,
159 and the default if neither flag is specified.
160 Symbols defined in this shared object are not made available to resolve
161 references in subsequently loaded shared objects.
162 .TP
163 .BR RTLD_NODELETE " (since glibc 2.2)"
164 Do not unload the shared object during
165 .BR dlclose ().
166 Consequently, the object's static variables are not reinitialized
167 if the object is reloaded with
168 .BR dlopen ()
169 at a later time.
170 .TP
171 .BR RTLD_NOLOAD " (since glibc 2.2)"
172 Don't load the shared object.
173 This can be used to test if the object is already resident
174 .RB ( dlopen ()
175 returns NULL if it is not, or the object's handle if it is resident).
176 This flag can also be used to promote the flags on a shared object
177 that is already loaded.
178 For example, a shared object that was previously loaded with
179 .B RTLD_LOCAL
180 can be reopened with
181 .BR RTLD_NOLOAD\ |\ RTLD_GLOBAL .
182 .\"
183 .TP
184 .BR RTLD_DEEPBIND " (since glibc 2.3.4)"
185 .\" Inimitably described by UD in
186 .\" http://sources.redhat.com/ml/libc-hacker/2004-09/msg00083.html.
187 Place the lookup scope of the symbols in this
188 shared object ahead of the global scope.
189 This means that a self-contained object will use
190 its own symbols in preference to global symbols with the same name
191 contained in objects that have already been loaded.
192 .PP
193 If
194 .I filename
195 is NULL, then the returned handle is for the main program.
196 When given to
197 .BR dlsym (),
198 this handle causes a search for a symbol in the main program,
199 followed by all shared objects loaded at program startup,
200 and then all shared objects loaded by
201 .BR dlopen ()
202 with the flag
203 .BR RTLD_GLOBAL .
204 .PP
205 Symbol references in the shared object are resolved using (in order):
206 symbols in the link map of objects loaded for the main program and its
207 dependencies;
208 symbols in shared objects (and their dependencies)
209 that were previously opened with
210 .BR dlopen ()
211 using the
212 .BR RTLD_GLOBAL
213 flag;
214 and definitions in the shared object itself
215 (and any dependencies that were loaded for that object).
216 .PP
217 If the executable was linked with the flag "\-rdynamic"
218 (or, synonymously, "\-\-export\-dynamic"),
219 then global symbols in the executable will also be used
220 to resolve references in a dynamically loaded shared object.
221 .PP
222 If the same shared object is opened again with
223 .BR dlopen (),
224 the same object handle is returned.
225 The dynamic linker maintains reference
226 counts for object handles, so a dynamically loaded shared object is not
227 deallocated until
228 .BR dlclose ()
229 has been called on it as many times as
230 .BR dlopen ()
231 has succeeded on it.
232 Constructors (see below) are called only when the library is actually loaded
233 into memory (i.e., when the reference count increases to 1).
234 However, a subsequent
235 .BR dlopen ()
236 call that loads the same shared object with
237 .B RTLD_NOW
238 may force symbol resolution for a shared object earlier loaded with
239 .BR RTLD_LAZY .
240 .PP
241 If
242 .BR dlopen ()
243 fails for any reason, it returns NULL.
244 .\"
245 .SS dlmopen()
246 This function performs the same task as
247 .BR dlopen ()\(emthe
248 .I filename
249 and
250 .I flags
251 arguments, as well as the return value, are the same,
252 except for the differences noted below.
253 .PP
254 The
255 .BR dlmopen ()
256 function differs from
257 .BR dlopen ()
258 primarily in that it accepts an additional argument,
259 .IR lmid ,
260 that specifies the link-map list (also referred to as a
261 .IR namespace )
262 in which the shared object should be loaded.
263 (By comparison,
264 .BR dlopen ()
265 adds the dynamically loaded shared object to the same namespace as
266 the shared object from which the
267 .BR dlopen ()
268 call is made.)
269 The
270 .I Lmid_t
271 type is an opaque handle that refers to a namespace.
272 .PP
273 The
274 .I lmid
275 argument is either the ID of an existing namespace
276 .\" FIXME: Is using dlinfo() RTLD_DI_LMID the right technique?
277 (which can be obtained using the
278 .BR dlinfo (3)
279 .B RTLD_DI_LMID
280 request) or one of the following special values:
281 .TP
282 .B LM_ID_BASE
283 Load the shared object in the initial namespace
284 (i.e., the application's namespace).
285 .TP
286 .B LM_ID_NEWLM
287 Create a new namespace and load the shared object in that namespace.
288 The object must have been correctly linked
289 to reference all of the other shared objects that it requires,
290 since the new namespace is initially empty.
291 .PP
292 If
293 .I filename
294 is NULL, then the only permitted value for
295 .I lmid
296 is
297 .BR LM_ID_BASE .
298 .SS dlclose()
299 The function
300 .BR dlclose ()
301 decrements the reference count on the
302 dynamically loaded shared object referred to by
303 .IR handle .
304 .PP
305 If the object's reference count drops to zero
306 and no symbols in this object are required by other objects,
307 then the object is unloaded
308 after first calling any destructors defined for the object.
309 (Symbols in this object might be required in another object
310 because this object was opened with the
311 .BR RTLD_GLOBAL
312 flag and one of its symbols satisfied a relocation in another object.)
313 .PP
314 All shared objects that were automatically loaded when
315 .BR dlopen ()
316 was invoked on the object referred to by
317 .I handle
318 are recursively closed in the same manner.
319 .PP
320 A successful return from
321 .BR dlclose ()
322 does not guarantee that the symbols associated with
323 .I handle
324 are removed from the caller's address space.
325 In addition to references resulting from explicit
326 .BR dlopen ()
327 calls, a shared object may have been implicitly loaded
328 (and reference counted) because of dependencies in other shared objects.
329 Only when all references have been released can the shared object
330 be removed from the address space.
331 .SH RETURN VALUE
332 On success,
333 .BR dlopen ()
334 and
335 .BR dlmopen ()
336 return a non-NULL handle for the loaded library.
337 On error
338 (file could not be found, was not readable, had the wrong format,
339 or caused errors during loading),
340 these functions return NULL.
341 .PP
342 On success,
343 .BR dlclose ()
344 returns 0; on error, it returns a nonzero value.
345 .PP
346 Errors from these functions can be diagnosed using
347 .BR dlerror (3).
348 .SH VERSIONS
349 .BR dlopen ()
350 and
351 .BR dlclose ()
352 are present in glibc 2.0 and later.
353 .BR dlmopen ()
354 first appeared in glibc 2.3.4.
355 .SH ATTRIBUTES
356 For an explanation of the terms used in this section, see
357 .BR attributes (7).
358 .TS
359 allbox;
360 lbw30 lb lb
361 l l l.
362 Interface Attribute Value
363 T{
364 .BR dlopen (),
365 .BR dlmopen (),
366 .BR dlclose ()
367 T} Thread safety MT-Safe
368 .TE
369 .SH CONFORMING TO
370 POSIX.1-2001 describes
371 .BR dlclose ()
372 and
373 .BR dlopen ().
374 The
375 .BR dlmopen ()
376 function is a GNU extension.
377 .PP
378 The
379 .BR RTLD_NOLOAD ,
380 .BR RTLD_NODELETE ,
381 and
382 .BR RTLD_DEEPBIND
383 flags are GNU extensions;
384 the first two of these flags are also present on Solaris.
385 .SH NOTES
386 .SS dlmopen() and namespaces
387 A link-map list defines an isolated namespace for the
388 resolution of symbols by the dynamic linker.
389 Within a namespace,
390 dependent shared objects are implicitly loaded according to the usual rules,
391 and symbol references are likewise resolved according to the usual rules,
392 but such resolution is confined to the definitions provided by the
393 objects that have been (explicitly and implicitly) loaded into the namespace.
394 .PP
395 The
396 .BR dlmopen ()
397 function permits object-load isolation\(emthe ability
398 to load a shared object in a new namespace without
399 exposing the rest of the application to the symbols
400 made available by the new object.
401 Note that the use of the
402 .B RTLD_LOCAL
403 flag is not sufficient for this purpose,
404 since it prevents a shared object's symbols from being available to
405 .I any
406 other shared object.
407 In some cases,
408 we may want to make the symbols provided by a dynamically
409 loaded shared object available to (a subset of) other shared objects
410 without exposing those symbols to the entire application.
411 This can be achieved by using a separate namespace and the
412 .B RTLD_GLOBAL
413 flag.
414 .PP
415 The
416 .BR dlmopen ()
417 function also can be used to provide better isolation than the
418 .BR RTLD_LOCAL
419 flag.
420 In particular, shared objects loaded with
421 .BR RTLD_LOCAL
422 may be promoted to
423 .BR RTLD_GLOBAL
424 if they are dependencies of another shared object loaded with
425 .BR RTLD_GLOBAL .
426 Thus,
427 .BR RTLD_LOCAL
428 is insufficient to isolate a loaded shared object except in the (uncommon)
429 case where one has explicit control over all shared object dependencies.
430 .PP
431 Possible uses of
432 .BR dlmopen ()
433 are plugins where the author of the plugin-loading framework
434 can't trust the plugin authors and does not wish
435 any undefined symbols from the plugin framework to be resolved to plugin
436 symbols.
437 Another use is to load the same object more than once.
438 Without the use of
439 .BR dlmopen (),
440 this would require the creation of distinct copies of the shared object file.
441 Using
442 .BR dlmopen (),
443 this can be achieved by loading the same shared object file into
444 different namespaces.
445 .PP
446 The glibc implementation supports a maximum of
447 .\" DL_NNS
448 16 namespaces.
449 .\"
450 .SS Initialization and finalization functions
451 Shared objects may export functions using the
452 .B __attribute__((constructor))
453 and
454 .B __attribute__((destructor))
455 function attributes.
456 Constructor functions are executed before
457 .BR dlopen ()
458 returns, and destructor functions are executed before
459 .BR dlclose ()
460 returns.
461 A shared object may export multiple constructors and destructors,
462 and priorities can be associated with each function
463 to determine the order in which they are executed.
464 See the
465 .BR gcc
466 info pages (under "Function attributes")
467 .\" info gcc "C Extensions" "Function attributes"
468 for further information.
469 .PP
470 An older method of (partially) achieving the same result is via the use of
471 two special symbols recognized by the linker:
472 .B _init
473 and
474 .BR _fini .
475 If a dynamically loaded shared object exports a routine named
476 .BR _init (),
477 then that code is executed after loading a shared object, before
478 .BR dlopen ()
479 returns.
480 If the shared object exports a routine named
481 .BR _fini (),
482 then that routine is called just before the object is unloaded.
483 In this case, one must avoid linking against the system startup files,
484 which contain default versions of these files;
485 this can be done by using the
486 .BR gcc (1)
487 .I \-nostartfiles
488 command-line option.
489 .PP
490 Use of
491 .B _init
492 and
493 .BR _fini
494 is now deprecated in favor of the aforementioned
495 constructors and destructors,
496 which among other advantages,
497 permit multiple initialization and finalization functions to be defined.
498 .\"
499 .\" Using these routines, or the gcc
500 .\" .B \-nostartfiles
501 .\" or
502 .\" .B \-nostdlib
503 .\" options, is not recommended.
504 .\" Their use may result in undesired behavior,
505 .\" since the constructor/destructor routines will not be executed
506 .\" (unless special measures are taken).
507 .\" .\" void _init(void) __attribute__((constructor));
508 .\" .\" void _fini(void) __attribute__((destructor));
509 .\"
510 .PP
511 Since glibc 2.2.3,
512 .BR atexit (3)
513 can be used to register an exit handler that is automatically
514 called when a shared object is unloaded.
515 .SS History
516 These functions are part of the dlopen API, derived from SunOS.
517 .SH BUGS
518 As at glibc 2.24, specifying the
519 .BR RTLD_GLOBAL
520 flag when calling
521 .BR dlmopen ()
522 .\" dlerror(): "invalid mode"
523 generates an error.
524 Furthermore, specifying
525 .BR RTLD_GLOBAL
526 when calling
527 .BR dlopen ()
528 results in a program crash
529 .RB ( SIGSEGV )
530 if the call is made from any object loaded in a
531 namespace other than the initial namespace.
532 .SH EXAMPLE
533 The program below loads the (glibc) math library,
534 looks up the address of the
535 .BR cos (3)
536 function, and prints the cosine of 2.0.
537 The following is an example of building and running the program:
538 .PP
539 .in +4n
540 .EX
541 $ \fBcc dlopen_demo.c \-ldl\fP
542 $ \fB./a.out\fP
543 \-0.416147
544 .EE
545 .in
546 .SS Program source
547 \&
548 .EX
549 #include <stdio.h>
550 #include <stdlib.h>
551 #include <dlfcn.h>
552 #include <gnu/lib-names.h> /* Defines LIBM_SO (which will be a
553 string such as "libm.so.6") */
554 int
555 main(void)
556 {
557 void *handle;
558 double (*cosine)(double);
559 char *error;
560
561 handle = dlopen(LIBM_SO, RTLD_LAZY);
562 if (!handle) {
563 fprintf(stderr, "%s\en", dlerror());
564 exit(EXIT_FAILURE);
565 }
566
567 dlerror(); /* Clear any existing error */
568
569 cosine = (double (*)(double)) dlsym(handle, "cos");
570
571 /* According to the ISO C standard, casting between function
572 pointers and 'void *', as done above, produces undefined results.
573 POSIX.1-2003 and POSIX.1-2008 accepted this state of affairs and
574 proposed the following workaround:
575
576 *(void **) (&cosine) = dlsym(handle, "cos");
577
578 This (clumsy) cast conforms with the ISO C standard and will
579 avoid any compiler warnings.
580
581 The 2013 Technical Corrigendum to POSIX.1-2008 (a.k.a.
582 POSIX.1-2013) improved matters by requiring that conforming
583 implementations support casting 'void *' to a function pointer.
584 Nevertheless, some compilers (e.g., gcc with the '-pedantic'
585 option) may complain about the cast used in this program. */
586 .\" http://pubs.opengroup.org/onlinepubs/009695399/functions/dlsym.html#tag_03_112_08
587 .\" http://pubs.opengroup.org/onlinepubs/9699919799/functions/dlsym.html#tag_16_96_07
588 .\" http://austingroupbugs.net/view.php?id=74
589
590 error = dlerror();
591 if (error != NULL) {
592 fprintf(stderr, "%s\en", error);
593 exit(EXIT_FAILURE);
594 }
595
596 printf("%f\en", (*cosine)(2.0));
597 dlclose(handle);
598 exit(EXIT_SUCCESS);
599 }
600 .EE
601 .SH SEE ALSO
602 .BR ld (1),
603 .BR ldd (1),
604 .BR pldd (1),
605 .BR dl_iterate_phdr (3),
606 .BR dladdr (3),
607 .BR dlerror (3),
608 .BR dlinfo (3),
609 .BR dlsym (3),
610 .BR rtld-audit (7),
611 .BR ld.so (8),
612 .BR ldconfig (8)
613 .PP
614 gcc info pages, ld info pages