Add Rijndael as things to look through.
[openssl.git] / util / mkdef.pl
1 #!/usr/local/bin/perl -w
2 #
3 # generate a .def file
4 #
5 # It does this by parsing the header files and looking for the
6 # prototyped functions: it then prunes the output.
7 #
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
40 #   symbol name replacements for platforms where the names are too long for the
41 #   compiler or linker, or if the systems is case insensitive and there is a
42 #   clash.  This script assumes those redefinitions are place in the file
43 #   crypto/symhacks.h.
44 #   The semantics for the platforms list is a bit complicated.  The rule of
45 #   thumb is that the list is exclusive, but it seems to mean different things.
46 #   So, if the list is all negatives (like "!VMS,!WIN16"), the symbol exists
47 #   on all platforms except those listed.  If the list is all positives (like
48 #   "VMS,WIN16"), the symbol exists only on those platforms and nowhere else.
49 #   The combination of positives and negatives will act as if the positives
50 #   weren't there.
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 #
56
57 my $crypto_num= "util/libeay.num";
58 my $ssl_num=    "util/ssleay.num";
59
60 my $do_update = 0;
61 my $do_rewrite = 0;
62 my $do_crypto = 0;
63 my $do_ssl = 0;
64 my $do_ctest = 0;
65 my $do_ctestall = 0;
66 my $rsaref = 0;
67
68 my $VMS=0;
69 my $W32=0;
70 my $W16=0;
71 my $NT=0;
72 # Set this to make typesafe STACK definitions appear in DEF
73 my $safe_stack_def = 0;
74
75 my @known_platforms = ( "__FreeBSD__", "VMS", "WIN16", "WIN32",
76                         "WINNT", "PERL5", "NeXT" );
77 my @known_algorithms = ( "RC2", "RC4", "RC5", "IDEA", "DES", "BF",
78                          "CAST", "MD2", "MD4", "MD5", "SHA", "RIPEMD",
79                          "MDC2", "RSA", "DSA", "DH", "HMAC", "FP_API",
80                          "RIJNDAEL" );
81
82 my $options="";
83 open(IN,"<Makefile.ssl") || die "unable to open Makefile.ssl!\n";
84 while(<IN>) {
85     $options=$1 if (/^OPTIONS=(.*)$/);
86 }
87 close(IN);
88
89 # The following ciphers may be excluded (by Configure). This means functions
90 # defined with ifndef(NO_XXX) are not included in the .def file, and everything
91 # in directory xxx is ignored.
92 my $no_rc2; my $no_rc4; my $no_rc5; my $no_idea; my $no_des; my $no_bf;
93 my $no_cast;
94 my $no_md2; my $no_md4; my $no_md5; my $no_sha; my $no_ripemd; my $no_mdc2;
95 my $no_rsa; my $no_dsa; my $no_dh; my $no_hmac=0; my $no_rijndael;
96 my $no_fp_api;
97
98 foreach (@ARGV, split(/ /, $options))
99         {
100         $W32=1 if $_ eq "32";
101         $W16=1 if $_ eq "16";
102         if($_ eq "NT") {
103                 $W32 = 1;
104                 $NT = 1;
105         }
106         $VMS=1 if $_ eq "VMS";
107         #$rsaref=1 if $_ eq "rsaref";
108
109         $do_ssl=1 if $_ eq "ssleay";
110         $do_ssl=1 if $_ eq "ssl";
111         $do_crypto=1 if $_ eq "libeay";
112         $do_crypto=1 if $_ eq "crypto";
113         $do_update=1 if $_ eq "update";
114         $do_rewrite=1 if $_ eq "rewrite";
115         $do_ctest=1 if $_ eq "ctest";
116         $do_ctestall=1 if $_ eq "ctestall";
117         #$safe_stack_def=1 if $_ eq "-DDEBUG_SAFESTACK";
118
119         if    (/^no-rc2$/)      { $no_rc2=1; }
120         elsif (/^no-rc4$/)      { $no_rc4=1; }
121         elsif (/^no-rc5$/)      { $no_rc5=1; }
122         elsif (/^no-idea$/)     { $no_idea=1; }
123         elsif (/^no-des$/)      { $no_des=1; $no_mdc2=1; }
124         elsif (/^no-bf$/)       { $no_bf=1; }
125         elsif (/^no-cast$/)     { $no_cast=1; }
126         elsif (/^no-md2$/)      { $no_md2=1; }
127         elsif (/^no-md4$/)      { $no_md4=1; }
128         elsif (/^no-md5$/)      { $no_md5=1; }
129         elsif (/^no-sha$/)      { $no_sha=1; }
130         elsif (/^no-ripemd$/)   { $no_ripemd=1; }
131         elsif (/^no-mdc2$/)     { $no_mdc2=1; }
132         elsif (/^no-rsa$/)      { $no_rsa=1; }
133         elsif (/^no-dsa$/)      { $no_dsa=1; }
134         elsif (/^no-dh$/)       { $no_dh=1; }
135         elsif (/^no-hmac$/)     { $no_hmac=1; }
136         elsif (/^no-rijndael$/) { $no_rijndael=1; }
137         }
138
139
140 # If no platform is given, assume WIN32
141 if ($W32 + $W16 + $VMS == 0) {
142         $W32 = 1;
143 }
144
145 # Add extra knowledge
146 if ($W16) {
147         $no_fp_api=1;
148 }
149
150 if (!$do_ssl && !$do_crypto)
151         {
152         print STDERR "usage: $0 ( ssl | crypto ) [ 16 | 32 | NT ]\n";
153         exit(1);
154         }
155
156 %ssl_list=&load_numbers($ssl_num);
157 $max_ssl = $max_num;
158 %crypto_list=&load_numbers($crypto_num);
159 $max_crypto = $max_num;
160
161 my $ssl="ssl/ssl.h";
162
163 my $crypto ="crypto/crypto.h";
164 $crypto.=" crypto/des/des.h" unless $no_des;
165 $crypto.=" crypto/idea/idea.h" unless $no_idea;
166 $crypto.=" crypto/rc4/rc4.h" unless $no_rc4;
167 $crypto.=" crypto/rc5/rc5.h" unless $no_rc5;
168 $crypto.=" crypto/rc2/rc2.h" unless $no_rc2;
169 $crypto.=" crypto/bf/blowfish.h" unless $no_bf;
170 $crypto.=" crypto/cast/cast.h" unless $no_cast;
171 $crypto.=" crypto/md2/md2.h" unless $no_md2;
172 $crypto.=" crypto/md4/md4.h" unless $no_md4;
173 $crypto.=" crypto/md5/md5.h" unless $no_md5;
174 $crypto.=" crypto/mdc2/mdc2.h" unless $no_mdc2;
175 $crypto.=" crypto/sha/sha.h" unless $no_sha;
176 $crypto.=" crypto/ripemd/ripemd.h" unless $no_ripemd;
177 $crypto.=" crypto/rijndael/rijndael.h" unless $no_rijndael;
178
179 $crypto.=" crypto/bn/bn.h";
180 $crypto.=" crypto/rsa/rsa.h" unless $no_rsa;
181 $crypto.=" crypto/dsa/dsa.h" unless $no_dsa;
182 $crypto.=" crypto/dh/dh.h" unless $no_dh;
183 $crypto.=" crypto/hmac/hmac.h" unless $no_hmac;
184
185 $crypto.=" crypto/engine/engine.h";
186 $crypto.=" crypto/stack/stack.h";
187 $crypto.=" crypto/buffer/buffer.h";
188 $crypto.=" crypto/bio/bio.h";
189 $crypto.=" crypto/dso/dso.h";
190 $crypto.=" crypto/lhash/lhash.h";
191 $crypto.=" crypto/conf/conf.h";
192 $crypto.=" crypto/txt_db/txt_db.h";
193
194 $crypto.=" crypto/evp/evp.h";
195 $crypto.=" crypto/objects/objects.h";
196 $crypto.=" crypto/pem/pem.h";
197 #$crypto.=" crypto/meth/meth.h";
198 $crypto.=" crypto/asn1/asn1.h";
199 $crypto.=" crypto/asn1/asn1_mac.h";
200 $crypto.=" crypto/err/err.h";
201 $crypto.=" crypto/pkcs7/pkcs7.h";
202 $crypto.=" crypto/pkcs12/pkcs12.h";
203 $crypto.=" crypto/x509/x509.h";
204 $crypto.=" crypto/x509/x509_vfy.h";
205 $crypto.=" crypto/x509v3/x509v3.h";
206 $crypto.=" crypto/rand/rand.h";
207 $crypto.=" crypto/comp/comp.h";
208 $crypto.=" crypto/ocsp/ocsp.h";
209 $crypto.=" crypto/tmdiff.h";
210
211 my $symhacks="crypto/symhacks.h";
212
213 my @ssl_symbols = &do_defs("SSLEAY", $ssl, $symhacks);
214 my @crypto_symbols = &do_defs("LIBEAY", $crypto, $symhacks);
215
216 if ($do_update) {
217
218 if ($do_ssl == 1) {
219
220         &maybe_add_info("SSLEAY",*ssl_list,@ssl_symbols);
221         if ($do_rewrite == 1) {
222                 open(OUT, ">$ssl_num");
223                 &rewrite_numbers(*OUT,"SSLEAY",*ssl_list,@ssl_symbols);
224                 close OUT;
225         } else {
226                 open(OUT, ">>$ssl_num");
227         }
228         &update_numbers(*OUT,"SSLEAY",*ssl_list,$max_ssl,@ssl_symbols);
229         close OUT;
230 }
231
232 if($do_crypto == 1) {
233
234         &maybe_add_info("LIBEAY",*crypto_list,@crypto_symbols);
235         if ($do_rewrite == 1) {
236                 open(OUT, ">$crypto_num");
237                 &rewrite_numbers(*OUT,"LIBEAY",*crypto_list,@crypto_symbols);
238         } else {
239                 open(OUT, ">>$crypto_num");
240         }
241         &update_numbers(*OUT,"LIBEAY",*crypto_list,$max_crypto,@crypto_symbols);
242         close OUT;
243
244
245 } elsif ($do_ctest || $do_ctestall) {
246
247         print <<"EOF";
248
249 /* Test file to check all DEF file symbols are present by trying
250  * to link to all of them. This is *not* intended to be run!
251  */
252
253 int main()
254 {
255 EOF
256         &print_test_file(*STDOUT,"SSLEAY",*ssl_list,$do_ctestall,@ssl_symbols)
257                 if $do_ssl == 1;
258
259         &print_test_file(*STDOUT,"LIBEAY",*crypto_list,$do_ctestall,@crypto_symbols)
260                 if $do_crypto == 1;
261
262         print "}\n";
263
264 } else {
265
266         &print_def_file(*STDOUT,"SSLEAY",*ssl_list,@ssl_symbols)
267                 if $do_ssl == 1;
268
269         &print_def_file(*STDOUT,"LIBEAY",*crypto_list,@crypto_symbols)
270                 if $do_crypto == 1;
271
272 }
273
274
275 sub do_defs
276 {
277         my($name,$files,$symhacksfile)=@_;
278         my $file;
279         my @ret;
280         my %syms;
281         my %platform;           # For anything undefined, we assume ""
282         my %kind;               # For anything undefined, we assume "FUNCTION"
283         my %algorithm;          # For anything undefined, we assume ""
284         my %rename;
285         my $cpp;
286
287         foreach $file (split(/\s+/,$symhacksfile." ".$files))
288                 {
289                 open(IN,"<$file") || die "unable to open $file:$!\n";
290                 my $line = "", my $def= "";
291                 my %tag = (
292                         (map { $_ => 0 } @known_platforms),
293                         (map { "NO_".$_ => 0 } @known_algorithms),
294                         NOPROTO         => 0,
295                         PERL5           => 0,
296                         _WINDLL         => 0,
297                         CONST_STRICT    => 0,
298                         TRUE            => 1,
299                 );
300                 my $symhacking = $file eq $symhacksfile;
301                 while(<IN>) {
302                         last if (/BEGIN ERROR CODES/);
303                         if ($line ne '') {
304                                 $_ = $line . $_;
305                                 $line = '';
306                         }
307
308                         if (/\\$/) {
309                                 $line = $_;
310                                 next;
311                         }
312
313                         $cpp = 1 if /^\#.*ifdef.*cplusplus/;
314                         if ($cpp) {
315                                 $cpp = 0 if /^\#.*endif/;
316                                 next;
317                         }
318
319                         s/\/\*.*?\*\///gs;                   # ignore comments
320                         s/{[^{}]*}//gs;                      # ignore {} blocks
321                         if (/^\#\s*ifndef (.*)/) {
322                                 push(@tag,$1);
323                                 $tag{$1}=-1;
324                         } elsif (/^\#\s*if !defined\(([^\)]+)\)/) {
325                                 push(@tag,$1);
326                                 $tag{$1}=-1;
327                         } elsif (/^\#\s*ifdef (.*)/) {
328                                 push(@tag,$1);
329                                 $tag{$1}=1;
330                         } elsif (/^\#\s*if defined\(([^\)]+)\)/) {
331                                 push(@tag,$1);
332                                 $tag{$1}=1;
333                         } elsif (/^\#\s*error\s+(\w+) is disabled\./) {
334                                 if ($tag[$#tag] eq "NO_".$1) {
335                                         $tag{$tag[$#tag]}=2;
336                                 }
337                         } elsif (/^\#\s*endif/) {
338                                 if ($tag{$tag[$#tag]}==2) {
339                                         $tag{$tag[$#tag]}=-1;
340                                 } else {
341                                         $tag{$tag[$#tag]}=0;
342                                 }
343                                 pop(@tag);
344                         } elsif (/^\#\s*else/) {
345                                 my $t=$tag[$#tag];
346                                 $tag{$t}= -$tag{$t};
347                         } elsif (/^\#\s*if\s+1/) {
348                                 # Dummy tag
349                                 push(@tag,"TRUE");
350                                 $tag{"TRUE"}=1;
351                         } elsif (/^\#\s*if\s+0/) {
352                                 # Dummy tag
353                                 push(@tag,"TRUE");
354                                 $tag{"TRUE"}=-1;
355                         } elsif (/^\#\s*define\s+(\w+)\s+(\w+)/
356                                  && $symhacking) {
357                                 my $s = $1;
358                                 my $a =
359                                     $2.":".join(",", grep(!/^$/,
360                                                           map { $tag{$_} == 1 ?
361                                                                     $_ : "" }
362                                                           @known_platforms));
363                                 $rename{$s} = $a;
364                         }
365                         if (/^\#/) {
366                                 my @p = grep(!/^$/,
367                                              map { $tag{$_} == 1 ? $_ :
368                                                        $tag{$_} == -1 ? "!".$_  : "" }
369                                              @known_platforms);
370                                 my @a = grep(!/^$/,
371                                              map { $tag{"NO_".$_} == -1 ? $_ : "" }
372                                              @known_algorithms);
373                                 $def .= "#INFO:".join(',',@p).":".join(',',@a).";";
374                                 next;
375                         }
376                         if (/^\s*DECLARE_STACK_OF\s*\(\s*(\w*)\s*\)/) {
377                                 next;
378                         } elsif (/^\s*DECLARE_PKCS12_STACK_OF\s*\(\s*(\w*)\s*\)/) {
379                                 next;
380                         } elsif (/^\s*DECLARE_ASN1_SET_OF\s*\(\s*(\w*)\s*\)/) {
381                                 next;
382                         } elsif (/^DECLARE_PEM_rw\s*\(\s*(\w*)\s*,/ ||
383                                  /^DECLARE_PEM_rw_cb\s*\(\s*(\w*)\s*,/ ) {
384                                 # Things not in Win16
385                                 $syms{"PEM_read_${1}"} = 1;
386                                 $platform{"PEM_read_${1}"} = "!WIN16";
387                                 $syms{"PEM_write_${1}"} = 1;
388                                 $platform{"PEM_write_${1}"} = "!WIN16";
389                                 # Things that are everywhere
390                                 $syms{"PEM_read_bio_${1}"} = 1;
391                                 $syms{"PEM_write_bio_${1}"} = 1;
392                                 if ($1 eq "RSAPrivateKey" ||
393                                     $1 eq "RSAPublicKey" ||
394                                     $1 eq "RSA_PUBKEY") {
395                                         $algorithm{"PEM_read_${1}"} = "RSA";
396                                         $algorithm{"PEM_write_${1}"} = "RSA";
397                                         $algorithm{"PEM_read_bio_${1}"} = "RSA";
398                                         $algorithm{"PEM_write_bio_${1}"} = "RSA";
399                                 }
400                                 elsif ($1 eq "DSAPrivateKey" ||
401                                        $1 eq "DSAparams" ||
402                                        $1 eq "RSA_PUBKEY") {
403                                         $algorithm{"PEM_read_${1}"} = "DSA";
404                                         $algorithm{"PEM_write_${1}"} = "DSA";
405                                         $algorithm{"PEM_read_bio_${1}"} = "DSA";
406                                         $algorithm{"PEM_write_bio_${1}"} = "DSA";
407                                 }
408                                 elsif ($1 eq "DHparams") {
409                                         $algorithm{"PEM_read_${1}"} = "DH";
410                                         $algorithm{"PEM_write_${1}"} = "DH";
411                                         $algorithm{"PEM_read_bio_${1}"} = "DH";
412                                         $algorithm{"PEM_write_bio_${1}"} = "DH";
413                                 }
414                         } elsif (/^DECLARE_PEM_write\s*\(\s*(\w*)\s*,/ ||
415                                      /^DECLARE_PEM_write_cb\s*\(\s*(\w*)\s*,/ ) {
416                                 # Things not in Win16
417                                 $syms{"PEM_write_${1}"} = 1;
418                                 $platform{"PEM_write_${1}"} .= ",!WIN16";
419                                 # Things that are everywhere
420                                 $syms{"PEM_write_bio_${1}"} = 1;
421                                 if ($1 eq "RSAPrivateKey" ||
422                                     $1 eq "RSAPublicKey" ||
423                                     $1 eq "RSA_PUBKEY") {
424                                         $algorithm{"PEM_write_${1}"} = "RSA";
425                                         $algorithm{"PEM_write_bio_${1}"} = "RSA";
426                                 }
427                                 elsif ($1 eq "DSAPrivateKey" ||
428                                        $1 eq "DSAparams" ||
429                                        $1 eq "RSA_PUBKEY") {
430                                         $algorithm{"PEM_write_${1}"} = "DSA";
431                                         $algorithm{"PEM_write_bio_${1}"} = "DSA";
432                                 }
433                                 elsif ($1 eq "DHparams") {
434                                         $algorithm{"PEM_write_${1}"} = "DH";
435                                         $algorithm{"PEM_write_bio_${1}"} = "DH";
436                                 }
437                         } elsif (/^DECLARE_PEM_read\s*\(\s*(\w*)\s*,/ ||
438                                      /^DECLARE_PEM_read_cb\s*\(\s*(\w*)\s*,/ ) {
439                                 # Things not in Win16
440                                 $syms{"PEM_read_${1}"} = 1;
441                                 $platform{"PEM_read_${1}"} .= ",!WIN16";
442                                 # Things that are everywhere
443                                 $syms{"PEM_read_bio_${1}"} = 1;
444                         } elsif (
445                                 ($tag{'TRUE'} != -1)
446                                 && ($tag{'CONST_STRICT'} != 1)
447                                  )
448                                 {
449                                         if (/\{|\/\*|\([^\)]*$/) {
450                                                 $line = $_;
451                                         } else {
452                                                 $def .= $_;
453                                         }
454                                 }
455                         }
456                 close(IN);
457
458                 my $algs;
459                 my $plays;
460
461                 foreach (split /;/, $def) {
462                         my $s; my $k = "FUNCTION"; my $p; my $a;
463                         s/^[\n\s]*//g;
464                         s/[\n\s]*$//g;
465                         next if(/\#undef/);
466                         next if(/typedef\W/);
467                         next if(/\#define/);
468
469                         if (/^\#INFO:([^:]*):(.*)$/) {
470                                 $plats = $1;
471                                 $algs = $2;
472                                 next;
473                         } elsif (/^\s*OPENSSL_EXTERN\s.*?(\w+)(\[[0-9]*\])*\s*$/) {
474                                 $s = $1;
475                                 $k = "VARIABLE";
476                         } elsif (/\(\*(\w*)\([^\)]+/) {
477                                 $s = $1;
478                         } elsif (/\w+\W+(\w+)\W*\(\s*\)$/s) {
479                                 # K&R C
480                                 next;
481                         } elsif (/\w+\W+\w+\W*\(.*\)$/s) {
482                                 while (not /\(\)$/s) {
483                                         s/[^\(\)]*\)$/\)/s;
484                                         s/\([^\(\)]*\)\)$/\)/s;
485                                 }
486                                 s/\(void\)//;
487                                 /(\w+)\W*\(\)/s;
488                                 $s = $1;
489                         } elsif (/\(/ and not (/=/)) {
490                                 print STDERR "File $file: cannot parse: $_;\n";
491                                 next;
492                         } else {
493                                 next;
494                         }
495
496                         $syms{$s} = 1;
497                         $kind{$s} = $k;
498
499                         $p = $plats;
500                         $a = $algs;
501                         $a .= ",BF" if($s =~ /EVP_bf/);
502                         $a .= ",CAST" if($s =~ /EVP_cast/);
503                         $a .= ",DES" if($s =~ /EVP_des/);
504                         $a .= ",DSA" if($s =~ /EVP_dss/);
505                         $a .= ",IDEA" if($s =~ /EVP_idea/);
506                         $a .= ",MD2" if($s =~ /EVP_md2/);
507                         $a .= ",MD4" if($s =~ /EVP_md4/);
508                         $a .= ",MD5" if($s =~ /EVP_md5/);
509                         $a .= ",RC2" if($s =~ /EVP_rc2/);
510                         $a .= ",RC4" if($s =~ /EVP_rc4/);
511                         $a .= ",RC5" if($s =~ /EVP_rc5/);
512                         $a .= ",RIPEMD" if($s =~ /EVP_ripemd/);
513                         $a .= ",SHA" if($s =~ /EVP_sha/);
514                         $a .= ",RSA" if($s =~ /EVP_(Open|Seal)(Final|Init)/);
515                         $a .= ",RSA" if($s =~ /PEM_Seal(Final|Init|Update)/);
516                         $a .= ",RSA" if($s =~ /RSAPrivateKey/);
517                         $a .= ",RSA" if($s =~ /SSLv23?_((client|server)_)?method/);
518
519                         $platform{$s} .= ','.$p;
520                         $algorithm{$s} .= ','.$a;
521
522                         if (defined($rename{$s})) {
523                                 (my $r, my $p) = split(/:/,$rename{$s});
524                                 my @ip = map { /^!(.*)$/ ? $1 : "!".$_ } split /,/, $p;
525                                 $syms{$r} = 1;
526                                 $kind{$r} = $kind{$s}."(".$s.")";
527                                 $algorithm{$r} = $algorithm{$s};
528                                 $platform{$r} = $platform{$s}.",".$p;
529                                 $platform{$s} .= ','.join(',', @ip).','.join(',', @ip);
530                         }
531                 }
532         }
533
534         # Prune the returned symbols
535
536         $platform{"crypt"} .= ",!PERL5,!__FreeBSD__,!NeXT";
537
538         delete $syms{"SSL_add_dir_cert_subjects_to_stack"};
539         delete $syms{"bn_dump1"};
540
541         $platform{"BIO_s_file_internal"} .= ",WIN16";
542         $platform{"BIO_new_file_internal"} .= ",WIN16";
543         $platform{"BIO_new_fp_internal"} .= ",WIN16";
544
545         $platform{"BIO_s_file"} .= ",!WIN16";
546         $platform{"BIO_new_file"} .= ",!WIN16";
547         $platform{"BIO_new_fp"} .= ",!WIN16";
548
549         $platform{"BIO_s_log"} .= ",!WIN32,!WIN16,!macintosh";
550
551         if(exists $syms{"ERR_load_CRYPTO_strings"}) {
552                 $platform{"ERR_load_CRYPTO_strings"} .= ",!VMS,!WIN16";
553                 $syms{"ERR_load_CRYPTOlib_strings"} = 1;
554                 $platform{"ERR_load_CRYPTOlib_strings"} .= ",VMS,WIN16";
555         }
556
557         # Info we know about
558
559         $platform{"RSA_PKCS1_RSAref"} = "RSAREF";
560         $algorithm{"RSA_PKCS1_RSAref"} = "RSA";
561
562         push @ret, map { $_."\\".&info_string($_,"EXIST",
563                                               $platform{$_},
564                                               $kind{$_},
565                                               $algorithm{$_}) } keys %syms;
566
567         return(@ret);
568 }
569
570 sub info_string {
571         (my $symbol, my $exist, my $platforms, my $kind, my $algorithms) = @_;
572
573         my %a = defined($algorithms) ?
574             map { $_ => 1 } split /,/, $algorithms : ();
575         my $pl = defined($platforms) ? $platforms : "";
576         my %p = map { $_ => 0 } split /,/, $pl;
577         my $k = defined($kind) ? $kind : "FUNCTION";
578         my $ret;
579
580         # We do this, because if there's code like the following, it really
581         # means the function exists in all cases and should therefore be
582         # everywhere.  By increasing and decreasing, we may attain 0:
583         #
584         # ifndef WIN16
585         #    int foo();
586         # else
587         #    int _fat foo();
588         # endif
589         foreach $platform (split /,/, $pl) {
590                 if ($platform =~ /^!(.*)$/) {
591                         $p{$1}--;
592                 } else {
593                         $p{$platform}++;
594                 }
595         }
596         foreach $platform (keys %p) {
597                 if ($p{$platform} == 0) { delete $p{$platform}; }
598         }
599
600         delete $p{""};
601         delete $a{""};
602
603         $ret = $exist;
604         $ret .= ":".join(',',map { $p{$_} < 0 ? "!".$_ : $_ } keys %p);
605         $ret .= ":".$k;
606         $ret .= ":".join(',',keys %a);
607         return $ret;
608 }
609
610 sub maybe_add_info {
611         (my $name, *nums, my @symbols) = @_;
612         my $sym;
613         my $new_info = 0;
614
615         print STDERR "Updating $name info\n";
616         foreach $sym (@symbols) {
617                 (my $s, my $i) = split /\\/, $sym;
618                 $i =~ s/^(.*?:.*?:\w+)(\(\w+\))?/$1/;
619                 if (defined($nums{$s})) {
620                         (my $n, my $dummy) = split /\\/, $nums{$s};
621                         if (!defined($dummy) || $i ne $dummy) {
622                                 $nums{$s} = $n."\\".$i;
623                                 $new_info++;
624                                 #print STDERR "DEBUG: maybe_add_info for $s: \"$dummy\" => \"$i\"\n";
625                         }
626                 }
627         }
628         if ($new_info) {
629                 print STDERR "$new_info old symbols got an info update\n";
630                 if (!$do_rewrite) {
631                         print STDERR "You should do a rewrite to fix this.\n";
632                 }
633         } else {
634                 print STDERR "No old symbols needed info update\n";
635         }
636 }
637
638 sub print_test_file
639 {
640         (*OUT,my $name,*nums,my @symbols)=@_;
641         my $n = 1; my @e; my @r;
642         my $sym; my $prev = ""; my $prefSSLeay;
643
644         (@e)=grep(/^SSLeay\\.*?:.*?:FUNCTION/,@symbols);
645         (@r)=grep(/^\w+\\.*?:.*?:FUNCTION/ && !/^SSLeay\\.*?:.*?:FUNCTION/,@symbols);
646         @symbols=((sort @e),(sort @r));
647
648         foreach $sym (@symbols) {
649                 (my $s, my $i) = $sym =~ /^(.*?)\\(.*)$/;
650                 if ($s ne $prev) {
651                         if (!defined($nums{$sym})) {
652                                 printf STDERR "Warning: $sym does not have a number assigned\n"
653                                                 if(!$do_update);
654                         } else {
655                                 $n=$nums{$s};
656                                 print OUT "\t$s();\n";
657                         }
658                 }
659                 $prev = $s;     # To avoid duplicates...
660         }
661 }
662
663 sub print_def_file
664 {
665         (*OUT,my $name,*nums,my @symbols)=@_;
666         my $n = 1; my @e; my @r;
667
668         if ($W32)
669                 { $name.="32"; }
670         else
671                 { $name.="16"; }
672
673         print OUT <<"EOF";
674 ;
675 ; Definition file for the DLL version of the $name library from OpenSSL
676 ;
677
678 LIBRARY         $name
679
680 DESCRIPTION     'OpenSSL $name - http://www.openssl.org/'
681
682 EOF
683
684         if (!$W32) {
685                 print <<"EOF";
686 CODE            PRELOAD MOVEABLE
687 DATA            PRELOAD MOVEABLE SINGLE
688
689 EXETYPE         WINDOWS
690
691 HEAPSIZE        4096
692 STACKSIZE       8192
693
694 EOF
695         }
696
697         print "EXPORTS\n";
698
699         (@e)=grep(/^SSLeay\\.*?:.*?:FUNCTION/,@symbols);
700         (@r)=grep(/^\w+\\.*?:.*?:FUNCTION/ && !/^SSLeay\\.*?:.*?:FUNCTION/,@symbols);
701         @symbols=((sort @e),(sort @r));
702
703
704         foreach $sym (@symbols) {
705                 (my $s, my $i) = $sym =~ /^(.*?)\\(.*)$/;
706                 if (!defined($nums{$s})) {
707                         printf STDERR "Warning: $s does not have a number assigned\n"
708                                         if(!$do_update);
709                 } else {
710                         (my $n, my $i) = split /\\/, $nums{$s};
711                         my %pf = ();
712                         my @p = split(/,/, ($i =~ /^[^:]*:([^:]*):/,$1));
713                         my @a = split(/,/, ($i =~ /^[^:]*:[^:]*:[^:]*:([^:]*)/,$1));
714                         # @p_purged must contain hardware platforms only
715                         my @p_purged = ();
716                         foreach $ptmp (@p) {
717                                 next if $ptmp =~ /^!?RSAREF$/;
718                                 push @p_purged, $ptmp;
719                         }
720                         my $negatives = !!grep(/^!/,@p);
721                         # It is very important to check NT before W32
722                         if ((($NT && (!@p_purged
723                                       || (!$negatives && grep(/^WINNT$/,@p))
724                                       || ($negatives && !grep(/^!WINNT$/,@p))))
725                              || ($W32 && (!@p_purged
726                                           || (!$negatives && grep(/^WIN32$/,@p))
727                                           || ($negatives && !grep(/^!WIN32$/,@p))))
728                              || ($W16 && (!@p_purged
729                                           || (!$negatives && grep(/^WIN16$/,@p))
730                                           || ($negatives && !grep(/^!WIN16$/,@p)))))
731                             && (!@p
732                                 || (!$negatives
733                                     && ($rsaref || !grep(/^RSAREF$/,@p)))
734                                 || ($negatives
735                                     && (!$rsaref || !grep(/^!RSAREF$/,@p))))
736                             && (!@a || (!$no_rc2 || !grep(/^RC2$/,@a)))
737                             && (!@a || (!$no_rc4 || !grep(/^RC4$/,@a)))
738                             && (!@a || (!$no_rc5 || !grep(/^RC5$/,@a)))
739                             && (!@a || (!$no_idea || !grep(/^IDEA$/,@a)))
740                             && (!@a || (!$no_des || !grep(/^DES$/,@a)))
741                             && (!@a || (!$no_bf || !grep(/^BF$/,@a)))
742                             && (!@a || (!$no_cast || !grep(/^CAST$/,@a)))
743                             && (!@a || (!$no_md2 || !grep(/^MD2$/,@a)))
744                             && (!@a || (!$no_md4 || !grep(/^MD4$/,@a)))
745                             && (!@a || (!$no_md5 || !grep(/^MD5$/,@a)))
746                             && (!@a || (!$no_sha || !grep(/^SHA$/,@a)))
747                             && (!@a || (!$no_ripemd || !grep(/^RIPEMD$/,@a)))
748                             && (!@a || (!$no_mdc2 || !grep(/^MDC2$/,@a)))
749                             && (!@a || (!$no_rsa || !grep(/^RSA$/,@a)))
750                             && (!@a || (!$no_dsa || !grep(/^DSA$/,@a)))
751                             && (!@a || (!$no_dh || !grep(/^DH$/,@a)))
752                             && (!@a || (!$no_hmac || !grep(/^HMAC$/,@a)))
753                             && (!@a || (!$no_rijndael || !grep(/^RIJNDAEL$/,@a)))
754                             && (!@a || (!$no_fp_api || !grep(/^FP_API$/,@a)))
755                             ) {
756                                 printf OUT "    %s%-40s@%d\n",($W32)?"":"_",$s,$n;
757 #                       } else {
758 #                               print STDERR "DEBUG: \"$sym\" (@p):",
759 #                               " rsaref:", !!(!@p
760 #                                              || (!$negatives
761 #                                                  && ($rsaref || !grep(/^RSAREF$/,@p)))
762 #                                              || ($negatives
763 #                                                  && (!$rsaref || !grep(/^!RSAREF$/,@p))))?1:0,
764 #                               " 16:", !!($W16 && (!@p_purged
765 #                                                   || (!$negatives && grep(/^WIN16$/,@p))
766 #                                                   || ($negatives && !grep(/^!WIN16$/,@p)))),
767 #                               " 32:", !!($W32 && (!@p_purged
768 #                                                   || (!$negatives && grep(/^WIN32$/,@p))
769 #                                                   || ($negatives && !grep(/^!WIN32$/,@p)))),
770 #                               " NT:", !!($NT && (!@p_purged
771 #                                                  || (!$negatives && grep(/^WINNT$/,@p))
772 #                                                  || ($negatives && !grep(/^!WINNT$/,@p)))),
773 #                               "\n";
774                         }
775                 }
776         }
777         printf OUT "\n";
778 }
779
780 sub load_numbers
781 {
782         my($name)=@_;
783         my(@a,%ret);
784
785         $max_num = 0;
786         $num_noinfo = 0;
787         $prev = "";
788
789         open(IN,"<$name") || die "unable to open $name:$!\n";
790         while (<IN>) {
791                 chop;
792                 s/#.*$//;
793                 next if /^\s*$/;
794                 @a=split;
795                 if (defined $ret{$a[0]}) {
796                         print STDERR "Warning: Symbol '",$a[0],"' redefined. old=",$ret{$a[0]},", new=",$a[1],"\n";
797                 }
798                 if ($max_num > $a[1]) {
799                         print STDERR "Warning: Number decreased from ",$max_num," to ",$a[1],"\n";
800                 }
801                 if ($max_num == $a[1]) {
802                         # This is actually perfectly OK
803                         #print STDERR "Warning: Symbol ",$a[0]," has same number as previous ",$prev,": ",$a[1],"\n";
804                 }
805                 if ($#a < 2) {
806                         # Existence will be proven later, in do_defs
807                         $ret{$a[0]}=$a[1];
808                         $num_noinfo++;
809                 } else {
810                         $ret{$a[0]}=$a[1]."\\".$a[2]; # \\ is a special marker
811                 }
812                 $max_num = $a[1] if $a[1] > $max_num;
813                 $prev=$a[0];
814         }
815         if ($num_noinfo) {
816                 print STDERR "Warning: $num_noinfo symbols were without info.";
817                 if ($do_rewrite) {
818                         printf STDERR "  The rewrite will fix this.\n";
819                 } else {
820                         printf STDERR "  You should do a rewrite to fix this.\n";
821                 }
822         }
823         close(IN);
824         return(%ret);
825 }
826
827 sub parse_number
828 {
829         (my $str, my $what) = @_;
830         (my $n, my $i) = split(/\\/,$str);
831         if ($what eq "n") {
832                 return $n;
833         } else {
834                 return $i;
835         }
836 }
837
838 sub rewrite_numbers
839 {
840         (*OUT,$name,*nums,@symbols)=@_;
841         my $thing;
842
843         print STDERR "Rewriting $name\n";
844
845         my @r = grep(/^\w+\\.*?:.*?:\w+\(\w+\)/,@symbols);
846         my $r; my %r; my %rsyms;
847         foreach $r (@r) {
848                 (my $s, my $i) = split /\\/, $r;
849                 my $a = $1 if $i =~ /^.*?:.*?:\w+\((\w+)\)/;
850                 $i =~ s/^(.*?:.*?:\w+)\(\w+\)/$1/;
851                 $r{$a} = $s."\\".$i;
852                 $rsyms{$s} = 1;
853         }
854
855         my @s=sort { &parse_number($nums{$a},"n") <=> &parse_number($nums{$b},"n") } keys %nums;
856         foreach $sym (@s) {
857                 (my $n, my $i) = split /\\/, $nums{$sym};
858                 next if defined($i) && $i =~ /^.*?:.*?:\w+\(\w+\)/;
859                 next if defined($rsyms{$sym});
860                 $i="NOEXIST::FUNCTION:" if !defined($i) || $i eq "";
861                 printf OUT "%s%-40s%d\t%s\n","",$sym,$n,$i;
862                 if (exists $r{$sym}) {
863                         (my $s, $i) = split /\\/,$r{$sym};
864                         printf OUT "%s%-40s%d\t%s\n","",$s,$n,$i;
865                 }
866         }
867 }
868
869 sub update_numbers
870 {
871         (*OUT,$name,*nums,my $start_num, my @symbols)=@_;
872         my $new_syms = 0;
873
874         print STDERR "Updating $name numbers\n";
875
876         my @r = grep(/^\w+\\.*?:.*?:\w+\(\w+\)/,@symbols);
877         my $r; my %r; my %rsyms;
878         foreach $r (@r) {
879                 (my $s, my $i) = split /\\/, $r;
880                 my $a = $1 if $i =~ /^.*?:.*?:\w+\((\w+)\)/;
881                 $i =~ s/^(.*?:.*?:\w+)\(\w+\)/$1/;
882                 $r{$a} = $s."\\".$i;
883                 $rsyms{$s} = 1;
884         }
885
886         foreach $sym (@symbols) {
887                 (my $s, my $i) = $sym =~ /^(.*?)\\(.*)$/;
888                 next if $i =~ /^.*?:.*?:\w+\(\w+\)/;
889                 next if defined($rsyms{$sym});
890                 die "ERROR: Symbol $sym had no info attached to it."
891                     if $i eq "";
892                 if (!exists $nums{$s}) {
893                         $new_syms++;
894                         printf OUT "%s%-40s%d\t%s\n","",$s, ++$start_num,$i;
895                         if (exists $r{$s}) {
896                                 ($s, $i) = split /\\/,$r{$s};
897                                 printf OUT "%s%-40s%d\t%s\n","",$s, $start_num,$i;
898                         }
899                 }
900         }
901         if($new_syms) {
902                 print STDERR "$new_syms New symbols added\n";
903         } else {
904                 print STDERR "No New symbols Added\n";
905         }
906 }
907
908 sub check_existing
909 {
910         (*nums, my @symbols)=@_;
911         my %existing; my @remaining;
912         @remaining=();
913         foreach $sym (@symbols) {
914                 (my $s, my $i) = $sym =~ /^(.*?)\\(.*)$/;
915                 $existing{$s}=1;
916         }
917         foreach $sym (keys %nums) {
918                 if (!exists $existing{$sym}) {
919                         push @remaining, $sym;
920                 }
921         }
922         if(@remaining) {
923                 print STDERR "The following symbols do not seem to exist:\n";
924                 foreach $sym (@remaining) {
925                         print STDERR "\t",$sym,"\n";
926                 }
927         }
928 }
929