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