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