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