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