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