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