* dynl.c: docstring editing.
[bpt/guile.git] / libguile / dynl.c
CommitLineData
1edae076
MV
1/* dynl.c - dynamic linking
2 *
58ade102 3 * Copyright (C) 1990, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000, 2001 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 43
1bbd0b84
GB
44
45
1edae076
MV
46/* "dynl.c" dynamically link&load object files.
47 Author: Aubrey Jaffer
48 Modified for libguile by Marius Vollmer */
49
104d4533 50#if 0 /* Disabled until we know for sure that it isn't needed */
80bc7890
MV
51/* XXX - This is only here to drag in a definition of __eprintf. This
52 is needed for proper operation of dynamic linking. The real
53 solution would probably be a shared libgcc. */
54
55#undef NDEBUG
56#include <assert.h>
57
58static void
59maybe_drag_in_eprintf ()
60{
61 assert (!maybe_drag_in_eprintf);
62}
104d4533 63#endif
80bc7890 64
96599e6a 65#include <stdio.h>
13070bd3
DH
66#include <string.h>
67
a0599745
MD
68#include "libguile/_scm.h"
69#include "libguile/dynl.h"
70#include "libguile/smob.h"
71#include "libguile/keywords.h"
72#include "libguile/ports.h"
73#include "libguile/strings.h"
a0e0793f 74#include "libguile/deprecation.h"
c96d76b8 75#include "libguile/lang.h"
a0599745 76#include "libguile/validate.h"
408ea28a 77
4feb69af
MV
78#ifdef DYNAMIC_LINKING
79
07286af9 80#include "libltdl/ltdl.h"
4feb69af 81
732b9327
GH
82/* From the libtool manual: "Note that libltdl is not threadsafe,
83 i.e. a multithreaded application has to use a mutex for libltdl.".
84
85 Guile does not currently support pre-emptive threads, so there is
86 no mutex. Previously SCM_DEFER_INTS and SCM_ALLOW_INTS were used:
87 they are mentioned here in case somebody is grepping for thread
88 problems ;)
89*/
90
4feb69af 91static void *
af45e3b0 92sysdep_dynl_link (const char *fname, const char *subr)
4feb69af 93{
7cf1a27e
MD
94 lt_dlhandle handle;
95 handle = lt_dlopenext (fname);
4feb69af
MV
96 if (NULL == handle)
97 {
01449aa5
DH
98 SCM fn;
99 SCM msg;
100
01449aa5
DH
101 fn = scm_makfrom0str (fname);
102 msg = scm_makfrom0str (lt_dlerror ());
1afff620 103 scm_misc_error (subr, "file: ~S, message: ~S", scm_list_2 (fn, msg));
4feb69af
MV
104 }
105 return (void *) handle;
106}
107
108static void
109sysdep_dynl_unlink (void *handle, const char *subr)
110{
111 if (lt_dlclose ((lt_dlhandle) handle))
112 {
7cf1a27e 113 scm_misc_error (subr, (char *) lt_dlerror (), SCM_EOL);
4feb69af
MV
114 }
115}
116
117static void *
118sysdep_dynl_func (const char *symb, void *handle, const char *subr)
119{
120 void *fptr;
121
122 fptr = lt_dlsym ((lt_dlhandle) handle, symb);
123 if (!fptr)
124 {
7cf1a27e 125 scm_misc_error (subr, (char *) lt_dlerror (), SCM_EOL);
4feb69af
MV
126 }
127 return fptr;
128}
129
130static void
131sysdep_dynl_init ()
132{
133 lt_dlinit ();
134}
135
1edae076 136#else
96599e6a
MV
137
138/* no dynamic linking available, throw errors. */
139
140static void
1bbd0b84 141sysdep_dynl_init (void)
96599e6a
MV
142{
143}
144
145static void
a80a90e9 146no_dynl_error (const char *subr)
96599e6a 147{
419e9e11 148 scm_misc_error (subr, "dynamic linking not available", SCM_EOL);
96599e6a
MV
149}
150
151static void *
af45e3b0 152sysdep_dynl_link (const char *filename, const char *subr)
96599e6a 153{
7cf1a27e
MD
154 no_dynl_error (subr);
155 return NULL;
96599e6a
MV
156}
157
158static void
a80a90e9
JB
159sysdep_dynl_unlink (void *handle,
160 const char *subr)
96599e6a 161{
7cf1a27e 162 no_dynl_error (subr);
96599e6a
MV
163}
164
165static void *
a80a90e9
JB
166sysdep_dynl_func (const char *symbol,
167 void *handle,
168 const char *subr)
96599e6a 169{
7cf1a27e
MD
170 no_dynl_error (subr);
171 return NULL;
96599e6a
MV
172}
173
80bc7890
MV
174#endif
175
92c2555f 176scm_t_bits scm_tc16_dynamic_obj;
80bc7890 177
b82c6ce0
DH
178#define DYNL_FILENAME(x) (SCM_CELL_OBJECT_1 (x))
179#define DYNL_HANDLE(x) ((void *) SCM_CELL_WORD_2 (x))
180#define SET_DYNL_HANDLE(x, v) (SCM_SET_CELL_WORD_2 ((x), (v)))
7cf1a27e 181
7cf1a27e 182
80bc7890 183static SCM
e841c3e0 184dynl_obj_mark (SCM ptr)
80bc7890 185{
7cf1a27e 186 return DYNL_FILENAME (ptr);
c487ad44
MV
187}
188
e841c3e0 189
80bc7890 190static int
e841c3e0 191dynl_obj_print (SCM exp, SCM port, scm_print_state *pstate)
80bc7890 192{
7cf1a27e
MD
193 scm_puts ("#<dynamic-object ", port);
194 scm_iprin1 (DYNL_FILENAME (exp), port, pstate);
195 if (DYNL_HANDLE (exp) == NULL)
196 scm_puts (" (unlinked)", port);
197 scm_putc ('>', port);
198 return 1;
80bc7890
MV
199}
200
8e3ab003 201
af45e3b0 202SCM_DEFINE (scm_dynamic_link, "dynamic-link", 1, 0, 0,
1e6808ea 203 (SCM filename),
ee95d597
GH
204 "Find the shared object (shared library) denoted by\n"
205 "@var{filename} and link it into the running Guile\n"
206 "application. The returned\n"
207 "scheme object is a ``handle'' for the library which can\n"
208 "be passed to @code{dynamic-func}, @code{dynamic-call} etc.\n\n"
209 "Searching for object files is system dependent. Normally,\n"
210 "if @var{filename} does have an explicit directory it will\n"
211 "be searched for in locations\n"
212 "such as @file{/usr/lib} and @file{/usr/local/lib}.")
1bbd0b84 213#define FUNC_NAME s_scm_dynamic_link
80bc7890 214{
7cf1a27e 215 void *handle;
80bc7890 216
1e6808ea 217 SCM_VALIDATE_STRING (1, filename);
1e6808ea
MG
218 handle = sysdep_dynl_link (SCM_STRING_CHARS (filename), FUNC_NAME);
219 SCM_RETURN_NEWSMOB2 (scm_tc16_dynamic_obj, SCM_UNPACK (filename), handle);
80bc7890 220}
1bbd0b84 221#undef FUNC_NAME
80bc7890 222
80bc7890 223
a1ec6916 224SCM_DEFINE (scm_dynamic_object_p, "dynamic-object?", 1, 0, 0,
1bbd0b84 225 (SCM obj),
ee95d597
GH
226 "Return @code{#t} if @var{obj} is a dynamic object handle,\n"
227 "or @code{#f} otherwise.")
1bbd0b84 228#define FUNC_NAME s_scm_dynamic_object_p
80bc7890 229{
e841c3e0 230 return SCM_BOOL (SCM_TYP16_PREDICATE (scm_tc16_dynamic_obj, obj));
80bc7890 231}
1bbd0b84 232#undef FUNC_NAME
80bc7890 233
b82c6ce0 234
a1ec6916 235SCM_DEFINE (scm_dynamic_unlink, "dynamic-unlink", 1, 0, 0,
1bbd0b84 236 (SCM dobj),
ee95d597
GH
237 "Unlink a dynamic object from the application, if possible. The\n"
238 "object must have been linked by @code{dynamic-link}, with \n"
239 "@var{dobj} the corresponding handle. After this procedure\n"
240 "is called, the handle can no longer be used to access the\n"
241 "object.")
1bbd0b84 242#define FUNC_NAME s_scm_dynamic_unlink
80bc7890 243{
7cf1a27e 244 /*fixme* GC-problem */
b82c6ce0
DH
245 SCM_VALIDATE_SMOB (SCM_ARG1, dobj, dynamic_obj);
246 if (DYNL_HANDLE (dobj) == NULL) {
247 SCM_MISC_ERROR ("Already unlinked: ~S", dobj);
248 } else {
b82c6ce0
DH
249 sysdep_dynl_unlink (DYNL_HANDLE (dobj), FUNC_NAME);
250 SET_DYNL_HANDLE (dobj, NULL);
b82c6ce0
DH
251 return SCM_UNSPECIFIED;
252 }
80bc7890 253}
1bbd0b84 254#undef FUNC_NAME
80bc7890 255
b82c6ce0 256
a1ec6916 257SCM_DEFINE (scm_dynamic_func, "dynamic-func", 2, 0, 0,
a6d9e5ab 258 (SCM name, SCM dobj),
ee95d597
GH
259 "Return a ``handle'' for the function @var{name} in the\n"
260 "shared object referred to by @var{dobj}. The handle\n"
261 "can be passed to @code{dynamic-call} to actually\n"
262 "call the function.\n\n"
263 "Regardless whether your C compiler prepends an underscore\n"
264 "@samp{_} to the global names in a program, you should\n"
265 "@strong{not} include this underscore in @var{name}\n"
266 "since it will be added automatically when necessary.")
1bbd0b84 267#define FUNC_NAME s_scm_dynamic_func
80bc7890 268{
a6d9e5ab
DH
269 /* The returned handle is formed by casting the address of the function to a
270 * long value and converting this to a scheme number
271 */
272
7cf1a27e 273 void (*func) ();
80bc7890 274
a6d9e5ab 275 SCM_VALIDATE_STRING (1, name);
7cf1a27e 276 /*fixme* GC-problem */
b82c6ce0
DH
277 SCM_VALIDATE_SMOB (SCM_ARG2, dobj, dynamic_obj);
278 if (DYNL_HANDLE (dobj) == NULL) {
279 SCM_MISC_ERROR ("Already unlinked: ~S", dobj);
280 } else {
a002f1a2
DH
281 char *chars;
282
a6d9e5ab 283 chars = SCM_STRING_CHARS (name);
a002f1a2 284 func = (void (*) ()) sysdep_dynl_func (chars, DYNL_HANDLE (dobj), FUNC_NAME);
b82c6ce0
DH
285 return scm_ulong2num ((unsigned long) func);
286 }
80bc7890 287}
1bbd0b84 288#undef FUNC_NAME
80bc7890 289
b82c6ce0 290
a1ec6916 291SCM_DEFINE (scm_dynamic_call, "dynamic-call", 2, 0, 0,
1bbd0b84 292 (SCM func, SCM dobj),
46732b54
GH
293 "Call a C function in a dynamic object. Two styles of\n"
294 "invocation are supported:\n\n"
295 "@itemize @bullet\n"
296 "@item @var{func} can be a function handle returned by\n"
297 "@code{dynamic-func}. In this case @var{dobj} is\n"
298 "ignored\n"
299 "@item @var{func} can be a string with the name of the\n"
300 "function to call, with @var{dobj} the handle of the\n"
301 "dynamic object in which to find the function.\n"
302 "This is equivalent to\n"
303 "@smallexample\n\n"
304 "(dynamic-call (dynamic-func @var{func} @var{dobj}) #f)\n"
305 "@end smallexample\n"
306 "@end itemize\n\n"
307 "In either case, the function is passed no arguments\n"
308 "and its return value is ignored.")
1bbd0b84 309#define FUNC_NAME s_scm_dynamic_call
80bc7890 310{
7cf1a27e
MD
311 void (*fptr) ();
312
a6d9e5ab 313 if (SCM_STRINGP (func))
7cf1a27e
MD
314 func = scm_dynamic_func (func, dobj);
315 fptr = (void (*) ()) SCM_NUM2ULONG (1, func);
7cf1a27e 316 fptr ();
7cf1a27e 317 return SCM_UNSPECIFIED;
80bc7890 318}
1bbd0b84 319#undef FUNC_NAME
80bc7890 320
2ee08a28
GH
321/* return a newly allocated array of char pointers to each of the strings
322 in args, with a terminating NULL pointer. */
323/* Note: a similar function is defined in posix.c, but we don't necessarily
324 want to export it. */
325static char **allocate_string_pointers (SCM args, int *num_args_return)
326{
327 char **result;
328 int n_args = scm_ilength (args);
329 int i;
330
331 SCM_ASSERT (n_args >= 0, args, SCM_ARGn, "allocate_string_pointers");
332 result = (char **) scm_malloc ((n_args + 1) * sizeof (char *));
333 result[n_args] = NULL;
334 for (i = 0; i < n_args; i++)
335 {
336 SCM car = SCM_CAR (args);
337
338 if (!SCM_STRINGP (car))
339 {
340 free (result);
341 scm_wrong_type_arg ("allocate_string_pointers", SCM_ARGn, car);
342 }
343 result[i] = SCM_STRING_CHARS (SCM_CAR (args));
344 args = SCM_CDR (args);
345 }
346 *num_args_return = n_args;
347 return result;
348}
349
a1ec6916 350SCM_DEFINE (scm_dynamic_args_call, "dynamic-args-call", 3, 0, 0,
1bbd0b84 351 (SCM func, SCM dobj, SCM args),
1e6808ea
MG
352 "Call the C function indicated by @var{func} and @var{dobj},\n"
353 "just like @code{dynamic-call}, but pass it some arguments and\n"
354 "return its return value. The C function is expected to take\n"
355 "two arguments and return an @code{int}, just like @code{main}:\n"
b380b885
MD
356 "@smallexample\n"
357 "int c_func (int argc, char **argv);\n"
358 "@end smallexample\n\n"
1e6808ea
MG
359 "The parameter @var{args} must be a list of strings and is\n"
360 "converted into an array of @code{char *}. The array is passed\n"
361 "in @var{argv} and its size in @var{argc}. The return value is\n"
362 "converted to a Scheme number and returned from the call to\n"
363 "@code{dynamic-args-call}.")
1bbd0b84 364#define FUNC_NAME s_scm_dynamic_args_call
80bc7890 365{
7cf1a27e
MD
366 int (*fptr) (int argc, char **argv);
367 int result, argc;
368 char **argv;
369
a6d9e5ab 370 if (SCM_STRINGP (func))
7cf1a27e
MD
371 func = scm_dynamic_func (func, dobj);
372
373 fptr = (int (*) (int, char **)) SCM_NUM2ULONG (1, func);
2ee08a28
GH
374 argv = allocate_string_pointers (args, &argc);
375 /* if the procedure mutates its arguments, the original strings will be
376 changed -- in Guile 1.6 and earlier, this wasn't the case since a
377 new copy of each string was allocated. */
7cf1a27e 378 result = (*fptr) (argc, argv);
2ee08a28 379 free (argv);
7cf1a27e
MD
380
381 return SCM_MAKINUM (0L + result);
80bc7890 382}
1bbd0b84 383#undef FUNC_NAME
80bc7890 384
1edae076
MV
385void
386scm_init_dynamic_linking ()
387{
7cf1a27e 388 scm_tc16_dynamic_obj = scm_make_smob_type ("dynamic-object", 0);
e841c3e0
KN
389 scm_set_smob_mark (scm_tc16_dynamic_obj, dynl_obj_mark);
390 scm_set_smob_print (scm_tc16_dynamic_obj, dynl_obj_print);
7cf1a27e 391 sysdep_dynl_init ();
a0599745 392#include "libguile/dynl.x"
1edae076 393}
89e00824
ML
394
395/*
396 Local Variables:
397 c-file-style: "gnu"
398 End:
399*/