]> git.ipfire.org Git - thirdparty/man-pages.git/blob - man3/dlopen.3
dlopen.3: Note that symbol use might keep a dlclose'd object in memory
[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 External references in the shared object are resolved using the
206 shared objects in that object's dependency list and any other
207 objects previously opened with the
208 .B RTLD_GLOBAL
209 flag.
210 If the executable was linked with the flag "\-rdynamic"
211 (or, synonymously, "\-\-export\-dynamic"),
212 then the global symbols in the executable will also be used
213 to resolve references in a dynamically loaded shared object.
214 .PP
215 If the same shared object is opened again with
216 .BR dlopen (),
217 the same object handle is returned.
218 The dynamic linker maintains reference
219 counts for object handles, so a dynamically loaded shared object is not
220 deallocated until
221 .BR dlclose ()
222 has been called on it as many times as
223 .BR dlopen ()
224 has succeeded on it.
225 Constructors (see below) are called only when the library is actually loaded
226 into memory (i.e., when the reference count increases to 1).
227 However, a subsequent
228 .BR dlopen ()
229 call that loads the same shared object with
230 .B RTLD_NOW
231 may force symbol resolution for a shared object earlier loaded with
232 .BR RTLD_LAZY .
233 .PP
234 If
235 .BR dlopen ()
236 fails for any reason, it returns NULL.
237 .\"
238 .SS dlmopen()
239 This function performs the same task as
240 .BR dlopen ()\(emthe
241 .I filename
242 and
243 .I flags
244 arguments, as well as the return value, are the same,
245 except for the differences noted below.
246 .PP
247 The
248 .BR dlmopen ()
249 function differs from
250 .BR dlopen ()
251 primarily in that it accepts an additional argument,
252 .IR lmid ,
253 that specifies the link-map list (also referred to as a
254 .IR namespace )
255 in which the shared object should be loaded.
256 (By comparison,
257 .BR dlopen ()
258 adds the dynamically loaded shared object to the same namespace as
259 the shared object from which the
260 .BR dlopen ()
261 call is made.)
262 The
263 .I Lmid_t
264 type is an opaque handle that refers to a namespace.
265 .PP
266 The
267 .I lmid
268 argument is either the ID of an existing namespace
269 .\" FIXME: Is using dlinfo() RTLD_DI_LMID the right technique?
270 (which can be obtained using the
271 .BR dlinfo (3)
272 .B RTLD_DI_LMID
273 request) or one of the following special values:
274 .TP
275 .B LM_ID_BASE
276 Load the shared object in the initial namespace
277 (i.e., the application's namespace).
278 .TP
279 .B LM_ID_NEWLM
280 Create a new namespace and load the shared object in that namespace.
281 The object must have been correctly linked
282 to reference all of the other shared objects that it requires,
283 since the new namespace is initially empty.
284 .PP
285 If
286 .I filename
287 is NULL, then the only permitted value for
288 .I lmid
289 is
290 .BR LM_ID_BASE .
291 .SS dlclose()
292 The function
293 .BR dlclose ()
294 decrements the reference count on the
295 dynamically loaded shared object referred to by
296 .IR handle .
297 .PP
298 If the object's reference count drops to zero
299 and no symbols in this object are required by other objects,
300 then the object is unloaded
301 after first calling any destructors defined for the object.
302 (Symbols in this object might be required in another object
303 because this object was opened with the
304 .BR RTLD_GLOBAL
305 flag and one of its symbols satisfied a relocation in another object.)
306 .PP
307 All shared objects that were automatically loaded when
308 .BR dlopen ()
309 was invoked on the object referred to by
310 .I handle
311 are recursively closed in the same manner.
312 .PP
313 A successful return from
314 .BR dlclose ()
315 does not guarantee that the symbols associated with
316 .I handle
317 are removed from the caller's address space.
318 In addition to references resulting from explicit
319 .BR dlopen ()
320 calls, a shared object may have been implicitly loaded
321 (and reference counted) because of dependencies in other shared objects.
322 Only when all references have been released can the shared object
323 be removed from the address space.
324 .SH RETURN VALUE
325 On success,
326 .BR dlopen ()
327 and
328 .BR dlmopen ()
329 return a non-NULL handle for the loaded library.
330 On error
331 (file could not be found, was not readable, had the wrong format,
332 or caused errors during loading),
333 these functions return NULL.
334 .PP
335 On success,
336 .BR dlclose ()
337 returns 0; on error, it returns a nonzero value.
338 .PP
339 Errors from these functions can be diagnosed using
340 .BR dlerror (3).
341 .SH VERSIONS
342 .BR dlopen ()
343 and
344 .BR dlclose ()
345 are present in glibc 2.0 and later.
346 .BR dlmopen ()
347 first appeared in glibc 2.3.4.
348 .SH ATTRIBUTES
349 For an explanation of the terms used in this section, see
350 .BR attributes (7).
351 .TS
352 allbox;
353 lbw30 lb lb
354 l l l.
355 Interface Attribute Value
356 T{
357 .BR dlopen (),
358 .BR dlmopen (),
359 .BR dlclose ()
360 T} Thread safety MT-Safe
361 .TE
362 .SH CONFORMING TO
363 POSIX.1-2001 describes
364 .BR dlclose ()
365 and
366 .BR dlopen ().
367 The
368 .BR dlmopen ()
369 function is a GNU extension.
370 .PP
371 The
372 .BR RTLD_NOLOAD ,
373 .BR RTLD_NODELETE ,
374 and
375 .BR RTLD_DEEPBIND
376 flags are GNU extensions;
377 the first two of these flags are also present on Solaris.
378 .SH NOTES
379 .SS dlmopen() and namespaces
380 A link-map list defines an isolated namespace for the
381 resolution of symbols by the dynamic linker.
382 Within a namespace,
383 dependent shared objects are implicitly loaded according to the usual rules,
384 and symbol references are likewise resolved according to the usual rules,
385 but such resolution is confined to the definitions provided by the
386 objects that have been (explicitly and implicitly) loaded into the namespace.
387 .PP
388 The
389 .BR dlmopen ()
390 function permits object-load isolation\(emthe ability
391 to load a shared object in a new namespace without
392 exposing the rest of the application to the symbols
393 made available by the new object.
394 Note that the use of the
395 .B RTLD_LOCAL
396 flag is not sufficient for this purpose,
397 since it prevents a shared object's symbols from being available to
398 .I any
399 other shared object.
400 In some cases,
401 we may want to make the symbols provided by a dynamically
402 loaded shared object available to (a subset of) other shared objects
403 without exposing those symbols to the entire application.
404 This can be achieved by using a separate namespace and the
405 .B RTLD_GLOBAL
406 flag.
407 .PP
408 The
409 .BR dlmopen ()
410 function also can be used to provide better isolation than the
411 .BR RTLD_LOCAL
412 flag.
413 In particular, shared objects loaded with
414 .BR RTLD_LOCAL
415 may be promoted to
416 .BR RTLD_GLOBAL
417 if they are dependencies of another shared object loaded with
418 .BR RTLD_GLOBAL .
419 Thus,
420 .BR RTLD_LOCAL
421 is insufficient to isolate a loaded shared object except in the (uncommon)
422 case where one has explicit control over all shared object dependencies.
423 .PP
424 Possible uses of
425 .BR dlmopen ()
426 are plugins where the author of the plugin-loading framework
427 can't trust the plugin authors and does not wish
428 any undefined symbols from the plugin framework to be resolved to plugin
429 symbols.
430 Another use is to load the same object more than once.
431 Without the use of
432 .BR dlmopen (),
433 this would require the creation of distinct copies of the shared object file.
434 Using
435 .BR dlmopen (),
436 this can be achieved by loading the same shared object file into
437 different namespaces.
438 .PP
439 The glibc implementation supports a maximum of
440 .\" DL_NNS
441 16 namespaces.
442 .\"
443 .SS Initialization and finalization functions
444 Shared objects may export functions using the
445 .B __attribute__((constructor))
446 and
447 .B __attribute__((destructor))
448 function attributes.
449 Constructor functions are executed before
450 .BR dlopen ()
451 returns, and destructor functions are executed before
452 .BR dlclose ()
453 returns.
454 A shared object may export multiple constructors and destructors,
455 and priorities can be associated with each function
456 to determine the order in which they are executed.
457 See the
458 .BR gcc
459 info pages (under "Function attributes")
460 .\" info gcc "C Extensions" "Function attributes"
461 for further information.
462 .PP
463 An older method of (partially) achieving the same result is via the use of
464 two special symbols recognized by the linker:
465 .B _init
466 and
467 .BR _fini .
468 If a dynamically loaded shared object exports a routine named
469 .BR _init (),
470 then that code is executed after loading a shared object, before
471 .BR dlopen ()
472 returns.
473 If the shared object exports a routine named
474 .BR _fini (),
475 then that routine is called just before the object is unloaded.
476 In this case, one must avoid linking against the system startup files,
477 which contain default versions of these files;
478 this can be done by using the
479 .BR gcc (1)
480 .I \-nostartfiles
481 command-line option.
482 .PP
483 Use of
484 .B _init
485 and
486 .BR _fini
487 is now deprecated in favor of the aforementioned
488 constructors and destructors,
489 which among other advantages,
490 permit multiple initialization and finalization functions to be defined.
491 .\"
492 .\" Using these routines, or the gcc
493 .\" .B \-nostartfiles
494 .\" or
495 .\" .B \-nostdlib
496 .\" options, is not recommended.
497 .\" Their use may result in undesired behavior,
498 .\" since the constructor/destructor routines will not be executed
499 .\" (unless special measures are taken).
500 .\" .\" void _init(void) __attribute__((constructor));
501 .\" .\" void _fini(void) __attribute__((destructor));
502 .\"
503 .PP
504 Since glibc 2.2.3,
505 .BR atexit (3)
506 can be used to register an exit handler that is automatically
507 called when a shared object is unloaded.
508 .SS History
509 These functions are part of the dlopen API, derived from SunOS.
510 .SH BUGS
511 As at glibc 2.24, specifying the
512 .BR RTLD_GLOBAL
513 flag when calling
514 .BR dlmopen ()
515 .\" dlerror(): "invalid mode"
516 generates an error.
517 Furthermore, specifying
518 .BR RTLD_GLOBAL
519 when calling
520 .BR dlopen ()
521 results in a program crash
522 .RB ( SIGSEGV )
523 if the call is made from any object loaded in a
524 namespace other than the initial namespace.
525 .SH EXAMPLE
526 The program below loads the (glibc) math library,
527 looks up the address of the
528 .BR cos (3)
529 function, and prints the cosine of 2.0.
530 The following is an example of building and running the program:
531 .PP
532 .in +4n
533 .EX
534 $ \fBcc dlopen_demo.c \-ldl\fP
535 $ \fB./a.out\fP
536 \-0.416147
537 .EE
538 .in
539 .SS Program source
540 \&
541 .EX
542 #include <stdio.h>
543 #include <stdlib.h>
544 #include <dlfcn.h>
545 #include <gnu/lib-names.h> /* Defines LIBM_SO (which will be a
546 string such as "libm.so.6") */
547 int
548 main(void)
549 {
550 void *handle;
551 double (*cosine)(double);
552 char *error;
553
554 handle = dlopen(LIBM_SO, RTLD_LAZY);
555 if (!handle) {
556 fprintf(stderr, "%s\en", dlerror());
557 exit(EXIT_FAILURE);
558 }
559
560 dlerror(); /* Clear any existing error */
561
562 cosine = (double (*)(double)) dlsym(handle, "cos");
563
564 /* According to the ISO C standard, casting between function
565 pointers and 'void *', as done above, produces undefined results.
566 POSIX.1-2003 and POSIX.1-2008 accepted this state of affairs and
567 proposed the following workaround:
568
569 *(void **) (&cosine) = dlsym(handle, "cos");
570
571 This (clumsy) cast conforms with the ISO C standard and will
572 avoid any compiler warnings.
573
574 The 2013 Technical Corrigendum to POSIX.1-2008 (a.k.a.
575 POSIX.1-2013) improved matters by requiring that conforming
576 implementations support casting 'void *' to a function pointer.
577 Nevertheless, some compilers (e.g., gcc with the '-pedantic'
578 option) may complain about the cast used in this program. */
579 .\" http://pubs.opengroup.org/onlinepubs/009695399/functions/dlsym.html#tag_03_112_08
580 .\" http://pubs.opengroup.org/onlinepubs/9699919799/functions/dlsym.html#tag_16_96_07
581 .\" http://austingroupbugs.net/view.php?id=74
582
583 error = dlerror();
584 if (error != NULL) {
585 fprintf(stderr, "%s\en", error);
586 exit(EXIT_FAILURE);
587 }
588
589 printf("%f\en", (*cosine)(2.0));
590 dlclose(handle);
591 exit(EXIT_SUCCESS);
592 }
593 .EE
594 .SH SEE ALSO
595 .BR ld (1),
596 .BR ldd (1),
597 .BR pldd (1),
598 .BR dl_iterate_phdr (3),
599 .BR dladdr (3),
600 .BR dlerror (3),
601 .BR dlinfo (3),
602 .BR dlsym (3),
603 .BR rtld-audit (7),
604 .BR ld.so (8),
605 .BR ldconfig (8)
606 .PP
607 gcc info pages, ld info pages