.\" $NetBSD: dlfcn.3,v 1.30 2010/12/24 13:00:24 wiz Exp $ .\" .\" Copyright (c) 1998 The NetBSD Foundation, Inc. .\" All rights reserved. .\" .\" This code is derived from software contributed to The NetBSD Foundation .\" by Paul Kranenburg. .\" .\" Redistribution and use in source and binary forms, with or without .\" modification, are permitted provided that the following conditions .\" are met: .\" 1. Redistributions of source code must retain the above copyright .\" notice, this list of conditions and the following disclaimer. .\" 2. Redistributions in binary form must reproduce the above copyright .\" notice, this list of conditions and the following disclaimer in the .\" documentation and/or other materials provided with the distribution. .\" .\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS .\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED .\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR .\" PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS .\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR .\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF .\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS .\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN .\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE .\" POSSIBILITY OF SUCH DAMAGE. .\" .Dd April 28, 2011 .Dt DLFCN 3 .Os .Sh NAME .Nm dlopen , .Nm dlclose , .Nm dlinfo , .Nm dladdr , .Nm dlsym , .Nm dlfunc , .Nm dlvsym , .Nm dl_iterate_phdr , .Nm dlerror .Nd programmatic interface to the dynamic linker .Sh LIBRARY This function is not in a library. It is included in every dynamically linked program automatically. .Sh SYNOPSIS .In dlfcn.h .Ft "void *" .Fn dlopen "const char *name" "int mode" .Ft int .Fn dlclose "void *handle" .Ft int .Fn dlinfo "void *handle" "int request" "void *p" .Ft int .Fn dladdr "const void *addr" "Dl_info *info" .Ft "void *" .Fn dlsym "void *handle" "const char *name" .Ft dlfunc_t .Fn dlfunc "void *handle" "const char *name" .Ft "void *" .Fn dlvsym "void *handle" "const char *name" "const char *version" .Ft "char *" .Fn dlerror "void" .In link.h .Ft "int" .Fn dl_iterate_phdr "int (*callback)(struct dl_phdr_info *, size_t, void *)" "void * data" .Sh DESCRIPTION These functions provide an interface to the run-time linker .Xr ld-elf.so.2 1 . They allow new shared objects to be loaded into the process' address space under program control. .Sh SEE ALSO .Xr ld 1 , .Xr rtld 1 , .Xr dladdr 3 , .Xr dlclose 3 , .Xr dlerror 3 , .Xr dlfunc 3 , .Xr dlinfo 3 , .Xr dl_iterate_phdr 3 , .Xr dlopen 3 , .Xr dlsym 3 , .Xr dlvsym 3 , .Xr link 5 .Sh HISTORY Some of the .Nm dl* functions first appeared in SunOS 4.