Don't export functions marked as FIPSCAPABLE.
[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
546 if ($shlib)
547         {
548         $extra_install= <<"EOF";
549         \$(CP) \"\$(O_SSL)\" \"\$(INSTALLTOP)${o}bin\"
550         \$(CP) \"\$(O_CRYPTO)\" \"\$(INSTALLTOP)${o}bin\"
551         \$(CP) \"\$(L_SSL)\" \"\$(INSTALLTOP)${o}lib\"
552         \$(CP) \"\$(L_CRYPTO)\" \"\$(INSTALLTOP)${o}lib\"
553 EOF
554         if ($no_static_engine)
555                 {
556                 $extra_install .= <<"EOF"
557         \$(MKDIR) \"\$(INSTALLTOP)${o}lib${o}engines\"
558         \$(CP) \"\$(E_SHLIB)\" \"\$(INSTALLTOP)${o}lib${o}engines\"
559 EOF
560                 }
561         }
562 else
563         {
564         $extra_install= <<"EOF";
565         \$(CP) \"\$(O_SSL)\" \"\$(INSTALLTOP)${o}lib\"
566         \$(CP) \"\$(O_CRYPTO)\" \"\$(INSTALLTOP)${o}lib\"
567 EOF
568         $ex_libs .= " $zlib_lib" if $zlib_opt == 1;
569         }
570
571 $defs= <<"EOF";
572 # This makefile has been automatically generated from the OpenSSL distribution.
573 # This single makefile will build the complete OpenSSL distribution and
574 # by default leave the 'intertesting' output files in .${o}out and the stuff
575 # that needs deleting in .${o}tmp.
576 # The file was generated by running 'make makefile.one', which
577 # does a 'make files', which writes all the environment variables from all
578 # the makefiles to the file call MINFO.  This file is used by
579 # util${o}mk1mf.pl to generate makefile.one.
580 # The 'makefile per directory' system suites me when developing this
581 # library and also so I can 'distribute' indervidual library sections.
582 # The one monster makefile better suits building in non-unix
583 # environments.
584
585 EOF
586
587 $defs .= $preamble if defined $preamble;
588
589 $defs.= <<"EOF";
590 INSTALLTOP=$INSTALLTOP
591 OPENSSLDIR=$OPENSSLDIR
592
593 # Set your compiler options
594 PLATFORM=$platform
595 CC=$bin_dir${cc}
596 CFLAG=$cflags
597 APP_CFLAG=$app_cflag
598 LIB_CFLAG=$lib_cflag
599 SHLIB_CFLAG=$shl_cflag
600 APP_EX_OBJ=$app_ex_obj
601 SHLIB_EX_OBJ=$shlib_ex_obj
602 # add extra libraries to this define, for solaris -lsocket -lnsl would
603 # be added
604 EX_LIBS=$ex_libs
605
606 # The OpenSSL directory
607 SRC_D=$src_dir
608
609 LINK=$link
610 LFLAGS=$lflags
611 RSC=$rsc
612 FIPSLINK=\$(PERL) util${o}fipslink.pl
613
614 # The output directory for everything intersting
615 OUT_D=$out_dir
616 # The output directory for all the temporary muck
617 TMP_D=$tmp_dir
618 # The output directory for the header files
619 INC_D=$inc_dir
620 INCO_D=$inc_dir${o}openssl
621
622 PERL=$perl
623 CP=$cp
624 RM=$rm
625 RANLIB=$ranlib
626 MKDIR=$mkdir
627 MKLIB=$bin_dir$mklib
628 MLFLAGS=$mlflags
629 ASM=$bin_dir$asm
630
631 # FIPS validated module and support file locations
632
633 E_PREMAIN_DSO=fips_premain_dso
634
635 FIPSLIB_D=$fipslibdir
636 BASEADDR=$baseaddr
637 FIPS_PREMAIN_SRC=$fips_premain_c_path
638 O_FIPSCANISTER=$fips_canister_path
639 FIPS_SHA1_EXE=$fips_sha1_exe_path
640 PREMAIN_DSO_EXE=$fips_premain_dso_exe_path
641
642 ######################################################
643 # You should not need to touch anything below this point
644 ######################################################
645
646 E_EXE=openssl
647 SSL=$ssl
648 CRYPTO=$crypto
649
650 # BIN_D  - Binary output directory
651 # TEST_D - Binary test file output directory
652 # LIB_D  - library output directory
653 # ENG_D  - dynamic engine output directory
654 # Note: if you change these point to different directories then uncomment out
655 # the lines around the 'NB' comment below.
656
657 BIN_D=\$(OUT_D)
658 TEST_D=\$(OUT_D)
659 LIB_D=\$(OUT_D)
660 ENG_D=\$(OUT_D)
661
662 # INCL_D - local library directory
663 # OBJ_D  - temp object file directory
664 OBJ_D=\$(TMP_D)
665 INCL_D=\$(TMP_D)
666
667 O_SSL=     \$(LIB_D)$o$plib\$(SSL)$shlibp
668 O_CRYPTO=  \$(LIB_D)$o$plib\$(CRYPTO)$shlibp
669 SO_SSL=    $plib\$(SSL)$so_shlibp
670 SO_CRYPTO= $plib\$(CRYPTO)$so_shlibp
671 L_SSL=     \$(LIB_D)$o$plib\$(SSL)$libp
672 L_CRYPTO=  \$(LIB_D)$o$plib\$(CRYPTO)$libp
673
674 L_LIBS= \$(L_SSL) \$(L_CRYPTO) $ex_l_libs
675
676 ######################################################
677 # Don't touch anything below this point
678 ######################################################
679
680 INC=-I\$(INC_D) -I\$(INCL_D)
681 APP_CFLAGS=\$(INC) \$(CFLAG) \$(APP_CFLAG)
682 LIB_CFLAGS=\$(INC) \$(CFLAG) \$(LIB_CFLAG)
683 SHLIB_CFLAGS=\$(INC) \$(CFLAG) \$(LIB_CFLAG) \$(SHLIB_CFLAG)
684 LIBS_DEP=$libs_dep
685
686 #############################################
687 EOF
688
689 $rules=<<"EOF";
690 all: banner \$(TMP_D) \$(BIN_D) \$(TEST_D) \$(LIB_D) \$(INCO_D) headers \$(FIPS_SHA1_EXE) $build_targets
691
692 banner:
693 $banner
694
695 \$(TMP_D):
696         \$(MKDIR) \"\$(TMP_D)\"
697 # NB: uncomment out these lines if BIN_D, TEST_D and LIB_D are different
698 #\$(BIN_D):
699 #       \$(MKDIR) \$(BIN_D)
700 #
701 #\$(TEST_D):
702 #       \$(MKDIR) \$(TEST_D)
703
704 \$(LIB_D):
705         \$(MKDIR) \"\$(LIB_D)\"
706
707 \$(INCO_D): \$(INC_D)
708         \$(MKDIR) \"\$(INCO_D)\"
709
710 \$(INC_D):
711         \$(MKDIR) \"\$(INC_D)\"
712
713 headers: \$(HEADER) \$(EXHEADER)
714         @
715
716 lib: \$(LIBS_DEP) \$(E_SHLIB)
717
718 exe: \$(T_EXE) \$(BIN_D)$o\$(E_EXE)$exep
719
720 install: all
721         \$(MKDIR) \"\$(INSTALLTOP)\"
722         \$(MKDIR) \"\$(INSTALLTOP)${o}bin\"
723         \$(MKDIR) \"\$(INSTALLTOP)${o}include\"
724         \$(MKDIR) \"\$(INSTALLTOP)${o}include${o}openssl\"
725         \$(MKDIR) \"\$(INSTALLTOP)${o}lib\"
726         \$(CP) \"\$(INCO_D)${o}*.\[ch\]\" \"\$(INSTALLTOP)${o}include${o}openssl\"
727         \$(CP) \"\$(BIN_D)$o\$(E_EXE)$exep \$(INSTALLTOP)${o}bin\"
728         \$(MKDIR) \"\$(OPENSSLDIR)\"
729         \$(CP) apps${o}openssl.cnf \"\$(OPENSSLDIR)\"
730 $extra_install
731
732
733 test: \$(T_EXE)
734         cd \$(BIN_D)
735         ..${o}ms${o}test
736
737 clean:
738         \$(RM) \$(TMP_D)$o*.*
739
740 vclean:
741         \$(RM) \$(TMP_D)$o*.*
742         \$(RM) \$(OUT_D)$o*.*
743
744 EOF
745     
746 my $platform_cpp_symbol = "MK1MF_PLATFORM_$platform";
747 $platform_cpp_symbol =~ s/-/_/g;
748 if (open(IN,"crypto/buildinf.h"))
749         {
750         # Remove entry for this platform in existing file buildinf.h.
751
752         my $old_buildinf_h = "";
753         while (<IN>)
754                 {
755                 if (/^\#ifdef $platform_cpp_symbol$/)
756                         {
757                         while (<IN>) { last if (/^\#endif/); }
758                         }
759                 else
760                         {
761                         $old_buildinf_h .= $_;
762                         }
763                 }
764         close(IN);
765
766         open(OUT,">crypto/buildinf.h") || die "Can't open buildinf.h";
767         print OUT $old_buildinf_h;
768         close(OUT);
769         }
770
771 open (OUT,">>crypto/buildinf.h") || die "Can't open buildinf.h";
772 printf OUT <<EOF;
773 #ifdef $platform_cpp_symbol
774   /* auto-generated/updated by util/mk1mf.pl for crypto/cversion.c */
775   #define CFLAGS "$cc $cflags"
776   #define PLATFORM "$platform"
777 EOF
778 printf OUT "  #define DATE \"%s\"\n", scalar gmtime();
779 printf OUT "#endif\n";
780 close(OUT);
781
782 # Strip of trailing ' '
783 foreach (keys %lib_obj) { $lib_obj{$_}=&clean_up_ws($lib_obj{$_}); }
784 $test=&clean_up_ws($test);
785 $e_exe=&clean_up_ws($e_exe);
786 $exheader=&clean_up_ws($exheader);
787 $header=&clean_up_ws($header);
788
789 # First we strip the exheaders from the headers list
790 foreach (split(/\s+/,$exheader)){ $h{$_}=1; }
791 foreach (split(/\s+/,$header))  { $h.=$_." " unless $h{$_}; }
792 chop($h); $header=$h;
793
794 $defs.=&do_defs("HEADER",$header,"\$(INCL_D)","");
795 $rules.=&do_copy_rule("\$(INCL_D)",$header,"");
796
797 $defs.=&do_defs("EXHEADER",$exheader,"\$(INCO_D)","");
798 $rules.=&do_copy_rule("\$(INCO_D)",$exheader,"");
799
800 $defs.=&do_defs("T_OBJ",$test,"\$(OBJ_D)",$obj);
801 $rules.=&do_compile_rule("\$(OBJ_D)",$test,"\$(APP_CFLAGS)");
802
803 $defs.=&do_defs("E_OBJ",$e_exe,"\$(OBJ_D)",$obj);
804 $rules.=&do_compile_rule("\$(OBJ_D)",$e_exe,'-DMONOLITH $(APP_CFLAGS)');
805
806 # Special case rules for fips_start and fips_end fips_premain_dso
807
808 if ($fips)
809         {
810         if ($fipscanisterbuild)
811                 {
812                 $rules.=&cc_compile_target("\$(OBJ_D)${o}fips_start$obj",
813                         "fips${o}fips_canister.c",
814                         "-DFIPS_START \$(SHLIB_CFLAGS)");
815                 $rules.=&cc_compile_target("\$(OBJ_D)${o}fips_end$obj",
816                         "fips${o}fips_canister.c", "\$(SHLIB_CFLAGS)");
817                 }
818         $rules.=&cc_compile_target("\$(OBJ_D)${o}fips_standalone_sha1$obj",
819                 "fips${o}sha${o}fips_standalone_sha1.c",
820                 "\$(SHLIB_CFLAGS)");
821         $rules.=&cc_compile_target("\$(OBJ_D)${o}\$(E_PREMAIN_DSO)$obj",
822                 "fips${o}fips_premain.c",
823                 "-DFINGERPRINT_PREMAIN_DSO_LOAD \$(SHLIB_CFLAGS)");
824         }
825
826 foreach (values %lib_nam)
827         {
828         $lib_obj=$lib_obj{$_};
829         local($slib)=$shlib;
830
831         if (($_ eq "SSL") && $no_ssl2 && $no_ssl3)
832                 {
833                 $rules.="\$(O_SSL):\n\n"; 
834                 next;
835                 }
836
837         $defs.=&do_defs(${_}."OBJ",$lib_obj,"\$(OBJ_D)",$obj);
838         $lib=($slib)?" \$(SHLIB_CFLAGS)".$shlib_ex_cflags{$_}:" \$(LIB_CFLAGS)";
839         $rules.=&do_compile_rule("\$(OBJ_D)",$lib_obj{$_},$lib);
840         }
841
842 # hack to add version info on MSVC
843 if (($platform eq "VC-WIN32") || ($platform eq "VC-WIN64A")
844         || ($platform eq "VC-WIN64I") || ($platform eq "VC-NT")) {
845     $rules.= <<"EOF";
846 \$(OBJ_D)\\\$(CRYPTO).res: ms\\version32.rc
847         \$(RSC) /fo"\$(OBJ_D)\\\$(CRYPTO).res" /d CRYPTO ms\\version32.rc
848
849 \$(OBJ_D)\\\$(SSL).res: ms\\version32.rc
850         \$(RSC) /fo"\$(OBJ_D)\\\$(SSL).res" /d SSL ms\\version32.rc
851
852 EOF
853 }
854
855 $defs.=&do_defs("T_EXE",$test,"\$(TEST_D)",$exep);
856 foreach (split(/\s+/,$test))
857         {
858         my $t_libs;
859         $t=&bname($_);
860         my $ltype;
861         # Check to see if test program is FIPS
862         if ($fips && /fips/)
863                 {
864                 # If fips perform static link to 
865                 # $(O_FIPSCANISTER)
866                 $t_libs = "\$(O_FIPSCANISTER)";
867                 $ltype = 2;
868                 }
869         else
870                 {
871                 $t_libs = "\$(L_LIBS)";
872                 $ltype = 0;
873                 }
874
875         $tt="\$(OBJ_D)${o}$t${obj}";
876         $rules.=&do_link_rule("\$(TEST_D)$o$t$exep",$tt,"\$(LIBS_DEP)","$t_libs \$(EX_LIBS)", $ltype);
877         }
878
879 $defs.=&do_defs("E_SHLIB",$engines . $otherlibs,"\$(ENG_D)",$shlibp);
880
881 foreach (split(/\s+/,$engines))
882         {
883         $rules.=&do_compile_rule("\$(OBJ_D)","engines${o}e_$_",$lib);
884         $rules.= &do_lib_rule("\$(OBJ_D)${o}e_${_}.obj","\$(ENG_D)$o$_$shlibp","",$shlib,"");
885         }
886
887
888
889 $rules.= &do_lib_rule("\$(SSLOBJ)","\$(O_SSL)",$ssl,$shlib,"\$(SO_SSL)");
890 #$rules.= &do_lib_rule("\$(CRYPTOOBJ)","\$(O_CRYPTO)",$crypto,$shlib,"\$(SO_CRYPTO)");
891
892 foreach (split(" ",$otherlibs))
893         {
894         my $uc = $_;
895         $uc =~ tr /a-z/A-Z/;    
896         $rules.= &do_lib_rule("\$(${uc}OBJ)","\$(ENG_D)$o$_$shlibp", "", $shlib, "");
897
898         }
899
900 if ($fips)
901         {
902         if ($shlib)
903                 {
904                 $rules.= &do_lib_rule("\$(CRYPTOOBJ) \$(O_FIPSCANISTER)",
905                                 "\$(O_CRYPTO)", "$crypto",
906                                 $shlib, "\$(SO_CRYPTO)", "\$(BASEADDR)");
907                 }
908         else
909                 {
910                 $rules.= &do_lib_rule("\$(CRYPTOOBJ)",
911                         "\$(O_CRYPTO)",$crypto,$shlib,"\$(SO_CRYPTO)", "");
912                 $rules.= &do_lib_rule("\$(CRYPTOOBJ) \$(FIPSOBJ)",
913                         "\$(LIB_D)$o$crypto_compat",$crypto,$shlib,"\$(SO_CRYPTO)", "");
914                 }
915         }
916         else
917         {
918         $rules.= &do_lib_rule("\$(CRYPTOOBJ)","\$(O_CRYPTO)",$crypto,$shlib,
919                                                         "\$(SO_CRYPTO)");
920         }
921
922 if ($fips)
923         {
924         if ($fipscanisterbuild)
925                 {
926                 $rules.= &do_rlink_rule("\$(O_FIPSCANISTER)",
927                                         "\$(OBJ_D)${o}fips_start$obj",
928                                         "\$(FIPSOBJ)",
929                                         "\$(OBJ_D)${o}fips_end$obj",
930                                         "\$(FIPS_SHA1_EXE)", "");
931                 # FIXME
932                 $rules.=&do_link_rule("\$(FIPS_SHA1_EXE)",
933                                         "\$(OBJ_D)${o}fips_standalone_sha1$obj \$(OBJ_D)${o}sha1dgst$obj $sha1_asm_obj",
934                                         "","\$(EX_LIBS)", 1);
935                 }
936         else
937                 {
938                 $rules.=&do_link_rule("\$(FIPS_SHA1_EXE)",
939                                         "\$(OBJ_D)${o}fips_standalone_sha1$obj \$(O_FIPSCANISTER)",
940                                         "","", 1);
941
942                 }
943         $rules.=&do_link_rule("\$(PREMAIN_DSO_EXE)","\$(OBJ_D)${o}\$(E_PREMAIN_DSO)$obj \$(CRYPTOOBJ) \$(O_FIPSCANISTER)","","\$(EX_LIBS)", 1);
944         
945         }
946
947 $rules.=&do_link_rule("\$(BIN_D)$o\$(E_EXE)$exep","\$(E_OBJ)","\$(LIBS_DEP)","\$(L_LIBS) \$(EX_LIBS)", ($fips && !$shlib) ? 2 : 0);
948
949 print $defs;
950
951 if ($platform eq "linux-elf") {
952     print <<"EOF";
953 # Generate perlasm output files
954 %.cpp:
955         (cd \$(\@D)/..; PERL=perl make -f Makefile asm/\$(\@F))
956 EOF
957 }
958 print "###################################################################\n";
959 print $rules;
960
961 ###############################################
962 # strip off any trailing .[och] and append the relative directory
963 # also remembering to do nothing if we are in one of the dropped
964 # directories
965 sub var_add
966         {
967         local($dir,$val,$keepext)=@_;
968         local(@a,$_,$ret);
969
970         return("") if $no_engine && $dir =~ /\/engine/;
971         return("") if $no_hw   && $dir =~ /\/hw/;
972         return("") if $no_idea && $dir =~ /\/idea/;
973         return("") if $no_aes  && $dir =~ /\/aes/;
974         return("") if $no_camellia  && $dir =~ /\/camellia/;
975         return("") if $no_seed && $dir =~ /\/seed/;
976         return("") if $no_rc2  && $dir =~ /\/rc2/;
977         return("") if $no_rc4  && $dir =~ /\/rc4/;
978         return("") if $no_rc5  && $dir =~ /\/rc5/;
979         return("") if $no_rsa  && $dir =~ /\/rsa/;
980         return("") if $no_rsa  && $dir =~ /^rsaref/;
981         return("") if $no_dsa  && $dir =~ /\/dsa/;
982         return("") if $no_dh   && $dir =~ /\/dh/;
983         return("") if $no_ec   && $dir =~ /\/ec/;
984         return("") if $no_gost   && $dir =~ /\/ccgost/;
985         return("") if $no_cms  && $dir =~ /\/cms/;
986         return("") if $no_jpake  && $dir =~ /\/jpake/;
987         return("") if !$fips   && $dir =~ /^fips/;
988         if ($no_des && $dir =~ /\/des/)
989                 {
990                 if ($val =~ /read_pwd/)
991                         { return("$dir/read_pwd "); }
992                 else
993                         { return(""); }
994                 }
995         return("") if $no_mdc2 && $dir =~ /\/mdc2/;
996         return("") if $no_sock && $dir =~ /\/proxy/;
997         return("") if $no_bf   && $dir =~ /\/bf/;
998         return("") if $no_cast && $dir =~ /\/cast/;
999         return("") if $no_whirlpool && $dir =~ /\/whrlpool/;
1000
1001         $val =~ s/^\s*(.*)\s*$/$1/;
1002         @a=split(/\s+/,$val);
1003         grep(s/\.[och]$//,@a) unless $keepext;
1004
1005         @a=grep(!/^e_.*_3d$/,@a) if $no_des;
1006         @a=grep(!/^e_.*_d$/,@a) if $no_des;
1007         @a=grep(!/^e_.*_ae$/,@a) if $no_idea;
1008         @a=grep(!/^e_.*_i$/,@a) if $no_aes;
1009         @a=grep(!/^e_.*_r2$/,@a) if $no_rc2;
1010         @a=grep(!/^e_.*_r5$/,@a) if $no_rc5;
1011         @a=grep(!/^e_.*_bf$/,@a) if $no_bf;
1012         @a=grep(!/^e_.*_c$/,@a) if $no_cast;
1013         @a=grep(!/^e_rc4$/,@a) if $no_rc4;
1014         @a=grep(!/^e_camellia$/,@a) if $no_camellia;
1015         @a=grep(!/^e_seed$/,@a) if $no_seed;
1016
1017         #@a=grep(!/(^s2_)|(^s23_)/,@a) if $no_ssl2;
1018         #@a=grep(!/(^s3_)|(^s23_)/,@a) if $no_ssl3;
1019
1020         @a=grep(!/(_sock$)|(_acpt$)|(_conn$)|(^pxy_)/,@a) if $no_sock;
1021
1022         @a=grep(!/(^md2)|(_md2$)/,@a) if $no_md2;
1023         @a=grep(!/(^md4)|(_md4$)/,@a) if $no_md4;
1024         @a=grep(!/(^md5)|(_md5$)/,@a) if $no_md5;
1025         @a=grep(!/(rmd)|(ripemd)/,@a) if $no_ripemd;
1026
1027         @a=grep(!/(^d2i_r_)|(^i2d_r_)/,@a) if $no_rsa;
1028         @a=grep(!/(^p_open$)|(^p_seal$)/,@a) if $no_rsa;
1029         @a=grep(!/(^pem_seal$)/,@a) if $no_rsa;
1030
1031         @a=grep(!/(m_dss$)|(m_dss1$)/,@a) if $no_dsa;
1032         @a=grep(!/(^d2i_s_)|(^i2d_s_)|(_dsap$)/,@a) if $no_dsa;
1033
1034         @a=grep(!/^n_pkey$/,@a) if $no_rsa || $no_rc4;
1035
1036         @a=grep(!/_dhp$/,@a) if $no_dh;
1037
1038         @a=grep(!/(^sha[^1])|(_sha$)|(m_dss$)/,@a) if $no_sha;
1039         @a=grep(!/(^sha1)|(_sha1$)|(m_dss1$)/,@a) if $no_sha1;
1040         @a=grep(!/_mdc2$/,@a) if $no_mdc2;
1041
1042         @a=grep(!/(srp)/,@a) if $no_srp;
1043
1044         @a=grep(!/^engine$/,@a) if $no_engine;
1045         @a=grep(!/^hw$/,@a) if $no_hw;
1046         @a=grep(!/(^rsa$)|(^genrsa$)/,@a) if $no_rsa;
1047         @a=grep(!/(^dsa$)|(^gendsa$)|(^dsaparam$)/,@a) if $no_dsa;
1048         @a=grep(!/^gendsa$/,@a) if $no_sha1;
1049         @a=grep(!/(^dh$)|(^gendh$)/,@a) if $no_dh;
1050
1051         @a=grep(!/(^dh)|(_sha1$)|(m_dss1$)/,@a) if $no_sha1;
1052
1053         grep($_="$dir/$_",@a);
1054         @a=grep(!/(^|\/)s_/,@a) if $no_sock;
1055         @a=grep(!/(^|\/)bio_sock/,@a) if $no_sock;
1056         $ret=join(' ',@a)." ";
1057         return($ret);
1058         }
1059
1060 # change things so that each 'token' is only separated by one space
1061 sub clean_up_ws
1062         {
1063         local($w)=@_;
1064
1065         $w =~ s/^\s*(.*)\s*$/$1/;
1066         $w =~ s/\s+/ /g;
1067         return($w);
1068         }
1069
1070 sub do_defs
1071         {
1072         local($var,$files,$location,$postfix)=@_;
1073         local($_,$ret,$pf);
1074         local(*OUT,$tmp,$t);
1075
1076         $files =~ s/\//$o/g if $o ne '/';
1077         $ret="$var="; 
1078         $n=1;
1079         $Vars{$var}.="";
1080         foreach (split(/ /,$files))
1081                 {
1082                 $orig=$_;
1083                 $_=&bname($_) unless /^\$/;
1084                 if ($n++ == 2)
1085                         {
1086                         $n=0;
1087                         $ret.="\\\n\t";
1088                         }
1089                 if (($_ =~ /bss_file/) && ($postfix eq ".h"))
1090                         { $pf=".c"; }
1091                 else    { $pf=$postfix; }
1092                 if ($_ =~ /BN_ASM/)     { $t="$_ "; }
1093                 elsif ($_ =~ /BNCO_ASM/){ $t="$_ "; }
1094                 elsif ($_ =~ /AES_ASM/){ $t="$_ "; }
1095                 elsif ($_ =~ /DES_ENC/) { $t="$_ "; }
1096                 elsif ($_ =~ /BF_ENC/)  { $t="$_ "; }
1097                 elsif ($_ =~ /CAST_ENC/){ $t="$_ "; }
1098                 elsif ($_ =~ /RC4_ENC/) { $t="$_ "; }
1099                 elsif ($_ =~ /RC5_ENC/) { $t="$_ "; }
1100                 elsif ($_ =~ /MD5_ASM/) { $t="$_ "; }
1101                 elsif ($_ =~ /SHA1_ASM/){ $t="$_ "; }
1102                 elsif ($_ =~ /RMD160_ASM/){ $t="$_ "; }
1103                 elsif ($_ =~ /WHIRLPOOL_ASM/){ $t="$_ "; }
1104                 elsif ($_ =~ /CPUID_ASM/){ $t="$_ "; }
1105                 else    { $t="$location${o}$_$pf "; }
1106
1107                 $Vars{$var}.="$t ";
1108                 $ret.=$t;
1109                 }
1110         # hack to add version info on MSVC
1111         if ($shlib && (($platform eq "VC-WIN32") || ($platfrom eq "VC-WIN64I") || ($platform eq "VC-WIN64A") || ($platform eq "VC-NT")))
1112                 {
1113                 if ($var eq "CRYPTOOBJ")
1114                         { $ret.="\$(OBJ_D)\\\$(CRYPTO).res "; }
1115                 elsif ($var eq "SSLOBJ")
1116                         { $ret.="\$(OBJ_D)\\\$(SSL).res "; }
1117                 }
1118         chomp($ret);
1119         $ret.="\n\n";
1120         return($ret);
1121         }
1122
1123 # return the name with the leading path removed
1124 sub bname
1125         {
1126         local($ret)=@_;
1127         $ret =~ s/^.*[\\\/]([^\\\/]+)$/$1/;
1128         return($ret);
1129         }
1130
1131 # return the leading path
1132 sub dname
1133         {
1134         my $ret=shift;
1135         $ret =~ s/(^.*)[\\\/][^\\\/]+$/$1/;
1136         return($ret);
1137         }
1138
1139 ##############################################################
1140 # do a rule for each file that says 'compile' to new direcory
1141 # compile the files in '$files' into $to
1142 sub do_compile_rule
1143         {
1144         local($to,$files,$ex)=@_;
1145         local($ret,$_,$n,$d,$s);
1146
1147         $files =~ s/\//$o/g if $o ne '/';
1148         foreach (split(/\s+/,$files))
1149                 {
1150                 $n=&bname($_);
1151                 $d=&dname($_);
1152                 if (-f "${_}.c")
1153                         {
1154                         $ret.=&cc_compile_target("$to${o}$n$obj","${_}.c",$ex)
1155                         }
1156                 elsif (-f ($s="${d}${o}asm${o}${n}.pl") or
1157                        ($s=~s/sha256/sha512/ and -f $s) or
1158                        -f ($s="${d}${o}${n}.pl"))
1159                         {
1160                         $ret.=&perlasm_compile_target("$to${o}$n$obj",$s,$n);
1161                         }
1162                 elsif (-f ($s="${d}${o}asm${o}${n}.S") or
1163                        -f ($s="${d}${o}${n}.S"))
1164                         {
1165                         $ret.=&Sasm_compile_target("$to${o}$n$obj",$s,$n);
1166                         }
1167                 else    { die "no rule for $_"; }
1168                 }
1169         return($ret);
1170         }
1171
1172 ##############################################################
1173 # do a rule for each file that says 'compile' to new direcory
1174 sub perlasm_compile_target
1175         {
1176         my($target,$source,$bname)=@_;
1177         my($ret);
1178         $bname =~ s/(.*)\.[^\.]$/$1/;
1179         $ret ="\$(TMP_D)$o$bname.asm: $source\n";
1180         $ret.="\t\$(PERL) $source $asmtype \$(CFLAG) >\$\@\n";
1181         if ($cflags =~ /-DOPENSSL_FIPSSYMS/)
1182                 {
1183                 $ret .= "\t\$(PERL) util\\fipsas.pl . \$@ norunasm \$(CFLAG)\n";
1184                 }
1185         $ret .= "\n";
1186         $ret.="$target: \$(TMP_D)$o$bname.asm\n";
1187         $ret.="\t\$(ASM) $afile\$\@ \$(TMP_D)$o$bname.asm\n\n";
1188         return($ret);
1189         }
1190
1191 sub Sasm_compile_target
1192         {
1193         my($target,$source,$bname)=@_;
1194         my($ret);
1195
1196         $bname =~ s/(.*)\.[^\.]$/$1/;
1197         $ret ="\$(TMP_D)$o$bname.asm: $source\n";
1198         $ret.="\t\$(CC) -E \$(CFLAG) $source >\$\@\n\n";
1199         $ret.="$target: \$(TMP_D)$o$bname.asm\n";
1200         $ret.="\t\$(ASM) $afile\$\@ \$(TMP_D)$o$bname.asm\n\n";
1201         return($ret);
1202         }
1203
1204 sub cc_compile_target
1205         {
1206         local($target,$source,$ex_flags)=@_;
1207         local($ret);
1208         
1209         $ex_flags.=" -DMK1MF_BUILD -D$platform_cpp_symbol" if ($source =~ /cversion/);
1210         $target =~ s/\//$o/g if $o ne "/";
1211         $source =~ s/\//$o/g if $o ne "/";
1212         $ret ="$target: \$(SRC_D)$o$source\n\t";
1213         $ret.="\$(CC) ${ofile}$target $ex_flags -c \$(SRC_D)$o$source\n\n";
1214         return($ret);
1215         }
1216
1217 ##############################################################
1218 sub do_asm_rule
1219         {
1220         local($target,$src)=@_;
1221         local($ret,@s,@t,$i);
1222
1223         $target =~ s/\//$o/g if $o ne "/";
1224         $src =~ s/\//$o/g if $o ne "/";
1225
1226         @t=split(/\s+/,$target);
1227         @s=split(/\s+/,$src);
1228
1229
1230         for ($i=0; $i<=$#s; $i++)
1231                 {
1232                 my $objfile = $t[$i];
1233                 my $srcfile = $s[$i];
1234
1235                 if ($perl_asm == 1)
1236                         {
1237                         my $plasm = $objfile;
1238                         $plasm =~ s/${obj}/.pl/;
1239                         $ret.="$srcfile: $plasm\n";
1240                         $ret.="\t\$(PERL) $plasm $asmtype \$(CFLAG) >$srcfile\n\n";
1241                         }
1242
1243                 $ret.="$objfile: $srcfile\n";
1244                 $ret.="\t\$(ASM) $afile$objfile \$(SRC_D)$o$srcfile\n\n";
1245                 }
1246         return($ret);
1247         }
1248
1249 sub do_shlib_rule
1250         {
1251         local($n,$def)=@_;
1252         local($ret,$nn);
1253         local($t);
1254
1255         ($nn=$n) =~ tr/a-z/A-Z/;
1256         $ret.="$n.dll: \$(${nn}OBJ)\n";
1257         if ($vc && $w32)
1258                 {
1259                 $ret.="\t\$(MKSHLIB) $efile$n.dll $def @<<\n  \$(${nn}OBJ_F)\n<<\n";
1260                 }
1261         $ret.="\n";
1262         return($ret);
1263         }
1264
1265 # do a rule for each file that says 'copy' to new direcory on change
1266 sub do_copy_rule
1267         {
1268         local($to,$files,$p)=@_;
1269         local($ret,$_,$n,$pp);
1270         
1271         $files =~ s/\//$o/g if $o ne '/';
1272         foreach (split(/\s+/,$files))
1273                 {
1274                 $n=&bname($_);
1275                 if ($n =~ /bss_file/)
1276                         { $pp=".c"; }
1277                 else    { $pp=$p; }
1278                 $ret.="$to${o}$n$pp: \$(SRC_D)$o$_$pp\n\t\$(CP) \"\$(SRC_D)$o$_$pp\" \"$to${o}$n$pp\"\n\n";
1279                 }
1280         return($ret);
1281         }
1282
1283 sub read_options
1284         {
1285         # Many options are handled in a similar way. In particular
1286         # no-xxx sets zero or more scalars to 1.
1287         # Process these using a hash containing the option name and
1288         # reference to the scalars to set.
1289
1290         my %valid_options = (
1291                 "no-rc2" => \$no_rc2,
1292                 "no-rc4" => \$no_rc4,
1293                 "no-rc5" => \$no_rc5,
1294                 "no-idea" => \$no_idea,
1295                 "no-aes" => \$no_aes,
1296                 "no-camellia" => \$no_camellia,
1297                 "no-seed" => \$no_seed,
1298                 "no-des" => \$no_des,
1299                 "no-bf" => \$no_bf,
1300                 "no-cast" => \$no_cast,
1301                 "no-md2" => \$no_md2,
1302                 "no-md4" => \$no_md4,
1303                 "no-md5" => \$no_md5,
1304                 "no-sha" => \$no_sha,
1305                 "no-sha1" => \$no_sha1,
1306                 "no-ripemd" => \$no_ripemd,
1307                 "no-mdc2" => \$no_mdc2,
1308                 "no-whirlpool" => \$no_whirlpool,
1309                 "no-patents" => 
1310                         [\$no_rc2, \$no_rc4, \$no_rc5, \$no_idea, \$no_rsa],
1311                 "no-rsa" => \$no_rsa,
1312                 "no-dsa" => \$no_dsa,
1313                 "no-dh" => \$no_dh,
1314                 "no-hmac" => \$no_hmac,
1315                 "no-asm" => \$no_asm,
1316                 "nasm" => \$nasm,
1317                 "nw-nasm" => \$nw_nasm,
1318                 "nw-mwasm" => \$nw_mwasm,
1319                 "gaswin" => \$gaswin,
1320                 "no-ssl2" => \$no_ssl2,
1321                 "no-ssl3" => \$no_ssl3,
1322                 "no-tlsext" => \$no_tlsext,
1323                 "no-srp" => \$no_srp,
1324                 "no-cms" => \$no_cms,
1325                 "no-jpake" => \$no_jpake,
1326                 "no-ec2m" => \$no_ec2m,
1327                 "no-ec-nistp224-64-gcc-128" => 0,
1328                 "no-err" => \$no_err,
1329                 "no-sock" => \$no_sock,
1330                 "no-krb5" => \$no_krb5,
1331                 "no-ec" => \$no_ec,
1332                 "no-ecdsa" => \$no_ecdsa,
1333                 "no-ecdh" => \$no_ecdh,
1334                 "no-gost" => \$no_gost,
1335                 "no-engine" => \$no_engine,
1336                 "no-hw" => \$no_hw,
1337                 "just-ssl" =>
1338                         [\$no_rc2, \$no_idea, \$no_des, \$no_bf, \$no_cast,
1339                           \$no_md2, \$no_sha, \$no_mdc2, \$no_dsa, \$no_dh,
1340                           \$no_ssl2, \$no_err, \$no_ripemd, \$no_rc5,
1341                           \$no_aes, \$no_camellia, \$no_seed, \$no_srp],
1342                 "rsaref" => 0,
1343                 "gcc" => \$gcc,
1344                 "debug" => \$debug,
1345                 "profile" => \$profile,
1346                 "shlib" => \$shlib,
1347                 "dll" => \$shlib,
1348                 "shared" => 0,
1349                 "no-gmp" => 0,
1350                 "no-rfc3779" => 0,
1351                 "no-montasm" => 0,
1352                 "no-shared" => 0,
1353                 "no-store" => 0,
1354                 "no-zlib" => 0,
1355                 "no-zlib-dynamic" => 0,
1356                 "fips" => \$fips,
1357                 "fipscanisterbuild" => [\$fips, \$fipscanisterbuild],
1358                 "fipscanisteronly" => [\$fips, \$fipscanisterbuild, \$fipscanisteronly],
1359                 );
1360
1361         if (exists $valid_options{$_})
1362                 {
1363                 my $r = $valid_options{$_};
1364                 if ( ref $r eq "SCALAR")
1365                         { $$r = 1;}
1366                 elsif ( ref $r eq "ARRAY")
1367                         {
1368                         my $r2;
1369                         foreach $r2 (@$r)
1370                                 {
1371                                 $$r2 = 1;
1372                                 }
1373                         }
1374                 }
1375         elsif (/^no-comp$/) { $xcflags = "-DOPENSSL_NO_COMP $xcflags"; }
1376         elsif (/^enable-zlib$/) { $zlib_opt = 1 if $zlib_opt == 0 }
1377         elsif (/^enable-zlib-dynamic$/)
1378                 {
1379                 $zlib_opt = 2;
1380                 }
1381         elsif (/^no-static-engine/)
1382                 {
1383                 $no_static_engine = 1;
1384                 }
1385         elsif (/^enable-static-engine/)
1386                 {
1387                 $no_static_engine = 0;
1388                 }
1389         # There are also enable-xxx options which correspond to
1390         # the no-xxx. Since the scalars are enabled by default
1391         # these can be ignored.
1392         elsif (/^enable-/)
1393                 {
1394                 my $t = $_;
1395                 $t =~ s/^enable/no/;
1396                 if (exists $valid_options{$t})
1397                         {return 1;}
1398                 return 0;
1399                 }
1400         # experimental-xxx is mostly like enable-xxx, but opensslconf.v
1401         # will still set OPENSSL_NO_xxx unless we set OPENSSL_EXPERIMENTAL_xxx.
1402         # (No need to fail if we don't know the algorithm -- this is for adventurous users only.)
1403         elsif (/^experimental-/)
1404                 {
1405                 my $algo, $ALGO;
1406                 ($algo = $_) =~ s/^experimental-//;
1407                 ($ALGO = $algo) =~ tr/[a-z]/[A-Z]/;
1408
1409                 $xcflags="-DOPENSSL_EXPERIMENTAL_$ALGO $xcflags";
1410                 
1411                 }
1412         elsif (/^--with-krb5-flavor=(.*)$/)
1413                 {
1414                 my $krb5_flavor = $1;
1415                 if ($krb5_flavor =~ /^force-[Hh]eimdal$/)
1416                         {
1417                         $xcflags="-DKRB5_HEIMDAL $xcflags";
1418                         }
1419                 elsif ($krb5_flavor =~ /^MIT/i)
1420                         {
1421                         $xcflags="-DKRB5_MIT $xcflags";
1422                         if ($krb5_flavor =~ /^MIT[._-]*1[._-]*[01]/i)
1423                                 {
1424                                 $xcflags="-DKRB5_MIT_OLD11 $xcflags"
1425                                 }
1426                         }
1427                 }
1428         elsif (/^([^=]*)=(.*)$/){ $VARS{$1}=$2; }
1429         elsif (/^-[lL].*$/)     { $l_flags.="$_ "; }
1430         elsif ((!/^-help/) && (!/^-h/) && (!/^-\?/) && /^-.*$/)
1431                 { $c_flags.="$_ "; }
1432         else { return(0); }
1433         return(1);
1434         }
1435
1436 sub fipslib_error
1437         {
1438         print STDERR "***FIPS module directory sanity check failed***\n";
1439         print STDERR "FIPS module build failed, or was deleted\n";
1440         print STDERR "Please rebuild FIPS module.\n"; 
1441         exit 1;
1442         }
1443
1444 sub fips_check_files
1445         {
1446         my $dir = shift @_;
1447         my $ret = 1;
1448         if (!-d $dir)
1449                 {
1450                 print STDERR "FIPS module directory $dir does not exist\n";
1451                 fipslib_error();
1452                 }
1453         foreach (@_)
1454                 {
1455                 if (!-f "$dir${o}$_")
1456                         {
1457                         print STDERR "FIPS module file $_ does not exist!\n";
1458                         $ret = 0;
1459                         }
1460                 }
1461         fipslib_error() if ($ret == 0);
1462         }