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