xref: /freebsd/lib/libc/gen/dlopen.3 (revision d84fd89ecd404ffbf629381d2dde14fd79b39402)
1645c4be3SJohn Polstra.\" This source code is a product of Sun Microsystems, Inc. and is provided
2645c4be3SJohn Polstra.\" for unrestricted use provided that this legend is included on all tape
3645c4be3SJohn Polstra.\" media and as a part of the software program in whole or part.  Users
4645c4be3SJohn Polstra.\" may copy or modify this source code without charge, but are not authorized
5645c4be3SJohn Polstra.\" to license or distribute it to anyone else except as part of a product or
6645c4be3SJohn Polstra.\" program developed by the user.
7645c4be3SJohn Polstra.\"
8645c4be3SJohn Polstra.\" THIS PROGRAM CONTAINS SOURCE CODE COPYRIGHTED BY SUN MICROSYSTEMS, INC.
9645c4be3SJohn Polstra.\" SUN MICROSYSTEMS, INC., MAKES NO REPRESENTATIONS ABOUT THE SUITABLITY
10645c4be3SJohn Polstra.\" OF SUCH SOURCE CODE FOR ANY PURPOSE.  IT IS PROVIDED "AS IS" WITHOUT
11645c4be3SJohn Polstra.\" EXPRESS OR IMPLIED WARRANTY OF ANY KIND.  SUN MICROSYSTEMS, INC. DISCLAIMS
12645c4be3SJohn Polstra.\" ALL WARRANTIES WITH REGARD TO SUCH SOURCE CODE, INCLUDING ALL IMPLIED
13645c4be3SJohn Polstra.\" WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  IN
14645c4be3SJohn Polstra.\" NO EVENT SHALL SUN MICROSYSTEMS, INC. BE LIABLE FOR ANY SPECIAL, INDIRECT,
15645c4be3SJohn Polstra.\" INCIDENTAL, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
16645c4be3SJohn Polstra.\" FROM USE OF SUCH SOURCE CODE, REGARDLESS OF THE THEORY OF LIABILITY.
17645c4be3SJohn Polstra.\"
18645c4be3SJohn Polstra.\" This source code is provided with no support and without any obligation on
19645c4be3SJohn Polstra.\" the part of Sun Microsystems, Inc. to assist in its use, correction,
20645c4be3SJohn Polstra.\" modification or enhancement.
21645c4be3SJohn Polstra.\"
22645c4be3SJohn Polstra.\" SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
23645c4be3SJohn Polstra.\" INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY THIS
24645c4be3SJohn Polstra.\" SOURCE CODE OR ANY PART THEREOF.
25645c4be3SJohn Polstra.\"
26645c4be3SJohn Polstra.\" Sun Microsystems, Inc.
27645c4be3SJohn Polstra.\" 2550 Garcia Avenue
28645c4be3SJohn Polstra.\" Mountain View, California 94043
29645c4be3SJohn Polstra.\"
30645c4be3SJohn Polstra.\" Copyright (c) 1991 Sun Microsystems, Inc.
31645c4be3SJohn Polstra.\"
32*d84fd89eSEd Maste.Dd May 7, 2024
33645c4be3SJohn Polstra.Dt DLOPEN 3
34aa12cea2SUlrich Spörlein.Os
35645c4be3SJohn Polstra.Sh NAME
367ec37597SAlexey Zelkin.Nm dlopen ,
375d8aec9cSKonstantin Belousov.Nm fdlopen ,
387ec37597SAlexey Zelkin.Nm dlsym ,
392f1a2bdfSRomain Tartière.Nm dlvsym ,
407ec37597SAlexey Zelkin.Nm dlfunc ,
417ec37597SAlexey Zelkin.Nm dlerror ,
427ec37597SAlexey Zelkin.Nm dlclose
43645c4be3SJohn Polstra.Nd programmatic interface to the dynamic linker
4425bb73e0SAlexey Zelkin.Sh LIBRARY
4525bb73e0SAlexey Zelkin.Lb libc
46645c4be3SJohn Polstra.Sh SYNOPSIS
4732eef9aeSRuslan Ermilov.In dlfcn.h
48645c4be3SJohn Polstra.Ft void *
49645c4be3SJohn Polstra.Fn dlopen "const char *path" "int mode"
50645c4be3SJohn Polstra.Ft void *
515d8aec9cSKonstantin Belousov.Fn fdlopen "int fd" "int mode"
525d8aec9cSKonstantin Belousov.Ft void *
53a4a96c81SMike Barcroft.Fn dlsym "void * restrict handle" "const char * restrict symbol"
542f1a2bdfSRomain Tartière.Ft void *
552f1a2bdfSRomain Tartière.Fn dlvsym "void * restrict handle" "const char * restrict symbol" "const char * restrict version"
56fda23019SGarrett Wollman.Ft dlfunc_t
57a4a96c81SMike Barcroft.Fn dlfunc "void * restrict handle" "const char * restrict symbol"
58071ab531SPietro Cerutti.Ft char *
59645c4be3SJohn Polstra.Fn dlerror "void"
60645c4be3SJohn Polstra.Ft int
61645c4be3SJohn Polstra.Fn dlclose "void *handle"
62645c4be3SJohn Polstra.Sh DESCRIPTION
63645c4be3SJohn PolstraThese functions provide a simple programmatic interface to the services of the
64645c4be3SJohn Polstradynamic linker.
65645c4be3SJohn PolstraOperations are provided to add new shared objects to a
66645c4be3SJohn Polstraprogram's address space, to obtain the address bindings of symbols
67645c4be3SJohn Polstradefined by such
68645c4be3SJohn Polstraobjects, and to remove such objects when their use is no longer required.
69645c4be3SJohn Polstra.Pp
7095f4226bSRuslan ErmilovThe
71645c4be3SJohn Polstra.Fn dlopen
7295f4226bSRuslan Ermilovfunction
73645c4be3SJohn Polstraprovides access to the shared object in
74645c4be3SJohn Polstra.Fa path ,
75645c4be3SJohn Polstrareturning a descriptor that can be used for later
76645c4be3SJohn Polstrareferences to the object in calls to
772f1a2bdfSRomain Tartière.Fn dlsym ,
782f1a2bdfSRomain Tartière.Fn dlvsym
79645c4be3SJohn Polstraand
80645c4be3SJohn Polstra.Fn dlclose .
81645c4be3SJohn PolstraIf
82645c4be3SJohn Polstra.Fa path
83645c4be3SJohn Polstrawas not in the address space prior to the call to
84645c4be3SJohn Polstra.Fn dlopen ,
85645c4be3SJohn Polstrait is placed in the address space.
86645c4be3SJohn PolstraWhen an object is first loaded into the address space in this way, its
87645c4be3SJohn Polstrafunction
88645c4be3SJohn Polstra.Fn _init ,
89645c4be3SJohn Polstraif any, is called by the dynamic linker.
90645c4be3SJohn PolstraIf
91645c4be3SJohn Polstra.Fa path
92645c4be3SJohn Polstrahas already been placed in the address space in a previous call to
93645c4be3SJohn Polstra.Fn dlopen ,
94645c4be3SJohn Polstrait is not added a second time, although a reference count of
95645c4be3SJohn Polstra.Fn dlopen
96645c4be3SJohn Polstraoperations on
97645c4be3SJohn Polstra.Fa path
98645c4be3SJohn Polstrais maintained.
99645c4be3SJohn PolstraA null pointer supplied for
100645c4be3SJohn Polstra.Fa path
101645c4be3SJohn Polstrais interpreted as a reference to the main
102645c4be3SJohn Polstraexecutable of the process.
1032efeeba5SRuslan ErmilovThe
104645c4be3SJohn Polstra.Fa mode
1052efeeba5SRuslan Ermilovargument
106645c4be3SJohn Polstracontrols the way in which external function references from the
107645c4be3SJohn Polstraloaded object are bound to their referents.
10807f643a5SJohn PolstraIt must contain one of the following values, possibly ORed with
10907f643a5SJohn Polstraadditional flags which will be described subsequently:
110645c4be3SJohn Polstra.Bl -tag -width RTLD_LAZYX
111645c4be3SJohn Polstra.It Dv RTLD_LAZY
112645c4be3SJohn PolstraEach external function reference is resolved when the function is first
113645c4be3SJohn Polstracalled.
114645c4be3SJohn Polstra.It Dv RTLD_NOW
115645c4be3SJohn PolstraAll external function references are bound immediately by
116645c4be3SJohn Polstra.Fn dlopen .
117645c4be3SJohn Polstra.El
118645c4be3SJohn Polstra.Pp
119645c4be3SJohn Polstra.Dv RTLD_LAZY
120645c4be3SJohn Polstrais normally preferred, for reasons of efficiency.
121645c4be3SJohn PolstraHowever,
122645c4be3SJohn Polstra.Dv RTLD_NOW
123645c4be3SJohn Polstrais useful to ensure that any undefined symbols are discovered during the
124645c4be3SJohn Polstracall to
125645c4be3SJohn Polstra.Fn dlopen .
12607f643a5SJohn Polstra.Pp
12707f643a5SJohn PolstraOne of the following flags may be ORed into the
12807f643a5SJohn Polstra.Fa mode
12907f643a5SJohn Polstraargument:
130b2e4ce45SKonstantin Belousov.Bl -tag -width RTLD_NODELETE
13107f643a5SJohn Polstra.It Dv RTLD_GLOBAL
13207f643a5SJohn PolstraSymbols from this shared object and its directed acyclic graph (DAG)
13307f643a5SJohn Polstraof needed objects will be available for resolving undefined references
13407f643a5SJohn Polstrafrom all other shared objects.
13507f643a5SJohn Polstra.It Dv RTLD_LOCAL
13607f643a5SJohn PolstraSymbols in this shared object and its DAG of needed objects will be
13707f643a5SJohn Polstraavailable for resolving undefined references only from other objects
138760d9686SRuslan Ermilovin the same DAG.
139760d9686SRuslan ErmilovThis is the default, but it may be specified
14007f643a5SJohn Polstraexplicitly with this flag.
141c6de4ce7SMaxim Sobolev.It Dv RTLD_TRACE
142c6de4ce7SMaxim SobolevWhen set, causes dynamic linker to exit after loading all objects
143c6de4ce7SMaxim Sobolevneeded by this shared object and printing a summary which includes
144c6de4ce7SMaxim Sobolevthe absolute pathnames of all objects, to standard output.
145c6de4ce7SMaxim SobolevWith this flag
146c6de4ce7SMaxim Sobolev.Fn dlopen
147c6de4ce7SMaxim Sobolevwill return to the caller only in the case of error.
148b2e4ce45SKonstantin Belousov.It Dv RTLD_NODELETE
149b2e4ce45SKonstantin BelousovPrevents unload of the loaded object on
150b2e4ce45SKonstantin Belousov.Fn dlclose .
151b2e4ce45SKonstantin BelousovThe same behaviour may be requested by
152b2e4ce45SKonstantin Belousov.Fl "z nodelete"
153b2e4ce45SKonstantin Belousovoption of the static linker
154b2e4ce45SKonstantin Belousov.Xr ld 1 .
15549e8c06bSKonstantin Belousov.It Dv RTLD_NOLOAD
156c2025a76SJoel DahlOnly return valid handle for the object if it is already loaded in
15749e8c06bSKonstantin Belousovthe process address space, otherwise
15849e8c06bSKonstantin Belousov.Dv NULL
15949e8c06bSKonstantin Belousovis returned.
16049e8c06bSKonstantin BelousovOther mode flags may be specified, which will be applied for promotion
16149e8c06bSKonstantin Belousovfor the found object.
1621659238aSKonstantin Belousov.It Dv RTLD_DEEPBIND
1631659238aSKonstantin BelousovSymbols from the loaded library are put before global symbols when
1641659238aSKonstantin Belousovresolving symbolic references originated from the library.
16507f643a5SJohn Polstra.El
16607f643a5SJohn Polstra.Pp
167645c4be3SJohn PolstraIf
168645c4be3SJohn Polstra.Fn dlopen
169645c4be3SJohn Polstrafails, it returns a null pointer, and sets an error condition which may
170645c4be3SJohn Polstrabe interrogated with
171645c4be3SJohn Polstra.Fn dlerror .
172645c4be3SJohn Polstra.Pp
17395f4226bSRuslan ErmilovThe
1745d8aec9cSKonstantin Belousov.Fn fdlopen
1755d8aec9cSKonstantin Belousovfunction is similar to
1765d8aec9cSKonstantin Belousov.Fn dlopen ,
1775d8aec9cSKonstantin Belousovbut it takes the file descriptor argument
1785d8aec9cSKonstantin Belousov.Fa fd ,
1795d8aec9cSKonstantin Belousovwhich is used for the file operations needed to load an object
1805d8aec9cSKonstantin Belousovinto the address space.
1815d8aec9cSKonstantin BelousovThe file descriptor
1825d8aec9cSKonstantin Belousov.Fa fd
1835d8aec9cSKonstantin Belousovis not closed by the function regardless a result of execution,
1845d8aec9cSKonstantin Belousovbut a duplicate of the file descriptor is.
1855d8aec9cSKonstantin BelousovThis may be important if a
1865d8aec9cSKonstantin Belousov.Xr lockf 3
1875d8aec9cSKonstantin Belousovlock is held on the passed descriptor.
1885d8aec9cSKonstantin BelousovThe
1895d8aec9cSKonstantin Belousov.Fa fd
1905d8aec9cSKonstantin Belousovargument -1 is interpreted as a reference to the main
1915d8aec9cSKonstantin Belousovexecutable of the process, similar to
1925d8aec9cSKonstantin Belousov.Va NULL
1935d8aec9cSKonstantin Belousovvalue for the
1945d8aec9cSKonstantin Belousov.Fa name
1955d8aec9cSKonstantin Belousovargument to
1965d8aec9cSKonstantin Belousov.Fn dlopen .
1975d8aec9cSKonstantin BelousovThe
1985d8aec9cSKonstantin Belousov.Fn fdlopen
1995d8aec9cSKonstantin Belousovfunction can be used by the code that needs to perform
2005d8aec9cSKonstantin Belousovadditional checks on the loaded objects, to prevent races with
2015d8aec9cSKonstantin Belousovsymlinking or renames.
202*d84fd89eSEd MasteApplications sandboxed using
203*d84fd89eSEd Maste.Xr capsicum 4
204*d84fd89eSEd Mastecan also make beneficial use of
205*d84fd89eSEd Maste.Fn fdlopen .
2065d8aec9cSKonstantin Belousov.Pp
2075d8aec9cSKonstantin BelousovThe
208645c4be3SJohn Polstra.Fn dlsym
20995f4226bSRuslan Ermilovfunction
210645c4be3SJohn Polstrareturns the address binding of the symbol described in the null-terminated
211645c4be3SJohn Polstracharacter string
212645c4be3SJohn Polstra.Fa symbol ,
213645c4be3SJohn Polstraas it occurs in the shared object identified by
214645c4be3SJohn Polstra.Fa handle .
215645c4be3SJohn PolstraThe symbols exported by objects added to the address space by
216645c4be3SJohn Polstra.Fn dlopen
217645c4be3SJohn Polstracan be accessed only through calls to
218645c4be3SJohn Polstra.Fn dlsym .
219645c4be3SJohn PolstraSuch symbols do not supersede any definition of those symbols already present
220645c4be3SJohn Polstrain the address space when the object is loaded, nor are they available to
221645c4be3SJohn Polstrasatisfy normal dynamic linking references.
2227f244df8SJohn Polstra.Pp
2237f244df8SJohn PolstraIf
2247f244df8SJohn Polstra.Fn dlsym
2257f244df8SJohn Polstrais called with the special
226645c4be3SJohn Polstra.Fa handle
2277f244df8SJohn Polstra.Dv NULL ,
2287f244df8SJohn Polstrait is interpreted as a reference to the executable or shared object
2297f244df8SJohn Polstrafrom which the call
230760d9686SRuslan Ermilovis being made.
231760d9686SRuslan ErmilovThus a shared object can reference its own symbols.
2327f244df8SJohn Polstra.Pp
2337f244df8SJohn PolstraIf
234645c4be3SJohn Polstra.Fn dlsym
2357f244df8SJohn Polstrais called with the special
2367f244df8SJohn Polstra.Fa handle
2377f244df8SJohn Polstra.Dv RTLD_DEFAULT ,
2387f244df8SJohn Polstrathe search for the symbol follows the algorithm used for resolving
239760d9686SRuslan Ermilovundefined symbols when objects are loaded.
240760d9686SRuslan ErmilovThe objects searched are
2417f244df8SJohn Polstraas follows, in the given order:
2427f244df8SJohn Polstra.Bl -enum
2437f244df8SJohn Polstra.It
2447f244df8SJohn PolstraThe referencing object itself (or the object from which the call to
2457f244df8SJohn Polstra.Fn dlsym
2467f244df8SJohn Polstrais made), if that object was linked using the
247dac0a538STijl Coosemans.Fl Bsymbolic
2487f244df8SJohn Polstraoption to
2497f244df8SJohn Polstra.Xr ld 1 .
2507f244df8SJohn Polstra.It
2517f244df8SJohn PolstraAll objects loaded at program start-up.
2527f244df8SJohn Polstra.It
2537f244df8SJohn PolstraAll objects loaded via
2547f244df8SJohn Polstra.Fn dlopen
2557f244df8SJohn Polstrawith the
2567f244df8SJohn Polstra.Dv RTLD_GLOBAL
2577f244df8SJohn Polstraflag set in the
2587f244df8SJohn Polstra.Fa mode
2597f244df8SJohn Polstraargument.
260c56864a7SPeter Pentchev.It
261c56864a7SPeter PentchevAll objects loaded via
262c56864a7SPeter Pentchev.Fn dlopen
263c56864a7SPeter Pentchevwhich are in needed-object DAGs that also contain the referencing object.
2647f244df8SJohn Polstra.El
265645c4be3SJohn Polstra.Pp
266645c4be3SJohn PolstraIf
267645c4be3SJohn Polstra.Fn dlsym
268645c4be3SJohn Polstrais called with the special
269645c4be3SJohn Polstra.Fa handle
270645c4be3SJohn Polstra.Dv RTLD_NEXT ,
271645c4be3SJohn Polstrathen the search for the symbol is limited to the shared objects
272645c4be3SJohn Polstrawhich were loaded after the one issuing the call to
273645c4be3SJohn Polstra.Fn dlsym .
274645c4be3SJohn PolstraThus, if the function is called from the main program, all
275645c4be3SJohn Polstrathe shared libraries are searched.
276645c4be3SJohn PolstraIf it is called from a shared library, all subsequent shared
277645c4be3SJohn Polstralibraries are searched.
278645c4be3SJohn Polstra.Dv RTLD_NEXT
279645c4be3SJohn Polstrais useful for implementing wrappers around library functions.
280645c4be3SJohn PolstraFor example, a wrapper function
281645c4be3SJohn Polstra.Fn getpid
282645c4be3SJohn Polstracould access the
283645c4be3SJohn Polstra.Dq real
284645c4be3SJohn Polstra.Fn getpid
285645c4be3SJohn Polstrawith
286c786c636SJoerg Wunsch.Li dlsym(RTLD_NEXT, \&"getpid\&") .
287dc12134aSGarrett Wollman(Actually, the
288dc12134aSGarrett Wollman.Fn dlfunc
289dc12134aSGarrett Wollmaninterface, below, should be used, since
290dc12134aSGarrett Wollman.Fn getpid
291dc12134aSGarrett Wollmanis a function and not a data object.)
292645c4be3SJohn Polstra.Pp
2937ec37597SAlexey ZelkinIf
2947ec37597SAlexey Zelkin.Fn dlsym
2957ec37597SAlexey Zelkinis called with the special
2967ec37597SAlexey Zelkin.Fa handle
2977ec37597SAlexey Zelkin.Dv RTLD_SELF ,
2987ec37597SAlexey Zelkinthen the search for the symbol is limited to the shared object
2997ec37597SAlexey Zelkinissuing the call to
3007ec37597SAlexey Zelkin.Fn dlsym
3017ec37597SAlexey Zelkinand those shared objects which were loaded after it.
3027ec37597SAlexey Zelkin.Pp
30395f4226bSRuslan ErmilovThe
3047f244df8SJohn Polstra.Fn dlsym
30595f4226bSRuslan Ermilovfunction
3067f244df8SJohn Polstrareturns a null pointer if the symbol cannot be found, and sets an error
3077f244df8SJohn Polstracondition which may be queried with
3087f244df8SJohn Polstra.Fn dlerror .
3097f244df8SJohn Polstra.Pp
31095f4226bSRuslan ErmilovThe
3112f1a2bdfSRomain Tartière.Fn dlvsym
3122f1a2bdfSRomain Tartièrefunction behaves like
3132f1a2bdfSRomain Tartière.Fn dlsym ,
3142f1a2bdfSRomain Tartièrebut takes an extra argument
3152f1a2bdfSRomain Tartière.Fa version :
3162f1a2bdfSRomain Tartièrea null-terminated character string which is used to request a specific version
3172f1a2bdfSRomain Tartièreof
3182f1a2bdfSRomain Tartière.Fa symbol .
3192f1a2bdfSRomain Tartière.Pp
3202f1a2bdfSRomain TartièreThe
321dc12134aSGarrett Wollman.Fn dlfunc
32295f4226bSRuslan Ermilovfunction
323dc12134aSGarrett Wollmanimplements all of the behavior of
324dc12134aSGarrett Wollman.Fn dlsym ,
325dc12134aSGarrett Wollmanbut has a return type which can be cast to a function pointer without
326dc12134aSGarrett Wollmantriggering compiler diagnostics.
32795f4226bSRuslan Ermilov(The
32895f4226bSRuslan Ermilov.Fn dlsym
32995f4226bSRuslan Ermilovfunction
330e6044abdSJens Schweikhardtreturns an object pointer; in the C standard, conversions between
331e6044abdSJens Schweikhardtobject and function pointer types are undefined.
332e6044abdSJens SchweikhardtSome compilers and lint utilities warn about such casts.)
333dc12134aSGarrett WollmanThe precise return type of
334dc12134aSGarrett Wollman.Fn dlfunc
335dc12134aSGarrett Wollmanis unspecified; applications must cast it to an appropriate function pointer
336dc12134aSGarrett Wollmantype.
337dc12134aSGarrett Wollman.Pp
33895f4226bSRuslan ErmilovThe
339645c4be3SJohn Polstra.Fn dlerror
34095f4226bSRuslan Ermilovfunction
341645c4be3SJohn Polstrareturns a null-terminated character string describing the last error that
342645c4be3SJohn Polstraoccurred during a call to
343645c4be3SJohn Polstra.Fn dlopen ,
344e8598335SAlexey Zelkin.Fn dladdr ,
345e8598335SAlexey Zelkin.Fn dlinfo ,
346645c4be3SJohn Polstra.Fn dlsym ,
3472f1a2bdfSRomain Tartière.Fn dlvsym ,
348dc12134aSGarrett Wollman.Fn dlfunc ,
349645c4be3SJohn Polstraor
350645c4be3SJohn Polstra.Fn dlclose .
351645c4be3SJohn PolstraIf no such error has occurred,
352645c4be3SJohn Polstra.Fn dlerror
353645c4be3SJohn Polstrareturns a null pointer.
354645c4be3SJohn PolstraAt each call to
355645c4be3SJohn Polstra.Fn dlerror ,
356760d9686SRuslan Ermilovthe error indication is reset.
357760d9686SRuslan ErmilovThus in the case of two calls
358645c4be3SJohn Polstrato
359645c4be3SJohn Polstra.Fn dlerror ,
360645c4be3SJohn Polstrawhere the second call follows the first immediately, the second call
361645c4be3SJohn Polstrawill always return a null pointer.
362645c4be3SJohn Polstra.Pp
36395f4226bSRuslan ErmilovThe
364645c4be3SJohn Polstra.Fn dlclose
36595f4226bSRuslan Ermilovfunction
366645c4be3SJohn Polstradeletes a reference to the shared object referenced by
367645c4be3SJohn Polstra.Fa handle .
368645c4be3SJohn PolstraIf the reference count drops to 0, the object is removed from the
369645c4be3SJohn Polstraaddress space, and
370645c4be3SJohn Polstra.Fa handle
371645c4be3SJohn Polstrais rendered invalid.
372645c4be3SJohn PolstraJust before removing a shared object in this way, the dynamic linker
373645c4be3SJohn Polstracalls the object's
374645c4be3SJohn Polstra.Fn _fini
375645c4be3SJohn Polstrafunction, if such a function is defined by the object.
376645c4be3SJohn PolstraIf
377645c4be3SJohn Polstra.Fn dlclose
378645c4be3SJohn Polstrais successful, it returns a value of 0.
379645c4be3SJohn PolstraOtherwise it returns -1, and sets an error condition that can be
380645c4be3SJohn Polstrainterrogated with
381645c4be3SJohn Polstra.Fn dlerror .
382645c4be3SJohn Polstra.Pp
383645c4be3SJohn PolstraThe object-intrinsic functions
384645c4be3SJohn Polstra.Fn _init
385645c4be3SJohn Polstraand
386645c4be3SJohn Polstra.Fn _fini
387645c4be3SJohn Polstraare called with no arguments, and are not expected to return values.
388f28529d7SJoseph Koshy.Sh NOTES
389f28529d7SJoseph KoshyELF executables need to be linked
390f28529d7SJoseph Koshyusing the
391f28529d7SJoseph Koshy.Fl export-dynamic
392f28529d7SJoseph Koshyoption to
393f28529d7SJoseph Koshy.Xr ld 1
394f28529d7SJoseph Koshyfor symbols defined in the executable to become visible to
3952f1a2bdfSRomain Tartière.Fn dlsym ,
3962f1a2bdfSRomain Tartière.Fn dlvsym
3972f1a2bdfSRomain Tartièreor
3982f1a2bdfSRomain Tartière.Fn dlfunc
399c786c636SJoerg Wunsch.Pp
40099ac8154SKonstantin BelousovOther ELF platforms require linking with
40199ac8154SKonstantin Belousov.Lb libdl
40299ac8154SKonstantin Belousovto provide
40399ac8154SKonstantin Belousov.Fn dlopen
40499ac8154SKonstantin Belousovand other functions.
40599ac8154SKonstantin Belousov.Fx
40699ac8154SKonstantin Belousovdoes not require linking with the library, but supports it for compatibility.
40799ac8154SKonstantin Belousov.Pp
408c786c636SJoerg WunschIn previous implementations, it was necessary to prepend an underscore
409c786c636SJoerg Wunschto all external symbols in order to gain symbol
410760d9686SRuslan Ermilovcompatibility with object code compiled from the C language.
411760d9686SRuslan ErmilovThis is
412c786c636SJoerg Wunschstill the case when using the (obsolete)
413c786c636SJoerg Wunsch.Fl aout
414c786c636SJoerg Wunschoption to the C language compiler.
415645c4be3SJohn Polstra.Sh ERRORS
41695f4226bSRuslan ErmilovThe
417dc12134aSGarrett Wollman.Fn dlopen ,
4185d8aec9cSKonstantin Belousov.Fn fdlopen ,
419dc12134aSGarrett Wollman.Fn dlsym ,
4202f1a2bdfSRomain Tartière.Fn dlvsym ,
421645c4be3SJohn Polstraand
422dc12134aSGarrett Wollman.Fn dlfunc
42395f4226bSRuslan Ermilovfunctions
424dc12134aSGarrett Wollmanreturn a null pointer in the event of errors.
42595f4226bSRuslan ErmilovThe
426645c4be3SJohn Polstra.Fn dlclose
42795f4226bSRuslan Ermilovfunction
428645c4be3SJohn Polstrareturns 0 on success, or -1 if an error occurred.
429645c4be3SJohn PolstraWhenever an error has been detected, a message detailing it can be
430645c4be3SJohn Polstraretrieved via a call to
431645c4be3SJohn Polstra.Fn dlerror .
432645c4be3SJohn Polstra.Sh SEE ALSO
433645c4be3SJohn Polstra.Xr ld 1 ,
434645c4be3SJohn Polstra.Xr rtld 1 ,
4354088069cSDima Dorfman.Xr dladdr 3 ,
4367ec37597SAlexey Zelkin.Xr dlinfo 3 ,
437645c4be3SJohn Polstra.Xr link 5
438