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