build.info: Make it possible to have more than one item in KEYWORD[]
[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         my $variable_re = qr/\$(?P<VARIABLE>[[:alpha:]][[:alnum:]_]*)/;
1811         my $expand_variables = sub {
1812             my $value = '';
1813             my $value_rest = shift;
1814
1815             if ($ENV{CONFIGURE_DEBUG_VARIABLE_EXPAND}) {
1816                 print STDERR
1817                     "DEBUG[\$expand_variables] Parsed '$value_rest' into:\n"
1818             }
1819             while ($value_rest =~ /(?<!\\)${variable_re}/) {
1820                 $value .= $`;
1821                 $value .= $variables{$+{VARIABLE}};
1822                 $value_rest = $';
1823             }
1824             if ($ENV{CONFIGURE_DEBUG_VARIABLE_EXPAND}) {
1825                 print STDERR
1826                     "DEBUG[\$expand_variables] ... '$value$value_rest'\n";
1827             }
1828             return $value . $value_rest;
1829         };
1830
1831         # Support for attributes in build.info files
1832         my %attributes = ();
1833         my $handle_attributes = sub {
1834             my $attr_str = shift;
1835             my $ref = shift;
1836             my @goals = @_;
1837
1838             return unless defined $attr_str;
1839
1840             my @a = tokenize($attr_str, qr|\s*,\s*|);
1841             foreach my $a (@a) {
1842                 my $ac = 1;
1843                 my $ak = $a;
1844                 my $av = 1;
1845                 if ($a =~ m|^(!)?(.*?)\s* = \s*(.*?)$|) {
1846                     $ac = ! $1;
1847                     $ak = $1;
1848                     $av = $2;
1849                 }
1850                 foreach my $g (@goals) {
1851                     if ($ac) {
1852                         $$ref->{$g}->{$ak} = $av;
1853                     } else {
1854                         delete $$ref->{$g}->{$ak};
1855                     }
1856                 }
1857             }
1858         };
1859
1860         # Support for pushing values on multiple indexes of a given hash
1861         # array.
1862         my $push_to = sub {
1863             my $valueref = shift;
1864             my $index_str = shift; # May be undef or empty
1865             my $attrref = shift;   # May be undef
1866             my $attr_str = shift;
1867             my @values = @_;
1868
1869             if (defined $index_str) {
1870                 my @indexes = ( '' );
1871                 if ($index_str !~ m|^\s*$|) {
1872                     @indexes = tokenize($index_str);
1873                 }
1874                 foreach (@indexes) {
1875                     push @{$valueref->{$_}}, @values;
1876                     if (defined $attrref) {
1877                         $handle_attributes->($attr_str, \$$attrref->{$_},
1878                                              @values);
1879                     }
1880                 }
1881             } else {
1882                 push @$valueref, @values;
1883                 $handle_attributes->($attr_str, $attrref, @values)
1884                     if defined $attrref;
1885             }
1886         };
1887
1888         # We want to detect configdata.pm in the source tree, so we
1889         # don't use it if the build tree is different.
1890         my $src_configdata = cleanfile($srcdir, "configdata.pm", $blddir);
1891
1892
1893         if ($buildinfo_debug) {
1894             print STDERR "DEBUG: Reading ",catfile($sourced, $f),"\n";
1895         }
1896         push @{$config{build_infos}}, catfile(abs2rel($sourced, $blddir), $f);
1897         my $template =
1898             Text::Template->new(TYPE => 'FILE',
1899                                 SOURCE => catfile($sourced, $f),
1900                                 PREPEND => qq{use lib "$FindBin::Bin/util/perl";});
1901         die "Something went wrong with $sourced/$f: $!\n" unless $template;
1902         my @text =
1903             split /^/m,
1904             $template->fill_in(HASH => { config => \%config,
1905                                          target => \%target,
1906                                          disabled => \%disabled,
1907                                          withargs => \%withargs,
1908                                          builddir => abs2rel($buildd, $blddir),
1909                                          sourcedir => abs2rel($sourced, $blddir),
1910                                          buildtop => abs2rel($blddir, $blddir),
1911                                          sourcetop => abs2rel($srcdir, $blddir) },
1912                                DELIMITERS => [ "{-", "-}" ]);
1913
1914         # The top item of this stack has the following values
1915         # -2 positive already run and we found ELSE (following ELSIF should fail)
1916         # -1 positive already run (skip until ENDIF)
1917         # 0 negatives so far (if we're at a condition, check it)
1918         # 1 last was positive (don't skip lines until next ELSE, ELSIF or ENDIF)
1919         # 2 positive ELSE (following ELSIF should fail)
1920         my @skip = ();
1921
1922         # A few useful generic regexps
1923         my $index_re = qr/\[\s*(?P<INDEX>(?:\\.|.)*?)\s*\]/;
1924         my $cond_re = qr/\[\s*(?P<COND>(?:\\.|.)*?)\s*\]/;
1925         my $attribs_re = qr/(?:\{\s*(?P<ATTRIBS>(?:\\.|.)*?)\s*\})?/;
1926         my $value_re = qr/\s*(?P<VALUE>.*?)\s*/;
1927         collect_information(
1928             collect_from_array([ @text ],
1929                                qr/\\$/ => sub { my $l1 = shift; my $l2 = shift;
1930                                                 $l1 =~ s/\\$//; $l1.$l2 }),
1931             # Info we're looking for
1932             qr/^\s* IF ${cond_re} \s*$/x
1933             => sub {
1934                 if (! @skip || $skip[$#skip] > 0) {
1935                     push @skip, !! $expand_variables->($+{COND});
1936                 } else {
1937                     push @skip, -1;
1938                 }
1939             },
1940             qr/^\s* ELSIF ${cond_re} \s*$/x
1941             => sub { die "ELSIF out of scope" if ! @skip;
1942                      die "ELSIF following ELSE" if abs($skip[$#skip]) == 2;
1943                      $skip[$#skip] = -1 if $skip[$#skip] != 0;
1944                      $skip[$#skip] = !! $expand_variables->($+{COND})
1945                          if $skip[$#skip] == 0; },
1946             qr/^\s* ELSE \s*$/x
1947             => sub { die "ELSE out of scope" if ! @skip;
1948                      $skip[$#skip] = -2 if $skip[$#skip] != 0;
1949                      $skip[$#skip] = 2 if $skip[$#skip] == 0; },
1950             qr/^\s* ENDIF \s*$/x
1951             => sub { die "ENDIF out of scope" if ! @skip;
1952                      pop @skip; },
1953             qr/^\s* ${variable_re} \s* = ${value_re} $/x
1954             => sub {
1955                 if (!@skip || $skip[$#skip] > 0) {
1956                     $variables{$+{VARIABLE}} = $expand_variables->($+{VALUE});
1957                 }
1958             },
1959             qr/^\s* SUBDIRS \s* = ${value_re} $/x
1960             => sub {
1961                 if (!@skip || $skip[$#skip] > 0) {
1962                     foreach (tokenize($expand_variables->($+{VALUE}))) {
1963                         push @build_dirs, [ @curd, splitdir($_, 1) ];
1964                     }
1965                 }
1966             },
1967             qr/^\s* PROGRAMS ${attribs_re} \s* =  ${value_re} $/x
1968             => sub { $push_to->(\@programs, undef,
1969                                 \$attributes{programs}, $+{ATTRIBS},
1970                                 tokenize($expand_variables->($+{VALUE})))
1971                          if !@skip || $skip[$#skip] > 0; },
1972             qr/^\s* LIBS ${attribs_re} \s* =  ${value_re} $/x
1973             => sub { $push_to->(\@libraries, undef,
1974                                 \$attributes{libraries}, $+{ATTRIBS},
1975                                 tokenize($expand_variables->($+{VALUE})))
1976                          if !@skip || $skip[$#skip] > 0; },
1977             qr/^\s* MODULES ${attribs_re} \s* =  ${value_re} $/x
1978             => sub { $push_to->(\@modules, undef,
1979                                 \$attributes{modules}, $+{ATTRIBS},
1980                                 tokenize($expand_variables->($+{VALUE})))
1981                          if !@skip || $skip[$#skip] > 0; },
1982             qr/^\s* SCRIPTS ${attribs_re} \s* =  ${value_re} $/x
1983             => sub { $push_to->(\@scripts, undef,
1984                                 \$attributes{scripts}, $+{ATTRIBS},
1985                                 tokenize($expand_variables->($+{VALUE})))
1986                          if !@skip || $skip[$#skip] > 0; },
1987             qr/^\s* HTMLDOCS ${index_re} = ${value_re} $/x
1988             => sub { $push_to->(\%htmldocs, $expand_variables->($+{INDEX}),
1989                                 undef, undef,
1990                                 tokenize($expand_variables->($+{VALUE})))
1991                          if !@skip || $skip[$#skip] > 0; },
1992             qr/^\s* MANDOCS ${index_re} = ${value_re} $/x
1993             => sub { $push_to->(\%mandocs, $expand_variables->($+{INDEX}),
1994                                 undef, undef,
1995                                 tokenize($expand_variables->($+{VALUE})))
1996                          if !@skip || $skip[$#skip] > 0; },
1997             qr/^\s* SOURCE ${index_re} = ${value_re} $/x
1998             => sub { $push_to->(\%sources, $expand_variables->($+{INDEX}),
1999                                 undef, undef,
2000                                 tokenize($expand_variables->($+{VALUE})))
2001                          if !@skip || $skip[$#skip] > 0; },
2002             qr/^\s* SHARED_SOURCE ${index_re} = ${value_re} $/x
2003             => sub { $push_to->(\%shared_sources, $expand_variables->($+{INDEX}),
2004                                 undef, undef,
2005                                 tokenize($expand_variables->($+{VALUE})))
2006                          if !@skip || $skip[$#skip] > 0; },
2007             qr/^\s* INCLUDE ${index_re} = ${value_re} $/x
2008             => sub { $push_to->(\%includes, $expand_variables->($+{INDEX}),
2009                                 undef, undef,
2010                                 tokenize($expand_variables->($+{VALUE})))
2011                          if !@skip || $skip[$#skip] > 0; },
2012             qr/^\s* DEFINE ${index_re} = ${value_re} $/x
2013             => sub { $push_to->(\%defines, $expand_variables->($+{INDEX}),
2014                                 undef, undef,
2015                                 tokenize($expand_variables->($+{VALUE})))
2016                          if !@skip || $skip[$#skip] > 0; },
2017             qr/^\s* DEPEND ${index_re} ${attribs_re} = ${value_re} $/x
2018             => sub { $push_to->(\%depends, $expand_variables->($+{INDEX}),
2019                                 \$attributes{depends}, $+{ATTRIBS},
2020                                 tokenize($expand_variables->($+{VALUE})))
2021                          if !@skip || $skip[$#skip] > 0; },
2022             qr/^\s* GENERATE ${index_re} = ${value_re} $/x
2023             => sub { $push_to->(\%generate, $expand_variables->($+{INDEX}),
2024                                 undef, undef, $+{VALUE})
2025                          if !@skip || $skip[$#skip] > 0; },
2026             qr/^\s* (?:\#.*)? $/x => sub { },
2027             "OTHERWISE" => sub { die "Something wrong with this line:\n$_\nat $sourced/$f" },
2028             "BEFORE" => sub {
2029                 if ($buildinfo_debug) {
2030                     print STDERR "DEBUG: Parsing ",join(" ", @_),"\n";
2031                     print STDERR "DEBUG: ... before parsing, skip stack is ",join(" ", map { int($_) } @skip),"\n";
2032                 }
2033             },
2034             "AFTER" => sub {
2035                 if ($buildinfo_debug) {
2036                     print STDERR "DEBUG: .... after parsing, skip stack is ",join(" ", map { int($_) } @skip),"\n";
2037                 }
2038             },
2039             );
2040         die "runaway IF?" if (@skip);
2041
2042         if (grep { defined $attributes{modules}->{$_}->{engine} } keys %attributes
2043                 and !$config{dynamic_engines}) {
2044             die <<"EOF"
2045 ENGINES can only be used if configured with 'dynamic-engine'.
2046 This is usually a fault in a build.info file.
2047 EOF
2048         }
2049
2050         {
2051             my %infos = ( programs  => [ @programs  ],
2052                           libraries => [ @libraries ],
2053                           modules   => [ @modules   ],
2054                           scripts   => [ @scripts   ] );
2055             foreach my $k (keys %infos) {
2056                 foreach (@{$infos{$k}}) {
2057                     my $item = cleanfile($buildd, $_, $blddir);
2058                     $unified_info{$k}->{$item} = 1;
2059
2060                     # Fix up associated attributes
2061                     $unified_info{attributes}->{$k}->{$item} =
2062                         $attributes{$k}->{$_}
2063                         if defined $attributes{$k}->{$_};
2064                 }
2065             }
2066         }
2067
2068         # Check that we haven't defined any library as both shared and
2069         # explicitly static.  That is forbidden.
2070         my @doubles = ();
2071         foreach (grep /\.a$/, keys %{$unified_info{libraries}}) {
2072             (my $l = $_) =~ s/\.a$//;
2073             push @doubles, $l if defined $unified_info{libraries}->{$l};
2074         }
2075         die "these libraries are both explicitly static and shared:\n  ",
2076             join(" ", @doubles), "\n"
2077             if @doubles;
2078
2079         foreach (keys %sources) {
2080             my $dest = $_;
2081             my $ddest = cleanfile($buildd, $_, $blddir);
2082             foreach (@{$sources{$dest}}) {
2083                 my $s = cleanfile($sourced, $_, $blddir);
2084
2085                 # If it isn't in the source tree, we assume it's generated
2086                 # in the build tree
2087                 if ($s eq $src_configdata || ! -f $s || $generate{$_}) {
2088                     $s = cleanfile($buildd, $_, $blddir);
2089                 }
2090                 # We recognise C++, C and asm files
2091                 if ($s =~ /\.(cc|cpp|c|s|S)$/) {
2092                     my $o = $_;
2093                     $o =~ s/\.[csS]$/.o/; # C and assembler
2094                     $o =~ s/\.(cc|cpp)$/_cc.o/; # C++
2095                     $o = cleanfile($buildd, $o, $blddir);
2096                     $unified_info{sources}->{$ddest}->{$o} = -1;
2097                     $unified_info{sources}->{$o}->{$s} = -1;
2098                 } elsif ($s =~ /\.rc$/) {
2099                     # We also recognise resource files
2100                     my $o = $_;
2101                     $o =~ s/\.rc$/.res/; # Resource configuration
2102                     my $o = cleanfile($buildd, $o, $blddir);
2103                     $unified_info{sources}->{$ddest}->{$o} = -1;
2104                     $unified_info{sources}->{$o}->{$s} = -1;
2105                 } else {
2106                     $unified_info{sources}->{$ddest}->{$s} = 1;
2107                 }
2108             }
2109         }
2110
2111         foreach (keys %shared_sources) {
2112             my $dest = $_;
2113             my $ddest = cleanfile($buildd, $_, $blddir);
2114             foreach (@{$shared_sources{$dest}}) {
2115                 my $s = cleanfile($sourced, $_, $blddir);
2116
2117                 # If it isn't in the source tree, we assume it's generated
2118                 # in the build tree
2119                 if ($s eq $src_configdata || ! -f $s || $generate{$_}) {
2120                     $s = cleanfile($buildd, $_, $blddir);
2121                 }
2122
2123                 if ($s =~ /\.(cc|cpp|c|s|S)$/) {
2124                     # We recognise C++, C and asm files
2125                     my $o = $_;
2126                     $o =~ s/\.[csS]$/.o/; # C and assembler
2127                     $o =~ s/\.(cc|cpp)$/_cc.o/; # C++
2128                     $o = cleanfile($buildd, $o, $blddir);
2129                     $unified_info{shared_sources}->{$ddest}->{$o} = -1;
2130                     $unified_info{sources}->{$o}->{$s} = -1;
2131                 } elsif ($s =~ /\.rc$/) {
2132                     # We also recognise resource files
2133                     my $o = $_;
2134                     $o =~ s/\.rc$/.res/; # Resource configuration
2135                     my $o = cleanfile($buildd, $o, $blddir);
2136                     $unified_info{shared_sources}->{$ddest}->{$o} = -1;
2137                     $unified_info{sources}->{$o}->{$s} = -1;
2138                 } elsif ($s =~ /\.ld$/) {
2139                     # We also recognise linker scripts (or corresponding)
2140                     # We know they are generated files
2141                     my $ld = cleanfile($buildd, $_, $blddir);
2142                     $unified_info{shared_sources}->{$ddest}->{$ld} = 1;
2143                 } else {
2144                     die "unrecognised source file type for shared library: $s\n";
2145                 }
2146             }
2147         }
2148
2149         foreach (keys %generate) {
2150             my $dest = $_;
2151             my $ddest = cleanfile($buildd, $_, $blddir);
2152             die "more than one generator for $dest: "
2153                 ,join(" ", @{$generate{$_}}),"\n"
2154                 if scalar @{$generate{$_}} > 1;
2155             my @generator = split /\s+/, $generate{$dest}->[0];
2156             my $gen = $generator[0];
2157             $generator[0] = cleanfile($sourced, $gen, $blddir);
2158
2159             # If the generator isn't in the source tree, we assume it's
2160             # generated in the build tree
2161             if ($generate{$gen}) {
2162                 $generator[0] = cleanfile($buildd, $gen, $blddir);
2163             }
2164
2165             $unified_info{generate}->{$ddest} = [ @generator ];
2166         }
2167
2168         foreach (keys %depends) {
2169             my $dest = $_;
2170             my $ddest = $dest eq "" ? "" : cleanfile($sourced, $_, $blddir);
2171
2172             # If the destination doesn't exist in source, it can only be
2173             # a generated file in the build tree.
2174             if ($ddest ne "" && ($ddest eq $src_configdata || ! -f $ddest)) {
2175                 $ddest = cleanfile($buildd, $_, $blddir);
2176             }
2177             foreach (@{$depends{$dest}}) {
2178                 my $d = cleanfile($sourced, $_, $blddir);
2179
2180                 # If we know it's generated, or assume it is because we can't
2181                 # find it in the source tree, we set file we depend on to be
2182                 # in the build tree rather than the source tree, and assume
2183                 # and that there are lines to build it in a BEGINRAW..ENDRAW
2184                 # section or in the Makefile template.
2185                 if ($d eq $src_configdata
2186                     || ! -f $d
2187                     || (grep { $d eq $_ }
2188                         map { cleanfile($srcdir, $_, $blddir) }
2189                         grep { /\.h$/ } keys %{$unified_info{generate}})) {
2190                     $d = cleanfile($buildd, $_, $blddir);
2191                 }
2192                 # Take note if the file to depend on is being renamed
2193                 # Take extra care with files ending with .a, they should
2194                 # be treated without that extension, and the extension
2195                 # should be added back after treatment.
2196                 $d =~ /(\.a)?$/;
2197                 my $e = $1 // "";
2198                 $d = $`.$e;
2199                 $unified_info{depends}->{$ddest}->{$d} = 1;
2200
2201                 # Fix up associated attributes
2202                 $unified_info{attributes}->{depends}->{$ddest}->{$d} =
2203                     $attributes{depends}->{$dest}->{$_}
2204                     if defined $attributes{depends}->{$dest}->{$_};
2205             }
2206         }
2207
2208         foreach (keys %includes) {
2209             my $dest = $_;
2210             my $ddest = cleanfile($sourced, $_, $blddir);
2211
2212             # If the destination doesn't exist in source, it can only be
2213             # a generated file in the build tree.
2214             if ($ddest eq $src_configdata || ! -f $ddest) {
2215                 $ddest = cleanfile($buildd, $_, $blddir);
2216             }
2217             foreach (@{$includes{$dest}}) {
2218                 my $is = cleandir($sourced, $_, $blddir);
2219                 my $ib = cleandir($buildd, $_, $blddir);
2220                 push @{$unified_info{includes}->{$ddest}->{source}}, $is
2221                     unless grep { $_ eq $is } @{$unified_info{includes}->{$ddest}->{source}};
2222                 push @{$unified_info{includes}->{$ddest}->{build}}, $ib
2223                     unless grep { $_ eq $ib } @{$unified_info{includes}->{$ddest}->{build}};
2224             }
2225         }
2226
2227         foreach my $dest (keys %defines) {
2228             my $ddest;
2229
2230             if ($dest ne "") {
2231                 $ddest = cleanfile($sourced, $dest, $blddir);
2232
2233                 # If the destination doesn't exist in source, it can only
2234                 # be a generated file in the build tree.
2235                 if (! -f $ddest) {
2236                     $ddest = cleanfile($buildd, $dest, $blddir);
2237                     if ($unified_info{rename}->{$ddest}) {
2238                         $ddest = $unified_info{rename}->{$ddest};
2239                     }
2240                 }
2241             }
2242             foreach my $v (@{$defines{$dest}}) {
2243                 $v =~ m|^([^=]*)(=.*)?$|;
2244                 die "0 length macro name not permitted\n" if $1 eq "";
2245                 if ($dest ne "") {
2246                     die "$1 defined more than once\n"
2247                         if defined $unified_info{defines}->{$ddest}->{$1};
2248                     $unified_info{defines}->{$ddest}->{$1} = $2;
2249                 } else {
2250                     die "$1 defined more than once\n"
2251                         if grep { $v eq $_ } @{$config{defines}};
2252                     push @{$config{defines}}, $v;
2253                 }
2254             }
2255         }
2256
2257         foreach my $section (keys %htmldocs) {
2258             foreach (@{$htmldocs{$section}}) {
2259                 my $htmldocs = cleanfile($buildd, $_, $blddir);
2260                 $unified_info{htmldocs}->{$section}->{$htmldocs} = 1;
2261             }
2262         }
2263
2264         foreach my $section (keys %mandocs) {
2265             foreach (@{$mandocs{$section}}) {
2266                 my $mandocs = cleanfile($buildd, $_, $blddir);
2267                 $unified_info{mandocs}->{$section}->{$mandocs} = 1;
2268             }
2269         }
2270     }
2271
2272     my $ordinals_text = join(', ', sort keys %ordinals);
2273     warn <<"EOF" if $ordinals_text;
2274
2275 WARNING: ORDINALS were specified for $ordinals_text
2276 They are ignored and should be replaced with a combination of GENERATE,
2277 DEPEND and SHARED_SOURCE.
2278 EOF
2279
2280
2281     # Go through the sources of all libraries and check that the same basename
2282     # doesn't appear more than once.  Some static library archivers depend on
2283     # them being unique.
2284     {
2285         my $err = 0;
2286         foreach my $prod (keys %{$unified_info{libraries}}) {
2287             my @prod_sources =
2288                 map { keys %{$unified_info{sources}->{$_}} }
2289                 keys %{$unified_info{sources}->{$prod}};
2290             my %srccnt = ();
2291
2292             # Count how many times a given each source basename
2293             # appears for each product.
2294             foreach my $src (@prod_sources) {
2295                 $srccnt{basename $src}++;
2296             }
2297
2298             foreach my $src (keys %srccnt) {
2299                 if ((my $cnt = $srccnt{$src}) > 1) {
2300                     print STDERR "$src appears $cnt times for the product $prod\n";
2301                     $err++
2302                 }
2303             }
2304         }
2305         die if $err > 0;
2306     }
2307
2308     # Massage the result
2309
2310     # If we depend on a header file or a perl module, add an inclusion of
2311     # its directory to allow smoothe inclusion
2312     foreach my $dest (keys %{$unified_info{depends}}) {
2313         next if $dest eq "";
2314         foreach my $d (keys %{$unified_info{depends}->{$dest}}) {
2315             next unless $d =~ /\.(h|pm)$/;
2316             my $i = dirname($d);
2317             my $spot =
2318                 $d eq "configdata.pm" || defined($unified_info{generate}->{$d})
2319                 ? 'build' : 'source';
2320             push @{$unified_info{includes}->{$dest}->{$spot}}, $i
2321                 unless grep { $_ eq $i } @{$unified_info{includes}->{$dest}->{$spot}};
2322         }
2323     }
2324
2325     # Go through all intermediary files and change their names to something that
2326     # reflects what they will be built for.  Note that for some source files,
2327     # this leads to duplicate object files because they are used multiple times.
2328     # the goal is to rename all object files according to this scheme:
2329     #    {productname}-{midfix}-{origobjname}.[o|res]
2330     # the {midfix} is a keyword indicating the type of product, which is mostly
2331     # valuable for libraries since they come in two forms.
2332     #
2333     # This also reorganises the {sources} and {shared_sources} so that the
2334     # former only contains ALL object files that are supposed to end up in
2335     # static libraries and programs, while the latter contains ALL object files
2336     # that are supposed to end up in shared libraries and DSOs.
2337     # The main reason for having two different source structures is to allow
2338     # the same name to be used for the static and the shared variants of a
2339     # library.
2340     {
2341         # Take copies so we don't get interference from added stuff
2342         my %unified_copy = ();
2343         foreach (('sources', 'shared_sources')) {
2344             $unified_copy{$_} = { %{$unified_info{$_}} }
2345                 if defined($unified_info{$_});
2346             delete $unified_info{$_};
2347         }
2348         foreach my $prodtype (('programs', 'libraries', 'modules', 'scripts')) {
2349             # $intent serves multi purposes:
2350             # - give a prefix for the new object files names
2351             # - in the case of libraries, rearrange the object files so static
2352             #   libraries use the 'sources' structure exclusively, while shared
2353             #   libraries use the 'shared_sources' structure exclusively.
2354             my $intent = {
2355                 programs  => { bin    => { src => [ 'sources' ],
2356                                            dst => 'sources' } },
2357                 libraries => { lib    => { src => [ 'sources' ],
2358                                            dst => 'sources' },
2359                                shlib  => { prodselect =>
2360                                                sub { grep !/\.a$/, @_ },
2361                                            src => [ 'sources',
2362                                                     'shared_sources' ],
2363                                            dst => 'shared_sources' } },
2364                 modules   => { dso    => { src => [ 'sources' ],
2365                                            dst => 'sources' } },
2366                 scripts   => { script => { src => [ 'sources' ],
2367                                            dst => 'sources' } }
2368                } -> {$prodtype};
2369             foreach my $kind (keys %$intent) {
2370                 next if ($intent->{$kind}->{dst} eq 'shared_sources'
2371                              && $disabled{shared});
2372
2373                 my @src = @{$intent->{$kind}->{src}};
2374                 my $dst = $intent->{$kind}->{dst};
2375                 my $prodselect = $intent->{$kind}->{prodselect} // sub { @_ };
2376                 foreach my $prod ($prodselect->(keys %{$unified_info{$prodtype}})) {
2377                     # %prod_sources has all applicable objects as keys, and
2378                     # their corresponding sources as values
2379                     my %prod_sources =
2380                         map { $_ => [ keys %{$unified_copy{sources}->{$_}} ] }
2381                         map { keys %{$unified_copy{$_}->{$prod}} }
2382                         @src;
2383                     foreach (keys %prod_sources) {
2384                         # Only affect object files and resource files,
2385                         # the others simply get a new value
2386                         # (+1 instead of -1)
2387                         if ($_ =~ /\.(o|res)$/) {
2388                             (my $prodname = $prod) =~ s|\.a$||;
2389                             my $newobj =
2390                                 catfile(dirname($_),
2391                                         basename($prodname)
2392                                             . '-' . $kind
2393                                             . '-' . basename($_));
2394                             $unified_info{$dst}->{$prod}->{$newobj} = 1;
2395                             foreach my $src (@{$prod_sources{$_}}) {
2396                                 $unified_info{sources}->{$newobj}->{$src} = 1;
2397                             }
2398                             # Adjust dependencies
2399                             foreach my $deps (keys %{$unified_info{depends}->{$_}}) {
2400                                 $unified_info{depends}->{$_}->{$deps} = -1;
2401                                 $unified_info{depends}->{$newobj}->{$deps} = 1;
2402                             }
2403                             # Adjust includes
2404                             foreach my $k (('source', 'build')) {
2405                                 next unless
2406                                     defined($unified_info{includes}->{$_}->{$k});
2407                                 my @incs = @{$unified_info{includes}->{$_}->{$k}};
2408                                 $unified_info{includes}->{$newobj}->{$k} = [ @incs ];
2409                             }
2410                         } else {
2411                             $unified_info{$dst}->{$prod}->{$_} = 1;
2412                         }
2413                     }
2414                 }
2415             }
2416         }
2417     }
2418
2419     # At this point, we have a number of sources with the value -1.  They
2420     # aren't part of the local build and are probably meant for a different
2421     # platform, and can therefore be cleaned away.  That happens when making
2422     # %unified_info more efficient below.
2423
2424     ### Make unified_info a bit more efficient
2425     # One level structures
2426     foreach (("programs", "libraries", "modules", "scripts")) {
2427         $unified_info{$_} = [ sort keys %{$unified_info{$_}} ];
2428     }
2429     # Two level structures
2430     foreach my $l1 (("sources", "shared_sources", "ldadd", "depends",
2431                      "htmldocs", "mandocs")) {
2432         foreach my $l2 (sort keys %{$unified_info{$l1}}) {
2433             my @items =
2434                 sort
2435                 grep { $unified_info{$l1}->{$l2}->{$_} > 0 }
2436                 keys %{$unified_info{$l1}->{$l2}};
2437             if (@items) {
2438                 $unified_info{$l1}->{$l2} = [ @items ];
2439             } else {
2440                 delete $unified_info{$l1}->{$l2};
2441             }
2442         }
2443     }
2444     # Defines
2445     foreach my $dest (sort keys %{$unified_info{defines}}) {
2446         $unified_info{defines}->{$dest}
2447             = [ map { $_.$unified_info{defines}->{$dest}->{$_} }
2448                 sort keys %{$unified_info{defines}->{$dest}} ];
2449     }
2450     # Includes
2451     foreach my $dest (sort keys %{$unified_info{includes}}) {
2452         if (defined($unified_info{includes}->{$dest}->{build})) {
2453             my @source_includes = ();
2454             @source_includes = ( @{$unified_info{includes}->{$dest}->{source}} )
2455                 if defined($unified_info{includes}->{$dest}->{source});
2456             $unified_info{includes}->{$dest} =
2457                 [ @{$unified_info{includes}->{$dest}->{build}} ];
2458             foreach my $inc (@source_includes) {
2459                 push @{$unified_info{includes}->{$dest}}, $inc
2460                     unless grep { $_ eq $inc } @{$unified_info{includes}->{$dest}};
2461             }
2462         } elsif (defined($unified_info{includes}->{$dest}->{source})) {
2463             $unified_info{includes}->{$dest} =
2464                 [ @{$unified_info{includes}->{$dest}->{source}} ];
2465         } else {
2466             delete $unified_info{includes}->{$dest};
2467         }
2468     }
2469
2470     # For convenience collect information regarding directories where
2471     # files are generated, those generated files and the end product
2472     # they end up in where applicable.  Then, add build rules for those
2473     # directories
2474     my %loopinfo = ( "lib" => [ @{$unified_info{libraries}} ],
2475                      "dso" => [ @{$unified_info{modules}} ],
2476                      "bin" => [ @{$unified_info{programs}} ],
2477                      "script" => [ @{$unified_info{scripts}} ],
2478                      "docs" => [ (map { @{$unified_info{htmldocs}->{$_} // []} }
2479                                   keys %{$unified_info{htmldocs} // {}}),
2480                                  (map { @{$unified_info{mandocs}->{$_} // []} }
2481                                   keys %{$unified_info{mandocs} // {}}) ] );
2482     foreach my $type (keys %loopinfo) {
2483         foreach my $product (@{$loopinfo{$type}}) {
2484             my %dirs = ();
2485             my $pd = dirname($product);
2486
2487             foreach (@{$unified_info{sources}->{$product} // []},
2488                      @{$unified_info{shared_sources}->{$product} // []}) {
2489                 my $d = dirname($_);
2490
2491                 # We don't want to create targets for source directories
2492                 # when building out of source
2493                 next if ($config{sourcedir} ne $config{builddir}
2494                              && $d =~ m|^\Q$config{sourcedir}\E|);
2495                 # We already have a "test" target, and the current directory
2496                 # is just silly to make a target for
2497                 next if $d eq "test" || $d eq ".";
2498
2499                 $dirs{$d} = 1;
2500                 push @{$unified_info{dirinfo}->{$d}->{deps}}, $_
2501                     if $d ne $pd;
2502             }
2503             foreach (keys %dirs) {
2504                 push @{$unified_info{dirinfo}->{$_}->{products}->{$type}},
2505                     $product;
2506             }
2507         }
2508     }
2509 }
2510
2511 # For the schemes that need it, we provide the old *_obj configs
2512 # from the *_asm_obj ones
2513 foreach (grep /_(asm|aux)_src$/, keys %target) {
2514     my $src = $_;
2515     (my $obj = $_) =~ s/_(asm|aux)_src$/_obj/;
2516     $target{$obj} = $target{$src};
2517     $target{$obj} =~ s/\.[csS]\b/.o/g; # C and assembler
2518     $target{$obj} =~ s/\.(cc|cpp)\b/_cc.o/g; # C++
2519 }
2520
2521 # Write down our configuration where it fits #########################
2522
2523 my %template_vars = (
2524     config => \%config,
2525     target => \%target,
2526     disablables => \@disablables,
2527     disablables_int => \@disablables_int,
2528     disabled => \%disabled,
2529     withargs => \%withargs,
2530     unified_info => \%unified_info,
2531     tls => \@tls,
2532     dtls => \@dtls,
2533     makevars => [ sort keys %user ],
2534     disabled_info => \%disabled_info,
2535     user_crossable => \@user_crossable,
2536 );
2537 my $configdata_outname = 'configdata.pm';
2538 print "Creating $configdata_outname\n";
2539 open CONFIGDATA, ">$configdata_outname.new"
2540             or die "Trying to create $configdata_outname.new: $!";
2541 my $configdata_tmplname = cleanfile($srcdir, "configdata.pm.in", $blddir);
2542 my $configdata_tmpl =
2543     OpenSSL::Template->new(TYPE => 'FILE', SOURCE => $configdata_tmplname);
2544 $configdata_tmpl->fill_in(
2545     FILENAME => $configdata_tmplname,
2546     OUTPUT => \*CONFIGDATA,
2547     HASH => { %template_vars,
2548               autowarntext => [
2549                   'WARNING: do not edit!',
2550                   "Generated by Configure from $configdata_tmplname",
2551               ] }
2552 ) or die $Text::Template::ERROR;
2553 close CONFIGDATA;
2554 rename "$configdata_outname.new", $configdata_outname;
2555 if ($builder_platform eq 'unix') {
2556     my $mode = (0755 & ~umask);
2557     chmod $mode, 'configdata.pm'
2558         or warn sprintf("WARNING: Couldn't change mode for 'configdata.pm' to 0%03o: %s\n",$mode,$!);
2559 }
2560
2561 print "Running $configdata_outname\n";
2562 my $perlcmd = (quotify("maybeshell", $config{PERL}))[0];
2563 my $cmd = "$perlcmd $configdata_outname";
2564 #print STDERR "DEBUG[run_dofile]: \$cmd = $cmd\n";
2565 system($cmd);
2566 exit 1 if $? != 0;
2567
2568 $SIG{__DIE__} = $orig_death_handler;
2569
2570 print <<"EOF" if ($disabled{threads} eq "unavailable");
2571
2572 The library could not be configured for supporting multi-threaded
2573 applications as the compiler options required on this system are not known.
2574 See file INSTALL for details if you need multi-threading.
2575 EOF
2576
2577 print <<"EOF" if ($no_shared_warn);
2578
2579 The options 'shared', 'pic' and 'dynamic-engine' aren't supported on this
2580 platform, so we will pretend you gave the option 'no-pic', which also disables
2581 'shared' and 'dynamic-engine'.  If you know how to implement shared libraries
2582 or position independent code, please let us know (but please first make sure
2583 you have tried with a current version of OpenSSL).
2584 EOF
2585
2586 print <<"EOF";
2587
2588 **********************************************************************
2589 ***                                                                ***
2590 ***   OpenSSL has been successfully configured                     ***
2591 ***                                                                ***
2592 ***   If you encounter a problem while building, please open an    ***
2593 ***   issue on GitHub <https://github.com/openssl/openssl/issues>  ***
2594 ***   and include the output from the following command:           ***
2595 ***                                                                ***
2596 ***       perl configdata.pm --dump                                ***
2597 ***                                                                ***
2598 ***   (If you are new to OpenSSL, you might want to consult the    ***
2599 ***   'Troubleshooting' section in the INSTALL file first)         ***
2600 ***                                                                ***
2601 **********************************************************************
2602 EOF
2603
2604 exit(0);
2605
2606 ######################################################################
2607 #
2608 # Helpers and utility functions
2609 #
2610
2611 # Death handler, to print a helpful message in case of failure #######
2612 #
2613 sub death_handler {
2614     die @_ if $^S;              # To prevent the added message in eval blocks
2615     my $build_file = $target{build_file} // "build file";
2616     my @message = ( <<"_____", @_ );
2617
2618 Failure!  $build_file wasn't produced.
2619 Please read INSTALL and associated NOTES files.  You may also have to look over
2620 your available compiler tool chain or change your configuration.
2621
2622 _____
2623
2624     # Dying is terminal, so it's ok to reset the signal handler here.
2625     $SIG{__DIE__} = $orig_death_handler;
2626     die @message;
2627 }
2628
2629 # Configuration file reading #########################################
2630
2631 # Note: All of the helper functions are for lazy evaluation.  They all
2632 # return a CODE ref, which will return the intended value when evaluated.
2633 # Thus, whenever there's mention of a returned value, it's about that
2634 # intended value.
2635
2636 # Helper function to implement conditional value variants, with a default
2637 # plus additional values based on the value of $config{build_type}.
2638 # Arguments are given in hash table form:
2639 #
2640 #       picker(default => "Basic string: ",
2641 #              debug   => "debug",
2642 #              release => "release")
2643 #
2644 # When configuring with --debug, the resulting string will be
2645 # "Basic string: debug", and when not, it will be "Basic string: release"
2646 #
2647 # This can be used to create variants of sets of flags according to the
2648 # build type:
2649 #
2650 #       cflags => picker(default => "-Wall",
2651 #                        debug   => "-g -O0",
2652 #                        release => "-O3")
2653 #
2654 sub picker {
2655     my %opts = @_;
2656     return sub { add($opts{default} || (),
2657                      $opts{$config{build_type}} || ())->(); }
2658 }
2659
2660 # Helper function to combine several values of different types into one.
2661 # This is useful if you want to combine a string with the result of a
2662 # lazy function, such as:
2663 #
2664 #       cflags => combine("-Wall", sub { $disabled{zlib} ? () : "-DZLIB" })
2665 #
2666 sub combine {
2667     my @stuff = @_;
2668     return sub { add(@stuff)->(); }
2669 }
2670
2671 # Helper function to implement conditional values depending on the value
2672 # of $disabled{threads}.  Can be used as follows:
2673 #
2674 #       cflags => combine("-Wall", threads("-pthread"))
2675 #
2676 sub threads {
2677     my @flags = @_;
2678     return sub { add($disabled{threads} ? () : @flags)->(); }
2679 }
2680
2681 sub shared {
2682     my @flags = @_;
2683     return sub { add($disabled{shared} ? () : @flags)->(); }
2684 }
2685
2686 our $add_called = 0;
2687 # Helper function to implement adding values to already existing configuration
2688 # values.  It handles elements that are ARRAYs, CODEs and scalars
2689 sub _add {
2690     my $separator = shift;
2691
2692     # If there's any ARRAY in the collection of values OR the separator
2693     # is undef, we will return an ARRAY of combined values, otherwise a
2694     # string of joined values with $separator as the separator.
2695     my $found_array = !defined($separator);
2696
2697     my @values =
2698         map {
2699             my $res = $_;
2700             while (ref($res) eq "CODE") {
2701                 $res = $res->();
2702             }
2703             if (defined($res)) {
2704                 if (ref($res) eq "ARRAY") {
2705                     $found_array = 1;
2706                     @$res;
2707                 } else {
2708                     $res;
2709                 }
2710             } else {
2711                 ();
2712             }
2713     } (@_);
2714
2715     $add_called = 1;
2716
2717     if ($found_array) {
2718         [ @values ];
2719     } else {
2720         join($separator, grep { defined($_) && $_ ne "" } @values);
2721     }
2722 }
2723 sub add_before {
2724     my $separator = " ";
2725     if (ref($_[$#_]) eq "HASH") {
2726         my $opts = pop;
2727         $separator = $opts->{separator};
2728     }
2729     my @x = @_;
2730     sub { _add($separator, @x, @_) };
2731 }
2732 sub add {
2733     my $separator = " ";
2734     if (ref($_[$#_]) eq "HASH") {
2735         my $opts = pop;
2736         $separator = $opts->{separator};
2737     }
2738     my @x = @_;
2739     sub { _add($separator, @_, @x) };
2740 }
2741
2742 sub read_eval_file {
2743     my $fname = shift;
2744     my $content;
2745     my @result;
2746
2747     open F, "< $fname" or die "Can't open '$fname': $!\n";
2748     {
2749         undef local $/;
2750         $content = <F>;
2751     }
2752     close F;
2753     {
2754         local $@;
2755
2756         @result = ( eval $content );
2757         warn $@ if $@;
2758     }
2759     return wantarray ? @result : $result[0];
2760 }
2761
2762 # configuration reader, evaluates the input file as a perl script and expects
2763 # it to fill %targets with target configurations.  Those are then added to
2764 # %table.
2765 sub read_config {
2766     my $fname = shift;
2767     my %targets;
2768
2769     {
2770         # Protect certain tables from tampering
2771         local %table = ();
2772
2773         %targets = read_eval_file($fname);
2774     }
2775     my %preexisting = ();
2776     foreach (sort keys %targets) {
2777         $preexisting{$_} = 1 if $table{$_};
2778     }
2779     die <<"EOF",
2780 The following config targets from $fname
2781 shadow pre-existing config targets with the same name:
2782 EOF
2783         map { "  $_\n" } sort keys %preexisting
2784         if %preexisting;
2785
2786
2787     # For each target, check that it's configured with a hash table.
2788     foreach (keys %targets) {
2789         if (ref($targets{$_}) ne "HASH") {
2790             if (ref($targets{$_}) eq "") {
2791                 warn "Deprecated target configuration for $_, ignoring...\n";
2792             } else {
2793                 warn "Misconfigured target configuration for $_ (should be a hash table), ignoring...\n";
2794             }
2795             delete $targets{$_};
2796         } else {
2797             $targets{$_}->{_conf_fname_int} = add([ $fname ]);
2798         }
2799     }
2800
2801     %table = (%table, %targets);
2802
2803 }
2804
2805 # configuration resolver.  Will only resolve all the lazy evaluation
2806 # codeblocks for the chosen target and all those it inherits from,
2807 # recursively
2808 sub resolve_config {
2809     my $target = shift;
2810     my @breadcrumbs = @_;
2811
2812 #    my $extra_checks = defined($ENV{CONFIGURE_EXTRA_CHECKS});
2813
2814     if (grep { $_ eq $target } @breadcrumbs) {
2815         die "inherit_from loop!  target backtrace:\n  "
2816             ,$target,"\n  ",join("\n  ", @breadcrumbs),"\n";
2817     }
2818
2819     if (!defined($table{$target})) {
2820         warn "Warning! target $target doesn't exist!\n";
2821         return ();
2822     }
2823     # Recurse through all inheritances.  They will be resolved on the
2824     # fly, so when this operation is done, they will all just be a
2825     # bunch of attributes with string values.
2826     # What we get here, though, are keys with references to lists of
2827     # the combined values of them all.  We will deal with lists after
2828     # this stage is done.
2829     my %combined_inheritance = ();
2830     if ($table{$target}->{inherit_from}) {
2831         my @inherit_from =
2832             map { ref($_) eq "CODE" ? $_->() : $_ } @{$table{$target}->{inherit_from}};
2833         foreach (@inherit_from) {
2834             my %inherited_config = resolve_config($_, $target, @breadcrumbs);
2835
2836             # 'template' is a marker that's considered private to
2837             # the config that had it.
2838             delete $inherited_config{template};
2839
2840             foreach (keys %inherited_config) {
2841                 if (!$combined_inheritance{$_}) {
2842                     $combined_inheritance{$_} = [];
2843                 }
2844                 push @{$combined_inheritance{$_}}, $inherited_config{$_};
2845             }
2846         }
2847     }
2848
2849     # We won't need inherit_from in this target any more, since we've
2850     # resolved all the inheritances that lead to this
2851     delete $table{$target}->{inherit_from};
2852
2853     # Now is the time to deal with those lists.  Here's the place to
2854     # decide what shall be done with those lists, all based on the
2855     # values of the target we're currently dealing with.
2856     # - If a value is a coderef, it will be executed with the list of
2857     #   inherited values as arguments.
2858     # - If the corresponding key doesn't have a value at all or is the
2859     #   empty string, the inherited value list will be run through the
2860     #   default combiner (below), and the result becomes this target's
2861     #   value.
2862     # - Otherwise, this target's value is assumed to be a string that
2863     #   will simply override the inherited list of values.
2864     my $default_combiner = add();
2865
2866     my %all_keys =
2867         map { $_ => 1 } (keys %combined_inheritance,
2868                          keys %{$table{$target}});
2869
2870     sub process_values {
2871         my $object    = shift;
2872         my $inherited = shift;  # Always a [ list ]
2873         my $target    = shift;
2874         my $entry     = shift;
2875
2876         $add_called = 0;
2877
2878         while(ref($object) eq "CODE") {
2879             $object = $object->(@$inherited);
2880         }
2881         if (!defined($object)) {
2882             return ();
2883         }
2884         elsif (ref($object) eq "ARRAY") {
2885             local $add_called;  # To make sure recursive calls don't affect it
2886             return [ map { process_values($_, $inherited, $target, $entry) }
2887                      @$object ];
2888         } elsif (ref($object) eq "") {
2889             return $object;
2890         } else {
2891             die "cannot handle reference type ",ref($object)
2892                 ," found in target ",$target," -> ",$entry,"\n";
2893         }
2894     }
2895
2896     foreach (sort keys %all_keys) {
2897         my $previous = $combined_inheritance{$_};
2898
2899         # Current target doesn't have a value for the current key?
2900         # Assign it the default combiner, the rest of this loop body
2901         # will handle it just like any other coderef.
2902         if (!exists $table{$target}->{$_}) {
2903             $table{$target}->{$_} = $default_combiner;
2904         }
2905
2906         $table{$target}->{$_} = process_values($table{$target}->{$_},
2907                                                $combined_inheritance{$_},
2908                                                $target, $_);
2909         unless(defined($table{$target}->{$_})) {
2910             delete $table{$target}->{$_};
2911         }
2912 #        if ($extra_checks &&
2913 #            $previous && !($add_called ||  $previous ~~ $table{$target}->{$_})) {
2914 #            warn "$_ got replaced in $target\n";
2915 #        }
2916     }
2917
2918     # Finally done, return the result.
2919     return %{$table{$target}};
2920 }
2921
2922 sub usage
2923         {
2924         print STDERR $usage;
2925         print STDERR "\npick os/compiler from:\n";
2926         my $j=0;
2927         my $i;
2928         my $k=0;
2929         foreach $i (sort keys %table)
2930                 {
2931                 next if $table{$i}->{template};
2932                 next if $i =~ /^debug/;
2933                 $k += length($i) + 1;
2934                 if ($k > 78)
2935                         {
2936                         print STDERR "\n";
2937                         $k=length($i);
2938                         }
2939                 print STDERR $i . " ";
2940                 }
2941         foreach $i (sort keys %table)
2942                 {
2943                 next if $table{$i}->{template};
2944                 next if $i !~ /^debug/;
2945                 $k += length($i) + 1;
2946                 if ($k > 78)
2947                         {
2948                         print STDERR "\n";
2949                         $k=length($i);
2950                         }
2951                 print STDERR $i . " ";
2952                 }
2953         print STDERR "\n\nNOTE: If in doubt, on Unix-ish systems use './config'.\n";
2954         exit(1);
2955         }
2956
2957 sub compiler_predefined {
2958     state %predefined;
2959     my $cc = shift;
2960
2961     return () if $^O eq 'VMS';
2962
2963     die 'compiler_predefined called without a compiler command'
2964         unless $cc;
2965
2966     if (! $predefined{$cc}) {
2967
2968         $predefined{$cc} = {};
2969
2970         # collect compiler pre-defines from gcc or gcc-alike...
2971         open(PIPE, "$cc -dM -E -x c /dev/null 2>&1 |");
2972         while (my $l = <PIPE>) {
2973             $l =~ m/^#define\s+(\w+(?:\(\w+\))?)(?:\s+(.+))?/ or last;
2974             $predefined{$cc}->{$1} = $2 // '';
2975         }
2976         close(PIPE);
2977     }
2978
2979     return %{$predefined{$cc}};
2980 }
2981
2982 sub which
2983 {
2984     my ($name)=@_;
2985
2986     if (eval { require IPC::Cmd; 1; }) {
2987         IPC::Cmd->import();
2988         return scalar IPC::Cmd::can_run($name);
2989     } else {
2990         # if there is $directories component in splitpath,
2991         # then it's not something to test with $PATH...
2992         return $name if (File::Spec->splitpath($name))[1];
2993
2994         foreach (File::Spec->path()) {
2995             my $fullpath = catfile($_, "$name$target{exe_extension}");
2996             if (-f $fullpath and -x $fullpath) {
2997                 return $fullpath;
2998             }
2999         }
3000     }
3001 }
3002
3003 sub env
3004 {
3005     my $name = shift;
3006     my %opts = @_;
3007
3008     unless ($opts{cacheonly}) {
3009         # Note that if $ENV{$name} doesn't exist or is undefined,
3010         # $config{perlenv}->{$name} will be created with the value
3011         # undef.  This is intentional.
3012
3013         $config{perlenv}->{$name} = $ENV{$name}
3014             if ! exists $config{perlenv}->{$name};
3015     }
3016     return $config{perlenv}->{$name};
3017 }
3018
3019 # Configuration printer ##############################################
3020
3021 sub print_table_entry
3022 {
3023     local $now_printing = shift;
3024     my %target = resolve_config($now_printing);
3025     my $type = shift;
3026
3027     # Don't print the templates
3028     return if $target{template};
3029
3030     my @sequence = (
3031         "sys_id",
3032         "cpp",
3033         "cppflags",
3034         "defines",
3035         "includes",
3036         "cc",
3037         "cflags",
3038         "ld",
3039         "lflags",
3040         "loutflag",
3041         "ex_libs",
3042         "bn_ops",
3043         "poly1035_asm_src",
3044         "thread_scheme",
3045         "perlasm_scheme",
3046         "dso_scheme",
3047         "shared_target",
3048         "shared_cflag",
3049         "shared_defines",
3050         "shared_ldflag",
3051         "shared_rcflag",
3052         "shared_extension",
3053         "dso_extension",
3054         "obj_extension",
3055         "exe_extension",
3056         "ranlib",
3057         "ar",
3058         "arflags",
3059         "aroutflag",
3060         "rc",
3061         "rcflags",
3062         "rcoutflag",
3063         "mt",
3064         "mtflags",
3065         "mtinflag",
3066         "mtoutflag",
3067         "multilib",
3068         "build_scheme",
3069         );
3070
3071     if ($type eq "TABLE") {
3072         print "\n";
3073         print "*** $now_printing\n";
3074         foreach (@sequence) {
3075             if (ref($target{$_}) eq "ARRAY") {
3076                 printf "\$%-12s = %s\n", $_, join(" ", @{$target{$_}});
3077             } else {
3078                 printf "\$%-12s = %s\n", $_, $target{$_};
3079             }
3080         }
3081     } elsif ($type eq "HASH") {
3082         my $largest =
3083             length((sort { length($a) <=> length($b) } @sequence)[-1]);
3084         print "    '$now_printing' => {\n";
3085         foreach (@sequence) {
3086             if ($target{$_}) {
3087                 if (ref($target{$_}) eq "ARRAY") {
3088                     print "      '",$_,"'"," " x ($largest - length($_))," => [ ",join(", ", map { "'$_'" } @{$target{$_}})," ],\n";
3089                 } else {
3090                     print "      '",$_,"'"," " x ($largest - length($_))," => '",$target{$_},"',\n";
3091                 }
3092             }
3093         }
3094         print "    },\n";
3095     }
3096 }
3097
3098 # Utility routines ###################################################
3099
3100 # On VMS, if the given file is a logical name, File::Spec::Functions
3101 # will consider it an absolute path.  There are cases when we want a
3102 # purely syntactic check without checking the environment.
3103 sub isabsolute {
3104     my $file = shift;
3105
3106     # On non-platforms, we just use file_name_is_absolute().
3107     return file_name_is_absolute($file) unless $^O eq "VMS";
3108
3109     # If the file spec includes a device or a directory spec,
3110     # file_name_is_absolute() is perfectly safe.
3111     return file_name_is_absolute($file) if $file =~ m|[:\[]|;
3112
3113     # Here, we know the given file spec isn't absolute
3114     return 0;
3115 }
3116
3117 # Makes a directory absolute and cleans out /../ in paths like foo/../bar
3118 # On some platforms, this uses rel2abs(), while on others, realpath() is used.
3119 # realpath() requires that at least all path components except the last is an
3120 # existing directory.  On VMS, the last component of the directory spec must
3121 # exist.
3122 sub absolutedir {
3123     my $dir = shift;
3124
3125     # realpath() is quite buggy on VMS.  It uses LIB$FID_TO_NAME, which
3126     # will return the volume name for the device, no matter what.  Also,
3127     # it will return an incorrect directory spec if the argument is a
3128     # directory that doesn't exist.
3129     if ($^O eq "VMS") {
3130         return rel2abs($dir);
3131     }
3132
3133     # We use realpath() on Unix, since no other will properly clean out
3134     # a directory spec.
3135     use Cwd qw/realpath/;
3136
3137     return realpath($dir);
3138 }
3139
3140 sub quotify {
3141     my %processors = (
3142         perl    => sub { my $x = shift;
3143                          $x =~ s/([\\\$\@"])/\\$1/g;
3144                          return '"'.$x.'"'; },
3145         maybeshell => sub { my $x = shift;
3146                             (my $y = $x) =~ s/([\\\"])/\\$1/g;
3147                             if ($x ne $y || $x =~ m|\s|) {
3148                                 return '"'.$y.'"';
3149                             } else {
3150                                 return $x;
3151                             }
3152                         },
3153         );
3154     my $for = shift;
3155     my $processor =
3156         defined($processors{$for}) ? $processors{$for} : sub { shift; };
3157
3158     return map { $processor->($_); } @_;
3159 }
3160
3161 # collect_from_file($filename, $line_concat_cond_re, $line_concat)
3162 # $filename is a file name to read from
3163 # $line_concat_cond_re is a regexp detecting a line continuation ending
3164 # $line_concat is a CODEref that takes care of concatenating two lines
3165 sub collect_from_file {
3166     my $filename = shift;
3167     my $line_concat_cond_re = shift;
3168     my $line_concat = shift;
3169
3170     open my $fh, $filename || die "unable to read $filename: $!\n";
3171     return sub {
3172         my $saved_line = "";
3173         $_ = "";
3174         while (<$fh>) {
3175             s|\R$||;
3176             if (defined $line_concat) {
3177                 $_ = $line_concat->($saved_line, $_);
3178                 $saved_line = "";
3179             }
3180             if (defined $line_concat_cond_re && /$line_concat_cond_re/) {
3181                 $saved_line = $_;
3182                 next;
3183             }
3184             return $_;
3185         }
3186         die "$filename ending with continuation line\n" if $_;
3187         close $fh;
3188         return undef;
3189     }
3190 }
3191
3192 # collect_from_array($array, $line_concat_cond_re, $line_concat)
3193 # $array is an ARRAYref of lines
3194 # $line_concat_cond_re is a regexp detecting a line continuation ending
3195 # $line_concat is a CODEref that takes care of concatenating two lines
3196 sub collect_from_array {
3197     my $array = shift;
3198     my $line_concat_cond_re = shift;
3199     my $line_concat = shift;
3200     my @array = (@$array);
3201
3202     return sub {
3203         my $saved_line = "";
3204         $_ = "";
3205         while (defined($_ = shift @array)) {
3206             s|\R$||;
3207             if (defined $line_concat) {
3208                 $_ = $line_concat->($saved_line, $_);
3209                 $saved_line = "";
3210             }
3211             if (defined $line_concat_cond_re && /$line_concat_cond_re/) {
3212                 $saved_line = $_;
3213                 next;
3214             }
3215             return $_;
3216         }
3217         die "input text ending with continuation line\n" if $_;
3218         return undef;
3219     }
3220 }
3221
3222 # collect_information($lineiterator, $line_continue, $regexp => $CODEref, ...)
3223 # $lineiterator is a CODEref that delivers one line at a time.
3224 # All following arguments are regex/CODEref pairs, where the regexp detects a
3225 # line and the CODEref does something with the result of the regexp.
3226 sub collect_information {
3227     my $lineiterator = shift;
3228     my %collectors = @_;
3229
3230     while(defined($_ = $lineiterator->())) {
3231         s|\R$||;
3232         my $found = 0;
3233         if ($collectors{"BEFORE"}) {
3234             $collectors{"BEFORE"}->($_);
3235         }
3236         foreach my $re (keys %collectors) {
3237             if ($re !~ /^OTHERWISE|BEFORE|AFTER$/ && /$re/) {
3238                 $collectors{$re}->($lineiterator);
3239                 $found = 1;
3240             };
3241         }
3242         if ($collectors{"OTHERWISE"}) {
3243             $collectors{"OTHERWISE"}->($lineiterator, $_)
3244                 unless $found || !defined $collectors{"OTHERWISE"};
3245         }
3246         if ($collectors{"AFTER"}) {
3247             $collectors{"AFTER"}->($_);
3248         }
3249     }
3250 }
3251
3252 # tokenize($line)
3253 # tokenize($line,$separator)
3254 # $line is a line of text to split up into tokens
3255 # $separator [optional] is a regular expression that separates the tokens,
3256 # the default being spaces.  Do not use quotes of any kind as separators,
3257 # that will give undefined results.
3258 # Returns a list of tokens.
3259 #
3260 # Tokens are divided by separator (spaces by default).  If the tokens include
3261 # the separators, they have to be quoted with single or double quotes.
3262 # Double quotes inside a double quoted token must be escaped.  Escaping is done
3263 # with backslash.
3264 # Basically, the same quoting rules apply for " and ' as in any
3265 # Unix shell.
3266 sub tokenize {
3267     my $line = my $debug_line = shift;
3268     my $separator = shift // qr|\s+|;
3269     my @result = ();
3270
3271     if ($ENV{CONFIGURE_DEBUG_TOKENIZE}) {
3272         print STDERR "DEBUG[tokenize]: \$separator = $separator\n";
3273     }
3274
3275     while ($line =~ s|^${separator}||, $line ne "") {
3276         my $token = "";
3277     again:
3278         $line =~ m/^(.*?)(${separator}|"|'|$)/;
3279         $token .= $1;
3280         $line = $2.$';
3281
3282         if ($line =~ m/^"((?:[^"\\]+|\\.)*)"/) {
3283             $token .= $1;
3284             $line = $';
3285             goto again;
3286         } elsif ($line =~ m/^'([^']*)'/) {
3287             $token .= $1;
3288             $line = $';
3289             goto again;
3290         }
3291         push @result, $token;
3292     }
3293
3294     if ($ENV{CONFIGURE_DEBUG_TOKENIZE}) {
3295         print STDERR "DEBUG[tokenize]: Parsed '$debug_line' into:\n";
3296         print STDERR "DEBUG[tokenize]: ('", join("', '", @result), "')\n";
3297     }
3298     return @result;
3299 }