]> git.ipfire.org Git - thirdparty/openssl.git/blame - Configure
Configure: if a file is generated, never assume it's in the source dir
[thirdparty/openssl.git] / Configure
CommitLineData
de17db91 1#! /usr/bin/env perl
f4d8f037 2# -*- mode: perl; -*-
ac3d0e13
RS
3# Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
4#
5# Licensed under the OpenSSL license (the "License"). You may not use
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
a43cf4c0 12use 5.10.0;
1641cb60 13use strict;
b81cfa07 14use FindBin;
470a6017 15use lib "$FindBin::Bin/util/perl";
f09e7ca9 16use File::Basename;
85152ca4 17use File::Spec::Functions qw/:DEFAULT abs2rel rel2abs/;
dca99383 18use File::Path qw/mkpath/;
b81cfa07 19use OpenSSL::Glob;
1641cb60 20
22a4f969 21# see INSTALL for instructions.
462ba4f6 22
e4ef2e25 23my $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-dso] [no-egd] [sctp] [386] [--prefix=DIR] [--openssldir=OPENSSLDIR] [--with-xxx[=vvv]] [--config=FILE] os/compiler[:flags]\n";
462ba4f6 24
434c5dd3 25# Options:
e5f3045f 26#
f09e7ca9
RS
27# --config add the given configuration file, which will be read after
28# any "Configurations*" files that are found in the same
29# directory as this script.
d74dfafd
RL
30# --prefix prefix for the OpenSSL installation, which includes the
31# directories bin, lib, include, share/man, share/doc/openssl
32# This becomes the value of INSTALLTOP in Makefile
33# (Default: /usr/local)
34# --openssldir OpenSSL data area, such as openssl.cnf, certificates and keys.
35# If it's a relative directory, it will be added on the directory
36# given with --prefix.
37# This becomes the value of OPENSSLDIR in Makefile and in C.
38# (Default: PREFIX/ssl)
e5f3045f 39#
cbfb39d1
AP
40# --cross-compile-prefix Add specified prefix to binutils components.
41#
98186eb4
VD
42# --api One of 0.9.8, 1.0.0 or 1.1.0. Do not compile support for
43# interfaces deprecated as of the specified OpenSSL version.
44#
5270e702
RL
45# no-hw-xxx do not compile support for specific crypto hardware.
46# Generic OpenSSL-style methods relating to this support
47# are always compiled but return NULL if the hardware
48# support isn't compiled.
49# no-hw do not compile support for any crypto hardware.
5f8d5c96
BM
50# [no-]threads [don't] try to create a library that is suitable for
51# multithreaded applications (default is "threads" if we
52# know how to do it)
fcc6a1c4 53# [no-]shared [don't] try to create shared libraries when supported.
ae48242c 54# [no-]pic [don't] try to build position independent code when supported.
45b71abe 55# If disabled, it also disables shared and dynamic-engine.
a723979d 56# no-asm do not use assembler
bc2aadad
GT
57# no-dso do not compile in any native shared-library methods. This
58# will ensure that all methods just return NULL.
0423f812 59# no-egd do not compile support for the entropy-gathering daemon APIs
e452de9d
RL
60# [no-]zlib [don't] compile support for zlib compression.
61# zlib-dynamic Like "zlib", but the zlib library is expected to be a shared
62# library and will be loaded in run-time by the OpenSSL library.
7e159e01 63# sctp include SCTP support
8b1a5af3 64# enable-weak-ssl-ciphers
0e0a9ae3 65# Enable weak ciphers that are disabled by default.
82593038
AP
66# 386 generate 80386 code in assembly modules
67# no-sse2 disables IA-32 SSE2 code in assembly modules, the above
68# mentioned '386' option implies this one
79df9d62 69# no-<cipher> build without specified algorithm (rsa, idea, rc5, ...)
fce0ba5f 70# -<xxx> +<xxx> compiler options are passed through
f757ce2a
AP
71# -static while -static is also a pass-through compiler option (and
72# as such is limited to environments where it's actually
73# meaningful), it triggers a number configuration options,
74# namely no-dso, no-pic, no-shared and no-threads. It is
75# argued that the only reason to produce statically linked
76# binaries (and in context it means executables linked with
77# -static flag, and not just executables linked with static
78# libcrypto.a) is to eliminate dependency on specific run-time,
79# a.k.a. libc version. The mentioned config options are meant
80# to achieve just that. Unfortunately on Linux it's impossible
81# to eliminate the dependency completely for openssl executable
82# because of getaddrinfo and gethostbyname calls, which can
83# invoke dynamically loadable library facility anyway to meet
84# the lookup requests. For this reason on Linux statically
85# linked openssl executable has rather debugging value than
86# production quality.
e41c8d6a
GT
87#
88# DEBUG_SAFESTACK use type-safe stacks to enforce type-safety on stack items
89# provided to stack calls. Generates unique stack functions for
90# each possible stack type.
d02b48c6 91# BN_LLONG use the type 'long long' in crypto/bn/bn.h
d02b48c6 92# RC4_CHAR use 'char' instead of 'int' for RC4_INT in crypto/rc4/rc4.h
d0590fe6
AP
93# Following are set automatically by this script
94#
8483a003
F
95# MD5_ASM use some extra md5 assembler,
96# SHA1_ASM use some extra sha1 assembler, must define L_ENDIAN for x86
97# RMD160_ASM use some extra ripemd160 assembler,
d0590fe6
AP
98# SHA256_ASM sha256_block is implemented in assembler
99# SHA512_ASM sha512_block is implemented in assembler
28bd8e94 100# AES_ASM AES_[en|de]crypt is implemented in assembler
d02b48c6 101
363bd0b4 102# Minimum warning options... any contributions to OpenSSL should at least get
fce0ba5f 103# past these.
363bd0b4 104
463a7b8c
AP
105# DEBUG_UNUSED enables __owur (warn unused result) checks.
106my $gcc_devteam_warn = "-DDEBUG_UNUSED"
107 # -DPEDANTIC complements -pedantic and is meant to mask code that
f430ba31 108 # is not strictly standard-compliant and/or implementation-specific,
463a7b8c
AP
109 # e.g. inline assembly, disregards to alignment requirements, such
110 # that -pedantic would complain about. Incidentally -DPEDANTIC has
111 # to be used even in sanitized builds, because sanitizer too is
112 # supposed to and does take notice of non-standard behaviour. Then
113 # -pedantic with pre-C9x compiler would also complain about 'long
114 # long' not being supported. As 64-bit algorithms are common now,
115 # it grew impossible to resolve this without sizeable additional
116 # code, so we just tell compiler to be pedantic about everything
117 # but 'long long' type.
118 . " -DPEDANTIC -pedantic -Wno-long-long"
8bccbce5 119 . " -Wall"
725f121d
BK
120 . " -Wextra"
121 . " -Wno-unused-parameter"
122 . " -Wno-missing-field-initializers"
8bccbce5
RS
123 . " -Wsign-compare"
124 . " -Wmissing-prototypes"
125 . " -Wshadow"
126 . " -Wformat"
127 . " -Wtype-limits"
4c3376ec 128 . " -Wundef"
8bccbce5
RS
129 . " -Werror"
130 ;
363bd0b4 131
190c8c60
BL
132# These are used in addition to $gcc_devteam_warn when the compiler is clang.
133# TODO(openssl-team): fix problems and investigate if (at least) the
480405e4 134# following warnings can also be enabled:
8bccbce5 135# -Wswitch-enum
8bccbce5
RS
136# -Wcast-align
137# -Wunreachable-code
a773b52a
RS
138# -Wlanguage-extension-token -- no, we use asm()
139# -Wunused-macros -- no, too tricky for BN and _XOPEN_SOURCE etc
140# -Wextended-offsetof -- no, needed in CMS ASN1 code
8bccbce5
RS
141my $clang_devteam_warn = ""
142 . " -Qunused-arguments"
8bccbce5
RS
143 . " -Wno-language-extension-token"
144 . " -Wno-extended-offsetof"
145 . " -Wconditional-uninitialized"
146 . " -Wincompatible-pointer-types-discards-qualifiers"
147 . " -Wmissing-variable-declarations"
148 ;
cb2bc054 149
ef8ca6bd
RL
150# This adds backtrace information to the memory leak info. Is only used
151# when crypto-mdebug-backtrace is enabled.
152my $memleak_devteam_backtrace = "-rdynamic";
a1d3f3d1 153
0c28f277
DSH
154my $strict_warnings = 0;
155
b7efa56a 156# As for $BSDthreads. Idea is to maintain "collective" set of flags,
fce0ba5f 157# which would cover all BSD flavors. -pthread applies to them all,
b7efa56a
AP
158# but is treated differently. OpenBSD expands is as -D_POSIX_THREAD
159# -lc_r, which is sufficient. FreeBSD 4.x expands it as -lc_r,
160# which has to be accompanied by explicit -D_THREAD_SAFE and
161# sometimes -D_REENTRANT. FreeBSD 5.x expands it as -lc_r, which
162# seems to be sufficient?
9c62a279 163our $BSDthreads="-pthread -D_THREAD_SAFE -D_REENTRANT";
d02b48c6 164
98186eb4 165#
f430ba31 166# API compatibility name to version number mapping.
98186eb4
VD
167#
168my $maxapi = "1.1.0"; # API for "no-deprecated" builds
169my $apitable = {
170 "1.1.0" => "0x10100000L",
171 "1.0.0" => "0x10000000L",
172 "0.9.8" => "0x00908000L",
173};
174
9e0724a1 175our %table = ();
291e94df 176our %config = ();
98fdbce0 177our %withargs = ();
3e83e686 178
bd5192b1 179# Forward declarations ###############################################
7ead0c89 180
bd5192b1
RL
181# read_config(filename)
182#
183# Reads a configuration file and populates %table with the contents
184# (which the configuration file places in %targets).
185sub read_config;
7d46b942 186
bd5192b1
RL
187# resolve_config(target)
188#
8483a003 189# Resolves all the late evaluations, inheritances and so on for the
bd5192b1
RL
190# chosen target and any target it inherits from.
191sub resolve_config;
7d46b942 192
15c7adb0 193
107b5792
RL
194# Information collection #############################################
195
9fe2bb77 196# Unified build supports separate build dir
ec182ef0
RL
197my $srcdir = catdir(absolutedir(dirname($0))); # catdir ensures local syntax
198my $blddir = catdir(absolutedir(".")); # catdir ensures local syntax
9fe2bb77
RL
199my $dofile = abs2rel(catfile($srcdir, "util/dofile.pl"));
200
b5293d4c
RL
201my $local_config_envname = 'OPENSSL_LOCAL_CONFIG_DIR';
202
9fe2bb77
RL
203$config{sourcedir} = abs2rel($srcdir);
204$config{builddir} = abs2rel($blddir);
205
b2d10958
RL
206# Collect reconfiguration information if needed
207my @argvcopy=@ARGV;
208
209if (grep /^reconf(igure)?$/, @argvcopy) {
210 if (-f "./configdata.pm") {
211 my $file = "./configdata.pm";
212 unless (my $return = do $file) {
213 die "couldn't parse $file: $@" if $@;
214 die "couldn't do $file: $!" unless defined $return;
215 die "couldn't run $file" unless $return;
216 }
217
218 @argvcopy = defined($configdata::config{perlargv}) ?
219 @{$configdata::config{perlargv}} : ();
220 die "Incorrect data to reconfigure, please do a normal configuration\n"
221 if (grep(/^reconf/,@argvcopy));
222 $ENV{CROSS_COMPILE} = $configdata::config{cross_compile_prefix}
223 if defined($configdata::config{cross_compile_prefix});
224 $ENV{CC} = $configdata::config{cc}
225 if defined($configdata::config{cc});
226 $ENV{BUILDFILE} = $configdata::config{build_file}
227 if defined($configdata::config{build_file});
228 $ENV{$local_config_envname} = $configdata::config{local_config_dir}
229 if defined($configdata::config{local_config_dir});
230
231 print "Reconfiguring with: ", join(" ",@argvcopy), "\n";
232 print " CROSS_COMPILE = ",$ENV{CROSS_COMPILE},"\n"
233 if $ENV{CROSS_COMPILE};
234 print " CC = ",$ENV{CC},"\n" if $ENV{CC};
235 print " BUILDFILE = ",$ENV{BUILDFILE},"\n" if $ENV{BUILDFILE};
236 print " $local_config_envname = ",$ENV{$local_config_envname},"\n"
237 if $ENV{$local_config_envname};
238 } else {
239 die "Insufficient data to reconfigure, please do a normal configuration\n";
240 }
241}
242
243$config{perlargv} = [ @argvcopy ];
244
107b5792
RL
245# Collect version numbers
246$config{version} = "unknown";
247$config{version_num} = "unknown";
248$config{shlib_version_number} = "unknown";
249$config{shlib_version_history} = "unknown";
250
251collect_information(
9fe2bb77 252 collect_from_file(catfile($srcdir,'include/openssl/opensslv.h')),
107b5792
RL
253 qr/OPENSSL.VERSION.TEXT.*OpenSSL (\S+) / => sub { $config{version} = $1; },
254 qr/OPENSSL.VERSION.NUMBER.*(0x\S+)/ => sub { $config{version_num}=$1 },
255 qr/SHLIB_VERSION_NUMBER *"([^"]+)"/ => sub { $config{shlib_version_number}=$1 },
256 qr/SHLIB_VERSION_HISTORY *"([^"]*)"/ => sub { $config{shlib_version_history}=$1 }
257 );
258if ($config{shlib_version_history} ne "") { $config{shlib_version_history} .= ":"; }
259
260($config{major}, $config{minor})
261 = ($config{version} =~ /^([0-9]+)\.([0-9\.]+)/);
262($config{shlib_major}, $config{shlib_minor})
263 = ($config{shlib_version_number} =~ /^([0-9]+)\.([0-9\.]+)/);
264die "erroneous version information in opensslv.h: ",
265 "$config{major}, $config{minor}, $config{shlib_major}, $config{shlib_minor}\n"
266 if ($config{major} eq "" || $config{minor} eq ""
267 || $config{shlib_major} eq "" || $config{shlib_minor} eq "");
268
269# Collect target configurations
270
85152ca4 271my $pattern = catfile(dirname($0), "Configurations", "*.conf");
97855556 272foreach (sort glob($pattern)) {
f09e7ca9
RS
273 &read_config($_);
274}
d02b48c6 275
b5293d4c
RL
276if (defined $ENV{$local_config_envname}) {
277 if ($^O eq 'VMS') {
278 # VMS environment variables are logical names,
279 # which can be used as is
280 $pattern = $local_config_envname . ':' . '*.conf';
281 } else {
282 $pattern = catfile($ENV{$local_config_envname}, '*.conf');
283 }
284
97855556 285 foreach (sort glob($pattern)) {
b5293d4c
RL
286 &read_config($_);
287 }
288}
289
291e94df 290
bf4e6422 291print "Configuring OpenSSL version $config{version} ($config{version_num})\n";
107b5792 292
291e94df
RL
293$config{prefix}="";
294$config{openssldir}="";
7d130f68 295$config{processor}="";
107b5792 296$config{libdir}="";
642a6138 297$config{cross_compile_prefix}="";
107b5792 298$config{fipslibdir}="/usr/local/ssl/fips-2.0/lib/";
1ab2f7f1 299my $nofipscanistercheck=0;
107b5792 300$config{baseaddr}="0xFB00000";
9c62a279 301my $auto_threads=1; # enable threads automatically? true by default
0396479d 302my $default_ranlib;
107b5792
RL
303$config{fips}=0;
304
305# Top level directories to build
c3cfc996 306$config{dirs} = [ "crypto", "ssl", "engines", "apps", "test", "util", "tools", "fuzz" ];
107b5792
RL
307# crypto/ subdirectories to build
308$config{sdirs} = [
309 "objects",
2d0b4412 310 "md2", "md4", "md5", "sha", "mdc2", "hmac", "ripemd", "whrlpool", "poly1305", "blake2",
107b5792
RL
311 "des", "aes", "rc2", "rc4", "rc5", "idea", "bf", "cast", "camellia", "seed", "chacha", "modes",
312 "bn", "ec", "rsa", "dsa", "dh", "dso", "engine",
313 "buffer", "bio", "stack", "lhash", "rand", "err",
314 "evp", "asn1", "pem", "x509", "x509v3", "conf", "txt_db", "pkcs7", "pkcs12", "comp", "ocsp", "ui",
dba31777 315 "cms", "ts", "srp", "cmac", "ct", "async", "kdf"
107b5792 316 ];
99aab161 317
6b01bed2
VD
318# Known TLS and DTLS protocols
319my @tls = qw(ssl3 tls1 tls1_1 tls1_2);
320my @dtls = qw(dtls1 dtls1_2);
321
8483a003 322# Explicitly known options that are possible to disable. They can
8b527be2
RL
323# be regexps, and will be used like this: /^no-${option}$/
324# For developers: keep it sorted alphabetically
325
326my @disablables = (
c91a0a83 327 "afalgeng",
c38bb727 328 "asan",
8b527be2 329 "asm",
52739e40 330 "async",
b184e3ef 331 "autoalginit",
498abff0 332 "autoerrinit",
8b527be2 333 "bf",
2d0b4412 334 "blake2",
8b527be2
RL
335 "camellia",
336 "capieng",
337 "cast",
48f14845 338 "chacha",
8b527be2
RL
339 "cmac",
340 "cms",
341 "comp",
3e45d393 342 "crypto-mdebug",
ef8ca6bd 343 "crypto-mdebug-backtrace",
8b527be2
RL
344 "ct",
345 "deprecated",
346 "des",
347 "dgram",
348 "dh",
349 "dsa",
350 "dso",
a5ecdc6a 351 "dtls",
343ec2b0 352 "dynamic-engine",
8b527be2
RL
353 "ec",
354 "ec2m",
6b01bed2
VD
355 "ecdh",
356 "ecdsa",
8b527be2 357 "ec_nistp_64_gcc_128",
b31feae6 358 "egd",
8b527be2 359 "engine",
1288f26f 360 "err",
02f7114a 361 "filenames",
f59d0131
KR
362 "fuzz-libfuzzer",
363 "fuzz-afl",
168c3b73 364 "gost",
8b527be2 365 "heartbeats",
8b527be2
RL
366 "hw(-.+)?",
367 "idea",
09aa263a 368 "makedepend",
8b527be2
RL
369 "md2",
370 "md4",
8b527be2 371 "mdc2",
29df3061 372 "msan",
fa22f98f 373 "multiblock",
8b527be2
RL
374 "nextprotoneg",
375 "ocb",
376 "ocsp",
ae48242c 377 "pic",
48f14845 378 "poly1305",
8b527be2
RL
379 "posix-io",
380 "psk",
381 "rc2",
382 "rc4",
383 "rc5",
384 "rdrand",
385 "rfc3779",
8b527be2 386 "rmd160",
8b527be2 387 "scrypt",
8b527be2
RL
388 "sctp",
389 "seed",
8b527be2
RL
390 "shared",
391 "sock",
392 "srp",
393 "srtp",
394 "sse2",
395 "ssl",
8b527be2
RL
396 "ssl-trace",
397 "static-engine",
398 "stdio",
8b527be2
RL
399 "threads",
400 "tls",
1288f26f 401 "ts",
c38bb727 402 "ubsan",
1288f26f 403 "ui",
8b527be2
RL
404 "unit-test",
405 "whirlpool",
8b1a5af3 406 "weak-ssl-ciphers",
8b527be2
RL
407 "zlib",
408 "zlib-dynamic",
409 );
6b01bed2
VD
410foreach my $proto ((@tls, @dtls))
411 {
412 push(@disablables, $proto);
413 push(@disablables, "$proto-method");
414 }
8b527be2 415
2b1343b9
MC
416my %deprecated_disablables = (
417 "ssl2" => undef,
418 "buf-freelists" => undef,
419 "ripemd" => "rmd160"
e80381e1
RL
420 );
421
c9a112f5
BM
422# All of the following is disabled by default (RC5 was enabled before 0.9.8):
423
9e04edf2 424our %disabled = ( # "what" => "comment"
c38bb727 425 "asan" => "default",
a9c27fe1
BK
426 "crypto-mdebug" => "default",
427 "crypto-mdebug-backtrace" => "default",
9e04edf2 428 "ec_nistp_64_gcc_128" => "default",
8b1a5af3 429 "egd" => "default",
f59d0131
KR
430 "fuzz-libfuzzer" => "default",
431 "fuzz-afl" => "default",
a9c27fe1 432 "heartbeats" => "default",
8b1a5af3 433 "md2" => "default",
29df3061 434 "msan" => "default",
8b1a5af3
MC
435 "rc5" => "default",
436 "sctp" => "default",
8b1a5af3 437 "ssl-trace" => "default",
9829b5ab
KR
438 "ssl3" => "default",
439 "ssl3-method" => "default",
c38bb727 440 "ubsan" => "default",
8b1a5af3
MC
441 "unit-test" => "default",
442 "weak-ssl-ciphers" => "default",
443 "zlib" => "default",
444 "zlib-dynamic" => "default",
9e04edf2 445 );
c9a112f5 446
c569e206
RL
447# Note: => pair form used for aesthetics, not to truly make a hash table
448my @disable_cascades = (
449 # "what" => [ "cascade", ... ]
7d130f68 450 sub { $config{processor} eq "386" }
c569e206
RL
451 => [ "sse2" ],
452 "ssl" => [ "ssl3" ],
453 "ssl3-method" => [ "ssl3" ],
454 "zlib" => [ "zlib-dynamic" ],
c569e206 455 "des" => [ "mdc2" ],
9e4d6fbf 456 "ec" => [ "ecdsa", "ecdh" ],
c569e206 457
3fd4d211 458 "dgram" => [ "dtls", "sctp" ],
505f74ca 459 "sock" => [ "dgram" ],
c569e206 460 "dtls" => [ @dtls ],
eb5de0ce
RL
461 sub { 0 == scalar grep { !$disabled{$_} } @dtls }
462 => [ "dtls" ],
c569e206 463
c569e206 464 "tls" => [ @tls ],
eb5de0ce
RL
465 sub { 0 == scalar grep { !$disabled{$_} } @tls }
466 => [ "tls" ],
c569e206 467
ef8ca6bd 468 "crypto-mdebug" => [ "crypto-mdebug-backtrace" ],
343ec2b0
RL
469
470 # Without DSO, we can't load dynamic engines, so don't build them dynamic
471 "dso" => [ "dynamic-engine" ],
ae48242c
RL
472
473 # Without position independent code, there can be no shared libraries or DSOs
00698061
RL
474 "pic" => [ "shared" ],
475 "shared" => [ "dynamic-engine" ],
c91a0a83 476 "engine" => [ "afalgeng" ],
d90a6beb
MC
477
478 # no-autoalginit is only useful when building non-shared
479 "autoalginit" => [ "shared", "apps" ],
480
583d8f63 481 "stdio" => [ "apps", "capieng", "egd" ],
d90a6beb 482 "apps" => [ "tests" ],
b8ce6dda 483 "comp" => [ "zlib" ],
686c86a4 484 sub { !$disabled{"unit-test"} } => [ "heartbeats" ],
29df3061
EK
485
486 sub { !$disabled{"msan"} } => [ "asm" ],
c569e206
RL
487 );
488
489# Avoid protocol support holes. Also disable all versions below N, if version
490# N is disabled while N+1 is enabled.
491#
492my @list = (reverse @tls);
493while ((my $first, my $second) = (shift @list, shift @list)) {
494 last unless @list;
495 push @disable_cascades, ( sub { !$disabled{$first} && $disabled{$second} }
496 => [ @list ] );
497 unshift @list, $second;
498}
499my @list = (reverse @dtls);
500while ((my $first, my $second) = (shift @list, shift @list)) {
501 last unless @list;
502 push @disable_cascades, ( sub { !$disabled{$first} && $disabled{$second} }
503 => [ @list ] );
504 unshift @list, $second;
505}
506
7a762197 507# Explicit "no-..." options will be collected in %disabled along with the defaults.
e4ef2e25 508# To remove something from %disabled, use "enable-foo".
7a762197
BM
509# For symmetry, "disable-foo" is a synonym for "no-foo".
510
462ba4f6 511&usage if ($#ARGV < 0);
d02b48c6 512
bcb1977b
RL
513my $user_cflags="";
514my @user_defines=();
7d130f68
RL
515$config{openssl_api_defines}=[];
516$config{openssl_algorithm_defines}=[];
517$config{openssl_thread_defines}=[];
518$config{openssl_sys_defines}=[];
519$config{openssl_other_defines}=[];
fe05264e
RL
520my $libs="";
521my $target="";
3fa04f0d 522$config{options}="";
8864f0de 523$config{build_type} = "release";
c59cb511 524
fe05264e 525my %unsupported_options = ();
e80381e1 526my %deprecated_options = ();
0de5e4f0 527while (@argvcopy)
16b6081e 528 {
0de5e4f0 529 $_ = shift @argvcopy;
7c55e22c
RL
530 # VMS is a case insensitive environment, and depending on settings
531 # out of our control, we may receive options uppercased. Let's
532 # downcase at least the part before any equal sign.
533 if ($^O eq "VMS")
534 {
535 s/^([^=]*)/lc($1)/e;
536 }
fe05264e 537 s /^-no-/no-/; # some people just can't read the instructions
c9a112f5 538
fe05264e
RL
539 # rewrite some options in "enable-..." form
540 s /^-?-?shared$/enable-shared/;
541 s /^sctp$/enable-sctp/;
542 s /^threads$/enable-threads/;
543 s /^zlib$/enable-zlib/;
544 s /^zlib-dynamic$/enable-zlib-dynamic/;
c9a112f5 545
e4ef2e25 546 if (/^(no|disable|enable)-(.+)$/)
2b1343b9
MC
547 {
548 my $word = $2;
549 if (!exists $deprecated_disablables{$word}
550 && !grep { $word =~ /^${_}$/ } @disablables)
551 {
552 $unsupported_options{$_} = 1;
553 next;
554 }
555 }
556 if (/^no-(.+)$/ || /^disable-(.+)$/)
557 {
e4ef2e25
RS
558 foreach my $proto ((@tls, @dtls))
559 {
560 if ($1 eq "$proto-method")
561 {
562 $disabled{"$proto"} = "option($proto-method)";
563 last;
564 }
565 }
566 if ($1 eq "dtls")
567 {
568 foreach my $proto (@dtls)
569 {
570 $disabled{$proto} = "option(dtls)";
571 }
c5c7700c 572 $disabled{"dtls"} = "option(dtls)";
e4ef2e25
RS
573 }
574 elsif ($1 eq "ssl")
575 {
576 # Last one of its kind
577 $disabled{"ssl3"} = "option(ssl)";
578 }
579 elsif ($1 eq "tls")
580 {
581 # XXX: Tests will fail if all SSL/TLS
582 # protocols are disabled.
583 foreach my $proto (@tls)
584 {
585 $disabled{$proto} = "option(tls)";
586 }
587 }
343ec2b0
RL
588 elsif ($1 eq "static-engine")
589 {
19ab5790 590 delete $disabled{"dynamic-engine"};
343ec2b0
RL
591 }
592 elsif ($1 eq "dynamic-engine")
593 {
19ab5790 594 $disabled{"dynamic-engine"} = "option";
343ec2b0 595 }
2b1343b9
MC
596 elsif (exists $deprecated_disablables{$1})
597 {
598 $deprecated_options{$_} = 1;
599 if (defined $deprecated_disablables{$1})
600 {
601 $disabled{$deprecated_disablables{$1}} = "option";
602 }
603 }
e4ef2e25
RS
604 else
605 {
606 $disabled{$1} = "option";
607 }
9c62a279
RL
608 # No longer an automatic choice
609 $auto_threads = 0 if ($1 eq "threads");
fe05264e 610 }
e4ef2e25 611 elsif (/^enable-(.+)$/)
fe05264e 612 {
343ec2b0
RL
613 if ($1 eq "static-engine")
614 {
19ab5790 615 $disabled{"dynamic-engine"} = "option";
343ec2b0
RL
616 }
617 elsif ($1 eq "dynamic-engine")
618 {
19ab5790 619 delete $disabled{"dynamic-engine"};
343ec2b0 620 }
25004db7
RL
621 elsif ($1 eq "zlib-dynamic")
622 {
623 delete $disabled{"zlib"};
624 }
fe05264e 625 my $algo = $1;
fe05264e 626 delete $disabled{$algo};
c9a112f5 627
9c62a279
RL
628 # No longer an automatic choice
629 $auto_threads = 0 if ($1 eq "threads");
fe05264e
RL
630 }
631 elsif (/^--strict-warnings$/)
632 {
633 $strict_warnings = 1;
634 }
635 elsif (/^--debug$/)
636 {
8864f0de 637 $config{build_type} = "debug";
fe05264e
RL
638 }
639 elsif (/^--release$/)
640 {
8864f0de 641 $config{build_type} = "release";
fe05264e
RL
642 }
643 elsif (/^386$/)
7d130f68 644 { $config{processor}=386; }
fe05264e
RL
645 elsif (/^fips$/)
646 {
107b5792 647 $config{fips}=1;
fe05264e
RL
648 }
649 elsif (/^rsaref$/)
650 {
651 # No RSAref support any more since it's not needed.
652 # The check for the option is there so scripts aren't
653 # broken
654 }
655 elsif (/^nofipscanistercheck$/)
656 {
107b5792 657 $config{fips} = 1;
fe05264e
RL
658 $nofipscanistercheck = 1;
659 }
660 elsif (/^[-+]/)
661 {
45c6e23c 662 if (/^--prefix=(.*)$/)
fe05264e 663 {
291e94df 664 $config{prefix}=$1;
5482dac9
RL
665 die "Directory given with --prefix MUST be absolute\n"
666 unless file_name_is_absolute($config{prefix});
c9a112f5 667 }
fe05264e 668 elsif (/^--api=(.*)$/)
0c28f277 669 {
107b5792 670 $config{api}=$1;
0c28f277 671 }
fe05264e 672 elsif (/^--libdir=(.*)$/)
9e43c6b5 673 {
107b5792 674 $config{libdir}=$1;
9e43c6b5 675 }
fe05264e 676 elsif (/^--openssldir=(.*)$/)
9e43c6b5 677 {
291e94df 678 $config{openssldir}=$1;
9e43c6b5 679 }
fe05264e 680 elsif (/^--with-zlib-lib=(.*)$/)
9fdb2cc5 681 {
20a5819f 682 $withargs{zlib_lib}=$1;
7d8bb912 683 }
fe05264e 684 elsif (/^--with-zlib-include=(.*)$/)
3eb0ed6d 685 {
da430a55 686 $withargs{zlib_include}=$1;
462ba4f6 687 }
f59d0131
KR
688 elsif (/^--with-fuzzer-lib=(.*)$/)
689 {
690 $withargs{fuzzer_lib}=$1;
691 }
692 elsif (/^--with-fuzzer-include=(.*)$/)
693 {
694 $withargs{fuzzer_include}=$1;
695 }
fe05264e 696 elsif (/^--with-fipslibdir=(.*)$/)
1ab2f7f1 697 {
107b5792 698 $config{fipslibdir}="$1/";
1ab2f7f1 699 }
fe05264e 700 elsif (/^--with-baseaddr=(.*)$/)
462ba4f6 701 {
107b5792 702 $config{baseaddr}="$1";
3eb0ed6d 703 }
fe05264e 704 elsif (/^--cross-compile-prefix=(.*)$/)
e5f3045f 705 {
642a6138 706 $config{cross_compile_prefix}=$1;
e5f3045f 707 }
fe05264e 708 elsif (/^--config=(.*)$/)
d02b48c6 709 {
fe05264e 710 read_config $1;
c59cb511 711 }
fe05264e 712 elsif (/^-[lL](.*)$/ or /^-Wl,/)
c9a112f5 713 {
fe05264e 714 $libs.=$_." ";
d02b48c6 715 }
0de5e4f0
RL
716 elsif (/^-rpath$/ or /^-R$/)
717 # -rpath is the OSF1 rpath flag
718 # -R is the old Solaris rpath flag
719 {
720 my $rpath = shift(@argvcopy) || "";
721 $rpath .= " " if $rpath ne "";
722 $libs.=$_." ".$rpath;
723 }
9d46752d
AP
724 elsif (/^-static$/)
725 {
726 $libs.=$_." ";
f757ce2a 727 $disabled{"dso"} = "forced";
9d46752d
AP
728 $disabled{"pic"} = "forced";
729 $disabled{"shared"} = "forced";
730 $disabled{"threads"} = "forced";
731 }
bcb1977b
RL
732 elsif (/^-D(.*)$/)
733 {
734 push @user_defines, $1;
735 }
fe05264e
RL
736 else # common if (/^[-+]/), just pass down...
737 {
738 $_ =~ s/%([0-9a-f]{1,2})/chr(hex($1))/gei;
2b91ec75 739 $user_cflags.=" ".$_;
fe05264e
RL
740 }
741 }
fe05264e
RL
742 else
743 {
744 die "target already defined - $target (offending arg: $_)\n" if ($target ne "");
745 $target=$_;
746 }
747 unless ($_ eq $target || /^no-/ || /^disable-/)
748 {
749 # "no-..." follows later after implied disactivations
8483a003 750 # have been derived. (Don't take this too seriously,
fe05264e
RL
751 # we really only write OPTIONS to the Makefile out of
752 # nostalgia.)
753
3fa04f0d
RL
754 if ($config{options} eq "")
755 { $config{options} = $_; }
fe05264e 756 else
3fa04f0d 757 { $config{options} .= " ".$_; }
fbabb752 758 }
489eb740 759
107b5792
RL
760 if (defined($config{api}) && !exists $apitable->{$config{api}}) {
761 die "***** Unsupported api compatibility level: $config{api}\n",
98186eb4
VD
762 }
763
e80381e1
RL
764 if (keys %deprecated_options)
765 {
766 warn "***** Deprecated options: ",
767 join(", ", keys %deprecated_options), "\n";
768 }
489eb740
RL
769 if (keys %unsupported_options)
770 {
771 die "***** Unsupported options: ",
772 join(", ", keys %unsupported_options), "\n";
773 }
fbabb752 774 }
b6e4dac2 775
c3cfc996
RL
776if ($libs =~ /(^|\s)-Wl,-rpath,/
777 && !$disabled{shared}
778 && !($disabled{asan} && $disabled{msan} && $disabled{ubsan})) {
779 die "***** Cannot simultaneously use -rpath, shared libraries, and\n",
780 "***** any of asan, msan or ubsan\n";
781}
782
107b5792 783if ($config{fips})
a7a14a23 784 {
c569e206 785 delete $disabled{"shared"} if ($disabled{"shared"} =~ /^default/);
6b01bed2 786 }
107b5792
RL
787else
788 {
789 @{$config{dirs}} = grep !/^fips$/, @{$config{dirs}};
790 }
c9a112f5 791
c569e206
RL
792my @tocheckfor = (keys %disabled);
793while (@tocheckfor) {
794 my %new_tocheckfor = ();
795 my @cascade_copy = (@disable_cascades);
796 while (@cascade_copy) {
797 my ($test, $descendents) = (shift @cascade_copy, shift @cascade_copy);
798 if (ref($test) eq "CODE" ? $test->() : defined($disabled{$test})) {
2110febb 799 foreach(grep { !defined($disabled{$_}) } @$descendents) {
01d99976 800 $new_tocheckfor{$_} = 1; $disabled{$_} = "forced";
2110febb 801 }
ef236ec3 802 }
c569e206
RL
803 }
804 @tocheckfor = (keys %new_tocheckfor);
805}
edc032b5 806
3c8be9c3 807our $die = sub { die @_; };
436a376b 808if ($target eq "TABLE") {
3c8be9c3 809 local $die = sub { warn @_; };
00ae96ca
RL
810 foreach (sort keys %table) {
811 print_table_entry($_, "TABLE");
812 }
813 exit 0;
436a376b
BM
814}
815
10a926c1 816if ($target eq "LIST") {
00ae96ca
RL
817 foreach (sort keys %table) {
818 print $_,"\n" unless $table{$_}->{template};
819 }
820 exit 0;
10a926c1
UM
821}
822
aaf878cc 823if ($target eq "HASH") {
3c8be9c3 824 local $die = sub { warn @_; };
00ae96ca
RL
825 print "%table = (\n";
826 foreach (sort keys %table) {
827 print_table_entry($_, "HASH");
828 }
829 exit 0;
aaf878cc
RL
830}
831
00ae96ca 832# Backward compatibility?
49e04548 833if ($target =~ m/^CygWin32(-.*)$/) {
00ae96ca 834 $target = "Cygwin".$1;
49e04548
RL
835}
836
c9a112f5
BM
837foreach (sort (keys %disabled))
838 {
3fa04f0d 839 $config{options} .= " no-$_";
c9a112f5
BM
840
841 printf " no-%-12s %-10s", $_, "[$disabled{$_}]";
842
843 if (/^dso$/)
721f9058 844 { }
c9a112f5 845 elsif (/^threads$/)
22bfe05e 846 { }
c9a112f5 847 elsif (/^shared$/)
84af1bae 848 { }
ae48242c
RL
849 elsif (/^pic$/)
850 { }
c9a112f5 851 elsif (/^zlib$/)
36a30909 852 { }
19ab5790 853 elsif (/^dynamic-engine$/)
fbf002bb 854 { }
09aa263a
RL
855 elsif (/^makedepend$/)
856 { }
c9a112f5
BM
857 elsif (/^zlib-dynamic$/)
858 { }
c9a112f5 859 elsif (/^sse2$/)
425df74a 860 { }
107b5792 861 elsif (/^engine$/)
1288f26f
RS
862 {
863 @{$config{dirs}} = grep !/^engines$/, @{$config{dirs}};
864 @{$config{sdirs}} = grep !/^engine$/, @{$config{sdirs}};
865 push @{$config{openssl_other_defines}}, "OPENSSL_NO_ENGINE";
79e5eae6 866 print " OPENSSL_NO_ENGINE (skip engines)";
1288f26f 867 }
c9a112f5
BM
868 else
869 {
79e5eae6 870 my ($WHAT, $what);
c9a112f5 871
79e5eae6
RL
872 ($WHAT = $what = $_) =~ tr/[\-a-z]/[_A-Z]/;
873
874 # Fix up C macro end names
875 $WHAT = "RMD160" if $what eq "ripemd";
876
877 # fix-up crypto/directory name(s)
878 $what = "ripemd" if $what eq "rmd160";
879 $what = "whrlpool" if $what eq "whirlpool";
880
11bb654c
RL
881 if ($what ne "async" && $what ne "err"
882 && grep { $_ eq $what } @{$config{sdirs}})
c9a112f5 883 {
79e5eae6
RL
884 push @{$config{openssl_algorithm_defines}}, "OPENSSL_NO_$WHAT";
885 @{$config{sdirs}} = grep { $_ ne $what} @{$config{sdirs}};
fce0ba5f 886
79e5eae6 887 print " OPENSSL_NO_$WHAT (skip dir)";
c9a112f5
BM
888 }
889 else
890 {
79e5eae6
RL
891 push @{$config{openssl_other_defines}}, "OPENSSL_NO_$WHAT";
892 print " OPENSSL_NO_$WHAT";
c9a112f5
BM
893 }
894 }
895
896 print "\n";
897 }
898
9e0724a1
RL
899print "Configuring for $target\n";
900
901# Support for legacy targets having a name starting with 'debug-'
902my ($d, $t) = $target =~ m/^(debug-)?(.*)$/;
903if ($d) {
8864f0de 904 $config{build_type} = "debug";
9e0724a1
RL
905
906 # If we do not find debug-foo in the table, the target is set to foo.
907 if (!$table{$target}) {
908 $target = $t;
909 }
910}
291e94df 911$config{target} = $target;
79302211 912my %target = resolve_config($target);
9e0724a1
RL
913
914&usage if (!%target || $target{template});
915
efd23794
RL
916my %conf_files = map { $_ => 1 } (@{$target{_conf_fname_int}});
917$config{conf_files} = [ sort keys %conf_files ];
d2b2221a 918%target = ( %{$table{DEFAULTS}}, %target );
79302211 919
107b5792 920$target{exe_extension}="";
f99f91f1
RL
921$target{exe_extension}=".exe" if ($config{target} eq "DJGPP"
922 || $config{target} =~ /^(?:Cygwin|mingw)/);
107b5792 923$target{exe_extension}=".pm" if ($config{target} =~ /vos/);
462ba4f6 924
e987f9f2
RL
925($target{shared_extension_simple}=$target{shared_extension})
926 =~ s|\.\$\(SHLIB_MAJOR\)\.\$\(SHLIB_MINOR\)||;
927$target{dso_extension}=$target{shared_extension_simple};
928($target{shared_import_extension}=$target{shared_extension_simple}.".a")
929 if ($config{target} =~ /^(?:Cygwin|mingw)/);
930
931
642a6138
RL
932$config{cross_compile_prefix} = $ENV{'CROSS_COMPILE'}
933 if $config{cross_compile_prefix} eq "";
f99f41cf 934
b0a1e8bf 935# Allow overriding the names of some tools. USE WITH CARE
d513369b
RL
936# Note: only Unix cares about HASHBANGPERL... that explains
937# the default string.
5902821d 938$config{perl} = $ENV{'PERL'} || ($^O ne "VMS" ? $^X : "perl");
d513369b
RL
939$config{hashbangperl} =
940 $ENV{'HASHBANGPERL'} || $ENV{'PERL'} || "/usr/bin/env perl";
b0a1e8bf 941$target{cc} = $ENV{'CC'} || $target{cc} || "cc";
f58a0acb 942$target{ranlib} = $ENV{'RANLIB'} || $target{ranlib} ||
656bbdc6 943 (which("$config{cross_compile_prefix}ranlib") ?
f58a0acb 944 "\$(CROSS_COMPILE)ranlib" : "true");
b0a1e8bf
RL
945$target{ar} = $ENV{'AR'} || $target{ar} || "ar";
946$target{nm} = $ENV{'NM'} || $target{nm} || "nm";
8f41ff2d
RL
947$target{rc} =
948 $ENV{'RC'} || $ENV{'WINDRES'} || $target{rc} || "windres";
aaf878cc 949
b7fa463f
RL
950# Allow overriding the build file name
951$target{build_file} = $ENV{BUILDFILE} || $target{build_file} || "Makefile";
952
953# Cache information necessary for reconfiguration
a66234bc 954$config{cc} = $target{cc};
b7fa463f 955$config{build_file} = $target{build_file};
a66234bc 956
bcb1977b
RL
957# For cflags, lflags, plib_lflags, ex_libs and defines, add the debug_
958# or release_ attributes.
aaf878cc 959# Do it in such a way that no spurious space is appended (hence the grep).
2952b9b8
RL
960$config{defines} = [];
961$config{cflags} = "";
962$config{ex_libs} = "";
963$config{shared_ldflag} = "";
bd5192b1 964
291e94df
RL
965# Make sure build_scheme is consistent.
966$target{build_scheme} = [ $target{build_scheme} ]
967 if ref($target{build_scheme}) ne "ARRAY";
968
ddf1847d
RL
969my ($builder, $builder_platform, @builder_opts) =
970 @{$target{build_scheme}};
971
a40b5be2
RL
972foreach my $checker (($builder_platform."-".$target{build_file}."-checker.pm",
973 $builder_platform."-checker.pm")) {
974 my $checker_path = catfile($srcdir, "Configurations", $checker);
975 if (-f $checker_path) {
976 my $fn = $ENV{CONFIGURE_CHECKER_WARN}
977 ? sub { warn $@; } : sub { die $@; };
978 if (! do $checker_path) {
979 if ($@) {
980 $fn->($@);
981 } elsif ($!) {
982 $fn->($!);
983 } else {
984 $fn->("The detected tools didn't match the platform\n");
985 }
986 }
987 last;
988 }
989}
990
488e2b0f
RL
991push @{$config{defines}}, "NDEBUG" if $config{build_type} eq "release";
992
68ab559a 993if ($target =~ /^mingw/ && `$target{cc} --target-help 2>&1` =~ m/-mno-cygwin/m)
cbecd29a 994 {
68ab559a 995 $config{cflags} .= " -mno-cygwin";
2952b9b8 996 $config{shared_ldflag} .= " -mno-cygwin";
cbecd29a
AP
997 }
998
00b0d663 999if ($target =~ /linux.*-mips/ && !$disabled{asm} && $user_cflags !~ /-m(ips|arch=)/) {
63d8834c 1000 # minimally required architecture flags for assembly modules
107b5792
RL
1001 $config{cflags}="-mips2 $config{cflags}" if ($target =~ /mips32/);
1002 $config{cflags}="-mips3 $config{cflags}" if ($target =~ /mips64/);
63d8834c
AP
1003}
1004
2964ba8c 1005my $no_shared_warn=0;
14bcdb08 1006my $no_user_cflags=0;
bcb1977b 1007my $no_user_defines=0;
2964ba8c 1008
bc2aadad
GT
1009# The DSO code currently always implements all functions so that no
1010# applications will have to worry about that from a compilation point
1011# of view. However, the "method"s may return zero unless that platform
1012# has support compiled in for them. Currently each method is enabled
1013# by a define "DSO_<name>" ... we translate the "dso_scheme" config
1014# string entry into using the following logic;
721f9058 1015if (!$disabled{dso} && $target{dso_scheme} ne "")
bc2aadad 1016 {
291e94df
RL
1017 $target{dso_scheme} =~ tr/[a-z]/[A-Z]/;
1018 if ($target{dso_scheme} eq "DLFCN")
bc2aadad 1019 {
2952b9b8 1020 unshift @{$config{defines}}, "DSO_DLFCN", "HAVE_DLFCN_H";
bc2aadad 1021 }
291e94df 1022 elsif ($target{dso_scheme} eq "DLFCN_NO_H")
bc2aadad 1023 {
2952b9b8 1024 unshift @{$config{defines}}, "DSO_DLFCN";
bc2aadad
GT
1025 }
1026 else
1027 {
2952b9b8 1028 unshift @{$config{defines}}, "DSO_$target{dso_scheme}";
bc2aadad
GT
1029 }
1030 }
9ec0126e 1031
1740c162 1032$config{ex_libs}="$libs$config{ex_libs}" if ($libs ne "");
d02b48c6 1033
00b0d663 1034if ($disabled{asm})
dfeab068 1035 {
2952b9b8
RL
1036 if ($config{fips})
1037 {
1038 @{$config{defines}} = grep !/^[BL]_ENDIAN$/, @{$config{defines}};
1039 @{$target{defines}} = grep !/^[BL]_ENDIAN$/, @{$target{defines}};
1040 }
dfeab068 1041 }
6f7ac8e1 1042
9c62a279
RL
1043# If threads aren't disabled, check how possible they are
1044unless ($disabled{threads}) {
1045 if ($auto_threads) {
1046 # Enabled by default, disable it forcibly if unavailable
1047 if ($target{thread_scheme} eq "(unknown)") {
1048 $disabled{threads} = "unavailable";
1049 }
1050 } else {
8483a003 1051 # The user chose to enable threads explicitly, let's see
9c62a279
RL
1052 # if there's a chance that's possible
1053 if ($target{thread_scheme} eq "(unknown)") {
1054 # If the user asked for "threads" and we don't have internal
1055 # knowledge how to do it, [s]he is expected to provide any
1056 # system-dependent compiler options that are necessary. We
1057 # can't truly check that the given options are correct, but
1058 # we expect the user to know what [s]He is doing.
1059 if ($no_user_cflags && $no_user_defines) {
1060 die "You asked for multi-threading support, but didn't\n"
1061 ,"provide any system-specific compiler options\n";
1062 }
1063 }
1064 }
1065}
1066
1067# If threads still aren't disabled, add a C macro to ensure the source
1068# code knows about it. Any other flag is taken care of by the configs.
1069unless($disabled{threads}) {
1070 foreach (("defines", "openssl_thread_defines")) {
1071 push @{$config{$_}}, "OPENSSL_THREADS";
1072 }
1073}
e452de9d 1074
98186eb4
VD
1075# With "deprecated" disable all deprecated features.
1076if (defined($disabled{"deprecated"})) {
107b5792 1077 $config{api} = $maxapi;
98186eb4 1078}
07c4c14c 1079
291e94df 1080if ($target{shared_target} eq "")
6f7ac8e1 1081 {
ae48242c 1082 $no_shared_warn = 1
84af1bae 1083 if ((!$disabled{shared} || !$disabled{"dynamic-engine"})
ae48242c 1084 && !$config{fips});
84af1bae 1085 $disabled{shared} = "no-shared-target";
ae48242c
RL
1086 $disabled{pic} = $disabled{shared} = $disabled{"dynamic-engine"} =
1087 "no-shared-target";
6f7ac8e1 1088 }
b436a982 1089
19ab5790 1090if ($disabled{"dynamic-engine"}) {
343ec2b0
RL
1091 push @{$config{defines}}, "OPENSSL_NO_DYNAMIC_ENGINE";
1092 $config{dynamic_engines} = 0;
19ab5790
RL
1093} else {
1094 push @{$config{defines}}, "OPENSSL_NO_STATIC_ENGINE";
1095 $config{dynamic_engines} = 1;
343ec2b0 1096}
ecd45314 1097
f59d0131 1098unless ($disabled{"fuzz-libfuzzer"}) {
c38bb727
BL
1099 $config{cflags} .= "-fsanitize-coverage=edge,indirect-calls ";
1100}
1101
1102unless ($disabled{asan}) {
1103 $config{cflags} .= "-fsanitize=address ";
1104}
1105
1106unless ($disabled{ubsan}) {
f430ba31 1107 # -DPEDANTIC or -fnosanitize=alignment may also be required on some
c38bb727
BL
1108 # platforms.
1109 $config{cflags} .= "-fsanitize=undefined -fno-sanitize-recover=all ";
1110}
1111
29df3061
EK
1112unless ($disabled{msan}) {
1113 $config{cflags} .= "-fsanitize=memory ";
1114}
1115
65cc6d5c 1116unless ($disabled{"fuzz-libfuzzer"} && $disabled{"fuzz-afl"}
29df3061 1117 && $disabled{asan} && $disabled{ubsan} && $disabled{msan}) {
c38bb727
BL
1118 $config{cflags} .= "-fno-omit-frame-pointer -g ";
1119}
c313e32a
AP
1120#
1121# Platform fix-ups
1122#
ae48242c
RL
1123
1124# This saves the build files from having to check
1125if ($disabled{pic})
1126 {
1127 $target{shared_cflag} = $target{shared_ldflag} =
1128 $target{shared_rcflag} = "";
1129 }
4f16039e
RL
1130else
1131 {
1132 push @{$config{defines}}, "OPENSSL_PIC";
1133 }
ae48242c 1134
291e94df 1135if ($target{sys_id} ne "")
cf1b7d96 1136 {
642a6138 1137 push @{$config{openssl_sys_defines}}, "OPENSSL_SYS_$target{sys_id}";
cf1b7d96
RL
1138 }
1139
00b0d663 1140unless ($disabled{asm}) {
d2b2221a 1141 $target{cpuid_asm_src}=$table{DEFAULTS}->{cpuid_asm_src} if ($config{processor} eq "386");
9fe2bb77 1142 $target{bn_asm_src} =~ s/\w+-gf2m.c// if (defined($disabled{ec2m}));
f8c469de 1143
9e0724a1 1144 # bn-586 is the only one implementing bn_*_part_words
bcb1977b 1145 push @{$config{defines}}, "OPENSSL_BN_ASM_PART_WORDS" if ($target{bn_asm_src} =~ /bn-586/);
425df74a 1146 push @{$config{defines}}, "OPENSSL_IA32_SSE2" if (!$disabled{sse2} && $target{bn_asm_src} =~ /86/);
dfeab068 1147
bcb1977b
RL
1148 push @{$config{defines}}, "OPENSSL_BN_ASM_MONT" if ($target{bn_asm_src} =~ /-mont/);
1149 push @{$config{defines}}, "OPENSSL_BN_ASM_MONT5" if ($target{bn_asm_src} =~ /-mont5/);
1150 push @{$config{defines}}, "OPENSSL_BN_ASM_GF2m" if ($target{bn_asm_src} =~ /-gf2m/);
5ac7bde7 1151
107b5792 1152 if ($config{fips}) {
7d130f68 1153 push @{$config{openssl_other_defines}}, "OPENSSL_FIPS";
9e0724a1 1154 }
1ab2f7f1 1155
9fe2bb77 1156 if ($target{sha1_asm_src}) {
bcb1977b
RL
1157 push @{$config{defines}}, "SHA1_ASM" if ($target{sha1_asm_src} =~ /sx86/ || $target{sha1_asm_src} =~ /sha1/);
1158 push @{$config{defines}}, "SHA256_ASM" if ($target{sha1_asm_src} =~ /sha256/);
1159 push @{$config{defines}}, "SHA512_ASM" if ($target{sha1_asm_src} =~ /sha512/);
9e0724a1 1160 }
7f8d9b75
RL
1161 if ($target{rc4_asm_src} ne $table{DEFAULTS}->{rc4_asm_src}) {
1162 push @{$config{defines}}, "RC4_ASM";
1163 }
9fe2bb77 1164 if ($target{md5_asm_src}) {
bcb1977b 1165 push @{$config{defines}}, "MD5_ASM";
9e0724a1 1166 }
d2b2221a 1167 $target{cast_asm_src}=$table{DEFAULTS}->{cast_asm_src} unless $disabled{pic}; # CAST assembler is not PIC
9fe2bb77 1168 if ($target{rmd160_asm_src}) {
bcb1977b 1169 push @{$config{defines}}, "RMD160_ASM";
9e0724a1 1170 }
9fe2bb77 1171 if ($target{aes_asm_src}) {
bcb1977b 1172 push @{$config{defines}}, "AES_ASM" if ($target{aes_asm_src} =~ m/\baes-/);;
9fe2bb77 1173 # aes-ctr.fake is not a real file, only indication that assembler
874a3757 1174 # module implements AES_ctr32_encrypt...
bcb1977b 1175 push @{$config{defines}}, "AES_CTR_ASM" if ($target{aes_asm_src} =~ s/\s*aes-ctr\.fake//);
9fe2bb77 1176 # aes-xts.fake indicates presence of AES_xts_[en|de]crypt...
bcb1977b 1177 push @{$config{defines}}, "AES_XTS_ASM" if ($target{aes_asm_src} =~ s/\s*aes-xts\.fake//);
425df74a 1178 $target{aes_asm_src} =~ s/\s*(vpaes|aesni)-x86\.s//g if ($disabled{sse2});
bcb1977b
RL
1179 push @{$config{defines}}, "VPAES_ASM" if ($target{aes_asm_src} =~ m/vpaes/);
1180 push @{$config{defines}}, "BSAES_ASM" if ($target{aes_asm_src} =~ m/bsaes/);
9e0724a1 1181 }
9fe2bb77 1182 if ($target{wp_asm_src} =~ /mmx/) {
46d4d865 1183 if ($config{processor} eq "386") {
d2b2221a 1184 $target{wp_asm_src}=$table{DEFAULTS}->{wp_asm_src};
46d4d865 1185 } elsif (!$disabled{"whirlpool"}) {
2952b9b8 1186 push @{$config{defines}}, "WHIRLPOOL_ASM";
46d4d865 1187 }
9e0724a1 1188 }
9fe2bb77 1189 if ($target{modes_asm_src} =~ /ghash-/) {
bcb1977b 1190 push @{$config{defines}}, "GHASH_ASM";
9e0724a1 1191 }
9fe2bb77 1192 if ($target{ec_asm_src} =~ /ecp_nistz256/) {
bcb1977b 1193 push @{$config{defines}}, "ECP_NISTZ256_ASM";
9e0724a1 1194 }
5be6f718
RL
1195 if ($target{padlock_asm_src} ne $table{DEFAULTS}->{padlock_asm_src}) {
1196 push @{$config{defines}}, "PADLOCK_ASM";
1197 }
9fe2bb77 1198 if ($target{poly1305_asm_src} ne "") {
bcb1977b 1199 push @{$config{defines}}, "POLY1305_ASM";
9e0724a1
RL
1200 }
1201}
d02b48c6 1202
3daecf16
AP
1203my %predefined;
1204
1205if ($^O ne "VMS") {
1206 my $cc = "$config{cross_compile_prefix}$target{cc}";
1207
1208 # collect compiler pre-defines from gcc or gcc-alike...
1209 open(PIPE, "$cc -dM -E -x c /dev/null 2>&1 |");
1210 while (<PIPE>) {
1211 m/^#define\s+(\w+(?:\(\w+\))?)(?:\s+(.+))?/ or last;
1212 $predefined{$1} = $2 // "";
a583fc45
RL
1213 }
1214 close(PIPE);
09aa263a 1215
3daecf16
AP
1216 if (!$disabled{makedepend}) {
1217 # We know that GNU C version 3 and up as well as all clang
1218 # versions support dependency generation
1219 if ($predefined{__GNUC__} >= 3) {
1220 $config{makedepprog} = $cc;
1221 } else {
1222 $config{makedepprog} = which('makedepend');
1223 $disabled{makedepend} = "unavailable" unless $config{makedepprog};
1224 }
1225 }
f1f07a23 1226}
8ed40b83 1227
7d130f68 1228
09aa263a 1229
7d130f68
RL
1230# Deal with bn_ops ###################################################
1231
7d130f68 1232$config{bn_ll} =0;
7d130f68
RL
1233$config{export_var_as_fn} =0;
1234my $def_int="unsigned int";
1235$config{rc4_int} =$def_int;
b4f35e5e 1236($config{b64l},$config{b64},$config{b32})=(0,0,1);
7d130f68 1237
94af0cd7 1238my $count = 0;
7d130f68 1239foreach (sort split(/\s+/,$target{bn_ops})) {
94af0cd7
RS
1240 $count++ if /SIXTY_FOUR_BIT|SIXTY_FOUR_BIT_LONG|THIRTY_TWO_BIT/;
1241 $config{export_var_as_fn}=1 if $_ eq 'EXPORT_VAR_AS_FN';
1242 $config{bn_ll}=1 if $_ eq 'BN_LLONG';
1243 $config{rc4_int}="unsigned char" if $_ eq 'RC4_CHAR';
1244 ($config{b64l},$config{b64},$config{b32})
1245 =(0,1,0) if $_ eq 'SIXTY_FOUR_BIT';
1246 ($config{b64l},$config{b64},$config{b32})
1247 =(1,0,0) if $_ eq 'SIXTY_FOUR_BIT_LONG';
1248 ($config{b64l},$config{b64},$config{b32})
1249 =(0,0,1) if $_ eq 'THIRTY_TWO_BIT';
7d130f68 1250}
94af0cd7
RS
1251die "Exactly one of SIXTY_FOUR_BIT|SIXTY_FOUR_BIT_LONG|THIRTY_TWO_BIT can be set in bn_ops\n"
1252 if $count > 1;
7d130f68
RL
1253
1254
1255# Hack cflags for better warnings (dev option) #######################
1256
1ed0c662
RL
1257# "Stringify" the C flags string. This permits it to be made part of a string
1258# and works as well on command lines.
01d99976 1259$config{cflags} =~ s/([\\\"])/\\$1/g;
b436a982 1260
107b5792
RL
1261if (defined($config{api})) {
1262 $config{openssl_api_defines} = [ "OPENSSL_MIN_API=".$apitable->{$config{api}} ];
bcb1977b 1263 my $apiflag = sprintf("OPENSSL_API_COMPAT=%s", $apitable->{$config{api}});
bcb1977b 1264 push @{$config{defines}}, $apiflag;
98186eb4
VD
1265}
1266
0c28f277
DSH
1267if ($strict_warnings)
1268 {
1269 my $wopt;
3daecf16
AP
1270 die "ERROR --strict-warnings requires gcc or gcc-alike"
1271 unless defined($predefined{__GNUC__});
0c28f277
DSH
1272 foreach $wopt (split /\s+/, $gcc_devteam_warn)
1273 {
d918f9cb 1274 $config{cflags} .= " $wopt" unless ($config{cflags} =~ /(?:^|\s)$wopt(?:\s|$)/)
0c28f277 1275 }
3daecf16 1276 if (defined($predefined{__clang__}))
190c8c60
BL
1277 {
1278 foreach $wopt (split /\s+/, $clang_devteam_warn)
1279 {
d918f9cb 1280 $config{cflags} .= " $wopt" unless ($config{cflags} =~ /(?:^|\s)$wopt(?:\s|$)/)
190c8c60
BL
1281 }
1282 }
ef8ca6bd
RL
1283 }
1284
1285unless ($disabled{"crypto-mdebug-backtrace"})
1286 {
1287 foreach my $wopt (split /\s+/, $memleak_devteam_backtrace)
a1d3f3d1 1288 {
d918f9cb 1289 $config{cflags} .= " $wopt" unless ($config{cflags} =~ /(?:^|\s)$wopt(?:\s|$)/)
ef8ca6bd
RL
1290 }
1291 if ($target =~ /^BSD-/)
1292 {
1293 $config{ex_libs} .= " -lexecinfo";
291e94df 1294 }
0c28f277
DSH
1295 }
1296
63994098
RL
1297if ($user_cflags ne "") { $config{cflags}="$config{cflags}$user_cflags"; }
1298else { $no_user_cflags=1; }
1299if (@user_defines) { $config{defines}=[ @{$config{defines}}, @user_defines ]; }
1300else { $no_user_defines=1; }
1301
1302# ALL MODIFICATIONS TO %config and %target MUST BE DONE FROM HERE ON
1303
c91a0a83
EK
1304unless ($disabled{afalgeng}) {
1305 $config{afalgeng}="";
79fff39d
RL
1306 if ($target =~ m/^linux/) {
1307 my $minver = 4*10000 + 1*100 + 0;
1308 if ($config{cross_compile_prefix} eq "") {
1309 my $verstr = `uname -r`;
1310 my ($ma, $mi1, $mi2) = split("\\.", $verstr);
1311 ($mi2) = $mi2 =~ /(\d+)/;
1312 my $ver = $ma*10000 + $mi1*100 + $mi2;
1313 if ($ver < $minver) {
c91a0a83 1314 $disabled{afalgeng} = "too-old-kernel";
79fff39d
RL
1315 } else {
1316 push @{$config{engdirs}}, "afalg";
1317 }
68dc37c1
MC
1318 } else {
1319 $disabled{afalgeng} = "cross-compiling";
6cba4a66 1320 }
79fff39d 1321 } else {
c91a0a83 1322 $disabled{afalgeng} = "not-linux";
7f458a48 1323 }
1324}
8da00a38 1325
c91a0a83 1326push @{$config{openssl_other_defines}}, "OPENSSL_NO_AFALGENG" if ($disabled{afalgeng});
7f458a48 1327
9fe2bb77
RL
1328# If we use the unified build, collect information from build.info files
1329my %unified_info = ();
1330
2b6b606c 1331my $buildinfo_debug = defined($ENV{CONFIGURE_DEBUG_BUILDINFO});
ddf1847d 1332if ($builder eq "unified") {
9fe2bb77
RL
1333 use with_fallback qw(Text::Template);
1334
9fe2bb77 1335 sub cleandir {
2e963849 1336 my $base = shift;
9fe2bb77 1337 my $dir = shift;
2e963849
RL
1338 my $relativeto = shift || ".";
1339
1340 $dir = catdir($base,$dir) unless isabsolute($dir);
9fe2bb77 1341
ec182ef0
RL
1342 # Make sure the directories we're building in exists
1343 mkpath($dir);
1344
2e963849 1345 my $res = abs2rel(absolutedir($dir), rel2abs($relativeto));
9fe2bb77
RL
1346 #print STDERR "DEBUG[cleandir]: $dir , $base => $res\n";
1347 return $res;
1348 }
1349
1350 sub cleanfile {
2e963849 1351 my $base = shift;
9fe2bb77 1352 my $file = shift;
2e963849
RL
1353 my $relativeto = shift || ".";
1354
1355 $file = catfile($base,$file) unless isabsolute($file);
1356
9fe2bb77
RL
1357 my $d = dirname($file);
1358 my $f = basename($file);
1359
ec182ef0
RL
1360 # Make sure the directories we're building in exists
1361 mkpath($d);
1362
2e963849 1363 my $res = abs2rel(catfile(absolutedir($d), $f), rel2abs($relativeto));
9fe2bb77
RL
1364 #print STDERR "DEBUG[cleanfile]: $d , $f => $res\n";
1365 return $res;
1366 }
1367
5dab4834
RL
1368 # Store the name of the template file we will build the build file from
1369 # in %config. This may be useful for the build file itself.
1370 my @build_file_template_names =
1371 ( $builder_platform."-".$target{build_file}.".tmpl",
1372 $target{build_file}.".tmpl" );
1373 my @build_file_templates = ();
1374
1375 # First, look in the user provided directory, if given
1376 if (defined $ENV{$local_config_envname}) {
1377 @build_file_templates =
1378 map {
1379 if ($^O eq 'VMS') {
1380 # VMS environment variables are logical names,
1381 # which can be used as is
1382 $local_config_envname . ':' . $_;
1383 } else {
1384 catfile($ENV{$local_config_envname}, $_);
1385 }
1386 }
1387 @build_file_template_names;
1388 }
1389 # Then, look in our standard directory
1390 push @build_file_templates,
1391 ( map { cleanfile($srcdir, catfile("Configurations", $_), $blddir) }
1392 @build_file_template_names );
1393
1394 my $build_file_template;
1395 for $_ (@build_file_templates) {
1396 $build_file_template = $_;
1397 last if -f $build_file_template;
1398
1399 $build_file_template = undef;
1400 }
1401 if (!defined $build_file_template) {
1402 die "*** Couldn't find any of:\n", join("\n", @build_file_templates), "\n";
1403 }
1404 $config{build_file_templates}
1405 = [ $build_file_template,
1406 cleanfile($srcdir, catfile("Configurations", "common.tmpl"),
1407 $blddir) ];
1408
9fe2bb77
RL
1409 my @build_infos = ( [ ".", "build.info" ] );
1410 foreach (@{$config{dirs}}) {
1411 push @build_infos, [ $_, "build.info" ]
1412 if (-f catfile($srcdir, $_, "build.info"));
1413 }
1414 foreach (@{$config{sdirs}}) {
1415 push @build_infos, [ catdir("crypto", $_), "build.info" ]
1416 if (-f catfile($srcdir, "crypto", $_, "build.info"));
1417 }
1418 foreach (@{$config{engdirs}}) {
1419 push @build_infos, [ catdir("engines", $_), "build.info" ]
1420 if (-f catfile($srcdir, "engines", $_, "build.info"));
1421 }
1422
2e0956ba
RL
1423 $config{build_infos} = [ ];
1424
9fe2bb77
RL
1425 foreach (@build_infos) {
1426 my $sourced = catdir($srcdir, $_->[0]);
1427 my $buildd = catdir($blddir, $_->[0]);
1428
dca99383 1429 mkpath($buildd);
9fe2bb77
RL
1430
1431 my $f = $_->[1];
1432 # The basic things we're trying to build
1433 my @programs = ();
7f5af797 1434 my @programs_install = ();
9fe2bb77 1435 my @libraries = ();
7f5af797 1436 my @libraries_install = ();
9fe2bb77 1437 my @engines = ();
7f5af797 1438 my @engines_install = ();
9fe2bb77 1439 my @scripts = ();
7f5af797 1440 my @scripts_install = ();
9fe2bb77 1441 my @extra = ();
8a67946e 1442 my @overrides = ();
9fe2bb77
RL
1443 my @intermediates = ();
1444 my @rawlines = ();
1445
1446 my %ordinals = ();
1447 my %sources = ();
2a08d1a0 1448 my %shared_sources = ();
9fe2bb77
RL
1449 my %includes = ();
1450 my %depends = ();
1451 my %renames = ();
1452 my %sharednames = ();
ae4c7450 1453 my %generate = ();
9fe2bb77 1454
2e0956ba 1455 push @{$config{build_infos}}, catfile(abs2rel($sourced, $blddir), $f);
b81cfa07
RL
1456 my $template =
1457 Text::Template->new(TYPE => 'FILE',
1458 SOURCE => catfile($sourced, $f),
470a6017 1459 PREPEND => qq{use lib "$FindBin::Bin/util/perl";});
9fe2bb77
RL
1460 die "Something went wrong with $sourced/$f: $!\n" unless $template;
1461 my @text =
1462 split /^/m,
1463 $template->fill_in(HASH => { config => \%config,
1464 target => \%target,
9e04edf2 1465 disabled => \%disabled,
f59d0131 1466 withargs => \%withargs,
9fe2bb77
RL
1467 builddir => abs2rel($buildd, $blddir),
1468 sourcedir => abs2rel($sourced, $blddir),
1469 buildtop => abs2rel($blddir, $blddir),
1470 sourcetop => abs2rel($srcdir, $blddir) },
1471 DELIMITERS => [ "{-", "-}" ]);
1472
1473 # The top item of this stack has the following values
1474 # -2 positive already run and we found ELSE (following ELSIF should fail)
1475 # -1 positive already run (skip until ENDIF)
1476 # 0 negatives so far (if we're at a condition, check it)
1477 # 1 last was positive (don't skip lines until next ELSE, ELSIF or ENDIF)
1478 # 2 positive ELSE (following ELSIF should fail)
1479 my @skip = ();
1480 collect_information(
1481 collect_from_array([ @text ],
1482 qr/\\$/ => sub { my $l1 = shift; my $l2 = shift;
1483 $l1 =~ s/\\$//; $l1.$l2 }),
1484 # Info we're looking for
1485 qr/^\s*IF\[((?:\\.|[^\\\]])*)\]\s*$/
635bd409 1486 => sub {
c5798e0e 1487 if (! @skip || $skip[$#skip] > 0) {
635bd409
RL
1488 push @skip, !! $1;
1489 } else {
1490 push @skip, -1;
1491 }
1492 },
9fe2bb77
RL
1493 qr/^\s*ELSIF\[((?:\\.|[^\\\]])*)\]\s*$/
1494 => sub { die "ELSIF out of scope" if ! @skip;
1495 die "ELSIF following ELSE" if abs($skip[$#skip]) == 2;
1496 $skip[$#skip] = -1 if $skip[$#skip] != 0;
1497 $skip[$#skip] = !! $1
1498 if $skip[$#skip] == 0; },
1499 qr/^\s*ELSE\s*$/
1500 => sub { die "ELSE out of scope" if ! @skip;
1501 $skip[$#skip] = -2 if $skip[$#skip] != 0;
1502 $skip[$#skip] = 2 if $skip[$#skip] == 0; },
1503 qr/^\s*ENDIF\s*$/
1504 => sub { die "ENDIF out of scope" if ! @skip;
1505 pop @skip; },
7f5af797
RL
1506 qr/^\s*PROGRAMS(_NO_INST)?\s*=\s*(.*)\s*$/
1507 => sub {
1508 if (!@skip || $skip[$#skip] > 0) {
1509 my $install = $1;
1510 my @x = tokenize($2);
1511 push @programs, @x;
1512 push @programs_install, @x unless $install;
1513 }
1514 },
1515 qr/^\s*LIBS(_NO_INST)?\s*=\s*(.*)\s*$/
1516 => sub {
1517 if (!@skip || $skip[$#skip] > 0) {
1518 my $install = $1;
1519 my @x = tokenize($2);
1520 push @libraries, @x;
1521 push @libraries_install, @x unless $install;
1522 }
1523 },
1524 qr/^\s*ENGINES(_NO_INST)?\s*=\s*(.*)\s*$/
1525 => sub {
1526 if (!@skip || $skip[$#skip] > 0) {
1527 my $install = $1;
1528 my @x = tokenize($2);
1529 push @engines, @x;
1530 push @engines_install, @x unless $install;
1531 }
1532 },
1533 qr/^\s*SCRIPTS(_NO_INST)?\s*=\s*(.*)\s*$/
1534 => sub {
1535 if (!@skip || $skip[$#skip] > 0) {
1536 my $install = $1;
1537 my @x = tokenize($2);
1538 push @scripts, @x;
1539 push @scripts_install, @x unless $install;
1540 }
1541 },
9fe2bb77 1542 qr/^\s*EXTRA\s*=\s*(.*)\s*$/
ce959812 1543 => sub { push @extra, tokenize($1)
9fe2bb77 1544 if !@skip || $skip[$#skip] > 0 },
8a67946e 1545 qr/^\s*OVERRIDES\s*=\s*(.*)\s*$/
ce959812 1546 => sub { push @overrides, tokenize($1)
8a67946e 1547 if !@skip || $skip[$#skip] > 0 },
9fe2bb77
RL
1548
1549 qr/^\s*ORDINALS\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/,
ce959812 1550 => sub { push @{$ordinals{$1}}, tokenize($2)
9fe2bb77
RL
1551 if !@skip || $skip[$#skip] > 0 },
1552 qr/^\s*SOURCE\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
ce959812 1553 => sub { push @{$sources{$1}}, tokenize($2)
9fe2bb77 1554 if !@skip || $skip[$#skip] > 0 },
2a08d1a0 1555 qr/^\s*SHARED_SOURCE\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
ce959812 1556 => sub { push @{$shared_sources{$1}}, tokenize($2)
2a08d1a0 1557 if !@skip || $skip[$#skip] > 0 },
9fe2bb77 1558 qr/^\s*INCLUDE\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
ce959812 1559 => sub { push @{$includes{$1}}, tokenize($2)
9fe2bb77 1560 if !@skip || $skip[$#skip] > 0 },
4f858293 1561 qr/^\s*DEPEND\[((?:\\.|[^\\\]])*)\]\s*=\s*(.*)\s*$/
ce959812 1562 => sub { push @{$depends{$1}}, tokenize($2)
9fe2bb77 1563 if !@skip || $skip[$#skip] > 0 },
ae4c7450
RL
1564 qr/^\s*GENERATE\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
1565 => sub { push @{$generate{$1}}, $2
1566 if !@skip || $skip[$#skip] > 0 },
9fe2bb77 1567 qr/^\s*RENAME\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
ce959812 1568 => sub { push @{$renames{$1}}, tokenize($2)
9fe2bb77
RL
1569 if !@skip || $skip[$#skip] > 0 },
1570 qr/^\s*SHARED_NAME\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
ce959812 1571 => sub { push @{$sharednames{$1}}, tokenize($2)
9fe2bb77
RL
1572 if !@skip || $skip[$#skip] > 0 },
1573 qr/^\s*BEGINRAW\[((?:\\.|[^\\\]])+)\]\s*$/
1574 => sub {
1575 my $lineiterator = shift;
1576 my $target_kind = $1;
1577 while (defined $lineiterator->()) {
04f171c0 1578 s|\R$||;
9fe2bb77
RL
1579 if (/^\s*ENDRAW\[((?:\\.|[^\\\]])+)\]\s*$/) {
1580 die "ENDRAW doesn't match BEGINRAW"
1581 if $1 ne $target_kind;
1582 last;
1583 }
1584 next if @skip && $skip[$#skip] <= 0;
1585 push @rawlines, $_
1586 if ($target_kind eq $target{build_file}
ddf1847d 1587 || $target_kind eq $target{build_file}."(".$builder_platform.")");
9fe2bb77
RL
1588 }
1589 },
1590 qr/^(?:#.*|\s*)$/ => sub { },
2b6b606c
RL
1591 "OTHERWISE" => sub { die "Something wrong with this line:\n$_\nat $sourced/$f" },
1592 "BEFORE" => sub {
1593 if ($buildinfo_debug) {
1594 print STDERR "DEBUG: Parsing ",join(" ", @_),"\n";
1595 print STDERR "DEBUG: ... before parsing, skip stack is ",join(" ", map { int($_) } @skip),"\n";
1596 }
1597 },
1598 "AFTER" => sub {
1599 if ($buildinfo_debug) {
1600 print STDERR "DEBUG: .... after parsing, skip stack is ",join(" ", map { int($_) } @skip),"\n";
1601 }
1602 },
9fe2bb77
RL
1603 );
1604 die "runaway IF?" if (@skip);
1605
1606 foreach (keys %renames) {
1607 die "$_ renamed to more than one thing: "
1608 ,join(" ", @{$renames{$_}}),"\n"
1609 if scalar @{$renames{$_}} > 1;
2e963849
RL
1610 my $dest = cleanfile($buildd, $_, $blddir);
1611 my $to = cleanfile($buildd, $renames{$_}->[0], $blddir);
9fe2bb77
RL
1612 die "$dest renamed to more than one thing: "
1613 ,$unified_info{rename}->{$dest}, $to
1614 unless !defined($unified_info{rename}->{$dest})
1615 or $unified_info{rename}->{$dest} eq $to;
1616 $unified_info{rename}->{$dest} = $to;
1617 }
1618
1619 foreach (@programs) {
2e963849 1620 my $program = cleanfile($buildd, $_, $blddir);
9fe2bb77
RL
1621 if ($unified_info{rename}->{$program}) {
1622 $program = $unified_info{rename}->{$program};
1623 }
1624 $unified_info{programs}->{$program} = 1;
1625 }
1626
7f5af797
RL
1627 foreach (@programs_install) {
1628 my $program = cleanfile($buildd, $_, $blddir);
1629 if ($unified_info{rename}->{$program}) {
1630 $program = $unified_info{rename}->{$program};
1631 }
1632 $unified_info{install}->{programs}->{$program} = 1;
1633 }
1634
9fe2bb77 1635 foreach (@libraries) {
2e963849 1636 my $library = cleanfile($buildd, $_, $blddir);
9fe2bb77
RL
1637 if ($unified_info{rename}->{$library}) {
1638 $library = $unified_info{rename}->{$library};
1639 }
1640 $unified_info{libraries}->{$library} = 1;
1641 }
1642
7f5af797
RL
1643 foreach (@libraries_install) {
1644 my $library = cleanfile($buildd, $_, $blddir);
1645 if ($unified_info{rename}->{$library}) {
1646 $library = $unified_info{rename}->{$library};
1647 }
1648 $unified_info{install}->{libraries}->{$library} = 1;
1649 }
1650
343ec2b0 1651 die <<"EOF" if scalar @engines and !$config{dynamic_engines};
19ab5790 1652ENGINES can only be used if configured with 'dynamic-engine'.
9fe2bb77
RL
1653This is usually a fault in a build.info file.
1654EOF
1655 foreach (@engines) {
2e963849 1656 my $library = cleanfile($buildd, $_, $blddir);
9fe2bb77
RL
1657 if ($unified_info{rename}->{$library}) {
1658 $library = $unified_info{rename}->{$library};
1659 }
1660 $unified_info{engines}->{$library} = 1;
1661 }
1662
7f5af797
RL
1663 foreach (@engines_install) {
1664 my $library = cleanfile($buildd, $_, $blddir);
1665 if ($unified_info{rename}->{$library}) {
1666 $library = $unified_info{rename}->{$library};
1667 }
1668 $unified_info{install}->{engines}->{$library} = 1;
1669 }
1670
9fe2bb77 1671 foreach (@scripts) {
2e963849 1672 my $script = cleanfile($buildd, $_, $blddir);
9fe2bb77
RL
1673 if ($unified_info{rename}->{$script}) {
1674 $script = $unified_info{rename}->{$script};
1675 }
1676 $unified_info{scripts}->{$script} = 1;
1677 }
1678
7f5af797
RL
1679 foreach (@scripts_install) {
1680 my $script = cleanfile($buildd, $_, $blddir);
1681 if ($unified_info{rename}->{$script}) {
1682 $script = $unified_info{rename}->{$script};
1683 }
1684 $unified_info{install}->{scripts}->{$script} = 1;
1685 }
1686
9fe2bb77 1687 foreach (@extra) {
2e963849 1688 my $extra = cleanfile($buildd, $_, $blddir);
9fe2bb77
RL
1689 $unified_info{extra}->{$extra} = 1;
1690 }
1691
8a67946e
RL
1692 foreach (@overrides) {
1693 my $override = cleanfile($buildd, $_, $blddir);
1694 $unified_info{overrides}->{$override} = 1;
1695 }
1696
9fe2bb77
RL
1697 push @{$unified_info{rawlines}}, @rawlines;
1698
84af1bae 1699 unless ($disabled{shared}) {
9fe2bb77
RL
1700 # Check sharednames.
1701 foreach (keys %sharednames) {
2e963849 1702 my $dest = cleanfile($buildd, $_, $blddir);
9fe2bb77
RL
1703 if ($unified_info{rename}->{$dest}) {
1704 $dest = $unified_info{rename}->{$dest};
1705 }
1706 die "shared_name for $dest with multiple values: "
1707 ,join(" ", @{$sharednames{$_}}),"\n"
1708 if scalar @{$sharednames{$_}} > 1;
2e963849 1709 my $to = cleanfile($buildd, $sharednames{$_}->[0], $blddir);
9fe2bb77
RL
1710 die "shared_name found for a library $dest that isn't defined\n"
1711 unless $unified_info{libraries}->{$dest};
1712 die "shared_name for $dest with multiple values: "
1713 ,$unified_info{sharednames}->{$dest}, ", ", $to
1714 unless !defined($unified_info{sharednames}->{$dest})
1715 or $unified_info{sharednames}->{$dest} eq $to;
1716 $unified_info{sharednames}->{$dest} = $to;
1717 }
1718
1719 # Additionally, we set up sharednames for libraries that don't
1720 # have any, as themselves.
1721 foreach (keys %{$unified_info{libraries}}) {
1722 if (!defined $unified_info{sharednames}->{$_}) {
1723 $unified_info{sharednames}->{$_} = $_
1724 }
1725 }
1726 }
1727
1728 foreach (keys %ordinals) {
1729 my $dest = $_;
2e963849 1730 my $ddest = cleanfile($buildd, $_, $blddir);
9fe2bb77
RL
1731 if ($unified_info{rename}->{$ddest}) {
1732 $ddest = $unified_info{rename}->{$ddest};
1733 }
1734 foreach (@{$ordinals{$dest}}) {
1735 my %known_ordinals =
1736 (
1737 crypto =>
6928b617 1738 cleanfile($sourced, catfile("util", "libcrypto.num"), $blddir),
9fe2bb77 1739 ssl =>
6928b617 1740 cleanfile($sourced, catfile("util", "libssl.num"), $blddir)
9fe2bb77
RL
1741 );
1742 my $o = $known_ordinals{$_};
1743 die "Ordinals for $ddest defined more than once\n"
1744 if $unified_info{ordinals}->{$ddest};
1745 $unified_info{ordinals}->{$ddest} = [ $_, $o ];
1746 }
1747 }
1748
1749 foreach (keys %sources) {
1750 my $dest = $_;
2e963849 1751 my $ddest = cleanfile($buildd, $_, $blddir);
9fe2bb77
RL
1752 if ($unified_info{rename}->{$ddest}) {
1753 $ddest = $unified_info{rename}->{$ddest};
1754 }
1755 foreach (@{$sources{$dest}}) {
2e963849 1756 my $s = cleanfile($sourced, $_, $blddir);
9fe2bb77
RL
1757
1758 # If it isn't in the source tree, we assume it's generated
1759 # in the build tree
b9189104 1760 if (! -f $s || $generate{$_}) {
2e963849 1761 $s = cleanfile($buildd, $_, $blddir);
9fe2bb77
RL
1762 }
1763 # We recognise C and asm files
1764 if ($s =~ /\.[csS]\b$/) {
1765 (my $o = $_) =~ s/\.[csS]\b$/.o/;
2e963849 1766 $o = cleanfile($buildd, $o, $blddir);
9fe2bb77
RL
1767 $unified_info{sources}->{$ddest}->{$o} = 1;
1768 $unified_info{sources}->{$o}->{$s} = 1;
1769 } else {
1770 $unified_info{sources}->{$ddest}->{$s} = 1;
1771 }
1772 }
1773 }
1774
2a08d1a0
RL
1775 foreach (keys %shared_sources) {
1776 my $dest = $_;
1777 my $ddest = cleanfile($buildd, $_, $blddir);
1778 if ($unified_info{rename}->{$ddest}) {
1779 $ddest = $unified_info{rename}->{$ddest};
1780 }
1781 foreach (@{$shared_sources{$dest}}) {
1782 my $s = cleanfile($sourced, $_, $blddir);
1783
1784 # If it isn't in the source tree, we assume it's generated
1785 # in the build tree
b9189104 1786 if (! -f $s || $generate{$_}) {
2a08d1a0
RL
1787 $s = cleanfile($buildd, $_, $blddir);
1788 }
1789 # We recognise C and asm files
1790 if ($s =~ /\.[csS]\b$/) {
1791 (my $o = $_) =~ s/\.[csS]\b$/.o/;
1792 $o = cleanfile($buildd, $o, $blddir);
1793 $unified_info{shared_sources}->{$ddest}->{$o} = 1;
1794 $unified_info{sources}->{$o}->{$s} = 1;
1795 } else {
1796 die "unrecognised source file type for shared library: $s\n";
1797 }
1798 }
1799 }
1800
ae4c7450
RL
1801 foreach (keys %generate) {
1802 my $dest = $_;
1803 my $ddest = cleanfile($buildd, $_, $blddir);
1804 if ($unified_info{rename}->{$ddest}) {
1805 $ddest = $unified_info{rename}->{$ddest};
1806 }
1807 die "more than one generator for $dest: "
1808 ,join(" ", @{$generate{$_}}),"\n"
1809 if scalar @{$generate{$_}} > 1;
1810 my @generator = split /\s+/, $generate{$dest}->[0];
1811 $generator[0] = cleanfile($sourced, $generator[0], $blddir),
1812 $unified_info{generate}->{$ddest} = [ @generator ];
1813 }
1814
9fe2bb77
RL
1815 foreach (keys %depends) {
1816 my $dest = $_;
4f858293 1817 my $ddest = $dest eq "" ? "" : cleanfile($sourced, $_, $blddir);
8d34daf0
RL
1818
1819 # If the destination doesn't exist in source, it can only be
1820 # a generated file in the build tree.
4f858293 1821 if ($ddest ne "" && ! -f $ddest) {
8d34daf0
RL
1822 $ddest = cleanfile($buildd, $_, $blddir);
1823 if ($unified_info{rename}->{$ddest}) {
1824 $ddest = $unified_info{rename}->{$ddest};
1825 }
9fe2bb77
RL
1826 }
1827 foreach (@{$depends{$dest}}) {
2e963849 1828 my $d = cleanfile($sourced, $_, $blddir);
9fe2bb77 1829
e737d7b1
RL
1830 # If we know it's generated, or assume it is because we can't
1831 # find it in the source tree, we set file we depend on to be
1832 # in the build tree rather than the source tree, and assume
1833 # and that there are lines to build it in a BEGINRAW..ENDRAW
1834 # section or in the Makefile template.
1835 if (! -f $d
da1f2104
RL
1836 || (grep { $d eq $_ }
1837 map { cleanfile($srcdir, $_, $blddir) }
4f858293 1838 grep { /\.h$/ } keys %{$unified_info{generate}})) {
2e963849 1839 $d = cleanfile($buildd, $_, $blddir);
9fe2bb77
RL
1840 }
1841 # Take note if the file to depend on is being renamed
1842 if ($unified_info{rename}->{$d}) {
1843 $d = $unified_info{rename}->{$d};
1844 }
1845 $unified_info{depends}->{$ddest}->{$d} = 1;
9fe2bb77
RL
1846 }
1847 }
1848
1849 foreach (keys %includes) {
1850 my $dest = $_;
8d34daf0
RL
1851 my $ddest = cleanfile($sourced, $_, $blddir);
1852
1853 # If the destination doesn't exist in source, it can only be
1854 # a generated file in the build tree.
1855 if (! -f $ddest) {
1856 $ddest = cleanfile($buildd, $_, $blddir);
1857 if ($unified_info{rename}->{$ddest}) {
1858 $ddest = $unified_info{rename}->{$ddest};
1859 }
9fe2bb77
RL
1860 }
1861 foreach (@{$includes{$dest}}) {
4748f890
RL
1862 my $is = cleandir($sourced, $_, $blddir);
1863 my $ib = cleandir($buildd, $_, $blddir);
1864 push @{$unified_info{includes}->{$ddest}->{source}}, $is
1865 unless grep { $_ eq $is } @{$unified_info{includes}->{$ddest}->{source}};
1866 push @{$unified_info{includes}->{$ddest}->{build}}, $ib
1867 unless grep { $_ eq $ib } @{$unified_info{includes}->{$ddest}->{build}};
9fe2bb77
RL
1868 }
1869 }
1870 }
1871
6a8dfb90
RL
1872 # Massage the result
1873
8054342b
RL
1874 # If we depend on a header file or a perl module, add an inclusion of
1875 # its directory to allow smoothe inclusion
1876 foreach my $dest (keys %{$unified_info{depends}}) {
1877 next if $dest eq "";
1878 foreach my $d (keys %{$unified_info{depends}->{$dest}}) {
1879 next unless $d =~ /\.(h|pm)$/;
1880 if ($d eq "configdata.pm"
1881 || defined($unified_info{generate}->{$d})) {
1882 my $i = cleandir($blddir, dirname($d));
1883 push @{$unified_info{includes}->{$dest}->{build}}, $i
1884 unless grep { $_ eq $i } @{$unified_info{includes}->{$dest}->{build}};
1885 } else {
1886 my $i = cleandir($srcdir, dirname($d));
1887 push @{$unified_info{includes}->{$dest}->{source}}, $i
1888 unless grep { $_ eq $i } @{$unified_info{includes}->{$dest}->{source}};
1889 }
1890 }
1891 }
1892
6a8dfb90
RL
1893 # Trickle down includes placed on libraries, engines and programs to
1894 # their sources (i.e. object files)
1895 foreach my $dest (keys %{$unified_info{engines}},
1896 keys %{$unified_info{libraries}},
1897 keys %{$unified_info{programs}}) {
1898 foreach my $k (("source", "build")) {
1899 next unless defined($unified_info{includes}->{$dest}->{$k});
1900 my @incs = reverse @{$unified_info{includes}->{$dest}->{$k}};
1901 foreach my $obj (grep /\.o$/,
1902 (keys %{$unified_info{sources}->{$dest}},
1903 keys %{$unified_info{shared_sources}->{$dest}})) {
1904 foreach my $inc (@incs) {
1905 unshift @{$unified_info{includes}->{$obj}->{$k}}, $inc
1906 unless grep { $_ eq $inc } @{$unified_info{includes}->{$obj}->{$k}};
1907 }
1908 }
1909 }
1910 delete $unified_info{includes}->{$dest};
1911 }
1912
9fe2bb77
RL
1913 ### Make unified_info a bit more efficient
1914 # One level structures
8a67946e 1915 foreach (("programs", "libraries", "engines", "scripts", "extra", "overrides")) {
9fe2bb77
RL
1916 $unified_info{$_} = [ sort keys %{$unified_info{$_}} ];
1917 }
1918 # Two level structures
7f5af797 1919 foreach my $l1 (("install", "sources", "shared_sources", "ldadd", "depends")) {
9fe2bb77
RL
1920 foreach my $l2 (sort keys %{$unified_info{$l1}}) {
1921 $unified_info{$l1}->{$l2} =
1922 [ sort keys %{$unified_info{$l1}->{$l2}} ];
1923 }
1924 }
4748f890
RL
1925 # Includes
1926 foreach my $dest (sort keys %{$unified_info{includes}}) {
1927 if (defined($unified_info{includes}->{$dest}->{build})) {
8054342b
RL
1928 my @source_includes = ();
1929 @source_includes = ( @{$unified_info{includes}->{$dest}->{source}} )
1930 if defined($unified_info{includes}->{$dest}->{source});
4748f890
RL
1931 $unified_info{includes}->{$dest} =
1932 [ @{$unified_info{includes}->{$dest}->{build}} ];
1933 foreach my $inc (@source_includes) {
1934 push @{$unified_info{includes}->{$dest}}, $inc
1935 unless grep { $_ eq $inc } @{$unified_info{includes}->{$dest}};
1936 }
1937 } else {
1938 $unified_info{includes}->{$dest} =
1939 [ @{$unified_info{includes}->{$dest}->{source}} ];
1940 }
1941 }
9fe2bb77
RL
1942}
1943
1944# For the schemes that need it, we provide the old *_obj configs
1945# from the *_asm_obj ones
3a55c92b 1946foreach (grep /_(asm|aux)_src$/, keys %target) {
9fe2bb77 1947 my $src = $_;
3a55c92b 1948 (my $obj = $_) =~ s/_(asm|aux)_src$/_obj/;
9fe2bb77
RL
1949 ($target{$obj} = $target{$src}) =~ s/\.[csS]\b/.o/g;
1950}
1951
291e94df
RL
1952# Write down our configuration where it fits #########################
1953
1954open(OUT,">configdata.pm") || die "unable to create configdata.pm: $!\n";
1955print OUT <<"EOF";
1956package configdata;
1957
1958use strict;
1959use warnings;
1960
1961use Exporter;
1962#use vars qw(\@ISA \@EXPORT);
1963our \@ISA = qw(Exporter);
3850f8cb 1964our \@EXPORT = qw(\%config \%target \%disabled \%withargs \%unified_info \@disablables);
291e94df
RL
1965
1966EOF
1967print OUT "our %config = (\n";
1968foreach (sort keys %config) {
1969 if (ref($config{$_}) eq "ARRAY") {
1970 print OUT " ", $_, " => [ ", join(", ",
1971 map { quotify("perl", $_) }
1972 @{$config{$_}}), " ],\n";
1973 } else {
1974 print OUT " ", $_, " => ", quotify("perl", $config{$_}), ",\n"
1975 }
1976}
1977print OUT <<"EOF";
1978);
1979
1980EOF
1981print OUT "our %target = (\n";
1982foreach (sort keys %target) {
1983 if (ref($target{$_}) eq "ARRAY") {
1984 print OUT " ", $_, " => [ ", join(", ",
1985 map { quotify("perl", $_) }
1986 @{$target{$_}}), " ],\n";
1987 } else {
1988 print OUT " ", $_, " => ", quotify("perl", $target{$_}), ",\n"
1989 }
1990}
1991print OUT <<"EOF";
1992);
1993
96d2d7bc
RL
1994EOF
1995print OUT "our \%available_protocols = (\n";
1996print OUT " tls => [ ", join(", ", map { quotify("perl", $_) } @tls), " ],\n";
1997print OUT " dtls => [ ", join(", ", map { quotify("perl", $_) } @dtls), " ],\n";
1998print OUT <<"EOF";
1999);
2000
3850f8cb
RL
2001EOF
2002print OUT "our \@disablables = (\n";
2003foreach (@disablables) {
2004 print OUT " ", quotify("perl", $_), ",\n";
2005}
2006print OUT <<"EOF";
2007);
2008
96d2d7bc
RL
2009EOF
2010print OUT "our \%disabled = (\n";
2011foreach (sort keys %disabled) {
2012 print OUT " ", quotify("perl", $_), " => ", quotify("perl", $disabled{$_}), ",\n";
2013}
2014print OUT <<"EOF";
2015);
2016
291e94df 2017EOF
107b5792
RL
2018print OUT "our %withargs = (\n";
2019foreach (sort keys %withargs) {
2020 if (ref($withargs{$_}) eq "ARRAY") {
2021 print OUT " ", $_, " => [ ", join(", ",
2022 map { quotify("perl", $_) }
2023 @{$withargs{$_}}), " ],\n";
2024 } else {
2025 print OUT " ", $_, " => ", quotify("perl", $withargs{$_}), ",\n"
2026 }
2027}
2028print OUT <<"EOF";
2029);
edd4d402 2030
107b5792 2031EOF
ddf1847d 2032if ($builder eq "unified") {
9fe2bb77
RL
2033 my $recurse;
2034 $recurse = sub {
2035 my $indent = shift;
2036 foreach (@_) {
2037 if (ref $_ eq "ARRAY") {
2038 print OUT " "x$indent, "[\n";
2039 foreach (@$_) {
2040 $recurse->($indent + 4, $_);
2041 }
2042 print OUT " "x$indent, "],\n";
2043 } elsif (ref $_ eq "HASH") {
2044 my %h = %$_;
2045 print OUT " "x$indent, "{\n";
2046 foreach (sort keys %h) {
2047 if (ref $h{$_} eq "") {
2048 print OUT " "x($indent + 4), quotify("perl", $_), " => ", quotify("perl", $h{$_}), ",\n";
2049 } else {
2050 print OUT " "x($indent + 4), quotify("perl", $_), " =>\n";
2051 $recurse->($indent + 8, $h{$_});
2052 }
2053 }
2054 print OUT " "x$indent, "},\n";
2055 } else {
2056 print OUT " "x$indent, quotify("perl", $_), ",\n";
2057 }
2058 }
2059 };
2060 print OUT "our %unified_info = (\n";
2061 foreach (sort keys %unified_info) {
2062 if (ref $unified_info{$_} eq "") {
2063 print OUT " "x4, quotify("perl", $_), " => ", quotify("perl", $unified_info{$_}), ",\n";
2064 } else {
2065 print OUT " "x4, quotify("perl", $_), " =>\n";
2066 $recurse->(8, $unified_info{$_});
2067 }
2068 }
2069 print OUT <<"EOF";
2070);
2071
2072EOF
2073}
2074print OUT "1;\n";
d02b48c6 2075close(OUT);
f2d4be3b 2076
9fe2bb77 2077
f58a0acb 2078print "CC =$config{cross_compile_prefix}$target{cc}\n";
2952b9b8 2079print "CFLAG =$target{cflags} $config{cflags}\n";
63ee7129 2080print "SHARED_CFLAG =$target{shared_cflag}\n";
2952b9b8 2081print "DEFINES =",join(" ", @{$target{defines}}, @{$config{defines}}),"\n";
940a09ba
RL
2082print "LFLAG =$target{lflags}\n";
2083print "PLIB_LFLAG =$target{plib_lflags}\n";
2952b9b8 2084print "EX_LIBS =$target{ex_libs} $config{ex_libs}\n";
b756967d 2085print "APPS_OBJ =$target{apps_obj}\n";
291e94df 2086print "CPUID_OBJ =$target{cpuid_obj}\n";
b756967d 2087print "UPLINK_OBJ =$target{uplink_obj}\n";
291e94df
RL
2088print "BN_ASM =$target{bn_obj}\n";
2089print "EC_ASM =$target{ec_obj}\n";
2090print "DES_ENC =$target{des_obj}\n";
2091print "AES_ENC =$target{aes_obj}\n";
2092print "BF_ENC =$target{bf_obj}\n";
2093print "CAST_ENC =$target{cast_obj}\n";
2094print "RC4_ENC =$target{rc4_obj}\n";
2095print "RC5_ENC =$target{rc5_obj}\n";
2096print "MD5_OBJ_ASM =$target{md5_obj}\n";
2097print "SHA1_OBJ_ASM =$target{sha1_obj}\n";
2098print "RMD160_OBJ_ASM=$target{rmd160_obj}\n";
2099print "CMLL_ENC =$target{cmll_obj}\n";
2100print "MODES_OBJ =$target{modes_obj}\n";
f0bd4686 2101print "PADLOCK_OBJ =$target{padlock_obj}\n";
291e94df
RL
2102print "CHACHA_ENC =$target{chacha_obj}\n";
2103print "POLY1305_OBJ =$target{poly1305_obj}\n";
2d0b4412 2104print "BLAKE2_OBJ =$target{blake2_obj}\n";
7d130f68 2105print "PROCESSOR =$config{processor}\n";
f58a0acb
AP
2106print "RANLIB =", $target{ranlib} eq '$(CROSS_COMPILE)ranlib' ?
2107 "$config{cross_compile_prefix}ranlib" :
2108 "$target{ranlib}", "\n";
291e94df
RL
2109print "ARFLAGS =$target{arflags}\n";
2110print "PERL =$config{perl}\n";
f0bd4686 2111print "\n";
7d130f68
RL
2112print "SIXTY_FOUR_BIT_LONG mode\n" if $config{b64l};
2113print "SIXTY_FOUR_BIT mode\n" if $config{b64};
2114print "THIRTY_TWO_BIT mode\n" if $config{b32};
7d130f68 2115print "BN_LLONG mode\n" if $config{bn_ll};
01d99976 2116print "RC4 uses $config{rc4_int}\n" if $config{rc4_int} ne $def_int;
cba5068d 2117
88087414 2118my %builders = (
9fe2bb77 2119 unified => sub {
ddf1847d 2120 run_dofile(catfile($blddir, $target{build_file}),
5dab4834 2121 @{$config{build_file_templates}});
9fe2bb77 2122 },
88087414
RL
2123 );
2124
ddf1847d 2125$builders{$builder}->($builder_platform, @builder_opts);
fce0ba5f 2126
76ffb43d 2127print <<"EOF";
63d3f44a 2128
89ec98e0 2129Configured for $target.
63d3f44a 2130EOF
5f8d5c96 2131
9c62a279 2132print <<"EOF" if ($disabled{threads} eq "unavailable");
5f8d5c96
BM
2133
2134The library could not be configured for supporting multi-threaded
2135applications as the compiler options required on this system are not known.
ff1b7e09 2136See file INSTALL for details if you need multi-threading.
ec577822
BM
2137EOF
2138
76ffb43d 2139print <<"EOF" if ($no_shared_warn);
2964ba8c 2140
ae48242c
RL
2141The options 'shared', 'pic' and 'dynamic-engine' aren't supported on this
2142platform, so we will pretend you gave the option 'no-pic', which also disables
2143'shared' and 'dynamic-engine'. If you know how to implement shared libraries
2144or position independent code, please let us know (but please first make sure
2145you have tried with a current version of OpenSSL).
2e31ef03
RS
2146EOF
2147
ddc606c9
RL
2148print <<"EOF" if (-f catfile($srcdir, "configdata.pm") && $srcdir ne $blddir);
2149
2150WARNING: there are indications that another build was made in the source
2151directory. This build may have picked up artifacts from that build, the
2152safest course of action is to clean the source directory and redo this
2153configuration.
2154EOF
2155
d02b48c6
RE
2156exit(0);
2157
bd5192b1
RL
2158######################################################################
2159#
2160# Helpers and utility functions
2161#
2162
2163# Configuration file reading #########################################
2164
1f2e1cd5
RL
2165# Note: All of the helper functions are for lazy evaluation. They all
2166# return a CODE ref, which will return the intended value when evaluated.
2167# Thus, whenever there's mention of a returned value, it's about that
2168# intended value.
2169
bd5192b1 2170# Helper function to implement conditional inheritance depending on the
00b0d663 2171# value of $disabled{asm}. Used in inherit_from values as follows:
bd5192b1
RL
2172#
2173# inherit_from => [ "template", asm("asm_tmpl") ]
2174#
2175sub asm {
2176 my @x = @_;
2177 sub {
00b0d663 2178 $disabled{asm} ? () : @x;
bd5192b1
RL
2179 }
2180}
2181
1f2e1cd5
RL
2182# Helper function to implement conditional value variants, with a default
2183# plus additional values based on the value of $config{build_type}.
2184# Arguments are given in hash table form:
2185#
2186# picker(default => "Basic string: ",
2187# debug => "debug",
2188# release => "release")
2189#
2190# When configuring with --debug, the resulting string will be
2191# "Basic string: debug", and when not, it will be "Basic string: release"
2192#
2193# This can be used to create variants of sets of flags according to the
2194# build type:
2195#
2196# cflags => picker(default => "-Wall",
2197# debug => "-g -O0",
2198# release => "-O3")
2199#
2200sub picker {
2201 my %opts = @_;
2202 return sub { add($opts{default} || (),
2203 $opts{$config{build_type}} || ())->(); }
2204}
2205
2206# Helper function to combine several values of different types into one.
2207# This is useful if you want to combine a string with the result of a
2208# lazy function, such as:
2209#
2210# cflags => combine("-Wall", sub { $disabled{zlib} ? () : "-DZLIB" })
2211#
2212sub combine {
2213 my @stuff = @_;
2214 return sub { add(@stuff)->(); }
2215}
2216
2217# Helper function to implement conditional values depending on the value
2218# of $disabled{threads}. Can be used as follows:
2219#
2220# cflags => combine("-Wall", threads("-pthread"))
2221#
2222sub threads {
2223 my @flags = @_;
2224 return sub { add($disabled{threads} ? () : @flags)->(); }
2225}
2226
2227
2228
9c62a279 2229our $add_called = 0;
88087414
RL
2230# Helper function to implement adding values to already existing configuration
2231# values. It handles elements that are ARRAYs, CODEs and scalars
2232sub _add {
2233 my $separator = shift;
2234
bcb1977b
RL
2235 # If there's any ARRAY in the collection of values OR the separator
2236 # is undef, we will return an ARRAY of combined values, otherwise a
2237 # string of joined values with $separator as the separator.
2238 my $found_array = !defined($separator);
88087414
RL
2239
2240 my @values =
2241 map {
b0b92a5b
RL
2242 my $res = $_;
2243 while (ref($res) eq "CODE") {
2244 $res = $res->();
2245 }
2246 if (defined($res)) {
2247 if (ref($res) eq "ARRAY") {
2248 $found_array = 1;
2249 @$res;
2250 } else {
2251 $res;
2252 }
88087414 2253 } else {
b0b92a5b 2254 ();
88087414
RL
2255 }
2256 } (@_);
2257
9c62a279
RL
2258 $add_called = 1;
2259
88087414
RL
2260 if ($found_array) {
2261 [ @values ];
2262 } else {
b0b92a5b 2263 join($separator, grep { defined($_) && $_ ne "" } @values);
88087414
RL
2264 }
2265}
2266sub add_before {
bdcd83e1
RL
2267 my $separator = " ";
2268 if (ref($_[$#_]) eq "HASH") {
2269 my $opts = pop;
2270 $separator = $opts->{separator};
2271 }
88087414
RL
2272 my @x = @_;
2273 sub { _add($separator, @x, @_) };
2274}
2275sub add {
bdcd83e1
RL
2276 my $separator = " ";
2277 if (ref($_[$#_]) eq "HASH") {
2278 my $opts = pop;
2279 $separator = $opts->{separator};
2280 }
88087414
RL
2281 my @x = @_;
2282 sub { _add($separator, @_, @x) };
2283}
2284
bd5192b1
RL
2285# configuration reader, evaluates the input file as a perl script and expects
2286# it to fill %targets with target configurations. Those are then added to
2287# %table.
2288sub read_config {
2289 my $fname = shift;
2290 open(CONFFILE, "< $fname")
2291 or die "Can't open configuration file '$fname'!\n";
2292 my $x = $/;
2293 undef $/;
2294 my $content = <CONFFILE>;
2295 $/ = $x;
2296 close(CONFFILE);
2297 my %targets = ();
2298 {
efd23794
RL
2299 # Protect certain tables from tampering
2300 local %table = %::table;
bd5192b1
RL
2301
2302 eval $content;
2303 warn $@ if $@;
2304 }
bda1af6d
RL
2305 my %preexisting = ();
2306 foreach (sort keys %targets) {
2307 $preexisting{$_} = 1 if $table{$_};
2308 }
2309 die <<"EOF",
2310The following config targets from $fname
2311shadow pre-existing config targets with the same name:
2312EOF
2313 map { " $_\n" } sort keys %preexisting
2314 if %preexisting;
2315
bd5192b1
RL
2316
2317 # For each target, check that it's configured with a hash table.
2318 foreach (keys %targets) {
2319 if (ref($targets{$_}) ne "HASH") {
2320 if (ref($targets{$_}) eq "") {
2321 warn "Deprecated target configuration for $_, ignoring...\n";
2322 } else {
2323 warn "Misconfigured target configuration for $_ (should be a hash table), ignoring...\n";
2324 }
2325 delete $targets{$_};
efd23794
RL
2326 } else {
2327 $targets{$_}->{_conf_fname_int} = add([ $fname ]);
2328 }
bd5192b1
RL
2329 }
2330
2331 %table = (%table, %targets);
2332
2333}
2334
8483a003
F
2335# configuration resolver. Will only resolve all the lazy evaluation
2336# codeblocks for the chosen target and all those it inherits from,
bd5192b1
RL
2337# recursively
2338sub resolve_config {
2339 my $target = shift;
2340 my @breadcrumbs = @_;
2341
c4718849 2342# my $extra_checks = defined($ENV{CONFIGURE_EXTRA_CHECKS});
9c62a279 2343
bd5192b1
RL
2344 if (grep { $_ eq $target } @breadcrumbs) {
2345 die "inherit_from loop! target backtrace:\n "
2346 ,$target,"\n ",join("\n ", @breadcrumbs),"\n";
2347 }
2348
2349 if (!defined($table{$target})) {
2350 warn "Warning! target $target doesn't exist!\n";
2351 return ();
2352 }
2353 # Recurse through all inheritances. They will be resolved on the
2354 # fly, so when this operation is done, they will all just be a
2355 # bunch of attributes with string values.
2356 # What we get here, though, are keys with references to lists of
2357 # the combined values of them all. We will deal with lists after
2358 # this stage is done.
2359 my %combined_inheritance = ();
2360 if ($table{$target}->{inherit_from}) {
2361 my @inherit_from =
2362 map { ref($_) eq "CODE" ? $_->() : $_ } @{$table{$target}->{inherit_from}};
2363 foreach (@inherit_from) {
2364 my %inherited_config = resolve_config($_, $target, @breadcrumbs);
2365
2366 # 'template' is a marker that's considered private to
2367 # the config that had it.
2368 delete $inherited_config{template};
2369
2110febb 2370 foreach (keys %inherited_config) {
bd5192b1
RL
2371 if (!$combined_inheritance{$_}) {
2372 $combined_inheritance{$_} = [];
2373 }
2374 push @{$combined_inheritance{$_}}, $inherited_config{$_};
2110febb 2375 }
bd5192b1
RL
2376 }
2377 }
2378
2379 # We won't need inherit_from in this target any more, since we've
2380 # resolved all the inheritances that lead to this
2381 delete $table{$target}->{inherit_from};
2382
2383 # Now is the time to deal with those lists. Here's the place to
2384 # decide what shall be done with those lists, all based on the
2385 # values of the target we're currently dealing with.
2386 # - If a value is a coderef, it will be executed with the list of
2387 # inherited values as arguments.
2388 # - If the corresponding key doesn't have a value at all or is the
8483a003 2389 # empty string, the inherited value list will be run through the
bd5192b1
RL
2390 # default combiner (below), and the result becomes this target's
2391 # value.
2392 # - Otherwise, this target's value is assumed to be a string that
2393 # will simply override the inherited list of values.
a26d8be9 2394 my $default_combiner = add();
bd5192b1
RL
2395
2396 my %all_keys =
2397 map { $_ => 1 } (keys %combined_inheritance,
2398 keys %{$table{$target}});
b0b92a5b
RL
2399
2400 sub process_values {
2401 my $object = shift;
2402 my $inherited = shift; # Always a [ list ]
2403 my $target = shift;
2404 my $entry = shift;
2405
9c62a279
RL
2406 $add_called = 0;
2407
b0b92a5b
RL
2408 while(ref($object) eq "CODE") {
2409 $object = $object->(@$inherited);
2410 }
2411 if (!defined($object)) {
2412 return ();
2413 }
2414 elsif (ref($object) eq "ARRAY") {
9c62a279 2415 local $add_called; # To make sure recursive calls don't affect it
b0b92a5b
RL
2416 return [ map { process_values($_, $inherited, $target, $entry) }
2417 @$object ];
2418 } elsif (ref($object) eq "") {
2419 return $object;
2420 } else {
2421 die "cannot handle reference type ",ref($object)
2422 ," found in target ",$target," -> ",$entry,"\n";
2423 }
2424 }
2425
bd5192b1 2426 foreach (sort keys %all_keys) {
9c62a279 2427 my $previous = $combined_inheritance{$_};
bd5192b1
RL
2428
2429 # Current target doesn't have a value for the current key?
2430 # Assign it the default combiner, the rest of this loop body
2431 # will handle it just like any other coderef.
2432 if (!exists $table{$target}->{$_}) {
2433 $table{$target}->{$_} = $default_combiner;
2434 }
2435
b0b92a5b
RL
2436 $table{$target}->{$_} = process_values($table{$target}->{$_},
2437 $combined_inheritance{$_},
2438 $target, $_);
2439 unless(defined($table{$target}->{$_})) {
2440 delete $table{$target}->{$_};
2441 }
c4718849
RL
2442# if ($extra_checks &&
2443# $previous && !($add_called || $previous ~~ $table{$target}->{$_})) {
2444# warn "$_ got replaced in $target\n";
2445# }
bd5192b1
RL
2446 }
2447
2448 # Finally done, return the result.
2449 return %{$table{$target}};
2450}
2451
462ba4f6 2452sub usage
d02b48c6 2453 {
462ba4f6 2454 print STDERR $usage;
10a926c1 2455 print STDERR "\npick os/compiler from:\n";
1641cb60 2456 my $j=0;
6457ad15 2457 my $i;
10a926c1 2458 my $k=0;
6457ad15 2459 foreach $i (sort keys %table)
d02b48c6 2460 {
bd5192b1 2461 next if $table{$i}->{template};
462ba4f6 2462 next if $i =~ /^debug/;
10a926c1
UM
2463 $k += length($i) + 1;
2464 if ($k > 78)
2465 {
2466 print STDERR "\n";
2467 $k=length($i);
2468 }
2469 print STDERR $i . " ";
462ba4f6
UM
2470 }
2471 foreach $i (sort keys %table)
2472 {
bd5192b1 2473 next if $table{$i}->{template};
462ba4f6 2474 next if $i !~ /^debug/;
10a926c1
UM
2475 $k += length($i) + 1;
2476 if ($k > 78)
2477 {
2478 print STDERR "\n";
2479 $k=length($i);
2480 }
2481 print STDERR $i . " ";
d02b48c6 2482 }
10a926c1 2483 print STDERR "\n\nNOTE: If in doubt, on Unix-ish systems use './config'.\n";
462ba4f6 2484 exit(1);
d02b48c6
RE
2485 }
2486
01d99976 2487sub run_dofile
107b5792 2488{
107b5792 2489 my $out = shift;
9fe2bb77 2490 my @templates = @_;
107b5792 2491
ced2c2c5
RS
2492 unlink $out || warn "Can't remove $out, $!"
2493 if -f $out;
9fe2bb77
RL
2494 foreach (@templates) {
2495 die "Can't open $_, $!" unless -f $_;
2496 }
bbf00748
RL
2497 my $perlcmd = (quotify("maybeshell", $config{perl}))[0];
2498 my $cmd = "$perlcmd \"-I.\" \"-Mconfigdata\" \"$dofile\" -o\"Configure\" \"".join("\" \"",@templates)."\" > \"$out.new\"";
9fe2bb77
RL
2499 #print STDERR "DEBUG[run_dofile]: \$cmd = $cmd\n";
2500 system($cmd);
107b5792
RL
2501 exit 1 if $? != 0;
2502 rename("$out.new", $out) || die "Can't rename $out.new, $!";
2503}
2504
656bbdc6
AP
2505sub which
2506{
2507 my ($name)=@_;
2508
2509 if (eval { require IPC::Cmd; 1; }) {
2510 IPC::Cmd->import();
2511 return scalar IPC::Cmd::can_run($name);
2512 } else {
2513 # if there is $directories component in splitpath,
2514 # then it's not something to test with $PATH...
2515 return $name if (File::Spec->splitpath($name))[1];
2516
2517 foreach (File::Spec->path()) {
2518 my $fullpath = catfile($_, "$name$target{exe_extension}");
2519 if (-f $fullpath and -x $fullpath) {
2520 return $fullpath;
2521 }
2522 }
2523 }
2524}
2525
00ae96ca
RL
2526# Configuration printer ##############################################
2527
2528sub print_table_entry
2529{
2530 my $target = shift;
2531 my %target = resolve_config($target);
2532 my $type = shift;
2533
2534 # Don't print the templates
2535 return if $target{template};
2536
2537 my @sequence = (
f0bd4686 2538 "sys_id",
00ae96ca
RL
2539 "cc",
2540 "cflags",
bcb1977b 2541 "defines",
f0bd4686
RL
2542 "unistd",
2543 "ld",
00ae96ca 2544 "lflags",
67d81419 2545 "loutflag",
c86ddbe6 2546 "plib_lflags",
1740c162 2547 "ex_libs",
00ae96ca 2548 "bn_ops",
67d81419
RL
2549 "apps_aux_src",
2550 "cpuid_asm_src",
2551 "uplink_aux_src",
2552 "bn_asm_src",
2553 "ec_asm_src",
2554 "des_asm_src",
2555 "aes_asm_src",
2556 "bf_asm_src",
2557 "md5_asm_src",
2558 "cast_asm_src",
2559 "sha1_asm_src",
2560 "rc4_asm_src",
2561 "rmd160_asm_src",
2562 "rc5_asm_src",
2563 "wp_asm_src",
2564 "cmll_asm_src",
2565 "modes_asm_src",
2566 "padlock_asm_src",
2567 "chacha_asm_src",
2568 "poly1035_asm_src",
9c62a279 2569 "thread_scheme",
00ae96ca
RL
2570 "perlasm_scheme",
2571 "dso_scheme",
2572 "shared_target",
2573 "shared_cflag",
67d81419 2574 "shared_defines",
00ae96ca 2575 "shared_ldflag",
64c443e3 2576 "shared_rcflag",
00ae96ca 2577 "shared_extension",
e987f9f2 2578 "dso_extension",
f0bd4686
RL
2579 "obj_extension",
2580 "exe_extension",
00ae96ca 2581 "ranlib",
f0bd4686 2582 "ar",
00ae96ca 2583 "arflags",
67d81419
RL
2584 "aroutflag",
2585 "rc",
2586 "rcflags",
2587 "rcoutflag",
2588 "mt",
2589 "mtflags",
2590 "mtinflag",
2591 "mtoutflag",
00ae96ca 2592 "multilib",
f0bd4686 2593 "build_scheme",
00ae96ca
RL
2594 );
2595
2596 if ($type eq "TABLE") {
2597 print "\n";
2598 print "*** $target\n";
cb212f23
RL
2599 foreach (@sequence) {
2600 if (ref($target{$_}) eq "ARRAY") {
2601 printf "\$%-12s = %s\n", $_, join(" ", @{$target{$_}});
2602 } else {
2603 printf "\$%-12s = %s\n", $_, $target{$_};
2604 }
2605 }
00ae96ca
RL
2606 } elsif ($type eq "HASH") {
2607 my $largest =
2608 length((sort { length($a) <=> length($b) } @sequence)[-1]);
2609 print " '$target' => {\n";
2610 foreach (@sequence) {
2611 if ($target{$_}) {
cb212f23
RL
2612 if (ref($target{$_}) eq "ARRAY") {
2613 print " '",$_,"'"," " x ($largest - length($_))," => [ ",join(", ", map { "'$_'" } @{$target{$_}})," ],\n";
2614 } else {
2615 print " '",$_,"'"," " x ($largest - length($_))," => '",$target{$_},"',\n";
2616 }
00ae96ca
RL
2617 }
2618 }
2619 print " },\n";
2620 }
2621}
2622
2623# Utility routines ###################################################
2624
2e963849
RL
2625# On VMS, if the given file is a logical name, File::Spec::Functions
2626# will consider it an absolute path. There are cases when we want a
2627# purely syntactic check without checking the environment.
2628sub isabsolute {
2629 my $file = shift;
2630
2631 # On non-platforms, we just use file_name_is_absolute().
2632 return file_name_is_absolute($file) unless $^O eq "VMS";
2633
a2dcdb57 2634 # If the file spec includes a device or a directory spec,
2e963849
RL
2635 # file_name_is_absolute() is perfectly safe.
2636 return file_name_is_absolute($file) if $file =~ m|[:\[]|;
2637
2638 # Here, we know the given file spec isn't absolute
2639 return 0;
2640}
2641
ec182ef0
RL
2642# Makes a directory absolute and cleans out /../ in paths like foo/../bar
2643# On some platforms, this uses rel2abs(), while on others, realpath() is used.
2644# realpath() requires that at least all path components except the last is an
2645# existing directory. On VMS, the last component of the directory spec must
2646# exist.
2647sub absolutedir {
2648 my $dir = shift;
2649
2650 # realpath() is quite buggy on VMS. It uses LIB$FID_TO_NAME, which
2651 # will return the volume name for the device, no matter what. Also,
2652 # it will return an incorrect directory spec if the argument is a
2653 # directory that doesn't exist.
2654 if ($^O eq "VMS") {
2655 return rel2abs($dir);
2656 }
2657
2658 # We use realpath() on Unix, since no other will properly clean out
2659 # a directory spec.
2660 use Cwd qw/realpath/;
2661
2662 return realpath($dir);
2663}
2664
fe05264e
RL
2665sub quotify {
2666 my %processors = (
2667 perl => sub { my $x = shift;
2668 $x =~ s/([\\\$\@"])/\\$1/g;
2669 return '"'.$x.'"'; },
bbf00748
RL
2670 maybeshell => sub { my $x = shift;
2671 (my $y = $x) =~ s/([\\\"])/\\$1/g;
2672 if ($x ne $y || $x =~ m|\s|) {
2673 return '"'.$y.'"';
2674 } else {
2675 return $x;
2676 }
2677 },
fe05264e
RL
2678 );
2679 my $for = shift;
2680 my $processor =
2681 defined($processors{$for}) ? $processors{$for} : sub { shift; };
2682
2110febb 2683 return map { $processor->($_); } @_;
fe05264e 2684}
107b5792 2685
9fe2bb77
RL
2686# collect_from_file($filename, $line_concat_cond_re, $line_concat)
2687# $filename is a file name to read from
2688# $line_concat_cond_re is a regexp detecting a line continuation ending
2689# $line_concat is a CODEref that takes care of concatenating two lines
2690sub collect_from_file {
2691 my $filename = shift;
2692 my $line_concat_cond_re = shift;
2693 my $line_concat = shift;
2694
2695 open my $fh, $filename || die "unable to read $filename: $!\n";
2696 return sub {
2697 my $saved_line = "";
2698 $_ = "";
2699 while (<$fh>) {
04f171c0 2700 s|\R$||;
9fe2bb77
RL
2701 if (defined $line_concat) {
2702 $_ = $line_concat->($saved_line, $_);
2703 $saved_line = "";
2704 }
2705 if (defined $line_concat_cond_re && /$line_concat_cond_re/) {
2706 $saved_line = $_;
2707 next;
2708 }
2709 return $_;
2710 }
2711 die "$filename ending with continuation line\n" if $_;
2712 close $fh;
2713 return undef;
2714 }
2715}
2716
2717# collect_from_array($array, $line_concat_cond_re, $line_concat)
2718# $array is an ARRAYref of lines
2719# $line_concat_cond_re is a regexp detecting a line continuation ending
2720# $line_concat is a CODEref that takes care of concatenating two lines
2721sub collect_from_array {
2722 my $array = shift;
2723 my $line_concat_cond_re = shift;
2724 my $line_concat = shift;
2725 my @array = (@$array);
2726
2727 return sub {
2728 my $saved_line = "";
2729 $_ = "";
2730 while (defined($_ = shift @array)) {
04f171c0 2731 s|\R$||;
9fe2bb77
RL
2732 if (defined $line_concat) {
2733 $_ = $line_concat->($saved_line, $_);
2734 $saved_line = "";
2735 }
2736 if (defined $line_concat_cond_re && /$line_concat_cond_re/) {
2737 $saved_line = $_;
2738 next;
2739 }
2740 return $_;
2741 }
2742 die "input text ending with continuation line\n" if $_;
2743 return undef;
2744 }
2745}
2746
2747# collect_information($lineiterator, $line_continue, $regexp => $CODEref, ...)
2748# $lineiterator is a CODEref that delivers one line at a time.
107b5792
RL
2749# All following arguments are regex/CODEref pairs, where the regexp detects a
2750# line and the CODEref does something with the result of the regexp.
2751sub collect_information {
9fe2bb77 2752 my $lineiterator = shift;
107b5792
RL
2753 my %collectors = @_;
2754
9fe2bb77 2755 while(defined($_ = $lineiterator->())) {
04f171c0 2756 s|\R$||;
9fe2bb77 2757 my $found = 0;
2b6b606c
RL
2758 if ($collectors{"BEFORE"}) {
2759 $collectors{"BEFORE"}->($_);
2760 }
9fe2bb77 2761 foreach my $re (keys %collectors) {
2b6b606c 2762 if ($re !~ /^OTHERWISE|BEFORE|AFTER$/ && /$re/) {
9fe2bb77
RL
2763 $collectors{$re}->($lineiterator);
2764 $found = 1;
2765 };
2766 }
2767 if ($collectors{"OTHERWISE"}) {
2768 $collectors{"OTHERWISE"}->($lineiterator, $_)
2769 unless $found || !defined $collectors{"OTHERWISE"};
2770 }
2b6b606c
RL
2771 if ($collectors{"AFTER"}) {
2772 $collectors{"AFTER"}->($_);
2773 }
107b5792 2774 }
107b5792 2775}
ce959812
RL
2776
2777# tokenize($line)
2778# $line is a line of text to split up into tokens
2779# returns a list of tokens
2780#
2781# Tokens are divided by spaces. If the tokens include spaces, they
2782# have to be quoted with single or double quotes. Double quotes
2783# inside a double quoted token must be escaped. Escaping is done
2784# with backslash.
2785# Basically, the same quoting rules apply for " and ' as in any
2786# Unix shell.
2787sub tokenize {
2788 my $line = my $debug_line = shift;
2789 my @result = ();
2790
2791 while ($line =~ s|^\s+||, $line ne "") {
2792 my $token = "";
2793 while ($line ne "" && $line !~ m|^\s|) {
2794 if ($line =~ m/^"((?:[^"\\]+|\\.)*)"/) {
2795 $token .= $1;
2796 $line = $';
2797 } elsif ($line =~ m/^'([^']*)'/) {
2798 $token .= $1;
2799 $line = $';
2800 } elsif ($line =~ m/^(\S+)/) {
2801 $token .= $1;
2802 $line = $';
2803 }
2804 }
2805 push @result, $token;
2806 }
2807
2808 if ($ENV{CONFIGURE_DEBUG_TOKENIZE}) {
2809 print STDERR "DEBUG[tokenize]: Parsed '$debug_line' into:\n";
2810 print STDERR "DEBUG[tokenize]: ('", join("', '", @result), "')\n";
2811 }
2812 return @result;
2813}