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