1 #! {- $config{HASHBANGPERL} -}
4 # We must make sourcedir() return an absolute path, because configdata.pm
5 # may be loaded as a module from any script in any directory, making
6 # relative paths untrustable. Because the result is used with 'use lib',
7 # we must ensure that it returns a Unix style path. Mixing File::Spec
8 # and File::Spec::Unix does just that.
15 # Make the path absolute at all times
16 $path = abs_path
($path);
19 # Convert any path of the VMS form VOLUME:[DIR1.DIR2]FILE to the
20 # Unix form /VOLUME/DIR1/DIR2/FILE, which is what VMS perl supports
23 # Start with spliting the native path
24 (my $vol, my $dirs, my $file) = File
::Spec
->splitpath($path);
25 my @dirs = File
::Spec
->splitdir($dirs);
27 # Reassemble it as a Unix path
29 $dirs = File
::Spec
::Unix
->catdir('', $vol, @dirs);
30 $path = File
::Spec
::Unix
->catpath('', $dirs, $file);
36 return _fixup_path
(File
::Spec
->catdir($config{sourcedir
}, @_))
39 return _fixup_path
(File
::Spec
->catfile($config{sourcedir
}, @_))
41 use lib sourcedir
('util', 'perl');
50 our @ISA = qw(Exporter);
52 %config %target %disabled %withargs %unified_info
53 @disablables @disablables_int
56 our %config = ({- dump_data(\%config, indent => 0); -});
57 our %target = ({- dump_data(\%target, indent => 0); -});
58 our @disablables = ({- dump_data(\@disablables, indent => 0) -});
59 our @disablables_int = ({- dump_data(\@disablables_int, indent => 0) -});
60 our %disabled = ({- dump_data(\%disabled, indent => 0); -});
61 our %withargs = ({- dump_data(\%withargs, indent => 0); -});
62 our %unified_info = ({- dump_data(\%unified_info, indent => 0); -});
64 # Unexported, only used by OpenSSL::Test::Utils::available_protocols()
65 our %available_protocols = (
66 tls => [{- dump_data(\@tls, indent => 0) -}],
67 dtls => [{- dump_data(\@dtls, indent => 0) -}],
70 # The following data is only used when this files is use as a script
71 my @makevars = ({- dump_data(\@makevars, indent => 0); -});
72 my %disabled_info = ({- dump_data(\%disabled_info, indent => 0); -});
73 my @user_crossable = qw( {- join (' ', @user_crossable) -} );
75 # If run directly, we can give some answers, and even reconfigure
78 use File::Spec::Functions;
80 use File::Compare qw(compare_text);
84 use lib
'{- sourcedir('util
', 'perl
') -}';
85 use OpenSSL
::fallback
'{- sourcefile('external
', 'perl
', 'MODULES
.txt
') -}';
87 my $here = dirname
($0);
89 if (scalar @ARGV == 0) {
90 # With no arguments, re-create the build file
91 # We do that in two steps, where the first step emits perl
94 my $buildfile = $config{build_file
};
95 my $buildfile_template = "$buildfile.in";
97 'WARNING: do not edit!',
98 "Generated by configdata.pm from "
99 .join(", ", @
{$config{build_file_templates
}}),
100 "via $buildfile_template"
105 disabled
=> \
%disabled,
106 withargs
=> \
%withargs,
107 unified_info
=> \
%unified_info,
108 autowarntext
=> \
@autowarntext,
112 use lib
'{- sourcedir('Configurations
') -}';
115 open my $buildfile_template_fh, ">$buildfile_template"
116 or die "Trying to create $buildfile_template: $!";
117 foreach (@
{$config{build_file_templates
}}) {
118 copy
($_, $buildfile_template_fh)
119 or die "Trying to copy $_ into $buildfile_template: $!";
121 gentemplate
(output
=> $buildfile_template_fh, %gendata);
122 close $buildfile_template_fh;
123 print 'Created ',$buildfile_template,"\n";
125 use OpenSSL
::Template
;
127 my $prepend = <<'_____';
128 use File
::Spec
::Functions
;
129 use lib
'{- sourcedir('util
', 'perl
') -}';
130 use lib
'{- sourcedir('Configurations
') -}';
131 use lib
'{- $config{builddir} -}';
136 open BUILDFILE
, ">$buildfile.new"
137 or die "Trying to create $buildfile.new: $!";
138 $tmpl = OpenSSL
::Template
->new(TYPE
=> 'FILE',
139 SOURCE
=> $buildfile_template);
140 $tmpl->fill_in(FILENAME
=> $_,
141 OUTPUT
=> \
*BUILDFILE
,
144 # To ensure that global variables and functions
145 # defined in one template stick around for the
146 # next, making them combinable
147 PACKAGE
=> 'OpenSSL::safe')
148 or die $Text::Template
::ERROR
;
150 rename("$buildfile.new", $buildfile)
151 or die "Trying to rename $buildfile.new to $buildfile: $!";
152 print 'Created ',$buildfile,"\n";
154 my $configuration_h =
155 catfile
('include', 'openssl', 'configuration.h');
156 my $configuration_h_in =
157 catfile
($config{sourcedir
}, 'include', 'openssl', 'configuration.h.in');
158 open CONFIGURATION_H
, ">${configuration_h}.new"
159 or die "Trying to create ${configuration_h}.new: $!";
160 $tmpl = OpenSSL
::Template
->new(TYPE
=> 'FILE',
161 SOURCE
=> $configuration_h_in);
162 $tmpl->fill_in(FILENAME
=> $_,
163 OUTPUT
=> \
*CONFIGURATION_H
,
166 # To ensure that global variables and functions
167 # defined in one template stick around for the
168 # next, making them combinable
169 PACKAGE
=> 'OpenSSL::safe')
170 or die $Text::Template
::ERROR
;
171 close CONFIGURATION_H
;
173 # When using stat() on Windows, we can get it to perform better by
174 # avoid some data. This doesn't affect the mtime field, so we're not
176 ${^WIN32_SLOPPY_STAT
} = 1;
178 my $update_configuration_h = 0;
179 if (-f
$configuration_h) {
180 my $configuration_h_mtime = (stat($configuration_h))[9];
181 my $configuration_h_in_mtime = (stat($configuration_h_in))[9];
183 # If configuration.h.in was updated after the last configuration.h,
184 # or if configuration.h.new differs configuration.h, we update
186 if ($configuration_h_mtime < $configuration_h_in_mtime
187 || compare_text
("${configuration_h}.new", $configuration_h) != 0) {
188 $update_configuration_h = 1;
190 # If nothing has changed, let's just drop the new one and
191 # pretend like nothing happened
192 unlink "${configuration_h}.new"
195 $update_configuration_h = 1;
198 if ($update_configuration_h) {
199 rename("${configuration_h}.new", $configuration_h)
200 or die "Trying to rename ${configuration_h}.new to $configuration_h: $!";
201 print 'Created ',$configuration_h,"\n";
212 my $makevars = undef;
213 my $buildparams = undef;
219 GetOptions
('dump|d' => \
$dump,
220 'command-line|c' => \
$cmdline,
221 'options|o' => \
$options,
222 'target|t' => \
$target,
223 'environment|e' => \
$envvars,
224 'make-variables|m' => \
$makevars,
225 'build-parameters|b' => \
$buildparams,
226 'reconfigure|reconf|r' => \
$reconf,
227 'verbose|v' => \
$verbose,
228 'query|q=s' => \
$query,
231 or die "Errors in command line arguments\n";
233 # We allow extra arguments with --query. That allows constructs like
235 # ./configdata.pm --query 'get_sources(@ARGV)' file1 file2 file3
236 if (!$query && scalar @ARGV > 0) {
237 print STDERR
<<"_____";
238 Unrecognised arguments
.
239 For more information
, do '$0 --help'
245 pod2usage
(-exitval
=> 0,
249 pod2usage
(-exitval
=> 0,
252 if ($dump || $cmdline) {
253 print "\nCommand line (with current working directory = $here):\n\n";
256 catfile
($config{sourcedir
}, 'Configure'),
257 @
{$config{perlargv
}}), "\n";
258 print "\nPerl information:\n\n";
259 print ' ',$config{perl_cmd
},"\n";
260 print ' ',$config{perl_version
},' for ',$config{perl_archname
},"\n";
262 if ($dump || $options) {
265 foreach my $what (@disablables) {
266 $longest = length($what) if $longest < length($what);
267 $longest2 = length($disabled{$what})
268 if $disabled{$what} && $longest2 < length($disabled{$what});
270 print "\nEnabled features:\n\n";
271 foreach my $what (@disablables) {
272 print " $what\n" unless $disabled{$what};
274 print "\nDisabled features:\n\n";
275 foreach my $what (@disablables) {
276 if ($disabled{$what}) {
277 print " $what", ' ' x
($longest - length($what) + 1),
278 "[$disabled{$what}]", ' ' x
($longest2 - length($disabled{$what}) + 1);
279 print $disabled_info{$what}->{macro
}
280 if $disabled_info{$what}->{macro
};
282 join(', ', @
{$disabled_info{$what}->{skipped
}}),
284 if $disabled_info{$what}->{skipped
};
289 if ($dump || $target) {
290 print "\nConfig target attributes:\n\n";
291 foreach (sort keys %target) {
292 next if $_ =~ m
|^_
| || $_ eq 'template';
296 (my $x = $_) =~ s
|([\\\
$\@
"])|\\$1|g; "\"$x\""
302 print ' ', $_, ' => ';
303 if (ref($target{$_}) eq "ARRAY
") {
304 print '[ ', join(', ', $quotify->(@{$target{$_}})), " ],\n";
306 print $quotify->($target{$_}), ",\n"
310 if ($dump || $envvars) {
311 print "\nRecorded environment
:\n\n";
312 foreach (sort keys %{$config{perlenv}}) {
313 print ' ',$_,' = ',($config{perlenv}->{$_} || ''),"\n";
316 if ($dump || $makevars) {
317 print "\nMakevars
:\n\n";
318 foreach my $var (@makevars) {
320 $prefix = $config{CROSS_COMPILE}
321 if grep { $var eq $_ } @user_crossable;
323 print ' ',$var,' ' x (16 - length $var),'= ',
324 (ref $config{$var} eq 'ARRAY'
325 ? join(' ', @{$config{$var}})
326 : $prefix.$config{$var}),
328 if defined $config{$var};
331 my @buildfile = ($config{builddir}, $config{build_file});
332 unshift @buildfile, $here
333 unless file_name_is_absolute($config{builddir});
334 my $buildfile = canonpath(catdir(@buildfile));
337 NOTE: These variables only represent the configuration view. The build file
338 template may have processed these variables further, please have a look at the
339 build file for more exact data:
343 if ($dump || $buildparams) {
344 my @buildfile = ($config{builddir}, $config{build_file});
345 unshift @buildfile, $here
346 unless file_name_is_absolute($config{builddir});
347 print "\nbuild file
:\n\n";
348 print " ", canonpath(catfile(@buildfile)),"\n";
350 print "\nbuild file templates
:\n\n";
351 foreach (@{$config{build_file_templates}}) {
354 unless file_name_is_absolute($config{sourcedir});
355 print ' ',canonpath(catfile(@tmpl)),"\n";
360 print 'Reconfiguring with: ', join(' ',@{$config{perlargv}}), "\n";
361 foreach (sort keys %{$config{perlenv}}) {
362 print ' ',$_,' = ',($config{perlenv}->{$_} || ""),"\n";
367 exec $^X,catfile($config{sourcedir}, 'Configure'),'reconf';
370 use OpenSSL::Config::Query;
372 my $confquery = OpenSSL::Config::Query->new(info => \%unified_info,
374 my $result = eval "\
$confquery->$query";
376 # We may need a result class with a printing function at some point.
377 # Until then, we assume that we get a scalar, or a list or a hash table
378 # with scalar values and simply print them in some orderly fashion.
379 if (ref $result eq 'ARRAY') {
380 print "$_\n" foreach @$result;
381 } elsif (ref $result eq 'HASH') {
382 print "$_ : \\\n ", join(" \\\n ", @{$result->{$_}}), "\n"
383 foreach sort keys %$result;
384 } elsif (ref $result eq 'SCALAR') {
396 configdata.pm - configuration data for OpenSSL builds
402 perl configdata.pm [options]
410 This module can be used in two modes, interactively and as a module containing
411 all the data recorded by OpenSSL's Configure script.
413 When used interactively, simply run it as any perl script.
414 If run with no arguments, it will rebuild the build file (Makefile or
416 With at least one option, it will instead get the information you ask for, or
417 re-run the configuration process.
418 See L</OPTIONS> below for more information.
420 When loaded as a module, you get a few databanks with useful information to
421 perform build related tasks. The databanks are:
423 %config Configured things.
424 %target The OpenSSL config target with all inheritances
426 %disabled The features that are disabled.
427 @disablables The list of features that can be disabled.
428 %withargs All data given through --with-THING options.
429 %unified_info All information that was computed from the build.info
438 Print a brief help message and exit.
442 Print the manual page and exit.
444 =item B<--dump> | B<-d>
446 Print all relevant configuration data. This is equivalent to B<--command-line>
447 B<--options> B<--target> B<--environment> B<--make-variables>
448 B<--build-parameters>.
450 =item B<--command-line> | B<-c>
452 Print the current configuration command line.
454 =item B<--options> | B<-o>
456 Print the features, both enabled and disabled, and display defined macro and
457 skipped directories where applicable.
459 =item B<--target> | B<-t>
461 Print the config attributes for this config target.
463 =item B<--environment> | B<-e>
465 Print the environment variables and their values at the time of configuration.
467 =item B<--make-variables> | B<-m>
469 Print the main make variables generated in the current configuration
471 =item B<--build-parameters> | B<-b>
473 Print the build parameters, i.e. build file and build file templates.
475 =item B<--reconfigure> | B<--reconf> | B<-r>
477 Re-run the configuration process.
479 =item B<--verbose> | B<-v>