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