mk1mf.pl revision 279265
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
13my $no_static_engine = 0;
14my $engines = "";
15local $zlib_opt = 0;	# 0 = no zlib, 1 = static, 2 = dynamic
16local $zlib_lib = "";
17
18local $fips_canister_path = "";
19my $fips_premain_dso_exe_path = "";
20my $fips_premain_c_path = "";
21my $fips_sha1_exe_path = "";
22
23local $fipscanisterbuild = 0;
24local $fipsdso = 0;
25
26my $fipslibdir = "";
27my $baseaddr = "";
28
29my $ex_l_libs = "";
30
31open(IN,"<Makefile") || die "unable to open Makefile!\n";
32while(<IN>) {
33    $ssl_version=$1 if (/^VERSION=(.*)$/);
34    $OPTIONS=$1 if (/^OPTIONS=(.*)$/);
35    $INSTALLTOP=$1 if (/^INSTALLTOP=(.*$)/);
36}
37close(IN);
38
39die "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="";
64my $xcflags="";
65foreach (@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";
75and [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
101Values that can be set
102TMP=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)
107EOF
108		exit(1);
109		}
110	$platform=$_;
111	}
112foreach (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
146push(@INC,"util/pl","pl");
147if (($platform =~ /VC-(.+)/))
148	{
149	$FLAVOR=$1;
150	$NT = 1 if $1 eq "NT";
151	require 'VC-32.pl';
152	}
153elsif ($platform eq "Mingw32")
154	{
155	require 'Mingw32.pl';
156	}
157elsif ($platform eq "Mingw32-files")
158	{
159	require 'Mingw32f.pl';
160	}
161elsif ($platform eq "BC-NT")
162	{
163	$bc=1;
164	require 'BC-32.pl';
165	}
166elsif ($platform eq "FreeBSD")
167	{
168	require 'unix.pl';
169	$cflags='-DTERMIO -D_ANSI_SOURCE -O2 -fomit-frame-pointer';
170	}
171elsif ($platform eq "linux-elf")
172	{
173	require "unix.pl";
174	require "linux.pl";
175	$unix=1;
176	}
177elsif ($platform eq "ultrix-mips")
178	{
179	require "unix.pl";
180	require "ultrix.pl";
181	$unix=1;
182	}
183elsif ($platform eq "OS2-EMX")
184	{
185	$wc=1;
186	require 'OS2-EMX.pl';
187	}
188elsif (($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	}
195else
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
249if ($no_static_engine)
250	{
251	$cflags .= " -DOPENSSL_NO_STATIC_ENGINE";
252	}
253else
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
271if ($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.
286open(IN,"<$infile") || die "unable to open $infile:$!\n";
287$_=<IN>;
288for (;;)
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	}
372close(IN);
373
374if ($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
411if ($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	}
416else
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
429if ($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
442if ($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
451if ($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
478if ($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\"
485EOF
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\"
491EOF
492		}
493	}
494else
495	{
496	$extra_install= <<"EOF";
497	\$(CP) \"\$(O_SSL)\" \"\$(INSTALLTOP)${o}lib\"
498	\$(CP) \"\$(O_CRYPTO)\" \"\$(INSTALLTOP)${o}lib\"
499EOF
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
517EOF
518
519$defs .= $preamble if defined $preamble;
520
521$defs.= <<"EOF";
522INSTALLTOP=$INSTALLTOP
523
524# Set your compiler options
525PLATFORM=$platform
526CC=$bin_dir${cc}
527CFLAG=$cflags
528APP_CFLAG=$app_cflag
529LIB_CFLAG=$lib_cflag
530SHLIB_CFLAG=$shl_cflag
531APP_EX_OBJ=$app_ex_obj
532SHLIB_EX_OBJ=$shlib_ex_obj
533# add extra libraries to this define, for solaris -lsocket -lnsl would
534# be added
535EX_LIBS=$ex_libs
536
537# The OpenSSL directory
538SRC_D=$src_dir
539
540LINK=$link
541LFLAGS=$lflags
542RSC=$rsc
543FIPSLINK=\$(PERL) util${o}fipslink.pl
544
545AES_ASM_OBJ=$aes_asm_obj
546AES_ASM_SRC=$aes_asm_src
547BN_ASM_OBJ=$bn_asm_obj
548BN_ASM_SRC=$bn_asm_src
549BNCO_ASM_OBJ=$bnco_asm_obj
550BNCO_ASM_SRC=$bnco_asm_src
551DES_ENC_OBJ=$des_enc_obj
552DES_ENC_SRC=$des_enc_src
553BF_ENC_OBJ=$bf_enc_obj
554BF_ENC_SRC=$bf_enc_src
555CAST_ENC_OBJ=$cast_enc_obj
556CAST_ENC_SRC=$cast_enc_src
557RC4_ENC_OBJ=$rc4_enc_obj
558RC4_ENC_SRC=$rc4_enc_src
559RC5_ENC_OBJ=$rc5_enc_obj
560RC5_ENC_SRC=$rc5_enc_src
561MD5_ASM_OBJ=$md5_asm_obj
562MD5_ASM_SRC=$md5_asm_src
563SHA1_ASM_OBJ=$sha1_asm_obj
564SHA1_ASM_SRC=$sha1_asm_src
565RMD160_ASM_OBJ=$rmd160_asm_obj
566RMD160_ASM_SRC=$rmd160_asm_src
567CPUID_ASM_OBJ=$cpuid_asm_obj
568CPUID_ASM_SRC=$cpuid_asm_src
569
570# The output directory for everything intersting
571OUT_D=$out_dir
572# The output directory for all the temporary muck
573TMP_D=$tmp_dir
574# The output directory for the header files
575INC_D=$inc_dir
576INCO_D=$inc_dir${o}openssl
577
578PERL=$perl
579CP=$cp
580RM=$rm
581RANLIB=$ranlib
582MKDIR=$mkdir
583MKLIB=$bin_dir$mklib
584MLFLAGS=$mlflags
585ASM=$bin_dir$asm
586
587# FIPS validated module and support file locations
588
589E_PREMAIN_DSO=fips_premain_dso
590
591FIPSLIB_D=$fipslibdir
592BASEADDR=$baseaddr
593FIPS_PREMAIN_SRC=$fips_premain_c_path
594O_FIPSCANISTER=$fips_canister_path
595FIPS_SHA1_EXE=$fips_sha1_exe_path
596PREMAIN_DSO_EXE=$fips_premain_dso_exe_path
597
598######################################################
599# You should not need to touch anything below this point
600######################################################
601
602E_EXE=openssl
603SSL=$ssl
604CRYPTO=$crypto
605LIBFIPS=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#
614BIN_D=\$(OUT_D)
615TEST_D=\$(OUT_D)
616LIB_D=\$(OUT_D)
617ENG_D=\$(OUT_D)
618
619# INCL_D - local library directory
620# OBJ_D  - temp object file directory
621OBJ_D=\$(TMP_D)
622INCL_D=\$(TMP_D)
623
624O_SSL=     \$(LIB_D)$o$plib\$(SSL)$shlibp
625O_CRYPTO=  \$(LIB_D)$o$plib\$(CRYPTO)$shlibp
626O_FIPS=    \$(LIB_D)$o$plib\$(LIBFIPS)$shlibp
627SO_SSL=    $plib\$(SSL)$so_shlibp
628SO_CRYPTO= $plib\$(CRYPTO)$so_shlibp
629L_SSL=     \$(LIB_D)$o$plib\$(SSL)$libp
630L_CRYPTO=  \$(LIB_D)$o$plib\$(CRYPTO)$libp
631L_FIPS=    \$(LIB_D)$o$plib\$(LIBFIPS)$libp
632
633L_LIBS= \$(L_SSL) \$(L_CRYPTO) $ex_l_libs
634
635######################################################
636# Don't touch anything below this point
637######################################################
638
639INC=-I\$(INC_D) -I\$(INCL_D)
640APP_CFLAGS=\$(INC) \$(CFLAG) \$(APP_CFLAG)
641LIB_CFLAGS=\$(INC) \$(CFLAG) \$(LIB_CFLAG)
642SHLIB_CFLAGS=\$(INC) \$(CFLAG) \$(LIB_CFLAG) \$(SHLIB_CFLAG)
643LIBS_DEP=\$(O_CRYPTO) \$(O_SSL) $ex_libs_dep
644
645#############################################
646EOF
647
648$rules=<<"EOF";
649all: banner \$(TMP_D) \$(BIN_D) \$(TEST_D) \$(LIB_D) \$(INCO_D) headers \$(FIPS_SHA1_EXE) lib exe $ex_build_targets
650
651banner:
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
672headers: \$(HEADER) \$(EXHEADER)
673	@
674
675lib: \$(LIBS_DEP) \$(E_SHLIB)
676
677exe: \$(T_EXE) \$(BIN_D)$o\$(E_EXE)$exep
678
679install: 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
691test: \$(T_EXE)
692	cd \$(BIN_D)
693	..${o}ms${o}test
694
695clean:
696	\$(RM) \$(TMP_D)$o*.*
697
698vclean:
699	\$(RM) \$(TMP_D)$o*.*
700	\$(RM) \$(OUT_D)$o*.*
701
702EOF
703
704my $platform_cpp_symbol = "MK1MF_PLATFORM_$platform";
705$platform_cpp_symbol =~ s/-/_/g;
706if (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
729open (OUT,">>crypto/buildinf.h") || die "Can't open buildinf.h";
730printf 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"
735EOF
736printf OUT "  #define DATE \"%s\"\n", scalar gmtime();
737printf OUT "#endif\n";
738close(OUT);
739
740# Strip of trailing ' '
741foreach (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
748foreach (split(/\s+/,$exheader)){ $h{$_}=1; }
749foreach (split(/\s+/,$header))	{ $h.=$_." " unless $h{$_}; }
750chop($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
766if ($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
784foreach (values %lib_nam)
785	{
786	$lib_obj=$lib_obj{$_};
787	local($slib)=$shlib;
788
789	if ((!$fips && ($_ eq "CRYPTO")) || ($fips && ($_ eq "FIPS")))
790		{
791		if ($cpuid_asm_obj ne "")
792			{
793			$lib_obj =~ s/(\S*\/cryptlib\S*)/$1 \$(CPUID_ASM_OBJ)/;
794			$rules.=&do_asm_rule($cpuid_asm_obj,$cpuid_asm_src);
795			}
796		if ($aes_asm_obj ne "")
797			{
798			$lib_obj =~ s/\s(\S*\/aes_core\S*)/ \$(AES_ASM_OBJ)/;
799			$lib_obj =~ s/\s\S*\/aes_cbc\S*//;
800			$rules.=&do_asm_rule($aes_asm_obj,$aes_asm_src);
801			}
802		if ($sha1_asm_obj ne "")
803			{
804			$lib_obj =~ s/\s(\S*\/sha1dgst\S*)/ $1 \$(SHA1_ASM_OBJ)/;
805			$rules.=&do_asm_rule($sha1_asm_obj,$sha1_asm_src);
806			}
807		if ($bn_asm_obj ne "")
808			{
809			$lib_obj =~ s/\s\S*\/bn_asm\S*/ \$(BN_ASM_OBJ)/;
810			$rules.=&do_asm_rule($bn_asm_obj,$bn_asm_src);
811			}
812		if ($bnco_asm_obj ne "")
813			{
814			$lib_obj .= "\$(BNCO_ASM_OBJ)";
815			$rules.=&do_asm_rule($bnco_asm_obj,$bnco_asm_src);
816			}
817		if ($des_enc_obj ne "")
818			{
819			$lib_obj =~ s/\s\S*des_enc\S*/ \$(DES_ENC_OBJ)/;
820			$lib_obj =~ s/\s\S*\/fcrypt_b\S*\s*/ /;
821			$rules.=&do_asm_rule($des_enc_obj,$des_enc_src);
822			}
823		}
824	if (($bf_enc_obj ne "") && ($_ eq "CRYPTO"))
825		{
826		$lib_obj =~ s/\s\S*\/bf_enc\S*/ \$(BF_ENC_OBJ)/;
827		$rules.=&do_asm_rule($bf_enc_obj,$bf_enc_src);
828		}
829	if (($cast_enc_obj ne "") && ($_ eq "CRYPTO"))
830		{
831		$lib_obj =~ s/(\s\S*\/c_enc\S*)/ \$(CAST_ENC_OBJ)/;
832		$rules.=&do_asm_rule($cast_enc_obj,$cast_enc_src);
833		}
834	if (($rc4_enc_obj ne "") && ($_ eq "CRYPTO"))
835		{
836		$lib_obj =~ s/\s\S*\/rc4_enc\S*/ \$(RC4_ENC_OBJ)/;
837		$rules.=&do_asm_rule($rc4_enc_obj,$rc4_enc_src);
838		}
839	if (($rc5_enc_obj ne "") && ($_ eq "CRYPTO"))
840		{
841		$lib_obj =~ s/\s\S*\/rc5_enc\S*/ \$(RC5_ENC_OBJ)/;
842		$rules.=&do_asm_rule($rc5_enc_obj,$rc5_enc_src);
843		}
844	if (($md5_asm_obj ne "") && ($_ eq "CRYPTO"))
845		{
846		$lib_obj =~ s/\s(\S*\/md5_dgst\S*)/ $1 \$(MD5_ASM_OBJ)/;
847		$rules.=&do_asm_rule($md5_asm_obj,$md5_asm_src);
848		}
849	if (($rmd160_asm_obj ne "") && ($_ eq "CRYPTO"))
850		{
851		$lib_obj =~ s/\s(\S*\/rmd_dgst\S*)/ $1 \$(RMD160_ASM_OBJ)/;
852		$rules.=&do_asm_rule($rmd160_asm_obj,$rmd160_asm_src);
853		}
854	$defs.=&do_defs(${_}."OBJ",$lib_obj,"\$(OBJ_D)",$obj);
855	$lib=($slib)?" \$(SHLIB_CFLAGS)".$shlib_ex_cflags{$_}:" \$(LIB_CFLAGS)";
856	$rules.=&do_compile_rule("\$(OBJ_D)",$lib_obj{$_},$lib);
857	}
858
859# hack to add version info on MSVC
860if (($platform eq "VC-WIN32") || ($platform eq "VC-WIN64A")
861	|| ($platform eq "VC-WIN64I") || ($platform eq "VC-NT")) {
862    $rules.= <<"EOF";
863\$(OBJ_D)\\\$(CRYPTO).res: ms\\version32.rc
864	\$(RSC) /fo"\$(OBJ_D)\\\$(CRYPTO).res" /d CRYPTO ms\\version32.rc
865
866\$(OBJ_D)\\\$(SSL).res: ms\\version32.rc
867	\$(RSC) /fo"\$(OBJ_D)\\\$(SSL).res" /d SSL ms\\version32.rc
868
869\$(OBJ_D)\\\$(LIBFIPS).res: ms\\version32.rc
870	\$(RSC) /fo"\$(OBJ_D)\\\$(LIBFIPS).res" /d FIPS ms\\version32.rc
871
872EOF
873}
874
875$defs.=&do_defs("T_EXE",$test,"\$(TEST_D)",$exep);
876foreach (split(/\s+/,$test))
877	{
878	my $t_libs;
879	$t=&bname($_);
880	my $ltype;
881	# Check to see if test program is FIPS
882	if ($fips && /fips/)
883		{
884		# If fipsdso link to libosslfips.dll
885		# otherwise perform static link to
886		# $(O_FIPSCANISTER)
887		if ($fipsdso)
888			{
889			$t_libs = "\$(L_FIPS)";
890			$ltype = 0;
891			}
892		else
893			{
894			$t_libs = "\$(O_FIPSCANISTER)";
895			$ltype = 2;
896			}
897		}
898	else
899		{
900		$t_libs = "\$(L_LIBS)";
901		$ltype = 0;
902		}
903
904	$tt="\$(OBJ_D)${o}$t${obj}";
905	$rules.=&do_link_rule("\$(TEST_D)$o$t$exep",$tt,"\$(LIBS_DEP)","$t_libs \$(EX_LIBS)", $ltype);
906	}
907
908$defs.=&do_defs("E_SHLIB",$engines,"\$(ENG_D)",$shlibp);
909
910foreach (split(/\s+/,$engines))
911	{
912	$rules.=&do_compile_rule("\$(OBJ_D)","engines${o}e_$_",$lib);
913	$rules.= &do_lib_rule("\$(OBJ_D)${o}e_${_}.obj","\$(ENG_D)$o$_$shlibp","",$shlib,"");
914	}
915
916
917
918$rules.= &do_lib_rule("\$(SSLOBJ)","\$(O_SSL)",$ssl,$shlib,"\$(SO_SSL)");
919
920if ($fips)
921	{
922	if ($shlib)
923		{
924		if ($fipsdso)
925			{
926			$rules.= &do_lib_rule("\$(CRYPTOOBJ)",
927					"\$(O_CRYPTO)", "$crypto",
928					$shlib, "", "");
929			$rules.= &do_lib_rule(
930				"\$(O_FIPSCANISTER)",
931				"\$(O_FIPS)", "\$(LIBFIPS)",
932				$shlib, "\$(SO_CRYPTO)", "\$(BASEADDR)");
933			$rules.= &do_sdef_rule();
934			}
935		else
936			{
937			$rules.= &do_lib_rule(
938				"\$(CRYPTOOBJ) \$(O_FIPSCANISTER)",
939				"\$(O_CRYPTO)", "$crypto",
940				$shlib, "\$(SO_CRYPTO)", "\$(BASEADDR)");
941			}
942		}
943	else
944		{
945		$rules.= &do_lib_rule("\$(CRYPTOOBJ)",
946			"\$(O_CRYPTO)",$crypto,$shlib,"\$(SO_CRYPTO)", "");
947		$rules.= &do_lib_rule("\$(CRYPTOOBJ) \$(FIPSOBJ)",
948			"\$(LIB_D)$o$crypto_compat",$crypto,$shlib,"\$(SO_CRYPTO)", "");
949		}
950	}
951	else
952	{
953	$rules.= &do_lib_rule("\$(CRYPTOOBJ)","\$(O_CRYPTO)",$crypto,$shlib,
954							"\$(SO_CRYPTO)");
955	}
956
957if ($fips)
958	{
959	if ($fipscanisterbuild)
960		{
961		$rules.= &do_rlink_rule("\$(O_FIPSCANISTER)",
962					"\$(OBJ_D)${o}fips_start$obj",
963					"\$(FIPSOBJ)",
964					"\$(OBJ_D)${o}fips_end$obj",
965					"\$(FIPS_SHA1_EXE)", "");
966		$rules.=&do_link_rule("\$(FIPS_SHA1_EXE)",
967					"\$(OBJ_D)${o}fips_standalone_sha1$obj \$(OBJ_D)${o}sha1dgst$obj \$(SHA1_ASM_OBJ)",
968					"","\$(EX_LIBS)", 1);
969		}
970	else
971		{
972		$rules.=&do_link_rule("\$(FIPS_SHA1_EXE)",
973					"\$(OBJ_D)${o}fips_standalone_sha1$obj \$(O_FIPSCANISTER)",
974					"","", 1);
975
976		}
977	$rules.=&do_link_rule("\$(PREMAIN_DSO_EXE)","\$(OBJ_D)${o}\$(E_PREMAIN_DSO)$obj \$(CRYPTOOBJ) \$(O_FIPSCANISTER)","","\$(EX_LIBS)", 1);
978
979	}
980
981$rules.=&do_link_rule("\$(BIN_D)$o\$(E_EXE)$exep","\$(E_OBJ)","\$(LIBS_DEP)","\$(L_LIBS) \$(EX_LIBS)", ($fips && !$shlib) ? 2 : 0);
982
983print $defs;
984
985if ($platform eq "linux-elf") {
986    print <<"EOF";
987# Generate perlasm output files
988%.cpp:
989	(cd \$(\@D)/..; PERL=perl make -f Makefile asm/\$(\@F))
990EOF
991}
992print "###################################################################\n";
993print $rules;
994
995###############################################
996# strip off any trailing .[och] and append the relative directory
997# also remembering to do nothing if we are in one of the dropped
998# directories
999sub var_add
1000	{
1001	local($dir,$val,$keepext)=@_;
1002	local(@a,$_,$ret);
1003
1004	return("") if $no_engine && $dir =~ /\/engine/;
1005	return("") if $no_hw   && $dir =~ /\/hw/;
1006	return("") if $no_idea && $dir =~ /\/idea/;
1007	return("") if $no_aes  && $dir =~ /\/aes/;
1008	return("") if $no_camellia  && $dir =~ /\/camellia/;
1009	return("") if $no_seed && $dir =~ /\/seed/;
1010	return("") if $no_rc2  && $dir =~ /\/rc2/;
1011	return("") if $no_rc4  && $dir =~ /\/rc4/;
1012	return("") if $no_rc5  && $dir =~ /\/rc5/;
1013	return("") if $no_rsa  && $dir =~ /\/rsa/;
1014	return("") if $no_rsa  && $dir =~ /^rsaref/;
1015	return("") if $no_dsa  && $dir =~ /\/dsa/;
1016	return("") if $no_dh   && $dir =~ /\/dh/;
1017	return("") if $no_ec   && $dir =~ /\/ec/;
1018	return("") if $no_cms  && $dir =~ /\/cms/;
1019	return("") if $no_jpake  && $dir =~ /\/jpake/;
1020	return("") if !$fips   && $dir =~ /^fips/;
1021	if ($no_des && $dir =~ /\/des/)
1022		{
1023		if ($val =~ /read_pwd/)
1024			{ return("$dir/read_pwd "); }
1025		else
1026			{ return(""); }
1027		}
1028	return("") if $no_mdc2 && $dir =~ /\/mdc2/;
1029	return("") if $no_sock && $dir =~ /\/proxy/;
1030	return("") if $no_bf   && $dir =~ /\/bf/;
1031	return("") if $no_cast && $dir =~ /\/cast/;
1032
1033	$val =~ s/^\s*(.*)\s*$/$1/;
1034	@a=split(/\s+/,$val);
1035	grep(s/\.[och]$//,@a) unless $keepext;
1036
1037	@a=grep(!/^e_.*_3d$/,@a) if $no_des;
1038	@a=grep(!/^e_.*_d$/,@a) if $no_des;
1039	@a=grep(!/^e_.*_ae$/,@a) if $no_idea;
1040	@a=grep(!/^e_.*_i$/,@a) if $no_aes;
1041	@a=grep(!/^e_.*_r2$/,@a) if $no_rc2;
1042	@a=grep(!/^e_.*_r5$/,@a) if $no_rc5;
1043	@a=grep(!/^e_.*_bf$/,@a) if $no_bf;
1044	@a=grep(!/^e_.*_c$/,@a) if $no_cast;
1045	@a=grep(!/^e_rc4$/,@a) if $no_rc4;
1046	@a=grep(!/^e_camellia$/,@a) if $no_camellia;
1047	@a=grep(!/^e_seed$/,@a) if $no_seed;
1048
1049	@a=grep(!/(^s2_)|(^s23_)/,@a) if $no_ssl2;
1050	@a=grep(!/(^s3_)|(^s23_)/,@a) if $no_ssl3;
1051
1052	@a=grep(!/(_sock$)|(_acpt$)|(_conn$)|(^pxy_)/,@a) if $no_sock;
1053
1054	@a=grep(!/(^md2)|(_md2$)/,@a) if $no_md2;
1055	@a=grep(!/(^md4)|(_md4$)/,@a) if $no_md4;
1056	@a=grep(!/(^md5)|(_md5$)/,@a) if $no_md5;
1057	@a=grep(!/(rmd)|(ripemd)/,@a) if $no_ripemd;
1058
1059	@a=grep(!/(^d2i_r_)|(^i2d_r_)/,@a) if $no_rsa;
1060	@a=grep(!/(^p_open$)|(^p_seal$)/,@a) if $no_rsa;
1061	@a=grep(!/(^pem_seal$)/,@a) if $no_rsa;
1062
1063	@a=grep(!/(m_dss$)|(m_dss1$)/,@a) if $no_dsa;
1064	@a=grep(!/(^d2i_s_)|(^i2d_s_)|(_dsap$)/,@a) if $no_dsa;
1065
1066	@a=grep(!/^n_pkey$/,@a) if $no_rsa || $no_rc4;
1067
1068	@a=grep(!/_dhp$/,@a) if $no_dh;
1069
1070	@a=grep(!/(^sha[^1])|(_sha$)|(m_dss$)/,@a) if $no_sha;
1071	@a=grep(!/(^sha1)|(_sha1$)|(m_dss1$)/,@a) if $no_sha1;
1072	@a=grep(!/_mdc2$/,@a) if $no_mdc2;
1073
1074	@a=grep(!/^engine$/,@a) if $no_engine;
1075	@a=grep(!/^hw$/,@a) if $no_hw;
1076	@a=grep(!/(^rsa$)|(^genrsa$)/,@a) if $no_rsa;
1077	@a=grep(!/(^dsa$)|(^gendsa$)|(^dsaparam$)/,@a) if $no_dsa;
1078	@a=grep(!/^gendsa$/,@a) if $no_sha1;
1079	@a=grep(!/(^dh$)|(^gendh$)/,@a) if $no_dh;
1080
1081	@a=grep(!/(^dh)|(_sha1$)|(m_dss1$)/,@a) if $no_sha1;
1082
1083	grep($_="$dir/$_",@a);
1084	@a=grep(!/(^|\/)s_/,@a) if $no_sock;
1085	@a=grep(!/(^|\/)bio_sock/,@a) if $no_sock;
1086	$ret=join(' ',@a)." ";
1087	return($ret);
1088	}
1089
1090# change things so that each 'token' is only separated by one space
1091sub clean_up_ws
1092	{
1093	local($w)=@_;
1094
1095	$w =~ s/^\s*(.*)\s*$/$1/;
1096	$w =~ s/\s+/ /g;
1097	return($w);
1098	}
1099
1100sub do_defs
1101	{
1102	local($var,$files,$location,$postfix)=@_;
1103	local($_,$ret,$pf);
1104	local(*OUT,$tmp,$t);
1105
1106	$files =~ s/\//$o/g if $o ne '/';
1107	$ret="$var=";
1108	$n=1;
1109	$Vars{$var}.="";
1110	foreach (split(/ /,$files))
1111		{
1112		$orig=$_;
1113		$_=&bname($_) unless /^\$/;
1114		if ($n++ == 2)
1115			{
1116			$n=0;
1117			$ret.="\\\n\t";
1118			}
1119		if (($_ =~ /bss_file/) && ($postfix eq ".h"))
1120			{ $pf=".c"; }
1121		else	{ $pf=$postfix; }
1122		if ($_ =~ /BN_ASM/)	{ $t="$_ "; }
1123		elsif ($_ =~ /BNCO_ASM/){ $t="$_ "; }
1124		elsif ($_ =~ /DES_ENC/)	{ $t="$_ "; }
1125		elsif ($_ =~ /BF_ENC/)	{ $t="$_ "; }
1126		elsif ($_ =~ /CAST_ENC/){ $t="$_ "; }
1127		elsif ($_ =~ /RC4_ENC/)	{ $t="$_ "; }
1128		elsif ($_ =~ /RC5_ENC/)	{ $t="$_ "; }
1129		elsif ($_ =~ /MD5_ASM/)	{ $t="$_ "; }
1130		elsif ($_ =~ /SHA1_ASM/){ $t="$_ "; }
1131		elsif ($_ =~ /AES_ASM/){ $t="$_ "; }
1132		elsif ($_ =~ /RMD160_ASM/){ $t="$_ "; }
1133		elsif ($_ =~ /CPUID_ASM/){ $t="$_ "; }
1134		else	{ $t="$location${o}$_$pf "; }
1135
1136		$Vars{$var}.="$t ";
1137		$ret.=$t;
1138		}
1139	# hack to add version info on MSVC
1140	if ($shlib && (($platform eq "VC-WIN32") || ($platfrom eq "VC-WIN64I") || ($platform eq "VC-WIN64A") || ($platform eq "VC-NT")))
1141		{
1142		if ($var eq "CRYPTOOBJ")
1143			{ $ret.="\$(OBJ_D)\\\$(CRYPTO).res "; }
1144		elsif ($var eq "SSLOBJ")
1145			{ $ret.="\$(OBJ_D)\\\$(SSL).res "; }
1146		}
1147	chomp($ret);
1148	$ret.="\n\n";
1149	return($ret);
1150	}
1151
1152# return the name with the leading path removed
1153sub bname
1154	{
1155	local($ret)=@_;
1156	$ret =~ s/^.*[\\\/]([^\\\/]+)$/$1/;
1157	return($ret);
1158	}
1159
1160
1161##############################################################
1162# do a rule for each file that says 'compile' to new direcory
1163# compile the files in '$files' into $to
1164sub do_compile_rule
1165	{
1166	local($to,$files,$ex)=@_;
1167	local($ret,$_,$n);
1168
1169	$files =~ s/\//$o/g if $o ne '/';
1170	foreach (split(/\s+/,$files))
1171		{
1172		$n=&bname($_);
1173		$ret.=&cc_compile_target("$to${o}$n$obj","${_}.c",$ex)
1174		}
1175	return($ret);
1176	}
1177
1178##############################################################
1179# do a rule for each file that says 'compile' to new direcory
1180sub cc_compile_target
1181	{
1182	local($target,$source,$ex_flags)=@_;
1183	local($ret);
1184
1185	$ex_flags.=" -DMK1MF_BUILD -D$platform_cpp_symbol" if ($source =~ /cversion/);
1186	$target =~ s/\//$o/g if $o ne "/";
1187	$source =~ s/\//$o/g if $o ne "/";
1188	$ret ="$target: \$(SRC_D)$o$source\n\t";
1189	$ret.="\$(CC) ${ofile}$target $ex_flags -c \$(SRC_D)$o$source\n\n";
1190	return($ret);
1191	}
1192
1193##############################################################
1194sub do_asm_rule
1195	{
1196	local($target,$src)=@_;
1197	local($ret,@s,@t,$i);
1198
1199	$target =~ s/\//$o/g if $o ne "/";
1200	$src =~ s/\//$o/g if $o ne "/";
1201
1202	@s=split(/\s+/,$src);
1203	@t=split(/\s+/,$target);
1204
1205	for ($i=0; $i<=$#s; $i++)
1206		{
1207		$ret.="$t[$i]: $s[$i]\n";
1208		$ret.="\t\$(ASM) $afile$t[$i] \$(SRC_D)$o$s[$i]\n\n";
1209		}
1210	return($ret);
1211	}
1212
1213sub do_shlib_rule
1214	{
1215	local($n,$def)=@_;
1216	local($ret,$nn);
1217	local($t);
1218
1219	($nn=$n) =~ tr/a-z/A-Z/;
1220	$ret.="$n.dll: \$(${nn}OBJ)\n";
1221	if ($vc && $w32)
1222		{
1223		$ret.="\t\$(MKSHLIB) $efile$n.dll $def @<<\n  \$(${nn}OBJ_F)\n<<\n";
1224		}
1225	$ret.="\n";
1226	return($ret);
1227	}
1228
1229# do a rule for each file that says 'copy' to new direcory on change
1230sub do_copy_rule
1231	{
1232	local($to,$files,$p)=@_;
1233	local($ret,$_,$n,$pp);
1234
1235	$files =~ s/\//$o/g if $o ne '/';
1236	foreach (split(/\s+/,$files))
1237		{
1238		$n=&bname($_);
1239		if ($n =~ /bss_file/)
1240			{ $pp=".c"; }
1241		else	{ $pp=$p; }
1242		$ret.="$to${o}$n$pp: \$(SRC_D)$o$_$pp\n\t\$(CP) \"\$(SRC_D)$o$_$pp\" \"$to${o}$n$pp\"\n\n";
1243		}
1244	return($ret);
1245	}
1246
1247sub read_options
1248	{
1249	# Many options are handled in a similar way. In particular
1250	# no-xxx sets zero or more scalars to 1.
1251	# Process these using a hash containing the option name and
1252	# reference to the scalars to set.
1253
1254	my %valid_options = (
1255		"no-rc2" => \$no_rc2,
1256		"no-rc4" => \$no_rc4,
1257		"no-rc5" => \$no_rc5,
1258		"no-idea" => \$no_idea,
1259		"no-aes" => \$no_aes,
1260		"no-camellia" => \$no_camellia,
1261		"no-seed" => \$no_seed,
1262		"no-des" => \$no_des,
1263		"no-bf" => \$no_bf,
1264		"no-cast" => \$no_cast,
1265		"no-md2" => \$no_md2,
1266		"no-md4" => \$no_md4,
1267		"no-md5" => \$no_md5,
1268		"no-sha" => \$no_sha,
1269		"no-sha1" => \$no_sha1,
1270		"no-ripemd" => \$no_ripemd,
1271		"no-mdc2" => \$no_mdc2,
1272		"no-patents" =>
1273			[\$no_rc2, \$no_rc4, \$no_rc5, \$no_idea, \$no_rsa],
1274		"no-rsa" => \$no_rsa,
1275		"no-dsa" => \$no_dsa,
1276		"no-dh" => \$no_dh,
1277		"no-hmac" => \$no_hmac,
1278		"no-asm" => \$no_asm,
1279		"nasm" => \$nasm,
1280		"ml64" => \$ml64,
1281		"nw-nasm" => \$nw_nasm,
1282		"nw-mwasm" => \$nw_mwasm,
1283		"gaswin" => \$gaswin,
1284		"no-ssl2" => \$no_ssl2,
1285		"no-ssl3" => \$no_ssl3,
1286		"no-tlsext" => \$no_tlsext,
1287		"no-cms" => \$no_cms,
1288		"no-jpake" => \$no_jpake,
1289		"no-capieng" => \$no_capieng,
1290		"no-err" => \$no_err,
1291		"no-sock" => \$no_sock,
1292		"no-krb5" => \$no_krb5,
1293		"no-ec" => \$no_ec,
1294		"no-ecdsa" => \$no_ecdsa,
1295		"no-ecdh" => \$no_ecdh,
1296		"no-engine" => \$no_engine,
1297		"no-hw" => \$no_hw,
1298		"just-ssl" =>
1299			[\$no_rc2, \$no_idea, \$no_des, \$no_bf, \$no_cast,
1300			  \$no_md2, \$no_sha, \$no_mdc2, \$no_dsa, \$no_dh,
1301			  \$no_ssl2, \$no_err, \$no_ripemd, \$no_rc5,
1302			  \$no_aes, \$no_camellia, \$no_seed],
1303		"rsaref" => 0,
1304		"gcc" => \$gcc,
1305		"debug" => \$debug,
1306		"profile" => \$profile,
1307		"shlib" => \$shlib,
1308		"dll" => \$shlib,
1309		"shared" => 0,
1310		"no-gmp" => 0,
1311		"no-rfc3779" => 0,
1312		"no-montasm" => 0,
1313		"no-shared" => 0,
1314		"no-zlib" => 0,
1315		"no-zlib-dynamic" => 0,
1316		"fips" => \$fips,
1317		"fipscanisterbuild" => [\$fips, \$fipscanisterbuild],
1318		"fipsdso" => [\$fips, \$fipscanisterbuild, \$fipsdso],
1319		);
1320
1321	if (exists $valid_options{$_})
1322		{
1323		my $r = $valid_options{$_};
1324		if ( ref $r eq "SCALAR")
1325			{ $$r = 1;}
1326		elsif ( ref $r eq "ARRAY")
1327			{
1328			my $r2;
1329			foreach $r2 (@$r)
1330				{
1331				$$r2 = 1;
1332				}
1333			}
1334		}
1335	elsif (/^no-comp$/) { $xcflags = "-DOPENSSL_NO_COMP $xcflags"; }
1336	elsif (/^enable-zlib$/) { $zlib_opt = 1 if $zlib_opt == 0 }
1337	elsif (/^enable-zlib-dynamic$/)
1338		{
1339		$zlib_opt = 2;
1340		}
1341	elsif (/^no-static-engine/)
1342		{
1343		$no_static_engine = 1;
1344		}
1345	elsif (/^enable-static-engine/)
1346		{
1347		$no_static_engine = 0;
1348		}
1349	# There are also enable-xxx options which correspond to
1350	# the no-xxx. Since the scalars are enabled by default
1351	# these can be ignored.
1352	elsif (/^enable-/)
1353		{
1354		my $t = $_;
1355		$t =~ s/^enable/no/;
1356		if (exists $valid_options{$t})
1357			{return 1;}
1358		return 0;
1359		}
1360	# experimental-xxx is mostly like enable-xxx, but opensslconf.v
1361	# will still set OPENSSL_NO_xxx unless we set OPENSSL_EXPERIMENTAL_xxx.
1362	# (No need to fail if we don't know the algorithm -- this is for adventurous users only.)
1363	elsif (/^experimental-/)
1364		{
1365		my $algo, $ALGO;
1366		($algo = $_) =~ s/^experimental-//;
1367		($ALGO = $algo) =~ tr/[a-z]/[A-Z]/;
1368
1369		$xcflags="-DOPENSSL_EXPERIMENTAL_$ALGO $xcflags";
1370
1371		}
1372	elsif (/^--with-krb5-flavor=(.*)$/)
1373		{
1374		my $krb5_flavor = $1;
1375		if ($krb5_flavor =~ /^force-[Hh]eimdal$/)
1376			{
1377			$xcflags="-DKRB5_HEIMDAL $xcflags";
1378			}
1379		elsif ($krb5_flavor =~ /^MIT/i)
1380			{
1381			$xcflags="-DKRB5_MIT $xcflags";
1382		 	if ($krb5_flavor =~ /^MIT[._-]*1[._-]*[01]/i)
1383				{
1384				$xcflags="-DKRB5_MIT_OLD11 $xcflags"
1385				}
1386			}
1387		}
1388	elsif (/^([^=]*)=(.*)$/){ $VARS{$1}=$2; }
1389	elsif (/^-[lL].*$/)	{ $l_flags.="$_ "; }
1390	elsif ((!/^-help/) && (!/^-h/) && (!/^-\?/) && /^-.*$/)
1391		{ $c_flags.="$_ "; }
1392	else { return(0); }
1393	return(1);
1394	}
1395
1396sub fipslib_error
1397	{
1398	print STDERR "***FIPS module directory sanity check failed***\n";
1399	print STDERR "FIPS module build failed, or was deleted\n";
1400	print STDERR "Please rebuild FIPS module.\n";
1401	exit 1;
1402	}
1403
1404sub fips_check_files
1405	{
1406	my $dir = shift @_;
1407	my $ret = 1;
1408	if (!-d $dir)
1409		{
1410		print STDERR "FIPS module directory $dir does not exist\n";
1411		fipslib_error();
1412		}
1413	foreach (@_)
1414		{
1415		if (!-f "$dir${o}$_")
1416			{
1417			print STDERR "FIPS module file $_ does not exist!\n";
1418			$ret = 0;
1419			}
1420		}
1421	fipslib_error() if ($ret == 0);
1422	}
1423