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