a2fedc541a5167e993649d835b9550f0935c8327
[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/openssl/des.h" ; # unless $no_des;
240 $crypto.=" include/openssl/idea.h" ; # unless $no_idea;
241 $crypto.=" include/openssl/rc4.h" ; # unless $no_rc4;
242 $crypto.=" include/openssl/rc5.h" ; # unless $no_rc5;
243 $crypto.=" include/openssl/rc2.h" ; # unless $no_rc2;
244 $crypto.=" include/openssl/blowfish.h" ; # unless $no_bf;
245 $crypto.=" include/openssl/cast.h" ; # unless $no_cast;
246 $crypto.=" include/openssl/whrlpool.h" ;
247 $crypto.=" include/openssl/md2.h" ; # unless $no_md2;
248 $crypto.=" include/openssl/md4.h" ; # unless $no_md4;
249 $crypto.=" include/openssl/md5.h" ; # unless $no_md5;
250 $crypto.=" include/openssl/mdc2.h" ; # unless $no_mdc2;
251 $crypto.=" include/openssl/sha.h" ; # unless $no_sha;
252 $crypto.=" include/openssl/ripemd.h" ; # unless $no_ripemd;
253 $crypto.=" include/openssl/aes.h" ; # unless $no_aes;
254 $crypto.=" include/openssl/camellia.h" ; # unless $no_camellia;
255 $crypto.=" include/openssl/seed.h"; # unless $no_seed;
256
257 $crypto.=" include/openssl/bn.h";
258 $crypto.=" include/openssl/rsa.h" ; # unless $no_rsa;
259 $crypto.=" include/openssl/dsa.h" ; # unless $no_dsa;
260 $crypto.=" include/openssl/dh.h" ; # unless $no_dh;
261 $crypto.=" include/openssl/ec.h" ; # unless $no_ec;
262 $crypto.=" include/openssl/hmac.h" ; # unless $no_hmac;
263 $crypto.=" include/openssl/cmac.h" ;
264
265 $crypto.=" include/openssl/engine.h"; # unless $no_engine;
266 $crypto.=" include/openssl/stack.h" ; # unless $no_stack;
267 $crypto.=" include/openssl/buffer.h" ; # unless $no_buffer;
268 $crypto.=" include/openssl/bio.h" ; # unless $no_bio;
269 $crypto.=" include/openssl/dso.h" ; # unless $no_dso;
270 $crypto.=" include/openssl/lhash.h" ; # unless $no_lhash;
271 $crypto.=" include/openssl/conf.h";
272 $crypto.=" include/openssl/txt_db.h";
273
274 $crypto.=" include/openssl/evp.h" ; # unless $no_evp;
275 $crypto.=" include/openssl/objects.h";
276 $crypto.=" include/openssl/pem.h";
277 #$crypto.=" include/openssl/meth.h";
278 $crypto.=" include/openssl/asn1.h";
279 $crypto.=" include/openssl/asn1t.h";
280 $crypto.=" include/openssl/err.h" ; # unless $no_err;
281 $crypto.=" include/openssl/pkcs7.h";
282 $crypto.=" include/openssl/pkcs12.h";
283 $crypto.=" include/openssl/x509.h";
284 $crypto.=" include/openssl/x509_vfy.h";
285 $crypto.=" include/openssl/x509v3.h";
286 $crypto.=" include/openssl/ts.h";
287 $crypto.=" include/openssl/rand.h";
288 $crypto.=" include/openssl/comp.h" ; # unless $no_comp;
289 $crypto.=" include/openssl/ocsp.h";
290 $crypto.=" include/openssl/ui.h";
291 #$crypto.=" include/openssl/store.h";
292 $crypto.=" include/openssl/cms.h";
293 $crypto.=" include/openssl/srp.h";
294 $crypto.=" include/openssl/modes.h";
295 $crypto.=" include/openssl/async.h";
296
297 my $symhacks="include/openssl/symhacks.h";
298
299 my @ssl_symbols = &do_defs("SSLEAY", $ssl, $symhacks);
300 my @crypto_symbols = &do_defs("LIBEAY", $crypto, $symhacks);
301
302 if ($do_update) {
303
304 if ($do_ssl == 1) {
305
306         &maybe_add_info("SSLEAY",*ssl_list,@ssl_symbols);
307         if ($do_rewrite == 1) {
308                 open(OUT, ">$ssl_num");
309                 &rewrite_numbers(*OUT,"SSLEAY",*ssl_list,@ssl_symbols);
310         } else {
311                 open(OUT, ">>$ssl_num");
312         }
313         &update_numbers(*OUT,"SSLEAY",*ssl_list,$max_ssl,@ssl_symbols);
314         close OUT;
315 }
316
317 if($do_crypto == 1) {
318
319         &maybe_add_info("LIBEAY",*crypto_list,@crypto_symbols);
320         if ($do_rewrite == 1) {
321                 open(OUT, ">$crypto_num");
322                 &rewrite_numbers(*OUT,"LIBEAY",*crypto_list,@crypto_symbols);
323         } else {
324                 open(OUT, ">>$crypto_num");
325         }
326         &update_numbers(*OUT,"LIBEAY",*crypto_list,$max_crypto,@crypto_symbols);
327         close OUT;
328
329
330 } elsif ($do_checkexist) {
331         &check_existing(*ssl_list, @ssl_symbols)
332                 if $do_ssl == 1;
333         &check_existing(*crypto_list, @crypto_symbols)
334                 if $do_crypto == 1;
335 } elsif ($do_ctest || $do_ctestall) {
336
337         print <<"EOF";
338
339 /* Test file to check all DEF file symbols are present by trying
340  * to link to all of them. This is *not* intended to be run!
341  */
342
343 int main()
344 {
345 EOF
346         &print_test_file(*STDOUT,"SSLEAY",*ssl_list,$do_ctestall,@ssl_symbols)
347                 if $do_ssl == 1;
348
349         &print_test_file(*STDOUT,"LIBEAY",*crypto_list,$do_ctestall,@crypto_symbols)
350                 if $do_crypto == 1;
351
352         print "}\n";
353
354 } else {
355
356         &print_def_file(*STDOUT,$libname,*ssl_list,@ssl_symbols)
357                 if $do_ssl == 1;
358
359         &print_def_file(*STDOUT,$libname,*crypto_list,@crypto_symbols)
360                 if $do_crypto == 1;
361
362 }
363
364
365 sub do_defs
366 {
367         my($name,$files,$symhacksfile)=@_;
368         my $file;
369         my @ret;
370         my %syms;
371         my %platform;           # For anything undefined, we assume ""
372         my %kind;               # For anything undefined, we assume "FUNCTION"
373         my %algorithm;          # For anything undefined, we assume ""
374         my %variant;
375         my %variant_cnt;        # To be able to allocate "name{n}" if "name"
376                                 # is the same name as the original.
377         my $cpp;
378         my %unknown_algorithms = ();
379         my $parens = 0;
380
381         foreach $file (split(/\s+/,$symhacksfile." ".$files))
382                 {
383                 my $fn = catfile($config{sourcedir},$file);
384                 print STDERR "DEBUG: starting on $fn:\n" if $debug;
385                 open(IN,"<$fn") || die "unable to open $fn:$!\n";
386                 my $line = "", my $def= "";
387                 my %tag = (
388                         (map { $_ => 0 } @known_platforms),
389                         (map { "OPENSSL_SYS_".$_ => 0 } @known_ossl_platforms),
390                         (map { "OPENSSL_NO_".$_ => 0 } @known_algorithms),
391                         (map { "OPENSSL_USE_".$_ => 0 } @known_algorithms),
392                         NOPROTO         => 0,
393                         PERL5           => 0,
394                         _WINDLL         => 0,
395                         CONST_STRICT    => 0,
396                         TRUE            => 1,
397                 );
398                 my $symhacking = $file eq $symhacksfile;
399                 my @current_platforms = ();
400                 my @current_algorithms = ();
401
402                 # params: symbol, alias, platforms, kind
403                 # The reason to put this subroutine in a variable is that
404                 # it will otherwise create it's own, unshared, version of
405                 # %tag and %variant...
406                 my $make_variant = sub
407                 {
408                         my ($s, $a, $p, $k) = @_;
409                         my ($a1, $a2);
410
411                         print STDERR "DEBUG: make_variant: Entered with ",$s,", ",$a,", ",(defined($p)?$p:""),", ",(defined($k)?$k:""),"\n" if $debug;
412                         if (defined($p))
413                         {
414                                 $a1 = join(",",$p,
415                                            grep(!/^$/,
416                                                 map { $tag{$_} == 1 ? $_ : "" }
417                                                 @known_platforms));
418                         }
419                         else
420                         {
421                                 $a1 = join(",",
422                                            grep(!/^$/,
423                                                 map { $tag{$_} == 1 ? $_ : "" }
424                                                 @known_platforms));
425                         }
426                         $a2 = join(",",
427                                    grep(!/^$/,
428                                         map { $tag{"OPENSSL_SYS_".$_} == 1 ? $_ : "" }
429                                         @known_ossl_platforms));
430                         print STDERR "DEBUG: make_variant: a1 = $a1; a2 = $a2\n" if $debug;
431                         if ($a1 eq "") { $a1 = $a2; }
432                         elsif ($a1 ne "" && $a2 ne "") { $a1 .= ",".$a2; }
433                         if ($a eq $s)
434                         {
435                                 if (!defined($variant_cnt{$s}))
436                                 {
437                                         $variant_cnt{$s} = 0;
438                                 }
439                                 $variant_cnt{$s}++;
440                                 $a .= "{$variant_cnt{$s}}";
441                         }
442                         my $toadd = $a.":".$a1.(defined($k)?":".$k:"");
443                         my $togrep = $s.'(\{[0-9]+\})?:'.$a1.(defined($k)?":".$k:"");
444                         if (!grep(/^$togrep$/,
445                                   split(/;/, defined($variant{$s})?$variant{$s}:""))) {
446                                 if (defined($variant{$s})) { $variant{$s} .= ";"; }
447                                 $variant{$s} .= $toadd;
448                         }
449                         print STDERR "DEBUG: make_variant: Exit with variant of ",$s," = ",$variant{$s},"\n" if $debug;
450                 };
451
452                 print STDERR "DEBUG: parsing ----------\n" if $debug;
453                 while(<IN>) {
454                         if($parens > 0) {
455                                 #Inside a DEPRECATEDIN
456                                 $stored_multiline .= $_;
457                                 $stored_multiline =~ s|\R$||; # Better chomp
458                                 print STDERR "DEBUG: Continuing multiline DEPRECATEDIN: $stored_multiline\n" if $debug;
459                                 $parens = count_parens($stored_multiline);
460                                 if ($parens == 0) {
461                                         $def .= do_deprecated($stored_multiline,
462                                                         \@current_platforms,
463                                                         \@current_algorithms);
464                                 }
465                                 next;
466                         }
467                         if (/\/\* Error codes for the \w+ functions\. \*\//)
468                                 {
469                                 undef @tag;
470                                 last;
471                                 }
472                         if ($line ne '') {
473                                 $_ = $line . $_;
474                                 $line = '';
475                         }
476
477                         if (/\\$/) {
478                                 $line = $`; # keep what was before the backslash
479                                 next;
480                         }
481
482                         if(/\/\*/) {
483                                 if (not /\*\//) {       # multiline comment...
484                                         $line = $_;     # ... just accumulate
485                                         next;
486                                 } else {
487                                         s/\/\*.*?\*\///gs;# wipe it
488                                 }
489                         }
490
491                         if ($cpp) {
492                                 $cpp++ if /^#\s*if/;
493                                 $cpp-- if /^#\s*endif/;
494                                 next;
495                         }
496                         $cpp = 1 if /^#.*ifdef.*cplusplus/;
497
498                         s/{[^{}]*}//gs;                      # ignore {} blocks
499                         print STDERR "DEBUG: \$def=\"$def\"\n" if $debug && $def ne "";
500                         print STDERR "DEBUG: \$_=\"$_\"\n" if $debug;
501                         if (/^\#\s*ifndef\s+(.*)/) {
502                                 push(@tag,"-");
503                                 push(@tag,$1);
504                                 $tag{$1}=-1;
505                                 print STDERR "DEBUG: $file: found tag $1 = -1\n" if $debug;
506                         } elsif (/^\#\s*if\s+!defined\(([^\)]+)\)/) {
507                                 push(@tag,"-");
508                                 if (/^\#\s*if\s+(!defined\(([^\)]+)\)(\s+\&\&\s+!defined\(([^\)]+)\))*)$/) {
509                                         my $tmp_1 = $1;
510                                         my $tmp_;
511                                         foreach $tmp_ (split '\&\&',$tmp_1) {
512                                                 $tmp_ =~ /!defined\(([^\)]+)\)/;
513                                                 print STDERR "DEBUG: $file: found tag $1 = -1\n" if $debug;
514                                                 push(@tag,$1);
515                                                 $tag{$1}=-1;
516                                         }
517                                 } else {
518                                         print STDERR "Warning: $file: complicated expression: $_" if $debug; # because it is O...
519                                         print STDERR "DEBUG: $file: found tag $1 = -1\n" if $debug;
520                                         push(@tag,$1);
521                                         $tag{$1}=-1;
522                                 }
523                         } elsif (/^\#\s*ifdef\s+(\S*)/) {
524                                 push(@tag,"-");
525                                 push(@tag,$1);
526                                 $tag{$1}=1;
527                                 print STDERR "DEBUG: $file: found tag $1 = 1\n" if $debug;
528                         } elsif (/^\#\s*if\s+defined\(([^\)]+)\)/) {
529                                 push(@tag,"-");
530                                 if (/^\#\s*if\s+(defined\(([^\)]+)\)(\s+\|\|\s+defined\(([^\)]+)\))*)$/) {
531                                         my $tmp_1 = $1;
532                                         my $tmp_;
533                                         foreach $tmp_ (split '\|\|',$tmp_1) {
534                                                 $tmp_ =~ /defined\(([^\)]+)\)/;
535                                                 print STDERR "DEBUG: $file: found tag $1 = 1\n" if $debug;
536                                                 push(@tag,$1);
537                                                 $tag{$1}=1;
538                                         }
539                                 } else {
540                                         print STDERR "Warning: $file: complicated expression: $_\n" if $debug; # because it is O...
541                                         print STDERR "DEBUG: $file: found tag $1 = 1\n" if $debug;
542                                         push(@tag,$1);
543                                         $tag{$1}=1;
544                                 }
545                         } elsif (/^\#\s*error\s+(\w+) is disabled\./) {
546                                 my $tag_i = $#tag;
547                                 while($tag[$tag_i] ne "-") {
548                                         if ($tag[$tag_i] eq "OPENSSL_NO_".$1) {
549                                                 $tag{$tag[$tag_i]}=2;
550                                                 print STDERR "DEBUG: $file: chaged tag $1 = 2\n" if $debug;
551                                         }
552                                         $tag_i--;
553                                 }
554                         } elsif (/^\#\s*endif/) {
555                                 my $tag_i = $#tag;
556                                 while($tag_i > 0 && $tag[$tag_i] ne "-") {
557                                         my $t=$tag[$tag_i];
558                                         print STDERR "DEBUG: \$t=\"$t\"\n" if $debug;
559                                         if ($tag{$t}==2) {
560                                                 $tag{$t}=-1;
561                                         } else {
562                                                 $tag{$t}=0;
563                                         }
564                                         print STDERR "DEBUG: $file: changed tag ",$t," = ",$tag{$t},"\n" if $debug;
565                                         pop(@tag);
566                                         if ($t =~ /^OPENSSL_NO_([A-Z0-9_]+)$/) {
567                                                 $t=$1;
568                                         } elsif($t =~ /^OPENSSL_USE_([A-Z0-9_]+)$/) {
569                                                 $t=$1;
570                                         } else {
571                                                 $t="";
572                                         }
573                                         if ($t ne ""
574                                             && !grep(/^$t$/, @known_algorithms)) {
575                                                 $unknown_algorithms{$t} = 1;
576                                                 #print STDERR "DEBUG: Added as unknown algorithm: $t\n" if $debug;
577                                         }
578                                         $tag_i--;
579                                 }
580                                 pop(@tag);
581                         } elsif (/^\#\s*else/) {
582                                 my $tag_i = $#tag;
583                                 while($tag[$tag_i] ne "-") {
584                                         my $t=$tag[$tag_i];
585                                         $tag{$t}= -$tag{$t};
586                                         print STDERR "DEBUG: $file: changed tag ",$t," = ",$tag{$t},"\n" if $debug;
587                                         $tag_i--;
588                                 }
589                         } elsif (/^\#\s*if\s+1/) {
590                                 push(@tag,"-");
591                                 # Dummy tag
592                                 push(@tag,"TRUE");
593                                 $tag{"TRUE"}=1;
594                                 print STDERR "DEBUG: $file: found 1\n" if $debug;
595                         } elsif (/^\#\s*if\s+0/) {
596                                 push(@tag,"-");
597                                 # Dummy tag
598                                 push(@tag,"TRUE");
599                                 $tag{"TRUE"}=-1;
600                                 print STDERR "DEBUG: $file: found 0\n" if $debug;
601                         } elsif (/^\#\s*define\s+(\w+)\s+(\w+)/
602                                  && $symhacking && $tag{'TRUE'} != -1) {
603                                 # This is for aliasing.  When we find an alias,
604                                 # we have to invert
605                                 &$make_variant($1,$2);
606                                 print STDERR "DEBUG: $file: defined $1 = $2\n" if $debug;
607                         }
608                         if (/^\#/) {
609                                 @current_platforms =
610                                     grep(!/^$/,
611                                          map { $tag{$_} == 1 ? $_ :
612                                                    $tag{$_} == -1 ? "!".$_  : "" }
613                                          @known_platforms);
614                                 push @current_platforms
615                                     , grep(!/^$/,
616                                            map { $tag{"OPENSSL_SYS_".$_} == 1 ? $_ :
617                                                      $tag{"OPENSSL_SYS_".$_} == -1 ? "!".$_  : "" }
618                                            @known_ossl_platforms);
619                                 @current_algorithms = ();
620                                 @current_algorithms =
621                                     grep(!/^$/,
622                                          map { $tag{"OPENSSL_NO_".$_} == -1 ? $_ : "" }
623                                          @known_algorithms);
624                                 push @current_algorithms
625                                     , grep(!/^$/,
626                                          map { $tag{"OPENSSL_USE_".$_} == 1 ? $_ : "" }
627                                          @known_algorithms);
628                                 $def .=
629                                     "#INFO:"
630                                         .join(',',@current_platforms).":"
631                                             .join(',',@current_algorithms).";";
632                                 next;
633                         }
634                         if ($tag{'TRUE'} != -1) {
635                                 if (/^\s*DECLARE_STACK_OF\s*\(\s*(\w*)\s*\)/) {
636                                         next;
637                                 } elsif (/^\s*DECLARE_ASN1_ENCODE_FUNCTIONS\s*\(\s*(\w*)\s*,\s*(\w*)\s*,\s*(\w*)\s*\)/) {
638                                         $def .= "int d2i_$3(void);";
639                                         $def .= "int i2d_$3(void);";
640                                         # Variant for platforms that do not
641                                         # have to access globale variables
642                                         # in shared libraries through functions
643                                         $def .=
644                                             "#INFO:"
645                                                 .join(',',"!EXPORT_VAR_AS_FUNCTION",@current_platforms).":"
646                                                     .join(',',@current_algorithms).";";
647                                         $def .= "OPENSSL_EXTERN int $2_it;";
648                                         $def .=
649                                             "#INFO:"
650                                                 .join(',',@current_platforms).":"
651                                                     .join(',',@current_algorithms).";";
652                                         # Variant for platforms that have to
653                                         # access globale variables in shared
654                                         # libraries through functions
655                                         &$make_variant("$2_it","$2_it",
656                                                       "EXPORT_VAR_AS_FUNCTION",
657                                                       "FUNCTION");
658                                         next;
659                                 } elsif (/^\s*DECLARE_ASN1_FUNCTIONS_fname\s*\(\s*(\w*)\s*,\s*(\w*)\s*,\s*(\w*)\s*\)/) {
660                                         $def .= "int d2i_$3(void);";
661                                         $def .= "int i2d_$3(void);";
662                                         $def .= "int $3_free(void);";
663                                         $def .= "int $3_new(void);";
664                                         # Variant for platforms that do not
665                                         # have to access globale variables
666                                         # in shared libraries through functions
667                                         $def .=
668                                             "#INFO:"
669                                                 .join(',',"!EXPORT_VAR_AS_FUNCTION",@current_platforms).":"
670                                                     .join(',',@current_algorithms).";";
671                                         $def .= "OPENSSL_EXTERN int $2_it;";
672                                         $def .=
673                                             "#INFO:"
674                                                 .join(',',@current_platforms).":"
675                                                     .join(',',@current_algorithms).";";
676                                         # Variant for platforms that have to
677                                         # access globale variables in shared
678                                         # libraries through functions
679                                         &$make_variant("$2_it","$2_it",
680                                                       "EXPORT_VAR_AS_FUNCTION",
681                                                       "FUNCTION");
682                                         next;
683                                 } elsif (/^\s*DECLARE_ASN1_FUNCTIONS\s*\(\s*(\w*)\s*\)/ ||
684                                          /^\s*DECLARE_ASN1_FUNCTIONS_const\s*\(\s*(\w*)\s*\)/) {
685                                         $def .= "int d2i_$1(void);";
686                                         $def .= "int i2d_$1(void);";
687                                         $def .= "int $1_free(void);";
688                                         $def .= "int $1_new(void);";
689                                         # Variant for platforms that do not
690                                         # have to access globale variables
691                                         # in shared libraries through functions
692                                         $def .=
693                                             "#INFO:"
694                                                 .join(',',"!EXPORT_VAR_AS_FUNCTION",@current_platforms).":"
695                                                     .join(',',@current_algorithms).";";
696                                         $def .= "OPENSSL_EXTERN int $1_it;";
697                                         $def .=
698                                             "#INFO:"
699                                                 .join(',',@current_platforms).":"
700                                                     .join(',',@current_algorithms).";";
701                                         # Variant for platforms that have to
702                                         # access globale variables in shared
703                                         # libraries through functions
704                                         &$make_variant("$1_it","$1_it",
705                                                       "EXPORT_VAR_AS_FUNCTION",
706                                                       "FUNCTION");
707                                         next;
708                                 } elsif (/^\s*DECLARE_ASN1_ENCODE_FUNCTIONS_const\s*\(\s*(\w*)\s*,\s*(\w*)\s*\)/) {
709                                         $def .= "int d2i_$2(void);";
710                                         $def .= "int i2d_$2(void);";
711                                         # Variant for platforms that do not
712                                         # have to access globale variables
713                                         # in shared libraries through functions
714                                         $def .=
715                                             "#INFO:"
716                                                 .join(',',"!EXPORT_VAR_AS_FUNCTION",@current_platforms).":"
717                                                     .join(',',@current_algorithms).";";
718                                         $def .= "OPENSSL_EXTERN int $2_it;";
719                                         $def .=
720                                             "#INFO:"
721                                                 .join(',',@current_platforms).":"
722                                                     .join(',',@current_algorithms).";";
723                                         # Variant for platforms that have to
724                                         # access globale variables in shared
725                                         # libraries through functions
726                                         &$make_variant("$2_it","$2_it",
727                                                       "EXPORT_VAR_AS_FUNCTION",
728                                                       "FUNCTION");
729                                         next;
730                                 } elsif (/^\s*DECLARE_ASN1_ALLOC_FUNCTIONS\s*\(\s*(\w*)\s*\)/) {
731                                         $def .= "int $1_free(void);";
732                                         $def .= "int $1_new(void);";
733                                         next;
734                                 } elsif (/^\s*DECLARE_ASN1_FUNCTIONS_name\s*\(\s*(\w*)\s*,\s*(\w*)\s*\)/) {
735                                         $def .= "int d2i_$2(void);";
736                                         $def .= "int i2d_$2(void);";
737                                         $def .= "int $2_free(void);";
738                                         $def .= "int $2_new(void);";
739                                         # Variant for platforms that do not
740                                         # have to access globale variables
741                                         # in shared libraries through functions
742                                         $def .=
743                                             "#INFO:"
744                                                 .join(',',"!EXPORT_VAR_AS_FUNCTION",@current_platforms).":"
745                                                     .join(',',@current_algorithms).";";
746                                         $def .= "OPENSSL_EXTERN int $2_it;";
747                                         $def .=
748                                             "#INFO:"
749                                                 .join(',',@current_platforms).":"
750                                                     .join(',',@current_algorithms).";";
751                                         # Variant for platforms that have to
752                                         # access globale variables in shared
753                                         # libraries through functions
754                                         &$make_variant("$2_it","$2_it",
755                                                       "EXPORT_VAR_AS_FUNCTION",
756                                                       "FUNCTION");
757                                         next;
758                                 } elsif (/^\s*DECLARE_ASN1_ITEM\s*\(\s*(\w*)\s*\)/) {
759                                         # Variant for platforms that do not
760                                         # have to access globale variables
761                                         # in shared libraries through functions
762                                         $def .=
763                                             "#INFO:"
764                                                 .join(',',"!EXPORT_VAR_AS_FUNCTION",@current_platforms).":"
765                                                     .join(',',@current_algorithms).";";
766                                         $def .= "OPENSSL_EXTERN int $1_it;";
767                                         $def .=
768                                             "#INFO:"
769                                                 .join(',',@current_platforms).":"
770                                                     .join(',',@current_algorithms).";";
771                                         # Variant for platforms that have to
772                                         # access globale variables in shared
773                                         # libraries through functions
774                                         &$make_variant("$1_it","$1_it",
775                                                       "EXPORT_VAR_AS_FUNCTION",
776                                                       "FUNCTION");
777                                         next;
778                                 } elsif (/^\s*DECLARE_ASN1_NDEF_FUNCTION\s*\(\s*(\w*)\s*\)/) {
779                                         $def .= "int i2d_$1_NDEF(void);";
780                                 } elsif (/^\s*DECLARE_ASN1_SET_OF\s*\(\s*(\w*)\s*\)/) {
781                                         next;
782                                 } elsif (/^\s*DECLARE_ASN1_PRINT_FUNCTION\s*\(\s*(\w*)\s*\)/) {
783                                         $def .= "int $1_print_ctx(void);";
784                                         next;
785                                 } elsif (/^\s*DECLARE_ASN1_PRINT_FUNCTION_name\s*\(\s*(\w*)\s*,\s*(\w*)\s*\)/) {
786                                         $def .= "int $2_print_ctx(void);";
787                                         next;
788                                 } elsif (/^\s*DECLARE_PKCS12_STACK_OF\s*\(\s*(\w*)\s*\)/) {
789                                         next;
790                                 } elsif (/^DECLARE_PEM_rw\s*\(\s*(\w*)\s*,/ ||
791                                          /^DECLARE_PEM_rw_cb\s*\(\s*(\w*)\s*,/ ||
792                                          /^DECLARE_PEM_rw_const\s*\(\s*(\w*)\s*,/ ) {
793                                         $def .=
794                                             "#INFO:"
795                                                 .join(',',@current_platforms).":"
796                                                     .join(',',@current_algorithms).";";
797                                         $def .= "int PEM_read_$1(void);";
798                                         $def .= "int PEM_write_$1(void);";
799                                         $def .=
800                                             "#INFO:"
801                                                 .join(',',@current_platforms).":"
802                                                     .join(',',@current_algorithms).";";
803                                         # Things that are everywhere
804                                         $def .= "int PEM_read_bio_$1(void);";
805                                         $def .= "int PEM_write_bio_$1(void);";
806                                         next;
807                                 } elsif (/^DECLARE_PEM_write\s*\(\s*(\w*)\s*,/ ||
808                                         /^DECLARE_PEM_write_const\s*\(\s*(\w*)\s*,/ ||
809                                          /^DECLARE_PEM_write_cb\s*\(\s*(\w*)\s*,/ ) {
810                                         $def .=
811                                             "#INFO:"
812                                                 .join(',',@current_platforms).":"
813                                                     .join(',',@current_algorithms).";";
814                                         $def .= "int PEM_write_$1(void);";
815                                         $def .=
816                                             "#INFO:"
817                                                 .join(',',@current_platforms).":"
818                                                     .join(',',@current_algorithms).";";
819                                         # Things that are everywhere
820                                         $def .= "int PEM_write_bio_$1(void);";
821                                         next;
822                                 } elsif (/^DECLARE_PEM_read\s*\(\s*(\w*)\s*,/ ||
823                                          /^DECLARE_PEM_read_cb\s*\(\s*(\w*)\s*,/ ) {
824                                         $def .=
825                                             "#INFO:"
826                                                 .join(',',@current_platforms).":"
827                                                     .join(',',@current_algorithms).";";
828                                         $def .= "int PEM_read_$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                                         next;
836                                 } elsif (/^OPENSSL_DECLARE_GLOBAL\s*\(\s*(\w*)\s*,\s*(\w*)\s*\)/) {
837                                         # Variant for platforms that do not
838                                         # have to access globale variables
839                                         # in shared libraries through functions
840                                         $def .=
841                                             "#INFO:"
842                                                 .join(',',"!EXPORT_VAR_AS_FUNCTION",@current_platforms).":"
843                                                     .join(',',@current_algorithms).";";
844                                         $def .= "OPENSSL_EXTERN int _shadow_$2;";
845                                         $def .=
846                                             "#INFO:"
847                                                 .join(',',@current_platforms).":"
848                                                     .join(',',@current_algorithms).";";
849                                         # Variant for platforms that have to
850                                         # access globale variables in shared
851                                         # libraries through functions
852                                         &$make_variant("_shadow_$2","_shadow_$2",
853                                                       "EXPORT_VAR_AS_FUNCTION",
854                                                       "FUNCTION");
855                                 } elsif (/^\s*DEPRECATEDIN/) {
856                                         $parens = count_parens($_);
857                                         if ($parens == 0) {
858                                                 $def .= do_deprecated($_,
859                                                         \@current_platforms,
860                                                         \@current_algorithms);
861                                         } else {
862                                                 $stored_multiline = $_;
863                                                 $stored_multiline =~ s|\R$||;
864                                                 print STDERR "DEBUG: Found multiline DEPRECATEDIN starting with: $stored_multiline\n" if $debug;
865                                                 next;
866                                         }
867                                 } elsif ($tag{'CONST_STRICT'} != 1) {
868                                         if (/\{|\/\*|\([^\)]*$/) {
869                                                 $line = $_;
870                                         } else {
871                                                 $def .= $_;
872                                         }
873                                 }
874                         }
875                 }
876                 close(IN);
877
878                 my $algs;
879                 my $plays;
880
881                 print STDERR "DEBUG: postprocessing ----------\n" if $debug;
882                 foreach (split /;/, $def) {
883                         my $s; my $k = "FUNCTION"; my $p; my $a;
884                         s/^[\n\s]*//g;
885                         s/[\n\s]*$//g;
886                         next if(/\#undef/);
887                         next if(/typedef\W/);
888                         next if(/\#define/);
889
890                         # Reduce argument lists to empty ()
891                         # fold round brackets recursively: (t(*v)(t),t) -> (t{}{},t) -> {}
892                         while(/\(.*\)/s) {
893                                 s/\([^\(\)]+\)/\{\}/gs;
894                                 s/\(\s*\*\s*(\w+)\s*\{\}\s*\)/$1/gs;    #(*f{}) -> f
895                         }
896                         # pretend as we didn't use curly braces: {} -> ()
897                         s/\{\}/\(\)/gs;
898
899                         s/STACK_OF\(\)/void/gs;
900                         s/LHASH_OF\(\)/void/gs;
901
902                         print STDERR "DEBUG: \$_ = \"$_\"\n" if $debug;
903                         if (/^\#INFO:([^:]*):(.*)$/) {
904                                 $plats = $1;
905                                 $algs = $2;
906                                 print STDERR "DEBUG: found info on platforms ($plats) and algorithms ($algs)\n" if $debug;
907                                 next;
908                         } elsif (/^\s*OPENSSL_EXTERN\s.*?(\w+(\{[0-9]+\})?)(\[[0-9]*\])*\s*$/) {
909                                 $s = $1;
910                                 $k = "VARIABLE";
911                                 print STDERR "DEBUG: found external variable $s\n" if $debug;
912                         } elsif (/TYPEDEF_\w+_OF/s) {
913                                 next;
914                         } elsif (/(\w+)\s*\(\).*/s) {   # first token prior [first] () is
915                                 $s = $1;                # a function name!
916                                 print STDERR "DEBUG: found function $s\n" if $debug;
917                         } elsif (/\(/ and not (/=/)) {
918                                 print STDERR "File $file: cannot parse: $_;\n";
919                                 next;
920                         } else {
921                                 next;
922                         }
923
924                         $syms{$s} = 1;
925                         $kind{$s} = $k;
926
927                         $p = $plats;
928                         $a = $algs;
929
930                         $platform{$s} =
931                             &reduce_platforms((defined($platform{$s})?$platform{$s}.',':"").$p);
932                         $algorithm{$s} .= ','.$a;
933
934                         if (defined($variant{$s})) {
935                                 foreach $v (split /;/,$variant{$s}) {
936                                         (my $r, my $p, my $k) = split(/:/,$v);
937                                         my $ip = join ',',map({ /^!(.*)$/ ? $1 : "!".$_ } split /,/, $p);
938                                         $syms{$r} = 1;
939                                         if (!defined($k)) { $k = $kind{$s}; }
940                                         $kind{$r} = $k."(".$s.")";
941                                         $algorithm{$r} = $algorithm{$s};
942                                         $platform{$r} = &reduce_platforms($platform{$s}.",".$p.",".$p);
943                                         $platform{$s} = &reduce_platforms($platform{$s}.','.$ip.','.$ip);
944                                         print STDERR "DEBUG: \$variant{\"$s\"} = ",$v,"; \$r = $r; \$p = ",$platform{$r},"; \$a = ",$algorithm{$r},"; \$kind = ",$kind{$r},"\n" if $debug;
945                                 }
946                         }
947                         print STDERR "DEBUG: \$s = $s; \$p = ",$platform{$s},"; \$a = ",$algorithm{$s},"; \$kind = ",$kind{$s},"\n" if $debug;
948                 }
949         }
950
951         # Prune the returned symbols
952
953         delete $syms{"bn_dump1"};
954         $platform{"BIO_s_log"} .= ",!WIN32,!macintosh";
955
956         $platform{"PEM_read_NS_CERT_SEQ"} = "VMS";
957         $platform{"PEM_write_NS_CERT_SEQ"} = "VMS";
958         $platform{"PEM_read_P8_PRIV_KEY_INFO"} = "VMS";
959         $platform{"PEM_write_P8_PRIV_KEY_INFO"} = "VMS";
960         $platform{"EVP_sha384"} = "!VMSVAX";
961         $platform{"EVP_sha512"} = "!VMSVAX";
962         $platform{"SHA384_Init"} = "!VMSVAX";
963         $platform{"SHA384_Transform"} = "!VMSVAX";
964         $platform{"SHA384_Update"} = "!VMSVAX";
965         $platform{"SHA384_Final"} = "!VMSVAX";
966         $platform{"SHA384"} = "!VMSVAX";
967         $platform{"SHA512_Init"} = "!VMSVAX";
968         $platform{"SHA512_Transform"} = "!VMSVAX";
969         $platform{"SHA512_Update"} = "!VMSVAX";
970         $platform{"SHA512_Final"} = "!VMSVAX";
971         $platform{"SHA512"} = "!VMSVAX";
972
973
974         # Info we know about
975
976         push @ret, map { $_."\\".&info_string($_,"EXIST",
977                                               $platform{$_},
978                                               $kind{$_},
979                                               $algorithm{$_}) } keys %syms;
980
981         if (keys %unknown_algorithms) {
982                 print STDERR "WARNING: mkdef.pl doesn't know the following algorithms:\n";
983                 print STDERR "\t",join("\n\t",keys %unknown_algorithms),"\n";
984         }
985         return(@ret);
986 }
987
988 # Param: string of comma-separated platform-specs.
989 sub reduce_platforms
990 {
991         my ($platforms) = @_;
992         my $pl = defined($platforms) ? $platforms : "";
993         my %p = map { $_ => 0 } split /,/, $pl;
994         my $ret;
995
996         print STDERR "DEBUG: Entered reduce_platforms with \"$platforms\"\n"
997             if $debug;
998         # We do this, because if there's code like the following, it really
999         # means the function exists in all cases and should therefore be
1000         # everywhere.  By increasing and decreasing, we may attain 0:
1001         #
1002         # ifndef WIN16
1003         #    int foo();
1004         # else
1005         #    int _fat foo();
1006         # endif
1007         foreach $platform (split /,/, $pl) {
1008                 if ($platform =~ /^!(.*)$/) {
1009                         $p{$1}--;
1010                 } else {
1011                         $p{$platform}++;
1012                 }
1013         }
1014         foreach $platform (keys %p) {
1015                 if ($p{$platform} == 0) { delete $p{$platform}; }
1016         }
1017
1018         delete $p{""};
1019
1020         $ret = join(',',sort(map { $p{$_} < 0 ? "!".$_ : $_ } keys %p));
1021         print STDERR "DEBUG: Exiting reduce_platforms with \"$ret\"\n"
1022             if $debug;
1023         return $ret;
1024 }
1025
1026 sub info_string
1027 {
1028         (my $symbol, my $exist, my $platforms, my $kind, my $algorithms) = @_;
1029
1030         my %a = defined($algorithms) ?
1031             map { $_ => 1 } split /,/, $algorithms : ();
1032         my $k = defined($kind) ? $kind : "FUNCTION";
1033         my $ret;
1034         my $p = &reduce_platforms($platforms);
1035
1036         delete $a{""};
1037
1038         $ret = $exist;
1039         $ret .= ":".$p;
1040         $ret .= ":".$k;
1041         $ret .= ":".join(',',sort keys %a);
1042         return $ret;
1043 }
1044
1045 sub maybe_add_info
1046 {
1047         (my $name, *nums, my @symbols) = @_;
1048         my $sym;
1049         my $new_info = 0;
1050         my %syms=();
1051
1052         foreach $sym (@symbols) {
1053                 (my $s, my $i) = split /\\/, $sym;
1054                 if (defined($nums{$s})) {
1055                         $i =~ s/^(.*?:.*?:\w+)(\(\w+\))?/$1/;
1056                         (my $n, my $vers, my $dummy) = split /\\/, $nums{$s};
1057                         if (!defined($dummy) || $i ne $dummy) {
1058                                 $nums{$s} = $n."\\".$vers."\\".$i;
1059                                 $new_info++;
1060                                 print STDERR "DEBUG: maybe_add_info for $s: \"$dummy\" => \"$i\"\n" if $debug;
1061                         }
1062                 }
1063                 $syms{$s} = 1;
1064         }
1065
1066         my @s=sort { &parse_number($nums{$a},"n") <=> &parse_number($nums{$b},"n") } keys %nums;
1067         foreach $sym (@s) {
1068                 (my $n, my $vers, my $i) = split /\\/, $nums{$sym};
1069                 if (!defined($syms{$sym}) && $i !~ /^NOEXIST:/) {
1070                         $new_info++;
1071                         print STDERR "DEBUG: maybe_add_info for $sym: -> undefined\n" if $debug;
1072                 }
1073         }
1074         if ($new_info) {
1075                 print STDERR "$name: $new_info old symbols have updated info\n";
1076                 if (!$do_rewrite) {
1077                         print STDERR "You should do a rewrite to fix this.\n";
1078                 }
1079         } else {
1080         }
1081 }
1082
1083 # Param: string of comma-separated keywords, each possibly prefixed with a "!"
1084 sub is_valid
1085 {
1086         my ($keywords_txt,$platforms) = @_;
1087         my (@keywords) = split /,/,$keywords_txt;
1088         my ($falsesum, $truesum) = (0, 1);
1089
1090         # Param: one keyword
1091         sub recognise
1092         {
1093                 my ($keyword,$platforms) = @_;
1094
1095                 if ($platforms) {
1096                         # platforms
1097                         if ($keyword eq "VMSVAX" && $VMSVAX) { return 1; }
1098                         if ($keyword eq "VMSNonVAX" && $VMSNonVAX) { return 1; }
1099                         if ($keyword eq "VMS" && $VMS) { return 1; }
1100                         if ($keyword eq "WIN32" && $W32) { return 1; }
1101                         if ($keyword eq "WINNT" && $NT) { return 1; }
1102                         if ($keyword eq "OS2" && $OS2) { return 1; }
1103                         # Special platforms:
1104                         # EXPORT_VAR_AS_FUNCTION means that global variables
1105                         # will be represented as functions.  This currently
1106                         # only happens on VMS-VAX.
1107                         if ($keyword eq "EXPORT_VAR_AS_FUNCTION" && ($VMSVAX || $W32)) {
1108                                 return 1;
1109                         }
1110                         if ($keyword eq "ZLIB" && $zlib) { return 1; }
1111                         return 0;
1112                 } else {
1113                         # algorithms
1114                         if ($disabled_algorithms{$keyword} == 1) { return 0;}
1115
1116                         # Nothing recognise as true
1117                         return 1;
1118                 }
1119         }
1120
1121         foreach $k (@keywords) {
1122                 if ($k =~ /^!(.*)$/) {
1123                         $falsesum += &recognise($1,$platforms);
1124                 } else {
1125                         $truesum *= &recognise($k,$platforms);
1126                 }
1127         }
1128         print STDERR "DEBUG: [",$#keywords,",",$#keywords < 0,"] is_valid($keywords_txt) => (\!$falsesum) && $truesum = ",(!$falsesum) && $truesum,"\n" if $debug;
1129         return (!$falsesum) && $truesum;
1130 }
1131
1132 sub print_test_file
1133 {
1134         (*OUT,my $name,*nums,my $testall,my @symbols)=@_;
1135         my $n = 1; my @e; my @r;
1136         my $sym; my $prev = ""; my $prefSSLeay;
1137
1138         (@e)=grep(/^SSLeay(\{[0-9]+\})?\\.*?:.*?:.*/,@symbols);
1139         (@r)=grep(/^\w+(\{[0-9]+\})?\\.*?:.*?:.*/ && !/^SSLeay(\{[0-9]+\})?\\.*?:.*?:.*/,@symbols);
1140         @symbols=((sort @e),(sort @r));
1141
1142         foreach $sym (@symbols) {
1143                 (my $s, my $i) = $sym =~ /^(.*?)\\(.*)$/;
1144                 my $v = 0;
1145                 $v = 1 if $i=~ /^.*?:.*?:VARIABLE/;
1146                 my $p = ($i =~ /^[^:]*:([^:]*):/,$1);
1147                 my $a = ($i =~ /^[^:]*:[^:]*:[^:]*:([^:]*)/,$1);
1148                 if (!defined($nums{$s})) {
1149                         print STDERR "Warning: $s does not have a number assigned\n"
1150                             if(!$do_update);
1151                 } elsif (is_valid($p,1) && is_valid($a,0)) {
1152                         my $s2 = ($s =~ /^(.*?)(\{[0-9]+\})?$/, $1);
1153                         if ($prev eq $s2) {
1154                                 print OUT "\t/* The following has already appeared previously */\n";
1155                                 print STDERR "Warning: Symbol '",$s2,"' redefined. old=",($nums{$prev} =~ /^(.*?)\\/,$1),", new=",($nums{$s2} =~ /^(.*?)\\/,$1),"\n";
1156                         }
1157                         $prev = $s2;    # To warn about duplicates...
1158
1159                         (my $nn, my $vers, my $ni) = split /\\/, $nums{$s2};
1160                         if ($v) {
1161                                 print OUT "\textern int $s2; /* type unknown */ /* $nn $ni */\n";
1162                         } else {
1163                                 print OUT "\textern int $s2(); /* type unknown */ /* $nn $ni */\n";
1164                         }
1165                 }
1166         }
1167 }
1168
1169 sub get_version
1170 {
1171    return $config{version};
1172 }
1173
1174 sub print_def_file
1175 {
1176         (*OUT,my $name,*nums,my @symbols)=@_;
1177         my $n = 1; my @e; my @r; my @v; my $prev="";
1178         my $liboptions="";
1179         my $libname = $name;
1180         my $http_vendor = 'www.openssl.org/';
1181         my $version = get_version();
1182         my $what = "OpenSSL: implementation of Secure Socket Layer";
1183         my $description = "$what $version, $name - http://$http_vendor";
1184         my $prevsymversion = "", $prevprevsymversion = "";
1185         # For VMS
1186         my $prevnum = 0;
1187         my $symvtextcount = 0;
1188
1189         if ($W32)
1190                 { $libname.="32"; }
1191         elsif ($OS2)
1192                 { # DLL names should not clash on the whole system.
1193                   # However, they should not have any particular relationship
1194                   # to the name of the static library.  Chose descriptive names
1195                   # (must be at most 8 chars).
1196                   my %translate = (ssl => 'open_ssl', crypto => 'cryptssl');
1197                   $libname = $translate{$name} || $name;
1198                   $liboptions = <<EOO;
1199 INITINSTANCE
1200 DATA MULTIPLE NONSHARED
1201 EOO
1202                   # Vendor field can't contain colon, drat; so we omit http://
1203                   $description = "\@#$http_vendor:$version#\@$what; DLL for library $name.  Build for EMX -Zmtd";
1204                 }
1205
1206         if ($W32 || $OS2)
1207                 {
1208                 print OUT <<"EOF";
1209 ;
1210 ; Definition file for the DLL version of the $name library from OpenSSL
1211 ;
1212
1213 LIBRARY         $libname        $liboptions
1214
1215 EOF
1216
1217                 print "EXPORTS\n";
1218                 }
1219         elsif ($VMS)
1220                 {
1221                 print OUT <<"EOF";
1222 CASE_SENSITIVE=YES
1223 SYMBOL_VECTOR=(-
1224 EOF
1225                 $symvtextcount = 16; # length of "SYMBOL_VECTOR=(-"
1226                 }
1227
1228         (@r)=grep(/^\w+(\{[0-9]+\})?\\.*?:.*?:FUNCTION/,@symbols);
1229         (@v)=grep(/^\w+(\{[0-9]+\})?\\.*?:.*?:VARIABLE/,@symbols);
1230         if ($VMS) {
1231             # VMS needs to have the symbols on slot number order
1232             @symbols=(map { $_->[1] }
1233                       sort { $a->[0] <=> $b->[0] }
1234                       map { (my $s, my $i) = $_ =~ /^(.*?)\\(.*)$/;
1235                             die "Error: $s doesn't have a number assigned\n"
1236                                 if !defined($nums{$s});
1237                             (my $n, my @rest) = split /\\/, $nums{$s};
1238                             [ $n, $_ ] } (@e, @r, @v));
1239         } else {
1240             @symbols=((sort @e),(sort @r), (sort @v));
1241         }
1242
1243         my ($baseversion, $currversion) = get_openssl_version();
1244         my $thisversion;
1245         do {
1246                 if (!defined($thisversion)) {
1247                         $thisversion = $baseversion;
1248                 } else {
1249                         $thisversion = get_next_version($thisversion);
1250                 }
1251                 foreach $sym (@symbols) {
1252                         (my $s, my $i) = $sym =~ /^(.*?)\\(.*)$/;
1253                         my $v = 0;
1254                         $v = 1 if $i =~ /^.*?:.*?:VARIABLE/;
1255                         if (!defined($nums{$s})) {
1256                                 die "Error: $s does not have a number assigned\n"
1257                                         if(!$do_update);
1258                         } else {
1259                                 (my $n, my $symversion, my $dummy) = split /\\/, $nums{$s};
1260                                 next if $symversion ne $thisversion;
1261                                 my %pf = ();
1262                                 my $p = ($i =~ /^[^:]*:([^:]*):/,$1);
1263                                 my $a = ($i =~ /^[^:]*:[^:]*:[^:]*:([^:]*)/,$1);
1264                                 if (is_valid($p,1) && is_valid($a,0)) {
1265                                         my $s2 = ($s =~ /^(.*?)(\{[0-9]+\})?$/, $1);
1266                                         if ($prev eq $s2) {
1267                                                 print STDERR "Warning: Symbol '",$s2,
1268                                                         "' redefined. old=",($nums{$prev} =~ /^(.*?)\\/,$1),
1269                                                         ", new=",($nums{$s2} =~ /^(.*?)\\/,$1),"\n";
1270                                         }
1271                                         $prev = $s2;    # To warn about duplicates...
1272                                         if($linux) {
1273                                                 if ($symversion ne $prevsymversion) {
1274                                                         if ($prevsymversion ne "") {
1275                                                                 if ($prevprevsymversion ne "") {
1276                                                                         print OUT "} OPENSSL_"
1277                                                                                                 ."$prevprevsymversion;\n\n";
1278                                                                 } else {
1279                                                                         print OUT "};\n\n";
1280                                                                 }
1281                                                         }
1282                                                         print OUT "OPENSSL_$symversion {\n    global:\n";
1283                                                         $prevprevsymversion = $prevsymversion;
1284                                                         $prevsymversion = $symversion;
1285                                                 }
1286                                                 print OUT "        $s2;\n";
1287                                         } elsif ($VMS) {
1288                                             while(++$prevnum < $n) {
1289                                                 my $symline=" ,SPARE -\n  ,SPARE -\n";
1290                                                 if ($symvtextcount + length($symline) - 2 > 1024) {
1291                                                     print OUT ")\nSYMBOL_VECTOR=(-\n";
1292                                                     $symvtextcount = 16; # length of "SYMBOL_VECTOR=(-"
1293                                                 }
1294                                                 if ($symvtextcount == 16) {
1295                                                     # Take away first comma
1296                                                     $symline =~ s/,//;
1297                                                 }
1298                                                 print OUT $symline;
1299                                                 $symvtextcount += length($symline) - 2;
1300                                             }
1301                                             (my $s_uc = $s) =~ tr/a-z/A-Z/;
1302                                             my $symtype=
1303                                                 $v ? "DATA" : "PROCEDURE";
1304                                             my $symline=
1305                                                 ($s_uc ne $s
1306                                                  ? " ,$s_uc/$s=$symtype -\n  ,$s=$symtype -\n"
1307                                                  : " ,$s=$symtype -\n  ,SPARE -\n");
1308                                             if ($symvtextcount + length($symline) - 2 > 1024) {
1309                                                 print OUT ")\nSYMBOL_VECTOR=(-\n";
1310                                                 $symvtextcount = 16; # length of "SYMBOL_VECTOR=(-"
1311                                             }
1312                                             if ($symvtextcount == 16) {
1313                                                 # Take away first comma
1314                                                 $symline =~ s/,//;
1315                                             }
1316                                             print OUT $symline;
1317                                             $symvtextcount += length($symline) - 2;
1318                                         } elsif($v && !$OS2) {
1319                                                 printf OUT "    %s%-39s @%-8d DATA\n",
1320                                                                 ($W32)?"":"_",$s2,$n;
1321                                         } else {
1322                                                 printf OUT "    %s%-39s @%d\n",
1323                                                                 ($W32||$OS2)?"":"_",$s2,$n;
1324                                         }
1325                                 }
1326                         }
1327                 }
1328         } while ($thisversion ne $currversion);
1329         if ($linux) {
1330                 if ($prevprevsymversion ne "") {
1331                         print OUT "    local: *;\n} OPENSSL_$prevprevsymversion;\n\n";
1332                 } else {
1333                         print OUT "    local: *;\n};\n\n";
1334                 }
1335         } elsif ($VMS) {
1336             print OUT ")\n";
1337             (my $libvmaj, my $libvmin, my $libvedit) =
1338                 $currversion =~ /^(\d+)_(\d+)_(\d+)$/;
1339             # The reason to multiply the edit number with 100 is to make space
1340             # for the possibility that we want to encode the patch letters
1341             print OUT "GSMATCH=LEQUAL,",($libvmaj * 100 + $libvmin),",",($libvedit * 100),"\n";
1342         }
1343         printf OUT "\n";
1344 }
1345
1346 sub load_numbers
1347 {
1348         my($name)=@_;
1349         my(@a,%ret);
1350         my $prevversion;
1351
1352         $max_num = 0;
1353         $num_noinfo = 0;
1354         $prev = "";
1355         $prev_cnt = 0;
1356
1357         my ($baseversion, $currversion) = get_openssl_version();
1358
1359         open(IN,"<$name") || die "unable to open $name:$!\n";
1360         while (<IN>) {
1361                 s|\R$||;        # Better chomp
1362                 s/#.*$//;
1363                 next if /^\s*$/;
1364                 @a=split;
1365                 if (defined $ret{$a[0]}) {
1366                         # This is actually perfectly OK
1367                         #print STDERR "Warning: Symbol '",$a[0],"' redefined. old=",$ret{$a[0]},", new=",$a[1],"\n";
1368                 }
1369                 if ($max_num > $a[1]) {
1370                         print STDERR "Warning: Number decreased from ",$max_num," to ",$a[1],"\n";
1371                 }
1372                 elsif ($max_num == $a[1]) {
1373                         # This is actually perfectly OK
1374                         #print STDERR "Warning: Symbol ",$a[0]," has same number as previous ",$prev,": ",$a[1],"\n";
1375                         if ($a[0] eq $prev) {
1376                                 $prev_cnt++;
1377                                 $a[0] .= "{$prev_cnt}";
1378                         }
1379                 }
1380                 else {
1381                         $prev_cnt = 0;
1382                 }
1383                 if ($#a < 2) {
1384                         # Existence will be proven later, in do_defs
1385                         $ret{$a[0]}=$a[1];
1386                         $num_noinfo++;
1387                 } else {
1388                         #Sanity check the version number
1389                         if (defined $prevversion) {
1390                                 check_version_lte($prevversion, $a[2]);
1391                         }
1392                         check_version_lte($a[2], $currversion);
1393                         $prevversion = $a[2];
1394                         $ret{$a[0]}=$a[1]."\\".$a[2]."\\".$a[3]; # \\ 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 $v, 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         my @r = grep(/^\w+(\{[0-9]+\})?\\.*?:.*?:\w+\(\w+\)/,@symbols);
1428         my $r; my %r; my %rsyms;
1429         foreach $r (@r) {
1430                 (my $s, my $i) = split /\\/, $r;
1431                 my $a = $1 if $i =~ /^.*?:.*?:\w+\((\w+)\)/;
1432                 $i =~ s/^(.*?:.*?:\w+)\(\w+\)/$1/;
1433                 $r{$a} = $s."\\".$i;
1434                 $rsyms{$s} = 1;
1435         }
1436
1437         my %syms = ();
1438         foreach $_ (@symbols) {
1439                 (my $n, my $i) = split /\\/;
1440                 $syms{$n} = 1;
1441         }
1442
1443         my @s=sort {
1444             &parse_number($nums{$a},"n") <=> &parse_number($nums{$b},"n")
1445             || $a cmp $b
1446         } keys %nums;
1447         foreach $sym (@s) {
1448                 (my $n, my $vers, my $i) = split /\\/, $nums{$sym};
1449                 next if defined($i) && $i =~ /^.*?:.*?:\w+\(\w+\)/;
1450                 next if defined($rsyms{$sym});
1451                 print STDERR "DEBUG: rewrite_numbers for sym = ",$sym,": i = ",$i,", n = ",$n,", rsym{sym} = ",$rsyms{$sym},"syms{sym} = ",$syms{$sym},"\n" if $debug;
1452                 $i="NOEXIST::FUNCTION:"
1453                         if !defined($i) || $i eq "" || !defined($syms{$sym});
1454                 my $s2 = $sym;
1455                 $s2 =~ s/\{[0-9]+\}$//;
1456                 printf OUT "%s%-39s %d\t%s\t%s\n","",$s2,$n,$vers,$i;
1457                 if (exists $r{$sym}) {
1458                         (my $s, $i) = split /\\/,$r{$sym};
1459                         my $s2 = $s;
1460                         $s2 =~ s/\{[0-9]+\}$//;
1461                         printf OUT "%s%-39s %d\t%s\t%s\n","",$s2,$n,$vers,$i;
1462                 }
1463         }
1464 }
1465
1466 sub update_numbers
1467 {
1468         (*OUT,$name,*nums,my $start_num, my @symbols)=@_;
1469         my $new_syms = 0;
1470         my $basevers;
1471         my $vers;
1472
1473         ($basevers, $vers) = get_openssl_version();
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                 if (!exists $nums{$s}) {
1492                         $new_syms++;
1493                         my $s2 = $s;
1494                         $s2 =~ s/\{[0-9]+\}$//;
1495                         printf OUT "%s%-39s %d\t%s\t%s\n","",$s2, ++$start_num,$vers,$i;
1496                         if (exists $r{$s}) {
1497                                 ($s, $i) = split /\\/,$r{$s};
1498                                 $s =~ s/\{[0-9]+\}$//;
1499                                 printf OUT "%s%-39s %d\t%s\t%s\n","",$s, $start_num,$vers,$i;
1500                         }
1501                 }
1502         }
1503         if($new_syms) {
1504                 print STDERR "$name: Added $new_syms new symbols\n";
1505         } else {
1506                 print STDERR "$name: No new symbols added\n";
1507         }
1508 }
1509
1510 sub check_existing
1511 {
1512         (*nums, my @symbols)=@_;
1513         my %existing; my @remaining;
1514         @remaining=();
1515         foreach $sym (@symbols) {
1516                 (my $s, my $i) = $sym =~ /^(.*?)\\(.*)$/;
1517                 $existing{$s}=1;
1518         }
1519         foreach $sym (keys %nums) {
1520                 if (!exists $existing{$sym}) {
1521                         push @remaining, $sym;
1522                 }
1523         }
1524         if(@remaining) {
1525                 print STDERR "The following symbols do not seem to exist:\n";
1526                 foreach $sym (@remaining) {
1527                         print STDERR "\t",$sym,"\n";
1528                 }
1529         }
1530 }
1531
1532 sub count_parens
1533 {
1534         my $line = shift(@_);
1535
1536         my $open = $line =~ tr/\(//;
1537         my $close = $line =~ tr/\)//;
1538
1539         return $open - $close;
1540 }
1541
1542 #Parse opensslv.h to get the current version number. Also work out the base
1543 #version, i.e. the lowest version number that is binary compatible with this
1544 #version
1545 sub get_openssl_version()
1546 {
1547         my $fn = catfile($config{sourcedir},"include","openssl","opensslv.h");
1548         open (IN, "$fn") || die "Can't open opensslv.h";
1549
1550         while(<IN>) {
1551                 if (/OPENSSL_VERSION_TEXT\s+"OpenSSL (\d\.\d\.)(\d[a-z]*)(-| )/) {
1552                         my $suffix = $2;
1553                         (my $baseversion = $1) =~ s/\./_/g;
1554                         close IN;
1555                         return ($baseversion."0", $baseversion.$suffix);
1556                 }
1557         }
1558         die "Can't find OpenSSL version number\n";
1559 }
1560
1561 #Given an OpenSSL version number, calculate the next version number. If the
1562 #version number gets to a.b.czz then we go to a.b.(c+1)
1563 sub get_next_version()
1564 {
1565         my $thisversion = shift;
1566
1567         my ($base, $letter) = $thisversion =~ /^(\d_\d_\d)([a-z]{0,2})$/;
1568
1569         if ($letter eq "zz") {
1570                 my $lastnum = substr($base, -1);
1571                 return substr($base, 0, length($base)-1).(++$lastnum);
1572         }
1573         return $base.get_next_letter($letter);
1574 }
1575
1576 #Given the letters off the end of an OpenSSL version string, calculate what
1577 #the letters for the next release would be.
1578 sub get_next_letter()
1579 {
1580         my $thisletter = shift;
1581         my $baseletter = "";
1582         my $endletter;
1583
1584         if ($thisletter eq "") {
1585                 return "a";
1586         }
1587         if ((length $thisletter) > 1) {
1588                 ($baseletter, $endletter) = $thisletter =~ /([a-z]+)([a-z])/;
1589         } else {
1590                 $endletter = $thisletter;
1591         }
1592
1593         if ($endletter eq "z") {
1594                 return $thisletter."a";
1595         } else {
1596                 return $baseletter.(++$endletter);
1597         }
1598 }
1599
1600 #Check if a version is less than or equal to the current version. Its a fatal
1601 #error if not. They must also only differ in letters, or the last number (i.e.
1602 #the first two numbers must be the same)
1603 sub check_version_lte()
1604 {
1605         my ($testversion, $currversion) = @_;
1606         my $lentv;
1607         my $lencv;
1608         my $cvbase;
1609
1610         my ($cvnums) = $currversion =~ /^(\d_\d_\d)[a-z]*$/;
1611         my ($tvnums) = $testversion =~ /^(\d_\d_\d)[a-z]*$/;
1612
1613         #Die if we can't parse the version numbers or they don't look sane
1614         die "Invalid version number: $testversion and $currversion\n"
1615                 if (!defined($cvnums) || !defined($tvnums)
1616                         || length($cvnums) != 5
1617                         || length($tvnums) != 5);
1618
1619         #If the base versions (without letters) don't match check they only differ
1620         #in the last number
1621         if ($cvnums ne $tvnums) {
1622                 die "Invalid version number: $testversion "
1623                         ."for current version $currversion\n"
1624                         if (substr($cvnums, -1) < substr($tvnums, -1)
1625                                 || substr($cvnums, 0, 4) ne substr($tvnums, 0, 4));
1626                 return;
1627         }
1628         #If we get here then the base version (i.e. the numbers) are the same - they
1629         #only differ in the letters
1630
1631         $lentv = length $testversion;
1632         $lencv = length $currversion;
1633
1634         #If the testversion has more letters than the current version then it must
1635         #be later (or malformed)
1636         if ($lentv > $lencv) {
1637                 die "Invalid version number: $testversion "
1638                         ."is greater than $currversion\n";
1639         }
1640
1641         #Get the last letter from the current version
1642         my ($cvletter) = $currversion =~ /([a-z])$/;
1643         if (defined $cvletter) {
1644                 ($cvbase) = $currversion =~ /(\d_\d_\d[a-z]*)$cvletter$/;
1645         } else {
1646                 $cvbase = $currversion;
1647         }
1648         die "Unable to parse version number $currversion" if (!defined $cvbase);
1649         my $tvbase;
1650         my ($tvletter) = $testversion =~ /([a-z])$/;
1651         if (defined $tvletter) {
1652                 ($tvbase) = $testversion =~ /(\d_\d_\d[a-z]*)$tvletter$/;
1653         } else {
1654                 $tvbase = $testversion;
1655         }
1656         die "Unable to parse version number $testversion" if (!defined $tvbase);
1657
1658         if ($lencv > $lentv) {
1659                 #If current version has more letters than testversion then testversion
1660                 #minus the final letter must be a substring of the current version
1661                 die "Invalid version number $testversion "
1662                         ."is greater than $currversion or is invalid\n"
1663                         if (index($cvbase, $tvbase) != 0);
1664         } else {
1665                 #If both versions have the same number of letters then they must be
1666                 #equal up to the last letter, and the last letter in testversion must
1667                 #be less than or equal to the last letter in current version.
1668                 die "Invalid version number $testversion "
1669                         ."is greater than $currversion\n"
1670                         if (($cvbase ne $tvbase) && ($tvletter gt $cvletter));
1671         }
1672 }
1673
1674 sub do_deprecated()
1675 {
1676         my ($decl, $plats, $algs) = @_;
1677         $decl =~ /^\s*(DEPRECATEDIN_\d+_\d+_\d+)\s*\((.*)\)\s*$/
1678             or die "Bad DEPRECTEDIN: $decl\n";
1679         my $info1 .= "#INFO:";
1680         $info1 .= join(',', @{$plats}) . ":";
1681         my $info2 = $info1;
1682         $info1 .= join(',',@{$algs}, $1) . ";";
1683         $info2 .= join(',',@{$algs}) . ";";
1684         return $info1 . $2 . ";" . $info2;
1685 }