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