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