This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Provide a fixed $DynaLoader::XS_VERSION of 1.05, to fix bug #32539
[perl5.git] / ext / DynaLoader / DynaLoader_pm.PL
1 use Config;
2
3 sub to_string {
4     my ($value) = @_;
5     $value =~ s/\\/\\\\/g;
6     $value =~ s/'/\\'/g;
7     return "'$value'";
8 }
9
10 unlink "DynaLoader.pm" if -f "DynaLoader.pm";
11 open OUT, ">DynaLoader.pm" or die $!;
12 print OUT <<'EOT';
13
14 # Generated from DynaLoader.pm.PL
15
16 package DynaLoader;
17
18 #   And Gandalf said: 'Many folk like to know beforehand what is to
19 #   be set on the table; but those who have laboured to prepare the
20 #   feast like to keep their secret; for wonder makes the words of
21 #   praise louder.'
22
23 #   (Quote from Tolkien suggested by Anno Siegel.)
24 #
25 # See pod text at end of file for documentation.
26 # See also ext/DynaLoader/README in source tree for other information.
27 #
28 # Tim.Bunce@ig.co.uk, August 1994
29
30 use vars qw($VERSION *AUTOLOAD $XS_VERSION);
31
32 $VERSION = '1.05';      # avoid typo warning
33
34 # See http://rt.perl.org/rt3//Public/Bug/Display.html?id=32539
35 # for why we need this. Basically any embedded code will have 1.05 hard-coded
36 # in it as the XS_VERSION to check against. If a shared libperl is upgraded,
37 # then it will pull in a newer DynaLoader.pm file, because the shared libperl
38 # provides the paths for @INC. The file in @INC provides the
39 # $DynaLoader::XS_VERSION that the existing embedded code checks against, so
40 # we must keep this value constant, else bootstrap_DynaLoader will croak()
41 # Whilst moving bootstrap_DynaLoader to the shared libperl is the correct
42 # long-term fix, it doesn't help current installations, as they're still
43 # going to find the boot_DynaLoader linked to them (with its hard-coded 1.05)
44 # (It's found via a passed in function pointer in the xsinit parameter to
45 # perl_parse, and in turn that is typically the static function xs_init
46 # defined in the same place as the caller to perl_parse, and at the same time,
47 # so compiled in and installed as binaries now deployed.)
48 $XS_VERSION = '1.05';
49
50 require AutoLoader;
51 *AUTOLOAD = \&AutoLoader::AUTOLOAD;
52
53 use Config;
54
55 # The following require can't be removed during maintenance
56 # releases, sadly, because of the risk of buggy code that does 
57 # require Carp; Carp::croak "..."; without brackets dying 
58 # if Carp hasn't been loaded in earlier compile time. :-( 
59 # We'll let those bugs get found on the development track.
60 require Carp if $] < 5.00450; 
61
62 # enable debug/trace messages from DynaLoader perl code
63 $dl_debug = $ENV{PERL_DL_DEBUG} || 0 unless defined $dl_debug;
64
65 #
66 # Flags to alter dl_load_file behaviour.  Assigned bits:
67 #   0x01  make symbols available for linking later dl_load_file's.
68 #         (only known to work on Solaris 2 using dlopen(RTLD_GLOBAL))
69 #         (ignored under VMS; effect is built-in to image linking)
70 #
71 # This is called as a class method $module->dl_load_flags.  The
72 # definition here will be inherited and result on "default" loading
73 # behaviour unless a sub-class of DynaLoader defines its own version.
74 #
75
76 sub dl_load_flags { 0x00 }
77
78 # ($dl_dlext, $dlsrc)
79 #         = @Config::Config{'dlext', 'dlsrc'};
80 EOT
81
82 print OUT "  (\$dl_dlext, \$dlsrc) = (",
83           to_string($Config::Config{'dlext'}), ",",
84           to_string($Config::Config{'dlsrc'}), ")\n;" ;
85
86 print OUT <<'EOT';
87
88 # Some systems need special handling to expand file specifications
89 # (VMS support by Charles Bailey <bailey@HMIVAX.HUMGEN.UPENN.EDU>)
90 # See dl_expandspec() for more details. Should be harmless but
91 # inefficient to define on systems that don't need it.
92 $Is_VMS    = $^O eq 'VMS';
93 $do_expand = $Is_VMS;
94 $Is_MacOS  = $^O eq 'MacOS';
95
96 my $Mac_FS;
97 $Mac_FS = eval { require Mac::FileSpec::Unixish } if $Is_MacOS;
98
99 @dl_require_symbols = ();       # names of symbols we need
100 @dl_resolve_using   = ();       # names of files to link with
101 @dl_library_path    = ();       # path to look for files
102
103 #XSLoader.pm may have added elements before we were required
104 #@dl_shared_objects  = ();       # shared objects for symbols we have 
105 #@dl_librefs         = ();       # things we have loaded
106 #@dl_modules         = ();       # Modules we have loaded
107
108 # This is a fix to support DLD's unfortunate desire to relink -lc
109 @dl_resolve_using = dl_findfile('-lc') if $dlsrc eq "dl_dld.xs";
110
111 EOT
112
113 my $cfg_dl_library_path = <<'EOT';
114 push(@dl_library_path, split(' ', $Config::Config{libpth}));
115 EOT
116
117 sub dquoted_comma_list {
118     join(", ", map {qq("$_")} @_);
119 }
120
121 if ($ENV{PERL_BUILD_EXPAND_CONFIG_VARS}) {
122     eval $cfg_dl_library_path;
123     if (!$ENV{PERL_BUILD_EXPAND_ENV_VARS}) {
124         my $dl_library_path = dquoted_comma_list(@dl_library_path);
125         print OUT <<EOT;
126 # The below \@dl_library_path has been expanded (%Config) in Perl build time.
127
128 \@dl_library_path = ($dl_library_path);
129
130 EOT
131     }
132 }
133 else {
134     print OUT <<EOT;
135 # Initialise \@dl_library_path with the 'standard' library path
136 # for this platform as determined by Configure.
137
138 $cfg_dl_library_path
139
140 EOT
141 }
142
143 my $ldlibpthname;
144 my $ldlibpthname_defined;
145 my $pthsep;
146
147 if ($ENV{PERL_BUILD_EXPAND_CONFIG_VARS}) {
148     $ldlibpthname         = $Config::Config{ldlibpthname};
149     $ldlibpthname_defined = defined $Config::Config{ldlibpthname} ? 1 : 0;
150     $pthsep               = $Config::Config{path_sep};
151 }
152 else {
153     $ldlibpthname         = q($Config::Config{ldlibpthname});
154     $ldlibpthname_defined = q(defined $Config::Config{ldlibpthname});
155     $pthsep               = q($Config::Config{path_sep});
156     print OUT <<EOT;
157 my \$ldlibpthname         = $ldlibpthname;
158 my \$ldlibpthname_defined = $ldlibpthname_defined;
159 my \$pthsep               = $pthsep;
160
161 EOT
162 }
163
164 my $env_dl_library_path = <<'EOT';
165 if ($ldlibpthname_defined &&
166     exists $ENV{$ldlibpthname}) {
167     push(@dl_library_path, split(/$pthsep/, $ENV{$ldlibpthname}));
168 }
169
170 # E.g. HP-UX supports both its native SHLIB_PATH *and* LD_LIBRARY_PATH.
171
172 if ($ldlibpthname_defined &&
173     $ldlibpthname ne 'LD_LIBRARY_PATH' &&
174     exists $ENV{LD_LIBRARY_PATH}) {
175     push(@dl_library_path, split(/$pthsep/, $ENV{LD_LIBRARY_PATH}));
176 }
177 EOT
178
179 if ($ENV{PERL_BUILD_EXPAND_CONFIG_VARS} && $ENV{PERL_BUILD_EXPAND_ENV_VARS}) {
180     eval $env_dl_library_path;
181 }
182 else {
183     print OUT <<EOT;
184 # Add to \@dl_library_path any extra directories we can gather from environment
185 # during runtime.
186
187 $env_dl_library_path
188
189 EOT
190 }
191
192 if ($ENV{PERL_BUILD_EXPAND_CONFIG_VARS} && $ENV{PERL_BUILD_EXPAND_ENV_VARS}) {
193     my $dl_library_path = dquoted_comma_list(@dl_library_path);
194     print OUT <<EOT;
195 # The below \@dl_library_path has been expanded (%Config, %ENV)
196 # in Perl build time.
197
198 \@dl_library_path = ($dl_library_path);
199
200 EOT
201 }
202
203 print OUT <<'EOT';
204 # No prizes for guessing why we don't say 'bootstrap DynaLoader;' here.
205 # NOTE: All dl_*.xs (including dl_none.xs) define a dl_error() XSUB
206 boot_DynaLoader('DynaLoader') if defined(&boot_DynaLoader) &&
207                                 !defined(&dl_error);
208
209 if ($dl_debug) {
210     print STDERR "DynaLoader.pm loaded (@INC, @dl_library_path)\n";
211     print STDERR "DynaLoader not linked into this perl\n"
212             unless defined(&boot_DynaLoader);
213 }
214
215 1; # End of main code
216
217
218 sub croak   { require Carp; Carp::croak(@_)   }
219
220 sub bootstrap_inherit {
221     my $module = $_[0];
222     local *isa = *{"$module\::ISA"};
223     local @isa = (@isa, 'DynaLoader');
224     # Cannot goto due to delocalization.  Will report errors on a wrong line?
225     bootstrap(@_);
226 }
227
228 # The bootstrap function cannot be autoloaded (without complications)
229 # so we define it here:
230
231 sub bootstrap {
232     # use local vars to enable $module.bs script to edit values
233     local(@args) = @_;
234     local($module) = $args[0];
235     local(@dirs, $file);
236
237     unless ($module) {
238         require Carp;
239         Carp::confess("Usage: DynaLoader::bootstrap(module)");
240     }
241
242     # A common error on platforms which don't support dynamic loading.
243     # Since it's fatal and potentially confusing we give a detailed message.
244     croak("Can't load module $module, dynamic loading not available in this perl.\n".
245         "  (You may need to build a new perl executable which either supports\n".
246         "  dynamic loading or has the $module module statically linked into it.)\n")
247         unless defined(&dl_load_file);
248
249 EOT
250
251 print OUT <<'EOT' if $^O eq 'os2';
252     # Can dynaload, but cannot dynaload Perl modules...
253     die 'Dynaloaded Perl modules are not available in this build of Perl' if $OS2::is_static;
254
255 EOT
256
257 print OUT <<'EOT';
258     my @modparts = split(/::/,$module);
259     my $modfname = $modparts[-1];
260
261     # Some systems have restrictions on files names for DLL's etc.
262     # mod2fname returns appropriate file base name (typically truncated)
263     # It may also edit @modparts if required.
264     $modfname = &mod2fname(\@modparts) if defined &mod2fname;
265
266     # Truncate the module name to 8.3 format for NetWare
267         if (($^O eq 'NetWare') && (length($modfname) > 8)) {
268                 $modfname = substr($modfname, 0, 8);
269         }
270
271     my $modpname = join(($Is_MacOS ? ':' : '/'),@modparts);
272
273     print STDERR "DynaLoader::bootstrap for $module ",
274                 ($Is_MacOS
275                        ? "(:auto:$modpname:$modfname.$dl_dlext)\n" :
276                        "(auto/$modpname/$modfname.$dl_dlext)\n")
277         if $dl_debug;
278
279     foreach (@INC) {
280         chop($_ = VMS::Filespec::unixpath($_)) if $Is_VMS;
281         my $dir;
282         if ($Is_MacOS) {
283             my $path = $_;
284             if ($Mac_FS && ! -d $path) {
285                 $path = Mac::FileSpec::Unixish::nativize($path);
286             }
287             $path .= ":"  unless /:$/;
288             $dir = "${path}auto:$modpname";
289         } else {
290             $dir = "$_/auto/$modpname";
291         }
292         
293         next unless -d $dir; # skip over uninteresting directories
294         
295         # check for common cases to avoid autoload of dl_findfile
296         my $try = $Is_MacOS ? "$dir:$modfname.$dl_dlext" : "$dir/$modfname.$dl_dlext";
297         last if $file = ($do_expand) ? dl_expandspec($try) : ((-f $try) && $try);
298         
299         # no luck here, save dir for possible later dl_findfile search
300         push @dirs, $dir;
301     }
302     # last resort, let dl_findfile have a go in all known locations
303     $file = dl_findfile(map("-L$_",@dirs,@INC), $modfname) unless $file;
304
305     croak("Can't locate loadable object for module $module in \@INC (\@INC contains: @INC)")
306         unless $file;   # wording similar to error from 'require'
307
308     $file = uc($file) if $Is_VMS && $Config::Config{d_vms_case_sensitive_symbols};
309     my $bootname = "boot_$module";
310     $bootname =~ s/\W/_/g;
311     @dl_require_symbols = ($bootname);
312
313     # Execute optional '.bootstrap' perl script for this module.
314     # The .bs file can be used to configure @dl_resolve_using etc to
315     # match the needs of the individual module on this architecture.
316     my $bs = $file;
317     $bs =~ s/(\.\w+)?(;\d*)?$/\.bs/; # look for .bs 'beside' the library
318     if (-s $bs) { # only read file if it's not empty
319         print STDERR "BS: $bs ($^O, $dlsrc)\n" if $dl_debug;
320         eval { do $bs; };
321         warn "$bs: $@\n" if $@;
322     }
323
324     my $boot_symbol_ref;
325
326     if ($^O eq 'darwin') {
327         if ($boot_symbol_ref = dl_find_symbol(0, $bootname)) {
328             goto boot; #extension library has already been loaded, e.g. darwin
329         }
330     }
331
332     # Many dynamic extension loading problems will appear to come from
333     # this section of code: XYZ failed at line 123 of DynaLoader.pm.
334     # Often these errors are actually occurring in the initialisation
335     # C code of the extension XS file. Perl reports the error as being
336     # in this perl code simply because this was the last perl code
337     # it executed.
338
339     my $libref = dl_load_file($file, $module->dl_load_flags) or
340         croak("Can't load '$file' for module $module: ".dl_error());
341
342     push(@dl_librefs,$libref);  # record loaded object
343
344     my @unresolved = dl_undef_symbols();
345     if (@unresolved) {
346         require Carp;
347         Carp::carp("Undefined symbols present after loading $file: @unresolved\n");
348     }
349
350     $boot_symbol_ref = dl_find_symbol($libref, $bootname) or
351          croak("Can't find '$bootname' symbol in $file\n");
352
353     push(@dl_modules, $module); # record loaded module
354
355   boot:
356     my $xs = dl_install_xsub("${module}::bootstrap", $boot_symbol_ref, $file);
357
358     # See comment block above
359
360         push(@dl_shared_objects, $file); # record files loaded
361
362     &$xs(@args);
363 }
364
365
366 #sub _check_file {   # private utility to handle dl_expandspec vs -f tests
367 #    my($file) = @_;
368 #    return $file if (!$do_expand && -f $file); # the common case
369 #    return $file if ( $do_expand && ($file=dl_expandspec($file)));
370 #    return undef;
371 #}
372
373
374 # Let autosplit and the autoloader deal with these functions:
375 __END__
376
377
378 sub dl_findfile {
379     # Read ext/DynaLoader/DynaLoader.doc for detailed information.
380     # This function does not automatically consider the architecture
381     # or the perl library auto directories.
382     my (@args) = @_;
383     my (@dirs,  $dir);   # which directories to search
384     my (@found);         # full paths to real files we have found
385 EOT
386
387 print OUT '    my $dl_ext= ' . to_string($Config::Config{'dlext'}) .
388           "; # \$Config::Config{'dlext'} suffix for perl extensions\n";
389 print OUT '    my $dl_so = ' . to_string($Config::Config{'so'}) .
390           "; # \$Config::Config{'so'} suffix for shared libraries\n";
391
392 print OUT <<'EOT';
393
394     print STDERR "dl_findfile(@args)\n" if $dl_debug;
395
396     # accumulate directories but process files as they appear
397     arg: foreach(@args) {
398         #  Special fast case: full filepath requires no search
399         if ($Is_VMS && m%[:>/\]]% && -f $_) {
400             push(@found,dl_expandspec(VMS::Filespec::vmsify($_)));
401             last arg unless wantarray;
402             next;
403         }
404         elsif ($Is_MacOS) {
405             if (m/:/ && -f $_) {
406                 push(@found,$_);
407                 last arg unless wantarray;
408             }
409         }
410         elsif (m:/: && -f $_ && !$do_expand) {
411             push(@found,$_);
412             last arg unless wantarray;
413             next;
414         }
415
416         # Deal with directories first:
417         #  Using a -L prefix is the preferred option (faster and more robust)
418         if (m:^-L:) { s/^-L//; push(@dirs, $_); next; }
419
420         if ($Is_MacOS) {
421             #  Otherwise we try to try to spot directories by a heuristic
422             #  (this is a more complicated issue than it first appears)
423             if (m/:/ && -d $_) {   push(@dirs, $_); next; }
424             #  Only files should get this far...
425             my(@names, $name);    # what filenames to look for
426             s/^-l//;
427             push(@names, $_);
428             foreach $dir (@dirs, @dl_library_path) {
429                 next unless -d $dir;
430                 $dir =~ s/^([^:]+)$/:$1/;
431                 $dir =~ s/:$//;
432                 foreach $name (@names) {
433                     my($file) = "$dir:$name";
434                     print STDERR " checking in $dir for $name\n" if $dl_debug;
435                     if (-f $file) {
436                         push(@found, $file);
437                         next arg; # no need to look any further
438                     }
439                 }
440             }
441             next;
442         }
443         
444         #  Otherwise we try to try to spot directories by a heuristic
445         #  (this is a more complicated issue than it first appears)
446         if (m:/: && -d $_) {   push(@dirs, $_); next; }
447
448         # VMS: we may be using native VMS directory syntax instead of
449         # Unix emulation, so check this as well
450         if ($Is_VMS && /[:>\]]/ && -d $_) {   push(@dirs, $_); next; }
451
452         #  Only files should get this far...
453         my(@names, $name);    # what filenames to look for
454         if (m:-l: ) {          # convert -lname to appropriate library name
455             s/-l//;
456             push(@names,"lib$_.$dl_so");
457             push(@names,"lib$_.a");
458         } else {                # Umm, a bare name. Try various alternatives:
459             # these should be ordered with the most likely first
460             push(@names,"$_.$dl_ext")    unless m/\.$dl_ext$/o;
461             push(@names,"$_.$dl_so")     unless m/\.$dl_so$/o;
462             push(@names,"lib$_.$dl_so")  unless m:/:;
463             push(@names,"$_.a")          if !m/\.a$/ and $dlsrc eq "dl_dld.xs";
464             push(@names, $_);
465         }
466         foreach $dir (@dirs, @dl_library_path) {
467             next unless -d $dir;
468             chop($dir = VMS::Filespec::unixpath($dir)) if $Is_VMS;
469             foreach $name (@names) {
470                 my($file) = "$dir/$name";
471                 print STDERR " checking in $dir for $name\n" if $dl_debug;
472                 $file = ($do_expand) ? dl_expandspec($file) : (-f $file && $file);
473                 #$file = _check_file($file);
474                 if ($file) {
475                     push(@found, $file);
476                     next arg; # no need to look any further
477                 }
478             }
479         }
480     }
481     if ($dl_debug) {
482         foreach(@dirs) {
483             print STDERR " dl_findfile ignored non-existent directory: $_\n" unless -d $_;
484         }
485         print STDERR "dl_findfile found: @found\n";
486     }
487     return $found[0] unless wantarray;
488     @found;
489 }
490
491
492 sub dl_expandspec {
493     my($spec) = @_;
494     # Optional function invoked if DynaLoader.pm sets $do_expand.
495     # Most systems do not require or use this function.
496     # Some systems may implement it in the dl_*.xs file in which case
497     # this autoload version will not be called but is harmless.
498
499     # This function is designed to deal with systems which treat some
500     # 'filenames' in a special way. For example VMS 'Logical Names'
501     # (something like unix environment variables - but different).
502     # This function should recognise such names and expand them into
503     # full file paths.
504     # Must return undef if $spec is invalid or file does not exist.
505
506     my $file = $spec; # default output to input
507
508     if ($Is_VMS) { # dl_expandspec should be defined in dl_vms.xs
509         require Carp;
510         Carp::croak("dl_expandspec: should be defined in XS file!\n");
511     } else {
512         return undef unless -f $file;
513     }
514     print STDERR "dl_expandspec($spec) => $file\n" if $dl_debug;
515     $file;
516 }
517
518 sub dl_find_symbol_anywhere
519 {
520     my $sym = shift;
521     my $libref;
522     foreach $libref (@dl_librefs) {
523         my $symref = dl_find_symbol($libref,$sym);
524         return $symref if $symref;
525     }
526     return undef;
527 }
528
529 =head1 NAME
530
531 DynaLoader - Dynamically load C libraries into Perl code
532
533 =head1 SYNOPSIS
534
535     package YourPackage;
536     require DynaLoader;
537     @ISA = qw(... DynaLoader ...);
538     bootstrap YourPackage;
539
540     # optional method for 'global' loading
541     sub dl_load_flags { 0x01 }     
542
543
544 =head1 DESCRIPTION
545
546 This document defines a standard generic interface to the dynamic
547 linking mechanisms available on many platforms.  Its primary purpose is
548 to implement automatic dynamic loading of Perl modules.
549
550 This document serves as both a specification for anyone wishing to
551 implement the DynaLoader for a new platform and as a guide for
552 anyone wishing to use the DynaLoader directly in an application.
553
554 The DynaLoader is designed to be a very simple high-level
555 interface that is sufficiently general to cover the requirements
556 of SunOS, HP-UX, NeXT, Linux, VMS and other platforms.
557
558 It is also hoped that the interface will cover the needs of OS/2, NT
559 etc and also allow pseudo-dynamic linking (using C<ld -A> at runtime).
560
561 It must be stressed that the DynaLoader, by itself, is practically
562 useless for accessing non-Perl libraries because it provides almost no
563 Perl-to-C 'glue'.  There is, for example, no mechanism for calling a C
564 library function or supplying arguments.  A C::DynaLib module
565 is available from CPAN sites which performs that function for some
566 common system types.  And since the year 2000, there's also Inline::C,
567 a module that allows you to write Perl subroutines in C.  Also available
568 from your local CPAN site.
569
570 DynaLoader Interface Summary
571
572   @dl_library_path
573   @dl_resolve_using
574   @dl_require_symbols
575   $dl_debug
576   @dl_librefs
577   @dl_modules
578   @dl_shared_objects
579                                                   Implemented in:
580   bootstrap($modulename)                               Perl
581   @filepaths = dl_findfile(@names)                     Perl
582   $flags = $modulename->dl_load_flags                  Perl
583   $symref  = dl_find_symbol_anywhere($symbol)          Perl
584
585   $libref  = dl_load_file($filename, $flags)           C
586   $status  = dl_unload_file($libref)                   C
587   $symref  = dl_find_symbol($libref, $symbol)          C
588   @symbols = dl_undef_symbols()                        C
589   dl_install_xsub($name, $symref [, $filename])        C
590   $message = dl_error                                  C
591
592 =over 4
593
594 =item @dl_library_path
595
596 The standard/default list of directories in which dl_findfile() will
597 search for libraries etc.  Directories are searched in order:
598 $dl_library_path[0], [1], ... etc
599
600 @dl_library_path is initialised to hold the list of 'normal' directories
601 (F</usr/lib>, etc) determined by B<Configure> (C<$Config{'libpth'}>).  This should
602 ensure portability across a wide range of platforms.
603
604 @dl_library_path should also be initialised with any other directories
605 that can be determined from the environment at runtime (such as
606 LD_LIBRARY_PATH for SunOS).
607
608 After initialisation @dl_library_path can be manipulated by an
609 application using push and unshift before calling dl_findfile().
610 Unshift can be used to add directories to the front of the search order
611 either to save search time or to override libraries with the same name
612 in the 'normal' directories.
613
614 The load function that dl_load_file() calls may require an absolute
615 pathname.  The dl_findfile() function and @dl_library_path can be
616 used to search for and return the absolute pathname for the
617 library/object that you wish to load.
618
619 =item @dl_resolve_using
620
621 A list of additional libraries or other shared objects which can be
622 used to resolve any undefined symbols that might be generated by a
623 later call to load_file().
624
625 This is only required on some platforms which do not handle dependent
626 libraries automatically.  For example the Socket Perl extension
627 library (F<auto/Socket/Socket.so>) contains references to many socket
628 functions which need to be resolved when it's loaded.  Most platforms
629 will automatically know where to find the 'dependent' library (e.g.,
630 F</usr/lib/libsocket.so>).  A few platforms need to be told the
631 location of the dependent library explicitly.  Use @dl_resolve_using
632 for this.
633
634 Example usage:
635
636     @dl_resolve_using = dl_findfile('-lsocket');
637
638 =item @dl_require_symbols
639
640 A list of one or more symbol names that are in the library/object file
641 to be dynamically loaded.  This is only required on some platforms.
642
643 =item @dl_librefs
644
645 An array of the handles returned by successful calls to dl_load_file(),
646 made by bootstrap, in the order in which they were loaded.
647 Can be used with dl_find_symbol() to look for a symbol in any of
648 the loaded files.
649
650 =item @dl_modules
651
652 An array of module (package) names that have been bootstrap'ed.
653
654 =item @dl_shared_objects
655
656 An array of file names for the shared objects that were loaded.
657
658 =item dl_error()
659
660 Syntax:
661
662     $message = dl_error();
663
664 Error message text from the last failed DynaLoader function.  Note
665 that, similar to errno in unix, a successful function call does not
666 reset this message.
667
668 Implementations should detect the error as soon as it occurs in any of
669 the other functions and save the corresponding message for later
670 retrieval.  This will avoid problems on some platforms (such as SunOS)
671 where the error message is very temporary (e.g., dlerror()).
672
673 =item $dl_debug
674
675 Internal debugging messages are enabled when $dl_debug is set true.
676 Currently setting $dl_debug only affects the Perl side of the
677 DynaLoader.  These messages should help an application developer to
678 resolve any DynaLoader usage problems.
679
680 $dl_debug is set to C<$ENV{'PERL_DL_DEBUG'}> if defined.
681
682 For the DynaLoader developer/porter there is a similar debugging
683 variable added to the C code (see dlutils.c) and enabled if Perl was
684 built with the B<-DDEBUGGING> flag.  This can also be set via the
685 PERL_DL_DEBUG environment variable.  Set to 1 for minimal information or
686 higher for more.
687
688 =item dl_findfile()
689
690 Syntax:
691
692     @filepaths = dl_findfile(@names)
693
694 Determine the full paths (including file suffix) of one or more
695 loadable files given their generic names and optionally one or more
696 directories.  Searches directories in @dl_library_path by default and
697 returns an empty list if no files were found.
698
699 Names can be specified in a variety of platform independent forms.  Any
700 names in the form B<-lname> are converted into F<libname.*>, where F<.*> is
701 an appropriate suffix for the platform.
702
703 If a name does not already have a suitable prefix and/or suffix then
704 the corresponding file will be searched for by trying combinations of
705 prefix and suffix appropriate to the platform: "$name.o", "lib$name.*"
706 and "$name".
707
708 If any directories are included in @names they are searched before
709 @dl_library_path.  Directories may be specified as B<-Ldir>.  Any other
710 names are treated as filenames to be searched for.
711
712 Using arguments of the form C<-Ldir> and C<-lname> is recommended.
713
714 Example: 
715
716     @dl_resolve_using = dl_findfile(qw(-L/usr/5lib -lposix));
717
718
719 =item dl_expandspec()
720
721 Syntax:
722
723     $filepath = dl_expandspec($spec)
724
725 Some unusual systems, such as VMS, require special filename handling in
726 order to deal with symbolic names for files (i.e., VMS's Logical Names).
727
728 To support these systems a dl_expandspec() function can be implemented
729 either in the F<dl_*.xs> file or code can be added to the autoloadable
730 dl_expandspec() function in F<DynaLoader.pm>.  See F<DynaLoader.pm> for
731 more information.
732
733 =item dl_load_file()
734
735 Syntax:
736
737     $libref = dl_load_file($filename, $flags)
738
739 Dynamically load $filename, which must be the path to a shared object
740 or library.  An opaque 'library reference' is returned as a handle for
741 the loaded object.  Returns undef on error.
742
743 The $flags argument to alters dl_load_file behaviour.  
744 Assigned bits:
745
746  0x01  make symbols available for linking later dl_load_file's.
747        (only known to work on Solaris 2 using dlopen(RTLD_GLOBAL))
748        (ignored under VMS; this is a normal part of image linking)
749
750 (On systems that provide a handle for the loaded object such as SunOS
751 and HPUX, $libref will be that handle.  On other systems $libref will
752 typically be $filename or a pointer to a buffer containing $filename.
753 The application should not examine or alter $libref in any way.)
754
755 This is the function that does the real work.  It should use the
756 current values of @dl_require_symbols and @dl_resolve_using if required.
757
758     SunOS: dlopen($filename)
759     HP-UX: shl_load($filename)
760     Linux: dld_create_reference(@dl_require_symbols); dld_link($filename)
761     NeXT:  rld_load($filename, @dl_resolve_using)
762     VMS:   lib$find_image_symbol($filename,$dl_require_symbols[0])
763
764 (The dlopen() function is also used by Solaris and some versions of
765 Linux, and is a common choice when providing a "wrapper" on other
766 mechanisms as is done in the OS/2 port.)
767
768 =item dl_unload_file()
769
770 Syntax:
771
772     $status = dl_unload_file($libref)
773
774 Dynamically unload $libref, which must be an opaque 'library reference' as
775 returned from dl_load_file.  Returns one on success and zero on failure.
776
777 This function is optional and may not necessarily be provided on all platforms.
778 If it is defined, it is called automatically when the interpreter exits for
779 every shared object or library loaded by DynaLoader::bootstrap.  All such
780 library references are stored in @dl_librefs by DynaLoader::Bootstrap as it
781 loads the libraries.  The files are unloaded in last-in, first-out order.
782
783 This unloading is usually necessary when embedding a shared-object perl (e.g.
784 one configured with -Duseshrplib) within a larger application, and the perl
785 interpreter is created and destroyed several times within the lifetime of the
786 application.  In this case it is possible that the system dynamic linker will
787 unload and then subsequently reload the shared libperl without relocating any
788 references to it from any files DynaLoaded by the previous incarnation of the
789 interpreter.  As a result, any shared objects opened by DynaLoader may point to
790 a now invalid 'ghost' of the libperl shared object, causing apparently random
791 memory corruption and crashes.  This behaviour is most commonly seen when using
792 Apache and mod_perl built with the APXS mechanism.
793
794     SunOS: dlclose($libref)
795     HP-UX: ???
796     Linux: ???
797     NeXT:  ???
798     VMS:   ???
799
800 (The dlclose() function is also used by Solaris and some versions of
801 Linux, and is a common choice when providing a "wrapper" on other
802 mechanisms as is done in the OS/2 port.)
803
804 =item dl_load_flags()
805
806 Syntax:
807
808     $flags = dl_load_flags $modulename;
809
810 Designed to be a method call, and to be overridden by a derived class
811 (i.e. a class which has DynaLoader in its @ISA).  The definition in
812 DynaLoader itself returns 0, which produces standard behavior from
813 dl_load_file().
814
815 =item dl_find_symbol()
816
817 Syntax:
818
819     $symref = dl_find_symbol($libref, $symbol)
820
821 Return the address of the symbol $symbol or C<undef> if not found.  If the
822 target system has separate functions to search for symbols of different
823 types then dl_find_symbol() should search for function symbols first and
824 then other types.
825
826 The exact manner in which the address is returned in $symref is not
827 currently defined.  The only initial requirement is that $symref can
828 be passed to, and understood by, dl_install_xsub().
829
830     SunOS: dlsym($libref, $symbol)
831     HP-UX: shl_findsym($libref, $symbol)
832     Linux: dld_get_func($symbol) and/or dld_get_symbol($symbol)
833     NeXT:  rld_lookup("_$symbol")
834     VMS:   lib$find_image_symbol($libref,$symbol)
835
836
837 =item dl_find_symbol_anywhere()
838
839 Syntax:
840
841     $symref = dl_find_symbol_anywhere($symbol)
842
843 Applies dl_find_symbol() to the members of @dl_librefs and returns
844 the first match found.
845
846 =item dl_undef_symbols()
847
848 Example
849
850     @symbols = dl_undef_symbols()
851
852 Return a list of symbol names which remain undefined after load_file().
853 Returns C<()> if not known.  Don't worry if your platform does not provide
854 a mechanism for this.  Most do not need it and hence do not provide it,
855 they just return an empty list.
856
857
858 =item dl_install_xsub()
859
860 Syntax:
861
862     dl_install_xsub($perl_name, $symref [, $filename])
863
864 Create a new Perl external subroutine named $perl_name using $symref as
865 a pointer to the function which implements the routine.  This is simply
866 a direct call to newXSUB().  Returns a reference to the installed
867 function.
868
869 The $filename parameter is used by Perl to identify the source file for
870 the function if required by die(), caller() or the debugger.  If
871 $filename is not defined then "DynaLoader" will be used.
872
873
874 =item bootstrap()
875
876 Syntax:
877
878 bootstrap($module)
879
880 This is the normal entry point for automatic dynamic loading in Perl.
881
882 It performs the following actions:
883
884 =over 8
885
886 =item *
887
888 locates an auto/$module directory by searching @INC
889
890 =item *
891
892 uses dl_findfile() to determine the filename to load
893
894 =item *
895
896 sets @dl_require_symbols to C<("boot_$module")>
897
898 =item *
899
900 executes an F<auto/$module/$module.bs> file if it exists
901 (typically used to add to @dl_resolve_using any files which
902 are required to load the module on the current platform)
903
904 =item *
905
906 calls dl_load_flags() to determine how to load the file.
907
908 =item *
909
910 calls dl_load_file() to load the file
911
912 =item *
913
914 calls dl_undef_symbols() and warns if any symbols are undefined
915
916 =item *
917
918 calls dl_find_symbol() for "boot_$module"
919
920 =item *
921
922 calls dl_install_xsub() to install it as "${module}::bootstrap"
923
924 =item *
925
926 calls &{"${module}::bootstrap"} to bootstrap the module (actually
927 it uses the function reference returned by dl_install_xsub for speed)
928
929 =back
930
931 =back
932
933
934 =head1 AUTHOR
935
936 Tim Bunce, 11 August 1994.
937
938 This interface is based on the work and comments of (in no particular
939 order): Larry Wall, Robert Sanders, Dean Roehrich, Jeff Okamoto, Anno
940 Siegel, Thomas Neumann, Paul Marquess, Charles Bailey, myself and others.
941
942 Larry Wall designed the elegant inherited bootstrap mechanism and
943 implemented the first Perl 5 dynamic loader using it.
944
945 Solaris global loading added by Nick Ing-Simmons with design/coding
946 assistance from Tim Bunce, January 1996.
947
948 =cut
949 EOT
950
951 close OUT or die $!;
952