Strip CRs when installing fips_premain.c Correct compat library rule
[openssl.git] / util / mk1mf.pl
1 #!/usr/local/bin/perl
2 # A bit of an evil hack but it post processes the file ../MINFO which
3 # is generated by `make files` in the top directory.
4 # This script outputs one mega makefile that has no shell stuff or any
5 # funny stuff
6 #
7
8 $INSTALLTOP="/usr/local/ssl";
9 $OPENSSLDIR="/usr/local/ssl";
10 $OPTIONS="";
11 $ssl_version="";
12 $banner="\t\@echo Building OpenSSL";
13
14 my $no_static_engine = 1;
15 my $engines = "";
16 my $otherlibs = "";
17 local $zlib_opt = 0;    # 0 = no zlib, 1 = static, 2 = dynamic
18 local $zlib_lib = "";
19 local $perl_asm = 0;    # 1 to autobuild asm files from perl scripts
20
21 local $fips_canister_path = "";
22 my $fips_premain_dso_exe_path = "";
23 my $fips_premain_c_path = "";
24 my $fips_sha1_exe_path = "";
25
26 local $fipscanisterbuild = 0;
27
28 my $fipscanisteronly = 0;
29
30 my $fipslibdir = "";
31 my $baseaddr = "";
32
33 my $ex_l_libs = "";
34
35 my $build_targets = "lib exe";
36 my $libs_dep = "\$(O_CRYPTO) \$(O_SSL)";
37
38 # Options to import from top level Makefile
39
40 my %mf_import = (
41         VERSION        => \$ssl_version,
42         OPTIONS        => \$OPTIONS,
43         INSTALLTOP     => \$INSTALLTOP,
44         OPENSSLDIR     => \$OPENSSLDIR,
45         PLATFORM       => \$mf_platform,
46         CFLAG          => \$mf_cflag,
47         DEPFLAG        => \$mf_depflag,
48         CPUID_OBJ      => \$mf_cpuid_asm,
49         BN_ASM         => \$mf_bn_asm,
50         DES_ENC        => \$mf_des_asm,
51         AES_ENC        => \$mf_aes_asm,
52         BF_ENC         => \$mf_bf_asm,
53         CAST_ENC       => \$mf_cast_asm,
54         RC4_ENC        => \$mf_rc4_asm,
55         RC5_ENC        => \$mf_rc5_asm,
56         MD5_ASM_OBJ    => \$mf_md5_asm,
57         SHA1_ASM_OBJ   => \$mf_sha_asm,
58         RMD160_ASM_OBJ => \$mf_rmd_asm,
59         WP_ASM_OBJ     => \$mf_wp_asm,
60         CMLL_ENC       => \$mf_cm_asm,
61         MODES_ASM_OBJ  => \$mf_modes_asm,
62         FIPSCANISTERONLY  => \$mf_fipscanisteronly
63 );
64
65 open(IN,"<Makefile") || die "unable to open Makefile!\n";
66 while(<IN>) {
67     my ($mf_opt, $mf_ref);
68     while (($mf_opt, $mf_ref) = each %mf_import) {
69         if (/^$mf_opt\s*=\s*(.*)$/) {
70            $$mf_ref = $1;
71         }
72     }
73 }
74 close(IN);
75
76 $debug = 1 if $mf_platform =~ /^debug-/;
77
78 if ($mf_fipscanisteronly eq "y") {
79         $fips = 1;
80         $fipscanisterbuild = 1;
81         $fipscanisteronly = 1;
82 }
83
84
85 die "Makefile is not the toplevel Makefile!\n" if $ssl_version eq "";
86
87 $infile="MINFO";
88
89 %ops=(
90         "VC-WIN32",   "Microsoft Visual C++ [4-6] - Windows NT or 9X",
91         "VC-WIN64I",  "Microsoft C/C++ - Win64/IA-64",
92         "VC-WIN64A",  "Microsoft C/C++ - Win64/x64",
93         "VC-CE",   "Microsoft eMbedded Visual C++ 3.0 - Windows CE ONLY",
94         "VC-NT",   "Microsoft Visual C++ [4-6] - Windows NT ONLY",
95         "Mingw32", "GNU C++ - Windows NT or 9x",
96         "Mingw32-files", "Create files with DOS copy ...",
97         "BC-NT",   "Borland C++ 4.5 - Windows NT",
98         "linux-elf","Linux elf",
99         "ultrix-mips","DEC mips ultrix",
100         "FreeBSD","FreeBSD distribution",
101         "OS2-EMX", "EMX GCC OS/2",
102         "netware-clib", "CodeWarrior for NetWare - CLib - with WinSock Sockets",
103         "netware-clib-bsdsock", "CodeWarrior for NetWare - CLib - with BSD Sockets",
104         "netware-libc", "CodeWarrior for NetWare - LibC - with WinSock Sockets",
105         "netware-libc-bsdsock", "CodeWarrior for NetWare - LibC - with BSD Sockets",
106         "default","cc under unix",
107         "auto", "auto detect from top level Makefile"
108         );
109
110 $platform="";
111 my $xcflags="";
112 foreach (@ARGV)
113         {
114         if (!&read_options && !defined($ops{$_}))
115                 {
116                 print STDERR "unknown option - $_\n";
117                 print STDERR "usage: perl mk1mf.pl [options] [system]\n";
118                 print STDERR "\nwhere [system] can be one of the following\n";
119                 foreach $i (sort keys %ops)
120                 { printf STDERR "\t%-10s\t%s\n",$i,$ops{$i}; }
121                 print STDERR <<"EOF";
122 and [options] can be one of
123         no-md2 no-md4 no-md5 no-sha no-mdc2     - Skip this digest
124         no-ripemd
125         no-rc2 no-rc4 no-rc5 no-idea no-des     - Skip this symetric cipher
126         no-bf no-cast no-aes no-camellia no-seed
127         no-rsa no-dsa no-dh                     - Skip this public key cipher
128         no-ssl2 no-ssl3                         - Skip this version of SSL
129         just-ssl                                - remove all non-ssl keys/digest
130         no-asm                                  - No x86 asm
131         no-krb5                                 - No KRB5
132         no-srp                                  - No SRP
133         no-ec                                   - No EC
134         no-ecdsa                                - No ECDSA
135         no-ecdh                                 - No ECDH
136         no-engine                               - No engine
137         no-hw                                   - No hw
138         nasm                                    - Use NASM for x86 asm
139         nw-nasm                                 - Use NASM x86 asm for NetWare
140         nw-mwasm                                - Use Metrowerks x86 asm for NetWare
141         gaswin                                  - Use GNU as with Mingw32
142         no-socks                                - No socket code
143         no-err                                  - No error strings
144         dll/shlib                               - Build shared libraries (MS)
145         debug                                   - Debug build
146         profile                                 - Profiling build
147         gcc                                     - Use Gcc (unix)
148
149 Values that can be set
150 TMP=tmpdir OUT=outdir SRC=srcdir BIN=binpath INC=header-outdir CC=C-compiler
151
152 -L<ex_lib_path> -l<ex_lib>                      - extra library flags (unix)
153 -<ex_cc_flags>                                  - extra 'cc' flags,
154                                                   added (MS), or replace (unix)
155 EOF
156                 exit(1);
157                 }
158         $platform=$_;
159         }
160 foreach (grep(!/^$/, split(/ /, $OPTIONS)))
161         {
162         print STDERR "unknown option - $_\n" if !&read_options;
163         }
164
165 $no_static_engine = 0 if (!$shlib);
166
167 $no_mdc2=1 if ($no_des);
168
169 $no_ssl3=1 if ($no_md5 || $no_sha);
170 $no_ssl3=1 if ($no_rsa && $no_dh);
171
172 $no_ssl2=1 if ($no_md5);
173 $no_ssl2=1 if ($no_rsa);
174
175 $out_def="out";
176 $inc_def="outinc";
177 $tmp_def="tmp";
178
179 $perl="perl" unless defined $perl;
180 $mkdir="-mkdir" unless defined $mkdir;
181
182 ($ssl,$crypto)=("ssl","crypto");
183 $ranlib="echo ranlib";
184
185 $cc=(defined($VARS{'CC'}))?$VARS{'CC'}:'cc';
186 $src_dir=(defined($VARS{'SRC'}))?$VARS{'SRC'}:'.';
187 $bin_dir=(defined($VARS{'BIN'}))?$VARS{'BIN'}:'';
188
189 # $bin_dir.=$o causes a core dump on my sparc :-(
190
191
192 $NT=0;
193
194 push(@INC,"util/pl","pl");
195
196 if ($platform eq "auto") {
197         $platform = $mf_platform;
198         print STDERR "Imported platform $mf_platform\n";
199 }
200
201 if (($platform =~ /VC-(.+)/))
202         {
203         $FLAVOR=$1;
204         $NT = 1 if $1 eq "NT";
205         require 'VC-32.pl';
206         }
207 elsif ($platform eq "Mingw32")
208         {
209         require 'Mingw32.pl';
210         }
211 elsif ($platform eq "Mingw32-files")
212         {
213         require 'Mingw32f.pl';
214         }
215 elsif ($platform eq "BC-NT")
216         {
217         $bc=1;
218         require 'BC-32.pl';
219         }
220 elsif ($platform eq "FreeBSD")
221         {
222         require 'unix.pl';
223         $cflags='-DTERMIO -D_ANSI_SOURCE -O2 -fomit-frame-pointer';
224         }
225 elsif ($platform eq "linux-elf")
226         {
227         require "unix.pl";
228         require "linux.pl";
229         $unix=1;
230         }
231 elsif ($platform eq "ultrix-mips")
232         {
233         require "unix.pl";
234         require "ultrix.pl";
235         $unix=1;
236         }
237 elsif ($platform eq "OS2-EMX")
238         {
239         $wc=1;
240         require 'OS2-EMX.pl';
241         }
242 elsif (($platform eq "netware-clib") || ($platform eq "netware-libc") ||
243        ($platform eq "netware-clib-bsdsock") || ($platform eq "netware-libc-bsdsock"))
244         {
245         $LIBC=1 if $platform eq "netware-libc" || $platform eq "netware-libc-bsdsock";
246         $BSDSOCK=1 if ($platform eq "netware-libc-bsdsock") || ($platform eq "netware-clib-bsdsock");
247         require 'netware.pl';
248         }
249 else
250         {
251         require "unix.pl";
252
253         $unix=1;
254         $cflags.=' -DTERMIO';
255         }
256
257 $out_dir=(defined($VARS{'OUT'}))?$VARS{'OUT'}:$out_def.($debug?".dbg":"");
258 $tmp_dir=(defined($VARS{'TMP'}))?$VARS{'TMP'}:$tmp_def.($debug?".dbg":"");
259 $inc_dir=(defined($VARS{'INC'}))?$VARS{'INC'}:$inc_def;
260
261 $bin_dir=$bin_dir.$o unless ((substr($bin_dir,-1,1) eq $o) || ($bin_dir eq ''));
262
263 $cflags= "$xcflags$cflags" if $xcflags ne "";
264
265 $cflags.=" -DOPENSSL_NO_IDEA" if $no_idea;
266 $cflags.=" -DOPENSSL_NO_AES"  if $no_aes;
267 $cflags.=" -DOPENSSL_NO_CAMELLIA"  if $no_camellia;
268 $cflags.=" -DOPENSSL_NO_SEED" if $no_seed;
269 $cflags.=" -DOPENSSL_NO_RC2"  if $no_rc2;
270 $cflags.=" -DOPENSSL_NO_RC4"  if $no_rc4;
271 $cflags.=" -DOPENSSL_NO_RC5"  if $no_rc5;
272 $cflags.=" -DOPENSSL_NO_MD2"  if $no_md2;
273 $cflags.=" -DOPENSSL_NO_MD4"  if $no_md4;
274 $cflags.=" -DOPENSSL_NO_MD5"  if $no_md5;
275 $cflags.=" -DOPENSSL_NO_SHA"  if $no_sha;
276 $cflags.=" -DOPENSSL_NO_SHA1" if $no_sha1;
277 $cflags.=" -DOPENSSL_NO_RIPEMD" if $no_ripemd;
278 $cflags.=" -DOPENSSL_NO_MDC2" if $no_mdc2;
279 $cflags.=" -DOPENSSL_NO_BF"  if $no_bf;
280 $cflags.=" -DOPENSSL_NO_CAST" if $no_cast;
281 $cflags.=" -DOPENSSL_NO_DES"  if $no_des;
282 $cflags.=" -DOPENSSL_NO_RSA"  if $no_rsa;
283 $cflags.=" -DOPENSSL_NO_DSA"  if $no_dsa;
284 $cflags.=" -DOPENSSL_NO_DH"   if $no_dh;
285 $cflags.=" -DOPENSSL_NO_WHIRLPOOL"   if $no_whirlpool;
286 $cflags.=" -DOPENSSL_NO_SOCK" if $no_sock;
287 $cflags.=" -DOPENSSL_NO_SSL2" if $no_ssl2;
288 $cflags.=" -DOPENSSL_NO_SSL3" if $no_ssl3;
289 $cflags.=" -DOPENSSL_NO_TLSEXT" if $no_tlsext;
290 $cflags.=" -DOPENSSL_NO_SRP" if $no_srp;
291 $cflags.=" -DOPENSSL_NO_CMS" if $no_cms;
292 $cflags.=" -DOPENSSL_NO_ERR"  if $no_err;
293 $cflags.=" -DOPENSSL_NO_KRB5" if $no_krb5;
294 $cflags.=" -DOPENSSL_NO_EC"   if $no_ec;
295 $cflags.=" -DOPENSSL_NO_ECDSA" if $no_ecdsa;
296 $cflags.=" -DOPENSSL_NO_ECDH" if $no_ecdh;
297 $cflags.=" -DOPENSSL_NO_GOST" if $no_gost;
298 $cflags.=" -DOPENSSL_NO_ENGINE"   if $no_engine;
299 $cflags.=" -DOPENSSL_NO_HW"   if $no_hw;
300 $cflags.=" -DOPENSSL_FIPS"    if $fips;
301 $cflags.=" -DOPENSSL_NO_JPAKE"    if $no_jpake;
302 $cflags.=" -DOPENSSL_NO_EC2M"    if $no_ec2m;
303 $cflags.= " -DZLIB" if $zlib_opt;
304 $cflags.= " -DZLIB_SHARED" if $zlib_opt == 2;
305
306 if ($no_static_engine)
307         {
308         $cflags .= " -DOPENSSL_NO_STATIC_ENGINE";
309         }
310 else
311         {
312         $cflags .= " -DOPENSSL_NO_DYNAMIC_ENGINE";
313         }
314
315 #$cflags.=" -DRSAref"  if $rsaref ne "";
316
317 ## if ($unix)
318 ##      { $cflags="$c_flags" if ($c_flags ne ""); }
319 ##else
320         { $cflags="$c_flags$cflags" if ($c_flags ne ""); }
321
322 $ex_libs="$l_flags$ex_libs" if ($l_flags ne "");
323
324
325 %shlib_ex_cflags=("SSL" => " -DOPENSSL_BUILD_SHLIBSSL",
326                   "CRYPTO" => " -DOPENSSL_BUILD_SHLIBCRYPTO");
327
328 if ($msdos)
329         {
330         $banner ="\t\@echo Make sure you have run 'perl Configure $platform' in the\n";
331         $banner.="\t\@echo top level directory, if you don't have perl, you will\n";
332         $banner.="\t\@echo need to probably edit crypto/bn/bn.h, check the\n";
333         $banner.="\t\@echo documentation for details.\n";
334         }
335
336 # have to do this to allow $(CC) under unix
337 $link="$bin_dir$link" if ($link !~ /^\$/);
338
339 $INSTALLTOP =~ s|/|$o|g;
340 $OPENSSLDIR =~ s|/|$o|g;
341
342 #############################################
343 # We parse in input file and 'store' info for later printing.
344 open(IN,"<$infile") || die "unable to open $infile:$!\n";
345 $_=<IN>;
346 for (;;)
347         {
348         chop;
349
350         ($key,$val)=/^([^=]+)=(.*)/;
351         if ($key eq "RELATIVE_DIRECTORY")
352                 {
353                 if ($lib ne "")
354                         {
355                         if ($fips && $dir =~ /^fips/)
356                                 {
357                                 $uc = "FIPS";
358                                 }
359                         else
360                                 {
361                                 $uc=$lib;
362                                 $uc =~ s/^lib(.*)\.a/$1/;
363                                 $uc =~ tr/a-z/A-Z/;
364                                 }
365                         if (($uc ne "FIPS") || $fipscanisterbuild)
366                                 {
367                                 $lib_nam{$uc}=$uc;
368                                 $lib_obj{$uc}.=$libobj." ";
369                                 }
370                         }
371                 last if ($val eq "FINISHED");
372                 $lib="";
373                 $libobj="";
374                 $dir=$val;
375                 }
376
377         if ($key eq "KRB5_INCLUDES")
378                 { $cflags .= " $val";}
379
380         if ($key eq "ZLIB_INCLUDE")
381                 { $cflags .= " $val" if $val ne "";}
382
383         if ($key eq "LIBZLIB")
384                 { $zlib_lib = "$val" if $val ne "";}
385
386         if ($key eq "LIBKRB5")
387                 { $ex_libs .= " $val" if $val ne "";}
388
389         if ($key eq "TEST" && (!$fipscanisteronly || $dir =~ /^fips/ ))
390                 { $test.=&var_add($dir,$val, 0); }
391
392         if (($key eq "PROGS") || ($key eq "E_OBJ"))
393                 { $e_exe.=&var_add($dir,$val, 0); }
394
395         if ($key eq "LIB")
396                 {
397                 $lib=$val;
398                 $lib =~ s/^.*\/([^\/]+)$/$1/;
399                 }
400         if ($key eq "LIBNAME" && $no_static_engine)
401                 {
402                 $lib=$val;
403                 $lib =~ s/^.*\/([^\/]+)$/$1/;
404                 $otherlibs .= " $lib";
405                 }
406
407         if ($key eq "EXHEADER")
408                 { $exheader.=&var_add($dir,$val, 1); }
409
410         if ($key eq "HEADER")
411                 { $header.=&var_add($dir,$val, 1); }
412
413         if ($key eq "LIBOBJ" && ($dir ne "engines" || !$no_static_engine))
414                 { $libobj=&var_add($dir,$val, 0); }
415         if ($key eq "LIBNAMES" && $dir eq "engines" && $no_static_engine)
416                 { $engines.=$val }
417
418         if ($key eq "FIPS_EX_OBJ")
419                 { 
420                 $fips_ex_obj=&var_add("crypto",$val,0);
421                 }
422
423         if ($key eq "FIPSLIBDIR")
424                 {
425                 $fipslibdir=$val;
426                 $fipslibdir =~ s/\/$//;
427                 $fipslibdir =~ s/\//$o/g;
428                 }
429
430         if ($key eq "BASEADDR")
431                 { $baseaddr=$val;}
432
433         if (!($_=<IN>))
434                 { $_="RELATIVE_DIRECTORY=FINISHED\n"; }
435         }
436 close(IN);
437
438 if ($fips)
439         {
440
441         foreach (split " ", $fips_ex_obj)
442                 {
443                 $fips_exclude_obj{$1} = 1 if (/\/([^\/]*)$/);
444                 }
445         foreach (split " ",
446                 "$mf_cpuid_asm $mf_aes_asm $mf_sha_asm $mf_bn_asm " .
447                 "$mf_des_asm $mf_modes_asm")
448                 {
449                 s/\.o//;
450                 $fips_exclude_obj{$_} = 1;
451                 }
452         my @ltmp = split " ", $lib_obj{"CRYPTO"};
453
454
455         $lib_obj{"CRYPTO"} = "";
456
457         foreach(@ltmp)
458                 {
459                 if (/\/([^\/]*)$/ && exists $fips_exclude_obj{$1})
460                         {
461                         if ($fipscanisterbuild)
462                                 {
463                                 $lib_obj{"FIPS"} .= "$_ ";
464                                 }
465                         }
466                 elsif (!$fipscanisteronly)
467                         {
468                         $lib_obj{"CRYPTO"} .= "$_ ";
469                         }
470                 }
471
472         }
473
474 if ($fipscanisterbuild)
475         {
476         $fips_canister_path = "\$(LIB_D)${o}fipscanister.lib" if $fips_canister_path eq "";
477         $fips_premain_c_path = "\$(LIB_D)${o}fips_premain.c";
478         }
479 else
480         {
481         if ($fips_canister_path eq "")
482                 {
483                 $fips_canister_path = "\$(FIPSLIB_D)${o}fipscanister.lib";
484                 }
485
486         if ($fips_premain_c_path eq "")
487                 {
488                 $fips_premain_c_path = "\$(FIPSLIB_D)${o}fips_premain.c";
489                 }
490         }
491
492 if ($fips)
493         {
494         if ($fips_sha1_exe_path eq "")
495                 {
496                 $fips_sha1_exe_path =
497                         "\$(BIN_D)${o}fips_standalone_sha1$exep";
498                 }
499         }
500         else
501         {
502         $fips_sha1_exe_path = "";
503         }
504
505 if ($fips_premain_dso_exe_path eq "")
506         {
507         $fips_premain_dso_exe_path = "\$(BIN_D)${o}fips_premain_dso$exep";
508         }
509
510 #       $ex_build_targets .= "\$(BIN_D)${o}\$(E_PREMAIN_DSO)$exep" if ($fips);
511
512 if ($fips)
513         {
514         if (!$shlib)
515                 {
516                 $build_targets .= " \$(LIB_D)$o$crypto_compat \$(PREMAIN_DSO_EXE)";
517                 $ex_l_libs .= " \$(O_FIPSCANISTER)";
518                 $ex_libs_dep .= " \$(O_FIPSCANISTER)" if $fipscanisterbuild;
519                 }
520         if ($fipscanisterbuild)
521                 {
522                 $fipslibdir = "\$(LIB_D)";
523                 }
524         else
525                 {
526                 if ($fipslibdir eq "")
527                         {
528                         open (IN, "util/fipslib_path.txt") || fipslib_error();
529                         $fipslibdir = <IN>;
530                         chomp $fipslibdir;
531                         close IN;
532                         }
533                 fips_check_files($fipslibdir,
534                                 "fipscanister.lib", "fipscanister.lib.sha1",
535                                 "fips_premain.c", "fips_premain.c.sha1");
536                 }
537         }
538
539 if ($fipscanisteronly)
540         {
541         $build_targets = "\$(O_FIPSCANISTER) \$(T_EXE)";
542         $libs_dep = "";
543         }
544
545 $cp2 = $cp unless defined $cp2;
546
547 $extra_install= <<"EOF";
548         \$(CP) \"\$(INCO_D)${o}*.\[ch\]\" \"\$(INSTALLTOP)${o}include${o}openssl\"
549         \$(CP) \"\$(BIN_D)$o\$(E_EXE)$exep \$(INSTALLTOP)${o}bin\"
550         \$(MKDIR) \"\$(OPENSSLDIR)\"
551         \$(CP) apps${o}openssl.cnf \"\$(OPENSSLDIR)\"
552 EOF
553
554 if ($fipscanisteronly)
555         {
556         $extra_install = <<"EOF";
557         \$(CP) \"\$(O_FIPSCANISTER)\" \"\$(INSTALLTOP)${o}lib\"
558         \$(CP) \"\$(O_FIPSCANISTER).sha1\" \"\$(INSTALLTOP)${o}lib\"
559         \$(CP2) \"fips${o}fips_premain.c\" \"\$(INSTALLTOP)${o}lib\"
560         \$(CP) \"fips${o}fips_premain.c.sha1\" \"\$(INSTALLTOP)${o}lib\"
561         \$(CP) \"\$(INCO_D)${o}fips.h\" \"\$(INSTALLTOP)${o}include${o}openssl\"
562         \$(CP) \"\$(INCO_D)${o}fips_rand.h\" \"\$(INSTALLTOP)${o}include${o}openssl\"
563         \$(CP) "\$(BIN_D)${o}fips_standalone_sha1$exep" \"\$(INSTALLTOP)${o}bin\"
564         \$(CP) \"util${o}fipslink.pl\" \"\$(INSTALLTOP)${o}bin\"
565 EOF
566         }
567 elsif ($shlib)
568         {
569         $extra_install .= <<"EOF";
570         \$(CP) \"\$(O_SSL)\" \"\$(INSTALLTOP)${o}bin\"
571         \$(CP) \"\$(O_CRYPTO)\" \"\$(INSTALLTOP)${o}bin\"
572         \$(CP) \"\$(L_SSL)\" \"\$(INSTALLTOP)${o}lib\"
573         \$(CP) \"\$(L_CRYPTO)\" \"\$(INSTALLTOP)${o}lib\"
574 EOF
575         if ($no_static_engine)
576                 {
577                 $extra_install .= <<"EOF"
578         \$(MKDIR) \"\$(INSTALLTOP)${o}lib${o}engines\"
579         \$(CP) \"\$(E_SHLIB)\" \"\$(INSTALLTOP)${o}lib${o}engines\"
580 EOF
581                 }
582         }
583 else
584         {
585         $extra_install .= <<"EOF";
586         \$(CP) \"\$(O_SSL)\" \"\$(INSTALLTOP)${o}lib\"
587         \$(CP) \"\$(O_CRYPTO)\" \"\$(INSTALLTOP)${o}lib\"
588 EOF
589         $ex_libs .= " $zlib_lib" if $zlib_opt == 1;
590         }
591
592 $defs= <<"EOF";
593 # This makefile has been automatically generated from the OpenSSL distribution.
594 # This single makefile will build the complete OpenSSL distribution and
595 # by default leave the 'intertesting' output files in .${o}out and the stuff
596 # that needs deleting in .${o}tmp.
597 # The file was generated by running 'make makefile.one', which
598 # does a 'make files', which writes all the environment variables from all
599 # the makefiles to the file call MINFO.  This file is used by
600 # util${o}mk1mf.pl to generate makefile.one.
601 # The 'makefile per directory' system suites me when developing this
602 # library and also so I can 'distribute' indervidual library sections.
603 # The one monster makefile better suits building in non-unix
604 # environments.
605
606 EOF
607
608 $defs .= $preamble if defined $preamble;
609
610 $defs.= <<"EOF";
611 INSTALLTOP=$INSTALLTOP
612 OPENSSLDIR=$OPENSSLDIR
613
614 # Set your compiler options
615 PLATFORM=$platform
616 CC=$bin_dir${cc}
617 CFLAG=$cflags
618 APP_CFLAG=$app_cflag
619 LIB_CFLAG=$lib_cflag
620 SHLIB_CFLAG=$shl_cflag
621 APP_EX_OBJ=$app_ex_obj
622 SHLIB_EX_OBJ=$shlib_ex_obj
623 # add extra libraries to this define, for solaris -lsocket -lnsl would
624 # be added
625 EX_LIBS=$ex_libs
626
627 # The OpenSSL directory
628 SRC_D=$src_dir
629
630 LINK=$link
631 LFLAGS=$lflags
632 RSC=$rsc
633 FIPSLINK=\$(PERL) util${o}fipslink.pl
634
635 # The output directory for everything intersting
636 OUT_D=$out_dir
637 # The output directory for all the temporary muck
638 TMP_D=$tmp_dir
639 # The output directory for the header files
640 INC_D=$inc_dir
641 INCO_D=$inc_dir${o}openssl
642
643 PERL=$perl
644 CP=$cp
645 CP2=$cp2
646 RM=$rm
647 RANLIB=$ranlib
648 MKDIR=$mkdir
649 MKLIB=$bin_dir$mklib
650 MLFLAGS=$mlflags
651 ASM=$bin_dir$asm
652
653 # FIPS validated module and support file locations
654
655 E_PREMAIN_DSO=fips_premain_dso
656
657 FIPSLIB_D=$fipslibdir
658 BASEADDR=$baseaddr
659 FIPS_PREMAIN_SRC=$fips_premain_c_path
660 O_FIPSCANISTER=$fips_canister_path
661 FIPS_SHA1_EXE=$fips_sha1_exe_path
662 PREMAIN_DSO_EXE=$fips_premain_dso_exe_path
663
664 ######################################################
665 # You should not need to touch anything below this point
666 ######################################################
667
668 E_EXE=openssl
669 SSL=$ssl
670 CRYPTO=$crypto
671
672 # BIN_D  - Binary output directory
673 # TEST_D - Binary test file output directory
674 # LIB_D  - library output directory
675 # ENG_D  - dynamic engine output directory
676 # Note: if you change these point to different directories then uncomment out
677 # the lines around the 'NB' comment below.
678
679 BIN_D=\$(OUT_D)
680 TEST_D=\$(OUT_D)
681 LIB_D=\$(OUT_D)
682 ENG_D=\$(OUT_D)
683
684 # INCL_D - local library directory
685 # OBJ_D  - temp object file directory
686 OBJ_D=\$(TMP_D)
687 INCL_D=\$(TMP_D)
688
689 O_SSL=     \$(LIB_D)$o$plib\$(SSL)$shlibp
690 O_CRYPTO=  \$(LIB_D)$o$plib\$(CRYPTO)$shlibp
691 SO_SSL=    $plib\$(SSL)$so_shlibp
692 SO_CRYPTO= $plib\$(CRYPTO)$so_shlibp
693 L_SSL=     \$(LIB_D)$o$plib\$(SSL)$libp
694 L_CRYPTO=  \$(LIB_D)$o$plib\$(CRYPTO)$libp
695
696 L_LIBS= \$(L_SSL) \$(L_CRYPTO) $ex_l_libs
697
698 ######################################################
699 # Don't touch anything below this point
700 ######################################################
701
702 INC=-I\$(INC_D) -I\$(INCL_D)
703 APP_CFLAGS=\$(INC) \$(CFLAG) \$(APP_CFLAG)
704 LIB_CFLAGS=\$(INC) \$(CFLAG) \$(LIB_CFLAG)
705 SHLIB_CFLAGS=\$(INC) \$(CFLAG) \$(LIB_CFLAG) \$(SHLIB_CFLAG)
706 LIBS_DEP=$libs_dep
707
708 #############################################
709 EOF
710
711 $rules=<<"EOF";
712 all: banner \$(TMP_D) \$(BIN_D) \$(TEST_D) \$(LIB_D) \$(INCO_D) headers \$(FIPS_SHA1_EXE) $build_targets
713
714 banner:
715 $banner
716
717 \$(TMP_D):
718         \$(MKDIR) \"\$(TMP_D)\"
719 # NB: uncomment out these lines if BIN_D, TEST_D and LIB_D are different
720 #\$(BIN_D):
721 #       \$(MKDIR) \$(BIN_D)
722 #
723 #\$(TEST_D):
724 #       \$(MKDIR) \$(TEST_D)
725
726 \$(LIB_D):
727         \$(MKDIR) \"\$(LIB_D)\"
728
729 \$(INCO_D): \$(INC_D)
730         \$(MKDIR) \"\$(INCO_D)\"
731
732 \$(INC_D):
733         \$(MKDIR) \"\$(INC_D)\"
734
735 headers: \$(HEADER) \$(EXHEADER)
736         @
737
738 lib: \$(LIBS_DEP) \$(E_SHLIB)
739
740 exe: \$(T_EXE) \$(BIN_D)$o\$(E_EXE)$exep
741
742 install: all
743         \$(MKDIR) \"\$(INSTALLTOP)\"
744         \$(MKDIR) \"\$(INSTALLTOP)${o}bin\"
745         \$(MKDIR) \"\$(INSTALLTOP)${o}include\"
746         \$(MKDIR) \"\$(INSTALLTOP)${o}include${o}openssl\"
747         \$(MKDIR) \"\$(INSTALLTOP)${o}lib\"
748 $extra_install
749
750
751 test: \$(T_EXE)
752         cd \$(BIN_D)
753         ..${o}ms${o}test
754
755 clean:
756         \$(RM) \$(TMP_D)$o*.*
757
758 vclean:
759         \$(RM) \$(TMP_D)$o*.*
760         \$(RM) \$(OUT_D)$o*.*
761
762 EOF
763     
764 my $platform_cpp_symbol = "MK1MF_PLATFORM_$platform";
765 $platform_cpp_symbol =~ s/-/_/g;
766 if (open(IN,"crypto/buildinf.h"))
767         {
768         # Remove entry for this platform in existing file buildinf.h.
769
770         my $old_buildinf_h = "";
771         while (<IN>)
772                 {
773                 if (/^\#ifdef $platform_cpp_symbol$/)
774                         {
775                         while (<IN>) { last if (/^\#endif/); }
776                         }
777                 else
778                         {
779                         $old_buildinf_h .= $_;
780                         }
781                 }
782         close(IN);
783
784         open(OUT,">crypto/buildinf.h") || die "Can't open buildinf.h";
785         print OUT $old_buildinf_h;
786         close(OUT);
787         }
788
789 open (OUT,">>crypto/buildinf.h") || die "Can't open buildinf.h";
790 printf OUT <<EOF;
791 #ifdef $platform_cpp_symbol
792   /* auto-generated/updated by util/mk1mf.pl for crypto/cversion.c */
793   #define CFLAGS "$cc $cflags"
794   #define PLATFORM "$platform"
795 EOF
796 printf OUT "  #define DATE \"%s\"\n", scalar gmtime();
797 printf OUT "#endif\n";
798 close(OUT);
799
800 # Strip of trailing ' '
801 foreach (keys %lib_obj) { $lib_obj{$_}=&clean_up_ws($lib_obj{$_}); }
802 $test=&clean_up_ws($test);
803 $e_exe=&clean_up_ws($e_exe);
804 $exheader=&clean_up_ws($exheader);
805 $header=&clean_up_ws($header);
806
807 # First we strip the exheaders from the headers list
808 foreach (split(/\s+/,$exheader)){ $h{$_}=1; }
809 foreach (split(/\s+/,$header))  { $h.=$_." " unless $h{$_}; }
810 chop($h); $header=$h;
811
812 $defs.=&do_defs("HEADER",$header,"\$(INCL_D)","");
813 $rules.=&do_copy_rule("\$(INCL_D)",$header,"");
814
815 $defs.=&do_defs("EXHEADER",$exheader,"\$(INCO_D)","");
816 $rules.=&do_copy_rule("\$(INCO_D)",$exheader,"");
817
818 $defs.=&do_defs("T_OBJ",$test,"\$(OBJ_D)",$obj);
819 $rules.=&do_compile_rule("\$(OBJ_D)",$test,"\$(APP_CFLAGS)");
820
821 $defs.=&do_defs("E_OBJ",$e_exe,"\$(OBJ_D)",$obj);
822 $rules.=&do_compile_rule("\$(OBJ_D)",$e_exe,'-DMONOLITH $(APP_CFLAGS)');
823
824 # Special case rules for fips_start and fips_end fips_premain_dso
825
826 if ($fips)
827         {
828         if ($fipscanisterbuild)
829                 {
830                 $rules.=&cc_compile_target("\$(OBJ_D)${o}fips_start$obj",
831                         "fips${o}fips_canister.c",
832                         "-DFIPS_START \$(SHLIB_CFLAGS)");
833                 $rules.=&cc_compile_target("\$(OBJ_D)${o}fips_end$obj",
834                         "fips${o}fips_canister.c", "\$(SHLIB_CFLAGS)");
835                 }
836         $rules.=&cc_compile_target("\$(OBJ_D)${o}fips_standalone_sha1$obj",
837                 "fips${o}sha${o}fips_standalone_sha1.c",
838                 "\$(SHLIB_CFLAGS)");
839         $rules.=&cc_compile_target("\$(OBJ_D)${o}\$(E_PREMAIN_DSO)$obj",
840                 "fips${o}fips_premain.c",
841                 "-DFINGERPRINT_PREMAIN_DSO_LOAD \$(SHLIB_CFLAGS)");
842         }
843
844 foreach (values %lib_nam)
845         {
846         $lib_obj=$lib_obj{$_};
847         local($slib)=$shlib;
848
849         if (($_ eq "SSL") && $no_ssl2 && $no_ssl3)
850                 {
851                 $rules.="\$(O_SSL):\n\n"; 
852                 next;
853                 }
854
855         $defs.=&do_defs(${_}."OBJ",$lib_obj,"\$(OBJ_D)",$obj);
856         $lib=($slib)?" \$(SHLIB_CFLAGS)".$shlib_ex_cflags{$_}:" \$(LIB_CFLAGS)";
857         $rules.=&do_compile_rule("\$(OBJ_D)",$lib_obj{$_},$lib);
858         }
859
860 # hack to add version info on MSVC
861 if (($platform eq "VC-WIN32") || ($platform eq "VC-WIN64A")
862         || ($platform eq "VC-WIN64I") || ($platform eq "VC-NT")) {
863     $rules.= <<"EOF";
864 \$(OBJ_D)\\\$(CRYPTO).res: ms\\version32.rc
865         \$(RSC) /fo"\$(OBJ_D)\\\$(CRYPTO).res" /d CRYPTO ms\\version32.rc
866
867 \$(OBJ_D)\\\$(SSL).res: ms\\version32.rc
868         \$(RSC) /fo"\$(OBJ_D)\\\$(SSL).res" /d SSL ms\\version32.rc
869
870 EOF
871 }
872
873 $defs.=&do_defs("T_EXE",$test,"\$(TEST_D)",$exep);
874 foreach (split(/\s+/,$test))
875         {
876         my $t_libs;
877         $t=&bname($_);
878         my $ltype;
879         # Check to see if test program is FIPS
880         if ($fips && /fips/)
881                 {
882                 # If fips perform static link to 
883                 # $(O_FIPSCANISTER)
884                 $t_libs = "\$(O_FIPSCANISTER)";
885                 $ltype = 2;
886                 }
887         else
888                 {
889                 $t_libs = "\$(L_LIBS)";
890                 $ltype = 0;
891                 }
892
893         $tt="\$(OBJ_D)${o}$t${obj}";
894         $rules.=&do_link_rule("\$(TEST_D)$o$t$exep",$tt,"\$(LIBS_DEP)","$t_libs \$(EX_LIBS)", $ltype);
895         }
896
897 $defs.=&do_defs("E_SHLIB",$engines . $otherlibs,"\$(ENG_D)",$shlibp);
898
899 foreach (split(/\s+/,$engines))
900         {
901         $rules.=&do_compile_rule("\$(OBJ_D)","engines${o}e_$_",$lib);
902         $rules.= &do_lib_rule("\$(OBJ_D)${o}e_${_}.obj","\$(ENG_D)$o$_$shlibp","",$shlib,"");
903         }
904
905
906
907 $rules.= &do_lib_rule("\$(SSLOBJ)","\$(O_SSL)",$ssl,$shlib,"\$(SO_SSL)");
908 #$rules.= &do_lib_rule("\$(CRYPTOOBJ)","\$(O_CRYPTO)",$crypto,$shlib,"\$(SO_CRYPTO)");
909
910 foreach (split(" ",$otherlibs))
911         {
912         my $uc = $_;
913         $uc =~ tr /a-z/A-Z/;    
914         $rules.= &do_lib_rule("\$(${uc}OBJ)","\$(ENG_D)$o$_$shlibp", "", $shlib, "");
915
916         }
917
918 if ($fips)
919         {
920         if ($shlib)
921                 {
922                 $rules.= &do_lib_rule("\$(CRYPTOOBJ) \$(O_FIPSCANISTER)",
923                                 "\$(O_CRYPTO)", "$crypto",
924                                 $shlib, "\$(SO_CRYPTO)", "\$(BASEADDR)");
925                 }
926         else
927                 {
928                 $rules.= &do_lib_rule("\$(CRYPTOOBJ)",
929                         "\$(O_CRYPTO)",$crypto,$shlib,"\$(SO_CRYPTO)", "");
930                 $rules.= &do_lib_rule("\$(CRYPTOOBJ) \$(O_FIPSCANISTER)",
931                         "\$(LIB_D)$o$crypto_compat",$crypto,$shlib,"\$(SO_CRYPTO)", "");
932                 }
933         }
934         else
935         {
936         $rules.= &do_lib_rule("\$(CRYPTOOBJ)","\$(O_CRYPTO)",$crypto,$shlib,
937                                                         "\$(SO_CRYPTO)");
938         }
939
940 if ($fips)
941         {
942         if ($fipscanisterbuild)
943                 {
944                 $rules.= &do_rlink_rule("\$(O_FIPSCANISTER)",
945                                         "\$(OBJ_D)${o}fips_start$obj",
946                                         "\$(FIPSOBJ)",
947                                         "\$(OBJ_D)${o}fips_end$obj",
948                                         "\$(FIPS_SHA1_EXE)", "");
949                 # FIXME
950                 $rules.=&do_link_rule("\$(FIPS_SHA1_EXE)",
951                                         "\$(OBJ_D)${o}fips_standalone_sha1$obj \$(OBJ_D)${o}sha1dgst$obj $sha1_asm_obj",
952                                         "","\$(EX_LIBS)", 1);
953                 }
954         else
955                 {
956                 $rules.=&do_link_rule("\$(FIPS_SHA1_EXE)",
957                                         "\$(OBJ_D)${o}fips_standalone_sha1$obj \$(O_FIPSCANISTER)",
958                                         "","", 1);
959
960                 }
961         $rules.=&do_link_rule("\$(PREMAIN_DSO_EXE)","\$(OBJ_D)${o}\$(E_PREMAIN_DSO)$obj \$(CRYPTOOBJ) \$(O_FIPSCANISTER)","","\$(EX_LIBS)", 1);
962         
963         }
964
965 $rules.=&do_link_rule("\$(BIN_D)$o\$(E_EXE)$exep","\$(E_OBJ)","\$(LIBS_DEP)","\$(L_LIBS) \$(EX_LIBS)", ($fips && !$shlib) ? 2 : 0);
966
967 print $defs;
968
969 if ($platform eq "linux-elf") {
970     print <<"EOF";
971 # Generate perlasm output files
972 %.cpp:
973         (cd \$(\@D)/..; PERL=perl make -f Makefile asm/\$(\@F))
974 EOF
975 }
976 print "###################################################################\n";
977 print $rules;
978
979 ###############################################
980 # strip off any trailing .[och] and append the relative directory
981 # also remembering to do nothing if we are in one of the dropped
982 # directories
983 sub var_add
984         {
985         local($dir,$val,$keepext)=@_;
986         local(@a,$_,$ret);
987
988         return("") if $no_engine && $dir =~ /\/engine/;
989         return("") if $no_hw   && $dir =~ /\/hw/;
990         return("") if $no_idea && $dir =~ /\/idea/;
991         return("") if $no_aes  && $dir =~ /\/aes/;
992         return("") if $no_camellia  && $dir =~ /\/camellia/;
993         return("") if $no_seed && $dir =~ /\/seed/;
994         return("") if $no_rc2  && $dir =~ /\/rc2/;
995         return("") if $no_rc4  && $dir =~ /\/rc4/;
996         return("") if $no_rc5  && $dir =~ /\/rc5/;
997         return("") if $no_rsa  && $dir =~ /\/rsa/;
998         return("") if $no_rsa  && $dir =~ /^rsaref/;
999         return("") if $no_dsa  && $dir =~ /\/dsa/;
1000         return("") if $no_dh   && $dir =~ /\/dh/;
1001         return("") if $no_ec   && $dir =~ /\/ec/;
1002         return("") if $no_gost   && $dir =~ /\/ccgost/;
1003         return("") if $no_cms  && $dir =~ /\/cms/;
1004         return("") if $no_jpake  && $dir =~ /\/jpake/;
1005         return("") if !$fips   && $dir =~ /^fips/;
1006         if ($no_des && $dir =~ /\/des/)
1007                 {
1008                 if ($val =~ /read_pwd/)
1009                         { return("$dir/read_pwd "); }
1010                 else
1011                         { return(""); }
1012                 }
1013         return("") if $no_mdc2 && $dir =~ /\/mdc2/;
1014         return("") if $no_sock && $dir =~ /\/proxy/;
1015         return("") if $no_bf   && $dir =~ /\/bf/;
1016         return("") if $no_cast && $dir =~ /\/cast/;
1017         return("") if $no_whirlpool && $dir =~ /\/whrlpool/;
1018
1019         $val =~ s/^\s*(.*)\s*$/$1/;
1020         @a=split(/\s+/,$val);
1021         grep(s/\.[och]$//,@a) unless $keepext;
1022
1023         @a=grep(!/^e_.*_3d$/,@a) if $no_des;
1024         @a=grep(!/^e_.*_d$/,@a) if $no_des;
1025         @a=grep(!/^e_.*_ae$/,@a) if $no_idea;
1026         @a=grep(!/^e_.*_i$/,@a) if $no_aes;
1027         @a=grep(!/^e_.*_r2$/,@a) if $no_rc2;
1028         @a=grep(!/^e_.*_r5$/,@a) if $no_rc5;
1029         @a=grep(!/^e_.*_bf$/,@a) if $no_bf;
1030         @a=grep(!/^e_.*_c$/,@a) if $no_cast;
1031         @a=grep(!/^e_rc4$/,@a) if $no_rc4;
1032         @a=grep(!/^e_camellia$/,@a) if $no_camellia;
1033         @a=grep(!/^e_seed$/,@a) if $no_seed;
1034
1035         #@a=grep(!/(^s2_)|(^s23_)/,@a) if $no_ssl2;
1036         #@a=grep(!/(^s3_)|(^s23_)/,@a) if $no_ssl3;
1037
1038         @a=grep(!/(_sock$)|(_acpt$)|(_conn$)|(^pxy_)/,@a) if $no_sock;
1039
1040         @a=grep(!/(^md2)|(_md2$)/,@a) if $no_md2;
1041         @a=grep(!/(^md4)|(_md4$)/,@a) if $no_md4;
1042         @a=grep(!/(^md5)|(_md5$)/,@a) if $no_md5;
1043         @a=grep(!/(rmd)|(ripemd)/,@a) if $no_ripemd;
1044
1045         @a=grep(!/(^d2i_r_)|(^i2d_r_)/,@a) if $no_rsa;
1046         @a=grep(!/(^p_open$)|(^p_seal$)/,@a) if $no_rsa;
1047         @a=grep(!/(^pem_seal$)/,@a) if $no_rsa;
1048
1049         @a=grep(!/(m_dss$)|(m_dss1$)/,@a) if $no_dsa;
1050         @a=grep(!/(^d2i_s_)|(^i2d_s_)|(_dsap$)/,@a) if $no_dsa;
1051
1052         @a=grep(!/^n_pkey$/,@a) if $no_rsa || $no_rc4;
1053
1054         @a=grep(!/_dhp$/,@a) if $no_dh;
1055
1056         @a=grep(!/(^sha[^1])|(_sha$)|(m_dss$)/,@a) if $no_sha;
1057         @a=grep(!/(^sha1)|(_sha1$)|(m_dss1$)/,@a) if $no_sha1;
1058         @a=grep(!/_mdc2$/,@a) if $no_mdc2;
1059
1060         @a=grep(!/(srp)/,@a) if $no_srp;
1061
1062         @a=grep(!/^engine$/,@a) if $no_engine;
1063         @a=grep(!/^hw$/,@a) if $no_hw;
1064         @a=grep(!/(^rsa$)|(^genrsa$)/,@a) if $no_rsa;
1065         @a=grep(!/(^dsa$)|(^gendsa$)|(^dsaparam$)/,@a) if $no_dsa;
1066         @a=grep(!/^gendsa$/,@a) if $no_sha1;
1067         @a=grep(!/(^dh$)|(^gendh$)/,@a) if $no_dh;
1068
1069         @a=grep(!/(^dh)|(_sha1$)|(m_dss1$)/,@a) if $no_sha1;
1070
1071         grep($_="$dir/$_",@a);
1072         @a=grep(!/(^|\/)s_/,@a) if $no_sock;
1073         @a=grep(!/(^|\/)bio_sock/,@a) if $no_sock;
1074         $ret=join(' ',@a)." ";
1075         return($ret);
1076         }
1077
1078 # change things so that each 'token' is only separated by one space
1079 sub clean_up_ws
1080         {
1081         local($w)=@_;
1082
1083         $w =~ s/^\s*(.*)\s*$/$1/;
1084         $w =~ s/\s+/ /g;
1085         return($w);
1086         }
1087
1088 sub do_defs
1089         {
1090         local($var,$files,$location,$postfix)=@_;
1091         local($_,$ret,$pf);
1092         local(*OUT,$tmp,$t);
1093
1094         $files =~ s/\//$o/g if $o ne '/';
1095         $ret="$var="; 
1096         $n=1;
1097         $Vars{$var}.="";
1098         foreach (split(/ /,$files))
1099                 {
1100                 $orig=$_;
1101                 $_=&bname($_) unless /^\$/;
1102                 if ($n++ == 2)
1103                         {
1104                         $n=0;
1105                         $ret.="\\\n\t";
1106                         }
1107                 if (($_ =~ /bss_file/) && ($postfix eq ".h"))
1108                         { $pf=".c"; }
1109                 else    { $pf=$postfix; }
1110                 if ($_ =~ /BN_ASM/)     { $t="$_ "; }
1111                 elsif ($_ =~ /BNCO_ASM/){ $t="$_ "; }
1112                 elsif ($_ =~ /AES_ASM/){ $t="$_ "; }
1113                 elsif ($_ =~ /DES_ENC/) { $t="$_ "; }
1114                 elsif ($_ =~ /BF_ENC/)  { $t="$_ "; }
1115                 elsif ($_ =~ /CAST_ENC/){ $t="$_ "; }
1116                 elsif ($_ =~ /RC4_ENC/) { $t="$_ "; }
1117                 elsif ($_ =~ /RC5_ENC/) { $t="$_ "; }
1118                 elsif ($_ =~ /MD5_ASM/) { $t="$_ "; }
1119                 elsif ($_ =~ /SHA1_ASM/){ $t="$_ "; }
1120                 elsif ($_ =~ /RMD160_ASM/){ $t="$_ "; }
1121                 elsif ($_ =~ /WHIRLPOOL_ASM/){ $t="$_ "; }
1122                 elsif ($_ =~ /CPUID_ASM/){ $t="$_ "; }
1123                 else    { $t="$location${o}$_$pf "; }
1124
1125                 $Vars{$var}.="$t ";
1126                 $ret.=$t;
1127                 }
1128         # hack to add version info on MSVC
1129         if ($shlib && (($platform eq "VC-WIN32") || ($platfrom eq "VC-WIN64I") || ($platform eq "VC-WIN64A") || ($platform eq "VC-NT")))
1130                 {
1131                 if ($var eq "CRYPTOOBJ")
1132                         { $ret.="\$(OBJ_D)\\\$(CRYPTO).res "; }
1133                 elsif ($var eq "SSLOBJ")
1134                         { $ret.="\$(OBJ_D)\\\$(SSL).res "; }
1135                 }
1136         chomp($ret);
1137         $ret.="\n\n";
1138         return($ret);
1139         }
1140
1141 # return the name with the leading path removed
1142 sub bname
1143         {
1144         local($ret)=@_;
1145         $ret =~ s/^.*[\\\/]([^\\\/]+)$/$1/;
1146         return($ret);
1147         }
1148
1149 # return the leading path
1150 sub dname
1151         {
1152         my $ret=shift;
1153         $ret =~ s/(^.*)[\\\/][^\\\/]+$/$1/;
1154         return($ret);
1155         }
1156
1157 ##############################################################
1158 # do a rule for each file that says 'compile' to new direcory
1159 # compile the files in '$files' into $to
1160 sub do_compile_rule
1161         {
1162         local($to,$files,$ex)=@_;
1163         local($ret,$_,$n,$d,$s);
1164
1165         $files =~ s/\//$o/g if $o ne '/';
1166         foreach (split(/\s+/,$files))
1167                 {
1168                 $n=&bname($_);
1169                 $d=&dname($_);
1170                 if (-f "${_}.c")
1171                         {
1172                         $ret.=&cc_compile_target("$to${o}$n$obj","${_}.c",$ex)
1173                         }
1174                 elsif (-f ($s="${d}${o}asm${o}${n}.pl") or
1175                        ($s=~s/sha256/sha512/ and -f $s) or
1176                        -f ($s="${d}${o}${n}.pl"))
1177                         {
1178                         $ret.=&perlasm_compile_target("$to${o}$n$obj",$s,$n);
1179                         }
1180                 elsif (-f ($s="${d}${o}asm${o}${n}.S") or
1181                        -f ($s="${d}${o}${n}.S"))
1182                         {
1183                         $ret.=&Sasm_compile_target("$to${o}$n$obj",$s,$n);
1184                         }
1185                 else    { die "no rule for $_"; }
1186                 }
1187         return($ret);
1188         }
1189
1190 ##############################################################
1191 # do a rule for each file that says 'compile' to new direcory
1192 sub perlasm_compile_target
1193         {
1194         my($target,$source,$bname)=@_;
1195         my($ret);
1196         $bname =~ s/(.*)\.[^\.]$/$1/;
1197         $ret ="\$(TMP_D)$o$bname.asm: $source\n";
1198         $ret.="\t\$(PERL) $source $asmtype \$(CFLAG) >\$\@\n";
1199         if ($cflags =~ /-DOPENSSL_FIPSSYMS/)
1200                 {
1201                 $ret .= "\t\$(PERL) util\\fipsas.pl . \$@ norunasm \$(CFLAG)\n";
1202                 }
1203         $ret .= "\n";
1204         $ret.="$target: \$(TMP_D)$o$bname.asm\n";
1205         $ret.="\t\$(ASM) $afile\$\@ \$(TMP_D)$o$bname.asm\n\n";
1206         return($ret);
1207         }
1208
1209 sub Sasm_compile_target
1210         {
1211         my($target,$source,$bname)=@_;
1212         my($ret);
1213
1214         $bname =~ s/(.*)\.[^\.]$/$1/;
1215         $ret ="\$(TMP_D)$o$bname.asm: $source\n";
1216         $ret.="\t\$(CC) -E \$(CFLAG) $source >\$\@\n\n";
1217         $ret.="$target: \$(TMP_D)$o$bname.asm\n";
1218         $ret.="\t\$(ASM) $afile\$\@ \$(TMP_D)$o$bname.asm\n\n";
1219         return($ret);
1220         }
1221
1222 sub cc_compile_target
1223         {
1224         local($target,$source,$ex_flags)=@_;
1225         local($ret);
1226         
1227         $ex_flags.=" -DMK1MF_BUILD -D$platform_cpp_symbol" if ($source =~ /cversion/);
1228         $target =~ s/\//$o/g if $o ne "/";
1229         $source =~ s/\//$o/g if $o ne "/";
1230         $ret ="$target: \$(SRC_D)$o$source\n\t";
1231         $ret.="\$(CC) ${ofile}$target $ex_flags -c \$(SRC_D)$o$source\n\n";
1232         return($ret);
1233         }
1234
1235 ##############################################################
1236 sub do_asm_rule
1237         {
1238         local($target,$src)=@_;
1239         local($ret,@s,@t,$i);
1240
1241         $target =~ s/\//$o/g if $o ne "/";
1242         $src =~ s/\//$o/g if $o ne "/";
1243
1244         @t=split(/\s+/,$target);
1245         @s=split(/\s+/,$src);
1246
1247
1248         for ($i=0; $i<=$#s; $i++)
1249                 {
1250                 my $objfile = $t[$i];
1251                 my $srcfile = $s[$i];
1252
1253                 if ($perl_asm == 1)
1254                         {
1255                         my $plasm = $objfile;
1256                         $plasm =~ s/${obj}/.pl/;
1257                         $ret.="$srcfile: $plasm\n";
1258                         $ret.="\t\$(PERL) $plasm $asmtype \$(CFLAG) >$srcfile\n\n";
1259                         }
1260
1261                 $ret.="$objfile: $srcfile\n";
1262                 $ret.="\t\$(ASM) $afile$objfile \$(SRC_D)$o$srcfile\n\n";
1263                 }
1264         return($ret);
1265         }
1266
1267 sub do_shlib_rule
1268         {
1269         local($n,$def)=@_;
1270         local($ret,$nn);
1271         local($t);
1272
1273         ($nn=$n) =~ tr/a-z/A-Z/;
1274         $ret.="$n.dll: \$(${nn}OBJ)\n";
1275         if ($vc && $w32)
1276                 {
1277                 $ret.="\t\$(MKSHLIB) $efile$n.dll $def @<<\n  \$(${nn}OBJ_F)\n<<\n";
1278                 }
1279         $ret.="\n";
1280         return($ret);
1281         }
1282
1283 # do a rule for each file that says 'copy' to new direcory on change
1284 sub do_copy_rule
1285         {
1286         local($to,$files,$p)=@_;
1287         local($ret,$_,$n,$pp);
1288         
1289         $files =~ s/\//$o/g if $o ne '/';
1290         foreach (split(/\s+/,$files))
1291                 {
1292                 $n=&bname($_);
1293                 if ($n =~ /bss_file/)
1294                         { $pp=".c"; }
1295                 else    { $pp=$p; }
1296                 $ret.="$to${o}$n$pp: \$(SRC_D)$o$_$pp\n\t\$(CP) \"\$(SRC_D)$o$_$pp\" \"$to${o}$n$pp\"\n\n";
1297                 }
1298         return($ret);
1299         }
1300
1301 sub read_options
1302         {
1303         # Many options are handled in a similar way. In particular
1304         # no-xxx sets zero or more scalars to 1.
1305         # Process these using a hash containing the option name and
1306         # reference to the scalars to set.
1307
1308         my %valid_options = (
1309                 "no-rc2" => \$no_rc2,
1310                 "no-rc4" => \$no_rc4,
1311                 "no-rc5" => \$no_rc5,
1312                 "no-idea" => \$no_idea,
1313                 "no-aes" => \$no_aes,
1314                 "no-camellia" => \$no_camellia,
1315                 "no-seed" => \$no_seed,
1316                 "no-des" => \$no_des,
1317                 "no-bf" => \$no_bf,
1318                 "no-cast" => \$no_cast,
1319                 "no-md2" => \$no_md2,
1320                 "no-md4" => \$no_md4,
1321                 "no-md5" => \$no_md5,
1322                 "no-sha" => \$no_sha,
1323                 "no-sha1" => \$no_sha1,
1324                 "no-ripemd" => \$no_ripemd,
1325                 "no-mdc2" => \$no_mdc2,
1326                 "no-whirlpool" => \$no_whirlpool,
1327                 "no-patents" => 
1328                         [\$no_rc2, \$no_rc4, \$no_rc5, \$no_idea, \$no_rsa],
1329                 "no-rsa" => \$no_rsa,
1330                 "no-dsa" => \$no_dsa,
1331                 "no-dh" => \$no_dh,
1332                 "no-hmac" => \$no_hmac,
1333                 "no-asm" => \$no_asm,
1334                 "nasm" => \$nasm,
1335                 "nw-nasm" => \$nw_nasm,
1336                 "nw-mwasm" => \$nw_mwasm,
1337                 "gaswin" => \$gaswin,
1338                 "no-ssl2" => \$no_ssl2,
1339                 "no-ssl3" => \$no_ssl3,
1340                 "no-tlsext" => \$no_tlsext,
1341                 "no-srp" => \$no_srp,
1342                 "no-cms" => \$no_cms,
1343                 "no-jpake" => \$no_jpake,
1344                 "no-ec2m" => \$no_ec2m,
1345                 "no-ec-nistp224-64-gcc-128" => 0,
1346                 "no-err" => \$no_err,
1347                 "no-sock" => \$no_sock,
1348                 "no-krb5" => \$no_krb5,
1349                 "no-ec" => \$no_ec,
1350                 "no-ecdsa" => \$no_ecdsa,
1351                 "no-ecdh" => \$no_ecdh,
1352                 "no-gost" => \$no_gost,
1353                 "no-engine" => \$no_engine,
1354                 "no-hw" => \$no_hw,
1355                 "just-ssl" =>
1356                         [\$no_rc2, \$no_idea, \$no_des, \$no_bf, \$no_cast,
1357                           \$no_md2, \$no_sha, \$no_mdc2, \$no_dsa, \$no_dh,
1358                           \$no_ssl2, \$no_err, \$no_ripemd, \$no_rc5,
1359                           \$no_aes, \$no_camellia, \$no_seed, \$no_srp],
1360                 "rsaref" => 0,
1361                 "gcc" => \$gcc,
1362                 "debug" => \$debug,
1363                 "profile" => \$profile,
1364                 "shlib" => \$shlib,
1365                 "dll" => \$shlib,
1366                 "shared" => 0,
1367                 "no-gmp" => 0,
1368                 "no-rfc3779" => 0,
1369                 "no-montasm" => 0,
1370                 "no-shared" => 0,
1371                 "no-store" => 0,
1372                 "no-zlib" => 0,
1373                 "no-zlib-dynamic" => 0,
1374                 "fips" => \$fips,
1375                 "fipscanisterbuild" => [\$fips, \$fipscanisterbuild],
1376                 "fipscanisteronly" => [\$fips, \$fipscanisterbuild, \$fipscanisteronly],
1377                 );
1378
1379         if (exists $valid_options{$_})
1380                 {
1381                 my $r = $valid_options{$_};
1382                 if ( ref $r eq "SCALAR")
1383                         { $$r = 1;}
1384                 elsif ( ref $r eq "ARRAY")
1385                         {
1386                         my $r2;
1387                         foreach $r2 (@$r)
1388                                 {
1389                                 $$r2 = 1;
1390                                 }
1391                         }
1392                 }
1393         elsif (/^no-comp$/) { $xcflags = "-DOPENSSL_NO_COMP $xcflags"; }
1394         elsif (/^enable-zlib$/) { $zlib_opt = 1 if $zlib_opt == 0 }
1395         elsif (/^enable-zlib-dynamic$/)
1396                 {
1397                 $zlib_opt = 2;
1398                 }
1399         elsif (/^no-static-engine/)
1400                 {
1401                 $no_static_engine = 1;
1402                 }
1403         elsif (/^enable-static-engine/)
1404                 {
1405                 $no_static_engine = 0;
1406                 }
1407         # There are also enable-xxx options which correspond to
1408         # the no-xxx. Since the scalars are enabled by default
1409         # these can be ignored.
1410         elsif (/^enable-/)
1411                 {
1412                 my $t = $_;
1413                 $t =~ s/^enable/no/;
1414                 if (exists $valid_options{$t})
1415                         {return 1;}
1416                 return 0;
1417                 }
1418         # experimental-xxx is mostly like enable-xxx, but opensslconf.v
1419         # will still set OPENSSL_NO_xxx unless we set OPENSSL_EXPERIMENTAL_xxx.
1420         # (No need to fail if we don't know the algorithm -- this is for adventurous users only.)
1421         elsif (/^experimental-/)
1422                 {
1423                 my $algo, $ALGO;
1424                 ($algo = $_) =~ s/^experimental-//;
1425                 ($ALGO = $algo) =~ tr/[a-z]/[A-Z]/;
1426
1427                 $xcflags="-DOPENSSL_EXPERIMENTAL_$ALGO $xcflags";
1428                 
1429                 }
1430         elsif (/^--with-krb5-flavor=(.*)$/)
1431                 {
1432                 my $krb5_flavor = $1;
1433                 if ($krb5_flavor =~ /^force-[Hh]eimdal$/)
1434                         {
1435                         $xcflags="-DKRB5_HEIMDAL $xcflags";
1436                         }
1437                 elsif ($krb5_flavor =~ /^MIT/i)
1438                         {
1439                         $xcflags="-DKRB5_MIT $xcflags";
1440                         if ($krb5_flavor =~ /^MIT[._-]*1[._-]*[01]/i)
1441                                 {
1442                                 $xcflags="-DKRB5_MIT_OLD11 $xcflags"
1443                                 }
1444                         }
1445                 }
1446         elsif (/^([^=]*)=(.*)$/){ $VARS{$1}=$2; }
1447         elsif (/^-[lL].*$/)     { $l_flags.="$_ "; }
1448         elsif ((!/^-help/) && (!/^-h/) && (!/^-\?/) && /^-.*$/)
1449                 { $c_flags.="$_ "; }
1450         else { return(0); }
1451         return(1);
1452         }
1453
1454 sub fipslib_error
1455         {
1456         print STDERR "***FIPS module directory sanity check failed***\n";
1457         print STDERR "FIPS module build failed, or was deleted\n";
1458         print STDERR "Please rebuild FIPS module.\n"; 
1459         exit 1;
1460         }
1461
1462 sub fips_check_files
1463         {
1464         my $dir = shift @_;
1465         my $ret = 1;
1466         if (!-d $dir)
1467                 {
1468                 print STDERR "FIPS module directory $dir does not exist\n";
1469                 fipslib_error();
1470                 }
1471         foreach (@_)
1472                 {
1473                 if (!-f "$dir${o}$_")
1474                         {
1475                         print STDERR "FIPS module file $_ does not exist!\n";
1476                         $ret = 0;
1477                         }
1478                 }
1479         fipslib_error() if ($ret == 0);
1480         }