OpenSSL::Util::Pod: allow slashes in names
[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                 # Pretend that our strict flags is a C flag, and replace it
753                 # with the proper flags later on
754                 push @{$useradd{CFLAGS}}, '--ossl-strict-warnings';
755                 push @{$useradd{CXXFLAGS}}, '--ossl-strict-warnings';
756                 $strict_warnings=1;
757                 }
758         elsif (/^--debug$/)
759                 {
760                 $config{build_type} = "debug";
761                 }
762         elsif (/^--release$/)
763                 {
764                 $config{build_type} = "release";
765                 }
766         elsif (/^386$/)
767                 { $config{processor}=386; }
768         elsif (/^fips$/)
769                 {
770                 die "FIPS mode not supported\n";
771                 }
772         elsif (/^rsaref$/)
773                 {
774                 # No RSAref support any more since it's not needed.
775                 # The check for the option is there so scripts aren't
776                 # broken
777                 }
778         elsif (/^nofipscanistercheck$/)
779                 {
780                 die "FIPS mode not supported\n";
781                 }
782         elsif (/^[-+]/)
783                 {
784                 if (/^--prefix=(.*)$/)
785                         {
786                         $config{prefix}=$1;
787                         die "Directory given with --prefix MUST be absolute\n"
788                                 unless file_name_is_absolute($config{prefix});
789                         }
790                 elsif (/^--api=(.*)$/)
791                         {
792                         $config{api}=$1;
793                         }
794                 elsif (/^--libdir=(.*)$/)
795                         {
796                         $config{libdir}=$1;
797                         }
798                 elsif (/^--openssldir=(.*)$/)
799                         {
800                         $config{openssldir}=$1;
801                         }
802                 elsif (/^--with-zlib-lib=(.*)$/)
803                         {
804                         $withargs{zlib_lib}=$1;
805                         }
806                 elsif (/^--with-zlib-include=(.*)$/)
807                         {
808                         $withargs{zlib_include}=$1;
809                         }
810                 elsif (/^--with-fuzzer-lib=(.*)$/)
811                         {
812                         $withargs{fuzzer_lib}=$1;
813                         }
814                 elsif (/^--with-fuzzer-include=(.*)$/)
815                         {
816                         $withargs{fuzzer_include}=$1;
817                         }
818                 elsif (/^--with-rand-seed=(.*)$/)
819                         {
820                         foreach my $x (split(m|,|, $1))
821                             {
822                             die "Unknown --with-rand-seed choice $x\n"
823                                 if ! grep { $x eq $_ } @known_seed_sources;
824                             push @seed_sources, $x;
825                             }
826                         }
827                 elsif (/^--cross-compile-prefix=(.*)$/)
828                         {
829                         $user{CROSS_COMPILE}=$1;
830                         }
831                 elsif (/^--config=(.*)$/)
832                         {
833                         read_config $1;
834                         }
835                 elsif (/^-l(.*)$/)
836                         {
837                         push @{$useradd{LDLIBS}}, $_;
838                         }
839                 elsif (/^-framework$/)
840                         {
841                         push @{$useradd{LDLIBS}}, $_, shift(@argvcopy);
842                         }
843                 elsif (/^-L(.*)$/ or /^-Wl,/)
844                         {
845                         push @{$useradd{LDFLAGS}}, $_;
846                         }
847                 elsif (/^-rpath$/ or /^-R$/)
848                         # -rpath is the OSF1 rpath flag
849                         # -R is the old Solaris rpath flag
850                         {
851                         my $rpath = shift(@argvcopy) || "";
852                         $rpath .= " " if $rpath ne "";
853                         push @{$useradd{LDFLAGS}}, $_, $rpath;
854                         }
855                 elsif (/^-static$/)
856                         {
857                         push @{$useradd{LDFLAGS}}, $_;
858                         $disabled{"dso"} = "forced";
859                         $disabled{"pic"} = "forced";
860                         $disabled{"shared"} = "forced";
861                         $disabled{"threads"} = "forced";
862                         }
863                 elsif (/^-D(.*)$/)
864                         {
865                         push @{$useradd{CPPDEFINES}}, $1;
866                         }
867                 elsif (/^-I(.*)$/)
868                         {
869                         push @{$useradd{CPPINCLUDES}}, $1;
870                         }
871                 elsif (/^-Wp,$/)
872                         {
873                         push @{$useradd{CPPFLAGS}}, $1;
874                         }
875                 else    # common if (/^[-+]/), just pass down...
876                         {
877                         $_ =~ s/%([0-9a-f]{1,2})/chr(hex($1))/gei;
878                         push @{$useradd{CFLAGS}}, $_;
879                         push @{$useradd{CXXFLAGS}}, $_;
880                         }
881                 }
882         else
883                 {
884                 die "target already defined - $target (offending arg: $_)\n" if ($target ne "");
885                 $target=$_;
886                 }
887         unless ($_ eq $target || /^no-/ || /^disable-/)
888                 {
889                 # "no-..." follows later after implied deactivations
890                 # have been derived.  (Don't take this too seriously,
891                 # we really only write OPTIONS to the Makefile out of
892                 # nostalgia.)
893
894                 if ($config{options} eq "")
895                         { $config{options} = $_; }
896                 else
897                         { $config{options} .= " ".$_; }
898                 }
899         }
900
901 if (defined($config{api}) && !exists $apitable->{$config{api}}) {
902         die "***** Unsupported api compatibility level: $config{api}\n",
903 }
904
905 if (keys %deprecated_options)
906         {
907         warn "***** Deprecated options: ",
908                 join(", ", keys %deprecated_options), "\n";
909         }
910 if (keys %unsupported_options)
911         {
912         die "***** Unsupported options: ",
913                 join(", ", keys %unsupported_options), "\n";
914         }
915
916 # If any %useradd entry has been set, we must check that the "make
917 # variables" haven't been set.  We start by checking of any %useradd entry
918 # is set.
919 if (grep { scalar @$_ > 0 } values %useradd) {
920     # Hash of env / make variables names.  The possible values are:
921     # 1 - "make vars"
922     # 2 - %useradd entry set
923     # 3 - both set
924     my %detected_vars =
925         map { my $v = 0;
926               $v += 1 if $cmdvars{$_};
927               $v += 2 if @{$useradd{$_}};
928               $_ => $v }
929         keys %useradd;
930
931     # If any of the corresponding "make variables" is set, we error
932     if (grep { $_ & 1 } values %detected_vars) {
933         my $names = join(', ', grep { $detected_vars{$_} > 0 }
934                                sort keys %detected_vars);
935         die <<"_____";
936 ***** Mixing make variables and additional compiler/linker flags as
937 ***** configure command line option is not permitted.
938 ***** Affected make variables: $names
939 _____
940     }
941 }
942
943 # Check through all supported command line variables to see if any of them
944 # were set, and canonicalise the values we got.  If no compiler or linker
945 # flag or anything else that affects %useradd was set, we also check the
946 # environment for values.
947 my $anyuseradd =
948     grep { defined $_ && (ref $_ ne 'ARRAY' || @$_) } values %useradd;
949 foreach (keys %user) {
950     my $value = $cmdvars{$_};
951     $value //= env($_) unless $anyuseradd;
952     $value //=
953         defined $user_synonyms{$_} ? $cmdvars{$user_synonyms{$_}} : undef;
954     $value //= defined $user_synonyms{$_} ? env($user_synonyms{$_}) : undef
955         unless $anyuseradd;
956
957     if (defined $value) {
958         if (ref $user{$_} eq 'ARRAY') {
959             $user{$_} = [ split /$list_separator_re/, $value ];
960         } elsif (!defined $user{$_}) {
961             $user{$_} = $value;
962         }
963     }
964 }
965
966 if (grep { /-rpath\b/ } ($user{LDFLAGS} ? @{$user{LDFLAGS}} : ())
967     && !$disabled{shared}
968     && !($disabled{asan} && $disabled{msan} && $disabled{ubsan})) {
969     die "***** Cannot simultaneously use -rpath, shared libraries, and\n",
970         "***** any of asan, msan or ubsan\n";
971 }
972
973 my @tocheckfor = (keys %disabled);
974 while (@tocheckfor) {
975     my %new_tocheckfor = ();
976     my @cascade_copy = (@disable_cascades);
977     while (@cascade_copy) {
978         my ($test, $descendents) = (shift @cascade_copy, shift @cascade_copy);
979         if (ref($test) eq "CODE" ? $test->() : defined($disabled{$test})) {
980             foreach(grep { !defined($disabled{$_}) } @$descendents) {
981                 $new_tocheckfor{$_} = 1; $disabled{$_} = "forced";
982             }
983         }
984     }
985     @tocheckfor = (keys %new_tocheckfor);
986 }
987
988 our $die = sub { die @_; };
989 if ($target eq "TABLE") {
990     local $die = sub { warn @_; };
991     foreach (sort keys %table) {
992         print_table_entry($_, "TABLE");
993     }
994     exit 0;
995 }
996
997 if ($target eq "LIST") {
998     foreach (sort keys %table) {
999         print $_,"\n" unless $table{$_}->{template};
1000     }
1001     exit 0;
1002 }
1003
1004 if ($target eq "HASH") {
1005     local $die = sub { warn @_; };
1006     print "%table = (\n";
1007     foreach (sort keys %table) {
1008         print_table_entry($_, "HASH");
1009     }
1010     exit 0;
1011 }
1012
1013 print "Configuring OpenSSL version $config{full_version} ";
1014 print "for target $target\n";
1015
1016 if (scalar(@seed_sources) == 0) {
1017     print "Using os-specific seed configuration\n";
1018     push @seed_sources, 'os';
1019 }
1020 if (scalar(grep { $_ eq 'none' } @seed_sources) > 0) {
1021     die "Cannot seed with none and anything else" if scalar(@seed_sources) > 1;
1022     warn <<_____ if scalar(@seed_sources) == 1;
1023
1024 ============================== WARNING ===============================
1025 You have selected the --with-rand-seed=none option, which effectively
1026 disables automatic reseeding of the OpenSSL random generator.
1027 All operations depending on the random generator such as creating keys
1028 will not work unless the random generator is seeded manually by the
1029 application.
1030
1031 Please read the 'Note on random number generation' section in the
1032 INSTALL instructions and the RAND_DRBG(7) manual page for more details.
1033 ============================== WARNING ===============================
1034
1035 _____
1036 }
1037 push @{$config{openssl_feature_defines}},
1038      map { (my $x = $_) =~ tr|[\-a-z]|[_A-Z]|; "OPENSSL_RAND_SEED_$x" }
1039         @seed_sources;
1040
1041 # Backward compatibility?
1042 if ($target =~ m/^CygWin32(-.*)$/) {
1043     $target = "Cygwin".$1;
1044 }
1045
1046 # Support for legacy targets having a name starting with 'debug-'
1047 my ($d, $t) = $target =~ m/^(debug-)?(.*)$/;
1048 if ($d) {
1049     $config{build_type} = "debug";
1050
1051     # If we do not find debug-foo in the table, the target is set to foo.
1052     if (!$table{$target}) {
1053         $target = $t;
1054     }
1055 }
1056
1057 &usage if !$table{$target} || $table{$target}->{template};
1058
1059 $config{target} = $target;
1060 my %target = resolve_config($target);
1061
1062 foreach (keys %target_attr_translate) {
1063     $target{$target_attr_translate{$_}} = $target{$_}
1064         if $target{$_};
1065     delete $target{$_};
1066 }
1067
1068 %target = ( %{$table{DEFAULTS}}, %target );
1069
1070 # Make the flags to build DSOs the same as for shared libraries unless they
1071 # are already defined
1072 $target{module_cflags} = $target{shared_cflag} unless defined $target{module_cflags};
1073 $target{module_cxxflags} = $target{shared_cxxflag} unless defined $target{module_cxxflags};
1074 $target{module_ldflags} = $target{shared_ldflag} unless defined $target{module_ldflags};
1075 {
1076     my $shared_info_pl =
1077         catfile(dirname($0), "Configurations", "shared-info.pl");
1078     my %shared_info = read_eval_file($shared_info_pl);
1079     push @{$target{_conf_fname_int}}, $shared_info_pl;
1080     my $si = $target{shared_target};
1081     while (ref $si ne "HASH") {
1082         last if ! defined $si;
1083         if (ref $si eq "CODE") {
1084             $si = $si->();
1085         } else {
1086             $si = $shared_info{$si};
1087         }
1088     }
1089
1090     # Some of the 'shared_target' values don't have any entried in
1091     # %shared_info.  That's perfectly fine, AS LONG AS the build file
1092     # template knows how to handle this.  That is currently the case for
1093     # Windows and VMS.
1094     if (defined $si) {
1095         # Just as above, copy certain shared_* attributes to the corresponding
1096         # module_ attribute unless the latter is already defined
1097         $si->{module_cflags} = $si->{shared_cflag} unless defined $si->{module_cflags};
1098         $si->{module_cxxflags} = $si->{shared_cxxflag} unless defined $si->{module_cxxflags};
1099         $si->{module_ldflags} = $si->{shared_ldflag} unless defined $si->{module_ldflags};
1100         foreach (sort keys %$si) {
1101             $target{$_} = defined $target{$_}
1102                 ? add($si->{$_})->($target{$_})
1103                 : $si->{$_};
1104         }
1105     }
1106 }
1107
1108 my %conf_files = map { $_ => 1 } (@{$target{_conf_fname_int}});
1109 $config{conf_files} = [ sort keys %conf_files ];
1110
1111 foreach my $feature (@{$target{disable}}) {
1112     if (exists $deprecated_disablables{$feature}) {
1113         warn "***** config $target disables deprecated feature $feature\n";
1114     } elsif (!grep { $feature eq $_ } @disablables) {
1115         die "***** config $target disables unknown feature $feature\n";
1116     }
1117     $disabled{$feature} = 'config';
1118 }
1119 foreach my $feature (@{$target{enable}}) {
1120     if ("default" eq ($disabled{$feature} // "")) {
1121         if (exists $deprecated_disablables{$feature}) {
1122             warn "***** config $target enables deprecated feature $feature\n";
1123         } elsif (!grep { $feature eq $_ } @disablables) {
1124             die "***** config $target enables unknown feature $feature\n";
1125         }
1126         delete $disabled{$feature};
1127     }
1128 }
1129
1130 $target{CXXFLAGS}//=$target{CFLAGS} if $target{CXX};
1131 $target{cxxflags}//=$target{cflags} if $target{CXX};
1132 $target{exe_extension}=".exe" if ($config{target} eq "DJGPP");
1133 $target{exe_extension}=".pm"  if ($config{target} =~ /vos/);
1134
1135 # Fill %config with values from %user, and in case those are undefined or
1136 # empty, use values from %target (acting as a default).
1137 foreach (keys %user) {
1138     my $ref_type = ref $user{$_};
1139
1140     # Temporary function.  Takes an intended ref type (empty string or "ARRAY")
1141     # and a value that's to be coerced into that type.
1142     my $mkvalue = sub {
1143         my $type = shift;
1144         my $value = shift;
1145         my $undef_p = shift;
1146
1147         die "Too many arguments for \$mkvalue" if @_;
1148
1149         while (ref $value eq 'CODE') {
1150             $value = $value->();
1151         }
1152
1153         if ($type eq 'ARRAY') {
1154             return undef unless defined $value;
1155             return undef if ref $value ne 'ARRAY' && !$value;
1156             return undef if ref $value eq 'ARRAY' && !@$value;
1157             return [ $value ] unless ref $value eq 'ARRAY';
1158         }
1159         return undef unless $value;
1160         return $value;
1161     };
1162
1163     $config{$_} =
1164         $mkvalue->($ref_type, $user{$_})
1165         || $mkvalue->($ref_type, $target{$_});
1166     delete $config{$_} unless defined $config{$_};
1167 }
1168
1169 # Allow overriding the build file name
1170 $config{build_file} = env('BUILDFILE') || $target{build_file} || "Makefile";
1171
1172 ######################################################################
1173 # Build up information for skipping certain directories depending on disabled
1174 # features, as well as setting up macros for disabled features.
1175
1176 # This is a tentative database of directories to skip.  Some entries may not
1177 # correspond to anything real, but that's ok, they will simply be ignored.
1178 # The actual processing of these entries is done in the build.info lookup
1179 # loop further down.
1180 #
1181 # The key is a Unix formated path in the source tree, the value is an index
1182 # into %disabled_info, so any existing path gets added to a corresponding
1183 # 'skipped' entry in there with the list of skipped directories.
1184 my %skipdir = ();
1185 my %disabled_info = ();         # For configdata.pm
1186 foreach my $what (sort keys %disabled) {
1187     $config{options} .= " no-$what";
1188
1189     if (!grep { $what eq $_ } ( 'dso', 'threads', 'shared', 'pic',
1190                                 'dynamic-engine', 'makedepend',
1191                                 'zlib-dynamic', 'zlib', 'sse2' )) {
1192         (my $WHAT = uc $what) =~ s|-|_|g;
1193         my $skipdir = $what;
1194
1195         # fix-up crypto/directory name(s)
1196         $skipdir = "ripemd" if $what eq "rmd160";
1197         $skipdir = "whrlpool" if $what eq "whirlpool";
1198
1199         my $macro = $disabled_info{$what}->{macro} = "OPENSSL_NO_$WHAT";
1200         push @{$config{openssl_feature_defines}}, $macro;
1201
1202         $skipdir{engines} = $what if $what eq 'engine';
1203         $skipdir{"crypto/$skipdir"} = $what
1204             unless $what eq 'async' || $what eq 'err';
1205     }
1206 }
1207
1208 # Make sure build_scheme is consistent.
1209 $target{build_scheme} = [ $target{build_scheme} ]
1210     if ref($target{build_scheme}) ne "ARRAY";
1211
1212 my ($builder, $builder_platform, @builder_opts) =
1213     @{$target{build_scheme}};
1214
1215 foreach my $checker (($builder_platform."-".$target{build_file}."-checker.pm",
1216                       $builder_platform."-checker.pm")) {
1217     my $checker_path = catfile($srcdir, "Configurations", $checker);
1218     if (-f $checker_path) {
1219         my $fn = $ENV{CONFIGURE_CHECKER_WARN}
1220             ? sub { warn $@; } : sub { die $@; };
1221         if (! do $checker_path) {
1222             if ($@) {
1223                 $fn->($@);
1224             } elsif ($!) {
1225                 $fn->($!);
1226             } else {
1227                 $fn->("The detected tools didn't match the platform\n");
1228             }
1229         }
1230         last;
1231     }
1232 }
1233
1234 push @{$config{defines}}, "NDEBUG"    if $config{build_type} eq "release";
1235
1236 if ($target =~ /^mingw/ && `$config{CC} --target-help 2>&1` =~ m/-mno-cygwin/m)
1237         {
1238         push @{$config{cflags}}, "-mno-cygwin";
1239         push @{$config{cxxflags}}, "-mno-cygwin" if $config{CXX};
1240         push @{$config{shared_ldflag}}, "-mno-cygwin";
1241         }
1242
1243 if ($target =~ /linux.*-mips/ && !$disabled{asm}
1244         && !grep { $_ !~ /-m(ips|arch=)/ } (@{$user{CFLAGS}},
1245                                             @{$useradd{CFLAGS}})) {
1246         # minimally required architecture flags for assembly modules
1247         my $value;
1248         $value = '-mips2' if ($target =~ /mips32/);
1249         $value = '-mips3' if ($target =~ /mips64/);
1250         unshift @{$config{cflags}}, $value;
1251         unshift @{$config{cxxflags}}, $value if $config{CXX};
1252 }
1253
1254 # If threads aren't disabled, check how possible they are
1255 unless ($disabled{threads}) {
1256     if ($auto_threads) {
1257         # Enabled by default, disable it forcibly if unavailable
1258         if ($target{thread_scheme} eq "(unknown)") {
1259             $disabled{threads} = "unavailable";
1260         }
1261     } else {
1262         # The user chose to enable threads explicitly, let's see
1263         # if there's a chance that's possible
1264         if ($target{thread_scheme} eq "(unknown)") {
1265             # If the user asked for "threads" and we don't have internal
1266             # knowledge how to do it, [s]he is expected to provide any
1267             # system-dependent compiler options that are necessary.  We
1268             # can't truly check that the given options are correct, but
1269             # we expect the user to know what [s]He is doing.
1270             if (!@{$user{CFLAGS}} && !@{$useradd{CFLAGS}}
1271                     && !@{$user{CPPDEFINES}} && !@{$useradd{CPPDEFINES}}) {
1272                 die "You asked for multi-threading support, but didn't\n"
1273                     ,"provide any system-specific compiler options\n";
1274             }
1275         }
1276     }
1277 }
1278
1279 # If threads still aren't disabled, add a C macro to ensure the source
1280 # code knows about it.  Any other flag is taken care of by the configs.
1281 unless($disabled{threads}) {
1282     push @{$config{openssl_feature_defines}}, "OPENSSL_THREADS";
1283 }
1284
1285 # With "deprecated" disable all deprecated features.
1286 if (defined($disabled{"deprecated"})) {
1287         $config{api} = $maxapi;
1288 }
1289
1290 my $no_shared_warn=0;
1291 if ($target{shared_target} eq "")
1292         {
1293         $no_shared_warn = 1
1294             if (!$disabled{shared} || !$disabled{"dynamic-engine"});
1295         $disabled{shared} = "no-shared-target";
1296         $disabled{pic} = $disabled{shared} = $disabled{"dynamic-engine"} =
1297             "no-shared-target";
1298         }
1299
1300 if ($disabled{"dynamic-engine"}) {
1301         push @{$config{openssl_feature_defines}}, "OPENSSL_NO_DYNAMIC_ENGINE";
1302         $config{dynamic_engines} = 0;
1303 } else {
1304         push @{$config{openssl_feature_defines}}, "OPENSSL_NO_STATIC_ENGINE";
1305         $config{dynamic_engines} = 1;
1306 }
1307
1308 unless ($disabled{asan}) {
1309     push @{$config{cflags}}, "-fsanitize=address";
1310     push @{$config{cxxflags}}, "-fsanitize=address" if $config{CXX};
1311 }
1312
1313 unless ($disabled{ubsan}) {
1314     # -DPEDANTIC or -fnosanitize=alignment may also be required on some
1315     # platforms.
1316     push @{$config{cflags}}, "-fsanitize=undefined", "-fno-sanitize-recover=all";
1317     push @{$config{cxxflags}}, "-fsanitize=undefined", "-fno-sanitize-recover=all"
1318         if $config{CXX};
1319 }
1320
1321 unless ($disabled{msan}) {
1322   push @{$config{cflags}}, "-fsanitize=memory";
1323   push @{$config{cxxflags}}, "-fsanitize=memory" if $config{CXX};
1324 }
1325
1326 unless ($disabled{"fuzz-libfuzzer"} && $disabled{"fuzz-afl"}
1327         && $disabled{asan} && $disabled{ubsan} && $disabled{msan}) {
1328     push @{$config{cflags}}, "-fno-omit-frame-pointer", "-g";
1329     push @{$config{cxxflags}}, "-fno-omit-frame-pointer", "-g" if $config{CXX};
1330 }
1331 #
1332 # Platform fix-ups
1333 #
1334
1335 # This saves the build files from having to check
1336 if ($disabled{pic})
1337         {
1338         foreach (qw(shared_cflag shared_cxxflag shared_cppflag
1339                     shared_defines shared_includes shared_ldflag
1340                     module_cflags module_cxxflags module_cppflags
1341                     module_defines module_includes module_lflags))
1342                 {
1343                 delete $config{$_};
1344                 $target{$_} = "";
1345                 }
1346         }
1347 else
1348         {
1349         push @{$config{lib_defines}}, "OPENSSL_PIC";
1350         }
1351
1352 if ($target{sys_id} ne "")
1353         {
1354         push @{$config{openssl_sys_defines}}, "OPENSSL_SYS_$target{sys_id}";
1355         }
1356
1357 unless ($disabled{asm}) {
1358     $target{cpuid_asm_src}=$table{DEFAULTS}->{cpuid_asm_src} if ($config{processor} eq "386");
1359     push @{$config{lib_defines}}, "OPENSSL_CPUID_OBJ" if ($target{cpuid_asm_src} ne "mem_clr.c");
1360
1361     $target{bn_asm_src} =~ s/\w+-gf2m.c// if (defined($disabled{ec2m}));
1362
1363     # bn-586 is the only one implementing bn_*_part_words
1364     push @{$config{lib_defines}}, "OPENSSL_BN_ASM_PART_WORDS" if ($target{bn_asm_src} =~ /bn-586/);
1365     push @{$config{lib_defines}}, "OPENSSL_IA32_SSE2" if (!$disabled{sse2} && $target{bn_asm_src} =~ /86/);
1366
1367     push @{$config{lib_defines}}, "OPENSSL_BN_ASM_MONT" if ($target{bn_asm_src} =~ /-mont/);
1368     push @{$config{lib_defines}}, "OPENSSL_BN_ASM_MONT5" if ($target{bn_asm_src} =~ /-mont5/);
1369     push @{$config{lib_defines}}, "OPENSSL_BN_ASM_GF2m" if ($target{bn_asm_src} =~ /-gf2m/);
1370     push @{$config{lib_defines}}, "BN_DIV3W" if ($target{bn_asm_src} =~ /-div3w/);
1371
1372     if ($target{sha1_asm_src}) {
1373         push @{$config{lib_defines}}, "SHA1_ASM"   if ($target{sha1_asm_src} =~ /sx86/ || $target{sha1_asm_src} =~ /sha1/);
1374         push @{$config{lib_defines}}, "SHA256_ASM" if ($target{sha1_asm_src} =~ /sha256/);
1375         push @{$config{lib_defines}}, "SHA512_ASM" if ($target{sha1_asm_src} =~ /sha512/);
1376     }
1377     if ($target{keccak1600_asm_src} ne $table{DEFAULTS}->{keccak1600_asm_src}) {
1378         push @{$config{lib_defines}}, "KECCAK1600_ASM";
1379     }
1380     if ($target{rc4_asm_src} ne $table{DEFAULTS}->{rc4_asm_src}) {
1381         push @{$config{lib_defines}}, "RC4_ASM";
1382     }
1383     if ($target{md5_asm_src}) {
1384         push @{$config{lib_defines}}, "MD5_ASM";
1385     }
1386     $target{cast_asm_src}=$table{DEFAULTS}->{cast_asm_src} unless $disabled{pic}; # CAST assembler is not PIC
1387     if ($target{rmd160_asm_src}) {
1388         push @{$config{lib_defines}}, "RMD160_ASM";
1389     }
1390     if ($target{aes_asm_src}) {
1391         push @{$config{lib_defines}}, "AES_ASM" if ($target{aes_asm_src} =~ m/\baes-/);;
1392         # aes-ctr.fake is not a real file, only indication that assembler
1393         # module implements AES_ctr32_encrypt...
1394         push @{$config{lib_defines}}, "AES_CTR_ASM" if ($target{aes_asm_src} =~ s/\s*aes-ctr\.fake//);
1395         # aes-xts.fake indicates presence of AES_xts_[en|de]crypt...
1396         push @{$config{lib_defines}}, "AES_XTS_ASM" if ($target{aes_asm_src} =~ s/\s*aes-xts\.fake//);
1397         $target{aes_asm_src} =~ s/\s*(vpaes|aesni)-x86\.s//g if ($disabled{sse2});
1398         push @{$config{lib_defines}}, "VPAES_ASM" if ($target{aes_asm_src} =~ m/vpaes/);
1399         push @{$config{lib_defines}}, "BSAES_ASM" if ($target{aes_asm_src} =~ m/bsaes/);
1400     }
1401     if ($target{wp_asm_src} =~ /mmx/) {
1402         if ($config{processor} eq "386") {
1403             $target{wp_asm_src}=$table{DEFAULTS}->{wp_asm_src};
1404         } elsif (!$disabled{"whirlpool"}) {
1405             push @{$config{lib_defines}}, "WHIRLPOOL_ASM";
1406         }
1407     }
1408     if ($target{modes_asm_src} =~ /ghash-/) {
1409         push @{$config{lib_defines}}, "GHASH_ASM";
1410     }
1411     if ($target{ec_asm_src} =~ /ecp_nistz256/) {
1412         push @{$config{lib_defines}}, "ECP_NISTZ256_ASM";
1413     }
1414     if ($target{ec_asm_src} =~ /x25519/) {
1415         push @{$config{lib_defines}}, "X25519_ASM";
1416     }
1417     if ($target{padlock_asm_src} ne $table{DEFAULTS}->{padlock_asm_src}) {
1418         push @{$config{dso_defines}}, "PADLOCK_ASM";
1419     }
1420     if ($target{poly1305_asm_src} ne "") {
1421         push @{$config{lib_defines}}, "POLY1305_ASM";
1422     }
1423 }
1424
1425 my %predefined = compiler_predefined($config{CROSS_COMPILE}.$config{CC});
1426
1427 # Check for makedepend capabilities.
1428 if (!$disabled{makedepend}) {
1429     if ($config{target} =~ /^(VC|vms)-/) {
1430         # For VC- and vms- targets, there's nothing more to do here.  The
1431         # functionality is hard coded in the corresponding build files for
1432         # cl (Windows) and CC/DECC (VMS).
1433     } elsif (($predefined{__GNUC__} // -1) >= 3
1434              && !($predefined{__APPLE_CC__} && !$predefined{__clang__})) {
1435         # We know that GNU C version 3 and up as well as all clang
1436         # versions support dependency generation, but Xcode did not
1437         # handle $cc -M before clang support (but claims __GNUC__ = 3)
1438         $config{makedepprog} = "\$(CROSS_COMPILE)$config{CC}";
1439     } else {
1440         # In all other cases, we look for 'makedepend', and disable the
1441         # capability if not found.
1442         $config{makedepprog} = which('makedepend');
1443         $disabled{makedepend} = "unavailable" unless $config{makedepprog};
1444     }
1445 }
1446
1447 if (!$disabled{asm} && !$predefined{__MACH__} && $^O ne 'VMS') {
1448     # probe for -Wa,--noexecstack option...
1449     if ($predefined{__clang__}) {
1450         # clang has builtin assembler, which doesn't recognize --help,
1451         # but it apparently recognizes the option in question on all
1452         # supported platforms even when it's meaningless. In other words
1453         # probe would fail, but probed option always accepted...
1454         push @{$config{cflags}}, "-Wa,--noexecstack", "-Qunused-arguments";
1455     } else {
1456         my $cc = $config{CROSS_COMPILE}.$config{CC};
1457         open(PIPE, "$cc -Wa,--help -c -o null.$$.o -x assembler /dev/null 2>&1 |");
1458         while(<PIPE>) {
1459             if (m/--noexecstack/) {
1460                 push @{$config{cflags}}, "-Wa,--noexecstack";
1461                 last;
1462             }
1463         }
1464         close(PIPE);
1465         unlink("null.$$.o");
1466     }
1467 }
1468
1469 # Deal with bn_ops ###################################################
1470
1471 $config{bn_ll}                  =0;
1472 $config{export_var_as_fn}       =0;
1473 my $def_int="unsigned int";
1474 $config{rc4_int}                =$def_int;
1475 ($config{b64l},$config{b64},$config{b32})=(0,0,1);
1476
1477 my $count = 0;
1478 foreach (sort split(/\s+/,$target{bn_ops})) {
1479     $count++ if /SIXTY_FOUR_BIT|SIXTY_FOUR_BIT_LONG|THIRTY_TWO_BIT/;
1480     $config{export_var_as_fn}=1                 if $_ eq 'EXPORT_VAR_AS_FN';
1481     $config{bn_ll}=1                            if $_ eq 'BN_LLONG';
1482     $config{rc4_int}="unsigned char"            if $_ eq 'RC4_CHAR';
1483     ($config{b64l},$config{b64},$config{b32})
1484         =(0,1,0)                                if $_ eq 'SIXTY_FOUR_BIT';
1485     ($config{b64l},$config{b64},$config{b32})
1486         =(1,0,0)                                if $_ eq 'SIXTY_FOUR_BIT_LONG';
1487     ($config{b64l},$config{b64},$config{b32})
1488         =(0,0,1)                                if $_ eq 'THIRTY_TWO_BIT';
1489 }
1490 die "Exactly one of SIXTY_FOUR_BIT|SIXTY_FOUR_BIT_LONG|THIRTY_TWO_BIT can be set in bn_ops\n"
1491     if $count > 1;
1492
1493
1494 # Hack cflags for better warnings (dev option) #######################
1495
1496 # "Stringify" the C and C++ flags string.  This permits it to be made part of
1497 # a string and works as well on command lines.
1498 $config{cflags} = [ map { (my $x = $_) =~ s/([\\\"])/\\$1/g; $x }
1499                         @{$config{cflags}} ];
1500 $config{cxxflags} = [ map { (my $x = $_) =~ s/([\\\"])/\\$1/g; $x }
1501                           @{$config{cxxflags}} ] if $config{CXX};
1502
1503 $config{openssl_api_defines} = [
1504     "OPENSSL_MIN_API=".($apitable->{$config{api} // ""} // -1)
1505 ];
1506
1507 my @strict_warnings_collection=();
1508 if ($strict_warnings)
1509         {
1510         my $wopt;
1511         my $gccver = $predefined{__GNUC__} // -1;
1512
1513         die "ERROR --strict-warnings requires gcc[>=4] or gcc-alike"
1514             unless $gccver >= 4;
1515         push @strict_warnings_collection, (split /\s+/, $gcc_devteam_warn);
1516         push @strict_warnings_collection, (split /\s+/, $clang_devteam_warn)
1517                 if (defined($predefined{__clang__}));
1518         }
1519 foreach (qw(CFLAGS CXXFLAGS))
1520         {
1521         $useradd{$_} = [ map { $_ eq '--ossl-strict-warnings'
1522                                   ? @strict_warnings_collection
1523                                   : ( $_ ) }
1524                             @{$useradd{$_}} ];
1525         }
1526
1527 unless ($disabled{"crypto-mdebug-backtrace"})
1528         {
1529         foreach my $wopt (split /\s+/, $memleak_devteam_backtrace)
1530                 {
1531                 push @{$config{cflags}}, $wopt
1532                         unless grep { $_ eq $wopt } @{$config{cflags}};
1533                 push @{$config{cxxflags}}, $wopt
1534                         if ($config{CXX}
1535                             && !grep { $_ eq $wopt } @{$config{cxxflags}});
1536                 }
1537         if ($target =~ /^BSD-/)
1538                 {
1539                 push @{$config{ex_libs}}, "-lexecinfo";
1540                 }
1541         }
1542
1543 unless ($disabled{afalgeng}) {
1544     $config{afalgeng}="";
1545     if (grep { $_ eq 'afalgeng' } @{$target{enable}}) {
1546         my $minver = 4*10000 + 1*100 + 0;
1547         if ($config{CROSS_COMPILE} eq "") {
1548             my $verstr = `uname -r`;
1549             my ($ma, $mi1, $mi2) = split("\\.", $verstr);
1550             ($mi2) = $mi2 =~ /(\d+)/;
1551             my $ver = $ma*10000 + $mi1*100 + $mi2;
1552             if ($ver < $minver) {
1553                 $disabled{afalgeng} = "too-old-kernel";
1554             } else {
1555                 push @{$config{engdirs}}, "afalg";
1556             }
1557         } else {
1558             $disabled{afalgeng} = "cross-compiling";
1559         }
1560     } else {
1561         $disabled{afalgeng}  = "not-linux";
1562     }
1563 }
1564
1565 push @{$config{openssl_feature_defines}}, "OPENSSL_NO_AFALGENG" if ($disabled{afalgeng});
1566
1567 unless ($disabled{ktls}) {
1568     $config{ktls}="";
1569     if ($target =~ m/^linux/) {
1570         my $usr = "/usr/$config{cross_compile_prefix}";
1571         chop($usr);
1572         if ($config{cross_compile_prefix} eq "") {
1573             $usr = "/usr";
1574         }
1575         my $minver = (4 << 16) + (13 << 8) + 0;
1576         my @verstr = split(" ",`cat $usr/include/linux/version.h | grep LINUX_VERSION_CODE`);
1577
1578         if ($verstr[2] < $minver) {
1579             $disabled{ktls} = "too-old-kernel";
1580         }
1581     } else {
1582         $disabled{ktls}  = "not-linux";
1583     }
1584 }
1585
1586 push @{$config{openssl_other_defines}}, "OPENSSL_NO_KTLS" if ($disabled{ktls});
1587
1588 # Finish up %config by appending things the user gave us on the command line
1589 # apart from "make variables"
1590 foreach (keys %useradd) {
1591     # The must all be lists, so we assert that here
1592     die "internal error: \$useradd{$_} isn't an ARRAY\n"
1593         unless ref $useradd{$_} eq 'ARRAY';
1594
1595     if (defined $config{$_}) {
1596         push @{$config{$_}}, @{$useradd{$_}};
1597     } else {
1598         $config{$_} = [ @{$useradd{$_}} ];
1599     }
1600 }
1601
1602 # ALL MODIFICATIONS TO %config and %target MUST BE DONE FROM HERE ON
1603
1604 # If we use the unified build, collect information from build.info files
1605 my %unified_info = ();
1606
1607 my $buildinfo_debug = defined($ENV{CONFIGURE_DEBUG_BUILDINFO});
1608 if ($builder eq "unified") {
1609     use with_fallback qw(Text::Template);
1610
1611     sub cleandir {
1612         my $base = shift;
1613         my $dir = shift;
1614         my $relativeto = shift || ".";
1615
1616         $dir = catdir($base,$dir) unless isabsolute($dir);
1617
1618         # Make sure the directories we're building in exists
1619         mkpath($dir);
1620
1621         my $res = abs2rel(absolutedir($dir), rel2abs($relativeto));
1622         #print STDERR "DEBUG[cleandir]: $dir , $base => $res\n";
1623         return $res;
1624     }
1625
1626     sub cleanfile {
1627         my $base = shift;
1628         my $file = shift;
1629         my $relativeto = shift || ".";
1630
1631         $file = catfile($base,$file) unless isabsolute($file);
1632
1633         my $d = dirname($file);
1634         my $f = basename($file);
1635
1636         # Make sure the directories we're building in exists
1637         mkpath($d);
1638
1639         my $res = abs2rel(catfile(absolutedir($d), $f), rel2abs($relativeto));
1640         #print STDERR "DEBUG[cleanfile]: $d , $f => $res\n";
1641         return $res;
1642     }
1643
1644     # Store the name of the template file we will build the build file from
1645     # in %config.  This may be useful for the build file itself.
1646     my @build_file_template_names =
1647         ( $builder_platform."-".$target{build_file}.".tmpl",
1648           $target{build_file}.".tmpl" );
1649     my @build_file_templates = ();
1650
1651     # First, look in the user provided directory, if given
1652     if (defined env($local_config_envname)) {
1653         @build_file_templates =
1654             map {
1655                 if ($^O eq 'VMS') {
1656                     # VMS environment variables are logical names,
1657                     # which can be used as is
1658                     $local_config_envname . ':' . $_;
1659                 } else {
1660                     catfile(env($local_config_envname), $_);
1661                 }
1662             }
1663             @build_file_template_names;
1664     }
1665     # Then, look in our standard directory
1666     push @build_file_templates,
1667         ( map { cleanfile($srcdir, catfile("Configurations", $_), $blddir) }
1668           @build_file_template_names );
1669
1670     my $build_file_template;
1671     for $_ (@build_file_templates) {
1672         $build_file_template = $_;
1673         last if -f $build_file_template;
1674
1675         $build_file_template = undef;
1676     }
1677     if (!defined $build_file_template) {
1678         die "*** Couldn't find any of:\n", join("\n", @build_file_templates), "\n";
1679     }
1680     $config{build_file_templates}
1681       = [ cleanfile($srcdir, catfile("Configurations", "common0.tmpl"),
1682                     $blddir),
1683           $build_file_template,
1684           cleanfile($srcdir, catfile("Configurations", "common.tmpl"),
1685                     $blddir) ];
1686
1687     my @build_dirs = ( [ ] );   # current directory
1688
1689     $config{build_infos} = [ ];
1690
1691     my %ordinals = ();
1692     while (@build_dirs) {
1693         my @curd = @{shift @build_dirs};
1694         my $sourced = catdir($srcdir, @curd);
1695         my $buildd = catdir($blddir, @curd);
1696
1697         my $unixdir = join('/', @curd);
1698         if (exists $skipdir{$unixdir}) {
1699             my $what = $skipdir{$unixdir};
1700             push @{$disabled_info{$what}->{skipped}}, catdir(@curd);
1701             next;
1702         }
1703
1704         mkpath($buildd);
1705
1706         my $f = 'build.info';
1707         # The basic things we're trying to build
1708         my @programs = ();
1709         my @libraries = ();
1710         my @modules = ();
1711         my @scripts = ();
1712
1713         my %attributes = ();
1714         my %sources = ();
1715         my %shared_sources = ();
1716         my %includes = ();
1717         my %defines = ();
1718         my %depends = ();
1719         my %generate = ();
1720
1721         # We want to detect configdata.pm in the source tree, so we
1722         # don't use it if the build tree is different.
1723         my $src_configdata = cleanfile($srcdir, "configdata.pm", $blddir);
1724
1725         push @{$config{build_infos}}, catfile(abs2rel($sourced, $blddir), $f);
1726         my $template =
1727             Text::Template->new(TYPE => 'FILE',
1728                                 SOURCE => catfile($sourced, $f),
1729                                 PREPEND => qq{use lib "$FindBin::Bin/util/perl";});
1730         die "Something went wrong with $sourced/$f: $!\n" unless $template;
1731         my @text =
1732             split /^/m,
1733             $template->fill_in(HASH => { config => \%config,
1734                                          target => \%target,
1735                                          disabled => \%disabled,
1736                                          withargs => \%withargs,
1737                                          builddir => abs2rel($buildd, $blddir),
1738                                          sourcedir => abs2rel($sourced, $blddir),
1739                                          buildtop => abs2rel($blddir, $blddir),
1740                                          sourcetop => abs2rel($srcdir, $blddir) },
1741                                DELIMITERS => [ "{-", "-}" ]);
1742
1743         # The top item of this stack has the following values
1744         # -2 positive already run and we found ELSE (following ELSIF should fail)
1745         # -1 positive already run (skip until ENDIF)
1746         # 0 negatives so far (if we're at a condition, check it)
1747         # 1 last was positive (don't skip lines until next ELSE, ELSIF or ENDIF)
1748         # 2 positive ELSE (following ELSIF should fail)
1749         my @skip = ();
1750         collect_information(
1751             collect_from_array([ @text ],
1752                                qr/\\$/ => sub { my $l1 = shift; my $l2 = shift;
1753                                                 $l1 =~ s/\\$//; $l1.$l2 }),
1754             # Info we're looking for
1755             qr/^\s*IF\[((?:\\.|[^\\\]])*)\]\s*$/
1756             => sub {
1757                 if (! @skip || $skip[$#skip] > 0) {
1758                     push @skip, !! $1;
1759                 } else {
1760                     push @skip, -1;
1761                 }
1762             },
1763             qr/^\s*ELSIF\[((?:\\.|[^\\\]])*)\]\s*$/
1764             => sub { die "ELSIF out of scope" if ! @skip;
1765                      die "ELSIF following ELSE" if abs($skip[$#skip]) == 2;
1766                      $skip[$#skip] = -1 if $skip[$#skip] != 0;
1767                      $skip[$#skip] = !! $1
1768                          if $skip[$#skip] == 0; },
1769             qr/^\s*ELSE\s*$/
1770             => sub { die "ELSE out of scope" if ! @skip;
1771                      $skip[$#skip] = -2 if $skip[$#skip] != 0;
1772                      $skip[$#skip] = 2 if $skip[$#skip] == 0; },
1773             qr/^\s*ENDIF\s*$/
1774             => sub { die "ENDIF out of scope" if ! @skip;
1775                      pop @skip; },
1776             qr/^\s*SUBDIRS\s*=\s*(.*)\s*$/
1777             => sub {
1778                 if (!@skip || $skip[$#skip] > 0) {
1779                     foreach (tokenize($1)) {
1780                         push @build_dirs, [ @curd, splitdir($_, 1) ];
1781                     }
1782                 }
1783             },
1784             qr/^\s*PROGRAMS(?:{([\w=]+(?:\s*,\s*[\w=]+)*)})?\s*=\s*(.*)\s*$/
1785             => sub {
1786                 if (!@skip || $skip[$#skip] > 0) {
1787                     my @a = tokenize($1, qr|\s*,\s*|);
1788                     my @p = tokenize($2);
1789                     push @programs, @p;
1790                     foreach my $a (@a) {
1791                         my $ak = $a;
1792                         my $av = 1;
1793                         if ($a =~ m|^(.*?)\s*=\s*(.*?)$|) {
1794                             $ak = $1;
1795                             $av = $2;
1796                         }
1797                         foreach my $p (@p) {
1798                             $attributes{$p}->{$ak} = $av;
1799                         }
1800                     }
1801                 }
1802             },
1803             qr/^\s*LIBS(?:{([\w=]+(?:\s*,\s*[\w=]+)*)})?\s*=\s*(.*)\s*$/
1804             => sub {
1805                 if (!@skip || $skip[$#skip] > 0) {
1806                     my @a = tokenize($1, qr|\s*,\s*|);
1807                     my @l = tokenize($2);
1808                     push @libraries, @l;
1809                     foreach my $a (@a) {
1810                         my $ak = $a;
1811                         my $av = 1;
1812                         if ($a =~ m|^(.*?)\s*=\s*(.*?)$|) {
1813                             $ak = $1;
1814                             $av = $2;
1815                         }
1816                         foreach my $l (@l) {
1817                             $attributes{$l}->{$ak} = $av;
1818                         }
1819                     }
1820                 }
1821             },
1822             qr/^\s*MODULES(?:{([\w=]+(?:\s*,\s*[\w=]+)*)})?\s*=\s*(.*)\s*$/
1823             => sub {
1824                 if (!@skip || $skip[$#skip] > 0) {
1825                     my @a = tokenize($1, qr|\s*,\s*|);
1826                     my @m = tokenize($2);
1827                     push @modules, @m;
1828                     foreach my $a (@a) {
1829                         my $ak = $a;
1830                         my $av = 1;
1831                         if ($a =~ m|^(.*?)\s*=\s*(.*?)$|) {
1832                             $ak = $1;
1833                             $av = $2;
1834                         }
1835                         foreach my $m (@m) {
1836                             $attributes{$m}->{$ak} = $av;
1837                         }
1838                     }
1839                 }
1840             },
1841             qr/^\s*SCRIPTS(?:{([\w=]+(?:\s*,\s*[\w=]+)*)})?\s*=\s*(.*)\s*$/
1842             => sub {
1843                 if (!@skip || $skip[$#skip] > 0) {
1844                     my @a = tokenize($1, qr|\s*,\s*|);
1845                     my @s = tokenize($2);
1846                     push @scripts, @s;
1847                     foreach my $a (@a) {
1848                         my $ak = $a;
1849                         my $av = 1;
1850                         if ($a =~ m|^(.*?)\s*=\s*(.*?)$|) {
1851                             $ak = $1;
1852                             $av = $2;
1853                         }
1854                         foreach my $s (@s) {
1855                             $attributes{$s}->{$ak} = $av;
1856                         }
1857                     }
1858                 }
1859             },
1860
1861             qr/^\s*ORDINALS\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/,
1862             => sub { push @{$ordinals{$1}}, tokenize($2)
1863                          if !@skip || $skip[$#skip] > 0 },
1864             qr/^\s*SOURCE\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
1865             => sub { push @{$sources{$1}}, tokenize($2)
1866                          if !@skip || $skip[$#skip] > 0 },
1867             qr/^\s*SHARED_SOURCE\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
1868             => sub { push @{$shared_sources{$1}}, tokenize($2)
1869                          if !@skip || $skip[$#skip] > 0 },
1870             qr/^\s*INCLUDE\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
1871             => sub { push @{$includes{$1}}, tokenize($2)
1872                          if !@skip || $skip[$#skip] > 0 },
1873             qr/^\s*DEFINE\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
1874             => sub { push @{$defines{$1}}, tokenize($2)
1875                          if !@skip || $skip[$#skip] > 0 },
1876             qr/^\s*DEPEND\[((?:\\.|[^\\\]])*)\]\s*=\s*(.*)\s*$/
1877             => sub { push @{$depends{$1}}, tokenize($2)
1878                          if !@skip || $skip[$#skip] > 0 },
1879             qr/^\s*GENERATE\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
1880             => sub { push @{$generate{$1}}, $2
1881                          if !@skip || $skip[$#skip] > 0 },
1882             qr/^\s*(?:#.*)?$/ => sub { },
1883             "OTHERWISE" => sub { die "Something wrong with this line:\n$_\nat $sourced/$f" },
1884             "BEFORE" => sub {
1885                 if ($buildinfo_debug) {
1886                     print STDERR "DEBUG: Parsing ",join(" ", @_),"\n";
1887                     print STDERR "DEBUG: ... before parsing, skip stack is ",join(" ", map { int($_) } @skip),"\n";
1888                 }
1889             },
1890             "AFTER" => sub {
1891                 if ($buildinfo_debug) {
1892                     print STDERR "DEBUG: .... after parsing, skip stack is ",join(" ", map { int($_) } @skip),"\n";
1893                 }
1894             },
1895             );
1896         die "runaway IF?" if (@skip);
1897
1898         if (grep { defined $attributes{$_}->{engine} } keys %attributes
1899                 and !$config{dynamic_engines}) {
1900             die <<"EOF"
1901 ENGINES can only be used if configured with 'dynamic-engine'.
1902 This is usually a fault in a build.info file.
1903 EOF
1904         }
1905
1906         foreach (keys %attributes) {
1907             my $dest = $_;
1908             my $ddest = cleanfile($buildd, $_, $blddir);
1909             foreach (keys %{$attributes{$dest} // {}}) {
1910                 $unified_info{attributes}->{$ddest}->{$_} =
1911                     $attributes{$dest}->{$_};
1912             }
1913         }
1914
1915         {
1916             my %infos = ( programs  => [ @programs  ],
1917                           libraries => [ @libraries ],
1918                           modules   => [ @modules   ],
1919                           scripts   => [ @scripts   ] );
1920             foreach my $k (keys %infos) {
1921                 foreach (@{$infos{$k}}) {
1922                     my $item = cleanfile($buildd, $_, $blddir);
1923                     $unified_info{$k}->{$item} = 1;
1924                 }
1925             }
1926         }
1927
1928         # Check that we haven't defined any library as both shared and
1929         # explicitly static.  That is forbidden.
1930         my @doubles = ();
1931         foreach (grep /\.a$/, keys %{$unified_info{libraries}}) {
1932             (my $l = $_) =~ s/\.a$//;
1933             push @doubles, $l if defined $unified_info{libraries}->{$l};
1934         }
1935         die "these libraries are both explicitly static and shared:\n  ",
1936             join(" ", @doubles), "\n"
1937             if @doubles;
1938
1939         foreach (keys %sources) {
1940             my $dest = $_;
1941             my $ddest = cleanfile($buildd, $_, $blddir);
1942             foreach (@{$sources{$dest}}) {
1943                 my $s = cleanfile($sourced, $_, $blddir);
1944
1945                 # If it isn't in the source tree, we assume it's generated
1946                 # in the build tree
1947                 if ($s eq $src_configdata || ! -f $s || $generate{$_}) {
1948                     $s = cleanfile($buildd, $_, $blddir);
1949                 }
1950                 # We recognise C++, C and asm files
1951                 if ($s =~ /\.(cc|cpp|c|s|S)$/) {
1952                     my $o = $_;
1953                     $o =~ s/\.[csS]$/.o/; # C and assembler
1954                     $o =~ s/\.(cc|cpp)$/_cc.o/; # C++
1955                     $o = cleanfile($buildd, $o, $blddir);
1956                     $unified_info{sources}->{$ddest}->{$o} = -1;
1957                     $unified_info{sources}->{$o}->{$s} = -1;
1958                 } elsif ($s =~ /\.rc$/) {
1959                     # We also recognise resource files
1960                     my $o = $_;
1961                     $o =~ s/\.rc$/.res/; # Resource configuration
1962                     my $o = cleanfile($buildd, $o, $blddir);
1963                     $unified_info{sources}->{$ddest}->{$o} = -1;
1964                     $unified_info{sources}->{$o}->{$s} = -1;
1965                 } else {
1966                     $unified_info{sources}->{$ddest}->{$s} = 1;
1967                 }
1968             }
1969         }
1970
1971         foreach (keys %shared_sources) {
1972             my $dest = $_;
1973             my $ddest = cleanfile($buildd, $_, $blddir);
1974             foreach (@{$shared_sources{$dest}}) {
1975                 my $s = cleanfile($sourced, $_, $blddir);
1976
1977                 # If it isn't in the source tree, we assume it's generated
1978                 # in the build tree
1979                 if ($s eq $src_configdata || ! -f $s || $generate{$_}) {
1980                     $s = cleanfile($buildd, $_, $blddir);
1981                 }
1982
1983                 if ($s =~ /\.(cc|cpp|c|s|S)$/) {
1984                     # We recognise C++, C and asm files
1985                     my $o = $_;
1986                     $o =~ s/\.[csS]$/.o/; # C and assembler
1987                     $o =~ s/\.(cc|cpp)$/_cc.o/; # C++
1988                     $o = cleanfile($buildd, $o, $blddir);
1989                     $unified_info{shared_sources}->{$ddest}->{$o} = -1;
1990                     $unified_info{sources}->{$o}->{$s} = -1;
1991                 } elsif ($s =~ /\.rc$/) {
1992                     # We also recognise resource files
1993                     my $o = $_;
1994                     $o =~ s/\.rc$/.res/; # Resource configuration
1995                     my $o = cleanfile($buildd, $o, $blddir);
1996                     $unified_info{shared_sources}->{$ddest}->{$o} = -1;
1997                     $unified_info{sources}->{$o}->{$s} = -1;
1998                 } elsif ($s =~ /\.ld$/) {
1999                     # We also recognise linker scripts (or corresponding)
2000                     # We know they are generated files
2001                     my $ld = cleanfile($buildd, $_, $blddir);
2002                     $unified_info{shared_sources}->{$ddest}->{$ld} = 1;
2003                 } else {
2004                     die "unrecognised source file type for shared library: $s\n";
2005                 }
2006             }
2007         }
2008
2009         foreach (keys %generate) {
2010             my $dest = $_;
2011             my $ddest = cleanfile($buildd, $_, $blddir);
2012             die "more than one generator for $dest: "
2013                     ,join(" ", @{$generate{$_}}),"\n"
2014                     if scalar @{$generate{$_}} > 1;
2015             my @generator = split /\s+/, $generate{$dest}->[0];
2016             $generator[0] = cleanfile($sourced, $generator[0], $blddir),
2017             $unified_info{generate}->{$ddest} = [ @generator ];
2018         }
2019
2020         foreach (keys %depends) {
2021             my $dest = $_;
2022             my $ddest = $dest eq "" ? "" : cleanfile($sourced, $_, $blddir);
2023
2024             # If the destination doesn't exist in source, it can only be
2025             # a generated file in the build tree.
2026             if ($ddest ne "" && ($ddest eq $src_configdata || ! -f $ddest)) {
2027                 $ddest = cleanfile($buildd, $_, $blddir);
2028             }
2029             foreach (@{$depends{$dest}}) {
2030                 my $d = cleanfile($sourced, $_, $blddir);
2031
2032                 # If we know it's generated, or assume it is because we can't
2033                 # find it in the source tree, we set file we depend on to be
2034                 # in the build tree rather than the source tree, and assume
2035                 # and that there are lines to build it in a BEGINRAW..ENDRAW
2036                 # section or in the Makefile template.
2037                 if ($d eq $src_configdata
2038                     || ! -f $d
2039                     || (grep { $d eq $_ }
2040                         map { cleanfile($srcdir, $_, $blddir) }
2041                         grep { /\.h$/ } keys %{$unified_info{generate}})) {
2042                     $d = cleanfile($buildd, $_, $blddir);
2043                 }
2044                 # Take note if the file to depend on is being renamed
2045                 # Take extra care with files ending with .a, they should
2046                 # be treated without that extension, and the extension
2047                 # should be added back after treatment.
2048                 $d =~ /(\.a)?$/;
2049                 my $e = $1 // "";
2050                 $d = $`.$e;
2051                 $unified_info{depends}->{$ddest}->{$d} = 1;
2052             }
2053         }
2054
2055         foreach (keys %includes) {
2056             my $dest = $_;
2057             my $ddest = cleanfile($sourced, $_, $blddir);
2058
2059             # If the destination doesn't exist in source, it can only be
2060             # a generated file in the build tree.
2061             if ($ddest eq $src_configdata || ! -f $ddest) {
2062                 $ddest = cleanfile($buildd, $_, $blddir);
2063             }
2064             foreach (@{$includes{$dest}}) {
2065                 my $is = cleandir($sourced, $_, $blddir);
2066                 my $ib = cleandir($buildd, $_, $blddir);
2067                 push @{$unified_info{includes}->{$ddest}->{source}}, $is
2068                     unless grep { $_ eq $is } @{$unified_info{includes}->{$ddest}->{source}};
2069                 push @{$unified_info{includes}->{$ddest}->{build}}, $ib
2070                     unless grep { $_ eq $ib } @{$unified_info{includes}->{$ddest}->{build}};
2071             }
2072         }
2073
2074         foreach (keys %defines) {
2075             my $dest = $_;
2076             my $ddest = cleanfile($sourced, $_, $blddir);
2077
2078             # If the destination doesn't exist in source, it can only be
2079             # a generated file in the build tree.
2080             if (! -f $ddest) {
2081                 $ddest = cleanfile($buildd, $_, $blddir);
2082                 if ($unified_info{rename}->{$ddest}) {
2083                     $ddest = $unified_info{rename}->{$ddest};
2084                 }
2085             }
2086             foreach (@{$defines{$dest}}) {
2087                 m|^([^=]*)(=.*)?$|;
2088                 die "0 length macro name not permitted\n" if $1 eq "";
2089                 die "$1 defined more than once\n"
2090                     if defined $unified_info{defines}->{$ddest}->{$1};
2091                 $unified_info{defines}->{$ddest}->{$1} = $2;
2092             }
2093         }
2094     }
2095
2096     my $ordinals_text = join(', ', sort keys %ordinals);
2097     warn <<"EOF" if $ordinals_text;
2098
2099 WARNING: ORDINALS were specified for $ordinals_text
2100 They are ignored and should be replaced with a combination of GENERATE,
2101 DEPEND and SHARED_SOURCE.
2102 EOF
2103
2104     # Massage the result
2105
2106     # If we depend on a header file or a perl module, add an inclusion of
2107     # its directory to allow smoothe inclusion
2108     foreach my $dest (keys %{$unified_info{depends}}) {
2109         next if $dest eq "";
2110         foreach my $d (keys %{$unified_info{depends}->{$dest}}) {
2111             next unless $d =~ /\.(h|pm)$/;
2112             my $i = dirname($d);
2113             my $spot =
2114                 $d eq "configdata.pm" || defined($unified_info{generate}->{$d})
2115                 ? 'build' : 'source';
2116             push @{$unified_info{includes}->{$dest}->{$spot}}, $i
2117                 unless grep { $_ eq $i } @{$unified_info{includes}->{$dest}->{$spot}};
2118         }
2119     }
2120
2121     # Go through all intermediary files and change their names to something that
2122     # reflects what they will be built for.  Note that for some source files,
2123     # this leads to duplicate object files because they are used multiple times.
2124     # the goal is to rename all object files according to this scheme:
2125     #    {productname}-{midfix}-{origobjname}.[o|res]
2126     # the {midfix} is a keyword indicating the type of product, which is mostly
2127     # valuable for libraries since they come in two forms.
2128     #
2129     # This also reorganises the {sources} and {shared_sources} so that the
2130     # former only contains ALL object files that are supposed to end up in
2131     # static libraries and programs, while the latter contains ALL object files
2132     # that are supposed to end up in shared libraries and DSOs.
2133     # The main reason for having two different source structures is to allow
2134     # the same name to be used for the static and the shared variants of a
2135     # library.
2136     {
2137         # Take copies so we don't get interference from added stuff
2138         my %unified_copy = ();
2139         foreach (('sources', 'shared_sources')) {
2140             $unified_copy{$_} = { %{$unified_info{$_}} }
2141                 if defined($unified_info{$_});
2142             delete $unified_info{$_};
2143         }
2144         foreach my $prodtype (('programs', 'libraries', 'modules', 'scripts')) {
2145             # $intent serves multi purposes:
2146             # - give a prefix for the new object files names
2147             # - in the case of libraries, rearrange the object files so static
2148             #   libraries use the 'sources' structure exclusively, while shared
2149             #   libraries use the 'shared_sources' structure exclusively.
2150             my $intent = {
2151                 programs  => { bin    => { src => [ 'sources' ],
2152                                            dst => 'sources' } },
2153                 libraries => { lib    => { src => [ 'sources' ],
2154                                            dst => 'sources' },
2155                                shlib  => { prodselect =>
2156                                                sub { grep !/\.a$/, @_ },
2157                                            src => [ 'sources',
2158                                                     'shared_sources' ],
2159                                            dst => 'shared_sources' } },
2160                 modules   => { dso    => { src => [ 'sources',
2161                                                     'shared_sources' ],
2162                                            dst => 'shared_sources' } },
2163                 scripts   => { script => { src => [ 'sources' ],
2164                                            dst => 'sources' } }
2165                } -> {$prodtype};
2166             foreach my $kind (keys %$intent) {
2167                 next if ($intent->{$kind}->{dst} eq 'shared_sources'
2168                              && $disabled{shared});
2169
2170                 my @src = @{$intent->{$kind}->{src}};
2171                 my $dst = $intent->{$kind}->{dst};
2172                 my $prodselect = $intent->{$kind}->{prodselect} // sub { @_ };
2173                 foreach my $prod ($prodselect->(keys %{$unified_info{$prodtype}})) {
2174                     # %prod_sources has all applicable objects as keys, and
2175                     # their corresponding sources as values
2176                     my %prod_sources =
2177                         map { $_ => [ keys %{$unified_copy{sources}->{$_}} ] }
2178                         map { keys %{$unified_copy{$_}->{$prod}} }
2179                         @src;
2180                     foreach (keys %prod_sources) {
2181                         # Only affect object files and resource files,
2182                         # the others simply get a new value
2183                         # (+1 instead of -1)
2184                         if ($_ =~ /\.(o|res)$/) {
2185                             (my $prodname = $prod) =~ s|\.a$||;
2186                             my $newobj =
2187                                 catfile(dirname($_),
2188                                         basename($prodname)
2189                                             . '-' . $kind
2190                                             . '-' . basename($_));
2191                             $unified_info{$dst}->{$prod}->{$newobj} = 1;
2192                             foreach my $src (@{$prod_sources{$_}}) {
2193                                 $unified_info{sources}->{$newobj}->{$src} = 1;
2194                             }
2195                             # Adjust dependencies
2196                             foreach my $deps (keys %{$unified_info{depends}->{$_}}) {
2197                                 $unified_info{depends}->{$_}->{$deps} = -1;
2198                                 $unified_info{depends}->{$newobj}->{$deps} = 1;
2199                             }
2200                             # Adjust includes
2201                             foreach my $k (('source', 'build')) {
2202                                 next unless
2203                                     defined($unified_info{includes}->{$_}->{$k});
2204                                 my @incs = @{$unified_info{includes}->{$_}->{$k}};
2205                                 $unified_info{includes}->{$newobj}->{$k} = [ @incs ];
2206                             }
2207                         } else {
2208                             $unified_info{$dst}->{$prod}->{$_} = 1;
2209                         }
2210                     }
2211                 }
2212             }
2213         }
2214     }
2215     # At this point, we have a number of sources with the value -1.  They
2216     # aren't part of the local build and are probably meant for a different
2217     # platform, and can therefore be cleaned away.  That happens when making
2218     # %unified_info more efficient below.
2219
2220     ### Make unified_info a bit more efficient
2221     # One level structures
2222     foreach (("programs", "libraries", "modules", "scripts")) {
2223         $unified_info{$_} = [ sort keys %{$unified_info{$_}} ];
2224     }
2225     # Two level structures
2226     foreach my $l1 (("sources", "shared_sources", "ldadd", "depends")) {
2227         foreach my $l2 (sort keys %{$unified_info{$l1}}) {
2228             my @items =
2229                 sort
2230                 grep { $unified_info{$l1}->{$l2}->{$_} > 0 }
2231                 keys %{$unified_info{$l1}->{$l2}};
2232             if (@items) {
2233                 $unified_info{$l1}->{$l2} = [ @items ];
2234             } else {
2235                 delete $unified_info{$l1}->{$l2};
2236             }
2237         }
2238     }
2239     # Defines
2240     foreach my $dest (sort keys %{$unified_info{defines}}) {
2241         $unified_info{defines}->{$dest}
2242             = [ map { $_.$unified_info{defines}->{$dest}->{$_} }
2243                 sort keys %{$unified_info{defines}->{$dest}} ];
2244     }
2245     # Includes
2246     foreach my $dest (sort keys %{$unified_info{includes}}) {
2247         if (defined($unified_info{includes}->{$dest}->{build})) {
2248             my @source_includes = ();
2249             @source_includes = ( @{$unified_info{includes}->{$dest}->{source}} )
2250                 if defined($unified_info{includes}->{$dest}->{source});
2251             $unified_info{includes}->{$dest} =
2252                 [ @{$unified_info{includes}->{$dest}->{build}} ];
2253             foreach my $inc (@source_includes) {
2254                 push @{$unified_info{includes}->{$dest}}, $inc
2255                     unless grep { $_ eq $inc } @{$unified_info{includes}->{$dest}};
2256             }
2257         } elsif (defined($unified_info{includes}->{$dest}->{source})) {
2258             $unified_info{includes}->{$dest} =
2259                 [ @{$unified_info{includes}->{$dest}->{source}} ];
2260         } else {
2261             delete $unified_info{includes}->{$dest};
2262         }
2263     }
2264
2265     # For convenience collect information regarding directories where
2266     # files are generated, those generated files and the end product
2267     # they end up in where applicable.  Then, add build rules for those
2268     # directories
2269     my %loopinfo = ( "lib" => [ @{$unified_info{libraries}} ],
2270                      "dso" => [ @{$unified_info{modules}} ],
2271                      "bin" => [ @{$unified_info{programs}} ],
2272                      "script" => [ @{$unified_info{scripts}} ] );
2273     foreach my $type (keys %loopinfo) {
2274         foreach my $product (@{$loopinfo{$type}}) {
2275             my %dirs = ();
2276             my $pd = dirname($product);
2277
2278             foreach (@{$unified_info{sources}->{$product} // []},
2279                      @{$unified_info{shared_sources}->{$product} // []}) {
2280                 my $d = dirname($_);
2281
2282                 # We don't want to create targets for source directories
2283                 # when building out of source
2284                 next if ($config{sourcedir} ne $config{builddir}
2285                              && $d =~ m|^\Q$config{sourcedir}\E|);
2286                 # We already have a "test" target, and the current directory
2287                 # is just silly to make a target for
2288                 next if $d eq "test" || $d eq ".";
2289
2290                 $dirs{$d} = 1;
2291                 push @{$unified_info{dirinfo}->{$d}->{deps}}, $_
2292                     if $d ne $pd;
2293             }
2294             foreach (keys %dirs) {
2295                 push @{$unified_info{dirinfo}->{$_}->{products}->{$type}},
2296                     $product;
2297             }
2298         }
2299     }
2300 }
2301
2302 # For the schemes that need it, we provide the old *_obj configs
2303 # from the *_asm_obj ones
2304 foreach (grep /_(asm|aux)_src$/, keys %target) {
2305     my $src = $_;
2306     (my $obj = $_) =~ s/_(asm|aux)_src$/_obj/;
2307     $target{$obj} = $target{$src};
2308     $target{$obj} =~ s/\.[csS]\b/.o/g; # C and assembler
2309     $target{$obj} =~ s/\.(cc|cpp)\b/_cc.o/g; # C++
2310 }
2311
2312 # Write down our configuration where it fits #########################
2313
2314 print "Creating configdata.pm\n";
2315 open(OUT,">configdata.pm") || die "unable to create configdata.pm: $!\n";
2316 print OUT <<"EOF";
2317 #! $config{HASHBANGPERL}
2318
2319 package configdata;
2320
2321 use strict;
2322 use warnings;
2323
2324 use Exporter;
2325 #use vars qw(\@ISA \@EXPORT);
2326 our \@ISA = qw(Exporter);
2327 our \@EXPORT = qw(\%config \%target \%disabled \%withargs \%unified_info \@disablables);
2328
2329 EOF
2330 print OUT "our %config = (\n";
2331 foreach (sort keys %config) {
2332     if (ref($config{$_}) eq "ARRAY") {
2333         print OUT "  ", $_, " => [ ", join(", ",
2334                                            map { quotify("perl", $_) }
2335                                            @{$config{$_}}), " ],\n";
2336     } elsif (ref($config{$_}) eq "HASH") {
2337         print OUT "  ", $_, " => {";
2338         if (scalar keys %{$config{$_}} > 0) {
2339             print OUT "\n";
2340             foreach my $key (sort keys %{$config{$_}}) {
2341                 print OUT "      ",
2342                     join(" => ",
2343                          quotify("perl", $key),
2344                          defined $config{$_}->{$key}
2345                              ? quotify("perl", $config{$_}->{$key})
2346                              : "undef");
2347                 print OUT ",\n";
2348             }
2349             print OUT "  ";
2350         }
2351         print OUT "},\n";
2352     } else {
2353         print OUT "  ", $_, " => ", quotify("perl", $config{$_}), ",\n"
2354     }
2355 }
2356 print OUT <<"EOF";
2357 );
2358
2359 EOF
2360 print OUT "our %target = (\n";
2361 foreach (sort keys %target) {
2362     if (ref($target{$_}) eq "ARRAY") {
2363         print OUT "  ", $_, " => [ ", join(", ",
2364                                            map { quotify("perl", $_) }
2365                                            @{$target{$_}}), " ],\n";
2366     } else {
2367         print OUT "  ", $_, " => ", quotify("perl", $target{$_}), ",\n"
2368     }
2369 }
2370 print OUT <<"EOF";
2371 );
2372
2373 EOF
2374 print OUT "our \%available_protocols = (\n";
2375 print OUT "  tls => [ ", join(", ", map { quotify("perl", $_) } @tls), " ],\n";
2376 print OUT "  dtls => [ ", join(", ", map { quotify("perl", $_) } @dtls), " ],\n";
2377 print OUT <<"EOF";
2378 );
2379
2380 EOF
2381 print OUT "our \@disablables = (\n";
2382 foreach (@disablables) {
2383     print OUT "  ", quotify("perl", $_), ",\n";
2384 }
2385 print OUT <<"EOF";
2386 );
2387
2388 EOF
2389 print OUT "our \%disabled = (\n";
2390 foreach (sort keys %disabled) {
2391     print OUT "  ", quotify("perl", $_), " => ", quotify("perl", $disabled{$_}), ",\n";
2392 }
2393 print OUT <<"EOF";
2394 );
2395
2396 EOF
2397 print OUT "our %withargs = (\n";
2398 foreach (sort keys %withargs) {
2399     if (ref($withargs{$_}) eq "ARRAY") {
2400         print OUT "  ", $_, " => [ ", join(", ",
2401                                            map { quotify("perl", $_) }
2402                                            @{$withargs{$_}}), " ],\n";
2403     } else {
2404         print OUT "  ", $_, " => ", quotify("perl", $withargs{$_}), ",\n"
2405     }
2406 }
2407 print OUT <<"EOF";
2408 );
2409
2410 EOF
2411 if ($builder eq "unified") {
2412     my $recurse;
2413     $recurse = sub {
2414         my $indent = shift;
2415         foreach (@_) {
2416             if (ref $_ eq "ARRAY") {
2417                 print OUT " "x$indent, "[\n";
2418                 foreach (@$_) {
2419                     $recurse->($indent + 4, $_);
2420                 }
2421                 print OUT " "x$indent, "],\n";
2422             } elsif (ref $_ eq "HASH") {
2423                 my %h = %$_;
2424                 print OUT " "x$indent, "{\n";
2425                 foreach (sort keys %h) {
2426                     if (ref $h{$_} eq "") {
2427                         print OUT " "x($indent + 4), quotify("perl", $_), " => ", quotify("perl", $h{$_}), ",\n";
2428                     } else {
2429                         print OUT " "x($indent + 4), quotify("perl", $_), " =>\n";
2430                         $recurse->($indent + 8, $h{$_});
2431                     }
2432                 }
2433                 print OUT " "x$indent, "},\n";
2434             } else {
2435                 print OUT " "x$indent, quotify("perl", $_), ",\n";
2436             }
2437         }
2438     };
2439     print OUT "our %unified_info = (\n";
2440     foreach (sort keys %unified_info) {
2441         if (ref $unified_info{$_} eq "") {
2442             print OUT " "x4, quotify("perl", $_), " => ", quotify("perl", $unified_info{$_}), ",\n";
2443         } else {
2444             print OUT " "x4, quotify("perl", $_), " =>\n";
2445             $recurse->(8, $unified_info{$_});
2446         }
2447     }
2448     print OUT <<"EOF";
2449 );
2450
2451 EOF
2452 }
2453 print OUT
2454     "# The following data is only used when this files is use as a script\n";
2455 print OUT "my \@makevars = (\n";
2456 foreach (sort keys %user) {
2457     print OUT "    '",$_,"',\n";
2458 }
2459 print OUT ");\n";
2460 print OUT "my \%disabled_info = (\n";
2461 foreach my $what (sort keys %disabled_info) {
2462     print OUT "    '$what' => {\n";
2463     foreach my $info (sort keys %{$disabled_info{$what}}) {
2464         if (ref $disabled_info{$what}->{$info} eq 'ARRAY') {
2465             print OUT "        $info => [ ",
2466                 join(', ', map { "'$_'" } @{$disabled_info{$what}->{$info}}),
2467                 " ],\n";
2468         } else {
2469             print OUT "        $info => '", $disabled_info{$what}->{$info},
2470                 "',\n";
2471         }
2472     }
2473     print OUT "    },\n";
2474 }
2475 print OUT ");\n";
2476 print OUT 'my @user_crossable = qw( ', join (' ', @user_crossable), " );\n";
2477 print OUT << 'EOF';
2478 # If run directly, we can give some answers, and even reconfigure
2479 unless (caller) {
2480     use Getopt::Long;
2481     use File::Spec::Functions;
2482     use File::Basename;
2483     use Pod::Usage;
2484
2485     my $here = dirname($0);
2486
2487     my $dump = undef;
2488     my $cmdline = undef;
2489     my $options = undef;
2490     my $target = undef;
2491     my $envvars = undef;
2492     my $makevars = undef;
2493     my $buildparams = undef;
2494     my $reconf = undef;
2495     my $verbose = undef;
2496     my $help = undef;
2497     my $man = undef;
2498     GetOptions('dump|d'                 => \$dump,
2499                'command-line|c'         => \$cmdline,
2500                'options|o'              => \$options,
2501                'target|t'               => \$target,
2502                'environment|e'          => \$envvars,
2503                'make-variables|m'       => \$makevars,
2504                'build-parameters|b'     => \$buildparams,
2505                'reconfigure|reconf|r'   => \$reconf,
2506                'verbose|v'              => \$verbose,
2507                'help'                   => \$help,
2508                'man'                    => \$man)
2509         or die "Errors in command line arguments\n";
2510
2511     unless ($dump || $cmdline || $options || $target || $envvars || $makevars
2512             || $buildparams || $reconf || $verbose || $help || $man) {
2513         print STDERR <<"_____";
2514 You must give at least one option.
2515 For more information, do '$0 --help'
2516 _____
2517         exit(2);
2518     }
2519
2520     if ($help) {
2521         pod2usage(-exitval => 0,
2522                   -verbose => 1);
2523     }
2524     if ($man) {
2525         pod2usage(-exitval => 0,
2526                   -verbose => 2);
2527     }
2528     if ($dump || $cmdline) {
2529         print "\nCommand line (with current working directory = $here):\n\n";
2530         print '    ',join(' ',
2531                           $config{PERL},
2532                           catfile($config{sourcedir}, 'Configure'),
2533                           @{$config{perlargv}}), "\n";
2534         print "\nPerl information:\n\n";
2535         print '    ',$config{perl_cmd},"\n";
2536         print '    ',$config{perl_version},' for ',$config{perl_archname},"\n";
2537     }
2538     if ($dump || $options) {
2539         my $longest = 0;
2540         my $longest2 = 0;
2541         foreach my $what (@disablables) {
2542             $longest = length($what) if $longest < length($what);
2543             $longest2 = length($disabled{$what})
2544                 if $disabled{$what} && $longest2 < length($disabled{$what});
2545         }
2546         print "\nEnabled features:\n\n";
2547         foreach my $what (@disablables) {
2548             print "    $what\n" unless $disabled{$what};
2549         }
2550         print "\nDisabled features:\n\n";
2551         foreach my $what (@disablables) {
2552             if ($disabled{$what}) {
2553                 print "    $what", ' ' x ($longest - length($what) + 1),
2554                     "[$disabled{$what}]", ' ' x ($longest2 - length($disabled{$what}) + 1);
2555                 print $disabled_info{$what}->{macro}
2556                     if $disabled_info{$what}->{macro};
2557                 print ' (skip ',
2558                     join(', ', @{$disabled_info{$what}->{skipped}}),
2559                     ')'
2560                     if $disabled_info{$what}->{skipped};
2561                 print "\n";
2562             }
2563         }
2564     }
2565     if ($dump || $target) {
2566         print "\nConfig target attributes:\n\n";
2567         foreach (sort keys %target) {
2568             next if $_ =~ m|^_| || $_ eq 'template';
2569             my $quotify = sub {
2570                 map { (my $x = $_) =~ s|([\\\$\@"])|\\$1|g; "\"$x\""} @_;
2571             };
2572             print '    ', $_, ' => ';
2573             if (ref($target{$_}) eq "ARRAY") {
2574                 print '[ ', join(', ', $quotify->(@{$target{$_}})), " ],\n";
2575             } else {
2576                 print $quotify->($target{$_}), ",\n"
2577             }
2578         }
2579     }
2580     if ($dump || $envvars) {
2581         print "\nRecorded environment:\n\n";
2582         foreach (sort keys %{$config{perlenv}}) {
2583             print '    ',$_,' = ',($config{perlenv}->{$_} || ''),"\n";
2584         }
2585     }
2586     if ($dump || $makevars) {
2587         print "\nMakevars:\n\n";
2588         foreach my $var (@makevars) {
2589             my $prefix = '';
2590             $prefix = $config{CROSS_COMPILE}
2591                 if grep { $var eq $_ } @user_crossable;
2592             $prefix //= '';
2593             print '    ',$var,' ' x (16 - length $var),'= ',
2594                 (ref $config{$var} eq 'ARRAY'
2595                  ? join(' ', @{$config{$var}})
2596                  : $prefix.$config{$var}),
2597                 "\n"
2598                 if defined $config{$var};
2599         }
2600
2601         my @buildfile = ($config{builddir}, $config{build_file});
2602         unshift @buildfile, $here
2603             unless file_name_is_absolute($config{builddir});
2604         my $buildfile = canonpath(catdir(@buildfile));
2605         print <<"_____";
2606
2607 NOTE: These variables only represent the configuration view.  The build file
2608 template may have processed these variables further, please have a look at the
2609 build file for more exact data:
2610     $buildfile
2611 _____
2612     }
2613     if ($dump || $buildparams) {
2614         my @buildfile = ($config{builddir}, $config{build_file});
2615         unshift @buildfile, $here
2616             unless file_name_is_absolute($config{builddir});
2617         print "\nbuild file:\n\n";
2618         print "    ", canonpath(catfile(@buildfile)),"\n";
2619
2620         print "\nbuild file templates:\n\n";
2621         foreach (@{$config{build_file_templates}}) {
2622             my @tmpl = ($_);
2623             unshift @tmpl, $here
2624                 unless file_name_is_absolute($config{sourcedir});
2625             print '    ',canonpath(catfile(@tmpl)),"\n";
2626         }
2627     }
2628     if ($reconf) {
2629         if ($verbose) {
2630             print 'Reconfiguring with: ', join(' ',@{$config{perlargv}}), "\n";
2631             foreach (sort keys %{$config{perlenv}}) {
2632                 print '    ',$_,' = ',($config{perlenv}->{$_} || ""),"\n";
2633             }
2634         }
2635
2636         chdir $here;
2637         exec $^X,catfile($config{sourcedir}, 'Configure'),'reconf';
2638     }
2639 }
2640
2641 1;
2642
2643 __END__
2644
2645 =head1 NAME
2646
2647 configdata.pm - configuration data for OpenSSL builds
2648
2649 =head1 SYNOPSIS
2650
2651 Interactive:
2652
2653   perl configdata.pm [options]
2654
2655 As data bank module:
2656
2657   use configdata;
2658
2659 =head1 DESCRIPTION
2660
2661 This module can be used in two modes, interactively and as a module containing
2662 all the data recorded by OpenSSL's Configure script.
2663
2664 When used interactively, simply run it as any perl script, with at least one
2665 option, and you will get the information you ask for.  See L</OPTIONS> below.
2666
2667 When loaded as a module, you get a few databanks with useful information to
2668 perform build related tasks.  The databanks are:
2669
2670     %config             Configured things.
2671     %target             The OpenSSL config target with all inheritances
2672                         resolved.
2673     %disabled           The features that are disabled.
2674     @disablables        The list of features that can be disabled.
2675     %withargs           All data given through --with-THING options.
2676     %unified_info       All information that was computed from the build.info
2677                         files.
2678
2679 =head1 OPTIONS
2680
2681 =over 4
2682
2683 =item B<--help>
2684
2685 Print a brief help message and exit.
2686
2687 =item B<--man>
2688
2689 Print the manual page and exit.
2690
2691 =item B<--dump> | B<-d>
2692
2693 Print all relevant configuration data.  This is equivalent to B<--command-line>
2694 B<--options> B<--target> B<--environment> B<--make-variables>
2695 B<--build-parameters>.
2696
2697 =item B<--command-line> | B<-c>
2698
2699 Print the current configuration command line.
2700
2701 =item B<--options> | B<-o>
2702
2703 Print the features, both enabled and disabled, and display defined macro and
2704 skipped directories where applicable.
2705
2706 =item B<--target> | B<-t>
2707
2708 Print the config attributes for this config target.
2709
2710 =item B<--environment> | B<-e>
2711
2712 Print the environment variables and their values at the time of configuration.
2713
2714 =item B<--make-variables> | B<-m>
2715
2716 Print the main make variables generated in the current configuration
2717
2718 =item B<--build-parameters> | B<-b>
2719
2720 Print the build parameters, i.e. build file and build file templates.
2721
2722 =item B<--reconfigure> | B<--reconf> | B<-r>
2723
2724 Redo the configuration.
2725
2726 =item B<--verbose> | B<-v>
2727
2728 Verbose output.
2729
2730 =back
2731
2732 =cut
2733
2734 EOF
2735 close(OUT);
2736 if ($builder_platform eq 'unix') {
2737     my $mode = (0755 & ~umask);
2738     chmod $mode, 'configdata.pm'
2739         or warn sprintf("WARNING: Couldn't change mode for 'configdata.pm' to 0%03o: %s\n",$mode,$!);
2740 }
2741
2742 my %builders = (
2743     unified => sub {
2744         print 'Creating ',$target{build_file},"\n";
2745         run_dofile(catfile($blddir, $target{build_file}),
2746                    @{$config{build_file_templates}});
2747     },
2748     );
2749
2750 $builders{$builder}->($builder_platform, @builder_opts);
2751
2752 $SIG{__DIE__} = $orig_death_handler;
2753
2754 print <<"EOF" if ($disabled{threads} eq "unavailable");
2755
2756 The library could not be configured for supporting multi-threaded
2757 applications as the compiler options required on this system are not known.
2758 See file INSTALL for details if you need multi-threading.
2759 EOF
2760
2761 print <<"EOF" if ($no_shared_warn);
2762
2763 The options 'shared', 'pic' and 'dynamic-engine' aren't supported on this
2764 platform, so we will pretend you gave the option 'no-pic', which also disables
2765 'shared' and 'dynamic-engine'.  If you know how to implement shared libraries
2766 or position independent code, please let us know (but please first make sure
2767 you have tried with a current version of OpenSSL).
2768 EOF
2769
2770 print <<"EOF";
2771
2772 **********************************************************************
2773 ***                                                                ***
2774 ***   OpenSSL has been successfully configured                     ***
2775 ***                                                                ***
2776 ***   If you encounter a problem while building, please open an    ***
2777 ***   issue on GitHub <https://github.com/openssl/openssl/issues>  ***
2778 ***   and include the output from the following command:           ***
2779 ***                                                                ***
2780 ***       perl configdata.pm --dump                                ***
2781 ***                                                                ***
2782 ***   (If you are new to OpenSSL, you might want to consult the    ***
2783 ***   'Troubleshooting' section in the INSTALL file first)         ***
2784 ***                                                                ***
2785 **********************************************************************
2786 EOF
2787
2788 exit(0);
2789
2790 ######################################################################
2791 #
2792 # Helpers and utility functions
2793 #
2794
2795 # Death handler, to print a helpful message in case of failure #######
2796 #
2797 sub death_handler {
2798     die @_ if $^S;              # To prevent the added message in eval blocks
2799     my $build_file = $target{build_file} // "build file";
2800     my @message = ( <<"_____", @_ );
2801
2802 Failure!  $build_file wasn't produced.
2803 Please read INSTALL and associated NOTES files.  You may also have to look over
2804 your available compiler tool chain or change your configuration.
2805
2806 _____
2807
2808     # Dying is terminal, so it's ok to reset the signal handler here.
2809     $SIG{__DIE__} = $orig_death_handler;
2810     die @message;
2811 }
2812
2813 # Configuration file reading #########################################
2814
2815 # Note: All of the helper functions are for lazy evaluation.  They all
2816 # return a CODE ref, which will return the intended value when evaluated.
2817 # Thus, whenever there's mention of a returned value, it's about that
2818 # intended value.
2819
2820 # Helper function to implement conditional inheritance depending on the
2821 # value of $disabled{asm}.  Used in inherit_from values as follows:
2822 #
2823 #      inherit_from => [ "template", asm("asm_tmpl") ]
2824 #
2825 sub asm {
2826     my @x = @_;
2827     sub {
2828         $disabled{asm} ? () : @x;
2829     }
2830 }
2831
2832 # Helper function to implement conditional value variants, with a default
2833 # plus additional values based on the value of $config{build_type}.
2834 # Arguments are given in hash table form:
2835 #
2836 #       picker(default => "Basic string: ",
2837 #              debug   => "debug",
2838 #              release => "release")
2839 #
2840 # When configuring with --debug, the resulting string will be
2841 # "Basic string: debug", and when not, it will be "Basic string: release"
2842 #
2843 # This can be used to create variants of sets of flags according to the
2844 # build type:
2845 #
2846 #       cflags => picker(default => "-Wall",
2847 #                        debug   => "-g -O0",
2848 #                        release => "-O3")
2849 #
2850 sub picker {
2851     my %opts = @_;
2852     return sub { add($opts{default} || (),
2853                      $opts{$config{build_type}} || ())->(); }
2854 }
2855
2856 # Helper function to combine several values of different types into one.
2857 # This is useful if you want to combine a string with the result of a
2858 # lazy function, such as:
2859 #
2860 #       cflags => combine("-Wall", sub { $disabled{zlib} ? () : "-DZLIB" })
2861 #
2862 sub combine {
2863     my @stuff = @_;
2864     return sub { add(@stuff)->(); }
2865 }
2866
2867 # Helper function to implement conditional values depending on the value
2868 # of $disabled{threads}.  Can be used as follows:
2869 #
2870 #       cflags => combine("-Wall", threads("-pthread"))
2871 #
2872 sub threads {
2873     my @flags = @_;
2874     return sub { add($disabled{threads} ? () : @flags)->(); }
2875 }
2876
2877 sub shared {
2878     my @flags = @_;
2879     return sub { add($disabled{shared} ? () : @flags)->(); }
2880 }
2881
2882 our $add_called = 0;
2883 # Helper function to implement adding values to already existing configuration
2884 # values.  It handles elements that are ARRAYs, CODEs and scalars
2885 sub _add {
2886     my $separator = shift;
2887
2888     # If there's any ARRAY in the collection of values OR the separator
2889     # is undef, we will return an ARRAY of combined values, otherwise a
2890     # string of joined values with $separator as the separator.
2891     my $found_array = !defined($separator);
2892
2893     my @values =
2894         map {
2895             my $res = $_;
2896             while (ref($res) eq "CODE") {
2897                 $res = $res->();
2898             }
2899             if (defined($res)) {
2900                 if (ref($res) eq "ARRAY") {
2901                     $found_array = 1;
2902                     @$res;
2903                 } else {
2904                     $res;
2905                 }
2906             } else {
2907                 ();
2908             }
2909     } (@_);
2910
2911     $add_called = 1;
2912
2913     if ($found_array) {
2914         [ @values ];
2915     } else {
2916         join($separator, grep { defined($_) && $_ ne "" } @values);
2917     }
2918 }
2919 sub add_before {
2920     my $separator = " ";
2921     if (ref($_[$#_]) eq "HASH") {
2922         my $opts = pop;
2923         $separator = $opts->{separator};
2924     }
2925     my @x = @_;
2926     sub { _add($separator, @x, @_) };
2927 }
2928 sub add {
2929     my $separator = " ";
2930     if (ref($_[$#_]) eq "HASH") {
2931         my $opts = pop;
2932         $separator = $opts->{separator};
2933     }
2934     my @x = @_;
2935     sub { _add($separator, @_, @x) };
2936 }
2937
2938 sub read_eval_file {
2939     my $fname = shift;
2940     my $content;
2941     my @result;
2942
2943     open F, "< $fname" or die "Can't open '$fname': $!\n";
2944     {
2945         undef local $/;
2946         $content = <F>;
2947     }
2948     close F;
2949     {
2950         local $@;
2951
2952         @result = ( eval $content );
2953         warn $@ if $@;
2954     }
2955     return wantarray ? @result : $result[0];
2956 }
2957
2958 # configuration reader, evaluates the input file as a perl script and expects
2959 # it to fill %targets with target configurations.  Those are then added to
2960 # %table.
2961 sub read_config {
2962     my $fname = shift;
2963     my %targets;
2964
2965     {
2966         # Protect certain tables from tampering
2967         local %table = ();
2968
2969         %targets = read_eval_file($fname);
2970     }
2971     my %preexisting = ();
2972     foreach (sort keys %targets) {
2973         $preexisting{$_} = 1 if $table{$_};
2974     }
2975     die <<"EOF",
2976 The following config targets from $fname
2977 shadow pre-existing config targets with the same name:
2978 EOF
2979         map { "  $_\n" } sort keys %preexisting
2980         if %preexisting;
2981
2982
2983     # For each target, check that it's configured with a hash table.
2984     foreach (keys %targets) {
2985         if (ref($targets{$_}) ne "HASH") {
2986             if (ref($targets{$_}) eq "") {
2987                 warn "Deprecated target configuration for $_, ignoring...\n";
2988             } else {
2989                 warn "Misconfigured target configuration for $_ (should be a hash table), ignoring...\n";
2990             }
2991             delete $targets{$_};
2992         } else {
2993             $targets{$_}->{_conf_fname_int} = add([ $fname ]);
2994         }
2995     }
2996
2997     %table = (%table, %targets);
2998
2999 }
3000
3001 # configuration resolver.  Will only resolve all the lazy evaluation
3002 # codeblocks for the chosen target and all those it inherits from,
3003 # recursively
3004 sub resolve_config {
3005     my $target = shift;
3006     my @breadcrumbs = @_;
3007
3008 #    my $extra_checks = defined($ENV{CONFIGURE_EXTRA_CHECKS});
3009
3010     if (grep { $_ eq $target } @breadcrumbs) {
3011         die "inherit_from loop!  target backtrace:\n  "
3012             ,$target,"\n  ",join("\n  ", @breadcrumbs),"\n";
3013     }
3014
3015     if (!defined($table{$target})) {
3016         warn "Warning! target $target doesn't exist!\n";
3017         return ();
3018     }
3019     # Recurse through all inheritances.  They will be resolved on the
3020     # fly, so when this operation is done, they will all just be a
3021     # bunch of attributes with string values.
3022     # What we get here, though, are keys with references to lists of
3023     # the combined values of them all.  We will deal with lists after
3024     # this stage is done.
3025     my %combined_inheritance = ();
3026     if ($table{$target}->{inherit_from}) {
3027         my @inherit_from =
3028             map { ref($_) eq "CODE" ? $_->() : $_ } @{$table{$target}->{inherit_from}};
3029         foreach (@inherit_from) {
3030             my %inherited_config = resolve_config($_, $target, @breadcrumbs);
3031
3032             # 'template' is a marker that's considered private to
3033             # the config that had it.
3034             delete $inherited_config{template};
3035
3036             foreach (keys %inherited_config) {
3037                 if (!$combined_inheritance{$_}) {
3038                     $combined_inheritance{$_} = [];
3039                 }
3040                 push @{$combined_inheritance{$_}}, $inherited_config{$_};
3041             }
3042         }
3043     }
3044
3045     # We won't need inherit_from in this target any more, since we've
3046     # resolved all the inheritances that lead to this
3047     delete $table{$target}->{inherit_from};
3048
3049     # Now is the time to deal with those lists.  Here's the place to
3050     # decide what shall be done with those lists, all based on the
3051     # values of the target we're currently dealing with.
3052     # - If a value is a coderef, it will be executed with the list of
3053     #   inherited values as arguments.
3054     # - If the corresponding key doesn't have a value at all or is the
3055     #   empty string, the inherited value list will be run through the
3056     #   default combiner (below), and the result becomes this target's
3057     #   value.
3058     # - Otherwise, this target's value is assumed to be a string that
3059     #   will simply override the inherited list of values.
3060     my $default_combiner = add();
3061
3062     my %all_keys =
3063         map { $_ => 1 } (keys %combined_inheritance,
3064                          keys %{$table{$target}});
3065
3066     sub process_values {
3067         my $object    = shift;
3068         my $inherited = shift;  # Always a [ list ]
3069         my $target    = shift;
3070         my $entry     = shift;
3071
3072         $add_called = 0;
3073
3074         while(ref($object) eq "CODE") {
3075             $object = $object->(@$inherited);
3076         }
3077         if (!defined($object)) {
3078             return ();
3079         }
3080         elsif (ref($object) eq "ARRAY") {
3081             local $add_called;  # To make sure recursive calls don't affect it
3082             return [ map { process_values($_, $inherited, $target, $entry) }
3083                      @$object ];
3084         } elsif (ref($object) eq "") {
3085             return $object;
3086         } else {
3087             die "cannot handle reference type ",ref($object)
3088                 ," found in target ",$target," -> ",$entry,"\n";
3089         }
3090     }
3091
3092     foreach (sort keys %all_keys) {
3093         my $previous = $combined_inheritance{$_};
3094
3095         # Current target doesn't have a value for the current key?
3096         # Assign it the default combiner, the rest of this loop body
3097         # will handle it just like any other coderef.
3098         if (!exists $table{$target}->{$_}) {
3099             $table{$target}->{$_} = $default_combiner;
3100         }
3101
3102         $table{$target}->{$_} = process_values($table{$target}->{$_},
3103                                                $combined_inheritance{$_},
3104                                                $target, $_);
3105         unless(defined($table{$target}->{$_})) {
3106             delete $table{$target}->{$_};
3107         }
3108 #        if ($extra_checks &&
3109 #            $previous && !($add_called ||  $previous ~~ $table{$target}->{$_})) {
3110 #            warn "$_ got replaced in $target\n";
3111 #        }
3112     }
3113
3114     # Finally done, return the result.
3115     return %{$table{$target}};
3116 }
3117
3118 sub usage
3119         {
3120         print STDERR $usage;
3121         print STDERR "\npick os/compiler from:\n";
3122         my $j=0;
3123         my $i;
3124         my $k=0;
3125         foreach $i (sort keys %table)
3126                 {
3127                 next if $table{$i}->{template};
3128                 next if $i =~ /^debug/;
3129                 $k += length($i) + 1;
3130                 if ($k > 78)
3131                         {
3132                         print STDERR "\n";
3133                         $k=length($i);
3134                         }
3135                 print STDERR $i . " ";
3136                 }
3137         foreach $i (sort keys %table)
3138                 {
3139                 next if $table{$i}->{template};
3140                 next if $i !~ /^debug/;
3141                 $k += length($i) + 1;
3142                 if ($k > 78)
3143                         {
3144                         print STDERR "\n";
3145                         $k=length($i);
3146                         }
3147                 print STDERR $i . " ";
3148                 }
3149         print STDERR "\n\nNOTE: If in doubt, on Unix-ish systems use './config'.\n";
3150         exit(1);
3151         }
3152
3153 sub run_dofile
3154 {
3155     my $out = shift;
3156     my @templates = @_;
3157
3158     unlink $out || warn "Can't remove $out, $!"
3159         if -f $out;
3160     foreach (@templates) {
3161         die "Can't open $_, $!" unless -f $_;
3162     }
3163     my $perlcmd = (quotify("maybeshell", $config{PERL}))[0];
3164     my $cmd = "$perlcmd \"-I.\" \"-Mconfigdata\" \"$dofile\" -o\"Configure\" \"".join("\" \"",@templates)."\" > \"$out.new\"";
3165     #print STDERR "DEBUG[run_dofile]: \$cmd = $cmd\n";
3166     system($cmd);
3167     exit 1 if $? != 0;
3168     rename("$out.new", $out) || die "Can't rename $out.new, $!";
3169 }
3170
3171 sub compiler_predefined {
3172     state %predefined;
3173     my $cc = shift;
3174
3175     return () if $^O eq 'VMS';
3176
3177     die 'compiler_predefined called without a compiler command'
3178         unless $cc;
3179
3180     if (! $predefined{$cc}) {
3181
3182         $predefined{$cc} = {};
3183
3184         # collect compiler pre-defines from gcc or gcc-alike...
3185         open(PIPE, "$cc -dM -E -x c /dev/null 2>&1 |");
3186         while (my $l = <PIPE>) {
3187             $l =~ m/^#define\s+(\w+(?:\(\w+\))?)(?:\s+(.+))?/ or last;
3188             $predefined{$cc}->{$1} = $2 // '';
3189         }
3190         close(PIPE);
3191     }
3192
3193     return %{$predefined{$cc}};
3194 }
3195
3196 sub which
3197 {
3198     my ($name)=@_;
3199
3200     if (eval { require IPC::Cmd; 1; }) {
3201         IPC::Cmd->import();
3202         return scalar IPC::Cmd::can_run($name);
3203     } else {
3204         # if there is $directories component in splitpath,
3205         # then it's not something to test with $PATH...
3206         return $name if (File::Spec->splitpath($name))[1];
3207
3208         foreach (File::Spec->path()) {
3209             my $fullpath = catfile($_, "$name$target{exe_extension}");
3210             if (-f $fullpath and -x $fullpath) {
3211                 return $fullpath;
3212             }
3213         }
3214     }
3215 }
3216
3217 sub env
3218 {
3219     my $name = shift;
3220     my %opts = @_;
3221
3222     unless ($opts{cacheonly}) {
3223         # Note that if $ENV{$name} doesn't exist or is undefined,
3224         # $config{perlenv}->{$name} will be created with the value
3225         # undef.  This is intentional.
3226
3227         $config{perlenv}->{$name} = $ENV{$name}
3228             if ! exists $config{perlenv}->{$name};
3229     }
3230     return $config{perlenv}->{$name};
3231 }
3232
3233 # Configuration printer ##############################################
3234
3235 sub print_table_entry
3236 {
3237     local $now_printing = shift;
3238     my %target = resolve_config($now_printing);
3239     my $type = shift;
3240
3241     # Don't print the templates
3242     return if $target{template};
3243
3244     my @sequence = (
3245         "sys_id",
3246         "cpp",
3247         "cppflags",
3248         "defines",
3249         "includes",
3250         "cc",
3251         "cflags",
3252         "unistd",
3253         "ld",
3254         "lflags",
3255         "loutflag",
3256         "ex_libs",
3257         "bn_ops",
3258         "apps_aux_src",
3259         "cpuid_asm_src",
3260         "uplink_aux_src",
3261         "bn_asm_src",
3262         "ec_asm_src",
3263         "des_asm_src",
3264         "aes_asm_src",
3265         "bf_asm_src",
3266         "md5_asm_src",
3267         "cast_asm_src",
3268         "sha1_asm_src",
3269         "rc4_asm_src",
3270         "rmd160_asm_src",
3271         "rc5_asm_src",
3272         "wp_asm_src",
3273         "cmll_asm_src",
3274         "modes_asm_src",
3275         "padlock_asm_src",
3276         "chacha_asm_src",
3277         "poly1035_asm_src",
3278         "thread_scheme",
3279         "perlasm_scheme",
3280         "dso_scheme",
3281         "shared_target",
3282         "shared_cflag",
3283         "shared_defines",
3284         "shared_ldflag",
3285         "shared_rcflag",
3286         "shared_extension",
3287         "dso_extension",
3288         "obj_extension",
3289         "exe_extension",
3290         "ranlib",
3291         "ar",
3292         "arflags",
3293         "aroutflag",
3294         "rc",
3295         "rcflags",
3296         "rcoutflag",
3297         "mt",
3298         "mtflags",
3299         "mtinflag",
3300         "mtoutflag",
3301         "multilib",
3302         "build_scheme",
3303         );
3304
3305     if ($type eq "TABLE") {
3306         print "\n";
3307         print "*** $now_printing\n";
3308         foreach (@sequence) {
3309             if (ref($target{$_}) eq "ARRAY") {
3310                 printf "\$%-12s = %s\n", $_, join(" ", @{$target{$_}});
3311             } else {
3312                 printf "\$%-12s = %s\n", $_, $target{$_};
3313             }
3314         }
3315     } elsif ($type eq "HASH") {
3316         my $largest =
3317             length((sort { length($a) <=> length($b) } @sequence)[-1]);
3318         print "    '$now_printing' => {\n";
3319         foreach (@sequence) {
3320             if ($target{$_}) {
3321                 if (ref($target{$_}) eq "ARRAY") {
3322                     print "      '",$_,"'"," " x ($largest - length($_))," => [ ",join(", ", map { "'$_'" } @{$target{$_}})," ],\n";
3323                 } else {
3324                     print "      '",$_,"'"," " x ($largest - length($_))," => '",$target{$_},"',\n";
3325                 }
3326             }
3327         }
3328         print "    },\n";
3329     }
3330 }
3331
3332 # Utility routines ###################################################
3333
3334 # On VMS, if the given file is a logical name, File::Spec::Functions
3335 # will consider it an absolute path.  There are cases when we want a
3336 # purely syntactic check without checking the environment.
3337 sub isabsolute {
3338     my $file = shift;
3339
3340     # On non-platforms, we just use file_name_is_absolute().
3341     return file_name_is_absolute($file) unless $^O eq "VMS";
3342
3343     # If the file spec includes a device or a directory spec,
3344     # file_name_is_absolute() is perfectly safe.
3345     return file_name_is_absolute($file) if $file =~ m|[:\[]|;
3346
3347     # Here, we know the given file spec isn't absolute
3348     return 0;
3349 }
3350
3351 # Makes a directory absolute and cleans out /../ in paths like foo/../bar
3352 # On some platforms, this uses rel2abs(), while on others, realpath() is used.
3353 # realpath() requires that at least all path components except the last is an
3354 # existing directory.  On VMS, the last component of the directory spec must
3355 # exist.
3356 sub absolutedir {
3357     my $dir = shift;
3358
3359     # realpath() is quite buggy on VMS.  It uses LIB$FID_TO_NAME, which
3360     # will return the volume name for the device, no matter what.  Also,
3361     # it will return an incorrect directory spec if the argument is a
3362     # directory that doesn't exist.
3363     if ($^O eq "VMS") {
3364         return rel2abs($dir);
3365     }
3366
3367     # We use realpath() on Unix, since no other will properly clean out
3368     # a directory spec.
3369     use Cwd qw/realpath/;
3370
3371     return realpath($dir);
3372 }
3373
3374 sub quotify {
3375     my %processors = (
3376         perl    => sub { my $x = shift;
3377                          $x =~ s/([\\\$\@"])/\\$1/g;
3378                          return '"'.$x.'"'; },
3379         maybeshell => sub { my $x = shift;
3380                             (my $y = $x) =~ s/([\\\"])/\\$1/g;
3381                             if ($x ne $y || $x =~ m|\s|) {
3382                                 return '"'.$y.'"';
3383                             } else {
3384                                 return $x;
3385                             }
3386                         },
3387         );
3388     my $for = shift;
3389     my $processor =
3390         defined($processors{$for}) ? $processors{$for} : sub { shift; };
3391
3392     return map { $processor->($_); } @_;
3393 }
3394
3395 # collect_from_file($filename, $line_concat_cond_re, $line_concat)
3396 # $filename is a file name to read from
3397 # $line_concat_cond_re is a regexp detecting a line continuation ending
3398 # $line_concat is a CODEref that takes care of concatenating two lines
3399 sub collect_from_file {
3400     my $filename = shift;
3401     my $line_concat_cond_re = shift;
3402     my $line_concat = shift;
3403
3404     open my $fh, $filename || die "unable to read $filename: $!\n";
3405     return sub {
3406         my $saved_line = "";
3407         $_ = "";
3408         while (<$fh>) {
3409             s|\R$||;
3410             if (defined $line_concat) {
3411                 $_ = $line_concat->($saved_line, $_);
3412                 $saved_line = "";
3413             }
3414             if (defined $line_concat_cond_re && /$line_concat_cond_re/) {
3415                 $saved_line = $_;
3416                 next;
3417             }
3418             return $_;
3419         }
3420         die "$filename ending with continuation line\n" if $_;
3421         close $fh;
3422         return undef;
3423     }
3424 }
3425
3426 # collect_from_array($array, $line_concat_cond_re, $line_concat)
3427 # $array is an ARRAYref of lines
3428 # $line_concat_cond_re is a regexp detecting a line continuation ending
3429 # $line_concat is a CODEref that takes care of concatenating two lines
3430 sub collect_from_array {
3431     my $array = shift;
3432     my $line_concat_cond_re = shift;
3433     my $line_concat = shift;
3434     my @array = (@$array);
3435
3436     return sub {
3437         my $saved_line = "";
3438         $_ = "";
3439         while (defined($_ = shift @array)) {
3440             s|\R$||;
3441             if (defined $line_concat) {
3442                 $_ = $line_concat->($saved_line, $_);
3443                 $saved_line = "";
3444             }
3445             if (defined $line_concat_cond_re && /$line_concat_cond_re/) {
3446                 $saved_line = $_;
3447                 next;
3448             }
3449             return $_;
3450         }
3451         die "input text ending with continuation line\n" if $_;
3452         return undef;
3453     }
3454 }
3455
3456 # collect_information($lineiterator, $line_continue, $regexp => $CODEref, ...)
3457 # $lineiterator is a CODEref that delivers one line at a time.
3458 # All following arguments are regex/CODEref pairs, where the regexp detects a
3459 # line and the CODEref does something with the result of the regexp.
3460 sub collect_information {
3461     my $lineiterator = shift;
3462     my %collectors = @_;
3463
3464     while(defined($_ = $lineiterator->())) {
3465         s|\R$||;
3466         my $found = 0;
3467         if ($collectors{"BEFORE"}) {
3468             $collectors{"BEFORE"}->($_);
3469         }
3470         foreach my $re (keys %collectors) {
3471             if ($re !~ /^OTHERWISE|BEFORE|AFTER$/ && /$re/) {
3472                 $collectors{$re}->($lineiterator);
3473                 $found = 1;
3474             };
3475         }
3476         if ($collectors{"OTHERWISE"}) {
3477             $collectors{"OTHERWISE"}->($lineiterator, $_)
3478                 unless $found || !defined $collectors{"OTHERWISE"};
3479         }
3480         if ($collectors{"AFTER"}) {
3481             $collectors{"AFTER"}->($_);
3482         }
3483     }
3484 }
3485
3486 # tokenize($line)
3487 # tokenize($line,$separator)
3488 # $line is a line of text to split up into tokens
3489 # $separator [optional] is a regular expression that separates the tokens,
3490 # the default being spaces.  Do not use quotes of any kind as separators,
3491 # that will give undefined results.
3492 # Returns a list of tokens.
3493 #
3494 # Tokens are divided by separator (spaces by default).  If the tokens include
3495 # the separators, they have to be quoted with single or double quotes.
3496 # Double quotes inside a double quoted token must be escaped.  Escaping is done
3497 # with backslash.
3498 # Basically, the same quoting rules apply for " and ' as in any
3499 # Unix shell.
3500 sub tokenize {
3501     my $line = my $debug_line = shift;
3502     my $separator = shift // qr|\s+|;
3503     my @result = ();
3504
3505     if ($ENV{CONFIGURE_DEBUG_TOKENIZE}) {
3506         print STDERR "DEBUG[tokenize]: \$separator = $separator\n";
3507     }
3508
3509     while ($line =~ s|^${separator}||, $line ne "") {
3510         my $token = "";
3511     again:
3512         $line =~ m/^(.*?)(${separator}|"|'|$)/;
3513         $token .= $1;
3514         $line = $2.$';
3515
3516         if ($line =~ m/^"((?:[^"\\]+|\\.)*)"/) {
3517             $token .= $1;
3518             $line = $';
3519             goto again;
3520         } elsif ($line =~ m/^'([^']*)'/) {
3521             $token .= $1;
3522             $line = $';
3523             goto again;
3524         }
3525         push @result, $token;
3526     }
3527
3528     if ($ENV{CONFIGURE_DEBUG_TOKENIZE}) {
3529         print STDERR "DEBUG[tokenize]: Parsed '$debug_line' into:\n";
3530         print STDERR "DEBUG[tokenize]: ('", join("', '", @result), "')\n";
3531     }
3532     return @result;
3533 }