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