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