*.[ch]: Replace GUILE_PROC w/ SCM_DEFINE.
[bpt/guile.git] / libguile / dynl.c
CommitLineData
1edae076
MV
1/* dynl.c - dynamic linking
2 *
a80a90e9 3 * Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999 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/* Software engineering face-lift by Greg J. Badros, 11-Dec-1999,
45 gjb@cs.washington.edu, http://www.cs.washington.edu/homes/gjb */
46
47
1edae076
MV
48/* "dynl.c" dynamically link&load object files.
49 Author: Aubrey Jaffer
50 Modified for libguile by Marius Vollmer */
51
104d4533 52#if 0 /* Disabled until we know for sure that it isn't needed */
80bc7890
MV
53/* XXX - This is only here to drag in a definition of __eprintf. This
54 is needed for proper operation of dynamic linking. The real
55 solution would probably be a shared libgcc. */
56
57#undef NDEBUG
58#include <assert.h>
59
60static void
61maybe_drag_in_eprintf ()
62{
63 assert (!maybe_drag_in_eprintf);
64}
104d4533 65#endif
80bc7890 66
96599e6a 67#include <stdio.h>
1edae076 68#include "_scm.h"
80bc7890
MV
69#include "dynl.h"
70#include "genio.h"
71#include "smob.h"
8e3ab003 72#include "keywords.h"
80bc7890 73
408ea28a
GB
74#include "scm_validate.h"
75
1edae076
MV
76/* Converting a list of SCM strings into a argv-style array. You must
77 have ints disabled for the whole lifetime of the created argv (from
78 before MAKE_ARGV_FROM_STRINGLIST until after
79 MUST_FREE_ARGV). Atleast this is was the documentation for
80 MAKARGVFROMSTRS says, it isn't really used that way.
81
82 This code probably belongs into strings.c */
83
1edae076 84static char **
1bbd0b84 85scm_make_argv_from_stringlist (SCM args,int *argcp,const char *subr,int argn)
1edae076
MV
86{
87 char **argv;
88 int argc, i;
89
90 argc = scm_ilength(args);
91 argv = (char **) scm_must_malloc ((1L+argc)*sizeof(char *), subr);
92 for(i = 0; SCM_NNULLP (args); args = SCM_CDR (args), i++) {
93 size_t len;
94 char *dst, *src;
95 SCM str = SCM_CAR (args);
96
0c95b57d 97 SCM_ASSERT (SCM_ROSTRINGP (str), str, argn, subr);
1edae076
MV
98 len = 1 + SCM_ROLENGTH (str);
99 dst = (char *) scm_must_malloc ((long)len, subr);
100 src = SCM_ROCHARS (str);
101 while (len--)
102 dst[len] = src[len];
103 argv[i] = dst;
104 }
105
106 if (argcp)
107 *argcp = argc;
108 argv[argc] = 0;
109 return argv;
110}
111
1edae076 112static void
1bbd0b84 113scm_must_free_argv(char **argv)
1edae076
MV
114{
115 char **av = argv;
c3e09ef9
MD
116 while (*av)
117 free(*(av++));
1edae076
MV
118 free(argv);
119}
120
121/* Coerce an arbitrary readonly-string into a zero-terminated string.
122 */
123
1edae076 124static SCM
1bbd0b84 125scm_coerce_rostring (SCM rostr,const char *subr,int argn)
1edae076 126{
0c95b57d 127 SCM_ASSERT (SCM_ROSTRINGP (rostr), rostr, argn, subr);
1edae076
MV
128 if (SCM_SUBSTRP (rostr))
129 rostr = scm_makfromstr (SCM_ROCHARS (rostr), SCM_ROLENGTH (rostr), 0);
130 return rostr;
131}
132
80bc7890
MV
133/* Module registry
134 */
135
136/* We can't use SCM objects here. One should be able to call
137 SCM_REGISTER_MODULE from a C++ constructor for a static
138 object. This happens before main and thus before libguile is
139 initialized. */
140
141struct moddata {
142 struct moddata *link;
143 char *module_name;
144 void *init_func;
145};
146
147static struct moddata *registered_mods = NULL;
148
149void
6e8d25a6 150scm_register_module_xxx (char *module_name, void *init_func)
80bc7890
MV
151{
152 struct moddata *md;
153
154 /* XXX - should we (and can we) DEFER_INTS here? */
155
156 for (md = registered_mods; md; md = md->link)
157 if (!strcmp (md->module_name, module_name)) {
158 md->init_func = init_func;
159 return;
160 }
161
162 md = (struct moddata *)malloc (sizeof (struct moddata));
96599e6a
MV
163 if (md == NULL) {
164 fprintf (stderr,
165 "guile: can't register module (%s): not enough memory",
166 module_name);
80bc7890 167 return;
96599e6a 168 }
80bc7890
MV
169
170 md->module_name = module_name;
171 md->init_func = init_func;
172 md->link = registered_mods;
173 registered_mods = md;
174}
175
a1ec6916 176SCM_DEFINE (scm_registered_modules, "c-registered-modules", 0, 0, 0,
1bbd0b84 177 (),
4079f87e
GB
178"Return a list of the object code modules that have been imported into
179the current Guile process. Each element of the list is a pair whose
180car is the name of the module (as it might be used by
181@code{use-modules}, for instance), and whose cdr is the function handle
182for that module's initializer function.")
1bbd0b84 183#define FUNC_NAME s_scm_registered_modules
80bc7890
MV
184{
185 SCM res;
186 struct moddata *md;
187
188 res = SCM_EOL;
189 for (md = registered_mods; md; md = md->link)
190 res = scm_cons (scm_cons (scm_makfrom0str (md->module_name),
191 scm_ulong2num ((unsigned long) md->init_func)),
192 res);
193 return res;
194}
1bbd0b84 195#undef FUNC_NAME
80bc7890 196
a1ec6916 197SCM_DEFINE (scm_clear_registered_modules, "c-clear-registered-modules", 0, 0, 0,
1bbd0b84 198 (),
4079f87e
GB
199"Destroy the list of modules registered with the current Guile process.
200The return value is unspecified. @strong{Warning:} this function does
201not actually unlink or deallocate these modules, but only destroys the
202records of which modules have been loaded. It should therefore be used
203only by module bookkeeping operations.")
1bbd0b84 204#define FUNC_NAME s_scm_clear_registered_modules
80bc7890
MV
205{
206 struct moddata *md1, *md2;
207
208 SCM_DEFER_INTS;
209
210 for (md1 = registered_mods; md1; md1 = md2) {
211 md2 = md1->link;
212 free (md1);
213 }
214 registered_mods = NULL;
215
216 SCM_ALLOW_INTS;
217 return SCM_UNSPECIFIED;
218}
1bbd0b84 219#undef FUNC_NAME
80bc7890 220
1edae076 221/* Dispatch to the system dependent files
80bc7890 222 *
419e9e11
MV
223 * They define some static functions. These functions are called with
224 * deferred interrupts. When they want to throw errors, they are
225 * expected to insert a SCM_ALLOW_INTS before doing the throw. It
226 * might work to throw an error while interrupts are deferred (because
227 * they will be unconditionally allowed the next time a SCM_ALLOW_INTS
228 * is executed, SCM_DEFER_INTS and SCM_ALLOW_INTS do not nest).
1edae076
MV
229 */
230
8e3ab003
MV
231#define DYNL_GLOBAL 0x0001
232
26c41b99 233#ifdef HAVE_DLOPEN
1edae076
MV
234#include "dynl-dl.c"
235#else
236#ifdef HAVE_SHL_LOAD
237#include "dynl-shl.c"
238#else
26c41b99 239#ifdef HAVE_LIBDLD
1edae076 240#include "dynl-dld.c"
96599e6a
MV
241#else
242
243/* no dynamic linking available, throw errors. */
244
245static void
1bbd0b84 246sysdep_dynl_init (void)
96599e6a
MV
247{
248}
249
250static void
a80a90e9 251no_dynl_error (const char *subr)
96599e6a 252{
419e9e11
MV
253 SCM_ALLOW_INTS;
254 scm_misc_error (subr, "dynamic linking not available", SCM_EOL);
96599e6a
MV
255}
256
257static void *
8e3ab003
MV
258sysdep_dynl_link (const char *filename,
259 int flags,
a80a90e9 260 const char *subr)
96599e6a
MV
261{
262 no_dynl_error (subr);
263 return NULL;
264}
265
266static void
a80a90e9
JB
267sysdep_dynl_unlink (void *handle,
268 const char *subr)
96599e6a
MV
269{
270 no_dynl_error (subr);
271}
272
273static void *
a80a90e9
JB
274sysdep_dynl_func (const char *symbol,
275 void *handle,
276 const char *subr)
96599e6a
MV
277{
278 no_dynl_error (subr);
279 return NULL;
280}
281
80bc7890
MV
282#endif
283#endif
284#endif
285
286int scm_tc16_dynamic_obj;
287
288struct dynl_obj {
289 SCM filename;
290 void *handle;
291};
292
80bc7890 293static SCM
1bbd0b84 294mark_dynl_obj (SCM ptr)
80bc7890
MV
295{
296 struct dynl_obj *d = (struct dynl_obj *)SCM_CDR (ptr);
80bc7890
MV
297 return d->filename;
298}
299
c487ad44 300static scm_sizet
1bbd0b84 301free_dynl_obj (SCM ptr)
c487ad44
MV
302{
303 scm_must_free ((char *)SCM_CDR (ptr));
304 return sizeof (struct dynl_obj);
305}
306
80bc7890 307static int
1bbd0b84 308print_dynl_obj (SCM exp,SCM port,scm_print_state *pstate)
80bc7890
MV
309{
310 struct dynl_obj *d = (struct dynl_obj *)SCM_CDR (exp);
b7f3516f 311 scm_puts ("#<dynamic-object ", port);
80bc7890 312 scm_iprin1 (d->filename, port, pstate);
1fe1799f 313 if (d->handle == NULL)
b7f3516f
TT
314 scm_puts (" (unlinked)", port);
315 scm_putc ('>', port);
80bc7890
MV
316 return 1;
317}
318
8e3ab003
MV
319static SCM kw_global;
320SCM_SYMBOL (sym_global, "-global");
321
a1ec6916 322SCM_DEFINE (scm_dynamic_link, "dynamic-link", 1, 0, 1,
1bbd0b84 323 (SCM fname, SCM rest),
4079f87e
GB
324"Open the dynamic library @var{library-file}. A library handle
325representing the opened library is returned; this handle should be used
326as the @var{lib} argument to the following functions.")
1bbd0b84 327#define FUNC_NAME s_scm_dynamic_link
80bc7890
MV
328{
329 SCM z;
c487ad44 330 void *handle;
80bc7890 331 struct dynl_obj *d;
8e3ab003 332 int flags = DYNL_GLOBAL;
80bc7890 333
1bbd0b84 334 fname = scm_coerce_rostring (fname, FUNC_NAME, SCM_ARG1);
c487ad44 335
8e3ab003 336 /* collect flags */
0c95b57d 337 while (SCM_CONSP (rest))
8e3ab003
MV
338 {
339 SCM kw, val;
340
341 kw = SCM_CAR (rest);
342 rest = SCM_CDR (rest);
343
0c95b57d 344 if (!SCM_CONSP (rest))
1bbd0b84 345 scm_misc_error (FUNC_NAME, "keyword without value", SCM_EOL);
8e3ab003
MV
346
347 val = SCM_CAR (rest);
348 rest = SCM_CDR (rest);
349
350 if (kw == kw_global)
351 {
352 if (SCM_FALSEP (val))
353 flags &= ~DYNL_GLOBAL;
354 }
355 else
1bbd0b84 356 scm_misc_error (FUNC_NAME, "unknown keyword argument: %s",
8e3ab003
MV
357 scm_cons (kw, SCM_EOL));
358 }
359
c487ad44 360 SCM_DEFER_INTS;
1bbd0b84 361 handle = sysdep_dynl_link (SCM_CHARS (fname), flags, FUNC_NAME);
c487ad44 362
80bc7890 363 d = (struct dynl_obj *)scm_must_malloc (sizeof (struct dynl_obj),
1bbd0b84 364 FUNC_NAME);
80bc7890 365 d->filename = fname;
c487ad44 366 d->handle = handle;
80bc7890 367
80bc7890
MV
368 SCM_NEWCELL (z);
369 SCM_SETCHARS (z, d);
370 SCM_SETCAR (z, scm_tc16_dynamic_obj);
371 SCM_ALLOW_INTS;
372
373 return z;
374}
1bbd0b84 375#undef FUNC_NAME
80bc7890 376
80bc7890 377static struct dynl_obj *
1bbd0b84 378get_dynl_obj (SCM dobj,const char *subr,int argn)
80bc7890
MV
379{
380 struct dynl_obj *d;
381 SCM_ASSERT (SCM_NIMP (dobj) && SCM_CAR (dobj) == scm_tc16_dynamic_obj,
382 dobj, argn, subr);
383 d = (struct dynl_obj *)SCM_CDR (dobj);
384 SCM_ASSERT (d->handle != NULL, dobj, argn, subr);
385 return d;
386}
387
a1ec6916 388SCM_DEFINE (scm_dynamic_object_p, "dynamic-object?", 1, 0, 0,
1bbd0b84 389 (SCM obj),
4079f87e
GB
390"Return @code{#t} if @var{obj} is a dynamic library handle, or @code{#f}
391otherwise.")
1bbd0b84 392#define FUNC_NAME s_scm_dynamic_object_p
80bc7890 393{
156dcb09 394 return SCM_BOOL(SCM_NIMP (obj) && SCM_CAR (obj) == scm_tc16_dynamic_obj);
80bc7890 395}
1bbd0b84 396#undef FUNC_NAME
80bc7890 397
a1ec6916 398SCM_DEFINE (scm_dynamic_unlink, "dynamic-unlink", 1, 0, 0,
1bbd0b84 399 (SCM dobj),
4079f87e
GB
400"Unlink the library represented by @var{library-handle}, and remove any
401imported symbols from the address space.
402GJB:FIXME:DOC: 2nd version below:
403Unlink the indicated object file from the application. The argument
404@var{dynobj} should be one of the values returned by
405@code{dynamic-link}. When @code{dynamic-unlink} has been called on
406@var{dynobj}, it is no longer usable as an argument to the functions
407below and you will get type mismatch errors when you try to.
408")
1bbd0b84 409#define FUNC_NAME s_scm_dynamic_unlink
80bc7890 410{
1bbd0b84 411 struct dynl_obj *d = get_dynl_obj (dobj, FUNC_NAME, SCM_ARG1);
419e9e11 412 SCM_DEFER_INTS;
1bbd0b84 413 sysdep_dynl_unlink (d->handle, FUNC_NAME);
80bc7890 414 d->handle = NULL;
419e9e11
MV
415 SCM_ALLOW_INTS;
416 return SCM_UNSPECIFIED;
80bc7890 417}
1bbd0b84 418#undef FUNC_NAME
80bc7890 419
a1ec6916 420SCM_DEFINE (scm_dynamic_func, "dynamic-func", 2, 0, 0,
1bbd0b84 421 (SCM symb, SCM dobj),
4079f87e
GB
422"Import the symbol @var{func} from @var{lib} (a dynamic library handle).
423A @dfn{function handle} representing the imported function is returned.
424GJB:FIXME:DOC: 2nd version below
425Search the C function indicated by @var{function} (a string or symbol)
426in @var{dynobj} and return some Scheme object that can later be used
427with @code{dynamic-call} to actually call this function. Right now,
428these Scheme objects are formed by casting the address of the function
429to @code{long} and converting this number to its Scheme representation.
430
431Regardless whether your C compiler prepends an underscore @samp{_} to
432the global names in a program, you should @strong{not} include this
433underscore in @var{function}. Guile knows whether the underscore is
434needed or not and will add it when necessary.
435
436")
1bbd0b84 437#define FUNC_NAME s_scm_dynamic_func
80bc7890
MV
438{
439 struct dynl_obj *d;
440 void (*func) ();
441
1bbd0b84
GB
442 symb = scm_coerce_rostring (symb, FUNC_NAME, SCM_ARG1);
443 d = get_dynl_obj (dobj, FUNC_NAME, SCM_ARG2);
80bc7890 444
419e9e11 445 SCM_DEFER_INTS;
cdbadcac 446 func = (void (*) ()) sysdep_dynl_func (SCM_CHARS (symb), d->handle,
1bbd0b84 447 FUNC_NAME);
419e9e11
MV
448 SCM_ALLOW_INTS;
449
80bc7890
MV
450 return scm_ulong2num ((unsigned long)func);
451}
1bbd0b84 452#undef FUNC_NAME
80bc7890 453
a1ec6916 454SCM_DEFINE (scm_dynamic_call, "dynamic-call", 2, 0, 0,
1bbd0b84 455 (SCM func, SCM dobj),
4079f87e
GB
456"Call @var{lib-thunk}, a procedure of no arguments. If @var{lib-thunk}
457is a string, it is assumed to be a symbol found in the dynamic library
458@var{lib} and is fetched with @code{dynamic-func}. Otherwise, it should
459be a function handle returned by a previous call to @code{dynamic-func}.
460The return value is unspecified.
461GJB:FIXME:DOC 2nd version below
462Call the C function indicated by @var{function} and @var{dynobj}. The
463function is passed no arguments and its return value is ignored. When
464@var{function} is something returned by @code{dynamic-func}, call that
465function and ignore @var{dynobj}. When @var{function} is a string (or
466symbol, etc.), look it up in @var{dynobj}; this is equivalent to
467
468@smallexample
469(dynamic-call (dynamic-func @var{function} @var{dynobj} #f))
470@end smallexample
471
472Interrupts are deferred while the C function is executing (with
473@code{SCM_DEFER_INTS}/@code{SCM_ALLOW_INTS}).
474")
1bbd0b84 475#define FUNC_NAME s_scm_dynamic_call
80bc7890
MV
476{
477 void (*fptr)();
478
0c95b57d 479 if (SCM_ROSTRINGP (func))
80bc7890 480 func = scm_dynamic_func (func, dobj);
4638e087 481 fptr = (void (*)()) SCM_NUM2ULONG (1, func);
419e9e11 482 SCM_DEFER_INTS;
80bc7890 483 fptr ();
419e9e11
MV
484 SCM_ALLOW_INTS;
485 return SCM_UNSPECIFIED;
80bc7890 486}
1bbd0b84 487#undef FUNC_NAME
80bc7890 488
a1ec6916 489SCM_DEFINE (scm_dynamic_args_call, "dynamic-args-call", 3, 0, 0,
1bbd0b84 490 (SCM func, SCM dobj, SCM args),
4079f87e
GB
491"Call @var{proc}, a dynamically loaded function, passing it the argument
492list @var{args} (a list of strings). As with @code{dynamic-call},
493@var{proc} should be either a function handle or a string, in which case
494it is first fetched from @var{lib} with @code{dynamic-func}.
495
496@var{proc} is assumed to return an integer, which is used as the return
497value from @code{dynamic-args-call}.
498
499GJB:FIXME:DOC 2nd version below
500Call the C function indicated by @var{function} and @var{dynobj}, just
501like @code{dynamic-call}, but pass it some arguments and return its
502return value. The C function is expected to take two arguments and
503return an @code{int}, just like @code{main}:
504
505@smallexample
506int c_func (int argc, char **argv);
507@end smallexample
508
509The parameter @var{args} must be a list of strings and is converted into
510an array of @code{char *}. The array is passed in @var{argv} and its
511size in @var{argc}. The return value is converted to a Scheme number
512and returned from the call to @code{dynamic-args-call}.
513
514
515")
1bbd0b84 516#define FUNC_NAME s_scm_dynamic_args_call
80bc7890
MV
517{
518 int (*fptr) (int argc, char **argv);
519 int result, argc;
520 char **argv;
521
0c95b57d 522 if (SCM_ROSTRINGP (func))
80bc7890
MV
523 func = scm_dynamic_func (func, dobj);
524
4638e087 525 fptr = (int (*)(int, char **)) SCM_NUM2ULONG (1,func);
419e9e11 526 SCM_DEFER_INTS;
1bbd0b84 527 argv = scm_make_argv_from_stringlist (args, &argc, FUNC_NAME,
80bc7890 528 SCM_ARG3);
80bc7890 529 result = (*fptr) (argc, argv);
80bc7890 530 scm_must_free_argv (argv);
419e9e11
MV
531 SCM_ALLOW_INTS;
532
80bc7890
MV
533 return SCM_MAKINUM(0L+result);
534}
1bbd0b84 535#undef FUNC_NAME
80bc7890 536
1edae076
MV
537void
538scm_init_dynamic_linking ()
539{
23a62151
MD
540 scm_tc16_dynamic_obj = scm_make_smob_type_mfpe ("dynamic-object", sizeof (struct dynl_obj),
541 mark_dynl_obj, free_dynl_obj,
542 print_dynl_obj, NULL);
80bc7890
MV
543 sysdep_dynl_init ();
544#include "dynl.x"
8e3ab003 545 kw_global = scm_make_keyword_from_dash_symbol (sym_global);
1edae076 546}