]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man3/dlsym.3
fanotify_init.2, fanotify.7: Document FAN_REPORT_TID
[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.\"
4b8c67d9 25.TH DLSYM 3 2017-09-15 "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
15e1b31b
MK
58Since the value of the symbol could actually be NULL (so that a
59NULL return from
60.BR dlsym ()
61need not indicate an error), the correct way to test for an error
62is to call
63.BR dlerror (3)
64to clear any old error conditions, then call
65.BR dlsym (),
66and then call
67.BR dlerror (3)
68again, saving its return value into a variable, and check whether
69this saved value is not NULL.
70.PP
71There are two special pseudo-handles that may be specified in
72.IR handle :
73.TP
74.B RTLD_DEFAULT
75Find the first occurrence of the desired symbol
76using the default shared object search order.
77The search will include global symbols in the executable
78and its dependencies,
79as well as symbols in shared objects that were dynamically loaded with the
80.BR RTLD_GLOBAL
81flag.
82.TP
83.BR RTLD_NEXT
84Find the next occurrence of the desired symbol in the search order
85after the current object.
86This allows one to provide a wrapper
87around a function in another shared object, so that, for example,
88the definition of a function in a preloaded shared object
89(see
90.B LD_PRELOAD
91in
92.BR ld.so (8))
93can find and invoke the "real" function provided in another shared object
94(or for that matter, the "next" definition of the function in cases
95where there are multiple layers of preloading).
f9ce70d2
MK
96.PP
97The
98.B _GNU_SOURCE
99feature test macro must be defined in order to obtain the
100definitions of
101.B RTLD_DEFAULT
102and
103.B RTLD_NEXT
104from
105.IR <dlfcn.h> .
847e0d88 106.PP
4590829a 107.PP
15e1b31b
MK
108The function
109.BR dlvsym ()
110does the same as
111.BR dlsym ()
112but takes a version string as an additional argument.
113.SH RETURN VALUE
114On success,
115these functions return the address associated with
116.IR symbol .
117On failure, they return NULL;
118the cause of the error can be diagnosed using
119.BR dlerror (3).
120.SH VERSIONS
121.BR dlsym ()
122is present in glibc 2.0 and later.
123.BR dlvsym ()
124first appeared in glibc 2.1.
39720f03
MK
125.SH ATTRIBUTES
126For an explanation of the terms used in this section, see
127.BR attributes (7).
128.TS
129allbox;
130lb lb lb
131l l l.
132Interface Attribute Value
133T{
134.BR dlsym (),
135.BR dlvsym ()
136T} Thread safety MT-Safe
137.TE
15e1b31b
MK
138.SH CONFORMING TO
139POSIX.1-2001 describes
140.BR dlsym ().
141The
142.BR dlvsym ()
143function is a GNU extension.
144.SH NOTES
145.SS History
146The
147.BR dlsym ()
148function is part of the dlopen API, derived from SunOS.
149That system does not have
150.BR dlvsym ().
151.SH EXAMPLE
152See
153.BR dlopen (3).
154.SH SEE ALSO
155.BR dl_iterate_phdr (3),
156.BR dladdr (3),
936b64f6 157.BR dlerror (3),
15e1b31b
MK
158.BR dlinfo (3),
159.BR dlopen (3),
160.BR ld.so (8)