]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man3/dlsym.3
dlopen.3: Note that symbol use might keep a dlclose'd object in memory
[thirdparty/man-pages.git] / man3 / dlsym.3
CommitLineData
15e1b31b 1.\" Copyright 1995 Yggdrasil Computing, Incorporated.
616c2730 2.\" and Copyright 2003, 2015 Michael Kerrisk <mtk.manpages@gmail.com>
15e1b31b
MK
3.\"
4.\" %%%LICENSE_START(GPLv2+_DOC_FULL)
5.\" This is free documentation; you can redistribute it and/or
6.\" modify it under the terms of the GNU General Public License as
7.\" published by the Free Software Foundation; either version 2 of
8.\" the License, or (at your option) any later version.
9.\"
10.\" The GNU General Public License's references to "object code"
11.\" and "executables" are to be interpreted as the output of any
12.\" document formatting or typesetting system, including
13.\" intermediate and printed output.
14.\"
15.\" This manual is distributed in the hope that it will be useful,
16.\" but WITHOUT ANY WARRANTY; without even the implied warranty of
17.\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18.\" GNU General Public License for more details.
19.\"
20.\" You should have received a copy of the GNU General Public
21.\" License along with this manual; if not, see
22.\" <http://www.gnu.org/licenses/>.
23.\" %%%LICENSE_END
24.\"
9ba01802 25.TH DLSYM 3 2019-03-06 "Linux" "Linux Programmer's Manual"
15e1b31b
MK
26.SH NAME
27dlsym, dlvsym \- obtain address of a symbol in a shared object or executable
28.SH SYNOPSIS
29.B #include <dlfcn.h>
68e4db0a 30.PP
15e1b31b 31.BI "void *dlsym(void *" handle ", const char *" symbol );
dbfe9c70 32.PP
15e1b31b
MK
33.B #define _GNU_SOURCE
34.br
35.B #include <dlfcn.h>
68e4db0a 36.PP
15e1b31b 37.BI "void *dlvsym(void *" handle ", char *" symbol ", char *" version );
68e4db0a 38.PP
15e1b31b
MK
39Link with \fI\-ldl\fP.
40.SH DESCRIPTION
41The function
42.BR dlsym ()
43takes a "handle" of a dynamic loaded shared object returned by
44.BR dlopen (3)
45along with a null-terminated symbol name,
46and returns the address where that symbol is
47loaded into memory.
48If the symbol is not found, in the specified
49object or any of the shared objects that were automatically loaded by
50.BR dlopen (3)
51when that object was loaded,
52.BR dlsym ()
53returns NULL.
54(The search performed by
55.BR dlsym ()
56is breadth first through the dependency tree of these shared objects.)
847e0d88 57.PP
b628f896
MK
58In unusual cases (see NOTES) the value of the symbol could actually be NULL.
59Therefore, a NULL return from
15e1b31b 60.BR dlsym ()
b628f896
MK
61need not indicate an error.
62The correct way to distinguish an error from a symbol whose value is NULL
15e1b31b
MK
63is to call
64.BR dlerror (3)
65to clear any old error conditions, then call
66.BR dlsym (),
67and then call
68.BR dlerror (3)
69again, saving its return value into a variable, and check whether
70this saved value is not NULL.
71.PP
72There are two special pseudo-handles that may be specified in
73.IR handle :
74.TP
75.B RTLD_DEFAULT
76Find the first occurrence of the desired symbol
77using the default shared object search order.
78The search will include global symbols in the executable
79and its dependencies,
80as well as symbols in shared objects that were dynamically loaded with the
81.BR RTLD_GLOBAL
82flag.
83.TP
84.BR RTLD_NEXT
85Find the next occurrence of the desired symbol in the search order
86after the current object.
87This allows one to provide a wrapper
88around a function in another shared object, so that, for example,
89the definition of a function in a preloaded shared object
90(see
91.B LD_PRELOAD
92in
93.BR ld.so (8))
94can find and invoke the "real" function provided in another shared object
95(or for that matter, the "next" definition of the function in cases
96where there are multiple layers of preloading).
f9ce70d2
MK
97.PP
98The
99.B _GNU_SOURCE
100feature test macro must be defined in order to obtain the
101definitions of
102.B RTLD_DEFAULT
103and
104.B RTLD_NEXT
105from
106.IR <dlfcn.h> .
847e0d88 107.PP
4590829a 108.PP
15e1b31b
MK
109The function
110.BR dlvsym ()
111does the same as
112.BR dlsym ()
113but takes a version string as an additional argument.
114.SH RETURN VALUE
115On success,
116these functions return the address associated with
117.IR symbol .
118On failure, they return NULL;
119the cause of the error can be diagnosed using
120.BR dlerror (3).
121.SH VERSIONS
122.BR dlsym ()
123is present in glibc 2.0 and later.
124.BR dlvsym ()
125first appeared in glibc 2.1.
39720f03
MK
126.SH ATTRIBUTES
127For an explanation of the terms used in this section, see
128.BR attributes (7).
129.TS
130allbox;
131lb lb lb
132l l l.
133Interface Attribute Value
134T{
135.BR dlsym (),
136.BR dlvsym ()
137T} Thread safety MT-Safe
138.TE
15e1b31b
MK
139.SH CONFORMING TO
140POSIX.1-2001 describes
141.BR dlsym ().
142The
143.BR dlvsym ()
144function is a GNU extension.
145.SH NOTES
b628f896
MK
146The value of a symbol returned by
147.BR dlsym ()
148will never be NULL if the shared object is the result of normal compilation,
149since a global symbol is never placed at the NULL address.
150There are nevertheless cases where a lookup using
151.BR dlsym ()
152may return NULL as the value of a symbol.
153For example, the symbol value may be the result of
154a GNU indirect function (IFUNC) resolver function that returns
155NULL as the resolved value.
156.\"
15e1b31b
MK
157.SS History
158The
159.BR dlsym ()
160function is part of the dlopen API, derived from SunOS.
161That system does not have
162.BR dlvsym ().
163.SH EXAMPLE
164See
165.BR dlopen (3).
166.SH SEE ALSO
167.BR dl_iterate_phdr (3),
168.BR dladdr (3),
936b64f6 169.BR dlerror (3),
15e1b31b
MK
170.BR dlinfo (3),
171.BR dlopen (3),
172.BR ld.so (8)