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