Change Guile license to LGPLv3+
[bpt/guile.git] / libguile / dynl.c
CommitLineData
1edae076
MV
1/* dynl.c - dynamic linking
2 *
4d3526d0 3 * Copyright (C) 1990, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000, 2001, 2002,
dbb605f5 4 * 2003, 2008 Free Software Foundation, Inc.
1edae076 5 *
73be1d9e 6 * This library is free software; you can redistribute it and/or
53befeb7
NJ
7 * modify it under the terms of the GNU Lesser General Public License
8 * as published by the Free Software Foundation; either version 3 of
9 * the License, or (at your option) any later version.
1edae076 10 *
53befeb7
NJ
11 * This library is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
73be1d9e
MV
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
1edae076 15 *
73be1d9e
MV
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
53befeb7
NJ
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 * 02110-1301 USA
73be1d9e 20 */
1edae076 21
1bbd0b84
GB
22
23
dbb605f5
LC
24#ifdef HAVE_CONFIG_H
25# include <config.h>
26#endif
27
1edae076
MV
28/* "dynl.c" dynamically link&load object files.
29 Author: Aubrey Jaffer
30 Modified for libguile by Marius Vollmer */
31
104d4533 32#if 0 /* Disabled until we know for sure that it isn't needed */
80bc7890
MV
33/* XXX - This is only here to drag in a definition of __eprintf. This
34 is needed for proper operation of dynamic linking. The real
35 solution would probably be a shared libgcc. */
36
37#undef NDEBUG
38#include <assert.h>
39
40static void
41maybe_drag_in_eprintf ()
42{
43 assert (!maybe_drag_in_eprintf);
44}
104d4533 45#endif
80bc7890 46
96599e6a 47#include <stdio.h>
13070bd3
DH
48#include <string.h>
49
a0599745
MD
50#include "libguile/_scm.h"
51#include "libguile/dynl.h"
52#include "libguile/smob.h"
53#include "libguile/keywords.h"
54#include "libguile/ports.h"
55#include "libguile/strings.h"
a0e0793f 56#include "libguile/deprecation.h"
c96d76b8 57#include "libguile/lang.h"
a0599745 58#include "libguile/validate.h"
7f9994d9 59#include "libguile/dynwind.h"
408ea28a 60
a8255dca 61#include <ltdl.h>
4feb69af 62
c2cbcc57
HWN
63/*
64 From the libtool manual: "Note that libltdl is not threadsafe,
65 i.e. a multithreaded application has to use a mutex for libltdl.".
66
9de87eea
MV
67 Guile does not currently support pre-emptive threads, so there is no
68 mutex. Previously SCM_CRITICAL_SECTION_START and
69 SCM_CRITICAL_SECTION_END were used: they are mentioned here in case
70 somebody is grepping for thread problems ;)
732b9327 71*/
e45947bf 72/* njrev: not threadsafe, protection needed as described above */
732b9327 73
4feb69af 74static void *
af45e3b0 75sysdep_dynl_link (const char *fname, const char *subr)
4feb69af 76{
a8255dca
MV
77 lt_dlhandle handle;
78 handle = lt_dlopenext (fname);
4feb69af
MV
79 if (NULL == handle)
80 {
01449aa5
DH
81 SCM fn;
82 SCM msg;
83
cc95e00a 84 fn = scm_from_locale_string (fname);
a8255dca 85 msg = scm_from_locale_string (lt_dlerror ());
1afff620 86 scm_misc_error (subr, "file: ~S, message: ~S", scm_list_2 (fn, msg));
4feb69af
MV
87 }
88 return (void *) handle;
89}
90
91static void
92sysdep_dynl_unlink (void *handle, const char *subr)
93{
a8255dca 94 if (lt_dlclose ((lt_dlhandle) handle))
4feb69af 95 {
a8255dca 96 scm_misc_error (subr, (char *) lt_dlerror (), SCM_EOL);
4feb69af
MV
97 }
98}
99
100static void *
101sysdep_dynl_func (const char *symb, void *handle, const char *subr)
102{
103 void *fptr;
104
a8255dca 105 fptr = lt_dlsym ((lt_dlhandle) handle, symb);
4feb69af
MV
106 if (!fptr)
107 {
a8255dca 108 scm_misc_error (subr, (char *) lt_dlerror (), SCM_EOL);
4feb69af
MV
109 }
110 return fptr;
111}
112
113static void
114sysdep_dynl_init ()
115{
a8255dca 116 lt_dlinit ();
4feb69af
MV
117}
118
92c2555f 119scm_t_bits scm_tc16_dynamic_obj;
80bc7890 120
f5710d53
MV
121#define DYNL_FILENAME SCM_SMOB_OBJECT
122#define DYNL_HANDLE(x) ((void *) SCM_SMOB_DATA_2 (x))
2ff08405 123#define SET_DYNL_HANDLE(x, v) (SCM_SET_SMOB_DATA_2 ((x), (scm_t_bits) (v)))
7cf1a27e 124
7cf1a27e 125
80bc7890 126static SCM
e841c3e0 127dynl_obj_mark (SCM ptr)
80bc7890 128{
7cf1a27e 129 return DYNL_FILENAME (ptr);
c487ad44
MV
130}
131
e841c3e0 132
80bc7890 133static int
e841c3e0 134dynl_obj_print (SCM exp, SCM port, scm_print_state *pstate)
80bc7890 135{
7cf1a27e
MD
136 scm_puts ("#<dynamic-object ", port);
137 scm_iprin1 (DYNL_FILENAME (exp), port, pstate);
138 if (DYNL_HANDLE (exp) == NULL)
139 scm_puts (" (unlinked)", port);
140 scm_putc ('>', port);
141 return 1;
80bc7890
MV
142}
143
8e3ab003 144
af45e3b0 145SCM_DEFINE (scm_dynamic_link, "dynamic-link", 1, 0, 0,
1e6808ea 146 (SCM filename),
ee95d597
GH
147 "Find the shared object (shared library) denoted by\n"
148 "@var{filename} and link it into the running Guile\n"
149 "application. The returned\n"
150 "scheme object is a ``handle'' for the library which can\n"
151 "be passed to @code{dynamic-func}, @code{dynamic-call} etc.\n\n"
152 "Searching for object files is system dependent. Normally,\n"
153 "if @var{filename} does have an explicit directory it will\n"
154 "be searched for in locations\n"
155 "such as @file{/usr/lib} and @file{/usr/local/lib}.")
1bbd0b84 156#define FUNC_NAME s_scm_dynamic_link
80bc7890 157{
7cf1a27e 158 void *handle;
7f9994d9 159 char *file;
80bc7890 160
661ae7ab 161 scm_dynwind_begin (0);
7f9994d9 162 file = scm_to_locale_string (filename);
661ae7ab 163 scm_dynwind_free (file);
7f9994d9 164 handle = sysdep_dynl_link (file, FUNC_NAME);
661ae7ab 165 scm_dynwind_end ();
1e6808ea 166 SCM_RETURN_NEWSMOB2 (scm_tc16_dynamic_obj, SCM_UNPACK (filename), handle);
80bc7890 167}
1bbd0b84 168#undef FUNC_NAME
80bc7890 169
80bc7890 170
a1ec6916 171SCM_DEFINE (scm_dynamic_object_p, "dynamic-object?", 1, 0, 0,
1bbd0b84 172 (SCM obj),
ee95d597
GH
173 "Return @code{#t} if @var{obj} is a dynamic object handle,\n"
174 "or @code{#f} otherwise.")
1bbd0b84 175#define FUNC_NAME s_scm_dynamic_object_p
80bc7890 176{
7888309b 177 return scm_from_bool (SCM_TYP16_PREDICATE (scm_tc16_dynamic_obj, obj));
80bc7890 178}
1bbd0b84 179#undef FUNC_NAME
80bc7890 180
b82c6ce0 181
a1ec6916 182SCM_DEFINE (scm_dynamic_unlink, "dynamic-unlink", 1, 0, 0,
1bbd0b84 183 (SCM dobj),
ee95d597
GH
184 "Unlink a dynamic object from the application, if possible. The\n"
185 "object must have been linked by @code{dynamic-link}, with \n"
186 "@var{dobj} the corresponding handle. After this procedure\n"
187 "is called, the handle can no longer be used to access the\n"
188 "object.")
1bbd0b84 189#define FUNC_NAME s_scm_dynamic_unlink
80bc7890 190{
7cf1a27e 191 /*fixme* GC-problem */
b82c6ce0
DH
192 SCM_VALIDATE_SMOB (SCM_ARG1, dobj, dynamic_obj);
193 if (DYNL_HANDLE (dobj) == NULL) {
9e375910 194 SCM_MISC_ERROR ("Already unlinked: ~S", scm_list_1 (dobj));
b82c6ce0 195 } else {
b82c6ce0
DH
196 sysdep_dynl_unlink (DYNL_HANDLE (dobj), FUNC_NAME);
197 SET_DYNL_HANDLE (dobj, NULL);
b82c6ce0
DH
198 return SCM_UNSPECIFIED;
199 }
80bc7890 200}
1bbd0b84 201#undef FUNC_NAME
80bc7890 202
b82c6ce0 203
a1ec6916 204SCM_DEFINE (scm_dynamic_func, "dynamic-func", 2, 0, 0,
a6d9e5ab 205 (SCM name, SCM dobj),
ee95d597
GH
206 "Return a ``handle'' for the function @var{name} in the\n"
207 "shared object referred to by @var{dobj}. The handle\n"
208 "can be passed to @code{dynamic-call} to actually\n"
209 "call the function.\n\n"
210 "Regardless whether your C compiler prepends an underscore\n"
211 "@samp{_} to the global names in a program, you should\n"
212 "@strong{not} include this underscore in @var{name}\n"
213 "since it will be added automatically when necessary.")
1bbd0b84 214#define FUNC_NAME s_scm_dynamic_func
80bc7890 215{
a6d9e5ab
DH
216 /* The returned handle is formed by casting the address of the function to a
217 * long value and converting this to a scheme number
218 */
219
7cf1a27e 220 void (*func) ();
80bc7890 221
a6d9e5ab 222 SCM_VALIDATE_STRING (1, name);
7cf1a27e 223 /*fixme* GC-problem */
b82c6ce0
DH
224 SCM_VALIDATE_SMOB (SCM_ARG2, dobj, dynamic_obj);
225 if (DYNL_HANDLE (dobj) == NULL) {
226 SCM_MISC_ERROR ("Already unlinked: ~S", dobj);
227 } else {
a002f1a2
DH
228 char *chars;
229
661ae7ab 230 scm_dynwind_begin (0);
7f9994d9 231 chars = scm_to_locale_string (name);
661ae7ab 232 scm_dynwind_free (chars);
b9bd8526
MV
233 func = (void (*) ()) sysdep_dynl_func (chars, DYNL_HANDLE (dobj),
234 FUNC_NAME);
661ae7ab 235 scm_dynwind_end ();
b9bd8526 236 return scm_from_ulong ((unsigned long) func);
b82c6ce0 237 }
80bc7890 238}
1bbd0b84 239#undef FUNC_NAME
80bc7890 240
b82c6ce0 241
a1ec6916 242SCM_DEFINE (scm_dynamic_call, "dynamic-call", 2, 0, 0,
1bbd0b84 243 (SCM func, SCM dobj),
46732b54
GH
244 "Call a C function in a dynamic object. Two styles of\n"
245 "invocation are supported:\n\n"
246 "@itemize @bullet\n"
247 "@item @var{func} can be a function handle returned by\n"
248 "@code{dynamic-func}. In this case @var{dobj} is\n"
249 "ignored\n"
250 "@item @var{func} can be a string with the name of the\n"
251 "function to call, with @var{dobj} the handle of the\n"
252 "dynamic object in which to find the function.\n"
253 "This is equivalent to\n"
254 "@smallexample\n\n"
255 "(dynamic-call (dynamic-func @var{func} @var{dobj}) #f)\n"
256 "@end smallexample\n"
257 "@end itemize\n\n"
258 "In either case, the function is passed no arguments\n"
259 "and its return value is ignored.")
1bbd0b84 260#define FUNC_NAME s_scm_dynamic_call
80bc7890 261{
7cf1a27e
MD
262 void (*fptr) ();
263
7f9994d9 264 if (scm_is_string (func))
7cf1a27e 265 func = scm_dynamic_func (func, dobj);
7f9994d9 266 fptr = (void (*) ()) scm_to_ulong (func);
7cf1a27e 267 fptr ();
7cf1a27e 268 return SCM_UNSPECIFIED;
80bc7890 269}
1bbd0b84 270#undef FUNC_NAME
80bc7890 271
7f9994d9
MV
272static void
273free_string_pointers (void *data)
2ee08a28 274{
7f9994d9 275 scm_i_free_string_pointers ((char **)data);
2ee08a28
GH
276}
277
a1ec6916 278SCM_DEFINE (scm_dynamic_args_call, "dynamic-args-call", 3, 0, 0,
1bbd0b84 279 (SCM func, SCM dobj, SCM args),
1e6808ea
MG
280 "Call the C function indicated by @var{func} and @var{dobj},\n"
281 "just like @code{dynamic-call}, but pass it some arguments and\n"
282 "return its return value. The C function is expected to take\n"
283 "two arguments and return an @code{int}, just like @code{main}:\n"
b380b885
MD
284 "@smallexample\n"
285 "int c_func (int argc, char **argv);\n"
286 "@end smallexample\n\n"
1e6808ea
MG
287 "The parameter @var{args} must be a list of strings and is\n"
288 "converted into an array of @code{char *}. The array is passed\n"
289 "in @var{argv} and its size in @var{argc}. The return value is\n"
290 "converted to a Scheme number and returned from the call to\n"
291 "@code{dynamic-args-call}.")
1bbd0b84 292#define FUNC_NAME s_scm_dynamic_args_call
80bc7890 293{
7cf1a27e
MD
294 int (*fptr) (int argc, char **argv);
295 int result, argc;
296 char **argv;
297
661ae7ab 298 scm_dynwind_begin (0);
7f9994d9
MV
299
300 if (scm_is_string (func))
7cf1a27e
MD
301 func = scm_dynamic_func (func, dobj);
302
7f9994d9
MV
303 fptr = (int (*) (int, char **)) scm_to_ulong (func);
304
305 argv = scm_i_allocate_string_pointers (args);
661ae7ab
MV
306 scm_dynwind_unwind_handler (free_string_pointers, argv,
307 SCM_F_WIND_EXPLICITLY);
7f9994d9
MV
308 for (argc = 0; argv[argc]; argc++)
309 ;
7cf1a27e 310 result = (*fptr) (argc, argv);
7cf1a27e 311
661ae7ab 312 scm_dynwind_end ();
e11e83f3 313 return scm_from_int (result);
80bc7890 314}
1bbd0b84 315#undef FUNC_NAME
80bc7890 316
1edae076
MV
317void
318scm_init_dynamic_linking ()
319{
7cf1a27e 320 scm_tc16_dynamic_obj = scm_make_smob_type ("dynamic-object", 0);
e841c3e0
KN
321 scm_set_smob_mark (scm_tc16_dynamic_obj, dynl_obj_mark);
322 scm_set_smob_print (scm_tc16_dynamic_obj, dynl_obj_print);
7cf1a27e 323 sysdep_dynl_init ();
a0599745 324#include "libguile/dynl.x"
1edae076 325}
89e00824
ML
326
327/*
328 Local Variables:
329 c-file-style: "gnu"
330 End:
331*/