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