]> git.ipfire.org Git - thirdparty/openssl.git/blame - util/mkdef.pl
Drop redundant -lc from a number of rules in Makefile.shared. It's
[thirdparty/openssl.git] / util / mkdef.pl
CommitLineData
ce9449cf 1#!/usr/local/bin/perl -w
d02b48c6
RE
2#
3# generate a .def file
4#
5# It does this by parsing the header files and looking for the
47339f61 6# prototyped functions: it then prunes the output.
d02b48c6 7#
948d0125
RL
8# Intermediary files are created, call libeay.num and ssleay.num,...
9# Previously, they had the following format:
10#
11# routine-name nnnn
12#
13# But that isn't enough for a number of reasons, the first on being that
14# this format is (needlessly) very Win32-centric, and even then...
15# One of the biggest problems is that there's no information about what
16# routines should actually be used, which varies with what crypto algorithms
17# are disabled. Also, some operating systems (for example VMS with VAX C)
18# need to keep track of the global variables as well as the functions.
19#
20# So, a remake of this script is done so as to include information on the
21# kind of symbol it is (function or variable) and what algorithms they're
22# part of. This will allow easy translating to .def files or the corresponding
23# file in other operating systems (a .opt file for VMS, possibly with a .mar
24# file).
25#
26# The format now becomes:
27#
28# routine-name nnnn info
29#
30# and the "info" part is actually a colon-separated string of fields with
31# the following meaning:
32#
33# existence:platform:kind:algorithms
34#
35# - "existence" can be "EXIST" or "NOEXIST" depending on if the symbol is
36# found somewhere in the source,
37# - "platforms" is empty if it exists on all platforms, otherwise it contains
38# comma-separated list of the platform, just as they are if the symbol exists
39# for those platforms, or prepended with a "!" if not. This helps resolve
62dc5aad 40# symbol name variants for platforms where the names are too long for the
948d0125 41# compiler or linker, or if the systems is case insensitive and there is a
62dc5aad
RL
42# clash, or the symbol is implemented differently (see
43# EXPORT_VAR_AS_FUNCTION). This script assumes renaming of symbols is found
44# in the file crypto/symhacks.h.
45# The semantics for the platforms is that every item is checked against the
5012158a
LJ
46# environment. For the negative items ("!FOO"), if any of them is false
47# (i.e. "FOO" is true) in the environment, the corresponding symbol can't be
62dc5aad
RL
48# used. For the positive itms, if all of them are false in the environment,
49# the corresponding symbol can't be used. Any combination of positive and
50# negative items are possible, and of course leave room for some redundancy.
948d0125
RL
51# - "kind" is "FUNCTION" or "VARIABLE". The meaning of that is obvious.
52# - "algorithms" is a comma-separated list of algorithm names. This helps
53# exclude symbols that are part of an algorithm that some user wants to
54# exclude.
55#
d02b48c6 56
d399fdf8
RL
57my $debug=0;
58
948d0125
RL
59my $crypto_num= "util/libeay.num";
60my $ssl_num= "util/ssleay.num";
cd4c36ad 61my $libname;
d02b48c6 62
47339f61 63my $do_update = 0;
1449bda0 64my $do_rewrite = 1;
47339f61
DSH
65my $do_crypto = 0;
66my $do_ssl = 0;
0f583f69 67my $do_ctest = 0;
967f4ca8 68my $do_ctestall = 0;
c47c6196 69my $do_checkexist = 0;
47339f61 70
62dc5aad
RL
71my $VMSVAX=0;
72my $VMSAlpha=0;
948d0125
RL
73my $VMS=0;
74my $W32=0;
75my $W16=0;
0f583f69 76my $NT=0;
cd4c36ad 77my $OS2=0;
28a98809 78# Set this to make typesafe STACK definitions appear in DEF
e41c8d6a 79my $safe_stack_def = 0;
31ff97b2 80
62dc5aad
RL
81my @known_platforms = ( "__FreeBSD__", "PERL5", "NeXT",
82 "EXPORT_VAR_AS_FUNCTION" );
cd4c36ad 83my @known_ossl_platforms = ( "VMS", "WIN16", "WIN32", "WINNT", "OS2" );
948d0125 84my @known_algorithms = ( "RC2", "RC4", "RC5", "IDEA", "DES", "BF",
3f07fe09 85 "CAST", "MD2", "MD4", "MD5", "SHA", "SHA0", "SHA1",
665560e9 86 "SHA256", "SHA512", "RIPEMD",
e172d60d 87 "MDC2", "RSA", "DSA", "DH", "EC", "ECDH", "ECDSA", "HMAC", "AES",
3f07fe09
RL
88 # Envelope "algorithms"
89 "EVP", "X509", "ASN1_TYPEDEFS",
90 # Helper "algorithms"
91 "BIO", "COMP", "BUFFER", "LHASH", "STACK", "ERR",
92 "LOCKING",
93 # External "algorithms"
6cb68620
RL
94 "FP_API", "STDIO", "SOCK", "KRB5",
95 # Engines
5cd48abf 96 "STATIC_ENGINE", "ENGINE", "HW",
4ccfe5f4
RL
97 # Deprecated functions
98 "DEPRECATED" );
948d0125 99
0f583f69 100my $options="";
31ff97b2
UM
101open(IN,"<Makefile.ssl") || die "unable to open Makefile.ssl!\n";
102while(<IN>) {
103 $options=$1 if (/^OPTIONS=(.*)$/);
104}
ce457a54 105close(IN);
31ff97b2 106
0f583f69
UM
107# The following ciphers may be excluded (by Configure). This means functions
108# defined with ifndef(NO_XXX) are not included in the .def file, and everything
109# in directory xxx is ignored.
110my $no_rc2; my $no_rc4; my $no_rc5; my $no_idea; my $no_des; my $no_bf;
3009458e
RL
111my $no_cast;
112my $no_md2; my $no_md4; my $no_md5; my $no_sha; my $no_ripemd; my $no_mdc2;
c063f2c5 113my $no_rsa; my $no_dsa; my $no_dh; my $no_hmac=0; my $no_aes; my $no_krb5;
5cd48abf 114my $no_ec; my $no_ecdsa; my $no_ecdh; my $no_engine; my $no_hw;
4ccfe5f4 115my $no_fp_api; my $no_static_engine; my $no_deprecated;
0f583f69 116
31ff97b2 117foreach (@ARGV, split(/ /, $options))
d02b48c6 118 {
62dc5aad 119 $debug=1 if $_ eq "debug";
06c68491 120 $W32=1 if $_ eq "32";
948d0125 121 $W16=1 if $_ eq "16";
06c68491
DSH
122 if($_ eq "NT") {
123 $W32 = 1;
124 $NT = 1;
125 }
62dc5aad
RL
126 if ($_ eq "VMS-VAX") {
127 $VMS=1;
128 $VMSVAX=1;
129 }
130 if ($_ eq "VMS-Alpha") {
131 $VMS=1;
132 $VMSAlpha=1;
133 }
948d0125 134 $VMS=1 if $_ eq "VMS";
cd4c36ad 135 $OS2=1 if $_ eq "OS2";
d63b8db8 136
d02b48c6 137 $do_ssl=1 if $_ eq "ssleay";
cd4c36ad
RL
138 if ($_ eq "ssl") {
139 $do_ssl=1;
140 $libname=$_
141 }
d02b48c6 142 $do_crypto=1 if $_ eq "libeay";
cd4c36ad
RL
143 if ($_ eq "crypto") {
144 $do_crypto=1;
145 $libname=$_;
146 }
55a9cc6e 147 $do_update=1 if $_ eq "update";
948d0125 148 $do_rewrite=1 if $_ eq "rewrite";
12aefe78 149 $do_ctest=1 if $_ eq "ctest";
967f4ca8 150 $do_ctestall=1 if $_ eq "ctestall";
c47c6196 151 $do_checkexist=1 if $_ eq "exist";
a8b07aa4 152 #$safe_stack_def=1 if $_ eq "-DDEBUG_SAFESTACK";
8cf65228
UM
153
154 if (/^no-rc2$/) { $no_rc2=1; }
155 elsif (/^no-rc4$/) { $no_rc4=1; }
156 elsif (/^no-rc5$/) { $no_rc5=1; }
157 elsif (/^no-idea$/) { $no_idea=1; }
be054868 158 elsif (/^no-des$/) { $no_des=1; $no_mdc2=1; }
8cf65228
UM
159 elsif (/^no-bf$/) { $no_bf=1; }
160 elsif (/^no-cast$/) { $no_cast=1; }
161 elsif (/^no-md2$/) { $no_md2=1; }
3009458e 162 elsif (/^no-md4$/) { $no_md4=1; }
8cf65228
UM
163 elsif (/^no-md5$/) { $no_md5=1; }
164 elsif (/^no-sha$/) { $no_sha=1; }
165 elsif (/^no-ripemd$/) { $no_ripemd=1; }
166 elsif (/^no-mdc2$/) { $no_mdc2=1; }
167 elsif (/^no-rsa$/) { $no_rsa=1; }
168 elsif (/^no-dsa$/) { $no_dsa=1; }
169 elsif (/^no-dh$/) { $no_dh=1; }
b4f682d3 170 elsif (/^no-ec$/) { $no_ec=1; }
4d94ae00 171 elsif (/^no-ecdsa$/) { $no_ecdsa=1; }
e172d60d 172 elsif (/^no-ecdh$/) { $no_ecdh=1; }
8cf65228 173 elsif (/^no-hmac$/) { $no_hmac=1; }
c47c6196 174 elsif (/^no-aes$/) { $no_aes=1; }
3f07fe09
RL
175 elsif (/^no-evp$/) { $no_evp=1; }
176 elsif (/^no-lhash$/) { $no_lhash=1; }
177 elsif (/^no-stack$/) { $no_stack=1; }
178 elsif (/^no-err$/) { $no_err=1; }
179 elsif (/^no-buffer$/) { $no_buffer=1; }
180 elsif (/^no-bio$/) { $no_bio=1; }
181 #elsif (/^no-locking$/) { $no_locking=1; }
182 elsif (/^no-comp$/) { $no_comp=1; }
183 elsif (/^no-dso$/) { $no_dso=1; }
c063f2c5 184 elsif (/^no-krb5$/) { $no_krb5=1; }
0b13e9f0 185 elsif (/^no-engine$/) { $no_engine=1; }
5cd48abf 186 elsif (/^no-hw$/) { $no_hw=1; }
d02b48c6
RE
187 }
188
12aefe78 189
cd4c36ad
RL
190if (!$libname) {
191 if ($do_ssl) {
192 $libname="SSLEAY";
193 }
194 if ($do_crypto) {
195 $libname="LIBEAY";
196 }
197}
198
948d0125 199# If no platform is given, assume WIN32
cd4c36ad 200if ($W32 + $W16 + $VMS + $OS2 == 0) {
948d0125
RL
201 $W32 = 1;
202}
203
204# Add extra knowledge
205if ($W16) {
206 $no_fp_api=1;
207}
208
d02b48c6
RE
209if (!$do_ssl && !$do_crypto)
210 {
cd4c36ad 211 print STDERR "usage: $0 ( ssl | crypto ) [ 16 | 32 | NT | OS2 ]\n";
d02b48c6
RE
212 exit(1);
213 }
214
215%ssl_list=&load_numbers($ssl_num);
55a9cc6e 216$max_ssl = $max_num;
d02b48c6 217%crypto_list=&load_numbers($crypto_num);
55a9cc6e 218$max_crypto = $max_num;
d02b48c6 219
0f583f69 220my $ssl="ssl/ssl.h";
3f07fe09 221$ssl.=" ssl/kssl.h";
d02b48c6 222
0f583f69 223my $crypto ="crypto/crypto.h";
6ac15712 224$crypto.=" crypto/o_dir.h";
c2e4f17c 225$crypto.=" crypto/des/des.h crypto/des/des_old.h" ; # unless $no_des;
0d96bf89
RL
226$crypto.=" crypto/idea/idea.h" ; # unless $no_idea;
227$crypto.=" crypto/rc4/rc4.h" ; # unless $no_rc4;
228$crypto.=" crypto/rc5/rc5.h" ; # unless $no_rc5;
229$crypto.=" crypto/rc2/rc2.h" ; # unless $no_rc2;
230$crypto.=" crypto/bf/blowfish.h" ; # unless $no_bf;
231$crypto.=" crypto/cast/cast.h" ; # unless $no_cast;
232$crypto.=" crypto/md2/md2.h" ; # unless $no_md2;
233$crypto.=" crypto/md4/md4.h" ; # unless $no_md4;
234$crypto.=" crypto/md5/md5.h" ; # unless $no_md5;
235$crypto.=" crypto/mdc2/mdc2.h" ; # unless $no_mdc2;
236$crypto.=" crypto/sha/sha.h" ; # unless $no_sha;
237$crypto.=" crypto/ripemd/ripemd.h" ; # unless $no_ripemd;
6f9079fd 238$crypto.=" crypto/aes/aes.h" ; # unless $no_aes;
d02b48c6
RE
239
240$crypto.=" crypto/bn/bn.h";
0d96bf89
RL
241$crypto.=" crypto/rsa/rsa.h" ; # unless $no_rsa;
242$crypto.=" crypto/dsa/dsa.h" ; # unless $no_dsa;
243$crypto.=" crypto/dh/dh.h" ; # unless $no_dh;
244$crypto.=" crypto/ec/ec.h" ; # unless $no_ec;
4d94ae00 245$crypto.=" crypto/ecdsa/ecdsa.h" ; # unless $no_ecdsa;
e172d60d 246$crypto.=" crypto/ecdh/ecdh.h" ; # unless $no_ecdh;
0d96bf89 247$crypto.=" crypto/hmac/hmac.h" ; # unless $no_hmac;
d02b48c6 248
0b13e9f0 249$crypto.=" crypto/engine/engine.h"; # unless $no_engine;
0d96bf89
RL
250$crypto.=" crypto/stack/stack.h" ; # unless $no_stack;
251$crypto.=" crypto/buffer/buffer.h" ; # unless $no_buffer;
252$crypto.=" crypto/bio/bio.h" ; # unless $no_bio;
253$crypto.=" crypto/dso/dso.h" ; # unless $no_dso;
254$crypto.=" crypto/lhash/lhash.h" ; # unless $no_lhash;
d02b48c6
RE
255$crypto.=" crypto/conf/conf.h";
256$crypto.=" crypto/txt_db/txt_db.h";
257
0d96bf89 258$crypto.=" crypto/evp/evp.h" ; # unless $no_evp;
d02b48c6
RE
259$crypto.=" crypto/objects/objects.h";
260$crypto.=" crypto/pem/pem.h";
261#$crypto.=" crypto/meth/meth.h";
262$crypto.=" crypto/asn1/asn1.h";
9c67ab2f 263$crypto.=" crypto/asn1/asn1t.h";
d02b48c6 264$crypto.=" crypto/asn1/asn1_mac.h";
0d96bf89 265$crypto.=" crypto/err/err.h" ; # unless $no_err;
d02b48c6 266$crypto.=" crypto/pkcs7/pkcs7.h";
ee0508d4 267$crypto.=" crypto/pkcs12/pkcs12.h";
d02b48c6
RE
268$crypto.=" crypto/x509/x509.h";
269$crypto.=" crypto/x509/x509_vfy.h";
679ab7c3 270$crypto.=" crypto/x509v3/x509v3.h";
d02b48c6 271$crypto.=" crypto/rand/rand.h";
0d96bf89 272$crypto.=" crypto/comp/comp.h" ; # unless $no_comp;
eb64730b 273$crypto.=" crypto/ocsp/ocsp.h";
1449bda0 274$crypto.=" crypto/ui/ui.h crypto/ui/ui_compat.h";
c62da732 275$crypto.=" crypto/krb5/krb5_asn.h";
dfeab068 276$crypto.=" crypto/tmdiff.h";
a5db6fa5 277$crypto.=" crypto/store/store.h";
d02b48c6 278
948d0125 279my $symhacks="crypto/symhacks.h";
55a9cc6e 280
948d0125
RL
281my @ssl_symbols = &do_defs("SSLEAY", $ssl, $symhacks);
282my @crypto_symbols = &do_defs("LIBEAY", $crypto, $symhacks);
47339f61 283
55a9cc6e
DSH
284if ($do_update) {
285
286if ($do_ssl == 1) {
948d0125
RL
287
288 &maybe_add_info("SSLEAY",*ssl_list,@ssl_symbols);
289 if ($do_rewrite == 1) {
290 open(OUT, ">$ssl_num");
291 &rewrite_numbers(*OUT,"SSLEAY",*ssl_list,@ssl_symbols);
948d0125
RL
292 } else {
293 open(OUT, ">>$ssl_num");
294 }
295 &update_numbers(*OUT,"SSLEAY",*ssl_list,$max_ssl,@ssl_symbols);
55a9cc6e
DSH
296 close OUT;
297}
298
299if($do_crypto == 1) {
948d0125
RL
300
301 &maybe_add_info("LIBEAY",*crypto_list,@crypto_symbols);
302 if ($do_rewrite == 1) {
303 open(OUT, ">$crypto_num");
304 &rewrite_numbers(*OUT,"LIBEAY",*crypto_list,@crypto_symbols);
305 } else {
306 open(OUT, ">>$crypto_num");
307 }
308 &update_numbers(*OUT,"LIBEAY",*crypto_list,$max_crypto,@crypto_symbols);
55a9cc6e 309 close OUT;
12aefe78
DSH
310}
311
c47c6196
DSH
312} elsif ($do_checkexist) {
313 &check_existing(*ssl_list, @ssl_symbols)
314 if $do_ssl == 1;
315 &check_existing(*crypto_list, @crypto_symbols)
316 if $do_crypto == 1;
967f4ca8 317} elsif ($do_ctest || $do_ctestall) {
12aefe78
DSH
318
319 print <<"EOF";
320
321/* Test file to check all DEF file symbols are present by trying
322 * to link to all of them. This is *not* intended to be run!
323 */
324
325int main()
326{
327EOF
948d0125 328 &print_test_file(*STDOUT,"SSLEAY",*ssl_list,$do_ctestall,@ssl_symbols)
12aefe78
DSH
329 if $do_ssl == 1;
330
948d0125 331 &print_test_file(*STDOUT,"LIBEAY",*crypto_list,$do_ctestall,@crypto_symbols)
12aefe78
DSH
332 if $do_crypto == 1;
333
334 print "}\n";
55a9cc6e
DSH
335
336} else {
8cf65228 337
cd4c36ad 338 &print_def_file(*STDOUT,$libname,*ssl_list,@ssl_symbols)
55a9cc6e
DSH
339 if $do_ssl == 1;
340
cd4c36ad 341 &print_def_file(*STDOUT,$libname,*crypto_list,@crypto_symbols)
55a9cc6e 342 if $do_crypto == 1;
8cf65228 343
55a9cc6e 344}
d02b48c6 345
d02b48c6
RE
346
347sub do_defs
47339f61 348{
948d0125 349 my($name,$files,$symhacksfile)=@_;
0f583f69 350 my $file;
47339f61 351 my @ret;
948d0125
RL
352 my %syms;
353 my %platform; # For anything undefined, we assume ""
354 my %kind; # For anything undefined, we assume "FUNCTION"
355 my %algorithm; # For anything undefined, we assume ""
62dc5aad
RL
356 my %variant;
357 my %variant_cnt; # To be able to allocate "name{n}" if "name"
358 # is the same name as the original.
0f583f69 359 my $cpp;
3f07fe09 360 my %unknown_algorithms = ();
d02b48c6 361
948d0125 362 foreach $file (split(/\s+/,$symhacksfile." ".$files))
d02b48c6 363 {
89eeccac 364 print STDERR "DEBUG: starting on $file:\n" if $debug;
d02b48c6 365 open(IN,"<$file") || die "unable to open $file:$!\n";
0f583f69 366 my $line = "", my $def= "";
47339f61 367 my %tag = (
d399fdf8
RL
368 (map { $_ => 0 } @known_platforms),
369 (map { "OPENSSL_SYS_".$_ => 0 } @known_ossl_platforms),
cf1b7d96 370 (map { "OPENSSL_NO_".$_ => 0 } @known_algorithms),
47339f61 371 NOPROTO => 0,
47339f61
DSH
372 PERL5 => 0,
373 _WINDLL => 0,
47339f61
DSH
374 CONST_STRICT => 0,
375 TRUE => 1,
376 );
948d0125 377 my $symhacking = $file eq $symhacksfile;
267a1927
RL
378 my @current_platforms = ();
379 my @current_algorithms = ();
380
62dc5aad
RL
381 # params: symbol, alias, platforms, kind
382 # The reason to put this subroutine in a variable is that
383 # it will otherwise create it's own, unshared, version of
384 # %tag and %variant...
385 my $make_variant = sub
386 {
387 my ($s, $a, $p, $k) = @_;
388 my ($a1, $a2);
389
390 print STDERR "DEBUG: make_variant: Entered with ",$s,", ",$a,", ",(defined($p)?$p:""),", ",(defined($k)?$k:""),"\n" if $debug;
391 if (defined($p))
392 {
393 $a1 = join(",",$p,
394 grep(!/^$/,
395 map { $tag{$_} == 1 ? $_ : "" }
396 @known_platforms));
397 }
398 else
399 {
400 $a1 = join(",",
401 grep(!/^$/,
402 map { $tag{$_} == 1 ? $_ : "" }
403 @known_platforms));
404 }
405 $a2 = join(",",
406 grep(!/^$/,
407 map { $tag{"OPENSSL_SYS_".$_} == 1 ? $_ : "" }
408 @known_ossl_platforms));
409 print STDERR "DEBUG: make_variant: a1 = $a1; a2 = $a2\n" if $debug;
410 if ($a1 eq "") { $a1 = $a2; }
411 elsif ($a1 ne "" && $a2 ne "") { $a1 .= ",".$a2; }
412 if ($a eq $s)
413 {
414 if (!defined($variant_cnt{$s}))
415 {
416 $variant_cnt{$s} = 0;
417 }
418 $variant_cnt{$s}++;
419 $a .= "{$variant_cnt{$s}}";
420 }
c454dbcd
RL
421 my $toadd = $a.":".$a1.(defined($k)?":".$k:"");
422 my $togrep = $s.'(\{[0-9]+\})?:'.$a1.(defined($k)?":".$k:"");
423 if (!grep(/^$togrep$/,
424 split(/;/, defined($variant{$s})?$variant{$s}:""))) {
425 if (defined($variant{$s})) { $variant{$s} .= ";"; }
426 $variant{$s} .= $toadd;
427 }
62dc5aad
RL
428 print STDERR "DEBUG: make_variant: Exit with variant of ",$s," = ",$variant{$s},"\n" if $debug;
429 };
430
431 print STDERR "DEBUG: parsing ----------\n" if $debug;
47339f61 432 while(<IN>) {
89eeccac 433 last if (/\/\* Error codes for the \w+ functions\. \*\//);
47339f61
DSH
434 if ($line ne '') {
435 $_ = $line . $_;
436 $line = '';
d02b48c6 437 }
47339f61
DSH
438
439 if (/\\$/) {
d399fdf8
RL
440 chomp; # remove eol
441 chop; # remove ending backslash
47339f61
DSH
442 $line = $_;
443 next;
444 }
445
948d0125 446 $cpp = 1 if /^\#.*ifdef.*cplusplus/;
47339f61 447 if ($cpp) {
948d0125 448 $cpp = 0 if /^\#.*endif/;
47339f61
DSH
449 next;
450 }
451
452 s/\/\*.*?\*\///gs; # ignore comments
37892848
RL
453 if (/\/\*/) { # if we have part
454 $line = $_; # of a comment,
455 next; # continue reading
456 }
47339f61 457 s/{[^{}]*}//gs; # ignore {} blocks
6cb68620 458 print STDERR "DEBUG: \$def=\"$def\"\n" if $debug && $def ne "";
d399fdf8 459 print STDERR "DEBUG: \$_=\"$_\"\n" if $debug;
3f07fe09 460 if (/^\#\s*ifndef\s+(.*)/) {
d399fdf8 461 push(@tag,"-");
d02b48c6
RE
462 push(@tag,$1);
463 $tag{$1}=-1;
d399fdf8 464 print STDERR "DEBUG: $file: found tag $1 = -1\n" if $debug;
3f07fe09 465 } elsif (/^\#\s*if\s+!defined\(([^\)]+)\)/) {
d399fdf8
RL
466 push(@tag,"-");
467 if (/^\#\s*if\s+(!defined\(([^\)]+)\)(\s+\&\&\s+!defined\(([^\)]+)\))*)$/) {
468 my $tmp_1 = $1;
469 my $tmp_;
470 foreach $tmp_ (split '\&\&',$tmp_1) {
471 $tmp_ =~ /!defined\(([^\)]+)\)/;
472 print STDERR "DEBUG: $file: found tag $1 = -1\n" if $debug;
473 push(@tag,$1);
474 $tag{$1}=-1;
475 }
476 } else {
477 print STDERR "Warning: $file: complicated expression: $_" if $debug; # because it is O...
478 print STDERR "DEBUG: $file: found tag $1 = -1\n" if $debug;
479 push(@tag,$1);
480 $tag{$1}=-1;
481 }
3f07fe09 482 } elsif (/^\#\s*ifdef\s+(.*)/) {
d399fdf8 483 push(@tag,"-");
d02b48c6
RE
484 push(@tag,$1);
485 $tag{$1}=1;
d399fdf8 486 print STDERR "DEBUG: $file: found tag $1 = 1\n" if $debug;
3f07fe09 487 } elsif (/^\#\s*if\s+defined\(([^\)]+)\)/) {
d399fdf8
RL
488 push(@tag,"-");
489 if (/^\#\s*if\s+(defined\(([^\)]+)\)(\s+\|\|\s+defined\(([^\)]+)\))*)$/) {
490 my $tmp_1 = $1;
491 my $tmp_;
492 foreach $tmp_ (split '\|\|',$tmp_1) {
493 $tmp_ =~ /defined\(([^\)]+)\)/;
494 print STDERR "DEBUG: $file: found tag $1 = 1\n" if $debug;
495 push(@tag,$1);
496 $tag{$1}=1;
497 }
498 } else {
499 print STDERR "Warning: $file: complicated expression: $_\n" if $debug; # because it is O...
500 print STDERR "DEBUG: $file: found tag $1 = 1\n" if $debug;
501 push(@tag,$1);
502 $tag{$1}=1;
503 }
948d0125 504 } elsif (/^\#\s*error\s+(\w+) is disabled\./) {
d399fdf8
RL
505 my $tag_i = $#tag;
506 while($tag[$tag_i] ne "-") {
507 if ($tag[$tag_i] eq "OPENSSL_NO_".$1) {
508 $tag{$tag[$tag_i]}=2;
509 print STDERR "DEBUG: $file: chaged tag $1 = 2\n" if $debug;
510 }
511 $tag_i--;
948d0125 512 }
47339f61 513 } elsif (/^\#\s*endif/) {
d399fdf8 514 my $tag_i = $#tag;
665560e9 515 while($tag_i > 0 && $tag[$tag_i] ne "-") {
d399fdf8
RL
516 my $t=$tag[$tag_i];
517 print STDERR "DEBUG: \$t=\"$t\"\n" if $debug;
518 if ($tag{$t}==2) {
519 $tag{$t}=-1;
520 } else {
521 $tag{$t}=0;
522 }
523 print STDERR "DEBUG: $file: changed tag ",$t," = ",$tag{$t},"\n" if $debug;
524 pop(@tag);
525 if ($t =~ /^OPENSSL_NO_([A-Z0-9_]+)$/) {
526 $t=$1;
527 } else {
528 $t="";
529 }
530 if ($t ne ""
531 && !grep(/^$t$/, @known_algorithms)) {
532 $unknown_algorithms{$t} = 1;
533 #print STDERR "DEBUG: Added as unknown algorithm: $t\n" if $debug;
534 }
535 $tag_i--;
948d0125 536 }
d02b48c6 537 pop(@tag);
47339f61 538 } elsif (/^\#\s*else/) {
d399fdf8
RL
539 my $tag_i = $#tag;
540 while($tag[$tag_i] ne "-") {
541 my $t=$tag[$tag_i];
542 $tag{$t}= -$tag{$t};
543 print STDERR "DEBUG: $file: changed tag ",$t," = ",$tag{$t},"\n" if $debug;
544 $tag_i--;
545 }
47339f61 546 } elsif (/^\#\s*if\s+1/) {
d399fdf8 547 push(@tag,"-");
47339f61
DSH
548 # Dummy tag
549 push(@tag,"TRUE");
550 $tag{"TRUE"}=1;
d399fdf8 551 print STDERR "DEBUG: $file: found 1\n" if $debug;
1e414935 552 } elsif (/^\#\s*if\s+0/) {
d399fdf8 553 push(@tag,"-");
1e414935
BM
554 # Dummy tag
555 push(@tag,"TRUE");
556 $tag{"TRUE"}=-1;
d399fdf8 557 print STDERR "DEBUG: $file: found 0\n" if $debug;
948d0125 558 } elsif (/^\#\s*define\s+(\w+)\s+(\w+)/
2ae87d46 559 && $symhacking && $tag{'TRUE'} != -1) {
62dc5aad
RL
560 # This is for aliasing. When we find an alias,
561 # we have to invert
562 &$make_variant($1,$2);
563 print STDERR "DEBUG: $file: defined $1 = $2\n" if $debug;
948d0125
RL
564 }
565 if (/^\#/) {
267a1927
RL
566 @current_platforms =
567 grep(!/^$/,
d399fdf8
RL
568 map { $tag{$_} == 1 ? $_ :
569 $tag{$_} == -1 ? "!".$_ : "" }
267a1927 570 @known_platforms);
d399fdf8
RL
571 push @current_platforms
572 , grep(!/^$/,
573 map { $tag{"OPENSSL_SYS_".$_} == 1 ? $_ :
574 $tag{"OPENSSL_SYS_".$_} == -1 ? "!".$_ : "" }
575 @known_ossl_platforms);
267a1927
RL
576 @current_algorithms =
577 grep(!/^$/,
cf1b7d96 578 map { $tag{"OPENSSL_NO_".$_} == -1 ? $_ : "" }
267a1927
RL
579 @known_algorithms);
580 $def .=
581 "#INFO:"
582 .join(',',@current_platforms).":"
583 .join(',',@current_algorithms).";";
47339f61
DSH
584 next;
585 }
2ae87d46
RL
586 if ($tag{'TRUE'} != -1) {
587 if (/^\s*DECLARE_STACK_OF\s*\(\s*(\w*)\s*\)/) {
588 next;
589 } elsif (/^\s*DECLARE_ASN1_ENCODE_FUNCTIONS\s*\(\s*(\w*)\s*,\s*(\w*)\s*,\s*(\w*)\s*\)/) {
590 $def .= "int d2i_$3(void);";
591 $def .= "int i2d_$3(void);";
62dc5aad
RL
592 # Variant for platforms that do not
593 # have to access globale variables
594 # in shared libraries through functions
595 $def .=
596 "#INFO:"
597 .join(',',"!EXPORT_VAR_AS_FUNCTION",@current_platforms).":"
598 .join(',',@current_algorithms).";";
2ae87d46 599 $def .= "OPENSSL_EXTERN int $2_it;";
62dc5aad
RL
600 $def .=
601 "#INFO:"
602 .join(',',@current_platforms).":"
603 .join(',',@current_algorithms).";";
604 # Variant for platforms that have to
605 # access globale variables in shared
606 # libraries through functions
607 &$make_variant("$2_it","$2_it",
608 "EXPORT_VAR_AS_FUNCTION",
609 "FUNCTION");
2ae87d46
RL
610 next;
611 } elsif (/^\s*DECLARE_ASN1_FUNCTIONS_fname\s*\(\s*(\w*)\s*,\s*(\w*)\s*,\s*(\w*)\s*\)/) {
612 $def .= "int d2i_$3(void);";
613 $def .= "int i2d_$3(void);";
614 $def .= "int $3_free(void);";
615 $def .= "int $3_new(void);";
62dc5aad
RL
616 # Variant for platforms that do not
617 # have to access globale variables
618 # in shared libraries through functions
619 $def .=
620 "#INFO:"
621 .join(',',"!EXPORT_VAR_AS_FUNCTION",@current_platforms).":"
622 .join(',',@current_algorithms).";";
2ae87d46 623 $def .= "OPENSSL_EXTERN int $2_it;";
62dc5aad
RL
624 $def .=
625 "#INFO:"
626 .join(',',@current_platforms).":"
627 .join(',',@current_algorithms).";";
628 # Variant for platforms that have to
629 # access globale variables in shared
630 # libraries through functions
631 &$make_variant("$2_it","$2_it",
632 "EXPORT_VAR_AS_FUNCTION",
633 "FUNCTION");
634 next;
2ae87d46
RL
635 } elsif (/^\s*DECLARE_ASN1_FUNCTIONS\s*\(\s*(\w*)\s*\)/ ||
636 /^\s*DECLARE_ASN1_FUNCTIONS_const\s*\(\s*(\w*)\s*\)/) {
637 $def .= "int d2i_$1(void);";
638 $def .= "int i2d_$1(void);";
639 $def .= "int $1_free(void);";
640 $def .= "int $1_new(void);";
62dc5aad
RL
641 # Variant for platforms that do not
642 # have to access globale variables
643 # in shared libraries through functions
644 $def .=
645 "#INFO:"
646 .join(',',"!EXPORT_VAR_AS_FUNCTION",@current_platforms).":"
647 .join(',',@current_algorithms).";";
2ae87d46 648 $def .= "OPENSSL_EXTERN int $1_it;";
62dc5aad
RL
649 $def .=
650 "#INFO:"
651 .join(',',@current_platforms).":"
652 .join(',',@current_algorithms).";";
653 # Variant for platforms that have to
654 # access globale variables in shared
655 # libraries through functions
656 &$make_variant("$1_it","$1_it",
657 "EXPORT_VAR_AS_FUNCTION",
658 "FUNCTION");
2ae87d46
RL
659 next;
660 } elsif (/^\s*DECLARE_ASN1_ENCODE_FUNCTIONS_const\s*\(\s*(\w*)\s*,\s*(\w*)\s*\)/) {
661 $def .= "int d2i_$2(void);";
662 $def .= "int i2d_$2(void);";
62dc5aad
RL
663 # Variant for platforms that do not
664 # have to access globale variables
665 # in shared libraries through functions
666 $def .=
667 "#INFO:"
668 .join(',',"!EXPORT_VAR_AS_FUNCTION",@current_platforms).":"
669 .join(',',@current_algorithms).";";
2ae87d46 670 $def .= "OPENSSL_EXTERN int $2_it;";
62dc5aad
RL
671 $def .=
672 "#INFO:"
673 .join(',',@current_platforms).":"
674 .join(',',@current_algorithms).";";
675 # Variant for platforms that have to
676 # access globale variables in shared
677 # libraries through functions
678 &$make_variant("$2_it","$2_it",
679 "EXPORT_VAR_AS_FUNCTION",
680 "FUNCTION");
2ae87d46 681 next;
ea3675b5
DSH
682 } elsif (/^\s*DECLARE_ASN1_ALLOC_FUNCTIONS\s*\(\s*(\w*)\s*\)/) {
683 $def .= "int $1_free(void);";
684 $def .= "int $1_new(void);";
685 next;
2ae87d46
RL
686 } elsif (/^\s*DECLARE_ASN1_FUNCTIONS_name\s*\(\s*(\w*)\s*,\s*(\w*)\s*\)/) {
687 $def .= "int d2i_$2(void);";
688 $def .= "int i2d_$2(void);";
689 $def .= "int $2_free(void);";
690 $def .= "int $2_new(void);";
62dc5aad
RL
691 # Variant for platforms that do not
692 # have to access globale variables
693 # in shared libraries through functions
694 $def .=
695 "#INFO:"
696 .join(',',"!EXPORT_VAR_AS_FUNCTION",@current_platforms).":"
697 .join(',',@current_algorithms).";";
2ae87d46 698 $def .= "OPENSSL_EXTERN int $2_it;";
62dc5aad
RL
699 $def .=
700 "#INFO:"
701 .join(',',@current_platforms).":"
702 .join(',',@current_algorithms).";";
703 # Variant for platforms that have to
704 # access globale variables in shared
705 # libraries through functions
706 &$make_variant("$2_it","$2_it",
707 "EXPORT_VAR_AS_FUNCTION",
708 "FUNCTION");
2ae87d46 709 next;
62dc5aad
RL
710 } elsif (/^\s*DECLARE_ASN1_ITEM\s*\(\s*(\w*)\s*\)/) {
711 # Variant for platforms that do not
712 # have to access globale variables
713 # in shared libraries through functions
714 $def .=
715 "#INFO:"
716 .join(',',"!EXPORT_VAR_AS_FUNCTION",@current_platforms).":"
717 .join(',',@current_algorithms).";";
2ae87d46 718 $def .= "OPENSSL_EXTERN int $1_it;";
62dc5aad
RL
719 $def .=
720 "#INFO:"
721 .join(',',@current_platforms).":"
722 .join(',',@current_algorithms).";";
723 # Variant for platforms that have to
724 # access globale variables in shared
725 # libraries through functions
726 &$make_variant("$1_it","$1_it",
727 "EXPORT_VAR_AS_FUNCTION",
728 "FUNCTION");
2ae87d46 729 next;
f86abc2e 730 } elsif (/^\s*DECLARE_ASN1_NDEF_FUNCTION\s*\(\s*(\w*)\s*\)/) {
97ebe047 731 $def .= "int i2d_$1_NDEF(void);";
2ae87d46
RL
732 } elsif (/^\s*DECLARE_ASN1_SET_OF\s*\(\s*(\w*)\s*\)/) {
733 next;
62dc5aad
RL
734 } elsif (/^\s*DECLARE_PKCS12_STACK_OF\s*\(\s*(\w*)\s*\)/) {
735 next;
2ae87d46
RL
736 } elsif (/^DECLARE_PEM_rw\s*\(\s*(\w*)\s*,/ ||
737 /^DECLARE_PEM_rw_cb\s*\(\s*(\w*)\s*,/ ) {
738 # Things not in Win16
739 $def .=
740 "#INFO:"
741 .join(',',"!WIN16",@current_platforms).":"
742 .join(',',@current_algorithms).";";
743 $def .= "int PEM_read_$1(void);";
744 $def .= "int PEM_write_$1(void);";
745 $def .=
746 "#INFO:"
747 .join(',',@current_platforms).":"
748 .join(',',@current_algorithms).";";
749 # Things that are everywhere
750 $def .= "int PEM_read_bio_$1(void);";
751 $def .= "int PEM_write_bio_$1(void);";
752 next;
753 } elsif (/^DECLARE_PEM_write\s*\(\s*(\w*)\s*,/ ||
754 /^DECLARE_PEM_write_cb\s*\(\s*(\w*)\s*,/ ) {
755 # Things not in Win16
756 $def .=
757 "#INFO:"
758 .join(',',"!WIN16",@current_platforms).":"
759 .join(',',@current_algorithms).";";
760 $def .= "int PEM_write_$1(void);";
761 $def .=
762 "#INFO:"
763 .join(',',@current_platforms).":"
764 .join(',',@current_algorithms).";";
765 # Things that are everywhere
766 $def .= "int PEM_write_bio_$1(void);";
767 next;
768 } elsif (/^DECLARE_PEM_read\s*\(\s*(\w*)\s*,/ ||
769 /^DECLARE_PEM_read_cb\s*\(\s*(\w*)\s*,/ ) {
770 # Things not in Win16
771 $def .=
772 "#INFO:"
773 .join(',',"!WIN16",@current_platforms).":"
774 .join(',',@current_algorithms).";";
775 $def .= "int PEM_read_$1(void);";
776 $def .=
777 "#INFO:"
778 .join(',',@current_platforms).":"
779 .join(',',@current_algorithms).";";
780 # Things that are everywhere
781 $def .= "int PEM_read_bio_$1(void);";
782 next;
62dc5aad
RL
783 } elsif (/^OPENSSL_DECLARE_GLOBAL\s*\(\s*(\w*)\s*,\s*(\w*)\s*\)/) {
784 # Variant for platforms that do not
785 # have to access globale variables
786 # in shared libraries through functions
787 $def .=
788 "#INFO:"
789 .join(',',"!EXPORT_VAR_AS_FUNCTION",@current_platforms).":"
790 .join(',',@current_algorithms).";";
791 $def .= "OPENSSL_EXTERN int _shadow_$2;";
792 $def .=
793 "#INFO:"
794 .join(',',@current_platforms).":"
795 .join(',',@current_algorithms).";";
796 # Variant for platforms that have to
797 # access globale variables in shared
798 # libraries through functions
799 &$make_variant("_shadow_$2","_shadow_$2",
800 "EXPORT_VAR_AS_FUNCTION",
801 "FUNCTION");
2ae87d46 802 } elsif ($tag{'CONST_STRICT'} != 1) {
948d0125 803 if (/\{|\/\*|\([^\)]*$/) {
47339f61
DSH
804 $line = $_;
805 } else {
806 $def .= $_;
807 }
d02b48c6
RE
808 }
809 }
2ae87d46 810 }
d02b48c6 811 close(IN);
47339f61 812
948d0125
RL
813 my $algs;
814 my $plays;
815
62dc5aad 816 print STDERR "DEBUG: postprocessing ----------\n" if $debug;
47339f61 817 foreach (split /;/, $def) {
948d0125 818 my $s; my $k = "FUNCTION"; my $p; my $a;
47339f61
DSH
819 s/^[\n\s]*//g;
820 s/[\n\s]*$//g;
948d0125 821 next if(/\#undef/);
47339f61 822 next if(/typedef\W/);
948d0125
RL
823 next if(/\#define/);
824
62dc5aad 825 print STDERR "DEBUG: \$_ = \"$_\"\n" if $debug;
948d0125
RL
826 if (/^\#INFO:([^:]*):(.*)$/) {
827 $plats = $1;
828 $algs = $2;
89eeccac 829 print STDERR "DEBUG: found info on platforms ($plats) and algorithms ($algs)\n" if $debug;
948d0125 830 next;
62dc5aad 831 } elsif (/^\s*OPENSSL_EXTERN\s.*?(\w+(\{[0-9]+\})?)(\[[0-9]*\])*\s*$/) {
948d0125
RL
832 $s = $1;
833 $k = "VARIABLE";
89eeccac 834 print STDERR "DEBUG: found external variable $s\n" if $debug;
62dc5aad 835 } elsif (/\(\*(\w*(\{[0-9]+\})?)\([^\)]+/) {
948d0125 836 $s = $1;
89eeccac 837 print STDERR "DEBUG: found ANSI C function $s\n" if $debug;
57544ee2 838 } elsif (/\w+\W+(\w+)\W*\(\s*\)(\s*__attribute__\(.*\)\s*)?$/s) {
47339f61 839 # K&R C
89eeccac 840 print STDERR "DEBUG: found K&R C function $s\n" if $debug;
47339f61 841 next;
57544ee2
RL
842 } elsif (/\w+\W+\w+(\{[0-9]+\})?\W*\(.*\)(\s*__attribute__\(.*\)\s*)?$/s) {
843 while (not /\(\)(\s*__attribute__\(.*\)\s*)?$/s) {
844 s/[^\(\)]*\)(\s*__attribute__\(.*\)\s*)?$/\)/s;
845 s/\([^\(\)]*\)\)(\s*__attribute__\(.*\)\s*)?$/\)/s;
47339f61
DSH
846 }
847 s/\(void\)//;
62dc5aad 848 /(\w+(\{[0-9]+\})?)\W*\(\)/s;
948d0125 849 $s = $1;
89eeccac 850 print STDERR "DEBUG: found function $s\n" if $debug;
47339f61
DSH
851 } elsif (/\(/ and not (/=/)) {
852 print STDERR "File $file: cannot parse: $_;\n";
948d0125
RL
853 next;
854 } else {
855 next;
856 }
857
858 $syms{$s} = 1;
859 $kind{$s} = $k;
860
861 $p = $plats;
862 $a = $algs;
863 $a .= ",BF" if($s =~ /EVP_bf/);
864 $a .= ",CAST" if($s =~ /EVP_cast/);
865 $a .= ",DES" if($s =~ /EVP_des/);
866 $a .= ",DSA" if($s =~ /EVP_dss/);
867 $a .= ",IDEA" if($s =~ /EVP_idea/);
868 $a .= ",MD2" if($s =~ /EVP_md2/);
869 $a .= ",MD4" if($s =~ /EVP_md4/);
870 $a .= ",MD5" if($s =~ /EVP_md5/);
871 $a .= ",RC2" if($s =~ /EVP_rc2/);
872 $a .= ",RC4" if($s =~ /EVP_rc4/);
873 $a .= ",RC5" if($s =~ /EVP_rc5/);
874 $a .= ",RIPEMD" if($s =~ /EVP_ripemd/);
875 $a .= ",SHA" if($s =~ /EVP_sha/);
876 $a .= ",RSA" if($s =~ /EVP_(Open|Seal)(Final|Init)/);
877 $a .= ",RSA" if($s =~ /PEM_Seal(Final|Init|Update)/);
878 $a .= ",RSA" if($s =~ /RSAPrivateKey/);
879 $a .= ",RSA" if($s =~ /SSLv23?_((client|server)_)?method/);
880
62dc5aad
RL
881 $platform{$s} =
882 &reduce_platforms((defined($platform{$s})?$platform{$s}.',':"").$p);
948d0125
RL
883 $algorithm{$s} .= ','.$a;
884
62dc5aad 885 if (defined($variant{$s})) {
c454dbcd
RL
886 foreach $v (split /;/,$variant{$s}) {
887 (my $r, my $p, my $k) = split(/:/,$v);
888 my $ip = join ',',map({ /^!(.*)$/ ? $1 : "!".$_ } split /,/, $p);
889 $syms{$r} = 1;
890 if (!defined($k)) { $k = $kind{$s}; }
891 $kind{$r} = $k."(".$s.")";
892 $algorithm{$r} = $algorithm{$s};
893 $platform{$r} = &reduce_platforms($platform{$s}.",".$p.",".$p);
894 $platform{$s} = &reduce_platforms($platform{$s}.','.$ip.','.$ip);
895 print STDERR "DEBUG: \$variant{\"$s\"} = ",$v,"; \$r = $r; \$p = ",$platform{$r},"; \$a = ",$algorithm{$r},"; \$kind = ",$kind{$r},"\n" if $debug;
896 }
47339f61 897 }
62dc5aad 898 print STDERR "DEBUG: \$s = $s; \$p = ",$platform{$s},"; \$a = ",$algorithm{$s},"; \$kind = ",$kind{$s},"\n" if $debug;
d02b48c6 899 }
d02b48c6
RE
900 }
901
948d0125 902 # Prune the returned symbols
47339f61 903
948d0125 904 delete $syms{"bn_dump1"};
948d0125
RL
905 $platform{"BIO_s_log"} .= ",!WIN32,!WIN16,!macintosh";
906
2ae87d46
RL
907 $platform{"PEM_read_NS_CERT_SEQ"} = "VMS";
908 $platform{"PEM_write_NS_CERT_SEQ"} = "VMS";
909 $platform{"PEM_read_P8_PRIV_KEY_INFO"} = "VMS";
910 $platform{"PEM_write_P8_PRIV_KEY_INFO"} = "VMS";
911
948d0125
RL
912 # Info we know about
913
948d0125
RL
914 push @ret, map { $_."\\".&info_string($_,"EXIST",
915 $platform{$_},
916 $kind{$_},
917 $algorithm{$_}) } keys %syms;
918
3f07fe09
RL
919 if (keys %unknown_algorithms) {
920 print STDERR "WARNING: mkdef.pl doesn't know the following algorithms:\n";
921 print STDERR "\t",join("\n\t",keys %unknown_algorithms),"\n";
922 }
948d0125
RL
923 return(@ret);
924}
925
62dc5aad
RL
926# Param: string of comma-separated platform-specs.
927sub reduce_platforms
928{
929 my ($platforms) = @_;
948d0125
RL
930 my $pl = defined($platforms) ? $platforms : "";
931 my %p = map { $_ => 0 } split /,/, $pl;
948d0125
RL
932 my $ret;
933
62dc5aad
RL
934 print STDERR "DEBUG: Entered reduce_platforms with \"$platforms\"\n"
935 if $debug;
948d0125
RL
936 # We do this, because if there's code like the following, it really
937 # means the function exists in all cases and should therefore be
938 # everywhere. By increasing and decreasing, we may attain 0:
939 #
940 # ifndef WIN16
941 # int foo();
942 # else
943 # int _fat foo();
944 # endif
945 foreach $platform (split /,/, $pl) {
946 if ($platform =~ /^!(.*)$/) {
947 $p{$1}--;
948 } else {
949 $p{$platform}++;
d02b48c6 950 }
47339f61 951 }
948d0125
RL
952 foreach $platform (keys %p) {
953 if ($p{$platform} == 0) { delete $p{$platform}; }
d02b48c6
RE
954 }
955
948d0125 956 delete $p{""};
62dc5aad 957
c454dbcd 958 $ret = join(',',sort(map { $p{$_} < 0 ? "!".$_ : $_ } keys %p));
62dc5aad
RL
959 print STDERR "DEBUG: Exiting reduce_platforms with \"$ret\"\n"
960 if $debug;
961 return $ret;
962}
963
964sub info_string {
965 (my $symbol, my $exist, my $platforms, my $kind, my $algorithms) = @_;
966
967 my %a = defined($algorithms) ?
968 map { $_ => 1 } split /,/, $algorithms : ();
969 my $k = defined($kind) ? $kind : "FUNCTION";
970 my $ret;
971 my $p = &reduce_platforms($platforms);
972
948d0125 973 delete $a{""};
d02b48c6 974
948d0125 975 $ret = $exist;
62dc5aad 976 $ret .= ":".$p;
948d0125 977 $ret .= ":".$k;
62dc5aad 978 $ret .= ":".join(',',sort keys %a);
948d0125
RL
979 return $ret;
980}
981
982sub maybe_add_info {
983 (my $name, *nums, my @symbols) = @_;
984 my $sym;
985 my $new_info = 0;
451e60e9 986 my %syms=();
948d0125
RL
987
988 print STDERR "Updating $name info\n";
989 foreach $sym (@symbols) {
990 (my $s, my $i) = split /\\/, $sym;
948d0125 991 if (defined($nums{$s})) {
62dc5aad 992 $i =~ s/^(.*?:.*?:\w+)(\(\w+\))?/$1/;
948d0125
RL
993 (my $n, my $dummy) = split /\\/, $nums{$s};
994 if (!defined($dummy) || $i ne $dummy) {
995 $nums{$s} = $n."\\".$i;
996 $new_info++;
d399fdf8 997 print STDERR "DEBUG: maybe_add_info for $s: \"$dummy\" => \"$i\"\n" if $debug;
948d0125
RL
998 }
999 }
62dc5aad 1000 $syms{$s} = 1;
451e60e9
RL
1001 }
1002
1003 my @s=sort { &parse_number($nums{$a},"n") <=> &parse_number($nums{$b},"n") } keys %nums;
1004 foreach $sym (@s) {
1005 (my $n, my $i) = split /\\/, $nums{$sym};
62dc5aad 1006 if (!defined($syms{$sym}) && $i !~ /^NOEXIST:/) {
451e60e9 1007 $new_info++;
62dc5aad 1008 print STDERR "DEBUG: maybe_add_info for $sym: -> undefined\n" if $debug;
451e60e9 1009 }
948d0125
RL
1010 }
1011 if ($new_info) {
1012 print STDERR "$new_info old symbols got an info update\n";
6d50071e
RL
1013 if (!$do_rewrite) {
1014 print STDERR "You should do a rewrite to fix this.\n";
1015 }
948d0125
RL
1016 } else {
1017 print STDERR "No old symbols needed info update\n";
1018 }
47339f61 1019}
d02b48c6 1020
62dc5aad
RL
1021# Param: string of comma-separated keywords, each possibly prefixed with a "!"
1022sub is_valid
1023{
1024 my ($keywords_txt,$platforms) = @_;
1025 my (@keywords) = split /,/,$keywords_txt;
1026 my ($falsesum, $truesum) = (0, !grep(/^[^!]/,@keywords));
1027
1028 # Param: one keyword
1029 sub recognise
1030 {
1031 my ($keyword,$platforms) = @_;
1032
1033 if ($platforms) {
1034 # platforms
1035 if ($keyword eq "VMS" && $VMS) { return 1; }
1036 if ($keyword eq "WIN32" && $W32) { return 1; }
1037 if ($keyword eq "WIN16" && $W16) { return 1; }
1038 if ($keyword eq "WINNT" && $NT) { return 1; }
cd4c36ad 1039 if ($keyword eq "OS2" && $OS2) { return 1; }
62dc5aad
RL
1040 # Special platforms:
1041 # EXPORT_VAR_AS_FUNCTION means that global variables
1042 # will be represented as functions. This currently
1043 # only happens on VMS-VAX.
2d10c715 1044 if ($keyword eq "EXPORT_VAR_AS_FUNCTION" && ($VMSVAX || $W32 || $W16)) {
62dc5aad
RL
1045 return 1;
1046 }
1047 return 0;
1048 } else {
1049 # algorithms
1050 if ($keyword eq "RC2" && $no_rc2) { return 0; }
1051 if ($keyword eq "RC4" && $no_rc4) { return 0; }
1052 if ($keyword eq "RC5" && $no_rc5) { return 0; }
1053 if ($keyword eq "IDEA" && $no_idea) { return 0; }
1054 if ($keyword eq "DES" && $no_des) { return 0; }
1055 if ($keyword eq "BF" && $no_bf) { return 0; }
1056 if ($keyword eq "CAST" && $no_cast) { return 0; }
1057 if ($keyword eq "MD2" && $no_md2) { return 0; }
1058 if ($keyword eq "MD4" && $no_md4) { return 0; }
1059 if ($keyword eq "MD5" && $no_md5) { return 0; }
1060 if ($keyword eq "SHA" && $no_sha) { return 0; }
1061 if ($keyword eq "RIPEMD" && $no_ripemd) { return 0; }
1062 if ($keyword eq "MDC2" && $no_mdc2) { return 0; }
1063 if ($keyword eq "RSA" && $no_rsa) { return 0; }
1064 if ($keyword eq "DSA" && $no_dsa) { return 0; }
1065 if ($keyword eq "DH" && $no_dh) { return 0; }
26a81abf 1066 if ($keyword eq "EC" && $no_ec) { return 0; }
4d94ae00 1067 if ($keyword eq "ECDSA" && $no_ecdsa) { return 0; }
e172d60d 1068 if ($keyword eq "ECDH" && $no_ecdh) { return 0; }
62dc5aad
RL
1069 if ($keyword eq "HMAC" && $no_hmac) { return 0; }
1070 if ($keyword eq "AES" && $no_aes) { return 0; }
26a81abf
RL
1071 if ($keyword eq "EVP" && $no_evp) { return 0; }
1072 if ($keyword eq "LHASH" && $no_lhash) { return 0; }
1073 if ($keyword eq "STACK" && $no_stack) { return 0; }
1074 if ($keyword eq "ERR" && $no_err) { return 0; }
1075 if ($keyword eq "BUFFER" && $no_buffer) { return 0; }
1076 if ($keyword eq "BIO" && $no_bio) { return 0; }
1077 if ($keyword eq "COMP" && $no_comp) { return 0; }
1078 if ($keyword eq "DSO" && $no_dso) { return 0; }
62dc5aad 1079 if ($keyword eq "KRB5" && $no_krb5) { return 0; }
0b13e9f0 1080 if ($keyword eq "ENGINE" && $no_engine) { return 0; }
5cd48abf 1081 if ($keyword eq "HW" && $no_hw) { return 0; }
62dc5aad 1082 if ($keyword eq "FP_API" && $no_fp_api) { return 0; }
6cb68620 1083 if ($keyword eq "STATIC_ENGINE" && $no_static_engine) { return 0; }
4ccfe5f4 1084 if ($keyword eq "DEPRECATED" && $no_deprecated) { return 0; }
62dc5aad
RL
1085
1086 # Nothing recognise as true
1087 return 1;
1088 }
1089 }
1090
1091 foreach $k (@keywords) {
1092 if ($k =~ /^!(.*)$/) {
1093 $falsesum += &recognise($1,$platforms);
1094 } else {
1095 $truesum += &recognise($k,$platforms);
1096 }
1097 }
1098 print STDERR "DEBUG: [",$#keywords,",",$#keywords < 0,"] is_valid($keywords_txt) => (\!$falsesum) && $truesum = ",(!$falsesum) && $truesum,"\n" if $debug;
1099 return (!$falsesum) && $truesum;
1100}
1101
12aefe78
DSH
1102sub print_test_file
1103{
62dc5aad 1104 (*OUT,my $name,*nums,my $testall,my @symbols)=@_;
0f583f69 1105 my $n = 1; my @e; my @r;
948d0125
RL
1106 my $sym; my $prev = ""; my $prefSSLeay;
1107
62dc5aad
RL
1108 (@e)=grep(/^SSLeay(\{[0-9]+\})?\\.*?:.*?:.*/,@symbols);
1109 (@r)=grep(/^\w+(\{[0-9]+\})?\\.*?:.*?:.*/ && !/^SSLeay(\{[0-9]+\})?\\.*?:.*?:.*/,@symbols);
948d0125
RL
1110 @symbols=((sort @e),(sort @r));
1111
1112 foreach $sym (@symbols) {
1113 (my $s, my $i) = $sym =~ /^(.*?)\\(.*)$/;
62dc5aad
RL
1114 my $v = 0;
1115 $v = 1 if $i=~ /^.*?:.*?:VARIABLE/;
1116 my $p = ($i =~ /^[^:]*:([^:]*):/,$1);
1117 my $a = ($i =~ /^[^:]*:[^:]*:[^:]*:([^:]*)/,$1);
1118 if (!defined($nums{$s})) {
1119 print STDERR "Warning: $s does not have a number assigned\n"
1120 if(!$do_update);
1121 } elsif (is_valid($p,1) && is_valid($a,0)) {
1122 my $s2 = ($s =~ /^(.*?)(\{[0-9]+\})?$/, $1);
1123 if ($prev eq $s2) {
1124 print OUT "\t/* The following has already appeared previously */\n";
1125 print STDERR "Warning: Symbol '",$s2,"' redefined. old=",($nums{$prev} =~ /^(.*?)\\/,$1),", new=",($nums{$s2} =~ /^(.*?)\\/,$1),"\n";
1126 }
1127 $prev = $s2; # To warn about duplicates...
1128
1129 ($nn,$ni)=($nums{$s2} =~ /^(.*?)\\(.*)$/);
1130 if ($v) {
1131 print OUT "\textern int $s2; /* type unknown */ /* $nn $ni */\n";
967f4ca8 1132 } else {
62dc5aad 1133 print OUT "\textern int $s2(); /* type unknown */ /* $nn $ni */\n";
967f4ca8 1134 }
12aefe78
DSH
1135 }
1136 }
1137}
1138
0b352c58
RL
1139sub get_version {
1140 local *MF;
1141 my $v = '?';
1142 open MF, 'Makefile.ssl' or return $v;
1143 while (<MF>) {
1144 $v = $1, last if /^VERSION=(.*?)\s*$/;
1145 }
1146 close MF;
1147 return $v;
1148}
1149
d02b48c6 1150sub print_def_file
47339f61 1151{
948d0125 1152 (*OUT,my $name,*nums,my @symbols)=@_;
62dc5aad 1153 my $n = 1; my @e; my @r; my @v; my $prev="";
cd4c36ad 1154 my $liboptions="";
0b352c58
RL
1155 my $libname = $name;
1156 my $http_vendor = 'www.openssl.org/';
1157 my $version = get_version();
1158 my $what = "OpenSSL: implementation of Secure Socket Layer";
1159 my $description = "$what $version, $name - http://$http_vendor";
d02b48c6 1160
06c68491 1161 if ($W32)
0b352c58 1162 { $libname.="32"; }
cd4c36ad 1163 elsif ($W16)
0b352c58 1164 { $libname.="16"; }
cd4c36ad 1165 elsif ($OS2)
0b352c58
RL
1166 { # DLL names should not clash on the whole system.
1167 # However, they should not have any particular relationship
1168 # to the name of the static library. Chose descriptive names
1169 # (must be at most 8 chars).
1170 my %translate = (ssl => 'open_ssl', crypto => 'cryptssl');
1171 $libname = $translate{$name} || $name;
1172 $liboptions = <<EOO;
1173INITINSTANCE
1174DATA MULTIPLE NONSHARED
1175EOO
1176 # Vendor field can't contain colon, drat; so we omit http://
1177 $description = "\@#$http_vendor:$version#\@$what; DLL for library $name. Build for EMX -Zmtd";
1178 }
d02b48c6
RE
1179
1180 print OUT <<"EOF";
1181;
9b3086fe 1182; Definition file for the DLL version of the $name library from OpenSSL
d02b48c6
RE
1183;
1184
0b352c58 1185LIBRARY $libname $liboptions
d02b48c6 1186
0b352c58 1187DESCRIPTION '$description'
d02b48c6
RE
1188
1189EOF
1190
cd4c36ad 1191 if ($W16) {
d02b48c6
RE
1192 print <<"EOF";
1193CODE PRELOAD MOVEABLE
1194DATA PRELOAD MOVEABLE SINGLE
1195
1196EXETYPE WINDOWS
1197
1198HEAPSIZE 4096
1199STACKSIZE 8192
1200
1201EOF
47339f61 1202 }
d02b48c6
RE
1203
1204 print "EXPORTS\n";
1205
62dc5aad
RL
1206 (@e)=grep(/^SSLeay(\{[0-9]+\})?\\.*?:.*?:FUNCTION/,@symbols);
1207 (@r)=grep(/^\w+(\{[0-9]+\})?\\.*?:.*?:FUNCTION/ && !/^SSLeay(\{[0-9]+\})?\\.*?:.*?:FUNCTION/,@symbols);
1208 (@v)=grep(/^\w+(\{[0-9]+\})?\\.*?:.*?:VARIABLE/,@symbols);
9c67ab2f 1209 @symbols=((sort @e),(sort @r), (sort @v));
d02b48c6 1210
d02b48c6 1211
948d0125
RL
1212 foreach $sym (@symbols) {
1213 (my $s, my $i) = $sym =~ /^(.*?)\\(.*)$/;
9c67ab2f 1214 my $v = 0;
62dc5aad 1215 $v = 1 if $i =~ /^.*?:.*?:VARIABLE/;
948d0125
RL
1216 if (!defined($nums{$s})) {
1217 printf STDERR "Warning: $s does not have a number assigned\n"
62dc5aad 1218 if(!$do_update);
47339f61 1219 } else {
62dc5aad 1220 (my $n, my $dummy) = split /\\/, $nums{$s};
d63b8db8 1221 my %pf = ();
62dc5aad
RL
1222 my $p = ($i =~ /^[^:]*:([^:]*):/,$1);
1223 my $a = ($i =~ /^[^:]*:[^:]*:[^:]*:([^:]*)/,$1);
1224 if (is_valid($p,1) && is_valid($a,0)) {
1225 my $s2 = ($s =~ /^(.*?)(\{[0-9]+\})?$/, $1);
1226 if ($prev eq $s2) {
1227 print STDERR "Warning: Symbol '",$s2,"' redefined. old=",($nums{$prev} =~ /^(.*?)\\/,$1),", new=",($nums{$s2} =~ /^(.*?)\\/,$1),"\n";
1228 }
1229 $prev = $s2; # To warn about duplicates...
cd4c36ad 1230 if($v && !$OS2) {
b4f682d3 1231 printf OUT " %s%-39s @%-8d DATA\n",($W32)?"":"_",$s2,$n;
9c67ab2f 1232 } else {
cd4c36ad 1233 printf OUT " %s%-39s @%d\n",($W32||$OS2)?"":"_",$s2,$n;
9c67ab2f 1234 }
965c1775 1235 }
d02b48c6 1236 }
d02b48c6 1237 }
47339f61
DSH
1238 printf OUT "\n";
1239}
d02b48c6
RE
1240
1241sub load_numbers
47339f61
DSH
1242{
1243 my($name)=@_;
1244 my(@a,%ret);
d02b48c6 1245
55a9cc6e 1246 $max_num = 0;
948d0125
RL
1247 $num_noinfo = 0;
1248 $prev = "";
62dc5aad 1249 $prev_cnt = 0;
55a9cc6e 1250
d02b48c6 1251 open(IN,"<$name") || die "unable to open $name:$!\n";
47339f61 1252 while (<IN>) {
d02b48c6
RE
1253 chop;
1254 s/#.*$//;
1255 next if /^\s*$/;
1256 @a=split;
948d0125 1257 if (defined $ret{$a[0]}) {
62dc5aad
RL
1258 # This is actually perfectly OK
1259 #print STDERR "Warning: Symbol '",$a[0],"' redefined. old=",$ret{$a[0]},", new=",$a[1],"\n";
948d0125
RL
1260 }
1261 if ($max_num > $a[1]) {
1262 print STDERR "Warning: Number decreased from ",$max_num," to ",$a[1],"\n";
1263 }
62dc5aad 1264 elsif ($max_num == $a[1]) {
948d0125
RL
1265 # This is actually perfectly OK
1266 #print STDERR "Warning: Symbol ",$a[0]," has same number as previous ",$prev,": ",$a[1],"\n";
62dc5aad
RL
1267 if ($a[0] eq $prev) {
1268 $prev_cnt++;
1269 $a[0] .= "{$prev_cnt}";
1270 }
1271 }
1272 else {
1273 $prev_cnt = 0;
948d0125
RL
1274 }
1275 if ($#a < 2) {
1276 # Existence will be proven later, in do_defs
1277 $ret{$a[0]}=$a[1];
1278 $num_noinfo++;
1279 } else {
1280 $ret{$a[0]}=$a[1]."\\".$a[2]; # \\ is a special marker
1281 }
55a9cc6e 1282 $max_num = $a[1] if $a[1] > $max_num;
948d0125
RL
1283 $prev=$a[0];
1284 }
1285 if ($num_noinfo) {
1286 print STDERR "Warning: $num_noinfo symbols were without info.";
1287 if ($do_rewrite) {
1288 printf STDERR " The rewrite will fix this.\n";
1289 } else {
1290 printf STDERR " You should do a rewrite to fix this.\n";
1291 }
47339f61 1292 }
d02b48c6
RE
1293 close(IN);
1294 return(%ret);
47339f61 1295}
55a9cc6e 1296
948d0125
RL
1297sub parse_number
1298{
1299 (my $str, my $what) = @_;
1300 (my $n, my $i) = split(/\\/,$str);
1301 if ($what eq "n") {
1302 return $n;
1303 } else {
1304 return $i;
1305 }
1306}
1307
1308sub rewrite_numbers
1309{
1310 (*OUT,$name,*nums,@symbols)=@_;
1311 my $thing;
1312
1313 print STDERR "Rewriting $name\n";
1314
62dc5aad 1315 my @r = grep(/^\w+(\{[0-9]+\})?\\.*?:.*?:\w+\(\w+\)/,@symbols);
948d0125
RL
1316 my $r; my %r; my %rsyms;
1317 foreach $r (@r) {
1318 (my $s, my $i) = split /\\/, $r;
1319 my $a = $1 if $i =~ /^.*?:.*?:\w+\((\w+)\)/;
1320 $i =~ s/^(.*?:.*?:\w+)\(\w+\)/$1/;
1321 $r{$a} = $s."\\".$i;
1322 $rsyms{$s} = 1;
1323 }
1324
451e60e9
RL
1325 my %syms = ();
1326 foreach $_ (@symbols) {
1327 (my $n, my $i) = split /\\/;
1328 $syms{$n} = 1;
1329 }
1330
89eeccac
RL
1331 my @s=sort {
1332 &parse_number($nums{$a},"n") <=> &parse_number($nums{$b},"n")
1333 || $a cmp $b
1334 } keys %nums;
948d0125
RL
1335 foreach $sym (@s) {
1336 (my $n, my $i) = split /\\/, $nums{$sym};
1337 next if defined($i) && $i =~ /^.*?:.*?:\w+\(\w+\)/;
1338 next if defined($rsyms{$sym});
62dc5aad 1339 print STDERR "DEBUG: rewrite_numbers for sym = ",$sym,": i = ",$i,", n = ",$n,", rsym{sym} = ",$rsyms{$sym},"syms{sym} = ",$syms{$sym},"\n" if $debug;
451e60e9
RL
1340 $i="NOEXIST::FUNCTION:"
1341 if !defined($i) || $i eq "" || !defined($syms{$sym});
62dc5aad
RL
1342 my $s2 = $sym;
1343 $s2 =~ s/\{[0-9]+\}$//;
b4f682d3 1344 printf OUT "%s%-39s %d\t%s\n","",$s2,$n,$i;
948d0125
RL
1345 if (exists $r{$sym}) {
1346 (my $s, $i) = split /\\/,$r{$sym};
62dc5aad
RL
1347 my $s2 = $s;
1348 $s2 =~ s/\{[0-9]+\}$//;
b4f682d3 1349 printf OUT "%s%-39s %d\t%s\n","",$s2,$n,$i;
948d0125
RL
1350 }
1351 }
1352}
1353
55a9cc6e 1354sub update_numbers
47339f61 1355{
948d0125
RL
1356 (*OUT,$name,*nums,my $start_num, my @symbols)=@_;
1357 my $new_syms = 0;
1358
1359 print STDERR "Updating $name numbers\n";
1360
62dc5aad 1361 my @r = grep(/^\w+(\{[0-9]+\})?\\.*?:.*?:\w+\(\w+\)/,@symbols);
948d0125
RL
1362 my $r; my %r; my %rsyms;
1363 foreach $r (@r) {
1364 (my $s, my $i) = split /\\/, $r;
1365 my $a = $1 if $i =~ /^.*?:.*?:\w+\((\w+)\)/;
1366 $i =~ s/^(.*?:.*?:\w+)\(\w+\)/$1/;
1367 $r{$a} = $s."\\".$i;
1368 $rsyms{$s} = 1;
1369 }
1370
1371 foreach $sym (@symbols) {
1372 (my $s, my $i) = $sym =~ /^(.*?)\\(.*)$/;
1373 next if $i =~ /^.*?:.*?:\w+\(\w+\)/;
1374 next if defined($rsyms{$sym});
1375 die "ERROR: Symbol $sym had no info attached to it."
1376 if $i eq "";
1377 if (!exists $nums{$s}) {
1378 $new_syms++;
62dc5aad
RL
1379 my $s2 = $s;
1380 $s2 =~ s/\{[0-9]+\}$//;
b4f682d3 1381 printf OUT "%s%-39s %d\t%s\n","",$s2, ++$start_num,$i;
948d0125 1382 if (exists $r{$s}) {
33b1a4c2 1383 ($s, $i) = split /\\/,$r{$s};
62dc5aad 1384 $s =~ s/\{[0-9]+\}$//;
b4f682d3 1385 printf OUT "%s%-39s %d\t%s\n","",$s, $start_num,$i;
948d0125 1386 }
55a9cc6e 1387 }
47339f61 1388 }
948d0125
RL
1389 if($new_syms) {
1390 print STDERR "$new_syms New symbols added\n";
55a9cc6e 1391 } else {
948d0125
RL
1392 print STDERR "No New symbols Added\n";
1393 }
1394}
1395
1396sub check_existing
1397{
1398 (*nums, my @symbols)=@_;
1399 my %existing; my @remaining;
1400 @remaining=();
1401 foreach $sym (@symbols) {
1402 (my $s, my $i) = $sym =~ /^(.*?)\\(.*)$/;
1403 $existing{$s}=1;
1404 }
1405 foreach $sym (keys %nums) {
1406 if (!exists $existing{$sym}) {
1407 push @remaining, $sym;
1408 }
1409 }
1410 if(@remaining) {
1411 print STDERR "The following symbols do not seem to exist:\n";
1412 foreach $sym (@remaining) {
1413 print STDERR "\t",$sym,"\n";
1414 }
55a9cc6e 1415 }
47339f61 1416}
948d0125 1417