*** empty log message ***
[bpt/guile.git] / libguile / dynl-dl.c
CommitLineData
1edae076
MV
1/* dynl-dl.c - dynamic linking for dlopen/dlsym
2 *
7dc6e754 3 * Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
1edae076
MV
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2, or (at your option)
8 * any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this software; see the file COPYING. If not, write to
82892bed
JB
17 * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18 * Boston, MA 02111-1307 USA
1edae076
MV
19 *
20 * As a special exception, the Free Software Foundation gives permission
21 * for additional uses of the text contained in its release of GUILE.
22 *
23 * The exception is that, if you link the GUILE library with other files
24 * to produce an executable, this does not by itself cause the
25 * resulting executable to be covered by the GNU General Public License.
26 * Your use of that executable is in no way restricted on account of
27 * linking the GUILE library code into it.
28 *
29 * This exception does not however invalidate any other reasons why
30 * the executable file might be covered by the GNU General Public License.
31 *
32 * This exception applies only to the code released by the
33 * Free Software Foundation under the name GUILE. If you copy
34 * code from other Free Software Foundation releases into a copy of
35 * GUILE, as the General Public License permits, the exception does
36 * not apply to the code that you add in this way. To avoid misleading
37 * anyone as to the status of such modified files, you must delete
38 * this exception notice from them.
39 *
40 * If you write modifications of your own for GUILE, it is your choice
41 * whether to permit this exception to apply to your modifications.
82892bed 42 * If you do not wish that, delete this exception notice. */
1edae076
MV
43
44/* "dynl.c" dynamically link&load object files.
45 Author: Aubrey Jaffer
46 Modified for libguile by Marius Vollmer */
47
1edae076
MV
48#include <dlfcn.h>
49
1edae076
MV
50#ifdef RTLD_LAZY /* Solaris 2. */
51# define DLOPEN_MODE RTLD_LAZY
52#else
53# define DLOPEN_MODE 1 /* Thats what it says in the man page. */
54#endif
55
80bc7890 56static void *
56a19408 57sysdep_dynl_link (fname, flags, subr)
3eeba8d4 58 const char *fname;
56a19408 59 int flags;
3eeba8d4 60 const char *subr;
1edae076 61{
56a19408 62 void *handle = dlopen (fname, (DLOPEN_MODE
af1f9aa2 63 | ((flags & DYNL_GLOBAL)? RTLD_GLOBAL : 0)));
80bc7890 64 if (NULL == handle)
419e9e11
MV
65 {
66 SCM_ALLOW_INTS;
80bc7890 67 scm_misc_error (subr, (char *)dlerror (), SCM_EOL);
419e9e11 68 }
80bc7890 69 return handle;
1edae076
MV
70}
71
80bc7890
MV
72static void
73sysdep_dynl_unlink (handle, subr)
74 void *handle;
3eeba8d4 75 const char *subr;
1edae076 76{
419e9e11
MV
77 if (dlclose (handle))
78 {
79 SCM_ALLOW_INTS;
80bc7890 80 scm_misc_error (subr, (char *)dlerror (), SCM_EOL);
419e9e11 81 }
1edae076 82}
80bc7890 83
1edae076 84static void *
80bc7890 85sysdep_dynl_func (symb, handle, subr)
3eeba8d4 86 const char *symb;
1edae076 87 void *handle;
3eeba8d4 88 const char *subr;
1edae076
MV
89{
90 void *fptr;
91 char *err;
cda139a7 92#if defined(USCORE) && !defined(DLSYM_ADDS_USCORE)
2a0d7176 93 char *usymb;
cda139a7 94#endif
1edae076 95
e085f7a6 96#if defined(USCORE) && !defined(DLSYM_ADDS_USCORE)
0113293e 97 usymb = (char *) malloc (strlen (symb) + 2);
2a0d7176
TP
98 *usymb = '_';
99 strcpy (usymb + 1, symb);
0113293e
TP
100 fptr = dlsym (handle, usymb);
101 free (usymb);
e085f7a6
TP
102#else
103 fptr = dlsym (handle, symb);
2a0d7176
TP
104#endif
105
1edae076
MV
106 err = (char *)dlerror ();
107 if (!fptr)
419e9e11
MV
108 {
109 SCM_ALLOW_INTS;
1edae076 110 scm_misc_error (subr, err? err : "symbol has NULL address", SCM_EOL);
419e9e11 111 }
1edae076
MV
112 return fptr;
113}
114
80bc7890
MV
115static void
116sysdep_dynl_init ()
1edae076 117{
1edae076 118}