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