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