Implement new multi-threading API
[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    vers    info
12 #
13 # The "nnnn" and "vers" fields are the numeric id and version for the symbol
14 # respectively. The "info" part is actually a colon-separated string of fields
15 # with the following meaning:
16 #
17 #       existence:platform:kind:algorithms
18 #
19 # - "existence" can be "EXIST" or "NOEXIST" depending on if the symbol is
20 #   found somewhere in the source, 
21 # - "platforms" is empty if it exists on all platforms, otherwise it contains
22 #   comma-separated list of the platform, just as they are if the symbol exists
23 #   for those platforms, or prepended with a "!" if not.  This helps resolve
24 #   symbol name variants for platforms where the names are too long for the
25 #   compiler or linker, or if the systems is case insensitive and there is a
26 #   clash, or the symbol is implemented differently (see
27 #   EXPORT_VAR_AS_FUNCTION).  This script assumes renaming of symbols is found
28 #   in the file crypto/symhacks.h.
29 #   The semantics for the platforms is that every item is checked against the
30 #   environment.  For the negative items ("!FOO"), if any of them is false
31 #   (i.e. "FOO" is true) in the environment, the corresponding symbol can't be
32 #   used.  For the positive itms, if all of them are false in the environment,
33 #   the corresponding symbol can't be used.  Any combination of positive and
34 #   negative items are possible, and of course leave room for some redundancy.
35 # - "kind" is "FUNCTION" or "VARIABLE".  The meaning of that is obvious.
36 # - "algorithms" is a comma-separated list of algorithm names.  This helps
37 #   exclude symbols that are part of an algorithm that some user wants to
38 #   exclude.
39 #
40
41 use lib ".";
42 use configdata;
43 use File::Spec::Functions;
44
45 my $debug=0;
46
47 my $crypto_num= catfile($config{sourcedir},"util","libeay.num");
48 my $ssl_num=    catfile($config{sourcedir},"util","ssleay.num");
49 my $libname;
50
51 my $do_update = 0;
52 my $do_rewrite = 1;
53 my $do_crypto = 0;
54 my $do_ssl = 0;
55 my $do_ctest = 0;
56 my $do_ctestall = 0;
57 my $do_checkexist = 0;
58
59 my $VMSVAX=0;
60 my $VMSNonVAX=0;
61 my $VMS=0;
62 my $W32=0;
63 my $NT=0;
64 my $OS2=0;
65 my $linux=0;
66 # Set this to make typesafe STACK definitions appear in DEF
67 my $safe_stack_def = 0;
68
69 my @known_platforms = ( "__FreeBSD__", "PERL5",
70                         "EXPORT_VAR_AS_FUNCTION", "ZLIB"
71                         );
72 my @known_ossl_platforms = ( "VMS", "WIN32", "WINNT", "OS2" );
73 my @known_algorithms = ( "RC2", "RC4", "RC5", "IDEA", "DES", "BF",
74                          "CAST", "MD2", "MD4", "MD5", "SHA", "SHA0", "SHA1",
75                          "SHA256", "SHA512", "RMD160",
76                          "MDC2", "WHIRLPOOL", "RSA", "DSA", "DH", "EC", "EC2M",
77                          "HMAC", "AES", "CAMELLIA", "SEED", "GOST",
78                          "SCRYPT", "CHACHA", "POLY1305",
79                          # EC_NISTP_64_GCC_128
80                          "EC_NISTP_64_GCC_128",
81                          # Envelope "algorithms"
82                          "EVP", "X509", "ASN1_TYPEDEFS",
83                          # Helper "algorithms"
84                          "BIO", "COMP", "BUFFER", "LHASH", "STACK", "ERR",
85                          "LOCKING",
86                          # External "algorithms"
87                          "FP_API", "STDIO", "SOCK", "DGRAM",
88                          "CRYPTO_MDEBUG",
89                          # Engines
90                          "STATIC_ENGINE", "ENGINE", "HW", "GMP",
91                          # Entropy Gathering
92                          "EGD",
93                          # X.509v3 Signed Certificate Timestamps
94                          "SCT",
95                          # RFC3779
96                          "RFC3779",
97                          # TLS
98                          "PSK", "SRP", "HEARTBEATS",
99                          # CMS
100                          "CMS",
101                          # CryptoAPI Engine
102                          "CAPIENG",
103                          # SSL v3 method
104                          "SSL3_METHOD",
105                          # NEXTPROTONEG
106                          "NEXTPROTONEG",
107                          # Deprecated functions
108                          "DEPRECATEDIN_0_9_8",
109                          "DEPRECATEDIN_1_0_0",
110                          "DEPRECATEDIN_1_1_0",
111                          # SCTP
112                          "SCTP",
113                          # SRTP
114                          "SRTP",
115                          # SSL TRACE
116                          "SSL_TRACE",
117                          # Unit testing
118                          "UNIT_TEST",
119                          # OCB mode
120                          "OCB",
121                          # APPLINK (win build feature?)
122                          "APPLINK"
123                      );
124
125 my %disabled_algorithms;
126
127 foreach (@known_algorithms) {
128     $disabled_algorithms{$_} = 0;
129 }
130 # disabled by default
131 $disabled_algorithms{"STATIC_ENGINE"} = 1;
132
133 my $zlib;
134
135 foreach (@ARGV, split(/ /, $config{options}))
136         {
137         $debug=1 if $_ eq "debug";
138         $W32=1 if $_ eq "32";
139         die "win16 not supported" if $_ eq "16";
140         if($_ eq "NT") {
141                 $W32 = 1;
142                 $NT = 1;
143         }
144         if ($_ eq "VMS-VAX") {
145                 $VMS=1;
146                 $VMSVAX=1;
147         }
148         if ($_ eq "VMS-NonVAX") {
149                 $VMS=1;
150                 $VMSNonVAX=1;
151         }
152         if ($_ eq "linux") {
153                 $linux=1;
154         }
155         $VMS=$VMSNonVAX=1 if $_ eq "VMS";
156         $OS2=1 if $_ eq "OS2";
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         $do_update=1 if $_ eq "update";
173         $do_rewrite=1 if $_ eq "rewrite";
174         $do_ctest=1 if $_ eq "ctest";
175         $do_ctestall=1 if $_ eq "ctestall";
176         $do_checkexist=1 if $_ eq "exist";
177         if (/^--api=(\d+)\.(\d+)\.(\d+)$/) {
178                 my $apiv = sprintf "%x%02x%02x", $1, $2, $3;
179                 foreach (keys %disabled_algorithms) {
180                         if (/^DEPRECATEDIN_(\d+)_(\d+)_(\d+)$/) {
181                                 my $depv = sprintf "%x%02x%02x", $1, $2, $3;
182                                 $disabled_algorithms{$_} = 1 if $apiv ge $depv;
183                         }
184                 }
185         }
186         if (/^no-deprecated$/) {
187                 foreach (keys %disabled_algorithms) {
188                         if (/^DEPRECATEDIN_/) {
189                                 $disabled_algorithms{$_} = 1;
190                         }
191                 }
192         }
193         elsif (/^(enable|disable|no)-(.*)$/) {
194                 my $alg = uc $2;
195         $alg =~ tr/-/_/;
196                 if (exists $disabled_algorithms{$alg}) {
197                         $disabled_algorithms{$alg} = $1 eq "enable" ? 0 : 1;
198                 }
199         }
200
201         }
202
203 if (!$libname) { 
204         if ($do_ssl) {
205                 $libname="SSLEAY";
206         }
207         if ($do_crypto) {
208                 $libname="LIBEAY";
209         }
210 }
211
212 # If no platform is given, assume WIN32
213 if ($W32 + $VMS + $OS2 + $linux == 0) {
214         $W32 = 1;
215 }
216 die "Please, only one platform at a time"
217     if ($W32 + $VMS + $OS2 + $linux > 1);
218
219 if (!$do_ssl && !$do_crypto)
220         {
221         print STDERR "usage: $0 ( ssl | crypto ) [ 16 | 32 | NT | OS2 | linux | VMS ]\n";
222         exit(1);
223         }
224
225 %ssl_list=&load_numbers($ssl_num);
226 $max_ssl = $max_num;
227 %crypto_list=&load_numbers($crypto_num);
228 $max_crypto = $max_num;
229
230 my $ssl="include/openssl/ssl.h";
231 $ssl.=" include/openssl/tls1.h";
232 $ssl.=" include/openssl/srtp.h";
233
234 # We use headers found in include/openssl and include/internal only.
235 # The latter is needed so libssl.so/.dll/.exe can link properly.
236 my $crypto ="include/openssl/crypto.h";
237 $crypto.=" include/internal/o_dir.h";
238 $crypto.=" include/internal/o_str.h";
239 $crypto.=" include/internal/threads.h";
240 $crypto.=" include/openssl/des.h" ; # unless $no_des;
241 $crypto.=" include/openssl/idea.h" ; # unless $no_idea;
242 $crypto.=" include/openssl/rc4.h" ; # unless $no_rc4;
243 $crypto.=" include/openssl/rc5.h" ; # unless $no_rc5;
244 $crypto.=" include/openssl/rc2.h" ; # unless $no_rc2;
245 $crypto.=" include/openssl/blowfish.h" ; # unless $no_bf;
246 $crypto.=" include/openssl/cast.h" ; # unless $no_cast;
247 $crypto.=" include/openssl/whrlpool.h" ;
248 $crypto.=" include/openssl/md2.h" ; # unless $no_md2;
249 $crypto.=" include/openssl/md4.h" ; # unless $no_md4;
250 $crypto.=" include/openssl/md5.h" ; # unless $no_md5;
251 $crypto.=" include/openssl/mdc2.h" ; # unless $no_mdc2;
252 $crypto.=" include/openssl/sha.h" ; # unless $no_sha;
253 $crypto.=" include/openssl/ripemd.h" ; # unless $no_ripemd;
254 $crypto.=" include/openssl/aes.h" ; # unless $no_aes;
255 $crypto.=" include/openssl/camellia.h" ; # unless $no_camellia;
256 $crypto.=" include/openssl/seed.h"; # unless $no_seed;
257
258 $crypto.=" include/openssl/bn.h";
259 $crypto.=" include/openssl/rsa.h" ; # unless $no_rsa;
260 $crypto.=" include/openssl/dsa.h" ; # unless $no_dsa;
261 $crypto.=" include/openssl/dh.h" ; # unless $no_dh;
262 $crypto.=" include/openssl/ec.h" ; # unless $no_ec;
263 $crypto.=" include/openssl/hmac.h" ; # unless $no_hmac;
264 $crypto.=" include/openssl/cmac.h" ;
265
266 $crypto.=" include/openssl/engine.h"; # unless $no_engine;
267 $crypto.=" include/openssl/stack.h" ; # unless $no_stack;
268 $crypto.=" include/openssl/buffer.h" ; # unless $no_buffer;
269 $crypto.=" include/openssl/bio.h" ; # unless $no_bio;
270 $crypto.=" include/openssl/dso.h" ; # unless $no_dso;
271 $crypto.=" include/openssl/lhash.h" ; # unless $no_lhash;
272 $crypto.=" include/openssl/conf.h";
273 $crypto.=" include/openssl/txt_db.h";
274
275 $crypto.=" include/openssl/evp.h" ; # unless $no_evp;
276 $crypto.=" include/openssl/objects.h";
277 $crypto.=" include/openssl/pem.h";
278 #$crypto.=" include/openssl/meth.h";
279 $crypto.=" include/openssl/asn1.h";
280 $crypto.=" include/openssl/asn1t.h";
281 $crypto.=" include/openssl/err.h" ; # unless $no_err;
282 $crypto.=" include/openssl/pkcs7.h";
283 $crypto.=" include/openssl/pkcs12.h";
284 $crypto.=" include/openssl/x509.h";
285 $crypto.=" include/openssl/x509_vfy.h";
286 $crypto.=" include/openssl/x509v3.h";
287 $crypto.=" include/openssl/ts.h";
288 $crypto.=" include/openssl/rand.h";
289 $crypto.=" include/openssl/comp.h" ; # unless $no_comp;
290 $crypto.=" include/openssl/ocsp.h";
291 $crypto.=" include/openssl/ui.h";
292 #$crypto.=" include/openssl/store.h";
293 $crypto.=" include/openssl/cms.h";
294 $crypto.=" include/openssl/srp.h";
295 $crypto.=" include/openssl/modes.h";
296 $crypto.=" include/openssl/async.h";
297
298 my $symhacks="include/openssl/symhacks.h";
299
300 my @ssl_symbols = &do_defs("SSLEAY", $ssl, $symhacks);
301 my @crypto_symbols = &do_defs("LIBEAY", $crypto, $symhacks);
302
303 if ($do_update) {
304
305 if ($do_ssl == 1) {
306
307         &maybe_add_info("SSLEAY",*ssl_list,@ssl_symbols);
308         if ($do_rewrite == 1) {
309                 open(OUT, ">$ssl_num");
310                 &rewrite_numbers(*OUT,"SSLEAY",*ssl_list,@ssl_symbols);
311         } else {
312                 open(OUT, ">>$ssl_num");
313         }
314         &update_numbers(*OUT,"SSLEAY",*ssl_list,$max_ssl,@ssl_symbols);
315         close OUT;
316 }
317
318 if($do_crypto == 1) {
319
320         &maybe_add_info("LIBEAY",*crypto_list,@crypto_symbols);
321         if ($do_rewrite == 1) {
322                 open(OUT, ">$crypto_num");
323                 &rewrite_numbers(*OUT,"LIBEAY",*crypto_list,@crypto_symbols);
324         } else {
325                 open(OUT, ">>$crypto_num");
326         }
327         &update_numbers(*OUT,"LIBEAY",*crypto_list,$max_crypto,@crypto_symbols);
328         close OUT;
329
330
331 } elsif ($do_checkexist) {
332         &check_existing(*ssl_list, @ssl_symbols)
333                 if $do_ssl == 1;
334         &check_existing(*crypto_list, @crypto_symbols)
335                 if $do_crypto == 1;
336 } elsif ($do_ctest || $do_ctestall) {
337
338         print <<"EOF";
339
340 /* Test file to check all DEF file symbols are present by trying
341  * to link to all of them. This is *not* intended to be run!
342  */
343
344 int main()
345 {
346 EOF
347         &print_test_file(*STDOUT,"SSLEAY",*ssl_list,$do_ctestall,@ssl_symbols)
348                 if $do_ssl == 1;
349
350         &print_test_file(*STDOUT,"LIBEAY",*crypto_list,$do_ctestall,@crypto_symbols)
351                 if $do_crypto == 1;
352
353         print "}\n";
354
355 } else {
356
357         &print_def_file(*STDOUT,$libname,*ssl_list,@ssl_symbols)
358                 if $do_ssl == 1;
359
360         &print_def_file(*STDOUT,$libname,*crypto_list,@crypto_symbols)
361                 if $do_crypto == 1;
362
363 }
364
365
366 sub do_defs
367 {
368         my($name,$files,$symhacksfile)=@_;
369         my $file;
370         my @ret;
371         my %syms;
372         my %platform;           # For anything undefined, we assume ""
373         my %kind;               # For anything undefined, we assume "FUNCTION"
374         my %algorithm;          # For anything undefined, we assume ""
375         my %variant;
376         my %variant_cnt;        # To be able to allocate "name{n}" if "name"
377                                 # is the same name as the original.
378         my $cpp;
379         my %unknown_algorithms = ();
380         my $parens = 0;
381
382         foreach $file (split(/\s+/,$symhacksfile." ".$files))
383                 {
384                 my $fn = catfile($config{sourcedir},$file);
385                 print STDERR "DEBUG: starting on $fn:\n" if $debug;
386                 open(IN,"<$fn") || die "unable to open $fn:$!\n";
387                 my $line = "", my $def= "";
388                 my %tag = (
389                         (map { $_ => 0 } @known_platforms),
390                         (map { "OPENSSL_SYS_".$_ => 0 } @known_ossl_platforms),
391                         (map { "OPENSSL_NO_".$_ => 0 } @known_algorithms),
392                         (map { "OPENSSL_USE_".$_ => 0 } @known_algorithms),
393                         NOPROTO         => 0,
394                         PERL5           => 0,
395                         _WINDLL         => 0,
396                         CONST_STRICT    => 0,
397                         TRUE            => 1,
398                 );
399                 my $symhacking = $file eq $symhacksfile;
400                 my @current_platforms = ();
401                 my @current_algorithms = ();
402
403                 # params: symbol, alias, platforms, kind
404                 # The reason to put this subroutine in a variable is that
405                 # it will otherwise create it's own, unshared, version of
406                 # %tag and %variant...
407                 my $make_variant = sub
408                 {
409                         my ($s, $a, $p, $k) = @_;
410                         my ($a1, $a2);
411
412                         print STDERR "DEBUG: make_variant: Entered with ",$s,", ",$a,", ",(defined($p)?$p:""),", ",(defined($k)?$k:""),"\n" if $debug;
413                         if (defined($p))
414                         {
415                                 $a1 = join(",",$p,
416                                            grep(!/^$/,
417                                                 map { $tag{$_} == 1 ? $_ : "" }
418                                                 @known_platforms));
419                         }
420                         else
421                         {
422                                 $a1 = join(",",
423                                            grep(!/^$/,
424                                                 map { $tag{$_} == 1 ? $_ : "" }
425                                                 @known_platforms));
426                         }
427                         $a2 = join(",",
428                                    grep(!/^$/,
429                                         map { $tag{"OPENSSL_SYS_".$_} == 1 ? $_ : "" }
430                                         @known_ossl_platforms));
431                         print STDERR "DEBUG: make_variant: a1 = $a1; a2 = $a2\n" if $debug;
432                         if ($a1 eq "") { $a1 = $a2; }
433                         elsif ($a1 ne "" && $a2 ne "") { $a1 .= ",".$a2; }
434                         if ($a eq $s)
435                         {
436                                 if (!defined($variant_cnt{$s}))
437                                 {
438                                         $variant_cnt{$s} = 0;
439                                 }
440                                 $variant_cnt{$s}++;
441                                 $a .= "{$variant_cnt{$s}}";
442                         }
443                         my $toadd = $a.":".$a1.(defined($k)?":".$k:"");
444                         my $togrep = $s.'(\{[0-9]+\})?:'.$a1.(defined($k)?":".$k:"");
445                         if (!grep(/^$togrep$/,
446                                   split(/;/, defined($variant{$s})?$variant{$s}:""))) {
447                                 if (defined($variant{$s})) { $variant{$s} .= ";"; }
448                                 $variant{$s} .= $toadd;
449                         }
450                         print STDERR "DEBUG: make_variant: Exit with variant of ",$s," = ",$variant{$s},"\n" if $debug;
451                 };
452
453                 print STDERR "DEBUG: parsing ----------\n" if $debug;
454                 while(<IN>) {
455                         if($parens > 0) {
456                                 #Inside a DEPRECATEDIN
457                                 $stored_multiline .= $_;
458                                 $stored_multiline =~ s|\R$||; # Better chomp
459                                 print STDERR "DEBUG: Continuing multiline DEPRECATEDIN: $stored_multiline\n" if $debug;
460                                 $parens = count_parens($stored_multiline);
461                                 if ($parens == 0) {
462                                         $def .= do_deprecated($stored_multiline,
463                                                         \@current_platforms,
464                                                         \@current_algorithms);
465                                 }
466                                 next;
467                         }
468                         if (/\/\* Error codes for the \w+ functions\. \*\//)
469                                 {
470                                 undef @tag;
471                                 last;
472                                 }
473                         if ($line ne '') {
474                                 $_ = $line . $_;
475                                 $line = '';
476                         }
477
478                         if (/\\$/) {
479                                 $line = $`; # keep what was before the backslash
480                                 next;
481                         }
482
483                         if(/\/\*/) {
484                                 if (not /\*\//) {       # multiline comment...
485                                         $line = $_;     # ... just accumulate
486                                         next;
487                                 } else {
488                                         s/\/\*.*?\*\///gs;# wipe it
489                                 }
490                         }
491
492                         if ($cpp) {
493                                 $cpp++ if /^#\s*if/;
494                                 $cpp-- if /^#\s*endif/;
495                                 next;
496                         }
497                         $cpp = 1 if /^#.*ifdef.*cplusplus/;
498
499                         s/{[^{}]*}//gs;                      # ignore {} blocks
500                         print STDERR "DEBUG: \$def=\"$def\"\n" if $debug && $def ne "";
501                         print STDERR "DEBUG: \$_=\"$_\"\n" if $debug;
502                         if (/^\#\s*ifndef\s+(.*)/) {
503                                 push(@tag,"-");
504                                 push(@tag,$1);
505                                 $tag{$1}=-1;
506                                 print STDERR "DEBUG: $file: found tag $1 = -1\n" if $debug;
507                         } elsif (/^\#\s*if\s+!defined\(([^\)]+)\)/) {
508                                 push(@tag,"-");
509                                 if (/^\#\s*if\s+(!defined\(([^\)]+)\)(\s+\&\&\s+!defined\(([^\)]+)\))*)$/) {
510                                         my $tmp_1 = $1;
511                                         my $tmp_;
512                                         foreach $tmp_ (split '\&\&',$tmp_1) {
513                                                 $tmp_ =~ /!defined\(([^\)]+)\)/;
514                                                 print STDERR "DEBUG: $file: found tag $1 = -1\n" if $debug;
515                                                 push(@tag,$1);
516                                                 $tag{$1}=-1;
517                                         }
518                                 } else {
519                                         print STDERR "Warning: $file: complicated expression: $_" if $debug; # because it is O...
520                                         print STDERR "DEBUG: $file: found tag $1 = -1\n" if $debug;
521                                         push(@tag,$1);
522                                         $tag{$1}=-1;
523                                 }
524                         } elsif (/^\#\s*ifdef\s+(\S*)/) {
525                                 push(@tag,"-");
526                                 push(@tag,$1);
527                                 $tag{$1}=1;
528                                 print STDERR "DEBUG: $file: found tag $1 = 1\n" if $debug;
529                         } elsif (/^\#\s*if\s+defined\(([^\)]+)\)/) {
530                                 push(@tag,"-");
531                                 if (/^\#\s*if\s+(defined\(([^\)]+)\)(\s+\|\|\s+defined\(([^\)]+)\))*)$/) {
532                                         my $tmp_1 = $1;
533                                         my $tmp_;
534                                         foreach $tmp_ (split '\|\|',$tmp_1) {
535                                                 $tmp_ =~ /defined\(([^\)]+)\)/;
536                                                 print STDERR "DEBUG: $file: found tag $1 = 1\n" if $debug;
537                                                 push(@tag,$1);
538                                                 $tag{$1}=1;
539                                         }
540                                 } else {
541                                         print STDERR "Warning: $file: complicated expression: $_\n" if $debug; # because it is O...
542                                         print STDERR "DEBUG: $file: found tag $1 = 1\n" if $debug;
543                                         push(@tag,$1);
544                                         $tag{$1}=1;
545                                 }
546                         } elsif (/^\#\s*error\s+(\w+) is disabled\./) {
547                                 my $tag_i = $#tag;
548                                 while($tag[$tag_i] ne "-") {
549                                         if ($tag[$tag_i] eq "OPENSSL_NO_".$1) {
550                                                 $tag{$tag[$tag_i]}=2;
551                                                 print STDERR "DEBUG: $file: chaged tag $1 = 2\n" if $debug;
552                                         }
553                                         $tag_i--;
554                                 }
555                         } elsif (/^\#\s*endif/) {
556                                 my $tag_i = $#tag;
557                                 while($tag_i > 0 && $tag[$tag_i] ne "-") {
558                                         my $t=$tag[$tag_i];
559                                         print STDERR "DEBUG: \$t=\"$t\"\n" if $debug;
560                                         if ($tag{$t}==2) {
561                                                 $tag{$t}=-1;
562                                         } else {
563                                                 $tag{$t}=0;
564                                         }
565                                         print STDERR "DEBUG: $file: changed tag ",$t," = ",$tag{$t},"\n" if $debug;
566                                         pop(@tag);
567                                         if ($t =~ /^OPENSSL_NO_([A-Z0-9_]+)$/) {
568                                                 $t=$1;
569                                         } elsif($t =~ /^OPENSSL_USE_([A-Z0-9_]+)$/) {
570                                                 $t=$1;
571                                         } else {
572                                                 $t="";
573                                         }
574                                         if ($t ne ""
575                                             && !grep(/^$t$/, @known_algorithms)) {
576                                                 $unknown_algorithms{$t} = 1;
577                                                 #print STDERR "DEBUG: Added as unknown algorithm: $t\n" if $debug;
578                                         }
579                                         $tag_i--;
580                                 }
581                                 pop(@tag);
582                         } elsif (/^\#\s*else/) {
583                                 my $tag_i = $#tag;
584                                 while($tag[$tag_i] ne "-") {
585                                         my $t=$tag[$tag_i];
586                                         $tag{$t}= -$tag{$t};
587                                         print STDERR "DEBUG: $file: changed tag ",$t," = ",$tag{$t},"\n" if $debug;
588                                         $tag_i--;
589                                 }
590                         } elsif (/^\#\s*if\s+1/) {
591                                 push(@tag,"-");
592                                 # Dummy tag
593                                 push(@tag,"TRUE");
594                                 $tag{"TRUE"}=1;
595                                 print STDERR "DEBUG: $file: found 1\n" if $debug;
596                         } elsif (/^\#\s*if\s+0/) {
597                                 push(@tag,"-");
598                                 # Dummy tag
599                                 push(@tag,"TRUE");
600                                 $tag{"TRUE"}=-1;
601                                 print STDERR "DEBUG: $file: found 0\n" if $debug;
602                         } elsif (/^\#\s*define\s+(\w+)\s+(\w+)/
603                                  && $symhacking && $tag{'TRUE'} != -1) {
604                                 # This is for aliasing.  When we find an alias,
605                                 # we have to invert
606                                 &$make_variant($1,$2);
607                                 print STDERR "DEBUG: $file: defined $1 = $2\n" if $debug;
608                         }
609                         if (/^\#/) {
610                                 @current_platforms =
611                                     grep(!/^$/,
612                                          map { $tag{$_} == 1 ? $_ :
613                                                    $tag{$_} == -1 ? "!".$_  : "" }
614                                          @known_platforms);
615                                 push @current_platforms
616                                     , grep(!/^$/,
617                                            map { $tag{"OPENSSL_SYS_".$_} == 1 ? $_ :
618                                                      $tag{"OPENSSL_SYS_".$_} == -1 ? "!".$_  : "" }
619                                            @known_ossl_platforms);
620                                 @current_algorithms = ();
621                                 @current_algorithms =
622                                     grep(!/^$/,
623                                          map { $tag{"OPENSSL_NO_".$_} == -1 ? $_ : "" }
624                                          @known_algorithms);
625                                 push @current_algorithms
626                                     , grep(!/^$/,
627                                          map { $tag{"OPENSSL_USE_".$_} == 1 ? $_ : "" }
628                                          @known_algorithms);
629                                 $def .=
630                                     "#INFO:"
631                                         .join(',',@current_platforms).":"
632                                             .join(',',@current_algorithms).";";
633                                 next;
634                         }
635                         if ($tag{'TRUE'} != -1) {
636                                 if (/^\s*DECLARE_STACK_OF\s*\(\s*(\w*)\s*\)/) {
637                                         next;
638                                 } elsif (/^\s*DECLARE_ASN1_ENCODE_FUNCTIONS\s*\(\s*(\w*)\s*,\s*(\w*)\s*,\s*(\w*)\s*\)/) {
639                                         $def .= "int d2i_$3(void);";
640                                         $def .= "int i2d_$3(void);";
641                                         # Variant for platforms that do not
642                                         # have to access globale variables
643                                         # in shared libraries through functions
644                                         $def .=
645                                             "#INFO:"
646                                                 .join(',',"!EXPORT_VAR_AS_FUNCTION",@current_platforms).":"
647                                                     .join(',',@current_algorithms).";";
648                                         $def .= "OPENSSL_EXTERN int $2_it;";
649                                         $def .=
650                                             "#INFO:"
651                                                 .join(',',@current_platforms).":"
652                                                     .join(',',@current_algorithms).";";
653                                         # Variant for platforms that have to
654                                         # access globale variables in shared
655                                         # libraries through functions
656                                         &$make_variant("$2_it","$2_it",
657                                                       "EXPORT_VAR_AS_FUNCTION",
658                                                       "FUNCTION");
659                                         next;
660                                 } elsif (/^\s*DECLARE_ASN1_FUNCTIONS_fname\s*\(\s*(\w*)\s*,\s*(\w*)\s*,\s*(\w*)\s*\)/) {
661                                         $def .= "int d2i_$3(void);";
662                                         $def .= "int i2d_$3(void);";
663                                         $def .= "int $3_free(void);";
664                                         $def .= "int $3_new(void);";
665                                         # Variant for platforms that do not
666                                         # have to access globale variables
667                                         # in shared libraries through functions
668                                         $def .=
669                                             "#INFO:"
670                                                 .join(',',"!EXPORT_VAR_AS_FUNCTION",@current_platforms).":"
671                                                     .join(',',@current_algorithms).";";
672                                         $def .= "OPENSSL_EXTERN int $2_it;";
673                                         $def .=
674                                             "#INFO:"
675                                                 .join(',',@current_platforms).":"
676                                                     .join(',',@current_algorithms).";";
677                                         # Variant for platforms that have to
678                                         # access globale variables in shared
679                                         # libraries through functions
680                                         &$make_variant("$2_it","$2_it",
681                                                       "EXPORT_VAR_AS_FUNCTION",
682                                                       "FUNCTION");
683                                         next;
684                                 } elsif (/^\s*DECLARE_ASN1_FUNCTIONS\s*\(\s*(\w*)\s*\)/ ||
685                                          /^\s*DECLARE_ASN1_FUNCTIONS_const\s*\(\s*(\w*)\s*\)/) {
686                                         $def .= "int d2i_$1(void);";
687                                         $def .= "int i2d_$1(void);";
688                                         $def .= "int $1_free(void);";
689                                         $def .= "int $1_new(void);";
690                                         # Variant for platforms that do not
691                                         # have to access globale variables
692                                         # in shared libraries through functions
693                                         $def .=
694                                             "#INFO:"
695                                                 .join(',',"!EXPORT_VAR_AS_FUNCTION",@current_platforms).":"
696                                                     .join(',',@current_algorithms).";";
697                                         $def .= "OPENSSL_EXTERN int $1_it;";
698                                         $def .=
699                                             "#INFO:"
700                                                 .join(',',@current_platforms).":"
701                                                     .join(',',@current_algorithms).";";
702                                         # Variant for platforms that have to
703                                         # access globale variables in shared
704                                         # libraries through functions
705                                         &$make_variant("$1_it","$1_it",
706                                                       "EXPORT_VAR_AS_FUNCTION",
707                                                       "FUNCTION");
708                                         next;
709                                 } elsif (/^\s*DECLARE_ASN1_ENCODE_FUNCTIONS_const\s*\(\s*(\w*)\s*,\s*(\w*)\s*\)/) {
710                                         $def .= "int d2i_$2(void);";
711                                         $def .= "int i2d_$2(void);";
712                                         # Variant for platforms that do not
713                                         # have to access globale variables
714                                         # in shared libraries through functions
715                                         $def .=
716                                             "#INFO:"
717                                                 .join(',',"!EXPORT_VAR_AS_FUNCTION",@current_platforms).":"
718                                                     .join(',',@current_algorithms).";";
719                                         $def .= "OPENSSL_EXTERN int $2_it;";
720                                         $def .=
721                                             "#INFO:"
722                                                 .join(',',@current_platforms).":"
723                                                     .join(',',@current_algorithms).";";
724                                         # Variant for platforms that have to
725                                         # access globale variables in shared
726                                         # libraries through functions
727                                         &$make_variant("$2_it","$2_it",
728                                                       "EXPORT_VAR_AS_FUNCTION",
729                                                       "FUNCTION");
730                                         next;
731                                 } elsif (/^\s*DECLARE_ASN1_ALLOC_FUNCTIONS\s*\(\s*(\w*)\s*\)/) {
732                                         $def .= "int $1_free(void);";
733                                         $def .= "int $1_new(void);";
734                                         next;
735                                 } elsif (/^\s*DECLARE_ASN1_FUNCTIONS_name\s*\(\s*(\w*)\s*,\s*(\w*)\s*\)/) {
736                                         $def .= "int d2i_$2(void);";
737                                         $def .= "int i2d_$2(void);";
738                                         $def .= "int $2_free(void);";
739                                         $def .= "int $2_new(void);";
740                                         # Variant for platforms that do not
741                                         # have to access globale variables
742                                         # in shared libraries through functions
743                                         $def .=
744                                             "#INFO:"
745                                                 .join(',',"!EXPORT_VAR_AS_FUNCTION",@current_platforms).":"
746                                                     .join(',',@current_algorithms).";";
747                                         $def .= "OPENSSL_EXTERN int $2_it;";
748                                         $def .=
749                                             "#INFO:"
750                                                 .join(',',@current_platforms).":"
751                                                     .join(',',@current_algorithms).";";
752                                         # Variant for platforms that have to
753                                         # access globale variables in shared
754                                         # libraries through functions
755                                         &$make_variant("$2_it","$2_it",
756                                                       "EXPORT_VAR_AS_FUNCTION",
757                                                       "FUNCTION");
758                                         next;
759                                 } elsif (/^\s*DECLARE_ASN1_ITEM\s*\(\s*(\w*)\s*\)/) {
760                                         # Variant for platforms that do not
761                                         # have to access globale variables
762                                         # in shared libraries through functions
763                                         $def .=
764                                             "#INFO:"
765                                                 .join(',',"!EXPORT_VAR_AS_FUNCTION",@current_platforms).":"
766                                                     .join(',',@current_algorithms).";";
767                                         $def .= "OPENSSL_EXTERN int $1_it;";
768                                         $def .=
769                                             "#INFO:"
770                                                 .join(',',@current_platforms).":"
771                                                     .join(',',@current_algorithms).";";
772                                         # Variant for platforms that have to
773                                         # access globale variables in shared
774                                         # libraries through functions
775                                         &$make_variant("$1_it","$1_it",
776                                                       "EXPORT_VAR_AS_FUNCTION",
777                                                       "FUNCTION");
778                                         next;
779                                 } elsif (/^\s*DECLARE_ASN1_NDEF_FUNCTION\s*\(\s*(\w*)\s*\)/) {
780                                         $def .= "int i2d_$1_NDEF(void);";
781                                 } elsif (/^\s*DECLARE_ASN1_SET_OF\s*\(\s*(\w*)\s*\)/) {
782                                         next;
783                                 } elsif (/^\s*DECLARE_ASN1_PRINT_FUNCTION\s*\(\s*(\w*)\s*\)/) {
784                                         $def .= "int $1_print_ctx(void);";
785                                         next;
786                                 } elsif (/^\s*DECLARE_ASN1_PRINT_FUNCTION_name\s*\(\s*(\w*)\s*,\s*(\w*)\s*\)/) {
787                                         $def .= "int $2_print_ctx(void);";
788                                         next;
789                                 } elsif (/^\s*DECLARE_PKCS12_STACK_OF\s*\(\s*(\w*)\s*\)/) {
790                                         next;
791                                 } elsif (/^DECLARE_PEM_rw\s*\(\s*(\w*)\s*,/ ||
792                                          /^DECLARE_PEM_rw_cb\s*\(\s*(\w*)\s*,/ ||
793                                          /^DECLARE_PEM_rw_const\s*\(\s*(\w*)\s*,/ ) {
794                                         $def .=
795                                             "#INFO:"
796                                                 .join(',',@current_platforms).":"
797                                                     .join(',',@current_algorithms).";";
798                                         $def .= "int PEM_read_$1(void);";
799                                         $def .= "int PEM_write_$1(void);";
800                                         $def .=
801                                             "#INFO:"
802                                                 .join(',',@current_platforms).":"
803                                                     .join(',',@current_algorithms).";";
804                                         # Things that are everywhere
805                                         $def .= "int PEM_read_bio_$1(void);";
806                                         $def .= "int PEM_write_bio_$1(void);";
807                                         next;
808                                 } elsif (/^DECLARE_PEM_write\s*\(\s*(\w*)\s*,/ ||
809                                         /^DECLARE_PEM_write_const\s*\(\s*(\w*)\s*,/ ||
810                                          /^DECLARE_PEM_write_cb\s*\(\s*(\w*)\s*,/ ) {
811                                         $def .=
812                                             "#INFO:"
813                                                 .join(',',@current_platforms).":"
814                                                     .join(',',@current_algorithms).";";
815                                         $def .= "int PEM_write_$1(void);";
816                                         $def .=
817                                             "#INFO:"
818                                                 .join(',',@current_platforms).":"
819                                                     .join(',',@current_algorithms).";";
820                                         # Things that are everywhere
821                                         $def .= "int PEM_write_bio_$1(void);";
822                                         next;
823                                 } elsif (/^DECLARE_PEM_read\s*\(\s*(\w*)\s*,/ ||
824                                          /^DECLARE_PEM_read_cb\s*\(\s*(\w*)\s*,/ ) {
825                                         $def .=
826                                             "#INFO:"
827                                                 .join(',',@current_platforms).":"
828                                                     .join(',',@current_algorithms).";";
829                                         $def .= "int PEM_read_$1(void);";
830                                         $def .=
831                                             "#INFO:"
832                                                 .join(',',@current_platforms).":"
833                                                     .join(',',@current_algorithms).";";
834                                         # Things that are everywhere
835                                         $def .= "int PEM_read_bio_$1(void);";
836                                         next;
837                                 } elsif (/^OPENSSL_DECLARE_GLOBAL\s*\(\s*(\w*)\s*,\s*(\w*)\s*\)/) {
838                                         # Variant for platforms that do not
839                                         # have to access globale variables
840                                         # in shared libraries through functions
841                                         $def .=
842                                             "#INFO:"
843                                                 .join(',',"!EXPORT_VAR_AS_FUNCTION",@current_platforms).":"
844                                                     .join(',',@current_algorithms).";";
845                                         $def .= "OPENSSL_EXTERN int _shadow_$2;";
846                                         $def .=
847                                             "#INFO:"
848                                                 .join(',',@current_platforms).":"
849                                                     .join(',',@current_algorithms).";";
850                                         # Variant for platforms that have to
851                                         # access globale variables in shared
852                                         # libraries through functions
853                                         &$make_variant("_shadow_$2","_shadow_$2",
854                                                       "EXPORT_VAR_AS_FUNCTION",
855                                                       "FUNCTION");
856                                 } elsif (/^\s*DEPRECATEDIN/) {
857                                         $parens = count_parens($_);
858                                         if ($parens == 0) {
859                                                 $def .= do_deprecated($_,
860                                                         \@current_platforms,
861                                                         \@current_algorithms);
862                                         } else {
863                                                 $stored_multiline = $_;
864                                                 $stored_multiline =~ s|\R$||;
865                                                 print STDERR "DEBUG: Found multiline DEPRECATEDIN starting with: $stored_multiline\n" if $debug;
866                                                 next;
867                                         }
868                                 } elsif ($tag{'CONST_STRICT'} != 1) {
869                                         if (/\{|\/\*|\([^\)]*$/) {
870                                                 $line = $_;
871                                         } else {
872                                                 $def .= $_;
873                                         }
874                                 }
875                         }
876                 }
877                 close(IN);
878
879                 my $algs;
880                 my $plays;
881
882                 print STDERR "DEBUG: postprocessing ----------\n" if $debug;
883                 foreach (split /;/, $def) {
884                         my $s; my $k = "FUNCTION"; my $p; my $a;
885                         s/^[\n\s]*//g;
886                         s/[\n\s]*$//g;
887                         next if(/\#undef/);
888                         next if(/typedef\W/);
889                         next if(/\#define/);
890
891                         # Reduce argument lists to empty ()
892                         # fold round brackets recursively: (t(*v)(t),t) -> (t{}{},t) -> {}
893                         while(/\(.*\)/s) {
894                                 s/\([^\(\)]+\)/\{\}/gs;
895                                 s/\(\s*\*\s*(\w+)\s*\{\}\s*\)/$1/gs;    #(*f{}) -> f
896                         }
897                         # pretend as we didn't use curly braces: {} -> ()
898                         s/\{\}/\(\)/gs;
899
900                         s/STACK_OF\(\)/void/gs;
901                         s/LHASH_OF\(\)/void/gs;
902
903                         print STDERR "DEBUG: \$_ = \"$_\"\n" if $debug;
904                         if (/^\#INFO:([^:]*):(.*)$/) {
905                                 $plats = $1;
906                                 $algs = $2;
907                                 print STDERR "DEBUG: found info on platforms ($plats) and algorithms ($algs)\n" if $debug;
908                                 next;
909                         } elsif (/^\s*OPENSSL_EXTERN\s.*?(\w+(\{[0-9]+\})?)(\[[0-9]*\])*\s*$/) {
910                                 $s = $1;
911                                 $k = "VARIABLE";
912                                 print STDERR "DEBUG: found external variable $s\n" if $debug;
913                         } elsif (/TYPEDEF_\w+_OF/s) {
914                                 next;
915                         } elsif (/(\w+)\s*\(\).*/s) {   # first token prior [first] () is
916                                 $s = $1;                # a function name!
917                                 print STDERR "DEBUG: found function $s\n" if $debug;
918                         } elsif (/\(/ and not (/=/)) {
919                                 print STDERR "File $file: cannot parse: $_;\n";
920                                 next;
921                         } else {
922                                 next;
923                         }
924
925                         $syms{$s} = 1;
926                         $kind{$s} = $k;
927
928                         $p = $plats;
929                         $a = $algs;
930
931                         $platform{$s} =
932                             &reduce_platforms((defined($platform{$s})?$platform{$s}.',':"").$p);
933                         $algorithm{$s} .= ','.$a;
934
935                         if (defined($variant{$s})) {
936                                 foreach $v (split /;/,$variant{$s}) {
937                                         (my $r, my $p, my $k) = split(/:/,$v);
938                                         my $ip = join ',',map({ /^!(.*)$/ ? $1 : "!".$_ } split /,/, $p);
939                                         $syms{$r} = 1;
940                                         if (!defined($k)) { $k = $kind{$s}; }
941                                         $kind{$r} = $k."(".$s.")";
942                                         $algorithm{$r} = $algorithm{$s};
943                                         $platform{$r} = &reduce_platforms($platform{$s}.",".$p.",".$p);
944                                         $platform{$s} = &reduce_platforms($platform{$s}.','.$ip.','.$ip);
945                                         print STDERR "DEBUG: \$variant{\"$s\"} = ",$v,"; \$r = $r; \$p = ",$platform{$r},"; \$a = ",$algorithm{$r},"; \$kind = ",$kind{$r},"\n" if $debug;
946                                 }
947                         }
948                         print STDERR "DEBUG: \$s = $s; \$p = ",$platform{$s},"; \$a = ",$algorithm{$s},"; \$kind = ",$kind{$s},"\n" if $debug;
949                 }
950         }
951
952         # Prune the returned symbols
953
954         delete $syms{"bn_dump1"};
955         $platform{"BIO_s_log"} .= ",!WIN32,!macintosh";
956
957         $platform{"PEM_read_NS_CERT_SEQ"} = "VMS";
958         $platform{"PEM_write_NS_CERT_SEQ"} = "VMS";
959         $platform{"PEM_read_P8_PRIV_KEY_INFO"} = "VMS";
960         $platform{"PEM_write_P8_PRIV_KEY_INFO"} = "VMS";
961         $platform{"EVP_sha384"} = "!VMSVAX";
962         $platform{"EVP_sha512"} = "!VMSVAX";
963         $platform{"SHA384_Init"} = "!VMSVAX";
964         $platform{"SHA384_Transform"} = "!VMSVAX";
965         $platform{"SHA384_Update"} = "!VMSVAX";
966         $platform{"SHA384_Final"} = "!VMSVAX";
967         $platform{"SHA384"} = "!VMSVAX";
968         $platform{"SHA512_Init"} = "!VMSVAX";
969         $platform{"SHA512_Transform"} = "!VMSVAX";
970         $platform{"SHA512_Update"} = "!VMSVAX";
971         $platform{"SHA512_Final"} = "!VMSVAX";
972         $platform{"SHA512"} = "!VMSVAX";
973
974
975         # Info we know about
976
977         push @ret, map { $_."\\".&info_string($_,"EXIST",
978                                               $platform{$_},
979                                               $kind{$_},
980                                               $algorithm{$_}) } keys %syms;
981
982         if (keys %unknown_algorithms) {
983                 print STDERR "WARNING: mkdef.pl doesn't know the following algorithms:\n";
984                 print STDERR "\t",join("\n\t",keys %unknown_algorithms),"\n";
985         }
986         return(@ret);
987 }
988
989 # Param: string of comma-separated platform-specs.
990 sub reduce_platforms
991 {
992         my ($platforms) = @_;
993         my $pl = defined($platforms) ? $platforms : "";
994         my %p = map { $_ => 0 } split /,/, $pl;
995         my $ret;
996
997         print STDERR "DEBUG: Entered reduce_platforms with \"$platforms\"\n"
998             if $debug;
999         # We do this, because if there's code like the following, it really
1000         # means the function exists in all cases and should therefore be
1001         # everywhere.  By increasing and decreasing, we may attain 0:
1002         #
1003         # ifndef WIN16
1004         #    int foo();
1005         # else
1006         #    int _fat foo();
1007         # endif
1008         foreach $platform (split /,/, $pl) {
1009                 if ($platform =~ /^!(.*)$/) {
1010                         $p{$1}--;
1011                 } else {
1012                         $p{$platform}++;
1013                 }
1014         }
1015         foreach $platform (keys %p) {
1016                 if ($p{$platform} == 0) { delete $p{$platform}; }
1017         }
1018
1019         delete $p{""};
1020
1021         $ret = join(',',sort(map { $p{$_} < 0 ? "!".$_ : $_ } keys %p));
1022         print STDERR "DEBUG: Exiting reduce_platforms with \"$ret\"\n"
1023             if $debug;
1024         return $ret;
1025 }
1026
1027 sub info_string
1028 {
1029         (my $symbol, my $exist, my $platforms, my $kind, my $algorithms) = @_;
1030
1031         my %a = defined($algorithms) ?
1032             map { $_ => 1 } split /,/, $algorithms : ();
1033         my $k = defined($kind) ? $kind : "FUNCTION";
1034         my $ret;
1035         my $p = &reduce_platforms($platforms);
1036
1037         delete $a{""};
1038
1039         $ret = $exist;
1040         $ret .= ":".$p;
1041         $ret .= ":".$k;
1042         $ret .= ":".join(',',sort keys %a);
1043         return $ret;
1044 }
1045
1046 sub maybe_add_info
1047 {
1048         (my $name, *nums, my @symbols) = @_;
1049         my $sym;
1050         my $new_info = 0;
1051         my %syms=();
1052
1053         foreach $sym (@symbols) {
1054                 (my $s, my $i) = split /\\/, $sym;
1055                 if (defined($nums{$s})) {
1056                         $i =~ s/^(.*?:.*?:\w+)(\(\w+\))?/$1/;
1057                         (my $n, my $vers, my $dummy) = split /\\/, $nums{$s};
1058                         if (!defined($dummy) || $i ne $dummy) {
1059                                 $nums{$s} = $n."\\".$vers."\\".$i;
1060                                 $new_info++;
1061                                 print STDERR "DEBUG: maybe_add_info for $s: \"$dummy\" => \"$i\"\n" if $debug;
1062                         }
1063                 }
1064                 $syms{$s} = 1;
1065         }
1066
1067         my @s=sort { &parse_number($nums{$a},"n") <=> &parse_number($nums{$b},"n") } keys %nums;
1068         foreach $sym (@s) {
1069                 (my $n, my $vers, my $i) = split /\\/, $nums{$sym};
1070                 if (!defined($syms{$sym}) && $i !~ /^NOEXIST:/) {
1071                         $new_info++;
1072                         print STDERR "DEBUG: maybe_add_info for $sym: -> undefined\n" if $debug;
1073                 }
1074         }
1075         if ($new_info) {
1076                 print STDERR "$name: $new_info old symbols have updated info\n";
1077                 if (!$do_rewrite) {
1078                         print STDERR "You should do a rewrite to fix this.\n";
1079                 }
1080         } else {
1081         }
1082 }
1083
1084 # Param: string of comma-separated keywords, each possibly prefixed with a "!"
1085 sub is_valid
1086 {
1087         my ($keywords_txt,$platforms) = @_;
1088         my (@keywords) = split /,/,$keywords_txt;
1089         my ($falsesum, $truesum) = (0, 1);
1090
1091         # Param: one keyword
1092         sub recognise
1093         {
1094                 my ($keyword,$platforms) = @_;
1095
1096                 if ($platforms) {
1097                         # platforms
1098                         if ($keyword eq "VMSVAX" && $VMSVAX) { return 1; }
1099                         if ($keyword eq "VMSNonVAX" && $VMSNonVAX) { return 1; }
1100                         if ($keyword eq "VMS" && $VMS) { return 1; }
1101                         if ($keyword eq "WIN32" && $W32) { return 1; }
1102                         if ($keyword eq "WINNT" && $NT) { return 1; }
1103                         if ($keyword eq "OS2" && $OS2) { return 1; }
1104                         # Special platforms:
1105                         # EXPORT_VAR_AS_FUNCTION means that global variables
1106                         # will be represented as functions.  This currently
1107                         # only happens on VMS-VAX.
1108                         if ($keyword eq "EXPORT_VAR_AS_FUNCTION" && ($VMSVAX || $W32)) {
1109                                 return 1;
1110                         }
1111                         if ($keyword eq "ZLIB" && $zlib) { return 1; }
1112                         return 0;
1113                 } else {
1114                         # algorithms
1115                         if ($disabled_algorithms{$keyword} == 1) { return 0;}
1116
1117                         # Nothing recognise as true
1118                         return 1;
1119                 }
1120         }
1121
1122         foreach $k (@keywords) {
1123                 if ($k =~ /^!(.*)$/) {
1124                         $falsesum += &recognise($1,$platforms);
1125                 } else {
1126                         $truesum *= &recognise($k,$platforms);
1127                 }
1128         }
1129         print STDERR "DEBUG: [",$#keywords,",",$#keywords < 0,"] is_valid($keywords_txt) => (\!$falsesum) && $truesum = ",(!$falsesum) && $truesum,"\n" if $debug;
1130         return (!$falsesum) && $truesum;
1131 }
1132
1133 sub print_test_file
1134 {
1135         (*OUT,my $name,*nums,my $testall,my @symbols)=@_;
1136         my $n = 1; my @e; my @r;
1137         my $sym; my $prev = ""; my $prefSSLeay;
1138
1139         (@e)=grep(/^SSLeay(\{[0-9]+\})?\\.*?:.*?:.*/,@symbols);
1140         (@r)=grep(/^\w+(\{[0-9]+\})?\\.*?:.*?:.*/ && !/^SSLeay(\{[0-9]+\})?\\.*?:.*?:.*/,@symbols);
1141         @symbols=((sort @e),(sort @r));
1142
1143         foreach $sym (@symbols) {
1144                 (my $s, my $i) = $sym =~ /^(.*?)\\(.*)$/;
1145                 my $v = 0;
1146                 $v = 1 if $i=~ /^.*?:.*?:VARIABLE/;
1147                 my $p = ($i =~ /^[^:]*:([^:]*):/,$1);
1148                 my $a = ($i =~ /^[^:]*:[^:]*:[^:]*:([^:]*)/,$1);
1149                 if (!defined($nums{$s})) {
1150                         print STDERR "Warning: $s does not have a number assigned\n"
1151                             if(!$do_update);
1152                 } elsif (is_valid($p,1) && is_valid($a,0)) {
1153                         my $s2 = ($s =~ /^(.*?)(\{[0-9]+\})?$/, $1);
1154                         if ($prev eq $s2) {
1155                                 print OUT "\t/* The following has already appeared previously */\n";
1156                                 print STDERR "Warning: Symbol '",$s2,"' redefined. old=",($nums{$prev} =~ /^(.*?)\\/,$1),", new=",($nums{$s2} =~ /^(.*?)\\/,$1),"\n";
1157                         }
1158                         $prev = $s2;    # To warn about duplicates...
1159
1160                         (my $nn, my $vers, my $ni) = split /\\/, $nums{$s2};
1161                         if ($v) {
1162                                 print OUT "\textern int $s2; /* type unknown */ /* $nn $ni */\n";
1163                         } else {
1164                                 print OUT "\textern int $s2(); /* type unknown */ /* $nn $ni */\n";
1165                         }
1166                 }
1167         }
1168 }
1169
1170 sub get_version
1171 {
1172    return $config{version};
1173 }
1174
1175 sub print_def_file
1176 {
1177         (*OUT,my $name,*nums,my @symbols)=@_;
1178         my $n = 1; my @e; my @r; my @v; my $prev="";
1179         my $liboptions="";
1180         my $libname = $name;
1181         my $http_vendor = 'www.openssl.org/';
1182         my $version = get_version();
1183         my $what = "OpenSSL: implementation of Secure Socket Layer";
1184         my $description = "$what $version, $name - http://$http_vendor";
1185         my $prevsymversion = "", $prevprevsymversion = "";
1186         # For VMS
1187         my $prevnum = 0;
1188         my $symvtextcount = 0;
1189
1190         if ($W32)
1191                 { $libname.="32"; }
1192         elsif ($OS2)
1193                 { # DLL names should not clash on the whole system.
1194                   # However, they should not have any particular relationship
1195                   # to the name of the static library.  Chose descriptive names
1196                   # (must be at most 8 chars).
1197                   my %translate = (ssl => 'open_ssl', crypto => 'cryptssl');
1198                   $libname = $translate{$name} || $name;
1199                   $liboptions = <<EOO;
1200 INITINSTANCE
1201 DATA MULTIPLE NONSHARED
1202 EOO
1203                   # Vendor field can't contain colon, drat; so we omit http://
1204                   $description = "\@#$http_vendor:$version#\@$what; DLL for library $name.  Build for EMX -Zmtd";
1205                 }
1206
1207         if ($W32 || $OS2)
1208                 {
1209                 print OUT <<"EOF";
1210 ;
1211 ; Definition file for the DLL version of the $name library from OpenSSL
1212 ;
1213
1214 LIBRARY         $libname        $liboptions
1215
1216 EOF
1217
1218                 print "EXPORTS\n";
1219                 }
1220         elsif ($VMS)
1221                 {
1222                 print OUT <<"EOF";
1223 CASE_SENSITIVE=YES
1224 SYMBOL_VECTOR=(-
1225 EOF
1226                 $symvtextcount = 16; # length of "SYMBOL_VECTOR=(-"
1227                 }
1228
1229         (@r)=grep(/^\w+(\{[0-9]+\})?\\.*?:.*?:FUNCTION/,@symbols);
1230         (@v)=grep(/^\w+(\{[0-9]+\})?\\.*?:.*?:VARIABLE/,@symbols);
1231         if ($VMS) {
1232             # VMS needs to have the symbols on slot number order
1233             @symbols=(map { $_->[1] }
1234                       sort { $a->[0] <=> $b->[0] }
1235                       map { (my $s, my $i) = $_ =~ /^(.*?)\\(.*)$/;
1236                             die "Error: $s doesn't have a number assigned\n"
1237                                 if !defined($nums{$s});
1238                             (my $n, my @rest) = split /\\/, $nums{$s};
1239                             [ $n, $_ ] } (@e, @r, @v));
1240         } else {
1241             @symbols=((sort @e),(sort @r), (sort @v));
1242         }
1243
1244         my ($baseversion, $currversion) = get_openssl_version();
1245         my $thisversion;
1246         do {
1247                 if (!defined($thisversion)) {
1248                         $thisversion = $baseversion;
1249                 } else {
1250                         $thisversion = get_next_version($thisversion);
1251                 }
1252                 foreach $sym (@symbols) {
1253                         (my $s, my $i) = $sym =~ /^(.*?)\\(.*)$/;
1254                         my $v = 0;
1255                         $v = 1 if $i =~ /^.*?:.*?:VARIABLE/;
1256                         if (!defined($nums{$s})) {
1257                                 die "Error: $s does not have a number assigned\n"
1258                                         if(!$do_update);
1259                         } else {
1260                                 (my $n, my $symversion, my $dummy) = split /\\/, $nums{$s};
1261                                 next if $symversion ne $thisversion;
1262                                 my %pf = ();
1263                                 my $p = ($i =~ /^[^:]*:([^:]*):/,$1);
1264                                 my $a = ($i =~ /^[^:]*:[^:]*:[^:]*:([^:]*)/,$1);
1265                                 if (is_valid($p,1) && is_valid($a,0)) {
1266                                         my $s2 = ($s =~ /^(.*?)(\{[0-9]+\})?$/, $1);
1267                                         if ($prev eq $s2) {
1268                                                 print STDERR "Warning: Symbol '",$s2,
1269                                                         "' redefined. old=",($nums{$prev} =~ /^(.*?)\\/,$1),
1270                                                         ", new=",($nums{$s2} =~ /^(.*?)\\/,$1),"\n";
1271                                         }
1272                                         $prev = $s2;    # To warn about duplicates...
1273                                         if($linux) {
1274                                                 if ($symversion ne $prevsymversion) {
1275                                                         if ($prevsymversion ne "") {
1276                                                                 if ($prevprevsymversion ne "") {
1277                                                                         print OUT "} OPENSSL_"
1278                                                                                                 ."$prevprevsymversion;\n\n";
1279                                                                 } else {
1280                                                                         print OUT "};\n\n";
1281                                                                 }
1282                                                         }
1283                                                         print OUT "OPENSSL_$symversion {\n    global:\n";
1284                                                         $prevprevsymversion = $prevsymversion;
1285                                                         $prevsymversion = $symversion;
1286                                                 }
1287                                                 print OUT "        $s2;\n";
1288                                         } elsif ($VMS) {
1289                                             while(++$prevnum < $n) {
1290                                                 my $symline=" ,SPARE -\n  ,SPARE -\n";
1291                                                 if ($symvtextcount + length($symline) - 2 > 1024) {
1292                                                     print OUT ")\nSYMBOL_VECTOR=(-\n";
1293                                                     $symvtextcount = 16; # length of "SYMBOL_VECTOR=(-"
1294                                                 }
1295                                                 if ($symvtextcount == 16) {
1296                                                     # Take away first comma
1297                                                     $symline =~ s/,//;
1298                                                 }
1299                                                 print OUT $symline;
1300                                                 $symvtextcount += length($symline) - 2;
1301                                             }
1302                                             (my $s_uc = $s) =~ tr/a-z/A-Z/;
1303                                             my $symtype=
1304                                                 $v ? "DATA" : "PROCEDURE";
1305                                             my $symline=
1306                                                 ($s_uc ne $s
1307                                                  ? " ,$s_uc/$s=$symtype -\n  ,$s=$symtype -\n"
1308                                                  : " ,$s=$symtype -\n  ,SPARE -\n");
1309                                             if ($symvtextcount + length($symline) - 2 > 1024) {
1310                                                 print OUT ")\nSYMBOL_VECTOR=(-\n";
1311                                                 $symvtextcount = 16; # length of "SYMBOL_VECTOR=(-"
1312                                             }
1313                                             if ($symvtextcount == 16) {
1314                                                 # Take away first comma
1315                                                 $symline =~ s/,//;
1316                                             }
1317                                             print OUT $symline;
1318                                             $symvtextcount += length($symline) - 2;
1319                                         } elsif($v && !$OS2) {
1320                                                 printf OUT "    %s%-39s @%-8d DATA\n",
1321                                                                 ($W32)?"":"_",$s2,$n;
1322                                         } else {
1323                                                 printf OUT "    %s%-39s @%d\n",
1324                                                                 ($W32||$OS2)?"":"_",$s2,$n;
1325                                         }
1326                                 }
1327                         }
1328                 }
1329         } while ($thisversion ne $currversion);
1330         if ($linux) {
1331                 if ($prevprevsymversion ne "") {
1332                         print OUT "    local: *;\n} OPENSSL_$prevprevsymversion;\n\n";
1333                 } else {
1334                         print OUT "    local: *;\n};\n\n";
1335                 }
1336         } elsif ($VMS) {
1337             print OUT ")\n";
1338             (my $libvmaj, my $libvmin, my $libvedit) =
1339                 $currversion =~ /^(\d+)_(\d+)_(\d+)$/;
1340             # The reason to multiply the edit number with 100 is to make space
1341             # for the possibility that we want to encode the patch letters
1342             print OUT "GSMATCH=LEQUAL,",($libvmaj * 100 + $libvmin),",",($libvedit * 100),"\n";
1343         }
1344         printf OUT "\n";
1345 }
1346
1347 sub load_numbers
1348 {
1349         my($name)=@_;
1350         my(@a,%ret);
1351         my $prevversion;
1352
1353         $max_num = 0;
1354         $num_noinfo = 0;
1355         $prev = "";
1356         $prev_cnt = 0;
1357
1358         my ($baseversion, $currversion) = get_openssl_version();
1359
1360         open(IN,"<$name") || die "unable to open $name:$!\n";
1361         while (<IN>) {
1362                 s|\R$||;        # Better chomp
1363                 s/#.*$//;
1364                 next if /^\s*$/;
1365                 @a=split;
1366                 if (defined $ret{$a[0]}) {
1367                         # This is actually perfectly OK
1368                         #print STDERR "Warning: Symbol '",$a[0],"' redefined. old=",$ret{$a[0]},", new=",$a[1],"\n";
1369                 }
1370                 if ($max_num > $a[1]) {
1371                         print STDERR "Warning: Number decreased from ",$max_num," to ",$a[1],"\n";
1372                 }
1373                 elsif ($max_num == $a[1]) {
1374                         # This is actually perfectly OK
1375                         #print STDERR "Warning: Symbol ",$a[0]," has same number as previous ",$prev,": ",$a[1],"\n";
1376                         if ($a[0] eq $prev) {
1377                                 $prev_cnt++;
1378                                 $a[0] .= "{$prev_cnt}";
1379                         }
1380                 }
1381                 else {
1382                         $prev_cnt = 0;
1383                 }
1384                 if ($#a < 2) {
1385                         # Existence will be proven later, in do_defs
1386                         $ret{$a[0]}=$a[1];
1387                         $num_noinfo++;
1388                 } else {
1389                         #Sanity check the version number
1390                         if (defined $prevversion) {
1391                                 check_version_lte($prevversion, $a[2]);
1392                         }
1393                         check_version_lte($a[2], $currversion);
1394                         $prevversion = $a[2];
1395                         $ret{$a[0]}=$a[1]."\\".$a[2]."\\".$a[3]; # \\ is a special marker
1396                 }
1397                 $max_num = $a[1] if $a[1] > $max_num;
1398                 $prev=$a[0];
1399         }
1400         if ($num_noinfo) {
1401                 print STDERR "Warning: $num_noinfo symbols were without info.";
1402                 if ($do_rewrite) {
1403                         printf STDERR "  The rewrite will fix this.\n";
1404                 } else {
1405                         printf STDERR "  You should do a rewrite to fix this.\n";
1406                 }
1407         }
1408         close(IN);
1409         return(%ret);
1410 }
1411
1412 sub parse_number
1413 {
1414         (my $str, my $what) = @_;
1415         (my $n, my $v, my $i) = split(/\\/,$str);
1416         if ($what eq "n") {
1417                 return $n;
1418         } else {
1419                 return $i;
1420         }
1421 }
1422
1423 sub rewrite_numbers
1424 {
1425         (*OUT,$name,*nums,@symbols)=@_;
1426         my $thing;
1427
1428         my @r = grep(/^\w+(\{[0-9]+\})?\\.*?:.*?:\w+\(\w+\)/,@symbols);
1429         my $r; my %r; my %rsyms;
1430         foreach $r (@r) {
1431                 (my $s, my $i) = split /\\/, $r;
1432                 my $a = $1 if $i =~ /^.*?:.*?:\w+\((\w+)\)/;
1433                 $i =~ s/^(.*?:.*?:\w+)\(\w+\)/$1/;
1434                 $r{$a} = $s."\\".$i;
1435                 $rsyms{$s} = 1;
1436         }
1437
1438         my %syms = ();
1439         foreach $_ (@symbols) {
1440                 (my $n, my $i) = split /\\/;
1441                 $syms{$n} = 1;
1442         }
1443
1444         my @s=sort {
1445             &parse_number($nums{$a},"n") <=> &parse_number($nums{$b},"n")
1446             || $a cmp $b
1447         } keys %nums;
1448         foreach $sym (@s) {
1449                 (my $n, my $vers, my $i) = split /\\/, $nums{$sym};
1450                 next if defined($i) && $i =~ /^.*?:.*?:\w+\(\w+\)/;
1451                 next if defined($rsyms{$sym});
1452                 print STDERR "DEBUG: rewrite_numbers for sym = ",$sym,": i = ",$i,", n = ",$n,", rsym{sym} = ",$rsyms{$sym},"syms{sym} = ",$syms{$sym},"\n" if $debug;
1453                 $i="NOEXIST::FUNCTION:"
1454                         if !defined($i) || $i eq "" || !defined($syms{$sym});
1455                 my $s2 = $sym;
1456                 $s2 =~ s/\{[0-9]+\}$//;
1457                 printf OUT "%s%-39s %d\t%s\t%s\n","",$s2,$n,$vers,$i;
1458                 if (exists $r{$sym}) {
1459                         (my $s, $i) = split /\\/,$r{$sym};
1460                         my $s2 = $s;
1461                         $s2 =~ s/\{[0-9]+\}$//;
1462                         printf OUT "%s%-39s %d\t%s\t%s\n","",$s2,$n,$vers,$i;
1463                 }
1464         }
1465 }
1466
1467 sub update_numbers
1468 {
1469         (*OUT,$name,*nums,my $start_num, my @symbols)=@_;
1470         my $new_syms = 0;
1471         my $basevers;
1472         my $vers;
1473
1474         ($basevers, $vers) = get_openssl_version();
1475
1476         my @r = grep(/^\w+(\{[0-9]+\})?\\.*?:.*?:\w+\(\w+\)/,@symbols);
1477         my $r; my %r; my %rsyms;
1478         foreach $r (@r) {
1479                 (my $s, my $i) = split /\\/, $r;
1480                 my $a = $1 if $i =~ /^.*?:.*?:\w+\((\w+)\)/;
1481                 $i =~ s/^(.*?:.*?:\w+)\(\w+\)/$1/;
1482                 $r{$a} = $s."\\".$i;
1483                 $rsyms{$s} = 1;
1484         }
1485
1486         foreach $sym (@symbols) {
1487                 (my $s, my $i) = $sym =~ /^(.*?)\\(.*)$/;
1488                 next if $i =~ /^.*?:.*?:\w+\(\w+\)/;
1489                 next if defined($rsyms{$sym});
1490                 die "ERROR: Symbol $sym had no info attached to it."
1491                     if $i eq "";
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\t%s\n","",$s2, ++$start_num,$vers,$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\t%s\n","",$s, $start_num,$vers,$i;
1501                         }
1502                 }
1503         }
1504         if($new_syms) {
1505                 print STDERR "$name: Added $new_syms new symbols\n";
1506         } else {
1507                 print STDERR "$name: 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
1543 #Parse opensslv.h to get the current version number. Also work out the base
1544 #version, i.e. the lowest version number that is binary compatible with this
1545 #version
1546 sub get_openssl_version()
1547 {
1548         my $fn = catfile($config{sourcedir},"include","openssl","opensslv.h");
1549         open (IN, "$fn") || die "Can't open opensslv.h";
1550
1551         while(<IN>) {
1552                 if (/OPENSSL_VERSION_TEXT\s+"OpenSSL (\d\.\d\.)(\d[a-z]*)(-| )/) {
1553                         my $suffix = $2;
1554                         (my $baseversion = $1) =~ s/\./_/g;
1555                         close IN;
1556                         return ($baseversion."0", $baseversion.$suffix);
1557                 }
1558         }
1559         die "Can't find OpenSSL version number\n";
1560 }
1561
1562 #Given an OpenSSL version number, calculate the next version number. If the
1563 #version number gets to a.b.czz then we go to a.b.(c+1)
1564 sub get_next_version()
1565 {
1566         my $thisversion = shift;
1567
1568         my ($base, $letter) = $thisversion =~ /^(\d_\d_\d)([a-z]{0,2})$/;
1569
1570         if ($letter eq "zz") {
1571                 my $lastnum = substr($base, -1);
1572                 return substr($base, 0, length($base)-1).(++$lastnum);
1573         }
1574         return $base.get_next_letter($letter);
1575 }
1576
1577 #Given the letters off the end of an OpenSSL version string, calculate what
1578 #the letters for the next release would be.
1579 sub get_next_letter()
1580 {
1581         my $thisletter = shift;
1582         my $baseletter = "";
1583         my $endletter;
1584
1585         if ($thisletter eq "") {
1586                 return "a";
1587         }
1588         if ((length $thisletter) > 1) {
1589                 ($baseletter, $endletter) = $thisletter =~ /([a-z]+)([a-z])/;
1590         } else {
1591                 $endletter = $thisletter;
1592         }
1593
1594         if ($endletter eq "z") {
1595                 return $thisletter."a";
1596         } else {
1597                 return $baseletter.(++$endletter);
1598         }
1599 }
1600
1601 #Check if a version is less than or equal to the current version. Its a fatal
1602 #error if not. They must also only differ in letters, or the last number (i.e.
1603 #the first two numbers must be the same)
1604 sub check_version_lte()
1605 {
1606         my ($testversion, $currversion) = @_;
1607         my $lentv;
1608         my $lencv;
1609         my $cvbase;
1610
1611         my ($cvnums) = $currversion =~ /^(\d_\d_\d)[a-z]*$/;
1612         my ($tvnums) = $testversion =~ /^(\d_\d_\d)[a-z]*$/;
1613
1614         #Die if we can't parse the version numbers or they don't look sane
1615         die "Invalid version number: $testversion and $currversion\n"
1616                 if (!defined($cvnums) || !defined($tvnums)
1617                         || length($cvnums) != 5
1618                         || length($tvnums) != 5);
1619
1620         #If the base versions (without letters) don't match check they only differ
1621         #in the last number
1622         if ($cvnums ne $tvnums) {
1623                 die "Invalid version number: $testversion "
1624                         ."for current version $currversion\n"
1625                         if (substr($cvnums, -1) < substr($tvnums, -1)
1626                                 || substr($cvnums, 0, 4) ne substr($tvnums, 0, 4));
1627                 return;
1628         }
1629         #If we get here then the base version (i.e. the numbers) are the same - they
1630         #only differ in the letters
1631
1632         $lentv = length $testversion;
1633         $lencv = length $currversion;
1634
1635         #If the testversion has more letters than the current version then it must
1636         #be later (or malformed)
1637         if ($lentv > $lencv) {
1638                 die "Invalid version number: $testversion "
1639                         ."is greater than $currversion\n";
1640         }
1641
1642         #Get the last letter from the current version
1643         my ($cvletter) = $currversion =~ /([a-z])$/;
1644         if (defined $cvletter) {
1645                 ($cvbase) = $currversion =~ /(\d_\d_\d[a-z]*)$cvletter$/;
1646         } else {
1647                 $cvbase = $currversion;
1648         }
1649         die "Unable to parse version number $currversion" if (!defined $cvbase);
1650         my $tvbase;
1651         my ($tvletter) = $testversion =~ /([a-z])$/;
1652         if (defined $tvletter) {
1653                 ($tvbase) = $testversion =~ /(\d_\d_\d[a-z]*)$tvletter$/;
1654         } else {
1655                 $tvbase = $testversion;
1656         }
1657         die "Unable to parse version number $testversion" if (!defined $tvbase);
1658
1659         if ($lencv > $lentv) {
1660                 #If current version has more letters than testversion then testversion
1661                 #minus the final letter must be a substring of the current version
1662                 die "Invalid version number $testversion "
1663                         ."is greater than $currversion or is invalid\n"
1664                         if (index($cvbase, $tvbase) != 0);
1665         } else {
1666                 #If both versions have the same number of letters then they must be
1667                 #equal up to the last letter, and the last letter in testversion must
1668                 #be less than or equal to the last letter in current version.
1669                 die "Invalid version number $testversion "
1670                         ."is greater than $currversion\n"
1671                         if (($cvbase ne $tvbase) && ($tvletter gt $cvletter));
1672         }
1673 }
1674
1675 sub do_deprecated()
1676 {
1677         my ($decl, $plats, $algs) = @_;
1678         $decl =~ /^\s*(DEPRECATEDIN_\d+_\d+_\d+)\s*\((.*)\)\s*$/
1679             or die "Bad DEPRECTEDIN: $decl\n";
1680         my $info1 .= "#INFO:";
1681         $info1 .= join(',', @{$plats}) . ":";
1682         my $info2 = $info1;
1683         $info1 .= join(',',@{$algs}, $1) . ";";
1684         $info2 .= join(',',@{$algs}) . ";";
1685         return $info1 . $2 . ";" . $info2;
1686 }