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