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