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