Print out bad content octets.
[openssl.git] / Configure
1 #! /usr/bin/env perl
2 # -*- mode: perl; -*-
3
4 ##
5 ##  Configure -- OpenSSL source tree configuration script
6 ##  If editing this file, run this command before committing
7 ##      make -f Makefile.in TABLE
8 ##
9
10 require 5.000;
11 use strict;
12 use File::Basename;
13 use File::Spec::Functions qw/:DEFAULT abs2rel rel2abs/;
14 use File::Path qw/mkpath/;
15
16 # see INSTALL for instructions.
17
18 my $usage="Usage: Configure [no-<cipher> ...] [enable-<cipher> ...] [experimental-<cipher> ...] [-Dxxx] [-lxxx] [-Lxxx] [-fxxx] [-Kxxx] [no-hw-xxx|no-hw] [[no-]threads] [[no-]shared] [[no-]zlib|zlib-dynamic] [no-asm] [no-dso] [no-egd] [sctp] [386] [--prefix=DIR] [--openssldir=OPENSSLDIR] [--with-xxx[=vvv]] [--config=FILE] os/compiler[:flags]\n";
19
20 # Options:
21 #
22 # --config      add the given configuration file, which will be read after
23 #               any "Configurations*" files that are found in the same
24 #               directory as this script.
25 # --prefix      prefix for the OpenSSL installation, which includes the
26 #               directories bin, lib, include, share/man, share/doc/openssl
27 #               This becomes the value of INSTALLTOP in Makefile
28 #               (Default: /usr/local)
29 # --openssldir  OpenSSL data area, such as openssl.cnf, certificates and keys.
30 #               If it's a relative directory, it will be added on the directory
31 #               given with --prefix.
32 #               This becomes the value of OPENSSLDIR in Makefile and in C.
33 #               (Default: PREFIX/ssl)
34 #
35 # --install_prefix  Additional prefix for package builders (empty by
36 #               default).  This needn't be set in advance, you can
37 #               just as well use "make INSTALL_PREFIX=/whatever install".
38 #
39 # --cross-compile-prefix Add specified prefix to binutils components.
40 #
41 # --api         One of 0.9.8, 1.0.0 or 1.1.0.  Do not compile support for
42 #               interfaces deprecated as of the specified OpenSSL version.
43 #
44 # no-hw-xxx     do not compile support for specific crypto hardware.
45 #               Generic OpenSSL-style methods relating to this support
46 #               are always compiled but return NULL if the hardware
47 #               support isn't compiled.
48 # no-hw         do not compile support for any crypto hardware.
49 # [no-]threads  [don't] try to create a library that is suitable for
50 #               multithreaded applications (default is "threads" if we
51 #               know how to do it)
52 # [no-]shared   [don't] try to create shared libraries when supported.
53 # no-asm        do not use assembler
54 # no-dso        do not compile in any native shared-library methods. This
55 #               will ensure that all methods just return NULL.
56 # no-egd        do not compile support for the entropy-gathering daemon APIs
57 # [no-]zlib     [don't] compile support for zlib compression.
58 # zlib-dynamic  Like "zlib", but the zlib library is expected to be a shared
59 #               library and will be loaded in run-time by the OpenSSL library.
60 # sctp          include SCTP support
61 # 386           generate 80386 code
62 # no-sse2       disables IA-32 SSE2 code, above option implies no-sse2
63 # no-<cipher>   build without specified algorithm (rsa, idea, rc5, ...)
64 # -<xxx> +<xxx> compiler options are passed through
65 #
66 # DEBUG_SAFESTACK use type-safe stacks to enforce type-safety on stack items
67 #               provided to stack calls. Generates unique stack functions for
68 #               each possible stack type.
69 # BN_LLONG      use the type 'long long' in crypto/bn/bn.h
70 # RC4_CHAR      use 'char' instead of 'int' for RC4_INT in crypto/rc4/rc4.h
71 # Following are set automatically by this script
72 #
73 # MD5_ASM       use some extra md5 assember,
74 # SHA1_ASM      use some extra sha1 assember, must define L_ENDIAN for x86
75 # RMD160_ASM    use some extra ripemd160 assember,
76 # SHA256_ASM    sha256_block is implemented in assembler
77 # SHA512_ASM    sha512_block is implemented in assembler
78 # AES_ASM       ASE_[en|de]crypt is implemented in assembler
79
80 # Minimum warning options... any contributions to OpenSSL should at least get
81 # past these.
82
83 my $gcc_devteam_warn = "-Wall -pedantic -DPEDANTIC -Wno-long-long -Wsign-compare -Wmissing-prototypes -Wshadow -Wformat -Wtype-limits -Werror -DREF_CHECK -DDEBUG_UNUSED";
84
85 # These are used in addition to $gcc_devteam_warn when the compiler is clang.
86 # TODO(openssl-team): fix problems and investigate if (at least) the
87 # following warnings can also be enabled:
88 # -Wswitch-enum, -Wunused-macros, -Wmissing-field-initializers,
89 # -Wcast-align,
90 # -Wunreachable-code -Wunused-parameter -Wlanguage-extension-token
91 # -Wextended-offsetof
92 my $clang_devteam_warn = "-Wno-unused-parameter -Wno-missing-field-initializers -Wno-language-extension-token -Wno-extended-offsetof -Wconditional-uninitialized -Qunused-arguments -Wincompatible-pointer-types-discards-qualifiers -Wmissing-variable-declarations";
93
94 # Warn that "make depend" should be run?
95 my $warn_make_depend = 0;
96
97 # These are used in addition to $gcc_devteam_warn unless this is a mingw build.
98 # This adds backtrace information to the memory leak info.
99 my $memleak_devteam_backtrace = "-rdynamic -DCRYPTO_MDEBUG_BACKTRACE";
100
101 my $strict_warnings = 0;
102
103 # As for $BSDthreads. Idea is to maintain "collective" set of flags,
104 # which would cover all BSD flavors. -pthread applies to them all,
105 # but is treated differently. OpenBSD expands is as -D_POSIX_THREAD
106 # -lc_r, which is sufficient. FreeBSD 4.x expands it as -lc_r,
107 # which has to be accompanied by explicit -D_THREAD_SAFE and
108 # sometimes -D_REENTRANT. FreeBSD 5.x expands it as -lc_r, which
109 # seems to be sufficient?
110 my $BSDthreads="-pthread -D_THREAD_SAFE -D_REENTRANT";
111
112 #
113 # API compability name to version number mapping.
114 #
115 my $maxapi = "1.1.0";           # API for "no-deprecated" builds
116 my $apitable = {
117     "1.1.0" => "0x10100000L",
118     "1.0.0" => "0x10000000L",
119     "0.9.8" => "0x00908000L",
120 };
121
122 my $base_target = "BASE";   # The template that all other inherit from
123 our %table = ();
124 our %config = ();
125
126 # Forward declarations ###############################################
127
128 # read_config(filename)
129 #
130 # Reads a configuration file and populates %table with the contents
131 # (which the configuration file places in %targets).
132 sub read_config;
133
134 # resolve_config(target)
135 #
136 # Resolves all the late evalutations, inheritances and so on for the
137 # chosen target and any target it inherits from.
138 sub resolve_config;
139
140
141 # Information collection #############################################
142
143 # Unified build supports separate build dir
144 my $srcdir = catdir(absolutedir(dirname($0))); # catdir ensures local syntax
145 my $blddir = catdir(absolutedir("."));         # catdir ensures local syntax
146 my $dofile = abs2rel(catfile($srcdir, "util/dofile.pl"));
147
148 $config{sourcedir} = abs2rel($srcdir);
149 $config{builddir} = abs2rel($blddir);
150
151 # Collect version numbers
152 $config{version} = "unknown";
153 $config{version_num} = "unknown";
154 $config{shlib_version_number} = "unknown";
155 $config{shlib_version_history} = "unknown";
156
157 collect_information(
158     collect_from_file(catfile($srcdir,'include/openssl/opensslv.h')),
159     qr/OPENSSL.VERSION.TEXT.*OpenSSL (\S+) / => sub { $config{version} = $1; },
160     qr/OPENSSL.VERSION.NUMBER.*(0x\S+)/      => sub { $config{version_num}=$1 },
161     qr/SHLIB_VERSION_NUMBER *"([^"]+)"/      => sub { $config{shlib_version_number}=$1 },
162     qr/SHLIB_VERSION_HISTORY *"([^"]*)"/     => sub { $config{shlib_version_history}=$1 }
163     );
164 if ($config{shlib_version_history} ne "") { $config{shlib_version_history} .= ":"; }
165
166 ($config{major}, $config{minor})
167     = ($config{version} =~ /^([0-9]+)\.([0-9\.]+)/);
168 ($config{shlib_major}, $config{shlib_minor})
169     = ($config{shlib_version_number} =~ /^([0-9]+)\.([0-9\.]+)/);
170 die "erroneous version information in opensslv.h: ",
171     "$config{major}, $config{minor}, $config{shlib_major}, $config{shlib_minor}\n"
172     if ($config{major} eq "" || $config{minor} eq ""
173         || $config{shlib_major} eq "" ||  $config{shlib_minor} eq "");
174
175 # Collect target configurations
176
177 my $pattern = catfile(dirname($0), "Configurations", "*.conf");
178 foreach (sort glob($pattern) ) {
179     &read_config($_);
180 }
181
182
183 print "Configuring OpenSSL version $config{version} (0x$config{version_num})\n";
184
185 $config{perl};
186 $config{prefix}="";
187 $config{openssldir}="";
188 $config{processor}="";
189 $config{libdir}="";
190 $config{install_prefix}= "$ENV{'INSTALL_PREFIX'}";
191 $config{cross_compile_prefix}="";
192 $config{fipslibdir}="/usr/local/ssl/fips-2.0/lib/";
193 my $nofipscanistercheck=0;
194 $config{baseaddr}="0xFB00000";
195 my $no_threads=0;
196 my $threads=0;
197 $config{no_shared}=0; # but "no-shared" is default
198 my $zlib=1;      # but "no-zlib" is default
199 my $no_rfc3779=0;
200 my $no_asm=0;
201 my $no_dso=0;
202 my $default_ranlib;
203 $config{fips}=0;
204
205 # Top level directories to build
206 $config{dirs} = [ "crypto", "ssl", "engines", "apps", "test", "tools" ];
207 # crypto/ subdirectories to build
208 $config{sdirs} = [
209     "objects",
210     "md2", "md4", "md5", "sha", "mdc2", "hmac", "ripemd", "whrlpool", "poly1305",
211     "des", "aes", "rc2", "rc4", "rc5", "idea", "bf", "cast", "camellia", "seed", "chacha", "modes",
212     "bn", "ec", "rsa", "dsa", "dh", "dso", "engine",
213     "buffer", "bio", "stack", "lhash", "rand", "err",
214     "evp", "asn1", "pem", "x509", "x509v3", "conf", "txt_db", "pkcs7", "pkcs12", "comp", "ocsp", "ui",
215     "cms", "ts", "jpake", "srp", "cmac", "ct", "async", "kdf"
216     ];
217
218 # Known TLS and DTLS protocols
219 my @tls = qw(ssl3 tls1 tls1_1 tls1_2);
220 my @dtls = qw(dtls1 dtls1_2);
221
222 # Explicitelly known options that are possible to disable.  They can
223 # be regexps, and will be used like this: /^no-${option}$/
224 # For developers: keep it sorted alphabetically
225
226 my @disablables = (
227     "aes",
228     "asm",
229     "async",
230     "autoalginit",
231     "autoerrinit",
232     "bf",
233     "camellia",
234     "capieng",
235     "cast",
236     "chacha",
237     "cmac",
238     "cms",
239     "comp",
240     "crypto-mdebug",
241     "ct",
242     "deprecated",
243     "des",
244     "dgram",
245     "dh",
246     "dsa",
247     "dso",
248     "dtls",
249     "dynamic[-_]engine",
250     "ec",
251     "ec2m",
252     "ecdh",
253     "ecdsa",
254     "ec_nistp_64_gcc_128",
255     "egd",
256     "engine",
257     "err",                      # Really???
258     "heartbeats",
259     "hmac",
260     "hw(-.+)?",
261     "idea",
262     "jpake",
263     "locking",                  # Really???
264     "md2",
265     "md4",
266     "md5",
267     "mdc2",
268     "md[-_]ghost94",
269     "nextprotoneg",
270     "ocb",
271     "ocsp",
272     "poly1305",
273     "posix-io",
274     "psk",
275     "rc2",
276     "rc4",
277     "rc5",
278     "rdrand",
279     "rfc3779",
280     "rijndael",                 # Old AES name
281     "rmd160",
282     "rsa",
283     "scrypt",
284     "sct",
285     "sctp",
286     "seed",
287     "sha",
288     "shared",
289     "sock",
290     "srp",
291     "srtp",
292     "sse2",
293     "ssl",
294     "ssl-trace",
295     "static-engine",
296     "stdio",
297     "threads",
298     "tls",
299     "unit-test",
300     "whirlpool",
301     "zlib",
302     "zlib-dynamic",
303     );
304 foreach my $proto ((@tls, @dtls))
305         {
306         push(@disablables, $proto);
307         push(@disablables, "$proto-method");
308         }
309
310 # All of the following is disabled by default (RC5 was enabled before 0.9.8):
311
312 my %disabled = ( # "what"         => "comment" [or special keyword "experimental"]
313                  "ec_nistp_64_gcc_128" => "default",
314                  "egd"            => "default",
315                  "jpake"          => "experimental",
316                  "md2"            => "default",
317                  "rc5"            => "default",
318                  "sctp"           => "default",
319                  "shared"         => "default",
320                  "ssl-trace"      => "default",
321                  "unit-test"      => "default",
322                  "zlib"           => "default",
323                  "crypto-mdebug"  => "default",
324                );
325 my @experimental = ();
326
327 # Note: => pair form used for aesthetics, not to truly make a hash table
328 my @disable_cascades = (
329     # "what"            => [ "cascade", ... ]
330     sub { $config{processor} eq "386" }
331                         => [ "sse2" ],
332     "ssl"               => [ "ssl3" ],
333     "ssl3-method"       => [ "ssl3" ],
334     "zlib"              => [ "zlib-dynamic" ],
335     "rijndael"          => [ "aes" ],
336     "des"               => [ "mdc2" ],
337     "ec"                => [ "ecdsa", "ecdh" ],
338     "psk"               => [ "jpake" ],
339
340     "dgram"             => [ "dtls" ],
341     "dtls"              => [ @dtls ],
342
343     # SSL 3.0, (D)TLS 1.0 and TLS 1.1 require MD5 and SHA
344     "md5"               => [ "ssl", "tls1", "tls1_1", "dtls1" ],
345     "sha"               => [ "ssl", "tls1", "tls1_1", "dtls1" ],
346
347     # Additionally, SSL 3.0 requires either RSA or DSA+DH
348     sub { $disabled{rsa}
349           && ($disabled{dsa} || $disabled{dh}); }
350                         => [ "ssl" ],
351
352     # (D)TLS 1.0 and TLS 1.1 also require either RSA or DSA+DH
353     # or ECDSA + ECDH.  (D)TLS 1.2 has this requirement as well.
354     # (XXX: We don't support PSK-only builds).
355     sub { $disabled{rsa}
356           && ($disabled{dsa} || $disabled{dh})
357           && ($disabled{ecdsa} || $disabled{ecdh}); }
358                         => [ "tls1", "tls1_1", "tls1_2",
359                              "dtls1", "dtls1_2" ],
360
361     "tls"               => [ @tls ],
362
363     # SRP and HEARTBEATS require TLSEXT
364     "tlsext"            => [ "srp", "heartbeats" ],
365     );
366
367 # Avoid protocol support holes.  Also disable all versions below N, if version
368 # N is disabled while N+1 is enabled.
369 #
370 my @list = (reverse @tls);
371 while ((my $first, my $second) = (shift @list, shift @list)) {
372     last unless @list;
373     push @disable_cascades, ( sub { !$disabled{$first} && $disabled{$second} }
374                               => [ @list ] );
375     unshift @list, $second;
376 }
377 my @list = (reverse @dtls);
378 while ((my $first, my $second) = (shift @list, shift @list)) {
379     last unless @list;
380     push @disable_cascades, ( sub { !$disabled{$first} && $disabled{$second} }
381                               => [ @list ] );
382     unshift @list, $second;
383 }
384
385 # Construct the string of what $config{depdefines} should look like with
386 # the defaults from %disabled above.  (we need this to see if we should
387 # advise the user to run "make depend"):
388 my @default_depdefines =
389     map { my $x = $_; $x =~ tr{[a-z]-}{[A-Z]_}; "OPENSSL_NO_$x"; }
390     grep { $disabled{$_} !~ /\(no-depdefines\)$/ }
391     sort keys %disabled;
392
393 # Explicit "no-..." options will be collected in %disabled along with the defaults.
394 # To remove something from %disabled, use "enable-foo" (unless it's experimental).
395 # For symmetry, "disable-foo" is a synonym for "no-foo".
396
397 # For features called "experimental" here, a more explicit "experimental-foo" is needed to enable.
398 # We will collect such requests in @experimental.
399 # To avoid accidental use of experimental features, applications will have to use -DOPENSSL_EXPERIMENTAL_FOO.
400
401
402 my $no_sse2=0;
403
404 &usage if ($#ARGV < 0);
405
406 my $user_cflags="";
407 my @user_defines=();
408 my $unified = 0;
409 $config{depdefines}=[];
410 $config{openssl_experimental_defines}=[];
411 $config{openssl_api_defines}=[];
412 $config{openssl_algorithm_defines}=[];
413 $config{openssl_thread_defines}=[];
414 $config{openssl_sys_defines}=[];
415 $config{openssl_other_defines}=[];
416 my $libs="";
417 my $target="";
418 $config{options}="";
419 my $make_depend=0;
420 my %withargs=();
421 my $build_prefix = "release_";
422
423 my @argvcopy=@ARGV;
424
425 if (grep /^reconf(igure)?$/, @argvcopy) {
426     if (-f "./configdata.pm") {
427         my $file = "./configdata.pm";
428         unless (my $return = do $file) {
429             die "couldn't parse $file: $@" if $@;
430             die "couldn't do $file: $!"    unless defined $return;
431             die "couldn't run $file"       unless $return;
432         }
433
434         @argvcopy = defined($configdata::config{perlargv}) ?
435             @{$configdata::config{perlargv}} : ();
436         die "Incorrect data to reconfigure, please do a normal configuration\n"
437             if (grep(/^reconf/,@argvcopy));
438         $ENV{CROSS_COMPILE} = $configdata::config{cross_compile_prefix}
439             if defined($configdata::config{cross_compile_prefix});
440         $ENV{CROSS_COMPILE} = $configdata::config{cc}
441             if defined($configdata::config{cc});
442
443         print "Reconfiguring with: ", join(" ",@argvcopy), "\n";
444         print "    CROSS_COMPILE = ",$ENV{CROSS_COMPILE},"\n"
445             if $ENV{CROSS_COMPILE};
446         print "    CC = ",$ENV{CC},"\n" if $ENV{CC};
447     } elsif (open IN, "<Makefile") {
448         #
449         # THIS SECTION IS TEMPORARY, it helps transitioning from Makefile
450         # centered information gathering the reading configdata.pm
451         #
452         while (<IN>) {
453             chomp;
454             if (/^CONFIGURE_ARGS=\s*(.*)\s*/) {
455                 # Older form, we split the string and hope for the best
456                 @argvcopy = split /\s+/, $_;
457                 die "Incorrect data to reconfigure, please do a normal configuration\n"
458                     if (grep(/^reconf/,@argvcopy));
459             } elsif (/^CROSS_COMPILE=\s*(.*)/) {
460                 $ENV{CROSS_COMPILE}=$1;
461             } elsif (/^CC=\s*(?:\$\(CROSS_COMPILE\))?(.*?)$/) {
462                 $ENV{CC}=$1;
463             }
464         }
465         #
466         # END OF TEMPORARY SECTION
467         #
468     } else {
469         die "Insufficient data to reconfigure, please do a normal configuration\n";
470     }
471 }
472
473 $config{perlargv} = [ @argvcopy ];
474
475 my %unsupported_options = ();
476 foreach (@argvcopy)
477         {
478         s /^-no-/no-/; # some people just can't read the instructions
479
480         # rewrite some options in "enable-..." form
481         s /^-?-?shared$/enable-shared/;
482         s /^sctp$/enable-sctp/;
483         s /^threads$/enable-threads/;
484         s /^zlib$/enable-zlib/;
485         s /^zlib-dynamic$/enable-zlib-dynamic/;
486
487         if (/^(no|disable|enable|experimental)-(.+)$/)
488                 {
489                 my $word = $2;
490                 if (!grep { $word =~ /^${_}$/ } @disablables)
491                         {
492                         $unsupported_options{$_} = 1;
493                         next;
494                         }
495                 }
496         if (/^no-(.+)$/ || /^disable-(.+)$/)
497                 {
498                 if (!($disabled{$1} eq "experimental"))
499                         {
500                         foreach my $proto ((@tls, @dtls))
501                                 {
502                                 if ($1 eq "$proto-method")
503                                         {
504                                         $disabled{"$proto"} = "option($proto-method)";
505                                         last;
506                                         }
507                                 }
508                         if ($1 eq "dtls")
509                                 {
510                                 foreach my $proto (@dtls)
511                                         {
512                                         $disabled{$proto} = "option(dtls)";
513                                         }
514                                 }
515                         elsif ($1 eq "ssl")
516                                 {
517                                 # Last one of its kind
518                                 $disabled{"ssl3"} = "option(ssl)";
519                                 }
520                         elsif ($1 eq "tls")
521                                 {
522                                 # XXX: Tests will fail if all SSL/TLS
523                                 # protocols are disabled.
524                                 foreach my $proto (@tls)
525                                         {
526                                         $disabled{$proto} = "option(tls)";
527                                         }
528                                 }
529                         else
530                                 {
531                                 $disabled{$1} = "option";
532                                 }
533                         }
534                 }
535         elsif (/^enable-(.+)$/ || /^experimental-(.+)$/)
536                 {
537                 my $algo = $1;
538                 if ($disabled{$algo} eq "experimental")
539                         {
540                         die "You are requesting an experimental feature; please say 'experimental-$algo' if you are sure\n"
541                                 unless (/^experimental-/);
542                         push @experimental, $algo;
543                         }
544                 delete $disabled{$algo};
545
546                 $threads = 1 if ($algo eq "threads");
547                 }
548         elsif (/^--strict-warnings$/)
549                 {
550                 $strict_warnings = 1;
551                 }
552         elsif (/^--debug$/)
553                 {
554                 $build_prefix = "debug_";
555                 }
556         elsif (/^--release$/)
557                 {
558                 $build_prefix = "release_";
559                 }
560         elsif (/^386$/)
561                 { $config{processor}=386; }
562         elsif (/^fips$/)
563                 {
564                 $config{fips}=1;
565                 }
566         elsif (/^rsaref$/)
567                 {
568                 # No RSAref support any more since it's not needed.
569                 # The check for the option is there so scripts aren't
570                 # broken
571                 }
572         elsif (/^nofipscanistercheck$/)
573                 {
574                 $config{fips} = 1;
575                 $nofipscanistercheck = 1;
576                 }
577         elsif (/^[-+]/)
578                 {
579                 if (/^--unified$/)
580                         {
581                         $unified=1;
582                         }
583                 elsif (/^--prefix=(.*)$/)
584                         {
585                         $config{prefix}=$1;
586                         die "Directory given with --prefix MUST be absolute\n"
587                                 unless file_name_is_absolute($config{prefix});
588                         }
589                 elsif (/^--api=(.*)$/)
590                         {
591                         $config{api}=$1;
592                         }
593                 elsif (/^--libdir=(.*)$/)
594                         {
595                         $config{libdir}=$1;
596                         }
597                 elsif (/^--openssldir=(.*)$/)
598                         {
599                         $config{openssldir}=$1;
600                         }
601                 elsif (/^--install.prefix=(.*)$/)
602                         {
603                         $config{install_prefix}=$1;
604                         }
605                 elsif (/^--with-zlib-lib=(.*)$/)
606                         {
607                         $withargs{zlib_lib}=$1;
608                         }
609                 elsif (/^--with-zlib-include=(.*)$/)
610                         {
611                         $withargs{zlib_include}="-I$1";
612                         }
613                 elsif (/^--with-fipslibdir=(.*)$/)
614                         {
615                         $config{fipslibdir}="$1/";
616                         }
617                 elsif (/^--with-baseaddr=(.*)$/)
618                         {
619                         $config{baseaddr}="$1";
620                         }
621                 elsif (/^--cross-compile-prefix=(.*)$/)
622                         {
623                         $config{cross_compile_prefix}=$1;
624                         }
625                 elsif (/^--config=(.*)$/)
626                         {
627                         read_config $1;
628                         }
629                 elsif (/^-[lL](.*)$/ or /^-Wl,/)
630                         {
631                         $libs.=$_." ";
632                         }
633                 elsif (/^-D(.*)$/)
634                         {
635                         push @user_defines, $1;
636                         }
637                 else    # common if (/^[-+]/), just pass down...
638                         {
639                         $_ =~ s/%([0-9a-f]{1,2})/chr(hex($1))/gei;
640                         $user_cflags.=$_." ";
641                         }
642                 }
643         elsif ($_ =~ /^([^:]+):(.+)$/)
644                 {
645                 eval "\$table{\$1} = \"$2\""; # allow $xxx constructs in the string
646                 $target=$1;
647                 }
648         else
649                 {
650                 die "target already defined - $target (offending arg: $_)\n" if ($target ne "");
651                 $target=$_;
652                 }
653         unless ($_ eq $target || /^no-/ || /^disable-/)
654                 {
655                 # "no-..." follows later after implied disactivations
656                 # have been derived.  (Don't take this too seroiusly,
657                 # we really only write OPTIONS to the Makefile out of
658                 # nostalgia.)
659
660                 if ($config{options} eq "")
661                         { $config{options} = $_; }
662                 else
663                         { $config{options} .= " ".$_; }
664                 }
665
666         if (defined($config{api}) && !exists $apitable->{$config{api}}) {
667                 die "***** Unsupported api compatibility level: $config{api}\n",
668         }
669
670         if (keys %unsupported_options)
671                 {
672                 die "***** Unsupported options: ",
673                         join(", ", keys %unsupported_options), "\n";
674                 }
675         }
676
677 if ($config{fips})
678         {
679         delete $disabled{"shared"} if ($disabled{"shared"} =~ /^default/);
680         }
681 else
682         {
683         @{$config{dirs}} = grep !/^fips$/, @{$config{dirs}};
684         }
685
686 my @tocheckfor = (keys %disabled);
687 while (@tocheckfor) {
688     my %new_tocheckfor = ();
689     my @cascade_copy = (@disable_cascades);
690     while (@cascade_copy) {
691         my ($test, $descendents) = (shift @cascade_copy, shift @cascade_copy);
692         if (ref($test) eq "CODE" ? $test->() : defined($disabled{$test})) {
693             map {
694                 $new_tocheckfor{$_} => 1; $disabled{$_} = "forced";
695             } grep { !defined($disabled{$_}) } @$descendents;
696         }
697     }
698     @tocheckfor = (keys %new_tocheckfor);
699 }
700
701 if ($target eq "TABLE") {
702     foreach (sort keys %table) {
703         print_table_entry($_, "TABLE");
704     }
705     exit 0;
706 }
707
708 if ($target eq "LIST") {
709     foreach (sort keys %table) {
710         print $_,"\n" unless $table{$_}->{template};
711     }
712     exit 0;
713 }
714
715 if ($target eq "HASH") {
716     print "%table = (\n";
717     foreach (sort keys %table) {
718         print_table_entry($_, "HASH");
719     }
720     exit 0;
721 }
722
723 # Backward compatibility?
724 if ($target =~ m/^CygWin32(-.*)$/) {
725     $target = "Cygwin".$1;
726 }
727
728 foreach (sort (keys %disabled))
729         {
730         $config{options} .= " no-$_";
731
732         printf "    no-%-12s %-10s", $_, "[$disabled{$_}]";
733
734         if (/^dso$/)
735                 { $no_dso = 1; }
736         elsif (/^threads$/)
737                 { $no_threads = 1; }
738         elsif (/^shared$/)
739                 { $config{no_shared} = 1; }
740         elsif (/^zlib$/)
741                 { $zlib = 0; }
742         elsif (/^static-engine$/)
743                 { }
744         elsif (/^zlib-dynamic$/)
745                 { }
746         elsif (/^sse2$/)
747                 { $no_sse2 = 1; }
748         elsif (/^engine$/)
749                 { @{$config{dirs}} = grep !/^engine$/, @{$config{dirs}}; }
750         else
751                 {
752                 my ($ALGO, $algo);
753                 ($ALGO = $algo = $_) =~ tr/[\-a-z]/[_A-Z]/;
754
755                 if (/^asm$/ || /^err$/ || /^hw$/ || /^hw-/ || /^async$/
756                                 || /^autoalginit/ || /^autoerrinit/)
757                         {
758                         push @{$config{openssl_other_defines}}, "OPENSSL_NO_$ALGO";
759                         print " OPENSSL_NO_$ALGO";
760
761                         if (/^err$/)    { push @user_defines, "OPENSSL_NO_ERR"; }
762                         elsif (/^asm$/) { $no_asm = 1; }
763                         }
764                 else
765                         {
766                         ($ALGO,$algo) = ("RMD160","rmd160") if ($algo eq "ripemd");
767
768                         push @{$config{openssl_algorithm_defines}}, "OPENSSL_NO_$ALGO";
769                         push @{$config{depdefines}}, "OPENSSL_NO_$ALGO";
770                         print " OPENSSL_NO_$ALGO";
771
772                         # fix-up crypto/directory name(s)
773                         $algo="whrlpool" if $algo eq "whirlpool";
774                         $algo="ripemd" if $algo eq "rmd160";
775                         @{$config{sdirs}} = grep { $_ ne $algo} @{$config{sdirs}};
776
777                         print " (skip dir)";
778                         }
779                 }
780
781         print "\n";
782         }
783
784 foreach (sort @experimental)
785         {
786         my $ALGO;
787         ($ALGO = $_) =~ tr/[a-z]/[A-Z]/;
788
789         # opensslconf.h will set OPENSSL_NO_... unless OPENSSL_EXPERIMENTAL_... is defined
790         push @{$config{openssl_experimental_defines}}, "OPENSSL_NO_$ALGO";
791         }
792
793 print "Configuring for $target\n";
794
795 # Support for legacy targets having a name starting with 'debug-'
796 my ($d, $t) = $target =~ m/^(debug-)?(.*)$/;
797 if ($d) {
798     $build_prefix = "debug_";
799
800     # If we do not find debug-foo in the table, the target is set to foo.
801     if (!$table{$target}) {
802         $target = $t;
803     }
804 }
805 $config{target} = $target;
806 delete $table{$base_target}->{template}; # or the next test will fail.
807 my %target = ( %{$table{$base_target}}, resolve_config($target) );
808
809 &usage if (!%target || $target{template});
810
811 $target{exe_extension}="";
812 $target{exe_extension}=".exe" if ($config{target} eq "Cygwin" || $config{target} eq "DJGPP" || $config{target} =~ /^mingw/);
813 $target{exe_extension}=".nlm" if ($config{target} =~ /netware/);
814 $target{exe_extension}=".pm"  if ($config{target} =~ /vos/);
815
816 $default_ranlib = which("ranlib") || "true";
817 $config{perl}   = $ENV{'PERL'} || which("perl5") || which("perl") || "perl";
818 my $make        = $ENV{'MAKE'} || "make";
819
820 $config{cross_compile_prefix} = $ENV{'CROSS_COMPILE'}
821     if $config{cross_compile_prefix} eq "";
822
823 # Allow environment CC to override compiler...
824 $target{cc} = $ENV{CC} || $target{cc};
825
826 # For cflags, lflags, plib_lflags, ex_libs and defines, add the debug_
827 # or release_ attributes.
828 # Do it in such a way that no spurious space is appended (hence the grep).
829 $config{defines} = [ @{$target{defines}},
830                      @{$target{$build_prefix."defines"}} ];
831 $config{cflags} = join(" ",
832                        grep { $_ ne "" } ($target{cflags},
833                                           $target{$build_prefix."cflags"}));
834 $config{lflags} = join(" ",
835                        grep { $_ ne "" } ($target{lflags},
836                                           $target{$build_prefix."lflags"}));
837 $config{plib_lflags} = join(" ",
838                             grep { $_  ne "" } ($target{plib_lflags},
839                                                 $target{$build_prefix."plib_lflags"}));
840 $config{ex_libs} = join(" ",
841                         grep { $_  ne "" } ($target{ex_libs},
842                                             $target{$build_prefix."ex_libs"}));
843
844 $target{ranlib} = $ENV{'RANLIB'} || $target{ranlib} || $default_ranlib;
845 $target{ar} = $ENV{'AR'} || "ar";
846 $target{arflags} = "" if !defined($target{arflags});
847 $target{nm} = "nm";
848 # Make sure build_scheme is consistent.
849 $target{build_scheme} = [ $target{build_scheme} ]
850     if ref($target{build_scheme}) ne "ARRAY";
851
852 ###### TO BE REMOVED BEFORE FINAL RELEASE
853 ######
854 ###### If the user has chosen --unified, we give it to them.
855 if ($target{build_file} eq "Makefile"
856     && $target{build_scheme}->[0] eq "unixmake"
857     && $unified) {
858     $target{build_scheme} = [ "unified", "unix" ];
859 }
860
861 my ($builder, $builder_platform, @builder_opts) =
862     @{$target{build_scheme}};
863
864 push @{$config{defines}},
865     map { (my $x = $_) =~ s/^OPENSSL_NO_/OPENSSL_EXPERIMENTAL_/; $x }
866         @{$config{openssl_experimental_defines}};
867
868 if ($target =~ /^mingw/ && `$target{cc} --target-help 2>&1` !~ m/-mno-cygwin/m)
869         {
870         $config{cflags} =~ s/-mno-cygwin\s*//;
871         $target{shared_ldflag} =~ s/-mno-cygwin\s*//;
872         }
873
874 if ($target =~ /linux.*-mips/ && !$no_asm && $user_cflags !~ /-m(ips|arch=)/) {
875         # minimally required architecture flags for assembly modules
876         $config{cflags}="-mips2 $config{cflags}" if ($target =~ /mips32/);
877         $config{cflags}="-mips3 $config{cflags}" if ($target =~ /mips64/);
878 }
879
880 my $no_shared_warn=0;
881 my $no_user_cflags=0;
882 my $no_user_defines=0;
883
884 if ($user_cflags ne "") { $config{cflags}="$user_cflags$config{cflags}"; }
885 else                    { $no_user_cflags=1;       }
886 if (@user_defines)      { $config{defines}=[ @user_defines, @{$config{defines}} ]; }
887 else                    { $no_user_defines=1;       }
888
889 # The DSO code currently always implements all functions so that no
890 # applications will have to worry about that from a compilation point
891 # of view. However, the "method"s may return zero unless that platform
892 # has support compiled in for them. Currently each method is enabled
893 # by a define "DSO_<name>" ... we translate the "dso_scheme" config
894 # string entry into using the following logic;
895 if (!$no_dso && $target{dso_scheme} ne "")
896         {
897         $target{dso_scheme} =~ tr/[a-z]/[A-Z]/;
898         if ($target{dso_scheme} eq "DLFCN")
899                 {
900                 $config{defines} = [ "DSO_DLFCN", "HAVE_DLFCN_H",
901                                      @{$config{defines}} ]
902                 }
903         elsif ($target{dso_scheme} eq "DLFCN_NO_H")
904                 {
905                 $config{defines} = [ "DSO_DLFCN", @{$config{defines}} ]
906                 }
907         else
908                 {
909                 $config{defines} = [ "DSO_$target{dso_scheme}",
910                                      @{$config{defines}} ]
911                 }
912         }
913
914 my $thread_cflags = "";
915 my @thread_defines;
916 if ($target{thread_cflag} ne "(unknown)" && !$no_threads)
917         {
918         # If we know how to do it, support threads by default.
919         $threads = 1;
920         }
921 if ($target{thread_cflag} eq "(unknown)" && $threads)
922         {
923         # If the user asked for "threads", [s]he is also expected to
924         # provide any system-dependent compiler options that are
925         # necessary.
926         if ($no_user_cflags && $no_user_defines)
927                 {
928                 print "You asked for multi-threading support, but didn't\n";
929                 print "provide any system-specific compiler options\n";
930                 exit(1);
931                 }
932         push @thread_defines, "OPENSSL_THREADS";
933         }
934 else
935         {
936         $thread_cflags=" $target{thread_cflag}";
937         push @thread_defines, @{$target{thread_defines}}, "OPENSSL_THREADS";
938         }
939
940 $config{ex_libs}="$libs$config{ex_libs}" if ($libs ne "");
941
942 if ($no_asm)
943         {
944         @{$config{defines}} = grep !/^[BL]_ENDIAN$/, @{$config{defines}}
945             if ($config{fips});
946         }
947
948 if ($threads)
949         {
950         $config{cflags} = "$thread_cflags $config{cflags}" if $thread_cflags;
951         push @{$config{defines}}, @thread_defines;
952         push @{$config{openssl_thread_defines}}, @thread_defines;
953         }
954
955 if ($zlib)
956         {
957         push @{$config{defines}}, "ZLIB";
958         if (defined($disabled{"zlib-dynamic"}))
959                 {
960                 if (defined($withargs{zlib_lib}))
961                         {
962                         $config{ex_libs} .= " -L" . $withargs{zlib_lib} . " -lz";
963                         }
964                 else
965                         {
966                         $config{ex_libs} .= " -lz";
967                         }
968                 }
969         else
970                 {
971                 push @{$config{defines}}, "ZLIB_SHARED";
972                 }
973         }
974
975 # With "deprecated" disable all deprecated features.
976 if (defined($disabled{"deprecated"})) {
977         $config{api} = $maxapi;
978 }
979
980 if ($target{shared_target} eq "")
981         {
982         $no_shared_warn = 1 if !$config{no_shared} && !$config{fips};
983         $config{no_shared} = 1;
984         }
985 if (!$config{no_shared})
986         {
987         if ($target{shared_cflag} ne "")
988                 {
989                 push @{$config{defines}}, "OPENSSL_PIC";
990                 $config{cflags} = "$target{shared_cflag} $config{cflags}";
991                 }
992         }
993
994 if ($builder ne "mk1mf")
995         {
996         # add {no-}static-engine to options to allow mkdef.pl to work without extra arguments
997         if ($config{no_shared})
998                 {
999                 push @{$config{openssl_other_defines}}, "OPENSSL_NO_DYNAMIC_ENGINE";
1000                 $config{options}.=" static-engine";
1001                 }
1002         else
1003                 {
1004                 push @{$config{openssl_other_defines}}, "OPENSSL_NO_STATIC_ENGINE";
1005                 $config{options}.=" no-static-engine";
1006                 }
1007         }
1008
1009 #
1010 # Platform fix-ups
1011 #
1012 if ($target{sys_id} ne "")
1013         {
1014         push @{$config{openssl_sys_defines}}, "OPENSSL_SYS_$target{sys_id}";
1015         }
1016
1017 if ($target{ranlib} eq "")
1018         {
1019         $target{ranlib} = $default_ranlib;
1020         }
1021
1022 if (!$no_asm) {
1023     $target{cpuid_asm_src}=$table{BASE}->{cpuid_asm_src} if ($config{processor} eq "386");
1024     $target{cpuid_asm_src}.=" uplink.c uplink-x86.s" if (grep { $_ eq "OPENSSL_USE_APPLINK"} @{$config{defines}});
1025
1026     $target{bn_asm_src} =~ s/\w+-gf2m.c// if (defined($disabled{ec2m}));
1027
1028     # bn-586 is the only one implementing bn_*_part_words
1029     push @{$config{defines}}, "OPENSSL_BN_ASM_PART_WORDS" if ($target{bn_asm_src} =~ /bn-586/);
1030     push @{$config{defines}}, "OPENSSL_IA32_SSE2" if (!$no_sse2 && $target{bn_asm_src} =~ /86/);
1031
1032     push @{$config{defines}}, "OPENSSL_BN_ASM_MONT" if ($target{bn_asm_src} =~ /-mont/);
1033     push @{$config{defines}}, "OPENSSL_BN_ASM_MONT5" if ($target{bn_asm_src} =~ /-mont5/);
1034     push @{$config{defines}}, "OPENSSL_BN_ASM_GF2m" if ($target{bn_asm_src} =~ /-gf2m/);
1035
1036     if ($config{fips}) {
1037         push @{$config{openssl_other_defines}}, "OPENSSL_FIPS";
1038     }
1039
1040     if ($target{sha1_asm_src}) {
1041         push @{$config{defines}}, "SHA1_ASM"   if ($target{sha1_asm_src} =~ /sx86/ || $target{sha1_asm_src} =~ /sha1/);
1042         push @{$config{defines}}, "SHA256_ASM" if ($target{sha1_asm_src} =~ /sha256/);
1043         push @{$config{defines}}, "SHA512_ASM" if ($target{sha1_asm_src} =~ /sha512/);
1044     }
1045     if ($target{md5_asm_src}) {
1046         push @{$config{defines}}, "MD5_ASM";
1047     }
1048     $target{cast_asm_src}=$table{BASE}->{cast_asm_src} if (!$config{no_shared}); # CAST assembler is not PIC
1049     if ($target{rmd160_asm_src}) {
1050         push @{$config{defines}}, "RMD160_ASM";
1051     }
1052     if ($target{aes_asm_src}) {
1053         push @{$config{defines}}, "AES_ASM" if ($target{aes_asm_src} =~ m/\baes-/);;
1054         # aes-ctr.fake is not a real file, only indication that assembler
1055         # module implements AES_ctr32_encrypt...
1056         push @{$config{defines}}, "AES_CTR_ASM" if ($target{aes_asm_src} =~ s/\s*aes-ctr\.fake//);
1057         # aes-xts.fake indicates presence of AES_xts_[en|de]crypt...
1058         push @{$config{defines}}, "AES_XTS_ASM" if ($target{aes_asm_src} =~ s/\s*aes-xts\.fake//);
1059         $target{aes_asm_src} =~ s/\s*(vpaes|aesni)-x86\.s//g if ($no_sse2);
1060         push @{$config{defines}}, "VPAES_ASM" if ($target{aes_asm_src} =~ m/vpaes/);
1061         push @{$config{defines}}, "BSAES_ASM" if ($target{aes_asm_src} =~ m/bsaes/);
1062     }
1063     if ($target{wp_asm_src} =~ /mmx/) {
1064         if ($config{processor} eq "386") {
1065             $target{wp_asm_src}=$table{BASE}->{wp_asm_src};
1066         } elsif (!$disabled{"whirlpool"}) {
1067             $config{cflags}.=" -DWHIRLPOOL_ASM";
1068         }
1069     }
1070     if ($target{modes_asm_src} =~ /ghash-/) {
1071         push @{$config{defines}}, "GHASH_ASM";
1072     }
1073     if ($target{ec_asm_src} =~ /ecp_nistz256/) {
1074         push @{$config{defines}}, "ECP_NISTZ256_ASM";
1075     }
1076     if ($target{poly1305_asm_src} ne "") {
1077         push @{$config{defines}}, "POLY1305_ASM";
1078     }
1079 }
1080
1081 # Is the compiler gcc or clang?  $ecc is used below to see if error-checking
1082 # can be turned on.
1083 my $ecc = $target{cc};
1084 my $ccpcc = "$config{cross_compile_prefix}$target{cc}";
1085 $config{makedepprog} = 'makedepend';
1086 open(PIPE, "$ccpcc --version 2>&1 | head -2 |");
1087 while ( <PIPE> ) {
1088     $config{makedepprog} = $ccpcc if /clang|gcc/;
1089     $ecc = "clang" if /clang/;
1090     $ecc = "gcc" if /gcc/;
1091 }
1092 close(PIPE);
1093
1094 $config{depflags} =~ s/^\s*//;
1095
1096
1097 # Deal with bn_ops ###################################################
1098
1099 $config{bn_ll}                  =0;
1100 $config{export_var_as_fn}       =0;
1101 my $def_int="unsigned int";
1102 $config{rc4_int}                =$def_int;
1103 ($config{b64l},$config{b64},$config{b32})=(0,0,1);
1104
1105 my $count = 0;
1106 foreach (sort split(/\s+/,$target{bn_ops})) {
1107     $count++ if /SIXTY_FOUR_BIT|SIXTY_FOUR_BIT_LONG|THIRTY_TWO_BIT/;
1108     $config{export_var_as_fn}=1                 if $_ eq 'EXPORT_VAR_AS_FN';
1109     $config{bn_ll}=1                            if $_ eq 'BN_LLONG';
1110     $config{rc4_int}="unsigned char"            if $_ eq 'RC4_CHAR';
1111     ($config{b64l},$config{b64},$config{b32})
1112         =(0,1,0)                                if $_ eq 'SIXTY_FOUR_BIT';
1113     ($config{b64l},$config{b64},$config{b32})
1114         =(1,0,0)                                if $_ eq 'SIXTY_FOUR_BIT_LONG';
1115     ($config{b64l},$config{b64},$config{b32})
1116         =(0,0,1)                                if $_ eq 'THIRTY_TWO_BIT';
1117 }
1118 die "Exactly one of SIXTY_FOUR_BIT|SIXTY_FOUR_BIT_LONG|THIRTY_TWO_BIT can be set in bn_ops\n"
1119     if $count > 1;
1120
1121
1122 # Hack cflags for better warnings (dev option) #######################
1123
1124 # "Stringify" the C flags string.  This permits it to be made part of a string
1125 # and works as well on command lines.
1126 $config{cflags} =~ s/([\\\"])/\\\1/g;
1127
1128 if (defined($config{api})) {
1129     $config{openssl_api_defines} = [ "OPENSSL_MIN_API=".$apitable->{$config{api}} ];
1130     my $apiflag = sprintf("OPENSSL_API_COMPAT=%s", $apitable->{$config{api}});
1131     push @default_depdefines, $apiflag;
1132     push @{$config{defines}}, $apiflag;
1133 }
1134
1135 if ($strict_warnings)
1136         {
1137         my $wopt;
1138         die "ERROR --strict-warnings requires gcc or clang"
1139             unless $ecc eq 'gcc' || $ecc eq 'clang';
1140         foreach $wopt (split /\s+/, $gcc_devteam_warn)
1141                 {
1142                 $config{cflags} .= " $wopt" unless ($config{cflags} =~ /(^|\s)$wopt(\s|$)/)
1143                 }
1144         if ($ecc eq "clang")
1145                 {
1146                 foreach $wopt (split /\s+/, $clang_devteam_warn)
1147                         {
1148                         $config{cflags} .= " $wopt" unless ($config{cflags} =~ /(^|\s)$wopt(\s|$)/)
1149                         }
1150                 }
1151         if ($target !~ /^mingw/)
1152                 {
1153                 foreach $wopt (split /\s+/, $memleak_devteam_backtrace)
1154                         {
1155                         $config{cflags} .= " $wopt" unless ($config{cflags} =~ /(^|\s)$wopt(\s|$)/)
1156                         }
1157                 if ($target =~ /^BSD-/)
1158                         {
1159                         $config{ex_libs} .= " -lexecinfo";
1160                         }
1161                 }
1162         }
1163
1164 # If we use the unified build, collect information from build.info files
1165 my %unified_info = ();
1166
1167 if ($builder eq "unified") {
1168     # Store the name of the template file we will build the build file from
1169     # in %config.  This may be useful for the build file itself.
1170     my $build_file_template =
1171         catfile($srcdir, "Configurations",
1172                 $builder_platform."-".$target{build_file}.".tmpl");
1173     $build_file_template =
1174         catfile($srcdir, "Configurations", $target{build_file}.".tmpl")
1175         if (! -f $build_file_template);
1176     $config{build_file_template} = $build_file_template;
1177
1178     use lib catdir(dirname(__FILE__),"util");
1179     use with_fallback qw(Text::Template);
1180
1181     sub cleandir {
1182         my $base = shift;
1183         my $dir = shift;
1184         my $relativeto = shift || ".";
1185
1186         $dir = catdir($base,$dir) unless isabsolute($dir);
1187
1188         # Make sure the directories we're building in exists
1189         mkpath($dir);
1190
1191         my $res = abs2rel(absolutedir($dir), rel2abs($relativeto));
1192         #print STDERR "DEBUG[cleandir]: $dir , $base => $res\n";
1193         return $res;
1194     }
1195
1196     sub cleanfile {
1197         my $base = shift;
1198         my $file = shift;
1199         my $relativeto = shift || ".";
1200
1201         $file = catfile($base,$file) unless isabsolute($file);
1202
1203         my $d = dirname($file);
1204         my $f = basename($file);
1205
1206         # Make sure the directories we're building in exists
1207         mkpath($d);
1208
1209         my $res = abs2rel(catfile(absolutedir($d), $f), rel2abs($relativeto));
1210         #print STDERR "DEBUG[cleanfile]: $d , $f => $res\n";
1211         return $res;
1212     }
1213
1214     my @build_infos = ( [ ".", "build.info" ] );
1215     foreach (@{$config{dirs}}) {
1216         push @build_infos, [ $_, "build.info" ]
1217             if (-f catfile($srcdir, $_, "build.info"));
1218     }
1219     foreach (@{$config{sdirs}}) {
1220         push @build_infos, [ catdir("crypto", $_), "build.info" ]
1221             if (-f catfile($srcdir, "crypto", $_, "build.info"));
1222     }
1223     foreach (@{$config{engdirs}}) {
1224         push @build_infos, [ catdir("engines", $_), "build.info" ]
1225             if (-f catfile($srcdir, "engines", $_, "build.info"));
1226     }
1227
1228     foreach (@build_infos) {
1229         my $sourced = catdir($srcdir, $_->[0]);
1230         my $buildd = catdir($blddir, $_->[0]);
1231
1232         mkpath($buildd);
1233
1234         my $f = $_->[1];
1235         # The basic things we're trying to build
1236         my @programs = ();
1237         my @libraries = ();
1238         my @engines = ();
1239         my @scripts = ();
1240         my @extra = ();
1241         my @intermediates = ();
1242         my @rawlines = ();
1243
1244         my %ordinals = ();
1245         my %sources = ();
1246         my %includes = ();
1247         my %depends = ();
1248         my %renames = ();
1249         my %sharednames = ();
1250
1251         my $template = Text::Template->new(TYPE => 'FILE',
1252                                            SOURCE => catfile($sourced, $f));
1253         die "Something went wrong with $sourced/$f: $!\n" unless $template;
1254         my @text =
1255             split /^/m,
1256             $template->fill_in(HASH => { config => \%config,
1257                                          target => \%target,
1258                                          builddir => abs2rel($buildd, $blddir),
1259                                          sourcedir => abs2rel($sourced, $blddir),
1260                                          buildtop => abs2rel($blddir, $blddir),
1261                                          sourcetop => abs2rel($srcdir, $blddir) },
1262                                DELIMITERS => [ "{-", "-}" ]);
1263
1264         # The top item of this stack has the following values
1265         # -2 positive already run and we found ELSE (following ELSIF should fail)
1266         # -1 positive already run (skip until ENDIF)
1267         # 0 negatives so far (if we're at a condition, check it)
1268         # 1 last was positive (don't skip lines until next ELSE, ELSIF or ENDIF)
1269         # 2 positive ELSE (following ELSIF should fail)
1270         my @skip = ();
1271         collect_information(
1272             collect_from_array([ @text ],
1273                                qr/\\$/ => sub { my $l1 = shift; my $l2 = shift;
1274                                                 $l1 =~ s/\\$//; $l1.$l2 }),
1275             # Info we're looking for
1276             qr/^\s*IF\[((?:\\.|[^\\\]])*)\]\s*$/
1277             => sub { push @skip, !! $1; },
1278             qr/^\s*ELSIF\[((?:\\.|[^\\\]])*)\]\s*$/
1279             => sub { die "ELSIF out of scope" if ! @skip;
1280                      die "ELSIF following ELSE" if abs($skip[$#skip]) == 2;
1281                      $skip[$#skip] = -1 if $skip[$#skip] != 0;
1282                      $skip[$#skip] = !! $1
1283                          if $skip[$#skip] == 0; },
1284             qr/^\s*ELSE\s*$/
1285             => sub { die "ELSE out of scope" if ! @skip;
1286                      $skip[$#skip] = -2 if $skip[$#skip] != 0;
1287                      $skip[$#skip] = 2 if $skip[$#skip] == 0; },
1288             qr/^\s*ENDIF\s*$/
1289             => sub { die "ENDIF out of scope" if ! @skip;
1290                      pop @skip; },
1291             qr/^\s*PROGRAMS\s*=\s*(.*)\s*$/
1292             => sub { push @programs, split(/\s+/, $1)
1293                          if !@skip || $skip[$#skip] > 0 },
1294             qr/^\s*LIBS\s*=\s*(.*)\s*$/
1295             => sub { push @libraries, split(/\s+/, $1)
1296                          if !@skip || $skip[$#skip] > 0 },
1297             qr/^\s*ENGINES\s*=\s*(.*)\s*$/
1298             => sub { push @engines, split(/\s+/, $1)
1299                          if !@skip || $skip[$#skip] > 0 },
1300             qr/^\s*SCRIPTS\s*=\s*(.*)\s*$/
1301             => sub { push @scripts, split(/\s+/, $1)
1302                          if !@skip || $skip[$#skip] > 0 },
1303             qr/^\s*EXTRA\s*=\s*(.*)\s*$/
1304             => sub { push @extra, split(/\s+/, $1)
1305                          if !@skip || $skip[$#skip] > 0 },
1306
1307             qr/^\s*ORDINALS\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/,
1308             => sub { push @{$ordinals{$1}}, split(/\s+/, $2)
1309                          if !@skip || $skip[$#skip] > 0 },
1310             qr/^\s*SOURCE\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
1311             => sub { push @{$sources{$1}}, split(/\s+/, $2)
1312                          if !@skip || $skip[$#skip] > 0 },
1313             qr/^\s*INCLUDE\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
1314             => sub { push @{$includes{$1}}, split(/\s+/, $2)
1315                          if !@skip || $skip[$#skip] > 0 },
1316             qr/^\s*DEPEND\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
1317             => sub { push @{$depends{$1}}, split(/\s+/, $2)
1318                          if !@skip || $skip[$#skip] > 0 },
1319             qr/^\s*RENAME\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
1320             => sub { push @{$renames{$1}}, split(/\s+/, $2)
1321                          if !@skip || $skip[$#skip] > 0 },
1322             qr/^\s*SHARED_NAME\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
1323             => sub { push @{$sharednames{$1}}, split(/\s+/, $2)
1324                          if !@skip || $skip[$#skip] > 0 },
1325             qr/^\s*BEGINRAW\[((?:\\.|[^\\\]])+)\]\s*$/
1326             => sub {
1327                 my $lineiterator = shift;
1328                 my $target_kind = $1;
1329                 while (defined $lineiterator->()) {
1330                     chomp;
1331                     if (/^\s*ENDRAW\[((?:\\.|[^\\\]])+)\]\s*$/) {
1332                         die "ENDRAW doesn't match BEGINRAW"
1333                             if $1 ne $target_kind;
1334                         last;
1335                     }
1336                     next if @skip && $skip[$#skip] <= 0;
1337                     push @rawlines,  $_
1338                         if ($target_kind eq $target{build_file}
1339                             || $target_kind eq $target{build_file}."(".$builder_platform.")");
1340                 }
1341             },
1342             qr/^(?:#.*|\s*)$/ => sub { },
1343             "OTHERWISE" => sub { die "Something wrong with this line:\n$_\nat $sourced/$f" }
1344             );
1345         die "runaway IF?" if (@skip);
1346
1347         foreach (keys %renames) {
1348             die "$_ renamed to more than one thing: "
1349                 ,join(" ", @{$renames{$_}}),"\n"
1350                 if scalar @{$renames{$_}} > 1;
1351             my $dest = cleanfile($buildd, $_, $blddir);
1352             my $to = cleanfile($buildd, $renames{$_}->[0], $blddir);
1353             die "$dest renamed to more than one thing: "
1354                 ,$unified_info{rename}->{$dest}, $to
1355                 unless !defined($unified_info{rename}->{$dest})
1356                 or $unified_info{rename}->{$dest} eq $to;
1357             $unified_info{rename}->{$dest} = $to;
1358         }
1359
1360         foreach (@programs) {
1361             my $program = cleanfile($buildd, $_, $blddir);
1362             if ($unified_info{rename}->{$program}) {
1363                 $program = $unified_info{rename}->{$program};
1364             }
1365             $unified_info{programs}->{$program} = 1;
1366         }
1367
1368         foreach (@libraries) {
1369             my $library = cleanfile($buildd, $_, $blddir);
1370             if ($unified_info{rename}->{$library}) {
1371                 $library = $unified_info{rename}->{$library};
1372             }
1373             $unified_info{libraries}->{$library} = 1;
1374         }
1375
1376         die <<"EOF" if $config{no_shared} && scalar @engines;
1377 ENGINES can only be used if configured with 'shared'.
1378 This is usually a fault in a build.info file.
1379 EOF
1380         foreach (@engines) {
1381             my $library = cleanfile($buildd, $_, $blddir);
1382             if ($unified_info{rename}->{$library}) {
1383                 $library = $unified_info{rename}->{$library};
1384             }
1385             $unified_info{engines}->{$library} = 1;
1386         }
1387
1388         foreach (@scripts) {
1389             my $script = cleanfile($buildd, $_, $blddir);
1390             if ($unified_info{rename}->{$script}) {
1391                 $script = $unified_info{rename}->{$script};
1392             }
1393             $unified_info{scripts}->{$script} = 1;
1394         }
1395
1396         foreach (@extra) {
1397             my $extra = cleanfile($buildd, $_, $blddir);
1398             $unified_info{extra}->{$extra} = 1;
1399         }
1400
1401         push @{$unified_info{rawlines}}, @rawlines;
1402
1403         if (!$config{no_shared}) {
1404             # Check sharednames.
1405             foreach (keys %sharednames) {
1406                 my $dest = cleanfile($buildd, $_, $blddir);
1407                 if ($unified_info{rename}->{$dest}) {
1408                     $dest = $unified_info{rename}->{$dest};
1409                 }
1410                 die "shared_name for $dest with multiple values: "
1411                     ,join(" ", @{$sharednames{$_}}),"\n"
1412                     if scalar @{$sharednames{$_}} > 1;
1413                 my $to = cleanfile($buildd, $sharednames{$_}->[0], $blddir);
1414                 die "shared_name found for a library $dest that isn't defined\n"
1415                     unless $unified_info{libraries}->{$dest};
1416                 die "shared_name for $dest with multiple values: "
1417                     ,$unified_info{sharednames}->{$dest}, ", ", $to
1418                     unless !defined($unified_info{sharednames}->{$dest})
1419                     or $unified_info{sharednames}->{$dest} eq $to;
1420                 $unified_info{sharednames}->{$dest} = $to;
1421             }
1422
1423             # Additionally, we set up sharednames for libraries that don't
1424             # have any, as themselves.
1425             foreach (keys %{$unified_info{libraries}}) {
1426                 if (!defined $unified_info{sharednames}->{$_}) {
1427                     $unified_info{sharednames}->{$_} = $_
1428                 }
1429             }
1430         }
1431
1432         foreach (keys %ordinals) {
1433             my $dest = $_;
1434             my $ddest = cleanfile($buildd, $_, $blddir);
1435             if ($unified_info{rename}->{$ddest}) {
1436                 $ddest = $unified_info{rename}->{$ddest};
1437             }
1438             foreach (@{$ordinals{$dest}}) {
1439                 my %known_ordinals =
1440                     (
1441                      crypto =>
1442                      cleanfile($sourced, catfile("util", "libeay.num"), $blddir),
1443                      ssl =>
1444                      cleanfile($sourced, catfile("util", "ssleay.num"), $blddir)
1445                     );
1446                 my $o = $known_ordinals{$_};
1447                 die "Ordinals for $ddest defined more than once\n"
1448                     if $unified_info{ordinals}->{$ddest};
1449                 $unified_info{ordinals}->{$ddest} = [ $_, $o ];
1450             }
1451         }
1452
1453         foreach (keys %sources) {
1454             my $dest = $_;
1455             my $ddest = cleanfile($buildd, $_, $blddir);
1456             if ($unified_info{rename}->{$ddest}) {
1457                 $ddest = $unified_info{rename}->{$ddest};
1458             }
1459             foreach (@{$sources{$dest}}) {
1460                 my $s = cleanfile($sourced, $_, $blddir);
1461
1462                 # If it isn't in the source tree, we assume it's generated
1463                 # in the build tree
1464                 if (! -f $s) {
1465                     $s = cleanfile($buildd, $_, $blddir);
1466                 }
1467                 # We recognise C and asm files
1468                 if ($s =~ /\.[csS]\b$/) {
1469                     (my $o = $_) =~ s/\.[csS]\b$/.o/;
1470                     $o = cleanfile($buildd, $o, $blddir);
1471                     $unified_info{sources}->{$ddest}->{$o} = 1;
1472                     $unified_info{sources}->{$o}->{$s} = 1;
1473                 } else {
1474                     $unified_info{sources}->{$ddest}->{$s} = 1;
1475                 }
1476             }
1477         }
1478
1479         foreach (keys %depends) {
1480             my $dest = $_;
1481             my $ddest = cleanfile($buildd, $_, $blddir);
1482             if ($unified_info{rename}->{$ddest}) {
1483                 $ddest = $unified_info{rename}->{$ddest};
1484             }
1485             foreach (@{$depends{$dest}}) {
1486                 my $d = cleanfile($sourced, $_, $blddir);
1487
1488                 # If it isn't found in the source, let's assume it's generated
1489                 # and that the Makefile template has the lines
1490                 if (! -f $d) {
1491                     $d = cleanfile($buildd, $_, $blddir);
1492                 }
1493                 # Take note if the file to depend on is being renamed
1494                 if ($unified_info{rename}->{$d}) {
1495                     $d = $unified_info{rename}->{$d};
1496                 }
1497                 $unified_info{depends}->{$ddest}->{$d} = 1;
1498                 # If we depend on a header file, let's make sure it
1499                 # can get included
1500                 if ($d =~ /\.h$/) {
1501                     my $i = dirname($d);
1502                     push @{$unified_info{includes}->{$ddest}}, $i
1503                         unless grep { $_ eq $i } @{$unified_info{includes}->{$ddest}};
1504                 }
1505             }
1506         }
1507
1508         foreach (keys %includes) {
1509             my $dest = $_;
1510             my $ddest = cleanfile($buildd, $_, $blddir);
1511             if ($unified_info{rename}->{$ddest}) {
1512                 $ddest = $unified_info{rename}->{$ddest};
1513             }
1514             foreach (@{$includes{$dest}}) {
1515                 my $i = cleandir($sourced, $_, $blddir);
1516                 push @{$unified_info{includes}->{$ddest}}, $i
1517                     unless grep { $_ eq $i } @{$unified_info{includes}->{$ddest}};
1518             }
1519         }
1520     }
1521
1522     ### Make unified_info a bit more efficient
1523     # One level structures
1524     foreach (("programs", "libraries", "engines", "scripts", "extra")) {
1525         $unified_info{$_} = [ sort keys %{$unified_info{$_}} ];
1526     }
1527     # Two level structures
1528     foreach my $l1 (("sources", "ldadd", "depends")) {
1529         foreach my $l2 (sort keys %{$unified_info{$l1}}) {
1530             $unified_info{$l1}->{$l2} =
1531                 [ sort keys %{$unified_info{$l1}->{$l2}} ];
1532         }
1533     }
1534 }
1535
1536 # For the schemes that need it, we provide the old *_obj configs
1537 # from the *_asm_obj ones
1538 foreach (grep /_asm_src$/, keys %target) {
1539     my $src = $_;
1540     (my $obj = $_) =~ s/_asm_src$/_obj/;
1541     ($target{$obj} = $target{$src}) =~ s/\.[csS]\b/.o/g;
1542 }
1543
1544 # Write down our configuration where it fits #########################
1545
1546 open(OUT,">configdata.pm") || die "unable to create configdata.pm: $!\n";
1547 print OUT <<"EOF";
1548 package configdata;
1549
1550 use strict;
1551 use warnings;
1552
1553 use Exporter;
1554 #use vars qw(\@ISA \@EXPORT);
1555 our \@ISA = qw(Exporter);
1556 our \@EXPORT = qw(\%config \%target %withargs %unified_info);
1557
1558 EOF
1559 print OUT "our %config = (\n";
1560 foreach (sort keys %config) {
1561     if (ref($config{$_}) eq "ARRAY") {
1562         print OUT "  ", $_, " => [ ", join(", ",
1563                                            map { quotify("perl", $_) }
1564                                            @{$config{$_}}), " ],\n";
1565     } else {
1566         print OUT "  ", $_, " => ", quotify("perl", $config{$_}), ",\n"
1567     }
1568 }
1569 print OUT <<"EOF";
1570 );
1571
1572 EOF
1573 print OUT "our %target = (\n";
1574 foreach (sort keys %target) {
1575     if (ref($target{$_}) eq "ARRAY") {
1576         print OUT "  ", $_, " => [ ", join(", ",
1577                                            map { quotify("perl", $_) }
1578                                            @{$target{$_}}), " ],\n";
1579     } else {
1580         print OUT "  ", $_, " => ", quotify("perl", $target{$_}), ",\n"
1581     }
1582 }
1583 print OUT <<"EOF";
1584 );
1585
1586 EOF
1587 print OUT "our \%available_protocols = (\n";
1588 print OUT "  tls => [ ", join(", ", map { quotify("perl", $_) } @tls), " ],\n";
1589 print OUT "  dtls => [ ", join(", ", map { quotify("perl", $_) } @dtls), " ],\n";
1590 print OUT <<"EOF";
1591 );
1592
1593 EOF
1594 print OUT "our \%disabled = (\n";
1595 foreach (sort keys %disabled) {
1596     print OUT "  ", quotify("perl", $_), " => ", quotify("perl", $disabled{$_}), ",\n";
1597 }
1598 print OUT <<"EOF";
1599 );
1600
1601 EOF
1602 print OUT "our %withargs = (\n";
1603 foreach (sort keys %withargs) {
1604     if (ref($withargs{$_}) eq "ARRAY") {
1605         print OUT "  ", $_, " => [ ", join(", ",
1606                                            map { quotify("perl", $_) }
1607                                            @{$withargs{$_}}), " ],\n";
1608     } else {
1609         print OUT "  ", $_, " => ", quotify("perl", $withargs{$_}), ",\n"
1610     }
1611 }
1612 print OUT <<"EOF";
1613 );
1614
1615 EOF
1616 if ($builder eq "unified") {
1617     my $recurse;
1618     $recurse = sub {
1619         my $indent = shift;
1620         foreach (@_) {
1621             if (ref $_ eq "ARRAY") {
1622                 print OUT " "x$indent, "[\n";
1623                 foreach (@$_) {
1624                     $recurse->($indent + 4, $_);
1625                 }
1626                 print OUT " "x$indent, "],\n";
1627             } elsif (ref $_ eq "HASH") {
1628                 my %h = %$_;
1629                 print OUT " "x$indent, "{\n";
1630                 foreach (sort keys %h) {
1631                     if (ref $h{$_} eq "") {
1632                         print OUT " "x($indent + 4), quotify("perl", $_), " => ", quotify("perl", $h{$_}), ",\n";
1633                     } else {
1634                         print OUT " "x($indent + 4), quotify("perl", $_), " =>\n";
1635                         $recurse->($indent + 8, $h{$_});
1636                     }
1637                 }
1638                 print OUT " "x$indent, "},\n";
1639             } else {
1640                 print OUT " "x$indent, quotify("perl", $_), ",\n";
1641             }
1642         }
1643     };
1644     print OUT "our %unified_info = (\n";
1645     foreach (sort keys %unified_info) {
1646         if (ref $unified_info{$_} eq "") {
1647             print OUT " "x4, quotify("perl", $_), " => ", quotify("perl", $unified_info{$_}), ",\n";
1648         } else {
1649             print OUT " "x4, quotify("perl", $_), " =>\n";
1650             $recurse->(8, $unified_info{$_});
1651         }
1652     }
1653     print OUT <<"EOF";
1654 );
1655
1656 EOF
1657 }
1658 print OUT "1;\n";
1659 close(OUT);
1660
1661 die <<"EOF" if $builder ne "unified" && $srcdir ne $blddir;
1662
1663 ***** Trying building anywhere else than in the source tree will not
1664 ***** work for target $config{target}.  To make it possible, it needs
1665 ***** to use the "unified" build scheme.
1666
1667 EOF
1668
1669 print "IsMK1MF       =", ($builder eq "mk1mf" ? "yes" : "no"), "\n";
1670 print "CC            =$target{cc}\n";
1671 print "CFLAG         =$config{cflags}\n";
1672 print "DEFINES       =",join(" ", @{$config{defines}}),"\n";
1673 print "LFLAG         =$config{lflags}\n";
1674 print "PLIB_LFLAG    =$config{plib_lflags}\n";
1675 print "EX_LIBS       =$config{ex_libs}\n";
1676 print "CPUID_OBJ     =$target{cpuid_obj}\n";
1677 print "BN_ASM        =$target{bn_obj}\n";
1678 print "EC_ASM        =$target{ec_obj}\n";
1679 print "DES_ENC       =$target{des_obj}\n";
1680 print "AES_ENC       =$target{aes_obj}\n";
1681 print "BF_ENC        =$target{bf_obj}\n";
1682 print "CAST_ENC      =$target{cast_obj}\n";
1683 print "RC4_ENC       =$target{rc4_obj}\n";
1684 print "RC5_ENC       =$target{rc5_obj}\n";
1685 print "MD5_OBJ_ASM   =$target{md5_obj}\n";
1686 print "SHA1_OBJ_ASM  =$target{sha1_obj}\n";
1687 print "RMD160_OBJ_ASM=$target{rmd160_obj}\n";
1688 print "CMLL_ENC      =$target{cmll_obj}\n";
1689 print "MODES_OBJ     =$target{modes_obj}\n";
1690 print "PADLOCK_OBJ   =$target{padlock_obj}\n";
1691 print "CHACHA_ENC    =$target{chacha_obj}\n";
1692 print "POLY1305_OBJ  =$target{poly1305_obj}\n";
1693 print "PROCESSOR     =$config{processor}\n";
1694 print "RANLIB        =$target{ranlib}\n";
1695 print "ARFLAGS       =$target{arflags}\n";
1696 print "PERL          =$config{perl}\n";
1697 print "\n";
1698 print "SIXTY_FOUR_BIT_LONG mode\n" if $config{b64l};
1699 print "SIXTY_FOUR_BIT mode\n" if $config{b64};
1700 print "THIRTY_TWO_BIT mode\n" if $config{b32};
1701 print "BN_LLONG mode\n" if $config{bn_ll};
1702 print "RC4 uses $config{rc4_int}\n" if $config{rc4_int} != $def_int;
1703
1704 mkpath(catdir($blddir, "include/openssl"));
1705 run_dofile(catfile($blddir, "include/openssl/opensslconf.h"),
1706            catfile($srcdir, "include/openssl/opensslconf.h.in"));
1707
1708 mkpath(catdir($blddir, "crypto/include/internal"));
1709 foreach my $alg ( 'bn' ) {
1710     run_dofile(catfile($blddir, "crypto/include/internal/${alg}_conf.h"),
1711                catfile($srcdir, "crypto/include/internal/${alg}_conf.h.in"));
1712 }
1713
1714 ###
1715 ### When the old "unixmake" scheme goes away, so does this function
1716 ###
1717 sub build_Makefile {
1718     run_dofile("Makefile","Makefile.in");
1719
1720     # Copy all Makefile.in to Makefile (except top-level)
1721     use File::Find;
1722     use IO::File;
1723     find(
1724         {
1725             preprocess => sub {
1726                 grep(!/^\./, @_);
1727             },
1728             wanted => sub {
1729                 return if ($_ ne "Makefile.in" || $File::Find::dir eq ".");
1730                 my $in = IO::File->new($_, "r") or
1731                     die sprintf "Error reading Makefile.in in %s: !$\n",
1732                     $File::Find::dir;
1733                 my $out = IO::File->new("Makefile", "w") or
1734                     die sprintf "Error writing Makefile in %s: !$\n",
1735                     $File::Find::dir;
1736                 print $out "# Generated from $_, do not edit\n";
1737                 while (my $line = <$in>) { print $out $line }
1738                 $in->close() or
1739                     die sprintf "Error reading Makefile.in in %s: !$\n",
1740                     $File::Find::dir;
1741                 $out->close() or
1742                     die sprintf "Error writing Makefile in %s: !$\n",
1743                     $File::Find::dir;
1744             },
1745         },
1746         ".");
1747 }
1748
1749 my %builders = (
1750     unified => sub {
1751         run_dofile(catfile($blddir, $target{build_file}),
1752                    $config{build_file_template},
1753                    catfile($srcdir, "Configurations", "common.tmpl"));
1754
1755         my $make_command = "$make PERL=\'$config{perl}\'";
1756         my $make_targets = "";
1757         my $need_make_depend =
1758             join(" ", @{$config{depdefines}}) ne join(" ", @default_depdefines);
1759         $make_targets .= " depend"
1760             if $need_make_depend && $make_depend;
1761
1762         (system $make_command.$make_targets) == 0
1763             or die "make $make_targets failed"
1764             if $make_targets ne "";
1765
1766         if ($need_make_depend && !$make_depend) {
1767             $warn_make_depend++;
1768         }
1769     },
1770     unixmake => sub {
1771         build_Makefile();
1772
1773         run_dofile("util/domd", "util/domd.in");
1774         chmod 0755, "util/domd";
1775
1776         my $make_command = "$make PERL=\'$config{perl}\'";
1777         my $make_targets = "";
1778         my $need_make_depend =
1779             join(" ", @{$config{depdefines}}) ne join(" ", @default_depdefines);
1780         $make_targets .= " depend"
1781             if $need_make_depend && $make_depend;
1782
1783         (system $make_command.$make_targets) == 0
1784             or die "make $make_targets failed"
1785             if $make_targets ne "";
1786
1787         if ($need_make_depend && !$make_depend) {
1788             $warn_make_depend++;
1789         }
1790     },
1791     mk1mf => sub {
1792         my $platform = shift;
1793         # The only reason we do this is to have something to build MINFO from
1794         build_Makefile();
1795
1796         # create the ms/version32.rc file if needed
1797         if ($platform ne "netware") {
1798             my ($v1, $v2, $v3, $v4);
1799             if ($config{version_num} =~ /^0x([0-9a-f]{1})([0-9a-f]{2})([0-9a-f]{2})([0-9a-f]{2})([0-9a-f]{1})L$/i) {
1800                 $v1=hex $1;
1801                 $v2=hex $2;
1802                 $v3=hex $3;
1803                 $v4=hex $4;
1804             }
1805             open (OUT,">ms/version32.rc") || die "Can't open ms/version32.rc";
1806             print OUT <<"EOF";
1807 #include <winver.h>
1808
1809 LANGUAGE 0x09,0x01
1810
1811 1 VERSIONINFO
1812   FILEVERSION $v1,$v2,$v3,$v4
1813   PRODUCTVERSION $v1,$v2,$v3,$v4
1814   FILEFLAGSMASK 0x3fL
1815 #ifdef _DEBUG
1816   FILEFLAGS 0x01L
1817 #else
1818   FILEFLAGS 0x00L
1819 #endif
1820   FILEOS VOS__WINDOWS32
1821   FILETYPE VFT_DLL
1822   FILESUBTYPE 0x0L
1823 BEGIN
1824     BLOCK "StringFileInfo"
1825     BEGIN
1826         BLOCK "040904b0"
1827         BEGIN
1828             // Required:
1829             VALUE "CompanyName", "The OpenSSL Project, http://www.openssl.org/\\0"
1830             VALUE "FileDescription", "OpenSSL Shared Library\\0"
1831             VALUE "FileVersion", "$config{version}\\0"
1832 #if defined(CRYPTO)
1833             VALUE "InternalName", "libeay32\\0"
1834             VALUE "OriginalFilename", "libeay32.dll\\0"
1835 #elif defined(SSL)
1836             VALUE "InternalName", "ssleay32\\0"
1837             VALUE "OriginalFilename", "ssleay32.dll\\0"
1838 #endif
1839             VALUE "ProductName", "The OpenSSL Toolkit\\0"
1840             VALUE "ProductVersion", "$config{version}\\0"
1841             // Optional:
1842             //VALUE "Comments", "\\0"
1843             VALUE "LegalCopyright", "Copyright Â© 1998-2015 The OpenSSL Project. Copyright Â© 1995-1998 Eric A. Young, Tim J. Hudson. All rights reserved.\\0"
1844             //VALUE "LegalTrademarks", "\\0"
1845             //VALUE "PrivateBuild", "\\0"
1846             //VALUE "SpecialBuild", "\\0"
1847         END
1848     END
1849     BLOCK "VarFileInfo"
1850     BEGIN
1851         VALUE "Translation", 0x409, 0x4b0
1852     END
1853 END
1854 EOF
1855             close(OUT);
1856         }
1857     },
1858     );
1859
1860 $builders{$builder}->($builder_platform, @builder_opts);
1861
1862 print <<"EOF";
1863
1864 Configured for $target.
1865 EOF
1866
1867 print <<"EOF" if (!$no_threads && !$threads);
1868
1869 The library could not be configured for supporting multi-threaded
1870 applications as the compiler options required on this system are not known.
1871 See file INSTALL for details if you need multi-threading.
1872 EOF
1873
1874 print <<"EOF" if ($no_shared_warn);
1875
1876 You gave the option 'shared', which is not supported on this platform, so
1877 we will pretend you gave the option 'no-shared'.  If you know how to implement
1878 shared libraries, please let us know (but please first make sure you have
1879 tried with a current version of OpenSSL).
1880 EOF
1881
1882 print <<"EOF" if ($warn_make_depend);
1883
1884 *** Because of configuration changes, you MUST do the following before
1885 *** building:
1886
1887         make depend
1888 EOF
1889
1890 ###### TO BE REMOVED BEFORE FINAL RELEASE
1891 ######
1892 ###### If the user hasn't chosen --unified, try to nudge them.
1893 if ($target{build_file} eq "Makefile"
1894     && $target{build_scheme}->[0] eq "unixmake"
1895     && !$unified) {
1896
1897     my $plausible_builddir =
1898         abs2rel(rel2abs("../_openssl-build_$target"),rel2abs("."));
1899     my $plausible_to_sourcedir =
1900         abs2rel(rel2abs("."),rel2abs("../_openssl-build_$target"));
1901     print <<"EOF";
1902
1903 ----------------------------------------------------------------------
1904 Please consider configuring with the flag --unified .
1905 It's to test out a new "unified" building system.
1906
1907 One cool feature is that you can have your build directory elsewhere,
1908 for example:
1909
1910     make clean          # Clean the current configuration away
1911     mkdir $plausible_builddir
1912     cd $plausible_builddir
1913     $plausible_to_sourcedir/config --unified
1914     make
1915     make test
1916
1917 Please report any problem you have.
1918 ----------------------------------------------------------------------
1919
1920 EOF
1921 }
1922
1923 exit(0);
1924
1925 ######################################################################
1926 #
1927 # Helpers and utility functions
1928 #
1929
1930 # Configuration file reading #########################################
1931
1932 # Helper function to implement conditional inheritance depending on the
1933 # value of $no_asm.  Used in inherit_from values as follows:
1934 #
1935 #      inherit_from => [ "template", asm("asm_tmpl") ]
1936 #
1937 sub asm {
1938     my @x = @_;
1939     sub {
1940         $no_asm ? () : @x;
1941     }
1942 }
1943
1944 # Helper function to implement adding values to already existing configuration
1945 # values.  It handles elements that are ARRAYs, CODEs and scalars
1946 sub _add {
1947     my $separator = shift;
1948
1949     # If there's any ARRAY in the collection of values OR the separator
1950     # is undef, we will return an ARRAY of combined values, otherwise a
1951     # string of joined values with $separator as the separator.
1952     my $found_array = !defined($separator);
1953
1954     my @values =
1955         map {
1956             if (ref($_) eq "ARRAY") {
1957                 $found_array = 1;
1958                 @$_;
1959             } else {
1960                 $_;
1961             }
1962     } (@_);
1963
1964     if ($found_array) {
1965         [ @values ];
1966     } else {
1967         join($separator, @values);
1968     }
1969 }
1970 sub add_before {
1971     my $separator = shift;
1972     my @x = @_;
1973     sub { _add($separator, @x, @_) };
1974 }
1975 sub add {
1976     my $separator = shift;
1977     my @x = @_;
1978     sub { _add($separator, @_, @x) };
1979 }
1980
1981 # configuration reader, evaluates the input file as a perl script and expects
1982 # it to fill %targets with target configurations.  Those are then added to
1983 # %table.
1984 sub read_config {
1985     my $fname = shift;
1986     open(CONFFILE, "< $fname")
1987         or die "Can't open configuration file '$fname'!\n";
1988     my $x = $/;
1989     undef $/;
1990     my $content = <CONFFILE>;
1991     $/ = $x;
1992     close(CONFFILE);
1993     my %targets = ();
1994     {
1995         local %table = %::table;    # Protect %table from tampering
1996
1997         eval $content;
1998         warn $@ if $@;
1999     }
2000
2001     # For each target, check that it's configured with a hash table.
2002     foreach (keys %targets) {
2003         if (ref($targets{$_}) ne "HASH") {
2004             if (ref($targets{$_}) eq "") {
2005                 warn "Deprecated target configuration for $_, ignoring...\n";
2006             } else {
2007                 warn "Misconfigured target configuration for $_ (should be a hash table), ignoring...\n";
2008             }
2009             delete $targets{$_};
2010         }
2011     }
2012
2013     %table = (%table, %targets);
2014
2015 }
2016
2017 # configuration resolver.  Will only resolve all the lazy evalutation
2018 # codeblocks for the chozen target and all those it inherits from,
2019 # recursively
2020 sub resolve_config {
2021     my $target = shift;
2022     my @breadcrumbs = @_;
2023
2024     if (grep { $_ eq $target } @breadcrumbs) {
2025         die "inherit_from loop!  target backtrace:\n  "
2026             ,$target,"\n  ",join("\n  ", @breadcrumbs),"\n";
2027     }
2028
2029     if (!defined($table{$target})) {
2030         warn "Warning! target $target doesn't exist!\n";
2031         return ();
2032     }
2033     # Recurse through all inheritances.  They will be resolved on the
2034     # fly, so when this operation is done, they will all just be a
2035     # bunch of attributes with string values.
2036     # What we get here, though, are keys with references to lists of
2037     # the combined values of them all.  We will deal with lists after
2038     # this stage is done.
2039     my %combined_inheritance = ();
2040     if ($table{$target}->{inherit_from}) {
2041         my @inherit_from =
2042             map { ref($_) eq "CODE" ? $_->() : $_ } @{$table{$target}->{inherit_from}};
2043         foreach (@inherit_from) {
2044             my %inherited_config = resolve_config($_, $target, @breadcrumbs);
2045
2046             # 'template' is a marker that's considered private to
2047             # the config that had it.
2048             delete $inherited_config{template};
2049
2050             map {
2051                 if (!$combined_inheritance{$_}) {
2052                     $combined_inheritance{$_} = [];
2053                 }
2054                 push @{$combined_inheritance{$_}}, $inherited_config{$_};
2055             } keys %inherited_config;
2056         }
2057     }
2058
2059     # We won't need inherit_from in this target any more, since we've
2060     # resolved all the inheritances that lead to this
2061     delete $table{$target}->{inherit_from};
2062
2063     # Now is the time to deal with those lists.  Here's the place to
2064     # decide what shall be done with those lists, all based on the
2065     # values of the target we're currently dealing with.
2066     # - If a value is a coderef, it will be executed with the list of
2067     #   inherited values as arguments.
2068     # - If the corresponding key doesn't have a value at all or is the
2069     #   emoty string, the inherited value list will be run through the
2070     #   default combiner (below), and the result becomes this target's
2071     #   value.
2072     # - Otherwise, this target's value is assumed to be a string that
2073     #   will simply override the inherited list of values.
2074     my $default_combiner = add(" ");
2075
2076     my %all_keys =
2077         map { $_ => 1 } (keys %combined_inheritance,
2078                          keys %{$table{$target}});
2079     foreach (sort keys %all_keys) {
2080
2081         # Current target doesn't have a value for the current key?
2082         # Assign it the default combiner, the rest of this loop body
2083         # will handle it just like any other coderef.
2084         if (!exists $table{$target}->{$_}) {
2085             $table{$target}->{$_} = $default_combiner;
2086         }
2087
2088         my $valuetype = ref($table{$target}->{$_});
2089         if ($valuetype eq "CODE") {
2090             # CODE reference, execute it with the inherited values as
2091             # arguments.
2092             $table{$target}->{$_} =
2093                 $table{$target}->{$_}->(@{$combined_inheritance{$_}});
2094         } elsif ($valuetype eq "ARRAY" || $valuetype eq "") {
2095             # ARRAY or Scalar, just leave it as is.
2096         } else {
2097             # Some other type of reference that we don't handle.
2098             # Better to abort at this point.
2099             die "cannot handle reference type $valuetype,"
2100                 ," found in target $target -> $_\n";
2101         }
2102     }
2103
2104     # Finally done, return the result.
2105     return %{$table{$target}};
2106 }
2107
2108 sub usage
2109         {
2110         print STDERR $usage;
2111         print STDERR "\npick os/compiler from:\n";
2112         my $j=0;
2113         my $i;
2114         my $k=0;
2115         foreach $i (sort keys %table)
2116                 {
2117                 next if $table{$i}->{template};
2118                 next if $i =~ /^debug/;
2119                 $k += length($i) + 1;
2120                 if ($k > 78)
2121                         {
2122                         print STDERR "\n";
2123                         $k=length($i);
2124                         }
2125                 print STDERR $i . " ";
2126                 }
2127         foreach $i (sort keys %table)
2128                 {
2129                 next if $table{$i}->{template};
2130                 next if $i !~ /^debug/;
2131                 $k += length($i) + 1;
2132                 if ($k > 78)
2133                         {
2134                         print STDERR "\n";
2135                         $k=length($i);
2136                         }
2137                 print STDERR $i . " ";
2138                 }
2139         print STDERR "\n\nNOTE: If in doubt, on Unix-ish systems use './config'.\n";
2140         exit(1);
2141         }
2142
2143 sub run_dofile()
2144 {
2145     my $out = shift;
2146     my @templates = @_;
2147
2148     unlink $out || warn "Can't remove $out, $!"
2149         if -f $out;
2150     foreach (@templates) {
2151         die "Can't open $_, $!" unless -f $_;
2152     }
2153     my $cmd = "$config{perl} \"-I.\" \"-Mconfigdata\" $dofile -o\"Configure\" \"".join("\" \"",@templates)."\" > \"$out.new\"";
2154     #print STDERR "DEBUG[run_dofile]: \$cmd = $cmd\n";
2155     system($cmd);
2156     exit 1 if $? != 0;
2157     rename("$out.new", $out) || die "Can't rename $out.new, $!";
2158 }
2159
2160 # Configuration printer ##############################################
2161
2162 sub print_table_entry
2163 {
2164     my $target = shift;
2165     my %target = resolve_config($target);
2166     my $type = shift;
2167
2168     # Don't print the templates
2169     return if $target{template};
2170
2171     my @sequence = (
2172         "sys_id",
2173         "cc",
2174         "cflags",
2175         "defines",
2176         "debug_cflags",
2177         "debug_defines",
2178         "release_cflags",
2179         "release_defines",
2180         "thread_cflag",
2181         "unistd",
2182         "ld",
2183         "lflags",
2184         "plib_lflags",
2185         "ex_libs",
2186         "debug_lflags",
2187         "debug_plib_lflags",
2188         "debug_ex_libs",
2189         "release_lflags",
2190         "release_plib_lflags",
2191         "release_ex_libs",
2192         "bn_ops",
2193         "cpuid_obj",
2194         "bn_obj",
2195         "ec_obj",
2196         "des_obj",
2197         "aes_obj",
2198         "bf_obj",
2199         "md5_obj",
2200         "sha1_obj",
2201         "cast_obj",
2202         "rc4_obj",
2203         "rmd160_obj",
2204         "rc5_obj",
2205         "wp_obj",
2206         "cmll_obj",
2207         "modes_obj",
2208         "padlock_obj",
2209         "perlasm_scheme",
2210         "dso_scheme",
2211         "shared_target",
2212         "shared_cflag",
2213         "shared_ldflag",
2214         "shared_extension",
2215         "obj_extension",
2216         "exe_extension",
2217         "ranlib",
2218         "ar",
2219         "arflags",
2220         "multilib",
2221         "build_scheme",
2222         );
2223
2224     if ($type eq "TABLE") {
2225         print "\n";
2226         print "*** $target\n";
2227         printf "\$%-12s = %s\n", $_, $target{$_} foreach (@sequence);
2228     } elsif ($type eq "HASH") {
2229         my $largest =
2230             length((sort { length($a) <=> length($b) } @sequence)[-1]);
2231         print "    '$target' => {\n";
2232         foreach (@sequence) {
2233             if ($target{$_}) {
2234                 print "      '",$_,"'"," " x ($largest - length($_))," => '",$target{$_},"',\n";
2235             }
2236         }
2237         print "    },\n";
2238     }
2239 }
2240
2241 # Utility routines ###################################################
2242
2243 # On VMS, if the given file is a logical name, File::Spec::Functions
2244 # will consider it an absolute path.  There are cases when we want a
2245 # purely syntactic check without checking the environment.
2246 sub isabsolute {
2247     my $file = shift;
2248
2249     # On non-platforms, we just use file_name_is_absolute().
2250     return file_name_is_absolute($file) unless $^O eq "VMS";
2251
2252     # If the file spec includes a device or a directpry spec,
2253     # file_name_is_absolute() is perfectly safe.
2254     return file_name_is_absolute($file) if $file =~ m|[:\[]|;
2255
2256     # Here, we know the given file spec isn't absolute
2257     return 0;
2258 }
2259
2260 # Makes a directory absolute and cleans out /../ in paths like foo/../bar
2261 # On some platforms, this uses rel2abs(), while on others, realpath() is used.
2262 # realpath() requires that at least all path components except the last is an
2263 # existing directory.  On VMS, the last component of the directory spec must
2264 # exist.
2265 sub absolutedir {
2266     my $dir = shift;
2267
2268     # realpath() is quite buggy on VMS.  It uses LIB$FID_TO_NAME, which
2269     # will return the volume name for the device, no matter what.  Also,
2270     # it will return an incorrect directory spec if the argument is a
2271     # directory that doesn't exist.
2272     if ($^O eq "VMS") {
2273         return rel2abs($dir);
2274     }
2275
2276     # We use realpath() on Unix, since no other will properly clean out
2277     # a directory spec.
2278     use Cwd qw/realpath/;
2279
2280     return realpath($dir);
2281 }
2282
2283 sub which
2284         {
2285         my($name)=@_;
2286         my $path;
2287         foreach $path (split /:/, $ENV{PATH})
2288                 {
2289                 if (-f "$path/$name$target{exe_extension}" and -x _)
2290                         {
2291                         return "$path/$name$target{exe_extension}" unless ($name eq "perl" and
2292                          system("$path/$name$target{exe_extension} -e " . '\'exit($]<5.0);\''));
2293                         }
2294                 }
2295         }
2296
2297 sub quotify {
2298     my %processors = (
2299         perl    => sub { my $x = shift;
2300                          $x =~ s/([\\\$\@"])/\\$1/g;
2301                          return '"'.$x.'"'; },
2302         );
2303     my $for = shift;
2304     my $processor =
2305         defined($processors{$for}) ? $processors{$for} : sub { shift; };
2306
2307     map { $processor->($_); } @_;
2308 }
2309
2310 # collect_from_file($filename, $line_concat_cond_re, $line_concat)
2311 # $filename is a file name to read from
2312 # $line_concat_cond_re is a regexp detecting a line continuation ending
2313 # $line_concat is a CODEref that takes care of concatenating two lines
2314 sub collect_from_file {
2315     my $filename = shift;
2316     my $line_concat_cond_re = shift;
2317     my $line_concat = shift;
2318
2319     open my $fh, $filename || die "unable to read $filename: $!\n";
2320     return sub {
2321         my $saved_line = "";
2322         $_ = "";
2323         while (<$fh>) {
2324             chomp;
2325             if (defined $line_concat) {
2326                 $_ = $line_concat->($saved_line, $_);
2327                 $saved_line = "";
2328             }
2329             if (defined $line_concat_cond_re && /$line_concat_cond_re/) {
2330                 $saved_line = $_;
2331                 next;
2332             }
2333             return $_;
2334         }
2335         die "$filename ending with continuation line\n" if $_;
2336         close $fh;
2337         return undef;
2338     }
2339 }
2340
2341 # collect_from_array($array, $line_concat_cond_re, $line_concat)
2342 # $array is an ARRAYref of lines
2343 # $line_concat_cond_re is a regexp detecting a line continuation ending
2344 # $line_concat is a CODEref that takes care of concatenating two lines
2345 sub collect_from_array {
2346     my $array = shift;
2347     my $line_concat_cond_re = shift;
2348     my $line_concat = shift;
2349     my @array = (@$array);
2350
2351     return sub {
2352         my $saved_line = "";
2353         $_ = "";
2354         while (defined($_ = shift @array)) {
2355             chomp;
2356             if (defined $line_concat) {
2357                 $_ = $line_concat->($saved_line, $_);
2358                 $saved_line = "";
2359             }
2360             if (defined $line_concat_cond_re && /$line_concat_cond_re/) {
2361                 $saved_line = $_;
2362                 next;
2363             }
2364             return $_;
2365         }
2366         die "input text ending with continuation line\n" if $_;
2367         return undef;
2368     }
2369 }
2370
2371 # collect_information($lineiterator, $line_continue, $regexp => $CODEref, ...)
2372 # $lineiterator is a CODEref that delivers one line at a time.
2373 # All following arguments are regex/CODEref pairs, where the regexp detects a
2374 # line and the CODEref does something with the result of the regexp.
2375 sub collect_information {
2376     my $lineiterator = shift;
2377     my %collectors = @_;
2378
2379     while(defined($_ = $lineiterator->())) {
2380         chomp;
2381         my $found = 0;
2382         foreach my $re (keys %collectors) {
2383             if ($re ne "OTHERWISE" && /$re/) {
2384                 $collectors{$re}->($lineiterator);
2385                 $found = 1;
2386             };
2387         }
2388         if ($collectors{"OTHERWISE"}) {
2389             $collectors{"OTHERWISE"}->($lineiterator, $_)
2390                 unless $found || !defined $collectors{"OTHERWISE"};
2391         }
2392     }
2393 }