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