19c16f134cf31f1716890d1399c025df7b499bb3
[openssl.git] / Configure
1 #! /usr/bin/env perl
2 # -*- mode: perl; -*-
3 # Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
4 #
5 # Licensed under the Apache License 2.0 (the "License").  You may not use
6 # this file except in compliance with the License.  You can obtain a copy
7 # in the file LICENSE in the source distribution or at
8 # https://www.openssl.org/source/license.html
9
10 ##  Configure -- OpenSSL source tree configuration script
11
12 use 5.10.0;
13 use strict;
14 use Config;
15 use FindBin;
16 use lib "$FindBin::Bin/util/perl";
17 use File::Basename;
18 use File::Spec::Functions qw/:DEFAULT abs2rel rel2abs splitdir/;
19 use File::Path qw/mkpath/;
20 use OpenSSL::fallback "$FindBin::Bin/external/perl/MODULES.txt";
21 use OpenSSL::Glob;
22 use OpenSSL::Template;
23
24 # see INSTALL for instructions.
25
26 my $orig_death_handler = $SIG{__DIE__};
27 $SIG{__DIE__} = \&death_handler;
28
29 my $usage="Usage: Configure [no-<cipher> ...] [enable-<cipher> ...] [-Dxxx] [-lxxx] [-Lxxx] [-fxxx] [-Kxxx] [no-hw-xxx|no-hw] [[no-]threads] [[no-]shared] [[no-]zlib|zlib-dynamic] [no-asm] [no-egd] [sctp] [386] [--prefix=DIR] [--openssldir=OPENSSLDIR] [--with-xxx[=vvv]] [--config=FILE] os/compiler[:flags]\n";
30
31 # Options:
32 #
33 # --config      add the given configuration file, which will be read after
34 #               any "Configurations*" files that are found in the same
35 #               directory as this script.
36 # --prefix      prefix for the OpenSSL installation, which includes the
37 #               directories bin, lib, include, share/man, share/doc/openssl
38 #               This becomes the value of INSTALLTOP in Makefile
39 #               (Default: /usr/local)
40 # --openssldir  OpenSSL data area, such as openssl.cnf, certificates and keys.
41 #               If it's a relative directory, it will be added on the directory
42 #               given with --prefix.
43 #               This becomes the value of OPENSSLDIR in Makefile and in C.
44 #               (Default: PREFIX/ssl)
45 #
46 # --cross-compile-prefix Add specified prefix to binutils components.
47 #
48 # --api         One of 0.9.8, 1.0.0, 1.0.1, 1.0.2, 1.1.0, 1.1.1, or 3.0
49 #               Define the public APIs as they were for that version
50 #               including patch releases.  If 'no-deprecated' is also
51 #               given, do not compile support for interfaces deprecated
52 #               up to and including the specified OpenSSL version.
53 #
54 # no-hw-xxx     do not compile support for specific crypto hardware.
55 #               Generic OpenSSL-style methods relating to this support
56 #               are always compiled but return NULL if the hardware
57 #               support isn't compiled.
58 # no-hw         do not compile support for any crypto hardware.
59 # [no-]threads  [don't] try to create a library that is suitable for
60 #               multithreaded applications (default is "threads" if we
61 #               know how to do it)
62 # [no-]shared   [don't] try to create shared libraries when supported.
63 # [no-]pic      [don't] try to build position independent code when supported.
64 #               If disabled, it also disables shared and dynamic-engine.
65 # no-asm        do not use assembler
66 # no-egd        do not compile support for the entropy-gathering daemon APIs
67 # [no-]zlib     [don't] compile support for zlib compression.
68 # zlib-dynamic  Like "zlib", but the zlib library is expected to be a shared
69 #               library and will be loaded in run-time by the OpenSSL library.
70 # sctp          include SCTP support
71 # no-uplink     Don't build support for UPLINK interface.
72 # enable-weak-ssl-ciphers
73 #               Enable weak ciphers that are disabled by default.
74 # 386           generate 80386 code in assembly modules
75 # no-sse2       disables IA-32 SSE2 code in assembly modules, the above
76 #               mentioned '386' option implies this one
77 # no-<cipher>   build without specified algorithm (rsa, idea, rc5, ...)
78 # -<xxx> +<xxx> All options which are unknown to the 'Configure' script are
79 # /<xxx>        passed through to the compiler. Unix-style options beginning
80 #               with a '-' or '+' are recognized, as well as Windows-style
81 #               options beginning with a '/'. If the option contains arguments
82 #               separated by spaces, then the URL-style notation %20 can be
83 #               used for the space character in order to avoid having to quote
84 #               the option. For example, -opt%20arg gets expanded to -opt arg.
85 #               In fact, any ASCII character can be encoded as %xx using its
86 #               hexadecimal encoding.
87 # -static       while -static is also a pass-through compiler option (and
88 #               as such is limited to environments where it's actually
89 #               meaningful), it triggers a number configuration options,
90 #               namely no-pic, no-shared and no-threads. It is
91 #               argued that the only reason to produce statically linked
92 #               binaries (and in context it means executables linked with
93 #               -static flag, and not just executables linked with static
94 #               libcrypto.a) is to eliminate dependency on specific run-time,
95 #               a.k.a. libc version. The mentioned config options are meant
96 #               to achieve just that. Unfortunately on Linux it's impossible
97 #               to eliminate the dependency completely for openssl executable
98 #               because of getaddrinfo and gethostbyname calls, which can
99 #               invoke dynamically loadable library facility anyway to meet
100 #               the lookup requests. For this reason on Linux statically
101 #               linked openssl executable has rather debugging value than
102 #               production quality.
103 #
104 # BN_LLONG      use the type 'long long' in crypto/bn/bn.h
105 # RC4_CHAR      use 'char' instead of 'int' for RC4_INT in crypto/rc4/rc4.h
106 # Following are set automatically by this script
107 #
108 # MD5_ASM       use some extra md5 assembler,
109 # SHA1_ASM      use some extra sha1 assembler, must define L_ENDIAN for x86
110 # RMD160_ASM    use some extra ripemd160 assembler,
111 # SHA256_ASM    sha256_block is implemented in assembler
112 # SHA512_ASM    sha512_block is implemented in assembler
113 # AES_ASM       AES_[en|de]crypt is implemented in assembler
114
115 # Minimum warning options... any contributions to OpenSSL should at least
116 # get past these.  Note that we only use these with C compilers, not with
117 # C++ compilers.
118
119 # DEBUG_UNUSED enables __owur (warn unused result) checks.
120 # -DPEDANTIC complements -pedantic and is meant to mask code that
121 # is not strictly standard-compliant and/or implementation-specific,
122 # e.g. inline assembly, disregards to alignment requirements, such
123 # that -pedantic would complain about. Incidentally -DPEDANTIC has
124 # to be used even in sanitized builds, because sanitizer too is
125 # supposed to and does take notice of non-standard behaviour. Then
126 # -pedantic with pre-C9x compiler would also complain about 'long
127 # long' not being supported. As 64-bit algorithms are common now,
128 # it grew impossible to resolve this without sizeable additional
129 # code, so we just tell compiler to be pedantic about everything
130 # but 'long long' type.
131
132 my @gcc_devteam_warn = qw(
133     -DDEBUG_UNUSED
134     -DPEDANTIC -pedantic -Wno-long-long
135     -Wall
136     -Wextra
137     -Wno-unused-parameter
138     -Wno-missing-field-initializers
139     -Wswitch
140     -Wsign-compare
141     -Wshadow
142     -Wformat
143     -Wtype-limits
144     -Wundef
145     -Werror
146     -Wmissing-prototypes
147     -Wstrict-prototypes
148 );
149
150 # These are used in addition to $gcc_devteam_warn when the compiler is clang.
151 # TODO(openssl-team): fix problems and investigate if (at least) the
152 # following warnings can also be enabled:
153 #       -Wcast-align
154 #       -Wunreachable-code -- no, too ugly/compiler-specific
155 #       -Wlanguage-extension-token -- no, we use asm()
156 #       -Wunused-macros -- no, too tricky for BN and _XOPEN_SOURCE etc
157 #       -Wextended-offsetof -- no, needed in CMS ASN1 code
158 my @clang_devteam_warn = qw(
159     -Wno-unknown-warning-option
160     -Wswitch-default
161     -Wno-parentheses-equality
162     -Wno-language-extension-token
163     -Wno-extended-offsetof
164     -Wconditional-uninitialized
165     -Wincompatible-pointer-types-discards-qualifiers
166     -Wmissing-variable-declarations
167 );
168
169 my @cl_devteam_warn = qw(
170     /WX
171 );
172
173 my $strict_warnings = 0;
174
175 # As for $BSDthreads. Idea is to maintain "collective" set of flags,
176 # which would cover all BSD flavors. -pthread applies to them all,
177 # but is treated differently. OpenBSD expands is as -D_POSIX_THREAD
178 # -lc_r, which is sufficient. FreeBSD 4.x expands it as -lc_r,
179 # which has to be accompanied by explicit -D_THREAD_SAFE and
180 # sometimes -D_REENTRANT. FreeBSD 5.x expands it as -lc_r, which
181 # seems to be sufficient?
182 our $BSDthreads="-pthread -D_THREAD_SAFE -D_REENTRANT";
183
184 #
185 # API compatibility name to version number mapping.
186 #
187 my $apitable = {
188     # This table expresses when API additions or changes can occur.
189     # The numbering used changes from 3.0 and on because we updated
190     # (solidified) our version numbering scheme at that point.
191
192     # From 3.0 and on, we internalise the given version number in dedcimal
193     # as MAJOR * 10000 + MINOR * 100 + 0
194     "3.0.0" => 30000,
195     "3.0"   => 30000,
196
197     # Note that before 3.0, we didn't have the same version number scheme.
198     # Still, the numbering we use here covers what we need.
199     "1.1.1" => 10101,
200     "1.1.0" => 10100,
201     "1.0.2" => 10002,
202     "1.0.1" => 10001,
203     "1.0.0" => 10000,
204     "0.9.8" =>   908,
205 };
206
207 our %table = ();
208 our %config = ();
209 our %withargs = ();
210 our $now_printing;      # set to current entry's name in print_table_entry
211                         # (todo: right thing would be to encapsulate name
212                         # into %target [class] and make print_table_entry
213                         # a method)
214
215 # Forward declarations ###############################################
216
217 # read_config(filename)
218 #
219 # Reads a configuration file and populates %table with the contents
220 # (which the configuration file places in %targets).
221 sub read_config;
222
223 # resolve_config(target)
224 #
225 # Resolves all the late evaluations, inheritances and so on for the
226 # chosen target and any target it inherits from.
227 sub resolve_config;
228
229
230 # Information collection #############################################
231
232 # Unified build supports separate build dir
233 my $srcdir = catdir(absolutedir(dirname($0))); # catdir ensures local syntax
234 my $blddir = catdir(absolutedir("."));         # catdir ensures local syntax
235 my $dofile = abs2rel(catfile($srcdir, "util/dofile.pl"));
236
237 my $local_config_envname = 'OPENSSL_LOCAL_CONFIG_DIR';
238
239 $config{sourcedir} = abs2rel($srcdir);
240 $config{builddir} = abs2rel($blddir);
241
242 # Collect reconfiguration information if needed
243 my @argvcopy=@ARGV;
244
245 if (grep /^reconf(igure)?$/, @argvcopy) {
246     die "reconfiguring with other arguments present isn't supported"
247         if scalar @argvcopy > 1;
248     if (-f "./configdata.pm") {
249         my $file = "./configdata.pm";
250         unless (my $return = do $file) {
251             die "couldn't parse $file: $@" if $@;
252             die "couldn't do $file: $!"    unless defined $return;
253             die "couldn't run $file"       unless $return;
254         }
255
256         @argvcopy = defined($configdata::config{perlargv}) ?
257             @{$configdata::config{perlargv}} : ();
258         die "Incorrect data to reconfigure, please do a normal configuration\n"
259             if (grep(/^reconf/,@argvcopy));
260         $config{perlenv} = $configdata::config{perlenv} // {};
261     } else {
262         die "Insufficient data to reconfigure, please do a normal configuration\n";
263     }
264 }
265
266 $config{perlargv} = [ @argvcopy ];
267
268 # Collect version numbers
269 my %version = ();
270
271 collect_information(
272     collect_from_file(catfile($srcdir,'VERSION')),
273     qr/\s*(\w+)\s*=\s*(.*?)\s*$/ =>
274         sub {
275             # Only define it if there is a value at all
276             $version{uc $1} = $2 if $2 ne '';
277         },
278     "OTHERWISE" =>
279         sub { die "Something wrong with this line:\n$_\nin $srcdir/VERSION" },
280     );
281
282 $config{major} = $version{MAJOR} // 'unknown';
283 $config{minor} = $version{MINOR} // 'unknown';
284 $config{patch} = $version{PATCH} // 'unknown';
285 $config{prerelease} =
286     defined $version{PRE_RELEASE_TAG} ? "-$version{PRE_RELEASE_TAG}" : '';
287 $config{build_metadata} =
288     defined $version{BUILD_METADATA} ? "+$version{BUILD_METADATA}" : '';
289 $config{shlib_version} = $version{SHLIB_VERSION} // 'unknown';
290 $config{release_date} = $version{RELEASE_DATE} // 'xx XXX xxxx';
291
292 $config{version} = "$config{major}.$config{minor}.$config{patch}";
293 $config{full_version} = "$config{version}$config{prerelease}$config{build_metadata}";
294
295 die "erroneous version information in VERSION: ",
296     "$config{version}, $config{shlib_version}\n"
297     unless (defined $version{MAJOR}
298             && defined $version{MINOR}
299             && defined $version{PATCH}
300             && defined $version{SHLIB_VERSION});
301
302 # Collect target configurations
303
304 my $pattern = catfile(dirname($0), "Configurations", "*.conf");
305 foreach (sort glob($pattern)) {
306     &read_config($_);
307 }
308
309 if (defined env($local_config_envname)) {
310     if ($^O eq 'VMS') {
311         # VMS environment variables are logical names,
312         # which can be used as is
313         $pattern = $local_config_envname . ':' . '*.conf';
314     } else {
315         $pattern = catfile(env($local_config_envname), '*.conf');
316     }
317
318     foreach (sort glob($pattern)) {
319         &read_config($_);
320     }
321 }
322
323 # Save away perl command information
324 $config{perl_cmd} = $^X;
325 $config{perl_version} = $Config{version};
326 $config{perl_archname} = $Config{archname};
327
328 $config{prefix}="";
329 $config{openssldir}="";
330 $config{processor}="";
331 $config{libdir}="";
332 my $auto_threads=1;    # enable threads automatically? true by default
333 my $default_ranlib;
334
335 # Known TLS and DTLS protocols
336 my @tls = qw(ssl3 tls1 tls1_1 tls1_2 tls1_3);
337 my @dtls = qw(dtls1 dtls1_2);
338
339 # Explicitly known options that are possible to disable.  They can
340 # be regexps, and will be used like this: /^no-${option}$/
341 # For developers: keep it sorted alphabetically
342
343 my @disablables = (
344     "afalgeng",
345     "aria",
346     "asan",
347     "asm",
348     "async",
349     "autoalginit",
350     "autoerrinit",
351     "autoload-config",
352     "bf",
353     "blake2",
354     "buildtest-c++",
355     "camellia",
356     "capieng",
357     "cast",
358     "chacha",
359     "cmac",
360     "cmp",
361     "cms",
362     "comp",
363     "crypto-mdebug",
364     "ct",
365     "deprecated",
366     "des",
367     "devcryptoeng",
368     "dgram",
369     "dh",
370     "dsa",
371     "dso",
372     "dtls",
373     "dynamic-engine",
374     "ec",
375     "ec2m",
376     "ecdh",
377     "ecdsa",
378     "ec_nistp_64_gcc_128",
379     "egd",
380     "engine",
381     "err",
382     "external-tests",
383     "filenames",
384     "fips",
385     "fuzz-libfuzzer",
386     "fuzz-afl",
387     "gost",
388     "idea",
389     "ktls",
390     "legacy",
391     "makedepend",
392     "md2",
393     "md4",
394     "mdc2",
395     "module",
396     "msan",
397     "multiblock",
398     "nextprotoneg",
399     "pinshared",
400     "ocb",
401     "ocsp",
402     "padlockeng",
403     "pic",
404     "poly1305",
405     "posix-io",
406     "psk",
407     "rc2",
408     "rc4",
409     "rc5",
410     "rdrand",
411     "rfc3779",
412     "rmd160",
413     "scrypt",
414     "sctp",
415     "secure-memory",
416     "seed",
417     "shared",
418     "siphash",
419     "siv",
420     "sm2",
421     "sm3",
422     "sm4",
423     "sock",
424     "srp",
425     "srtp",
426     "sse2",
427     "ssl",
428     "ssl-trace",
429     "static-engine",
430     "stdio",
431     "tests",
432     "threads",
433     "tls",
434     "trace",
435     "ts",
436     "ubsan",
437     "ui-console",
438     "unit-test",
439     "uplink",
440     "whirlpool",
441     "weak-ssl-ciphers",
442     "zlib",
443     "zlib-dynamic",
444     );
445 foreach my $proto ((@tls, @dtls))
446         {
447         push(@disablables, $proto);
448         push(@disablables, "$proto-method") unless $proto eq "tls1_3";
449         }
450
451 # Internal disablables, for aliasing purposes.  They serve no special
452 # purpose here, but allow scripts to get to know them through configdata.pm,
453 # where these are merged with @disablables.
454 # The actual aliasing mechanism is done via %disable_cascades
455 my @disablables_int = qw(
456     crmf
457     );
458
459 my %deprecated_disablables = (
460     "ssl2" => undef,
461     "buf-freelists" => undef,
462     "crypto-mdebug-backtrace" => undef,
463     "hw" => "hw",               # causes cascade, but no macro
464     "hw-padlock" => "padlockeng",
465     "ripemd" => "rmd160",
466     "ui" => "ui-console",
467     "heartbeats" => undef,
468     );
469
470 # All of the following are disabled by default:
471
472 our %disabled = ( # "what"         => "comment"
473                   "asan"                => "default",
474                   "buildtest-c++"       => "default",
475                   "crypto-mdebug"       => "default",
476                   "crypto-mdebug-backtrace" => "default",
477                   "devcryptoeng"        => "default",
478                   "ec_nistp_64_gcc_128" => "default",
479                   "egd"                 => "default",
480                   "external-tests"      => "default",
481                   "fuzz-libfuzzer"      => "default",
482                   "fuzz-afl"            => "default",
483                   "md2"                 => "default",
484                   "msan"                => "default",
485                   "rc5"                 => "default",
486                   "sctp"                => "default",
487                   "ssl-trace"           => "default",
488                   "ssl3"                => "default",
489                   "ssl3-method"         => "default",
490                   "trace"               => "default",
491                   "ubsan"               => "default",
492                   "unit-test"           => "default",
493                   "weak-ssl-ciphers"    => "default",
494                   "zlib"                => "default",
495                   "zlib-dynamic"        => "default",
496                   "ktls"                => "default",
497                 );
498
499 # Note: => pair form used for aesthetics, not to truly make a hash table
500 my @disable_cascades = (
501     # "what"            => [ "cascade", ... ]
502     sub { $config{processor} eq "386" }
503                         => [ "sse2" ],
504     "ssl"               => [ "ssl3" ],
505     "ssl3-method"       => [ "ssl3" ],
506     "zlib"              => [ "zlib-dynamic" ],
507     "des"               => [ "mdc2" ],
508     "ec"                => [ "ecdsa", "ecdh", "sm2" ],
509     sub { $disabled{"ec"} && $disabled{"dh"} }
510                         => [ "tls1_3" ],
511     "dgram"             => [ "dtls", "sctp" ],
512     "sock"              => [ "dgram" ],
513     "dtls"              => [ @dtls ],
514     sub { 0 == scalar grep { !$disabled{$_} } @dtls }
515                         => [ "dtls" ],
516
517     "tls"               => [ @tls ],
518     sub { 0 == scalar grep { !$disabled{$_} } @tls }
519                         => [ "tls" ],
520
521     "crypto-mdebug"     => [ "crypto-mdebug-backtrace" ],
522
523     # If no modules, then no dynamic engines either
524     "module"            => [ "dynamic-engine" ],
525
526     # Without shared libraries, dynamic engines aren't possible.
527     # This is due to them having to link with libcrypto and register features
528     # using the ENGINE functionality, and since that relies on global tables,
529     # those *have* to be exacty the same as the ones accessed from the app,
530     # which cannot be guaranteed if shared libraries aren't present.
531     # (note that even with shared libraries, both the app and dynamic engines
532     # must be linked with the same library)
533     "shared"            => [ "dynamic-engine", "uplink" ],
534     "dso"               => [ "dynamic-engine", "module" ],
535     # Other modules don't necessarily have to link with libcrypto, so shared
536     # libraries do not have to be a condition to produce those.
537
538     # Without position independent code, there can be no shared libraries
539     # or modules.
540     "pic"               => [ "shared", "module" ],
541
542     "module"            => [ "fips" ],
543
544     "engine"            => [ grep /eng$/, @disablables ],
545     "hw"                => [ "padlockeng" ],
546
547     # no-autoalginit is only useful when building non-shared
548     "autoalginit"       => [ "shared", "apps" ],
549
550     "stdio"             => [ "apps", "capieng", "egd" ],
551     "apps"              => [ "tests" ],
552     "tests"             => [ "external-tests" ],
553     "comp"              => [ "zlib" ],
554     "sm3"               => [ "sm2" ],
555     sub { !$disabled{"unit-test"} } => [ "heartbeats" ],
556
557     sub { !$disabled{"msan"} } => [ "asm" ],
558
559     sub { $disabled{cmac}; } => [ "siv" ],
560     "legacy"                 => [ "md2" ],
561
562     "cmp"               => [ "crmf" ],
563
564     # Padlock engine uses low-level AES APIs which are deprecated
565     sub { $disabled{"deprecated-3.0"} }
566           => [ "padlockeng" ]
567     );
568
569 # Avoid protocol support holes.  Also disable all versions below N, if version
570 # N is disabled while N+1 is enabled.
571 #
572 my @list = (reverse @tls);
573 while ((my $first, my $second) = (shift @list, shift @list)) {
574     last unless @list;
575     push @disable_cascades, ( sub { !$disabled{$first} && $disabled{$second} }
576                               => [ @list ] );
577     unshift @list, $second;
578 }
579 my @list = (reverse @dtls);
580 while ((my $first, my $second) = (shift @list, shift @list)) {
581     last unless @list;
582     push @disable_cascades, ( sub { !$disabled{$first} && $disabled{$second} }
583                               => [ @list ] );
584     unshift @list, $second;
585 }
586
587 # Explicit "no-..." options will be collected in %disabled along with the defaults.
588 # To remove something from %disabled, use "enable-foo".
589 # For symmetry, "disable-foo" is a synonym for "no-foo".
590
591 &usage if ($#ARGV < 0);
592
593 # For the "make variables" CPPINCLUDES and CPPDEFINES, we support lists with
594 # platform specific list separators.  Users from those platforms should
595 # recognise those separators from how you set up the PATH to find executables.
596 # The default is the Unix like separator, :, but as an exception, we also
597 # support the space as separator.
598 my $list_separator_re =
599     { VMS           => qr/(?<!\^),/,
600       MSWin32       => qr/(?<!\\);/ } -> {$^O} // qr/(?<!\\)[:\s]/;
601 # All the "make variables" we support
602 # Some get pre-populated for the sake of backward compatibility
603 # (we supported those before the change to "make variable" support.
604 my %user = (
605     AR          => env('AR'),
606     ARFLAGS     => [],
607     AS          => undef,
608     ASFLAGS     => [],
609     CC          => env('CC'),
610     CFLAGS      => [ env('CFLAGS') || () ],
611     CXX         => env('CXX'),
612     CXXFLAGS    => [ env('CXXFLAGS') || () ],
613     CPP         => undef,
614     CPPFLAGS    => [ env('CPPFLAGS') || () ],  # -D, -I, -Wp,
615     CPPDEFINES  => [],  # Alternative for -D
616     CPPINCLUDES => [],  # Alternative for -I
617     CROSS_COMPILE => env('CROSS_COMPILE'),
618     HASHBANGPERL=> env('HASHBANGPERL') || env('PERL'),
619     LD          => undef,
620     LDFLAGS     => [ env('LDFLAGS') || () ],  # -L, -Wl,
621     LDLIBS      => [ env('LDLIBS') || () ],  # -l
622     MT          => undef,
623     MTFLAGS     => [],
624     PERL        => env('PERL') || ($^O ne "VMS" ? $^X : "perl"),
625     RANLIB      => env('RANLIB'),
626     RC          => env('RC') || env('WINDRES'),
627     RCFLAGS     => [ env('RCFLAGS') || () ],
628     RM          => undef,
629    );
630 # Info about what "make variables" may be prefixed with the cross compiler
631 # prefix.  This should NEVER mention any such variable with a list for value.
632 my @user_crossable = qw ( AR AS CC CXX CPP LD MT RANLIB RC );
633 # The same but for flags given as Configure options.  These are *additional*
634 # input, as opposed to the VAR=string option that override the corresponding
635 # config target attributes
636 my %useradd = (
637     CPPDEFINES  => [],
638     CPPINCLUDES => [],
639     CPPFLAGS    => [],
640     CFLAGS      => [],
641     CXXFLAGS    => [],
642     LDFLAGS     => [],
643     LDLIBS      => [],
644     RCFLAGS     => [],
645    );
646
647 my %user_synonyms = (
648     HASHBANGPERL=> 'PERL',
649     RC          => 'WINDRES',
650    );
651
652 # Some target attributes have been renamed, this is the translation table
653 my %target_attr_translate =(
654     ar          => 'AR',
655     as          => 'AS',
656     cc          => 'CC',
657     cxx         => 'CXX',
658     cpp         => 'CPP',
659     hashbangperl => 'HASHBANGPERL',
660     ld          => 'LD',
661     mt          => 'MT',
662     ranlib      => 'RANLIB',
663     rc          => 'RC',
664     rm          => 'RM',
665    );
666
667 # Initialisers coming from 'config' scripts
668 $config{defines} = [ split(/$list_separator_re/, env('__CNF_CPPDEFINES')) ];
669 $config{includes} = [ split(/$list_separator_re/, env('__CNF_CPPINCLUDES')) ];
670 $config{cppflags} = [ env('__CNF_CPPFLAGS') || () ];
671 $config{cflags} = [ env('__CNF_CFLAGS') || () ];
672 $config{cxxflags} = [ env('__CNF_CXXFLAGS') || () ];
673 $config{lflags} = [ env('__CNF_LDFLAGS') || () ];
674 $config{ex_libs} = [ env('__CNF_LDLIBS') || () ];
675
676 $config{openssl_api_defines}=[];
677 $config{openssl_sys_defines}=[];
678 $config{openssl_feature_defines}=[];
679 $config{options}="";
680 $config{build_type} = "release";
681 my $target="";
682
683 my %cmdvars = ();               # Stores FOO='blah' type arguments
684 my %unsupported_options = ();
685 my %deprecated_options = ();
686 # If you change this, update apps/version.c
687 my @known_seed_sources = qw(getrandom devrandom os egd none rdcpu librandom);
688 my @seed_sources = ();
689 while (@argvcopy)
690         {
691         $_ = shift @argvcopy;
692
693         # Support env variable assignments among the options
694         if (m|^(\w+)=(.+)?$|)
695                 {
696                 $cmdvars{$1} = $2;
697                 # Every time a variable is given as a configuration argument,
698                 # it acts as a reset if the variable.
699                 if (exists $user{$1})
700                         {
701                         $user{$1} = ref $user{$1} eq "ARRAY" ? [] : undef;
702                         }
703                 #if (exists $useradd{$1})
704                 #       {
705                 #       $useradd{$1} = [];
706                 #       }
707                 next;
708                 }
709
710         # VMS is a case insensitive environment, and depending on settings
711         # out of our control, we may receive options uppercased.  Let's
712         # downcase at least the part before any equal sign.
713         if ($^O eq "VMS")
714                 {
715                 s/^([^=]*)/lc($1)/e;
716                 }
717
718         # some people just can't read the instructions, clang people have to...
719         s/^-no-(?!integrated-as)/no-/;
720
721         # rewrite some options in "enable-..." form
722         s /^-?-?shared$/enable-shared/;
723         s /^sctp$/enable-sctp/;
724         s /^threads$/enable-threads/;
725         s /^zlib$/enable-zlib/;
726         s /^zlib-dynamic$/enable-zlib-dynamic/;
727
728         if (/^(no|disable|enable)-(.+)$/)
729                 {
730                 my $word = $2;
731                 if ($word !~ m|hw(?:-.+)| # special treatment for hw regexp opt
732                         && !exists $deprecated_disablables{$word}
733                         && !grep { $word eq $_ } @disablables)
734                         {
735                         $unsupported_options{$_} = 1;
736                         next;
737                         }
738                 }
739         if (/^no-(.+)$/ || /^disable-(.+)$/)
740                 {
741                 foreach my $proto ((@tls, @dtls))
742                         {
743                         if ($1 eq "$proto-method")
744                                 {
745                                 $disabled{"$proto"} = "option($proto-method)";
746                                 last;
747                                 }
748                         }
749                 if ($1 eq "dtls")
750                         {
751                         foreach my $proto (@dtls)
752                                 {
753                                 $disabled{$proto} = "option(dtls)";
754                                 }
755                         $disabled{"dtls"} = "option(dtls)";
756                         }
757                 elsif ($1 eq "ssl")
758                         {
759                         # Last one of its kind
760                         $disabled{"ssl3"} = "option(ssl)";
761                         }
762                 elsif ($1 eq "tls")
763                         {
764                         # XXX: Tests will fail if all SSL/TLS
765                         # protocols are disabled.
766                         foreach my $proto (@tls)
767                                 {
768                                 $disabled{$proto} = "option(tls)";
769                                 }
770                         }
771                 elsif ($1 eq "static-engine")
772                         {
773                         delete $disabled{"dynamic-engine"};
774                         }
775                 elsif ($1 eq "dynamic-engine")
776                         {
777                         $disabled{"dynamic-engine"} = "option";
778                         }
779                 elsif (exists $deprecated_disablables{$1})
780                         {
781                         $deprecated_options{$_} = 1;
782                         if (defined $deprecated_disablables{$1})
783                                 {
784                                 $disabled{$deprecated_disablables{$1}} = "option";
785                                 }
786                         }
787                 elsif ($1 =~ m|hw(?:-.+)|) # deprecate hw options in regexp form
788                         {
789                         $deprecated_options{$_} = 1;
790                         }
791                 else
792                         {
793                         $disabled{$1} = "option";
794                         }
795                 # No longer an automatic choice
796                 $auto_threads = 0 if ($1 eq "threads");
797                 }
798         elsif (/^enable-(.+)$/)
799                 {
800                 if ($1 eq "static-engine")
801                         {
802                         $disabled{"dynamic-engine"} = "option";
803                         }
804                 elsif ($1 eq "dynamic-engine")
805                         {
806                         delete $disabled{"dynamic-engine"};
807                         }
808                 elsif ($1 eq "zlib-dynamic")
809                         {
810                         delete $disabled{"zlib"};
811                         }
812                 my $algo = $1;
813                 delete $disabled{$algo};
814
815                 # No longer an automatic choice
816                 $auto_threads = 0 if ($1 eq "threads");
817                 }
818         elsif (/^--strict-warnings$/)
819                 {
820                 # Pretend that our strict flags is a C flag, and replace it
821                 # with the proper flags later on
822                 push @{$useradd{CFLAGS}}, '--ossl-strict-warnings';
823                 $strict_warnings=1;
824                 }
825         elsif (/^--debug$/)
826                 {
827                 $config{build_type} = "debug";
828                 }
829         elsif (/^--release$/)
830                 {
831                 $config{build_type} = "release";
832                 }
833         elsif (/^386$/)
834                 { $config{processor}=386; }
835         elsif (/^fips$/)
836                 {
837                 die "FIPS mode not supported\n";
838                 }
839         elsif (/^rsaref$/)
840                 {
841                 # No RSAref support any more since it's not needed.
842                 # The check for the option is there so scripts aren't
843                 # broken
844                 }
845         elsif (/^nofipscanistercheck$/)
846                 {
847                 die "FIPS mode not supported\n";
848                 }
849         elsif (m|^[-+/]|)
850                 {
851                 if (/^--prefix=(.*)$/)
852                         {
853                         $config{prefix}=$1;
854                         die "Directory given with --prefix MUST be absolute\n"
855                                 unless file_name_is_absolute($config{prefix});
856                         }
857                 elsif (/^--api=(.*)$/)
858                         {
859                         my $api = $1;
860                         die "Unknown API compatibility level $api"
861                                 unless defined $apitable->{$api};
862                         $config{api}=$apitable->{$api};
863                         }
864                 elsif (/^--libdir=(.*)$/)
865                         {
866                         $config{libdir}=$1;
867                         }
868                 elsif (/^--openssldir=(.*)$/)
869                         {
870                         $config{openssldir}=$1;
871                         }
872                 elsif (/^--with-zlib-lib=(.*)$/)
873                         {
874                         $withargs{zlib_lib}=$1;
875                         }
876                 elsif (/^--with-zlib-include=(.*)$/)
877                         {
878                         $withargs{zlib_include}=$1;
879                         }
880                 elsif (/^--with-fuzzer-lib=(.*)$/)
881                         {
882                         $withargs{fuzzer_lib}=$1;
883                         }
884                 elsif (/^--with-fuzzer-include=(.*)$/)
885                         {
886                         $withargs{fuzzer_include}=$1;
887                         }
888                 elsif (/^--with-rand-seed=(.*)$/)
889                         {
890                         foreach my $x (split(m|,|, $1))
891                             {
892                             die "Unknown --with-rand-seed choice $x\n"
893                                 if ! grep { $x eq $_ } @known_seed_sources;
894                             push @seed_sources, $x;
895                             }
896                         }
897                 elsif (/^--cross-compile-prefix=(.*)$/)
898                         {
899                         $user{CROSS_COMPILE}=$1;
900                         }
901                 elsif (/^--config=(.*)$/)
902                         {
903                         read_config $1;
904                         }
905                 elsif (/^-l(.*)$/)
906                         {
907                         push @{$useradd{LDLIBS}}, $_;
908                         }
909                 elsif (/^-framework$/)
910                         {
911                         push @{$useradd{LDLIBS}}, $_, shift(@argvcopy);
912                         }
913                 elsif (/^-L(.*)$/ or /^-Wl,/)
914                         {
915                         push @{$useradd{LDFLAGS}}, $_;
916                         }
917                 elsif (/^-rpath$/ or /^-R$/)
918                         # -rpath is the OSF1 rpath flag
919                         # -R is the old Solaris rpath flag
920                         {
921                         my $rpath = shift(@argvcopy) || "";
922                         $rpath .= " " if $rpath ne "";
923                         push @{$useradd{LDFLAGS}}, $_, $rpath;
924                         }
925                 elsif (/^-static$/)
926                         {
927                         push @{$useradd{LDFLAGS}}, $_;
928                         }
929                 elsif (m|^[-/]D(.*)$|)
930                         {
931                         push @{$useradd{CPPDEFINES}}, $1;
932                         }
933                 elsif (m|^[-/]I(.*)$|)
934                         {
935                         push @{$useradd{CPPINCLUDES}}, $1;
936                         }
937                 elsif (/^-Wp,$/)
938                         {
939                         push @{$useradd{CPPFLAGS}}, $1;
940                         }
941                 else    # common if (/^[-+]/), just pass down...
942                         {
943                         # Treat %xx as an ASCII code (e.g. replace %20 by a space character).
944                         # This provides a simple way to pass options with arguments separated
945                         # by spaces without quoting (e.g. -opt%20arg translates to -opt arg).
946                         $_ =~ s/%([0-9a-f]{1,2})/chr(hex($1))/gei;
947                         push @{$useradd{CFLAGS}}, $_;
948                         push @{$useradd{CXXFLAGS}}, $_;
949                         }
950                 }
951         elsif (m|^/|)
952                 {
953                 # Treat %xx as an ASCII code (e.g. replace %20 by a space character).
954                 # This provides a simple way to pass options with arguments separated
955                 # by spaces without quoting (e.g. /opt%20arg translates to /opt arg).
956                 $_ =~ s/%([0-9a-f]{1,2})/chr(hex($1))/gei;
957                 push @{$useradd{CFLAGS}}, $_;
958                 push @{$useradd{CXXFLAGS}}, $_;
959                 }
960         else
961                 {
962                 die "target already defined - $target (offending arg: $_)\n" if ($target ne "");
963                 $target=$_;
964                 }
965         unless ($_ eq $target || /^no-/ || /^disable-/)
966                 {
967                 # "no-..." follows later after implied deactivations
968                 # have been derived.  (Don't take this too seriously,
969                 # we really only write OPTIONS to the Makefile out of
970                 # nostalgia.)
971
972                 if ($config{options} eq "")
973                         { $config{options} = $_; }
974                 else
975                         { $config{options} .= " ".$_; }
976                 }
977         }
978
979 if (keys %deprecated_options)
980         {
981         warn "***** Deprecated options: ",
982                 join(", ", keys %deprecated_options), "\n";
983         }
984 if (keys %unsupported_options)
985         {
986         die "***** Unsupported options: ",
987                 join(", ", keys %unsupported_options), "\n";
988         }
989
990 # If any %useradd entry has been set, we must check that the "make
991 # variables" haven't been set.  We start by checking of any %useradd entry
992 # is set.
993 if (grep { scalar @$_ > 0 } values %useradd) {
994     # Hash of env / make variables names.  The possible values are:
995     # 1 - "make vars"
996     # 2 - %useradd entry set
997     # 3 - both set
998     my %detected_vars =
999         map { my $v = 0;
1000               $v += 1 if $cmdvars{$_};
1001               $v += 2 if @{$useradd{$_}};
1002               $_ => $v }
1003         keys %useradd;
1004
1005     # If any of the corresponding "make variables" is set, we error
1006     if (grep { $_ & 1 } values %detected_vars) {
1007         my $names = join(', ', grep { $detected_vars{$_} > 0 }
1008                                sort keys %detected_vars);
1009         die <<"_____";
1010 ***** Mixing make variables and additional compiler/linker flags as
1011 ***** configure command line option is not permitted.
1012 ***** Affected make variables: $names
1013 _____
1014     }
1015 }
1016
1017 # Check through all supported command line variables to see if any of them
1018 # were set, and canonicalise the values we got.  If no compiler or linker
1019 # flag or anything else that affects %useradd was set, we also check the
1020 # environment for values.
1021 my $anyuseradd =
1022     grep { defined $_ && (ref $_ ne 'ARRAY' || @$_) } values %useradd;
1023 foreach (keys %user) {
1024     my $value = $cmdvars{$_};
1025     $value //= env($_) unless $anyuseradd;
1026     $value //=
1027         defined $user_synonyms{$_} ? $cmdvars{$user_synonyms{$_}} : undef;
1028     $value //= defined $user_synonyms{$_} ? env($user_synonyms{$_}) : undef
1029         unless $anyuseradd;
1030
1031     if (defined $value) {
1032         if (ref $user{$_} eq 'ARRAY') {
1033             if ($_ eq 'CPPDEFINES' || $_ eq 'CPPINCLUDES') {
1034                 $user{$_} = [ split /$list_separator_re/, $value ];
1035             } else {
1036                 $user{$_} = [ $value ];
1037             }
1038         } elsif (!defined $user{$_}) {
1039             $user{$_} = $value;
1040         }
1041     }
1042 }
1043
1044 if (grep { /-rpath\b/ } ($user{LDFLAGS} ? @{$user{LDFLAGS}} : ())
1045     && !$disabled{shared}
1046     && !($disabled{asan} && $disabled{msan} && $disabled{ubsan})) {
1047     die "***** Cannot simultaneously use -rpath, shared libraries, and\n",
1048         "***** any of asan, msan or ubsan\n";
1049 }
1050
1051 sub disable {
1052     my $disable_type = shift;
1053
1054     for (@_) {
1055         $disabled{$_} = $disable_type;
1056     }
1057
1058     my @tocheckfor = (@_ ? @_ : keys %disabled);
1059     while (@tocheckfor) {
1060         my %new_tocheckfor = ();
1061         my @cascade_copy = (@disable_cascades);
1062         while (@cascade_copy) {
1063             my ($test, $descendents) =
1064                 (shift @cascade_copy, shift @cascade_copy);
1065             if (ref($test) eq "CODE" ? $test->() : defined($disabled{$test})) {
1066                 foreach (grep { !defined($disabled{$_}) } @$descendents) {
1067                     $new_tocheckfor{$_} = 1; $disabled{$_} = "cascade";
1068                 }
1069             }
1070         }
1071         @tocheckfor = (keys %new_tocheckfor);
1072     }
1073 }
1074 disable();                     # First cascade run
1075
1076 our $die = sub { die @_; };
1077 if ($target eq "TABLE") {
1078     local $die = sub { warn @_; };
1079     foreach (sort keys %table) {
1080         print_table_entry($_, "TABLE");
1081     }
1082     exit 0;
1083 }
1084
1085 if ($target eq "LIST") {
1086     foreach (sort keys %table) {
1087         print $_,"\n" unless $table{$_}->{template};
1088     }
1089     exit 0;
1090 }
1091
1092 if ($target eq "HASH") {
1093     local $die = sub { warn @_; };
1094     print "%table = (\n";
1095     foreach (sort keys %table) {
1096         print_table_entry($_, "HASH");
1097     }
1098     exit 0;
1099 }
1100
1101 print "Configuring OpenSSL version $config{full_version} ";
1102 print "for target $target\n";
1103
1104 if (scalar(@seed_sources) == 0) {
1105     print "Using os-specific seed configuration\n";
1106     push @seed_sources, 'os';
1107 }
1108 if (scalar(grep { $_ eq 'none' } @seed_sources) > 0) {
1109     die "Cannot seed with none and anything else" if scalar(@seed_sources) > 1;
1110     warn <<_____ if scalar(@seed_sources) == 1;
1111
1112 ============================== WARNING ===============================
1113 You have selected the --with-rand-seed=none option, which effectively
1114 disables automatic reseeding of the OpenSSL random generator.
1115 All operations depending on the random generator such as creating keys
1116 will not work unless the random generator is seeded manually by the
1117 application.
1118
1119 Please read the 'Note on random number generation' section in the
1120 INSTALL instructions and the RAND_DRBG(7) manual page for more details.
1121 ============================== WARNING ===============================
1122
1123 _____
1124 }
1125 push @{$config{openssl_feature_defines}},
1126      map { (my $x = $_) =~ tr|[\-a-z]|[_A-Z]|; "OPENSSL_RAND_SEED_$x" }
1127         @seed_sources;
1128
1129 # Backward compatibility?
1130 if ($target =~ m/^CygWin32(-.*)$/) {
1131     $target = "Cygwin".$1;
1132 }
1133
1134 # Support for legacy targets having a name starting with 'debug-'
1135 my ($d, $t) = $target =~ m/^(debug-)?(.*)$/;
1136 if ($d) {
1137     $config{build_type} = "debug";
1138
1139     # If we do not find debug-foo in the table, the target is set to foo.
1140     if (!$table{$target}) {
1141         $target = $t;
1142     }
1143 }
1144
1145 &usage if !$table{$target} || $table{$target}->{template};
1146
1147 $config{target} = $target;
1148 my %target = resolve_config($target);
1149
1150 foreach (keys %target_attr_translate) {
1151     $target{$target_attr_translate{$_}} = $target{$_}
1152         if $target{$_};
1153     delete $target{$_};
1154 }
1155
1156 %target = ( %{$table{DEFAULTS}}, %target );
1157
1158 my %conf_files = map { $_ => 1 } (@{$target{_conf_fname_int}});
1159 $config{conf_files} = [ sort keys %conf_files ];
1160
1161 # Using sub disable within these loops may prove fragile, so we run
1162 # a cascade afterwards
1163 foreach my $feature (@{$target{disable}}) {
1164     if (exists $deprecated_disablables{$feature}) {
1165         warn "***** config $target disables deprecated feature $feature\n";
1166     } elsif (!grep { $feature eq $_ } @disablables) {
1167         die "***** config $target disables unknown feature $feature\n";
1168     }
1169     $disabled{$feature} = 'config';
1170 }
1171 foreach my $feature (@{$target{enable}}) {
1172     if ("default" eq ($disabled{$feature} // "")) {
1173         if (exists $deprecated_disablables{$feature}) {
1174             warn "***** config $target enables deprecated feature $feature\n";
1175         } elsif (!grep { $feature eq $_ } @disablables) {
1176             die "***** config $target enables unknown feature $feature\n";
1177         }
1178         delete $disabled{$feature};
1179     }
1180 }
1181
1182 # If uplink_arch isn't defined, disable uplink
1183 $disabled{uplink} = 'no uplink_arch' unless (defined $target{uplink_arch});
1184 # If asm_arch isn't defined, disable asm
1185 $disabled{asm} = 'no asm_arch' unless (defined $target{asm_arch});
1186
1187 disable();                      # Run a cascade now
1188
1189 $target{CXXFLAGS}//=$target{CFLAGS} if $target{CXX};
1190 $target{cxxflags}//=$target{cflags} if $target{CXX};
1191 $target{exe_extension}=".exe" if ($config{target} eq "DJGPP");
1192 $target{exe_extension}=".pm"  if ($config{target} =~ /vos/);
1193
1194 # Fill %config with values from %user, and in case those are undefined or
1195 # empty, use values from %target (acting as a default).
1196 foreach (keys %user) {
1197     my $ref_type = ref $user{$_};
1198
1199     # Temporary function.  Takes an intended ref type (empty string or "ARRAY")
1200     # and a value that's to be coerced into that type.
1201     my $mkvalue = sub {
1202         my $type = shift;
1203         my $value = shift;
1204         my $undef_p = shift;
1205
1206         die "Too many arguments for \$mkvalue" if @_;
1207
1208         while (ref $value eq 'CODE') {
1209             $value = $value->();
1210         }
1211
1212         if ($type eq 'ARRAY') {
1213             return undef unless defined $value;
1214             return undef if ref $value ne 'ARRAY' && !$value;
1215             return undef if ref $value eq 'ARRAY' && !@$value;
1216             return [ $value ] unless ref $value eq 'ARRAY';
1217         }
1218         return undef unless $value;
1219         return $value;
1220     };
1221
1222     $config{$_} =
1223         $mkvalue->($ref_type, $user{$_})
1224         || $mkvalue->($ref_type, $target{$_});
1225     delete $config{$_} unless defined $config{$_};
1226 }
1227
1228 # Finish up %config by appending things the user gave us on the command line
1229 # apart from "make variables"
1230 foreach (keys %useradd) {
1231     # The must all be lists, so we assert that here
1232     die "internal error: \$useradd{$_} isn't an ARRAY\n"
1233         unless ref $useradd{$_} eq 'ARRAY';
1234
1235     if (defined $config{$_}) {
1236         push @{$config{$_}}, @{$useradd{$_}};
1237     } else {
1238         $config{$_} = [ @{$useradd{$_}} ];
1239     }
1240 }
1241 # At this point, we can forget everything about %user and %useradd,
1242 # because it's now all been merged into the corresponding $config entry
1243
1244 # Allow overriding the build file name
1245 $config{build_file} = env('BUILDFILE') || $target{build_file} || "Makefile";
1246
1247 # Make sure build_scheme is consistent.
1248 $target{build_scheme} = [ $target{build_scheme} ]
1249     if ref($target{build_scheme}) ne "ARRAY";
1250
1251 my ($builder, $builder_platform, @builder_opts) =
1252     @{$target{build_scheme}};
1253
1254 foreach my $checker (($builder_platform."-".$target{build_file}."-checker.pm",
1255                       $builder_platform."-checker.pm")) {
1256     my $checker_path = catfile($srcdir, "Configurations", $checker);
1257     if (-f $checker_path) {
1258         my $fn = $ENV{CONFIGURE_CHECKER_WARN}
1259             ? sub { warn $@; } : sub { die $@; };
1260         if (! do $checker_path) {
1261             if ($@) {
1262                 $fn->($@);
1263             } elsif ($!) {
1264                 $fn->($!);
1265             } else {
1266                 $fn->("The detected tools didn't match the platform\n");
1267             }
1268         }
1269         last;
1270     }
1271 }
1272
1273 push @{$config{defines}}, "NDEBUG"    if $config{build_type} eq "release";
1274
1275 if ($target =~ /^mingw/ && `$config{CC} --target-help 2>&1` =~ m/-mno-cygwin/m)
1276         {
1277         push @{$config{cflags}}, "-mno-cygwin";
1278         push @{$config{cxxflags}}, "-mno-cygwin" if $config{CXX};
1279         push @{$config{shared_ldflag}}, "-mno-cygwin";
1280         }
1281
1282 if ($target =~ /linux.*-mips/ && !$disabled{asm}
1283         && !grep { $_ !~ /-m(ips|arch=)/ } (@{$config{CFLAGS}})) {
1284         # minimally required architecture flags for assembly modules
1285         my $value;
1286         $value = '-mips2' if ($target =~ /mips32/);
1287         $value = '-mips3' if ($target =~ /mips64/);
1288         unshift @{$config{cflags}}, $value;
1289         unshift @{$config{cxxflags}}, $value if $config{CXX};
1290 }
1291
1292 # If threads aren't disabled, check how possible they are
1293 unless ($disabled{threads}) {
1294     if ($auto_threads) {
1295         # Enabled by default, disable it forcibly if unavailable
1296         if ($target{thread_scheme} eq "(unknown)") {
1297             disable("unavailable", 'threads');
1298         }
1299     } else {
1300         # The user chose to enable threads explicitly, let's see
1301         # if there's a chance that's possible
1302         if ($target{thread_scheme} eq "(unknown)") {
1303             # If the user asked for "threads" and we don't have internal
1304             # knowledge how to do it, [s]he is expected to provide any
1305             # system-dependent compiler options that are necessary.  We
1306             # can't truly check that the given options are correct, but
1307             # we expect the user to know what [s]He is doing.
1308             if (!@{$config{CFLAGS}} && !@{$config{CPPDEFINES}}) {
1309                 die "You asked for multi-threading support, but didn't\n"
1310                     ,"provide any system-specific compiler options\n";
1311             }
1312         }
1313     }
1314 }
1315
1316 # Find out if clang's sanitizers have been enabled with -fsanitize
1317 # flags and ensure that the corresponding %disabled elements area
1318 # removed to reflect that the sanitizers are indeed enabled.
1319 my %detected_sanitizers = ();
1320 foreach (grep /^-fsanitize=/, @{$config{CFLAGS} || []}) {
1321     (my $checks = $_) =~ s/^-fsanitize=//;
1322     foreach (split /,/, $checks) {
1323         my $d = { address       => 'asan',
1324                   undefined     => 'ubsan',
1325                   memory        => 'msan' } -> {$_};
1326         next unless defined $d;
1327
1328         $detected_sanitizers{$d} = 1;
1329         if (defined $disabled{$d}) {
1330             die "***** Conflict between disabling $d and enabling $_ sanitizer"
1331                 if $disabled{$d} ne "default";
1332             delete $disabled{$d};
1333         }
1334     }
1335 }
1336
1337 # If threads still aren't disabled, add a C macro to ensure the source
1338 # code knows about it.  Any other flag is taken care of by the configs.
1339 unless($disabled{threads}) {
1340     push @{$config{openssl_feature_defines}}, "OPENSSL_THREADS";
1341 }
1342
1343 my $no_shared_warn=0;
1344 if ($target{shared_target} eq "")
1345         {
1346         $no_shared_warn = 1
1347             if (!$disabled{shared} || !$disabled{"dynamic-engine"});
1348         disable('no-shared-target', 'pic');
1349         }
1350
1351 if ($disabled{"dynamic-engine"}) {
1352         $config{dynamic_engines} = 0;
1353 } else {
1354         $config{dynamic_engines} = 1;
1355 }
1356
1357 unless ($disabled{asan} || defined $detected_sanitizers{asan}) {
1358     push @{$config{cflags}}, "-fsanitize=address";
1359 }
1360
1361 unless ($disabled{ubsan} || defined $detected_sanitizers{ubsan}) {
1362     # -DPEDANTIC or -fnosanitize=alignment may also be required on some
1363     # platforms.
1364     push @{$config{cflags}}, "-fsanitize=undefined", "-fno-sanitize-recover=all";
1365 }
1366
1367 unless ($disabled{msan} || defined $detected_sanitizers{msan}) {
1368   push @{$config{cflags}}, "-fsanitize=memory";
1369 }
1370
1371 unless ($disabled{"fuzz-libfuzzer"} && $disabled{"fuzz-afl"}
1372         && $disabled{asan} && $disabled{ubsan} && $disabled{msan}) {
1373     push @{$config{cflags}}, "-fno-omit-frame-pointer", "-g";
1374     push @{$config{cxxflags}}, "-fno-omit-frame-pointer", "-g" if $config{CXX};
1375 }
1376 #
1377 # Platform fix-ups
1378 #
1379
1380 # This saves the build files from having to check
1381 if ($disabled{pic})
1382         {
1383         foreach (qw(shared_cflag shared_cxxflag shared_cppflag
1384                     shared_defines shared_includes shared_ldflag
1385                     module_cflags module_cxxflags module_cppflags
1386                     module_defines module_includes module_lflags))
1387                 {
1388                 delete $config{$_};
1389                 $target{$_} = "";
1390                 }
1391         }
1392 else
1393         {
1394         push @{$config{lib_defines}}, "OPENSSL_PIC";
1395         }
1396
1397 if ($target{sys_id} ne "")
1398         {
1399         push @{$config{openssl_sys_defines}}, "OPENSSL_SYS_$target{sys_id}";
1400         }
1401
1402 my %predefined_C = compiler_predefined($config{CROSS_COMPILE}.$config{CC});
1403 my %predefined_CXX = $config{CXX}
1404     ? compiler_predefined($config{CROSS_COMPILE}.$config{CXX})
1405     : ();
1406
1407 unless ($disabled{asm}) {
1408     # big endian systems can use ELFv2 ABI
1409     if ($target eq "linux-ppc64") {
1410         $target{perlasm_scheme} = "linux64v2" if ($predefined_C{_CALL_ELF} == 2);
1411     }
1412 }
1413
1414 # Check for makedepend capabilities.
1415 if (!$disabled{makedepend}) {
1416     if ($config{target} =~ /^(VC|vms)-/) {
1417         # For VC- and vms- targets, there's nothing more to do here.  The
1418         # functionality is hard coded in the corresponding build files for
1419         # cl (Windows) and CC/DECC (VMS).
1420     } elsif (($predefined_C{__GNUC__} // -1) >= 3
1421              && !($predefined_C{__APPLE_CC__} && !$predefined_C{__clang__})) {
1422         # We know that GNU C version 3 and up as well as all clang
1423         # versions support dependency generation, but Xcode did not
1424         # handle $cc -M before clang support (but claims __GNUC__ = 3)
1425         $config{makedepprog} = "\$(CROSS_COMPILE)$config{CC}";
1426     } else {
1427         # In all other cases, we look for 'makedepend', and disable the
1428         # capability if not found.
1429         $config{makedepprog} = which('makedepend');
1430         disable('unavailable', 'makedepend') unless $config{makedepprog};
1431     }
1432 }
1433
1434 if (!$disabled{asm} && !$predefined_C{__MACH__} && $^O ne 'VMS') {
1435     # probe for -Wa,--noexecstack option...
1436     if ($predefined_C{__clang__}) {
1437         # clang has builtin assembler, which doesn't recognize --help,
1438         # but it apparently recognizes the option in question on all
1439         # supported platforms even when it's meaningless. In other words
1440         # probe would fail, but probed option always accepted...
1441         push @{$config{cflags}}, "-Wa,--noexecstack", "-Qunused-arguments";
1442     } else {
1443         my $cc = $config{CROSS_COMPILE}.$config{CC};
1444         open(PIPE, "$cc -Wa,--help -c -o null.$$.o -x assembler /dev/null 2>&1 |");
1445         while(<PIPE>) {
1446             if (m/--noexecstack/) {
1447                 push @{$config{cflags}}, "-Wa,--noexecstack";
1448                 last;
1449             }
1450         }
1451         close(PIPE);
1452         unlink("null.$$.o");
1453     }
1454 }
1455
1456 # Deal with bn_ops ###################################################
1457
1458 $config{bn_ll}                  =0;
1459 my $def_int="unsigned int";
1460 $config{rc4_int}                =$def_int;
1461 ($config{b64l},$config{b64},$config{b32})=(0,0,1);
1462
1463 my $count = 0;
1464 foreach (sort split(/\s+/,$target{bn_ops})) {
1465     $count++ if /SIXTY_FOUR_BIT|SIXTY_FOUR_BIT_LONG|THIRTY_TWO_BIT/;
1466     $config{bn_ll}=1                            if $_ eq 'BN_LLONG';
1467     $config{rc4_int}="unsigned char"            if $_ eq 'RC4_CHAR';
1468     ($config{b64l},$config{b64},$config{b32})
1469         =(0,1,0)                                if $_ eq 'SIXTY_FOUR_BIT';
1470     ($config{b64l},$config{b64},$config{b32})
1471         =(1,0,0)                                if $_ eq 'SIXTY_FOUR_BIT_LONG';
1472     ($config{b64l},$config{b64},$config{b32})
1473         =(0,0,1)                                if $_ eq 'THIRTY_TWO_BIT';
1474 }
1475 die "Exactly one of SIXTY_FOUR_BIT|SIXTY_FOUR_BIT_LONG|THIRTY_TWO_BIT can be set in bn_ops\n"
1476     if $count > 1;
1477
1478 $config{api} = $config{major} * 10000 + $config{minor} * 100
1479     unless $config{api};
1480 foreach (keys %$apitable) {
1481     $disabled{"deprecated-$_"} = "deprecation"
1482         if $disabled{deprecated} && $config{api} >= $apitable->{$_};
1483 }
1484
1485 disable();                      # Run a cascade now
1486
1487 # Hack cflags for better warnings (dev option) #######################
1488
1489 # "Stringify" the C and C++ flags string.  This permits it to be made part of
1490 # a string and works as well on command lines.
1491 $config{cflags} = [ map { (my $x = $_) =~ s/([\\\"])/\\$1/g; $x }
1492                         @{$config{cflags}} ];
1493 $config{cxxflags} = [ map { (my $x = $_) =~ s/([\\\"])/\\$1/g; $x }
1494                           @{$config{cxxflags}} ] if $config{CXX};
1495
1496 $config{openssl_api_defines} = [
1497     "OPENSSL_CONFIGURED_API=".$config{api},
1498 ];
1499
1500 my @strict_warnings_collection=();
1501 if ($strict_warnings)
1502         {
1503         my $wopt;
1504         my $gccver = $predefined_C{__GNUC__} // -1;
1505
1506         if ($gccver >= 4)
1507                 {
1508                 push @strict_warnings_collection, @gcc_devteam_warn;
1509                 push @strict_warnings_collection, @clang_devteam_warn
1510                     if (defined($predefined_C{__clang__}));
1511                 }
1512         elsif ($config{target} =~ /^VC-/)
1513                 {
1514                 push @strict_warnings_collection, @cl_devteam_warn;
1515                 }
1516         else
1517                 {
1518                 warn "WARNING --strict-warnings requires gcc[>=4] or gcc-alike, or MSVC"
1519                 }
1520         }
1521
1522 if (grep { $_ =~ /(?:^|\s)-static(?:\s|$)/ } @{$config{LDFLAGS}}) {
1523     disable('static', 'pic', 'threads');
1524 }
1525
1526 $config{CFLAGS} = [ map { $_ eq '--ossl-strict-warnings'
1527                               ? @strict_warnings_collection
1528                               : ( $_ ) }
1529                     @{$config{CFLAGS}} ];
1530
1531 unless ($disabled{afalgeng}) {
1532     $config{afalgeng}="";
1533     if (grep { $_ eq 'afalgeng' } @{$target{enable}}) {
1534         my $minver = 4*10000 + 1*100 + 0;
1535         if ($config{CROSS_COMPILE} eq "") {
1536             my $verstr = `uname -r`;
1537             my ($ma, $mi1, $mi2) = split("\\.", $verstr);
1538             ($mi2) = $mi2 =~ /(\d+)/;
1539             my $ver = $ma*10000 + $mi1*100 + $mi2;
1540             if ($ver < $minver) {
1541                 disable('too-old-kernel', 'afalgeng');
1542             } else {
1543                 push @{$config{engdirs}}, "afalg";
1544             }
1545         } else {
1546             disable('cross-compiling', 'afalgeng');
1547         }
1548     } else {
1549         disable('not-linux', 'afalgeng');
1550     }
1551 }
1552
1553 unless ($disabled{devcryptoeng}) {
1554     if ($target =~ m/^BSD/) {
1555         my $maxver = 5*100 + 7;
1556         my $sysstr = `uname -s`;
1557         my $verstr = `uname -r`;
1558         $sysstr =~ s|\R$||;
1559         $verstr =~ s|\R$||;
1560         my ($ma, $mi, @rest) = split m|\.|, $verstr;
1561         my $ver = $ma*100 + $mi;
1562         if ($sysstr eq 'OpenBSD' && $ver >= $maxver) {
1563             disable('too-new-kernel', 'devcryptoeng');
1564         }
1565     }
1566 }
1567
1568 unless ($disabled{ktls}) {
1569     $config{ktls}="";
1570     if ($target =~ m/^linux/) {
1571         my $usr = "/usr/$config{cross_compile_prefix}";
1572         chop($usr);
1573         if ($config{cross_compile_prefix} eq "") {
1574             $usr = "/usr";
1575         }
1576         my $minver = (4 << 16) + (13 << 8) + 0;
1577         my @verstr = split(" ",`cat $usr/include/linux/version.h | grep LINUX_VERSION_CODE`);
1578
1579         if ($verstr[2] < $minver) {
1580             disable('too-old-kernel', 'ktls');
1581         }
1582     } elsif ($target =~ m/^BSD/) {
1583         my $cc = $config{CROSS_COMPILE}.$config{CC};
1584         system("printf '#include <sys/types.h>\n#include <sys/ktls.h>' | $cc -E - >/dev/null 2>&1");
1585         if ($? != 0) {
1586             disable('too-old-freebsd', 'ktls');
1587         }
1588     } else {
1589         disable('not-linux-or-freebsd', 'ktls');
1590     }
1591 }
1592
1593 push @{$config{openssl_other_defines}}, "OPENSSL_NO_KTLS" if ($disabled{ktls});
1594
1595 # Get the extra flags used when building shared libraries and modules.  We
1596 # do this late because some of them depend on %disabled.
1597
1598 # Make the flags to build DSOs the same as for shared libraries unless they
1599 # are already defined
1600 $target{module_cflags} = $target{shared_cflag} unless defined $target{module_cflags};
1601 $target{module_cxxflags} = $target{shared_cxxflag} unless defined $target{module_cxxflags};
1602 $target{module_ldflags} = $target{shared_ldflag} unless defined $target{module_ldflags};
1603 {
1604     my $shared_info_pl =
1605         catfile(dirname($0), "Configurations", "shared-info.pl");
1606     my %shared_info = read_eval_file($shared_info_pl);
1607     push @{$target{_conf_fname_int}}, $shared_info_pl;
1608     my $si = $target{shared_target};
1609     while (ref $si ne "HASH") {
1610         last if ! defined $si;
1611         if (ref $si eq "CODE") {
1612             $si = $si->();
1613         } else {
1614             $si = $shared_info{$si};
1615         }
1616     }
1617
1618     # Some of the 'shared_target' values don't have any entries in
1619     # %shared_info.  That's perfectly fine, AS LONG AS the build file
1620     # template knows how to handle this.  That is currently the case for
1621     # Windows and VMS.
1622     if (defined $si) {
1623         # Just as above, copy certain shared_* attributes to the corresponding
1624         # module_ attribute unless the latter is already defined
1625         $si->{module_cflags} = $si->{shared_cflag} unless defined $si->{module_cflags};
1626         $si->{module_cxxflags} = $si->{shared_cxxflag} unless defined $si->{module_cxxflags};
1627         $si->{module_ldflags} = $si->{shared_ldflag} unless defined $si->{module_ldflags};
1628         foreach (sort keys %$si) {
1629             $target{$_} = defined $target{$_}
1630                 ? add($si->{$_})->($target{$_})
1631                 : $si->{$_};
1632         }
1633     }
1634 }
1635
1636 # ALL MODIFICATIONS TO %disabled, %config and %target MUST BE DONE FROM HERE ON
1637
1638 ######################################################################
1639 # Build up information for skipping certain directories depending on disabled
1640 # features, as well as setting up macros for disabled features.
1641
1642 # This is a tentative database of directories to skip.  Some entries may not
1643 # correspond to anything real, but that's ok, they will simply be ignored.
1644 # The actual processing of these entries is done in the build.info lookup
1645 # loop further down.
1646 #
1647 # The key is a Unix formatted path in the source tree, the value is an index
1648 # into %disabled_info, so any existing path gets added to a corresponding
1649 # 'skipped' entry in there with the list of skipped directories.
1650 my %skipdir = ();
1651 my %disabled_info = ();         # For configdata.pm
1652 foreach my $what (sort keys %disabled) {
1653     # There are deprecated disablables that translate to themselves.
1654     # They cause disabling cascades, but should otherwise not regiter.
1655     next if $deprecated_disablables{$what};
1656     # The generated $disabled{"deprecated-x.y"} entries are special
1657     # and treated properly elsewhere
1658     next if $what =~ m|^deprecated-|;
1659
1660     $config{options} .= " no-$what";
1661
1662     if (!grep { $what eq $_ } ( 'buildtest-c++', 'fips', 'threads', 'shared',
1663                                 'module', 'pic', 'dynamic-engine', 'makedepend',
1664                                 'zlib-dynamic', 'zlib', 'sse2', 'legacy' )) {
1665         (my $WHAT = uc $what) =~ s|-|_|g;
1666         my $skipdir = $what;
1667
1668         # fix-up crypto/directory name(s)
1669         $skipdir = "ripemd" if $what eq "rmd160";
1670         $skipdir = "whrlpool" if $what eq "whirlpool";
1671
1672         my $macro = $disabled_info{$what}->{macro} = "OPENSSL_NO_$WHAT";
1673         push @{$config{openssl_feature_defines}}, $macro;
1674
1675         $skipdir{engines} = $what if $what eq 'engine';
1676         $skipdir{"crypto/$skipdir"} = $what
1677             unless $what eq 'async' || $what eq 'err' || $what eq 'dso';
1678     }
1679 }
1680
1681 if ($disabled{"dynamic-engine"}) {
1682     push @{$config{openssl_feature_defines}}, "OPENSSL_NO_DYNAMIC_ENGINE";
1683 } else {
1684     push @{$config{openssl_feature_defines}}, "OPENSSL_NO_STATIC_ENGINE";
1685 }
1686
1687 # If we use the unified build, collect information from build.info files
1688 my %unified_info = ();
1689
1690 my $buildinfo_debug = defined($ENV{CONFIGURE_DEBUG_BUILDINFO});
1691 if ($builder eq "unified") {
1692     use Text::Template 1.46;
1693
1694     sub cleandir {
1695         my $base = shift;
1696         my $dir = shift;
1697         my $relativeto = shift || ".";
1698
1699         $dir = catdir($base,$dir) unless isabsolute($dir);
1700
1701         # Make sure the directories we're building in exists
1702         mkpath($dir);
1703
1704         my $res = abs2rel(absolutedir($dir), rel2abs($relativeto));
1705         #print STDERR "DEBUG[cleandir]: $dir , $base => $res\n";
1706         return $res;
1707     }
1708
1709     sub cleanfile {
1710         my $base = shift;
1711         my $file = shift;
1712         my $relativeto = shift || ".";
1713
1714         $file = catfile($base,$file) unless isabsolute($file);
1715
1716         my $d = dirname($file);
1717         my $f = basename($file);
1718
1719         # Make sure the directories we're building in exists
1720         mkpath($d);
1721
1722         my $res = abs2rel(catfile(absolutedir($d), $f), rel2abs($relativeto));
1723         #print STDERR "DEBUG[cleanfile]: $d , $f => $res\n";
1724         return $res;
1725     }
1726
1727     # Store the name of the template file we will build the build file from
1728     # in %config.  This may be useful for the build file itself.
1729     my @build_file_template_names =
1730         ( $builder_platform."-".$target{build_file}.".tmpl",
1731           $target{build_file}.".tmpl" );
1732     my @build_file_templates = ();
1733
1734     # First, look in the user provided directory, if given
1735     if (defined env($local_config_envname)) {
1736         @build_file_templates =
1737             map {
1738                 if ($^O eq 'VMS') {
1739                     # VMS environment variables are logical names,
1740                     # which can be used as is
1741                     $local_config_envname . ':' . $_;
1742                 } else {
1743                     catfile(env($local_config_envname), $_);
1744                 }
1745             }
1746             @build_file_template_names;
1747     }
1748     # Then, look in our standard directory
1749     push @build_file_templates,
1750         ( map { cleanfile($srcdir, catfile("Configurations", $_), $blddir) }
1751           @build_file_template_names );
1752
1753     my $build_file_template;
1754     for $_ (@build_file_templates) {
1755         $build_file_template = $_;
1756         last if -f $build_file_template;
1757
1758         $build_file_template = undef;
1759     }
1760     if (!defined $build_file_template) {
1761         die "*** Couldn't find any of:\n", join("\n", @build_file_templates), "\n";
1762     }
1763     $config{build_file_templates}
1764       = [ cleanfile($srcdir, catfile("Configurations", "common0.tmpl"),
1765                     $blddir),
1766           $build_file_template,
1767           cleanfile($srcdir, catfile("Configurations", "common.tmpl"),
1768                     $blddir) ];
1769
1770     my @build_dirs = ( [ ] );   # current directory
1771
1772     $config{build_infos} = [ ];
1773
1774     my %ordinals = ();
1775     while (@build_dirs) {
1776         my @curd = @{shift @build_dirs};
1777         my $sourced = catdir($srcdir, @curd);
1778         my $buildd = catdir($blddir, @curd);
1779
1780         my $unixdir = join('/', @curd);
1781         if (exists $skipdir{$unixdir}) {
1782             my $what = $skipdir{$unixdir};
1783             push @{$disabled_info{$what}->{skipped}}, catdir(@curd);
1784             next;
1785         }
1786
1787         mkpath($buildd);
1788
1789         my $f = 'build.info';
1790         # The basic things we're trying to build
1791         my @programs = ();
1792         my @libraries = ();
1793         my @modules = ();
1794         my @scripts = ();
1795
1796         my %sources = ();
1797         my %shared_sources = ();
1798         my %includes = ();
1799         my %defines = ();
1800         my %depends = ();
1801         my %generate = ();
1802         my %htmldocs = ();
1803         my %mandocs = ();
1804
1805         # Support for $variablename in build.info files.
1806         # Embedded perl code is the ultimate master, still.  If its output
1807         # contains a dollar sign, it had better be escaped, or it will be
1808         # taken for a variable name prefix.
1809         my %variables = ();
1810         # Variable name syntax
1811         my $variable_name_re = qr/(?P<VARIABLE>[[:alpha:]][[:alnum:]_]*)/;
1812         # Value modifier syntaxes
1813         my $variable_subst_re = qr/\/(?P<RE>(?:\\\/|.)*?)\/(?P<SUBST>.*?)/;
1814         # Put it all together
1815         my $variable_re = qr/\$
1816                              (?|
1817                                  # Simple case, just the name
1818                                  ${variable_name_re}
1819                              |
1820                                  # Expressive case, with braces and possible
1821                                  # modifier expressions
1822                                  \{
1823                                  ${variable_name_re}
1824                                  (?:
1825                                      # Pile on modifier expressions,
1826                                      # separated by |
1827                                      ${variable_subst_re}
1828                                  )
1829                                  \}
1830                              )/x;
1831         my $expand_variables = sub {
1832             my $value = '';
1833             my $value_rest = shift;
1834
1835             if ($ENV{CONFIGURE_DEBUG_VARIABLE_EXPAND}) {
1836                 print STDERR
1837                     "DEBUG[\$expand_variables] Parsed '$value_rest' ...\n"
1838             }
1839             while ($value_rest =~ /(?<!\\)${variable_re}/) {
1840                 $value_rest = $';
1841                 $value .= $`;
1842
1843                 my $variable_value = $variables{$+{VARIABLE}};
1844
1845                 # Process modifier expressions, if present
1846                 if (defined $+{RE}) {
1847                     # We must save important %+ values, because the s///
1848                     # below clears them
1849                     my $re = $+{RE};
1850                     my $subst = $+{SUBST};
1851
1852                     $variable_value =~ s/\Q$re\E/$subst/g;
1853
1854                     if ($ENV{CONFIGURE_DEBUG_VARIABLE_EXPAND}) {
1855                         print STDERR
1856                             "DEBUG[\$expand_variables] ... and substituted ",
1857                             "'$re' with '$subst'\n";
1858                     }
1859                 }
1860
1861                 $value .= $variable_value;
1862             }
1863             if ($ENV{CONFIGURE_DEBUG_VARIABLE_EXPAND}) {
1864                 print STDERR
1865                     "DEBUG[\$expand_variables] ... into: '$value$value_rest'\n";
1866             }
1867             return $value . $value_rest;
1868         };
1869
1870         # Support for attributes in build.info files
1871         my %attributes = ();
1872         my $handle_attributes = sub {
1873             my $attr_str = shift;
1874             my $ref = shift;
1875             my @goals = @_;
1876
1877             return unless defined $attr_str;
1878
1879             my @a = tokenize($attr_str, qr|\s*,\s*|);
1880             foreach my $a (@a) {
1881                 my $ac = 1;
1882                 my $ak = $a;
1883                 my $av = 1;
1884                 if ($a =~ m|^(!)?(.*?)\s* = \s*(.*?)$|) {
1885                     $ac = ! $1;
1886                     $ak = $1;
1887                     $av = $2;
1888                 }
1889                 foreach my $g (@goals) {
1890                     if ($ac) {
1891                         $$ref->{$g}->{$ak} = $av;
1892                     } else {
1893                         delete $$ref->{$g}->{$ak};
1894                     }
1895                 }
1896             }
1897         };
1898
1899         # Support for pushing values on multiple indexes of a given hash
1900         # array.
1901         my $push_to = sub {
1902             my $valueref = shift;
1903             my $index_str = shift; # May be undef or empty
1904             my $attrref = shift;   # May be undef
1905             my $attr_str = shift;
1906             my @values = @_;
1907
1908             if (defined $index_str) {
1909                 my @indexes = ( '' );
1910                 if ($index_str !~ m|^\s*$|) {
1911                     @indexes = tokenize($index_str);
1912                 }
1913                 foreach (@indexes) {
1914                     push @{$valueref->{$_}}, @values;
1915                     if (defined $attrref) {
1916                         $handle_attributes->($attr_str, \$$attrref->{$_},
1917                                              @values);
1918                     }
1919                 }
1920             } else {
1921                 push @$valueref, @values;
1922                 $handle_attributes->($attr_str, $attrref, @values)
1923                     if defined $attrref;
1924             }
1925         };
1926
1927         # We want to detect configdata.pm in the source tree, so we
1928         # don't use it if the build tree is different.
1929         my $src_configdata = cleanfile($srcdir, "configdata.pm", $blddir);
1930
1931
1932         if ($buildinfo_debug) {
1933             print STDERR "DEBUG: Reading ",catfile($sourced, $f),"\n";
1934         }
1935         push @{$config{build_infos}}, catfile(abs2rel($sourced, $blddir), $f);
1936         my $template =
1937             Text::Template->new(TYPE => 'FILE',
1938                                 SOURCE => catfile($sourced, $f),
1939                                 PREPEND => qq{use lib "$FindBin::Bin/util/perl";});
1940         die "Something went wrong with $sourced/$f: $!\n" unless $template;
1941         my @text =
1942             split /^/m,
1943             $template->fill_in(HASH => { config => \%config,
1944                                          target => \%target,
1945                                          disabled => \%disabled,
1946                                          withargs => \%withargs,
1947                                          builddir => abs2rel($buildd, $blddir),
1948                                          sourcedir => abs2rel($sourced, $blddir),
1949                                          buildtop => abs2rel($blddir, $blddir),
1950                                          sourcetop => abs2rel($srcdir, $blddir) },
1951                                DELIMITERS => [ "{-", "-}" ]);
1952
1953         # The top item of this stack has the following values
1954         # -2 positive already run and we found ELSE (following ELSIF should fail)
1955         # -1 positive already run (skip until ENDIF)
1956         # 0 negatives so far (if we're at a condition, check it)
1957         # 1 last was positive (don't skip lines until next ELSE, ELSIF or ENDIF)
1958         # 2 positive ELSE (following ELSIF should fail)
1959         my @skip = ();
1960
1961         # A few useful generic regexps
1962         my $index_re = qr/\[\s*(?P<INDEX>(?:\\.|.)*?)\s*\]/;
1963         my $cond_re = qr/\[\s*(?P<COND>(?:\\.|.)*?)\s*\]/;
1964         my $attribs_re = qr/(?:\{\s*(?P<ATTRIBS>(?:\\.|.)*?)\s*\})?/;
1965         my $value_re = qr/\s*(?P<VALUE>.*?)\s*/;
1966         collect_information(
1967             collect_from_array([ @text ],
1968                                qr/\\$/ => sub { my $l1 = shift; my $l2 = shift;
1969                                                 $l1 =~ s/\\$//; $l1.$l2 }),
1970             # Info we're looking for
1971             qr/^\s* IF ${cond_re} \s*$/x
1972             => sub {
1973                 if (! @skip || $skip[$#skip] > 0) {
1974                     push @skip, !! $expand_variables->($+{COND});
1975                 } else {
1976                     push @skip, -1;
1977                 }
1978             },
1979             qr/^\s* ELSIF ${cond_re} \s*$/x
1980             => sub { die "ELSIF out of scope" if ! @skip;
1981                      die "ELSIF following ELSE" if abs($skip[$#skip]) == 2;
1982                      $skip[$#skip] = -1 if $skip[$#skip] != 0;
1983                      $skip[$#skip] = !! $expand_variables->($+{COND})
1984                          if $skip[$#skip] == 0; },
1985             qr/^\s* ELSE \s*$/x
1986             => sub { die "ELSE out of scope" if ! @skip;
1987                      $skip[$#skip] = -2 if $skip[$#skip] != 0;
1988                      $skip[$#skip] = 2 if $skip[$#skip] == 0; },
1989             qr/^\s* ENDIF \s*$/x
1990             => sub { die "ENDIF out of scope" if ! @skip;
1991                      pop @skip; },
1992             qr/^\s* ${variable_re} \s* = ${value_re} $/x
1993             => sub {
1994                 if (!@skip || $skip[$#skip] > 0) {
1995                     $variables{$+{VARIABLE}} = $expand_variables->($+{VALUE});
1996                 }
1997             },
1998             qr/^\s* SUBDIRS \s* = ${value_re} $/x
1999             => sub {
2000                 if (!@skip || $skip[$#skip] > 0) {
2001                     foreach (tokenize($expand_variables->($+{VALUE}))) {
2002                         push @build_dirs, [ @curd, splitdir($_, 1) ];
2003                     }
2004                 }
2005             },
2006             qr/^\s* PROGRAMS ${attribs_re} \s* =  ${value_re} $/x
2007             => sub { $push_to->(\@programs, undef,
2008                                 \$attributes{programs}, $+{ATTRIBS},
2009                                 tokenize($expand_variables->($+{VALUE})))
2010                          if !@skip || $skip[$#skip] > 0; },
2011             qr/^\s* LIBS ${attribs_re} \s* =  ${value_re} $/x
2012             => sub { $push_to->(\@libraries, undef,
2013                                 \$attributes{libraries}, $+{ATTRIBS},
2014                                 tokenize($expand_variables->($+{VALUE})))
2015                          if !@skip || $skip[$#skip] > 0; },
2016             qr/^\s* MODULES ${attribs_re} \s* =  ${value_re} $/x
2017             => sub { $push_to->(\@modules, undef,
2018                                 \$attributes{modules}, $+{ATTRIBS},
2019                                 tokenize($expand_variables->($+{VALUE})))
2020                          if !@skip || $skip[$#skip] > 0; },
2021             qr/^\s* SCRIPTS ${attribs_re} \s* =  ${value_re} $/x
2022             => sub { $push_to->(\@scripts, undef,
2023                                 \$attributes{scripts}, $+{ATTRIBS},
2024                                 tokenize($expand_variables->($+{VALUE})))
2025                          if !@skip || $skip[$#skip] > 0; },
2026             qr/^\s* HTMLDOCS ${index_re} = ${value_re} $/x
2027             => sub { $push_to->(\%htmldocs, $expand_variables->($+{INDEX}),
2028                                 undef, undef,
2029                                 tokenize($expand_variables->($+{VALUE})))
2030                          if !@skip || $skip[$#skip] > 0; },
2031             qr/^\s* MANDOCS ${index_re} = ${value_re} $/x
2032             => sub { $push_to->(\%mandocs, $expand_variables->($+{INDEX}),
2033                                 undef, undef,
2034                                 tokenize($expand_variables->($+{VALUE})))
2035                          if !@skip || $skip[$#skip] > 0; },
2036             qr/^\s* SOURCE ${index_re} = ${value_re} $/x
2037             => sub { $push_to->(\%sources, $expand_variables->($+{INDEX}),
2038                                 undef, undef,
2039                                 tokenize($expand_variables->($+{VALUE})))
2040                          if !@skip || $skip[$#skip] > 0; },
2041             qr/^\s* SHARED_SOURCE ${index_re} = ${value_re} $/x
2042             => sub { $push_to->(\%shared_sources, $expand_variables->($+{INDEX}),
2043                                 undef, undef,
2044                                 tokenize($expand_variables->($+{VALUE})))
2045                          if !@skip || $skip[$#skip] > 0; },
2046             qr/^\s* INCLUDE ${index_re} = ${value_re} $/x
2047             => sub { $push_to->(\%includes, $expand_variables->($+{INDEX}),
2048                                 undef, undef,
2049                                 tokenize($expand_variables->($+{VALUE})))
2050                          if !@skip || $skip[$#skip] > 0; },
2051             qr/^\s* DEFINE ${index_re} = ${value_re} $/x
2052             => sub { $push_to->(\%defines, $expand_variables->($+{INDEX}),
2053                                 undef, undef,
2054                                 tokenize($expand_variables->($+{VALUE})))
2055                          if !@skip || $skip[$#skip] > 0; },
2056             qr/^\s* DEPEND ${index_re} ${attribs_re} = ${value_re} $/x
2057             => sub { $push_to->(\%depends, $expand_variables->($+{INDEX}),
2058                                 \$attributes{depends}, $+{ATTRIBS},
2059                                 tokenize($expand_variables->($+{VALUE})))
2060                          if !@skip || $skip[$#skip] > 0; },
2061             qr/^\s* GENERATE ${index_re} = ${value_re} $/x
2062             => sub { $push_to->(\%generate, $expand_variables->($+{INDEX}),
2063                                 undef, undef, $+{VALUE})
2064                          if !@skip || $skip[$#skip] > 0; },
2065             qr/^\s* (?:\#.*)? $/x => sub { },
2066             "OTHERWISE" => sub { die "Something wrong with this line:\n$_\nat $sourced/$f" },
2067             "BEFORE" => sub {
2068                 if ($buildinfo_debug) {
2069                     print STDERR "DEBUG: Parsing ",join(" ", @_),"\n";
2070                     print STDERR "DEBUG: ... before parsing, skip stack is ",join(" ", map { int($_) } @skip),"\n";
2071                 }
2072             },
2073             "AFTER" => sub {
2074                 if ($buildinfo_debug) {
2075                     print STDERR "DEBUG: .... after parsing, skip stack is ",join(" ", map { int($_) } @skip),"\n";
2076                 }
2077             },
2078             );
2079         die "runaway IF?" if (@skip);
2080
2081         if (grep { defined $attributes{modules}->{$_}->{engine} } keys %attributes
2082                 and !$config{dynamic_engines}) {
2083             die <<"EOF"
2084 ENGINES can only be used if configured with 'dynamic-engine'.
2085 This is usually a fault in a build.info file.
2086 EOF
2087         }
2088
2089         {
2090             my %infos = ( programs  => [ @programs  ],
2091                           libraries => [ @libraries ],
2092                           modules   => [ @modules   ],
2093                           scripts   => [ @scripts   ] );
2094             foreach my $k (keys %infos) {
2095                 foreach (@{$infos{$k}}) {
2096                     my $item = cleanfile($buildd, $_, $blddir);
2097                     $unified_info{$k}->{$item} = 1;
2098
2099                     # Fix up associated attributes
2100                     $unified_info{attributes}->{$k}->{$item} =
2101                         $attributes{$k}->{$_}
2102                         if defined $attributes{$k}->{$_};
2103                 }
2104             }
2105         }
2106
2107         # Check that we haven't defined any library as both shared and
2108         # explicitly static.  That is forbidden.
2109         my @doubles = ();
2110         foreach (grep /\.a$/, keys %{$unified_info{libraries}}) {
2111             (my $l = $_) =~ s/\.a$//;
2112             push @doubles, $l if defined $unified_info{libraries}->{$l};
2113         }
2114         die "these libraries are both explicitly static and shared:\n  ",
2115             join(" ", @doubles), "\n"
2116             if @doubles;
2117
2118         foreach (keys %sources) {
2119             my $dest = $_;
2120             my $ddest = cleanfile($buildd, $_, $blddir);
2121             foreach (@{$sources{$dest}}) {
2122                 my $s = cleanfile($sourced, $_, $blddir);
2123
2124                 # If it isn't in the source tree, we assume it's generated
2125                 # in the build tree
2126                 if ($s eq $src_configdata || ! -f $s || $generate{$_}) {
2127                     $s = cleanfile($buildd, $_, $blddir);
2128                 }
2129                 # We recognise C++, C and asm files
2130                 if ($s =~ /\.(cc|cpp|c|s|S)$/) {
2131                     my $o = $_;
2132                     $o =~ s/\.[csS]$/.o/; # C and assembler
2133                     $o =~ s/\.(cc|cpp)$/_cc.o/; # C++
2134                     $o = cleanfile($buildd, $o, $blddir);
2135                     $unified_info{sources}->{$ddest}->{$o} = -1;
2136                     $unified_info{sources}->{$o}->{$s} = -1;
2137                 } elsif ($s =~ /\.rc$/) {
2138                     # We also recognise resource files
2139                     my $o = $_;
2140                     $o =~ s/\.rc$/.res/; # Resource configuration
2141                     my $o = cleanfile($buildd, $o, $blddir);
2142                     $unified_info{sources}->{$ddest}->{$o} = -1;
2143                     $unified_info{sources}->{$o}->{$s} = -1;
2144                 } else {
2145                     $unified_info{sources}->{$ddest}->{$s} = 1;
2146                 }
2147             }
2148         }
2149
2150         foreach (keys %shared_sources) {
2151             my $dest = $_;
2152             my $ddest = cleanfile($buildd, $_, $blddir);
2153             foreach (@{$shared_sources{$dest}}) {
2154                 my $s = cleanfile($sourced, $_, $blddir);
2155
2156                 # If it isn't in the source tree, we assume it's generated
2157                 # in the build tree
2158                 if ($s eq $src_configdata || ! -f $s || $generate{$_}) {
2159                     $s = cleanfile($buildd, $_, $blddir);
2160                 }
2161
2162                 if ($s =~ /\.(cc|cpp|c|s|S)$/) {
2163                     # We recognise C++, C and asm files
2164                     my $o = $_;
2165                     $o =~ s/\.[csS]$/.o/; # C and assembler
2166                     $o =~ s/\.(cc|cpp)$/_cc.o/; # C++
2167                     $o = cleanfile($buildd, $o, $blddir);
2168                     $unified_info{shared_sources}->{$ddest}->{$o} = -1;
2169                     $unified_info{sources}->{$o}->{$s} = -1;
2170                 } elsif ($s =~ /\.rc$/) {
2171                     # We also recognise resource files
2172                     my $o = $_;
2173                     $o =~ s/\.rc$/.res/; # Resource configuration
2174                     my $o = cleanfile($buildd, $o, $blddir);
2175                     $unified_info{shared_sources}->{$ddest}->{$o} = -1;
2176                     $unified_info{sources}->{$o}->{$s} = -1;
2177                 } elsif ($s =~ /\.ld$/) {
2178                     # We also recognise linker scripts (or corresponding)
2179                     # We know they are generated files
2180                     my $ld = cleanfile($buildd, $_, $blddir);
2181                     $unified_info{shared_sources}->{$ddest}->{$ld} = 1;
2182                 } else {
2183                     die "unrecognised source file type for shared library: $s\n";
2184                 }
2185             }
2186         }
2187
2188         foreach (keys %generate) {
2189             my $dest = $_;
2190             my $ddest = cleanfile($buildd, $_, $blddir);
2191             die "more than one generator for $dest: "
2192                 ,join(" ", @{$generate{$_}}),"\n"
2193                 if scalar @{$generate{$_}} > 1;
2194             my @generator = split /\s+/, $generate{$dest}->[0];
2195             my $gen = $generator[0];
2196             $generator[0] = cleanfile($sourced, $gen, $blddir);
2197
2198             # If the generator isn't in the source tree, we assume it's
2199             # generated in the build tree
2200             if ($generate{$gen}) {
2201                 $generator[0] = cleanfile($buildd, $gen, $blddir);
2202             }
2203
2204             $unified_info{generate}->{$ddest} = [ @generator ];
2205         }
2206
2207         foreach (keys %depends) {
2208             my $dest = $_;
2209             my $ddest = $dest eq "" ? "" : cleanfile($sourced, $_, $blddir);
2210
2211             # If the destination doesn't exist in source, it can only be
2212             # a generated file in the build tree.
2213             if ($ddest ne "" && ($ddest eq $src_configdata || ! -f $ddest)) {
2214                 $ddest = cleanfile($buildd, $_, $blddir);
2215             }
2216             foreach (@{$depends{$dest}}) {
2217                 my $d = cleanfile($sourced, $_, $blddir);
2218
2219                 # If we know it's generated, or assume it is because we can't
2220                 # find it in the source tree, we set file we depend on to be
2221                 # in the build tree rather than the source tree, and assume
2222                 # and that there are lines to build it in a BEGINRAW..ENDRAW
2223                 # section or in the Makefile template.
2224                 if ($d eq $src_configdata
2225                     || ! -f $d
2226                     || (grep { $d eq $_ }
2227                         map { cleanfile($srcdir, $_, $blddir) }
2228                         grep { /\.h$/ } keys %{$unified_info{generate}})) {
2229                     $d = cleanfile($buildd, $_, $blddir);
2230                 }
2231                 # Take note if the file to depend on is being renamed
2232                 # Take extra care with files ending with .a, they should
2233                 # be treated without that extension, and the extension
2234                 # should be added back after treatment.
2235                 $d =~ /(\.a)?$/;
2236                 my $e = $1 // "";
2237                 $d = $`.$e;
2238                 $unified_info{depends}->{$ddest}->{$d} = 1;
2239
2240                 # Fix up associated attributes
2241                 $unified_info{attributes}->{depends}->{$ddest}->{$d} =
2242                     $attributes{depends}->{$dest}->{$_}
2243                     if defined $attributes{depends}->{$dest}->{$_};
2244             }
2245         }
2246
2247         foreach (keys %includes) {
2248             my $dest = $_;
2249             my $ddest = cleanfile($sourced, $_, $blddir);
2250
2251             # If the destination doesn't exist in source, it can only be
2252             # a generated file in the build tree.
2253             if ($ddest eq $src_configdata || ! -f $ddest) {
2254                 $ddest = cleanfile($buildd, $_, $blddir);
2255             }
2256             foreach (@{$includes{$dest}}) {
2257                 my $is = cleandir($sourced, $_, $blddir);
2258                 my $ib = cleandir($buildd, $_, $blddir);
2259                 push @{$unified_info{includes}->{$ddest}->{source}}, $is
2260                     unless grep { $_ eq $is } @{$unified_info{includes}->{$ddest}->{source}};
2261                 push @{$unified_info{includes}->{$ddest}->{build}}, $ib
2262                     unless grep { $_ eq $ib } @{$unified_info{includes}->{$ddest}->{build}};
2263             }
2264         }
2265
2266         foreach my $dest (keys %defines) {
2267             my $ddest;
2268
2269             if ($dest ne "") {
2270                 $ddest = cleanfile($sourced, $dest, $blddir);
2271
2272                 # If the destination doesn't exist in source, it can only
2273                 # be a generated file in the build tree.
2274                 if (! -f $ddest) {
2275                     $ddest = cleanfile($buildd, $dest, $blddir);
2276                     if ($unified_info{rename}->{$ddest}) {
2277                         $ddest = $unified_info{rename}->{$ddest};
2278                     }
2279                 }
2280             }
2281             foreach my $v (@{$defines{$dest}}) {
2282                 $v =~ m|^([^=]*)(=.*)?$|;
2283                 die "0 length macro name not permitted\n" if $1 eq "";
2284                 if ($dest ne "") {
2285                     die "$1 defined more than once\n"
2286                         if defined $unified_info{defines}->{$ddest}->{$1};
2287                     $unified_info{defines}->{$ddest}->{$1} = $2;
2288                 } else {
2289                     die "$1 defined more than once\n"
2290                         if grep { $v eq $_ } @{$config{defines}};
2291                     push @{$config{defines}}, $v;
2292                 }
2293             }
2294         }
2295
2296         foreach my $section (keys %htmldocs) {
2297             foreach (@{$htmldocs{$section}}) {
2298                 my $htmldocs = cleanfile($buildd, $_, $blddir);
2299                 $unified_info{htmldocs}->{$section}->{$htmldocs} = 1;
2300             }
2301         }
2302
2303         foreach my $section (keys %mandocs) {
2304             foreach (@{$mandocs{$section}}) {
2305                 my $mandocs = cleanfile($buildd, $_, $blddir);
2306                 $unified_info{mandocs}->{$section}->{$mandocs} = 1;
2307             }
2308         }
2309     }
2310
2311     my $ordinals_text = join(', ', sort keys %ordinals);
2312     warn <<"EOF" if $ordinals_text;
2313
2314 WARNING: ORDINALS were specified for $ordinals_text
2315 They are ignored and should be replaced with a combination of GENERATE,
2316 DEPEND and SHARED_SOURCE.
2317 EOF
2318
2319
2320     # Go through the sources of all libraries and check that the same basename
2321     # doesn't appear more than once.  Some static library archivers depend on
2322     # them being unique.
2323     {
2324         my $err = 0;
2325         foreach my $prod (keys %{$unified_info{libraries}}) {
2326             my @prod_sources =
2327                 map { keys %{$unified_info{sources}->{$_}} }
2328                 keys %{$unified_info{sources}->{$prod}};
2329             my %srccnt = ();
2330
2331             # Count how many times a given each source basename
2332             # appears for each product.
2333             foreach my $src (@prod_sources) {
2334                 $srccnt{basename $src}++;
2335             }
2336
2337             foreach my $src (keys %srccnt) {
2338                 if ((my $cnt = $srccnt{$src}) > 1) {
2339                     print STDERR "$src appears $cnt times for the product $prod\n";
2340                     $err++
2341                 }
2342             }
2343         }
2344         die if $err > 0;
2345     }
2346
2347     # Massage the result
2348
2349     # If we depend on a header file or a perl module, add an inclusion of
2350     # its directory to allow smoothe inclusion
2351     foreach my $dest (keys %{$unified_info{depends}}) {
2352         next if $dest eq "";
2353         foreach my $d (keys %{$unified_info{depends}->{$dest}}) {
2354             next unless $d =~ /\.(h|pm)$/;
2355             my $i = dirname($d);
2356             my $spot =
2357                 $d eq "configdata.pm" || defined($unified_info{generate}->{$d})
2358                 ? 'build' : 'source';
2359             push @{$unified_info{includes}->{$dest}->{$spot}}, $i
2360                 unless grep { $_ eq $i } @{$unified_info{includes}->{$dest}->{$spot}};
2361         }
2362     }
2363
2364     # Go through all intermediary files and change their names to something that
2365     # reflects what they will be built for.  Note that for some source files,
2366     # this leads to duplicate object files because they are used multiple times.
2367     # the goal is to rename all object files according to this scheme:
2368     #    {productname}-{midfix}-{origobjname}.[o|res]
2369     # the {midfix} is a keyword indicating the type of product, which is mostly
2370     # valuable for libraries since they come in two forms.
2371     #
2372     # This also reorganises the {sources} and {shared_sources} so that the
2373     # former only contains ALL object files that are supposed to end up in
2374     # static libraries and programs, while the latter contains ALL object files
2375     # that are supposed to end up in shared libraries and DSOs.
2376     # The main reason for having two different source structures is to allow
2377     # the same name to be used for the static and the shared variants of a
2378     # library.
2379     {
2380         # Take copies so we don't get interference from added stuff
2381         my %unified_copy = ();
2382         foreach (('sources', 'shared_sources')) {
2383             $unified_copy{$_} = { %{$unified_info{$_}} }
2384                 if defined($unified_info{$_});
2385             delete $unified_info{$_};
2386         }
2387         foreach my $prodtype (('programs', 'libraries', 'modules', 'scripts')) {
2388             # $intent serves multi purposes:
2389             # - give a prefix for the new object files names
2390             # - in the case of libraries, rearrange the object files so static
2391             #   libraries use the 'sources' structure exclusively, while shared
2392             #   libraries use the 'shared_sources' structure exclusively.
2393             my $intent = {
2394                 programs  => { bin    => { src => [ 'sources' ],
2395                                            dst => 'sources' } },
2396                 libraries => { lib    => { src => [ 'sources' ],
2397                                            dst => 'sources' },
2398                                shlib  => { prodselect =>
2399                                                sub { grep !/\.a$/, @_ },
2400                                            src => [ 'sources',
2401                                                     'shared_sources' ],
2402                                            dst => 'shared_sources' } },
2403                 modules   => { dso    => { src => [ 'sources' ],
2404                                            dst => 'sources' } },
2405                 scripts   => { script => { src => [ 'sources' ],
2406                                            dst => 'sources' } }
2407                } -> {$prodtype};
2408             foreach my $kind (keys %$intent) {
2409                 next if ($intent->{$kind}->{dst} eq 'shared_sources'
2410                              && $disabled{shared});
2411
2412                 my @src = @{$intent->{$kind}->{src}};
2413                 my $dst = $intent->{$kind}->{dst};
2414                 my $prodselect = $intent->{$kind}->{prodselect} // sub { @_ };
2415                 foreach my $prod ($prodselect->(keys %{$unified_info{$prodtype}})) {
2416                     # %prod_sources has all applicable objects as keys, and
2417                     # their corresponding sources as values
2418                     my %prod_sources =
2419                         map { $_ => [ keys %{$unified_copy{sources}->{$_}} ] }
2420                         map { keys %{$unified_copy{$_}->{$prod}} }
2421                         @src;
2422                     foreach (keys %prod_sources) {
2423                         # Only affect object files and resource files,
2424                         # the others simply get a new value
2425                         # (+1 instead of -1)
2426                         if ($_ =~ /\.(o|res)$/) {
2427                             (my $prodname = $prod) =~ s|\.a$||;
2428                             my $newobj =
2429                                 catfile(dirname($_),
2430                                         basename($prodname)
2431                                             . '-' . $kind
2432                                             . '-' . basename($_));
2433                             $unified_info{$dst}->{$prod}->{$newobj} = 1;
2434                             foreach my $src (@{$prod_sources{$_}}) {
2435                                 $unified_info{sources}->{$newobj}->{$src} = 1;
2436                             }
2437                             # Adjust dependencies
2438                             foreach my $deps (keys %{$unified_info{depends}->{$_}}) {
2439                                 $unified_info{depends}->{$_}->{$deps} = -1;
2440                                 $unified_info{depends}->{$newobj}->{$deps} = 1;
2441                             }
2442                             # Adjust includes
2443                             foreach my $k (('source', 'build')) {
2444                                 next unless
2445                                     defined($unified_info{includes}->{$_}->{$k});
2446                                 my @incs = @{$unified_info{includes}->{$_}->{$k}};
2447                                 $unified_info{includes}->{$newobj}->{$k} = [ @incs ];
2448                             }
2449                         } else {
2450                             $unified_info{$dst}->{$prod}->{$_} = 1;
2451                         }
2452                     }
2453                 }
2454             }
2455         }
2456     }
2457
2458     # At this point, we have a number of sources with the value -1.  They
2459     # aren't part of the local build and are probably meant for a different
2460     # platform, and can therefore be cleaned away.  That happens when making
2461     # %unified_info more efficient below.
2462
2463     ### Make unified_info a bit more efficient
2464     # One level structures
2465     foreach (("programs", "libraries", "modules", "scripts")) {
2466         $unified_info{$_} = [ sort keys %{$unified_info{$_}} ];
2467     }
2468     # Two level structures
2469     foreach my $l1 (("sources", "shared_sources", "ldadd", "depends",
2470                      "htmldocs", "mandocs")) {
2471         foreach my $l2 (sort keys %{$unified_info{$l1}}) {
2472             my @items =
2473                 sort
2474                 grep { $unified_info{$l1}->{$l2}->{$_} > 0 }
2475                 keys %{$unified_info{$l1}->{$l2}};
2476             if (@items) {
2477                 $unified_info{$l1}->{$l2} = [ @items ];
2478             } else {
2479                 delete $unified_info{$l1}->{$l2};
2480             }
2481         }
2482     }
2483     # Defines
2484     foreach my $dest (sort keys %{$unified_info{defines}}) {
2485         $unified_info{defines}->{$dest}
2486             = [ map { $_.$unified_info{defines}->{$dest}->{$_} }
2487                 sort keys %{$unified_info{defines}->{$dest}} ];
2488     }
2489     # Includes
2490     foreach my $dest (sort keys %{$unified_info{includes}}) {
2491         if (defined($unified_info{includes}->{$dest}->{build})) {
2492             my @source_includes = ();
2493             @source_includes = ( @{$unified_info{includes}->{$dest}->{source}} )
2494                 if defined($unified_info{includes}->{$dest}->{source});
2495             $unified_info{includes}->{$dest} =
2496                 [ @{$unified_info{includes}->{$dest}->{build}} ];
2497             foreach my $inc (@source_includes) {
2498                 push @{$unified_info{includes}->{$dest}}, $inc
2499                     unless grep { $_ eq $inc } @{$unified_info{includes}->{$dest}};
2500             }
2501         } elsif (defined($unified_info{includes}->{$dest}->{source})) {
2502             $unified_info{includes}->{$dest} =
2503                 [ @{$unified_info{includes}->{$dest}->{source}} ];
2504         } else {
2505             delete $unified_info{includes}->{$dest};
2506         }
2507     }
2508
2509     # For convenience collect information regarding directories where
2510     # files are generated, those generated files and the end product
2511     # they end up in where applicable.  Then, add build rules for those
2512     # directories
2513     my %loopinfo = ( "lib" => [ @{$unified_info{libraries}} ],
2514                      "dso" => [ @{$unified_info{modules}} ],
2515                      "bin" => [ @{$unified_info{programs}} ],
2516                      "script" => [ @{$unified_info{scripts}} ],
2517                      "docs" => [ (map { @{$unified_info{htmldocs}->{$_} // []} }
2518                                   keys %{$unified_info{htmldocs} // {}}),
2519                                  (map { @{$unified_info{mandocs}->{$_} // []} }
2520                                   keys %{$unified_info{mandocs} // {}}) ] );
2521     foreach my $type (keys %loopinfo) {
2522         foreach my $product (@{$loopinfo{$type}}) {
2523             my %dirs = ();
2524             my $pd = dirname($product);
2525
2526             foreach (@{$unified_info{sources}->{$product} // []},
2527                      @{$unified_info{shared_sources}->{$product} // []}) {
2528                 my $d = dirname($_);
2529
2530                 # We don't want to create targets for source directories
2531                 # when building out of source
2532                 next if ($config{sourcedir} ne $config{builddir}
2533                              && $d =~ m|^\Q$config{sourcedir}\E|);
2534                 # We already have a "test" target, and the current directory
2535                 # is just silly to make a target for
2536                 next if $d eq "test" || $d eq ".";
2537
2538                 $dirs{$d} = 1;
2539                 push @{$unified_info{dirinfo}->{$d}->{deps}}, $_
2540                     if $d ne $pd;
2541             }
2542             foreach (keys %dirs) {
2543                 push @{$unified_info{dirinfo}->{$_}->{products}->{$type}},
2544                     $product;
2545             }
2546         }
2547     }
2548 }
2549
2550 # For the schemes that need it, we provide the old *_obj configs
2551 # from the *_asm_obj ones
2552 foreach (grep /_(asm|aux)_src$/, keys %target) {
2553     my $src = $_;
2554     (my $obj = $_) =~ s/_(asm|aux)_src$/_obj/;
2555     $target{$obj} = $target{$src};
2556     $target{$obj} =~ s/\.[csS]\b/.o/g; # C and assembler
2557     $target{$obj} =~ s/\.(cc|cpp)\b/_cc.o/g; # C++
2558 }
2559
2560 # Write down our configuration where it fits #########################
2561
2562 my %template_vars = (
2563     config => \%config,
2564     target => \%target,
2565     disablables => \@disablables,
2566     disablables_int => \@disablables_int,
2567     disabled => \%disabled,
2568     withargs => \%withargs,
2569     unified_info => \%unified_info,
2570     tls => \@tls,
2571     dtls => \@dtls,
2572     makevars => [ sort keys %user ],
2573     disabled_info => \%disabled_info,
2574     user_crossable => \@user_crossable,
2575 );
2576 my $configdata_outname = 'configdata.pm';
2577 print "Creating $configdata_outname\n";
2578 open CONFIGDATA, ">$configdata_outname.new"
2579             or die "Trying to create $configdata_outname.new: $!";
2580 my $configdata_tmplname = cleanfile($srcdir, "configdata.pm.in", $blddir);
2581 my $configdata_tmpl =
2582     OpenSSL::Template->new(TYPE => 'FILE', SOURCE => $configdata_tmplname);
2583 $configdata_tmpl->fill_in(
2584     FILENAME => $configdata_tmplname,
2585     OUTPUT => \*CONFIGDATA,
2586     HASH => { %template_vars,
2587               autowarntext => [
2588                   'WARNING: do not edit!',
2589                   "Generated by Configure from $configdata_tmplname",
2590               ] }
2591 ) or die $Text::Template::ERROR;
2592 close CONFIGDATA;
2593 rename "$configdata_outname.new", $configdata_outname;
2594 if ($builder_platform eq 'unix') {
2595     my $mode = (0755 & ~umask);
2596     chmod $mode, 'configdata.pm'
2597         or warn sprintf("WARNING: Couldn't change mode for 'configdata.pm' to 0%03o: %s\n",$mode,$!);
2598 }
2599
2600 print "Running $configdata_outname\n";
2601 my $perlcmd = (quotify("maybeshell", $config{PERL}))[0];
2602 my $cmd = "$perlcmd $configdata_outname";
2603 #print STDERR "DEBUG[run_dofile]: \$cmd = $cmd\n";
2604 system($cmd);
2605 exit 1 if $? != 0;
2606
2607 $SIG{__DIE__} = $orig_death_handler;
2608
2609 print <<"EOF" if ($disabled{threads} eq "unavailable");
2610
2611 The library could not be configured for supporting multi-threaded
2612 applications as the compiler options required on this system are not known.
2613 See file INSTALL for details if you need multi-threading.
2614 EOF
2615
2616 print <<"EOF" if ($no_shared_warn);
2617
2618 The options 'shared', 'pic' and 'dynamic-engine' aren't supported on this
2619 platform, so we will pretend you gave the option 'no-pic', which also disables
2620 'shared' and 'dynamic-engine'.  If you know how to implement shared libraries
2621 or position independent code, please let us know (but please first make sure
2622 you have tried with a current version of OpenSSL).
2623 EOF
2624
2625 print <<"EOF";
2626
2627 **********************************************************************
2628 ***                                                                ***
2629 ***   OpenSSL has been successfully configured                     ***
2630 ***                                                                ***
2631 ***   If you encounter a problem while building, please open an    ***
2632 ***   issue on GitHub <https://github.com/openssl/openssl/issues>  ***
2633 ***   and include the output from the following command:           ***
2634 ***                                                                ***
2635 ***       perl configdata.pm --dump                                ***
2636 ***                                                                ***
2637 ***   (If you are new to OpenSSL, you might want to consult the    ***
2638 ***   'Troubleshooting' section in the INSTALL file first)         ***
2639 ***                                                                ***
2640 **********************************************************************
2641 EOF
2642
2643 exit(0);
2644
2645 ######################################################################
2646 #
2647 # Helpers and utility functions
2648 #
2649
2650 # Death handler, to print a helpful message in case of failure #######
2651 #
2652 sub death_handler {
2653     die @_ if $^S;              # To prevent the added message in eval blocks
2654     my $build_file = $target{build_file} // "build file";
2655     my @message = ( <<"_____", @_ );
2656
2657 Failure!  $build_file wasn't produced.
2658 Please read INSTALL and associated NOTES files.  You may also have to look over
2659 your available compiler tool chain or change your configuration.
2660
2661 _____
2662
2663     # Dying is terminal, so it's ok to reset the signal handler here.
2664     $SIG{__DIE__} = $orig_death_handler;
2665     die @message;
2666 }
2667
2668 # Configuration file reading #########################################
2669
2670 # Note: All of the helper functions are for lazy evaluation.  They all
2671 # return a CODE ref, which will return the intended value when evaluated.
2672 # Thus, whenever there's mention of a returned value, it's about that
2673 # intended value.
2674
2675 # Helper function to implement conditional value variants, with a default
2676 # plus additional values based on the value of $config{build_type}.
2677 # Arguments are given in hash table form:
2678 #
2679 #       picker(default => "Basic string: ",
2680 #              debug   => "debug",
2681 #              release => "release")
2682 #
2683 # When configuring with --debug, the resulting string will be
2684 # "Basic string: debug", and when not, it will be "Basic string: release"
2685 #
2686 # This can be used to create variants of sets of flags according to the
2687 # build type:
2688 #
2689 #       cflags => picker(default => "-Wall",
2690 #                        debug   => "-g -O0",
2691 #                        release => "-O3")
2692 #
2693 sub picker {
2694     my %opts = @_;
2695     return sub { add($opts{default} || (),
2696                      $opts{$config{build_type}} || ())->(); }
2697 }
2698
2699 # Helper function to combine several values of different types into one.
2700 # This is useful if you want to combine a string with the result of a
2701 # lazy function, such as:
2702 #
2703 #       cflags => combine("-Wall", sub { $disabled{zlib} ? () : "-DZLIB" })
2704 #
2705 sub combine {
2706     my @stuff = @_;
2707     return sub { add(@stuff)->(); }
2708 }
2709
2710 # Helper function to implement conditional values depending on the value
2711 # of $disabled{threads}.  Can be used as follows:
2712 #
2713 #       cflags => combine("-Wall", threads("-pthread"))
2714 #
2715 sub threads {
2716     my @flags = @_;
2717     return sub { add($disabled{threads} ? () : @flags)->(); }
2718 }
2719
2720 sub shared {
2721     my @flags = @_;
2722     return sub { add($disabled{shared} ? () : @flags)->(); }
2723 }
2724
2725 our $add_called = 0;
2726 # Helper function to implement adding values to already existing configuration
2727 # values.  It handles elements that are ARRAYs, CODEs and scalars
2728 sub _add {
2729     my $separator = shift;
2730
2731     # If there's any ARRAY in the collection of values OR the separator
2732     # is undef, we will return an ARRAY of combined values, otherwise a
2733     # string of joined values with $separator as the separator.
2734     my $found_array = !defined($separator);
2735
2736     my @values =
2737         map {
2738             my $res = $_;
2739             while (ref($res) eq "CODE") {
2740                 $res = $res->();
2741             }
2742             if (defined($res)) {
2743                 if (ref($res) eq "ARRAY") {
2744                     $found_array = 1;
2745                     @$res;
2746                 } else {
2747                     $res;
2748                 }
2749             } else {
2750                 ();
2751             }
2752     } (@_);
2753
2754     $add_called = 1;
2755
2756     if ($found_array) {
2757         [ @values ];
2758     } else {
2759         join($separator, grep { defined($_) && $_ ne "" } @values);
2760     }
2761 }
2762 sub add_before {
2763     my $separator = " ";
2764     if (ref($_[$#_]) eq "HASH") {
2765         my $opts = pop;
2766         $separator = $opts->{separator};
2767     }
2768     my @x = @_;
2769     sub { _add($separator, @x, @_) };
2770 }
2771 sub add {
2772     my $separator = " ";
2773     if (ref($_[$#_]) eq "HASH") {
2774         my $opts = pop;
2775         $separator = $opts->{separator};
2776     }
2777     my @x = @_;
2778     sub { _add($separator, @_, @x) };
2779 }
2780
2781 sub read_eval_file {
2782     my $fname = shift;
2783     my $content;
2784     my @result;
2785
2786     open F, "< $fname" or die "Can't open '$fname': $!\n";
2787     {
2788         undef local $/;
2789         $content = <F>;
2790     }
2791     close F;
2792     {
2793         local $@;
2794
2795         @result = ( eval $content );
2796         warn $@ if $@;
2797     }
2798     return wantarray ? @result : $result[0];
2799 }
2800
2801 # configuration reader, evaluates the input file as a perl script and expects
2802 # it to fill %targets with target configurations.  Those are then added to
2803 # %table.
2804 sub read_config {
2805     my $fname = shift;
2806     my %targets;
2807
2808     {
2809         # Protect certain tables from tampering
2810         local %table = ();
2811
2812         %targets = read_eval_file($fname);
2813     }
2814     my %preexisting = ();
2815     foreach (sort keys %targets) {
2816         $preexisting{$_} = 1 if $table{$_};
2817     }
2818     die <<"EOF",
2819 The following config targets from $fname
2820 shadow pre-existing config targets with the same name:
2821 EOF
2822         map { "  $_\n" } sort keys %preexisting
2823         if %preexisting;
2824
2825
2826     # For each target, check that it's configured with a hash table.
2827     foreach (keys %targets) {
2828         if (ref($targets{$_}) ne "HASH") {
2829             if (ref($targets{$_}) eq "") {
2830                 warn "Deprecated target configuration for $_, ignoring...\n";
2831             } else {
2832                 warn "Misconfigured target configuration for $_ (should be a hash table), ignoring...\n";
2833             }
2834             delete $targets{$_};
2835         } else {
2836             $targets{$_}->{_conf_fname_int} = add([ $fname ]);
2837         }
2838     }
2839
2840     %table = (%table, %targets);
2841
2842 }
2843
2844 # configuration resolver.  Will only resolve all the lazy evaluation
2845 # codeblocks for the chosen target and all those it inherits from,
2846 # recursively
2847 sub resolve_config {
2848     my $target = shift;
2849     my @breadcrumbs = @_;
2850
2851 #    my $extra_checks = defined($ENV{CONFIGURE_EXTRA_CHECKS});
2852
2853     if (grep { $_ eq $target } @breadcrumbs) {
2854         die "inherit_from loop!  target backtrace:\n  "
2855             ,$target,"\n  ",join("\n  ", @breadcrumbs),"\n";
2856     }
2857
2858     if (!defined($table{$target})) {
2859         warn "Warning! target $target doesn't exist!\n";
2860         return ();
2861     }
2862     # Recurse through all inheritances.  They will be resolved on the
2863     # fly, so when this operation is done, they will all just be a
2864     # bunch of attributes with string values.
2865     # What we get here, though, are keys with references to lists of
2866     # the combined values of them all.  We will deal with lists after
2867     # this stage is done.
2868     my %combined_inheritance = ();
2869     if ($table{$target}->{inherit_from}) {
2870         my @inherit_from =
2871             map { ref($_) eq "CODE" ? $_->() : $_ } @{$table{$target}->{inherit_from}};
2872         foreach (@inherit_from) {
2873             my %inherited_config = resolve_config($_, $target, @breadcrumbs);
2874
2875             # 'template' is a marker that's considered private to
2876             # the config that had it.
2877             delete $inherited_config{template};
2878
2879             foreach (keys %inherited_config) {
2880                 if (!$combined_inheritance{$_}) {
2881                     $combined_inheritance{$_} = [];
2882                 }
2883                 push @{$combined_inheritance{$_}}, $inherited_config{$_};
2884             }
2885         }
2886     }
2887
2888     # We won't need inherit_from in this target any more, since we've
2889     # resolved all the inheritances that lead to this
2890     delete $table{$target}->{inherit_from};
2891
2892     # Now is the time to deal with those lists.  Here's the place to
2893     # decide what shall be done with those lists, all based on the
2894     # values of the target we're currently dealing with.
2895     # - If a value is a coderef, it will be executed with the list of
2896     #   inherited values as arguments.
2897     # - If the corresponding key doesn't have a value at all or is the
2898     #   empty string, the inherited value list will be run through the
2899     #   default combiner (below), and the result becomes this target's
2900     #   value.
2901     # - Otherwise, this target's value is assumed to be a string that
2902     #   will simply override the inherited list of values.
2903     my $default_combiner = add();
2904
2905     my %all_keys =
2906         map { $_ => 1 } (keys %combined_inheritance,
2907                          keys %{$table{$target}});
2908
2909     sub process_values {
2910         my $object    = shift;
2911         my $inherited = shift;  # Always a [ list ]
2912         my $target    = shift;
2913         my $entry     = shift;
2914
2915         $add_called = 0;
2916
2917         while(ref($object) eq "CODE") {
2918             $object = $object->(@$inherited);
2919         }
2920         if (!defined($object)) {
2921             return ();
2922         }
2923         elsif (ref($object) eq "ARRAY") {
2924             local $add_called;  # To make sure recursive calls don't affect it
2925             return [ map { process_values($_, $inherited, $target, $entry) }
2926                      @$object ];
2927         } elsif (ref($object) eq "") {
2928             return $object;
2929         } else {
2930             die "cannot handle reference type ",ref($object)
2931                 ," found in target ",$target," -> ",$entry,"\n";
2932         }
2933     }
2934
2935     foreach (sort keys %all_keys) {
2936         my $previous = $combined_inheritance{$_};
2937
2938         # Current target doesn't have a value for the current key?
2939         # Assign it the default combiner, the rest of this loop body
2940         # will handle it just like any other coderef.
2941         if (!exists $table{$target}->{$_}) {
2942             $table{$target}->{$_} = $default_combiner;
2943         }
2944
2945         $table{$target}->{$_} = process_values($table{$target}->{$_},
2946                                                $combined_inheritance{$_},
2947                                                $target, $_);
2948         unless(defined($table{$target}->{$_})) {
2949             delete $table{$target}->{$_};
2950         }
2951 #        if ($extra_checks &&
2952 #            $previous && !($add_called ||  $previous ~~ $table{$target}->{$_})) {
2953 #            warn "$_ got replaced in $target\n";
2954 #        }
2955     }
2956
2957     # Finally done, return the result.
2958     return %{$table{$target}};
2959 }
2960
2961 sub usage
2962         {
2963         print STDERR $usage;
2964         print STDERR "\npick os/compiler from:\n";
2965         my $j=0;
2966         my $i;
2967         my $k=0;
2968         foreach $i (sort keys %table)
2969                 {
2970                 next if $table{$i}->{template};
2971                 next if $i =~ /^debug/;
2972                 $k += length($i) + 1;
2973                 if ($k > 78)
2974                         {
2975                         print STDERR "\n";
2976                         $k=length($i);
2977                         }
2978                 print STDERR $i . " ";
2979                 }
2980         foreach $i (sort keys %table)
2981                 {
2982                 next if $table{$i}->{template};
2983                 next if $i !~ /^debug/;
2984                 $k += length($i) + 1;
2985                 if ($k > 78)
2986                         {
2987                         print STDERR "\n";
2988                         $k=length($i);
2989                         }
2990                 print STDERR $i . " ";
2991                 }
2992         print STDERR "\n\nNOTE: If in doubt, on Unix-ish systems use './config'.\n";
2993         exit(1);
2994         }
2995
2996 sub compiler_predefined {
2997     state %predefined;
2998     my $cc = shift;
2999
3000     return () if $^O eq 'VMS';
3001
3002     die 'compiler_predefined called without a compiler command'
3003         unless $cc;
3004
3005     if (! $predefined{$cc}) {
3006
3007         $predefined{$cc} = {};
3008
3009         # collect compiler pre-defines from gcc or gcc-alike...
3010         open(PIPE, "$cc -dM -E -x c /dev/null 2>&1 |");
3011         while (my $l = <PIPE>) {
3012             $l =~ m/^#define\s+(\w+(?:\(\w+\))?)(?:\s+(.+))?/ or last;
3013             $predefined{$cc}->{$1} = $2 // '';
3014         }
3015         close(PIPE);
3016     }
3017
3018     return %{$predefined{$cc}};
3019 }
3020
3021 sub which
3022 {
3023     my ($name)=@_;
3024
3025     if (eval { require IPC::Cmd; 1; }) {
3026         IPC::Cmd->import();
3027         return scalar IPC::Cmd::can_run($name);
3028     } else {
3029         # if there is $directories component in splitpath,
3030         # then it's not something to test with $PATH...
3031         return $name if (File::Spec->splitpath($name))[1];
3032
3033         foreach (File::Spec->path()) {
3034             my $fullpath = catfile($_, "$name$target{exe_extension}");
3035             if (-f $fullpath and -x $fullpath) {
3036                 return $fullpath;
3037             }
3038         }
3039     }
3040 }
3041
3042 sub env
3043 {
3044     my $name = shift;
3045     my %opts = @_;
3046
3047     unless ($opts{cacheonly}) {
3048         # Note that if $ENV{$name} doesn't exist or is undefined,
3049         # $config{perlenv}->{$name} will be created with the value
3050         # undef.  This is intentional.
3051
3052         $config{perlenv}->{$name} = $ENV{$name}
3053             if ! exists $config{perlenv}->{$name};
3054     }
3055     return $config{perlenv}->{$name};
3056 }
3057
3058 # Configuration printer ##############################################
3059
3060 sub print_table_entry
3061 {
3062     local $now_printing = shift;
3063     my %target = resolve_config($now_printing);
3064     my $type = shift;
3065
3066     # Don't print the templates
3067     return if $target{template};
3068
3069     my @sequence = (
3070         "sys_id",
3071         "cpp",
3072         "cppflags",
3073         "defines",
3074         "includes",
3075         "cc",
3076         "cflags",
3077         "ld",
3078         "lflags",
3079         "loutflag",
3080         "ex_libs",
3081         "bn_ops",
3082         "poly1035_asm_src",
3083         "thread_scheme",
3084         "perlasm_scheme",
3085         "dso_scheme",
3086         "shared_target",
3087         "shared_cflag",
3088         "shared_defines",
3089         "shared_ldflag",
3090         "shared_rcflag",
3091         "shared_extension",
3092         "dso_extension",
3093         "obj_extension",
3094         "exe_extension",
3095         "ranlib",
3096         "ar",
3097         "arflags",
3098         "aroutflag",
3099         "rc",
3100         "rcflags",
3101         "rcoutflag",
3102         "mt",
3103         "mtflags",
3104         "mtinflag",
3105         "mtoutflag",
3106         "multilib",
3107         "build_scheme",
3108         );
3109
3110     if ($type eq "TABLE") {
3111         print "\n";
3112         print "*** $now_printing\n";
3113         foreach (@sequence) {
3114             if (ref($target{$_}) eq "ARRAY") {
3115                 printf "\$%-12s = %s\n", $_, join(" ", @{$target{$_}});
3116             } else {
3117                 printf "\$%-12s = %s\n", $_, $target{$_};
3118             }
3119         }
3120     } elsif ($type eq "HASH") {
3121         my $largest =
3122             length((sort { length($a) <=> length($b) } @sequence)[-1]);
3123         print "    '$now_printing' => {\n";
3124         foreach (@sequence) {
3125             if ($target{$_}) {
3126                 if (ref($target{$_}) eq "ARRAY") {
3127                     print "      '",$_,"'"," " x ($largest - length($_))," => [ ",join(", ", map { "'$_'" } @{$target{$_}})," ],\n";
3128                 } else {
3129                     print "      '",$_,"'"," " x ($largest - length($_))," => '",$target{$_},"',\n";
3130                 }
3131             }
3132         }
3133         print "    },\n";
3134     }
3135 }
3136
3137 # Utility routines ###################################################
3138
3139 # On VMS, if the given file is a logical name, File::Spec::Functions
3140 # will consider it an absolute path.  There are cases when we want a
3141 # purely syntactic check without checking the environment.
3142 sub isabsolute {
3143     my $file = shift;
3144
3145     # On non-platforms, we just use file_name_is_absolute().
3146     return file_name_is_absolute($file) unless $^O eq "VMS";
3147
3148     # If the file spec includes a device or a directory spec,
3149     # file_name_is_absolute() is perfectly safe.
3150     return file_name_is_absolute($file) if $file =~ m|[:\[]|;
3151
3152     # Here, we know the given file spec isn't absolute
3153     return 0;
3154 }
3155
3156 # Makes a directory absolute and cleans out /../ in paths like foo/../bar
3157 # On some platforms, this uses rel2abs(), while on others, realpath() is used.
3158 # realpath() requires that at least all path components except the last is an
3159 # existing directory.  On VMS, the last component of the directory spec must
3160 # exist.
3161 sub absolutedir {
3162     my $dir = shift;
3163
3164     # realpath() is quite buggy on VMS.  It uses LIB$FID_TO_NAME, which
3165     # will return the volume name for the device, no matter what.  Also,
3166     # it will return an incorrect directory spec if the argument is a
3167     # directory that doesn't exist.
3168     if ($^O eq "VMS") {
3169         return rel2abs($dir);
3170     }
3171
3172     # We use realpath() on Unix, since no other will properly clean out
3173     # a directory spec.
3174     use Cwd qw/realpath/;
3175
3176     return realpath($dir);
3177 }
3178
3179 sub quotify {
3180     my %processors = (
3181         perl    => sub { my $x = shift;
3182                          $x =~ s/([\\\$\@"])/\\$1/g;
3183                          return '"'.$x.'"'; },
3184         maybeshell => sub { my $x = shift;
3185                             (my $y = $x) =~ s/([\\\"])/\\$1/g;
3186                             if ($x ne $y || $x =~ m|\s|) {
3187                                 return '"'.$y.'"';
3188                             } else {
3189                                 return $x;
3190                             }
3191                         },
3192         );
3193     my $for = shift;
3194     my $processor =
3195         defined($processors{$for}) ? $processors{$for} : sub { shift; };
3196
3197     return map { $processor->($_); } @_;
3198 }
3199
3200 # collect_from_file($filename, $line_concat_cond_re, $line_concat)
3201 # $filename is a file name to read from
3202 # $line_concat_cond_re is a regexp detecting a line continuation ending
3203 # $line_concat is a CODEref that takes care of concatenating two lines
3204 sub collect_from_file {
3205     my $filename = shift;
3206     my $line_concat_cond_re = shift;
3207     my $line_concat = shift;
3208
3209     open my $fh, $filename || die "unable to read $filename: $!\n";
3210     return sub {
3211         my $saved_line = "";
3212         $_ = "";
3213         while (<$fh>) {
3214             s|\R$||;
3215             if (defined $line_concat) {
3216                 $_ = $line_concat->($saved_line, $_);
3217                 $saved_line = "";
3218             }
3219             if (defined $line_concat_cond_re && /$line_concat_cond_re/) {
3220                 $saved_line = $_;
3221                 next;
3222             }
3223             return $_;
3224         }
3225         die "$filename ending with continuation line\n" if $_;
3226         close $fh;
3227         return undef;
3228     }
3229 }
3230
3231 # collect_from_array($array, $line_concat_cond_re, $line_concat)
3232 # $array is an ARRAYref of lines
3233 # $line_concat_cond_re is a regexp detecting a line continuation ending
3234 # $line_concat is a CODEref that takes care of concatenating two lines
3235 sub collect_from_array {
3236     my $array = shift;
3237     my $line_concat_cond_re = shift;
3238     my $line_concat = shift;
3239     my @array = (@$array);
3240
3241     return sub {
3242         my $saved_line = "";
3243         $_ = "";
3244         while (defined($_ = shift @array)) {
3245             s|\R$||;
3246             if (defined $line_concat) {
3247                 $_ = $line_concat->($saved_line, $_);
3248                 $saved_line = "";
3249             }
3250             if (defined $line_concat_cond_re && /$line_concat_cond_re/) {
3251                 $saved_line = $_;
3252                 next;
3253             }
3254             return $_;
3255         }
3256         die "input text ending with continuation line\n" if $_;
3257         return undef;
3258     }
3259 }
3260
3261 # collect_information($lineiterator, $line_continue, $regexp => $CODEref, ...)
3262 # $lineiterator is a CODEref that delivers one line at a time.
3263 # All following arguments are regex/CODEref pairs, where the regexp detects a
3264 # line and the CODEref does something with the result of the regexp.
3265 sub collect_information {
3266     my $lineiterator = shift;
3267     my %collectors = @_;
3268
3269     while(defined($_ = $lineiterator->())) {
3270         s|\R$||;
3271         my $found = 0;
3272         if ($collectors{"BEFORE"}) {
3273             $collectors{"BEFORE"}->($_);
3274         }
3275         foreach my $re (keys %collectors) {
3276             if ($re !~ /^OTHERWISE|BEFORE|AFTER$/ && /$re/) {
3277                 $collectors{$re}->($lineiterator);
3278                 $found = 1;
3279             };
3280         }
3281         if ($collectors{"OTHERWISE"}) {
3282             $collectors{"OTHERWISE"}->($lineiterator, $_)
3283                 unless $found || !defined $collectors{"OTHERWISE"};
3284         }
3285         if ($collectors{"AFTER"}) {
3286             $collectors{"AFTER"}->($_);
3287         }
3288     }
3289 }
3290
3291 # tokenize($line)
3292 # tokenize($line,$separator)
3293 # $line is a line of text to split up into tokens
3294 # $separator [optional] is a regular expression that separates the tokens,
3295 # the default being spaces.  Do not use quotes of any kind as separators,
3296 # that will give undefined results.
3297 # Returns a list of tokens.
3298 #
3299 # Tokens are divided by separator (spaces by default).  If the tokens include
3300 # the separators, they have to be quoted with single or double quotes.
3301 # Double quotes inside a double quoted token must be escaped.  Escaping is done
3302 # with backslash.
3303 # Basically, the same quoting rules apply for " and ' as in any
3304 # Unix shell.
3305 sub tokenize {
3306     my $line = my $debug_line = shift;
3307     my $separator = shift // qr|\s+|;
3308     my @result = ();
3309
3310     if ($ENV{CONFIGURE_DEBUG_TOKENIZE}) {
3311         print STDERR "DEBUG[tokenize]: \$separator = $separator\n";
3312     }
3313
3314     while ($line =~ s|^${separator}||, $line ne "") {
3315         my $token = "";
3316     again:
3317         $line =~ m/^(.*?)(${separator}|"|'|$)/;
3318         $token .= $1;
3319         $line = $2.$';
3320
3321         if ($line =~ m/^"((?:[^"\\]+|\\.)*)"/) {
3322             $token .= $1;
3323             $line = $';
3324             goto again;
3325         } elsif ($line =~ m/^'([^']*)'/) {
3326             $token .= $1;
3327             $line = $';
3328             goto again;
3329         }
3330         push @result, $token;
3331     }
3332
3333     if ($ENV{CONFIGURE_DEBUG_TOKENIZE}) {
3334         print STDERR "DEBUG[tokenize]: Parsed '$debug_line' into:\n";
3335         print STDERR "DEBUG[tokenize]: ('", join("', '", @result), "')\n";
3336     }
3337     return @result;
3338 }