perl 5.002beta2 patch
[p5sagit/p5-mst-13.2.git] / ext / DynaLoader / DynaLoader.pm
CommitLineData
a0d0e21e 1package DynaLoader;
2
8e07c86e 3# And Gandalf said: 'Many folk like to know beforehand what is to
4# be set on the table; but those who have laboured to prepare the
5# feast like to keep their secret; for wonder makes the words of
6# praise louder.'
7
8# (Quote from Tolkien sugested by Anno Siegel.)
9#
10# See pod text at end of file for documentation.
11# See also ext/DynaLoader/README in source tree for other information.
12#
13# Tim.Bunce@ig.co.uk, August 1994
14
15require Carp;
16require Config;
17require AutoLoader;
18
19@ISA=qw(AutoLoader);
20
21
22sub import { } # override import inherited from AutoLoader
23
24# enable debug/trace messages from DynaLoader perl code
25$dl_debug = $ENV{PERL_DL_DEBUG} || 0 unless defined $dl_debug;
26
27($dl_dlext, $dlsrc, $osname)
28 = @Config::Config{'dlext', 'dlsrc', 'osname'};
29
30# Some systems need special handling to expand file specifications
31# (VMS support by Charles Bailey <bailey@HMIVAX.HUMGEN.UPENN.EDU>)
32# See dl_expandspec() for more details. Should be harmless but
33# inefficient to define on systems that don't need it.
54d6a3b3 34$do_expand = $Is_VMS = $osname eq 'VMS';
8e07c86e 35
36@dl_require_symbols = (); # names of symbols we need
37@dl_resolve_using = (); # names of files to link with
38@dl_library_path = (); # path to look for files
39
40# This is a fix to support DLD's unfortunate desire to relink -lc
41@dl_resolve_using = dl_findfile('-lc') if $dlsrc eq "dl_dld.xs";
42
43# Initialise @dl_library_path with the 'standard' library path
44# for this platform as determined by Configure
45push(@dl_library_path, split(' ',$Config::Config{'libpth'}));
46
47# Add to @dl_library_path any extra directories we can gather from
48# environment variables. So far LD_LIBRARY_PATH is the only known
49# variable used for this purpose. Others may be added later.
50push(@dl_library_path, split(/:/, $ENV{LD_LIBRARY_PATH}))
51 if $ENV{LD_LIBRARY_PATH};
52
53
54# No prizes for guessing why we don't say 'bootstrap DynaLoader;' here.
54d6a3b3 55boot_DynaLoader('DynaLoader') if defined(&boot_DynaLoader);
8e07c86e 56
57
58if ($dl_debug) {
59 print STDERR "DynaLoader.pm loaded (@INC, @dl_library_path)\n";
60 print STDERR "DynaLoader not linked into this perl\n"
61 unless defined(&boot_DynaLoader);
62}
63
641; # End of main code
65
66
67# The bootstrap function cannot be autoloaded (without complications)
68# so we define it here:
69
70sub bootstrap {
71 # use local vars to enable $module.bs script to edit values
72 local(@args) = @_;
73 local($module) = $args[0];
74 local(@dirs, $file);
75
4633a7c4 76 Carp::confess("Usage: DynaLoader::bootstrap(module)") unless $module;
8e07c86e 77
78 # A common error on platforms which don't support dynamic loading.
79 # Since it's fatal and potentially confusing we give a detailed message.
80 Carp::croak("Can't load module $module, dynamic loading not available in this perl.\n".
81 " (You may need to build a new perl executable which either supports\n".
82 " dynamic loading or has the $module module statically linked into it.)\n")
83 unless defined(&dl_load_file);
84
85 my @modparts = split(/::/,$module);
86 my $modfname = $modparts[-1];
87
88 # Some systems have restrictions on files names for DLL's etc.
89 # mod2fname returns appropriate file base name (typically truncated)
90 # It may also edit @modparts if required.
91 $modfname = &mod2fname(\@modparts) if defined &mod2fname;
92
93 my $modpname = join('/',@modparts);
94
95 print STDERR "DynaLoader::bootstrap for $module ",
96 "(auto/$modpname/$modfname.$dl_dlext)\n" if $dl_debug;
97
98 foreach (@INC) {
54d6a3b3 99 chop($_ = VMS::Filespec::unixpath($_)) if $Is_VMS;
8e07c86e 100 my $dir = "$_/auto/$modpname";
101 next unless -d $dir; # skip over uninteresting directories
102
103 # check for common cases to avoid autoload of dl_findfile
104 last if ($file=_check_file("$dir/$modfname.$dl_dlext"));
105
106 # no luck here, save dir for possible later dl_findfile search
107 push(@dirs, "-L$dir");
108 }
109 # last resort, let dl_findfile have a go in all known locations
110 $file = dl_findfile(@dirs, map("-L$_",@INC), $modfname) unless $file;
111
4633a7c4 112 Carp::croak("Can't find loadable object for module $module in \@INC (@INC)")
8e07c86e 113 unless $file;
114
115 my $bootname = "boot_$module";
116 $bootname =~ s/\W/_/g;
117 @dl_require_symbols = ($bootname);
118
119 # Execute optional '.bootstrap' perl script for this module.
120 # The .bs file can be used to configure @dl_resolve_using etc to
121 # match the needs of the individual module on this architecture.
122 my $bs = $file;
123 $bs =~ s/(\.\w+)?$/\.bs/; # look for .bs 'beside' the library
124 if (-s $bs) { # only read file if it's not empty
125 print STDERR "BS: $bs ($osname, $dlsrc)\n" if $dl_debug;
126 eval { do $bs; };
127 warn "$bs: $@\n" if $@;
128 }
129
130 # Many dynamic extension loading problems will appear to come from
131 # this section of code: XYZ failed at line 123 of DynaLoader.pm.
132 # Often these errors are actually occurring in the initialisation
133 # C code of the extension XS file. Perl reports the error as being
134 # in this perl code simply because this was the last perl code
135 # it executed.
136
137 my $libref = dl_load_file($file) or
4633a7c4 138 Carp::croak("Can't load '$file' for module $module: ".dl_error()."\n");
8e07c86e 139
140 my @unresolved = dl_undef_symbols();
4633a7c4 141 Carp::carp("Undefined symbols present after loading $file: @unresolved\n")
8e07c86e 142 if @unresolved;
143
144 my $boot_symbol_ref = dl_find_symbol($libref, $bootname) or
4633a7c4 145 Carp::croak("Can't find '$bootname' symbol in $file\n");
8e07c86e 146
147 my $xs = dl_install_xsub("${module}::bootstrap", $boot_symbol_ref, $file);
148
149 # See comment block above
150 &$xs(@args);
151}
152
153
154sub _check_file { # private utility to handle dl_expandspec vs -f tests
155 my($file) = @_;
156 return $file if (!$do_expand && -f $file); # the common case
157 return $file if ( $do_expand && ($file=dl_expandspec($file)));
158 return undef;
159}
160
161
162# Let autosplit and the autoloader deal with these functions:
163__END__
164
165
166sub dl_findfile {
167 # Read ext/DynaLoader/DynaLoader.doc for detailed information.
168 # This function does not automatically consider the architecture
169 # or the perl library auto directories.
170 my (@args) = @_;
171 my (@dirs, $dir); # which directories to search
172 my (@found); # full paths to real files we have found
8e07c86e 173 my $dl_so = $Config::Config{'so'}; # suffix for shared libraries
174
175 print STDERR "dl_findfile(@args)\n" if $dl_debug;
176
177 # accumulate directories but process files as they appear
178 arg: foreach(@args) {
179 # Special fast case: full filepath requires no search
54d6a3b3 180 if ($Is_VMS && m%[:>/\]]% && -f $_) {
181 push(@found,dl_expandspec(VMS::Filespec::vmsify($_)));
182 last arg unless wantarray;
183 next;
184 }
185 elsif (m:/: && -f $_ && !$do_expand) {
8e07c86e 186 push(@found,$_);
187 last arg unless wantarray;
188 next;
189 }
190
191 # Deal with directories first:
192 # Using a -L prefix is the preferred option (faster and more robust)
193 if (m:^-L:) { s/^-L//; push(@dirs, $_); next; }
194
195 # Otherwise we try to try to spot directories by a heuristic
196 # (this is a more complicated issue than it first appears)
197 if (m:/: && -d $_) { push(@dirs, $_); next; }
198
199 # VMS: we may be using native VMS directry syntax instead of
200 # Unix emulation, so check this as well
54d6a3b3 201 if ($Is_VMS && /[:>\]]/ && -d $_) { push(@dirs, $_); next; }
8e07c86e 202
203 # Only files should get this far...
204 my(@names, $name); # what filenames to look for
205 if (m:-l: ) { # convert -lname to appropriate library name
206 s/-l//;
207 push(@names,"lib$_.$dl_so");
208 push(@names,"lib$_.a");
209 } else { # Umm, a bare name. Try various alternatives:
210 # these should be ordered with the most likely first
211 push(@names,"$_.$dl_so") unless m/\.$dl_so$/o;
212 push(@names,"lib$_.$dl_so") unless m:/:;
213 push(@names,"$_.o") unless m/\.(o|$dl_so)$/o;
214 push(@names,"$_.a") if !m/\.a$/ and $dlsrc eq "dl_dld.xs";
215 push(@names, $_);
216 }
217 foreach $dir (@dirs, @dl_library_path) {
218 next unless -d $dir;
54d6a3b3 219 chop($dir = VMS::Filespec::unixpath($dir)) if $Is_VMS;
8e07c86e 220 foreach $name (@names) {
221 my($file) = "$dir/$name";
222 print STDERR " checking in $dir for $name\n" if $dl_debug;
223 $file = _check_file($file);
224 if ($file) {
225 push(@found, $file);
226 next arg; # no need to look any further
227 }
228 }
229 }
230 }
231 if ($dl_debug) {
232 foreach(@dirs) {
233 print STDERR " dl_findfile ignored non-existent directory: $_\n" unless -d $_;
234 }
235 print STDERR "dl_findfile found: @found\n";
236 }
237 return $found[0] unless wantarray;
238 @found;
239}
240
241
242sub dl_expandspec {
243 my($spec) = @_;
244 # Optional function invoked if DynaLoader.pm sets $do_expand.
245 # Most systems do not require or use this function.
246 # Some systems may implement it in the dl_*.xs file in which case
247 # this autoload version will not be called but is harmless.
248
249 # This function is designed to deal with systems which treat some
250 # 'filenames' in a special way. For example VMS 'Logical Names'
251 # (something like unix environment variables - but different).
252 # This function should recognise such names and expand them into
253 # full file paths.
254 # Must return undef if $spec is invalid or file does not exist.
255
256 my $file = $spec; # default output to input
257
258 if ($osname eq 'VMS') { # dl_expandspec should be defined in dl_vms.xs
4633a7c4 259 Carp::croak("dl_expandspec: should be defined in XS file!\n");
8e07c86e 260 } else {
261 return undef unless -f $file;
262 }
263 print STDERR "dl_expandspec($spec) => $file\n" if $dl_debug;
264 $file;
265}
266
267
3b35bae3 268=head1 NAME
269
270DynaLoader - Dynamically load C libraries into Perl code
271
272dl_error(), dl_findfile(), dl_expandspec(), dl_load_file(), dl_find_symbol(), dl_undef_symbols(), dl_install_xsub(), boostrap() - routines used by DynaLoader modules
273
274=head1 SYNOPSIS
275
8e07c86e 276 package YourPackage;
3b35bae3 277 require DynaLoader;
c2960299 278 @ISA = qw(... DynaLoader ...);
8e07c86e 279 bootstrap YourPackage;
3b35bae3 280
281
282=head1 DESCRIPTION
283
c2960299 284This document defines a standard generic interface to the dynamic
3b35bae3 285linking mechanisms available on many platforms. Its primary purpose is
286to implement automatic dynamic loading of Perl modules.
287
c2960299 288This document serves as both a specification for anyone wishing to
289implement the DynaLoader for a new platform and as a guide for
290anyone wishing to use the DynaLoader directly in an application.
291
3b35bae3 292The DynaLoader is designed to be a very simple high-level
293interface that is sufficiently general to cover the requirements
294of SunOS, HP-UX, NeXT, Linux, VMS and other platforms.
295
c2960299 296It is also hoped that the interface will cover the needs of OS/2, NT
297etc and also allow pseudo-dynamic linking (using C<ld -A> at runtime).
3b35bae3 298
299It must be stressed that the DynaLoader, by itself, is practically
300useless for accessing non-Perl libraries because it provides almost no
301Perl-to-C 'glue'. There is, for example, no mechanism for calling a C
302library function or supplying arguments. It is anticipated that any
303glue that may be developed in the future will be implemented in a
304separate dynamically loaded module.
305
306DynaLoader Interface Summary
307
308 @dl_library_path
309 @dl_resolve_using
310 @dl_require_symbols
311 $dl_debug
312 Implemented in:
313 bootstrap($modulename) Perl
314 @filepaths = dl_findfile(@names) Perl
315
316 $libref = dl_load_file($filename) C
317 $symref = dl_find_symbol($libref, $symbol) C
318 @symbols = dl_undef_symbols() C
319 dl_install_xsub($name, $symref [, $filename]) C
320 $message = dl_error C
321
322=over 4
323
324=item @dl_library_path
325
326The standard/default list of directories in which dl_findfile() will
327search for libraries etc. Directories are searched in order:
328$dl_library_path[0], [1], ... etc
329
330@dl_library_path is initialised to hold the list of 'normal' directories
331(F</usr/lib>, etc) determined by B<Configure> (C<$Config{'libpth'}>). This should
332ensure portability across a wide range of platforms.
333
334@dl_library_path should also be initialised with any other directories
335that can be determined from the environment at runtime (such as
336LD_LIBRARY_PATH for SunOS).
337
338After initialisation @dl_library_path can be manipulated by an
339application using push and unshift before calling dl_findfile().
340Unshift can be used to add directories to the front of the search order
341either to save search time or to override libraries with the same name
342in the 'normal' directories.
343
344The load function that dl_load_file() calls may require an absolute
345pathname. The dl_findfile() function and @dl_library_path can be
346used to search for and return the absolute pathname for the
347library/object that you wish to load.
348
349=item @dl_resolve_using
350
351A list of additional libraries or other shared objects which can be
352used to resolve any undefined symbols that might be generated by a
353later call to load_file().
354
355This is only required on some platforms which do not handle dependent
356libraries automatically. For example the Socket Perl extension library
357(F<auto/Socket/Socket.so>) contains references to many socket functions
358which need to be resolved when it's loaded. Most platforms will
359automatically know where to find the 'dependent' library (e.g.,
360F</usr/lib/libsocket.so>). A few platforms need to to be told the location
361of the dependent library explicitly. Use @dl_resolve_using for this.
362
363Example usage:
364
365 @dl_resolve_using = dl_findfile('-lsocket');
366
367=item @dl_require_symbols
368
369A list of one or more symbol names that are in the library/object file
370to be dynamically loaded. This is only required on some platforms.
371
372=item dl_error()
373
374Syntax:
375
376 $message = dl_error();
377
378Error message text from the last failed DynaLoader function. Note
379that, similar to errno in unix, a successful function call does not
380reset this message.
381
382Implementations should detect the error as soon as it occurs in any of
383the other functions and save the corresponding message for later
384retrieval. This will avoid problems on some platforms (such as SunOS)
385where the error message is very temporary (e.g., dlerror()).
386
387=item $dl_debug
388
389Internal debugging messages are enabled when $dl_debug is set true.
390Currently setting $dl_debug only affects the Perl side of the
391DynaLoader. These messages should help an application developer to
392resolve any DynaLoader usage problems.
393
394$dl_debug is set to C<$ENV{'PERL_DL_DEBUG'}> if defined.
395
396For the DynaLoader developer/porter there is a similar debugging
397variable added to the C code (see dlutils.c) and enabled if Perl was
398built with the B<-DDEBUGGING> flag. This can also be set via the
399PERL_DL_DEBUG environment variable. Set to 1 for minimal information or
400higher for more.
401
402=item dl_findfile()
403
404Syntax:
405
406 @filepaths = dl_findfile(@names)
407
408Determine the full paths (including file suffix) of one or more
409loadable files given their generic names and optionally one or more
410directories. Searches directories in @dl_library_path by default and
411returns an empty list if no files were found.
412
413Names can be specified in a variety of platform independent forms. Any
414names in the form B<-lname> are converted into F<libname.*>, where F<.*> is
415an appropriate suffix for the platform.
416
417If a name does not already have a suitable prefix and/or suffix then
418the corresponding file will be searched for by trying combinations of
419prefix and suffix appropriate to the platform: "$name.o", "lib$name.*"
420and "$name".
421
422If any directories are included in @names they are searched before
c2960299 423@dl_library_path. Directories may be specified as B<-Ldir>. Any other
424names are treated as filenames to be searched for.
3b35bae3 425
426Using arguments of the form C<-Ldir> and C<-lname> is recommended.
427
428Example:
429
430 @dl_resolve_using = dl_findfile(qw(-L/usr/5lib -lposix));
431
432
433=item dl_expandspec()
434
435Syntax:
436
437 $filepath = dl_expandspec($spec)
438
439Some unusual systems, such as VMS, require special filename handling in
440order to deal with symbolic names for files (i.e., VMS's Logical Names).
441
442To support these systems a dl_expandspec() function can be implemented
443either in the F<dl_*.xs> file or code can be added to the autoloadable
c2960299 444dl_expandspec() function in F<DynaLoader.pm>. See F<DynaLoader.pm> for
445more information.
3b35bae3 446
447=item dl_load_file()
448
449Syntax:
450
451 $libref = dl_load_file($filename)
452
453Dynamically load $filename, which must be the path to a shared object
454or library. An opaque 'library reference' is returned as a handle for
455the loaded object. Returns undef on error.
456
457(On systems that provide a handle for the loaded object such as SunOS
458and HPUX, $libref will be that handle. On other systems $libref will
459typically be $filename or a pointer to a buffer containing $filename.
460The application should not examine or alter $libref in any way.)
461
462This is function that does the real work. It should use the current
463values of @dl_require_symbols and @dl_resolve_using if required.
464
465 SunOS: dlopen($filename)
466 HP-UX: shl_load($filename)
467 Linux: dld_create_reference(@dl_require_symbols); dld_link($filename)
468 NeXT: rld_load($filename, @dl_resolve_using)
469 VMS: lib$find_image_symbol($filename,$dl_require_symbols[0])
470
471
472=item dl_find_symbol()
473
474Syntax:
475
476 $symref = dl_find_symbol($libref, $symbol)
477
478Return the address of the symbol $symbol or C<undef> if not found. If the
479target system has separate functions to search for symbols of different
480types then dl_find_symbol() should search for function symbols first and
481then other types.
482
483The exact manner in which the address is returned in $symref is not
484currently defined. The only initial requirement is that $symref can
485be passed to, and understood by, dl_install_xsub().
486
487 SunOS: dlsym($libref, $symbol)
488 HP-UX: shl_findsym($libref, $symbol)
489 Linux: dld_get_func($symbol) and/or dld_get_symbol($symbol)
490 NeXT: rld_lookup("_$symbol")
491 VMS: lib$find_image_symbol($libref,$symbol)
492
493
494=item dl_undef_symbols()
495
496Example
497
498 @symbols = dl_undef_symbols()
499
500Return a list of symbol names which remain undefined after load_file().
501Returns C<()> if not known. Don't worry if your platform does not provide
c2960299 502a mechanism for this. Most do not need it and hence do not provide it,
503they just return an empty list.
3b35bae3 504
505
506=item dl_install_xsub()
507
508Syntax:
509
510 dl_install_xsub($perl_name, $symref [, $filename])
511
512Create a new Perl external subroutine named $perl_name using $symref as
513a pointer to the function which implements the routine. This is simply
514a direct call to newXSUB(). Returns a reference to the installed
515function.
516
517The $filename parameter is used by Perl to identify the source file for
518the function if required by die(), caller() or the debugger. If
519$filename is not defined then "DynaLoader" will be used.
520
521
522=item boostrap()
523
524Syntax:
525
526bootstrap($module)
527
528This is the normal entry point for automatic dynamic loading in Perl.
529
530It performs the following actions:
531
532=over 8
533
534=item *
535
536locates an auto/$module directory by searching @INC
537
538=item *
539
540uses dl_findfile() to determine the filename to load
541
542=item *
543
544sets @dl_require_symbols to C<("boot_$module")>
545
546=item *
547
548executes an F<auto/$module/$module.bs> file if it exists
549(typically used to add to @dl_resolve_using any files which
550are required to load the module on the current platform)
551
552=item *
553
554calls dl_load_file() to load the file
555
556=item *
557
558calls dl_undef_symbols() and warns if any symbols are undefined
559
560=item *
561
562calls dl_find_symbol() for "boot_$module"
563
564=item *
565
566calls dl_install_xsub() to install it as "${module}::bootstrap"
567
568=item *
569
8e07c86e 570calls &{"${module}::bootstrap"} to bootstrap the module (actually
571it uses the function reference returned by dl_install_xsub for speed)
3b35bae3 572
573=back
574
575=back
576
577
578=head1 AUTHOR
579
c2960299 580Tim Bunce, 11 August 1994.
581
3b35bae3 582This interface is based on the work and comments of (in no particular
583order): Larry Wall, Robert Sanders, Dean Roehrich, Jeff Okamoto, Anno
c2960299 584Siegel, Thomas Neumann, Paul Marquess, Charles Bailey, myself and others.
3b35bae3 585
586Larry Wall designed the elegant inherited bootstrap mechanism and
587implemented the first Perl 5 dynamic loader using it.
588
3b35bae3 589=cut