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