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