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