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