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