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