unified build scheme: add a "unified" template for VMS descrip.mms
[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                                 chomp $stored_multiline;
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                                 chomp; # remove eol
484                                 chop; # remove ending backslash
485                                 $line = $_;
486                                 next;
487                         }
488
489                         if(/\/\*/) {
490                                 if (not /\*\//) {       # multiline comment...
491                                         $line = $_;     # ... just accumulate
492                                         next;
493                                 } else {
494                                         s/\/\*.*?\*\///gs;# wipe it
495                                 }
496                         }
497
498                         if ($cpp) {
499                                 $cpp++ if /^#\s*if/;
500                                 $cpp-- if /^#\s*endif/;
501                                 next;
502                         }
503                         $cpp = 1 if /^#.*ifdef.*cplusplus/;
504
505                         s/{[^{}]*}//gs;                      # ignore {} blocks
506                         print STDERR "DEBUG: \$def=\"$def\"\n" if $debug && $def ne "";
507                         print STDERR "DEBUG: \$_=\"$_\"\n" if $debug;
508                         if (/^\#\s*ifndef\s+(.*)/) {
509                                 push(@tag,"-");
510                                 push(@tag,$1);
511                                 $tag{$1}=-1;
512                                 print STDERR "DEBUG: $file: found tag $1 = -1\n" if $debug;
513                         } elsif (/^\#\s*if\s+!defined\(([^\)]+)\)/) {
514                                 push(@tag,"-");
515                                 if (/^\#\s*if\s+(!defined\(([^\)]+)\)(\s+\&\&\s+!defined\(([^\)]+)\))*)$/) {
516                                         my $tmp_1 = $1;
517                                         my $tmp_;
518                                         foreach $tmp_ (split '\&\&',$tmp_1) {
519                                                 $tmp_ =~ /!defined\(([^\)]+)\)/;
520                                                 print STDERR "DEBUG: $file: found tag $1 = -1\n" if $debug;
521                                                 push(@tag,$1);
522                                                 $tag{$1}=-1;
523                                         }
524                                 } else {
525                                         print STDERR "Warning: $file: complicated expression: $_" if $debug; # because it is O...
526                                         print STDERR "DEBUG: $file: found tag $1 = -1\n" if $debug;
527                                         push(@tag,$1);
528                                         $tag{$1}=-1;
529                                 }
530                         } elsif (/^\#\s*ifdef\s+(\S*)/) {
531                                 push(@tag,"-");
532                                 push(@tag,$1);
533                                 $tag{$1}=1;
534                                 print STDERR "DEBUG: $file: found tag $1 = 1\n" if $debug;
535                         } elsif (/^\#\s*if\s+defined\(([^\)]+)\)/) {
536                                 push(@tag,"-");
537                                 if (/^\#\s*if\s+(defined\(([^\)]+)\)(\s+\|\|\s+defined\(([^\)]+)\))*)$/) {
538                                         my $tmp_1 = $1;
539                                         my $tmp_;
540                                         foreach $tmp_ (split '\|\|',$tmp_1) {
541                                                 $tmp_ =~ /defined\(([^\)]+)\)/;
542                                                 print STDERR "DEBUG: $file: found tag $1 = 1\n" if $debug;
543                                                 push(@tag,$1);
544                                                 $tag{$1}=1;
545                                         }
546                                 } else {
547                                         print STDERR "Warning: $file: complicated expression: $_\n" if $debug; # because it is O...
548                                         print STDERR "DEBUG: $file: found tag $1 = 1\n" if $debug;
549                                         push(@tag,$1);
550                                         $tag{$1}=1;
551                                 }
552                         } elsif (/^\#\s*error\s+(\w+) is disabled\./) {
553                                 my $tag_i = $#tag;
554                                 while($tag[$tag_i] ne "-") {
555                                         if ($tag[$tag_i] eq "OPENSSL_NO_".$1) {
556                                                 $tag{$tag[$tag_i]}=2;
557                                                 print STDERR "DEBUG: $file: chaged tag $1 = 2\n" if $debug;
558                                         }
559                                         $tag_i--;
560                                 }
561                         } elsif (/^\#\s*endif/) {
562                                 my $tag_i = $#tag;
563                                 while($tag_i > 0 && $tag[$tag_i] ne "-") {
564                                         my $t=$tag[$tag_i];
565                                         print STDERR "DEBUG: \$t=\"$t\"\n" if $debug;
566                                         if ($tag{$t}==2) {
567                                                 $tag{$t}=-1;
568                                         } else {
569                                                 $tag{$t}=0;
570                                         }
571                                         print STDERR "DEBUG: $file: changed tag ",$t," = ",$tag{$t},"\n" if $debug;
572                                         pop(@tag);
573                                         if ($t =~ /^OPENSSL_NO_([A-Z0-9_]+)$/) {
574                                                 $t=$1;
575                                         } elsif($t =~ /^OPENSSL_USE_([A-Z0-9_]+)$/) {
576                                                 $t=$1;
577                                         } else {
578                                                 $t="";
579                                         }
580                                         if ($t ne ""
581                                             && !grep(/^$t$/, @known_algorithms)) {
582                                                 $unknown_algorithms{$t} = 1;
583                                                 #print STDERR "DEBUG: Added as unknown algorithm: $t\n" if $debug;
584                                         }
585                                         $tag_i--;
586                                 }
587                                 pop(@tag);
588                         } elsif (/^\#\s*else/) {
589                                 my $tag_i = $#tag;
590                                 while($tag[$tag_i] ne "-") {
591                                         my $t=$tag[$tag_i];
592                                         $tag{$t}= -$tag{$t};
593                                         print STDERR "DEBUG: $file: changed tag ",$t," = ",$tag{$t},"\n" if $debug;
594                                         $tag_i--;
595                                 }
596                         } elsif (/^\#\s*if\s+1/) {
597                                 push(@tag,"-");
598                                 # Dummy tag
599                                 push(@tag,"TRUE");
600                                 $tag{"TRUE"}=1;
601                                 print STDERR "DEBUG: $file: found 1\n" if $debug;
602                         } elsif (/^\#\s*if\s+0/) {
603                                 push(@tag,"-");
604                                 # Dummy tag
605                                 push(@tag,"TRUE");
606                                 $tag{"TRUE"}=-1;
607                                 print STDERR "DEBUG: $file: found 0\n" if $debug;
608                         } elsif (/^\#\s*define\s+(\w+)\s+(\w+)/
609                                  && $symhacking && $tag{'TRUE'} != -1) {
610                                 # This is for aliasing.  When we find an alias,
611                                 # we have to invert
612                                 &$make_variant($1,$2);
613                                 print STDERR "DEBUG: $file: defined $1 = $2\n" if $debug;
614                         }
615                         if (/^\#/) {
616                                 @current_platforms =
617                                     grep(!/^$/,
618                                          map { $tag{$_} == 1 ? $_ :
619                                                    $tag{$_} == -1 ? "!".$_  : "" }
620                                          @known_platforms);
621                                 push @current_platforms
622                                     , grep(!/^$/,
623                                            map { $tag{"OPENSSL_SYS_".$_} == 1 ? $_ :
624                                                      $tag{"OPENSSL_SYS_".$_} == -1 ? "!".$_  : "" }
625                                            @known_ossl_platforms);
626                                 @current_algorithms = ();
627                                 @current_algorithms =
628                                     grep(!/^$/,
629                                          map { $tag{"OPENSSL_NO_".$_} == -1 ? $_ : "" }
630                                          @known_algorithms);
631                                 push @current_algorithms
632                                     , grep(!/^$/,
633                                          map { $tag{"OPENSSL_USE_".$_} == 1 ? $_ : "" }
634                                          @known_algorithms);
635                                 $def .=
636                                     "#INFO:"
637                                         .join(',',@current_platforms).":"
638                                             .join(',',@current_algorithms).";";
639                                 next;
640                         }
641                         if ($tag{'TRUE'} != -1) {
642                                 if (/^\s*DECLARE_STACK_OF\s*\(\s*(\w*)\s*\)/) {
643                                         next;
644                                 } elsif (/^\s*DECLARE_ASN1_ENCODE_FUNCTIONS\s*\(\s*(\w*)\s*,\s*(\w*)\s*,\s*(\w*)\s*\)/) {
645                                         $def .= "int d2i_$3(void);";
646                                         $def .= "int i2d_$3(void);";
647                                         # Variant for platforms that do not
648                                         # have to access globale variables
649                                         # in shared libraries through functions
650                                         $def .=
651                                             "#INFO:"
652                                                 .join(',',"!EXPORT_VAR_AS_FUNCTION",@current_platforms).":"
653                                                     .join(',',@current_algorithms).";";
654                                         $def .= "OPENSSL_EXTERN int $2_it;";
655                                         $def .=
656                                             "#INFO:"
657                                                 .join(',',@current_platforms).":"
658                                                     .join(',',@current_algorithms).";";
659                                         # Variant for platforms that have to
660                                         # access globale variables in shared
661                                         # libraries through functions
662                                         &$make_variant("$2_it","$2_it",
663                                                       "EXPORT_VAR_AS_FUNCTION",
664                                                       "FUNCTION");
665                                         next;
666                                 } elsif (/^\s*DECLARE_ASN1_FUNCTIONS_fname\s*\(\s*(\w*)\s*,\s*(\w*)\s*,\s*(\w*)\s*\)/) {
667                                         $def .= "int d2i_$3(void);";
668                                         $def .= "int i2d_$3(void);";
669                                         $def .= "int $3_free(void);";
670                                         $def .= "int $3_new(void);";
671                                         # Variant for platforms that do not
672                                         # have to access globale variables
673                                         # in shared libraries through functions
674                                         $def .=
675                                             "#INFO:"
676                                                 .join(',',"!EXPORT_VAR_AS_FUNCTION",@current_platforms).":"
677                                                     .join(',',@current_algorithms).";";
678                                         $def .= "OPENSSL_EXTERN int $2_it;";
679                                         $def .=
680                                             "#INFO:"
681                                                 .join(',',@current_platforms).":"
682                                                     .join(',',@current_algorithms).";";
683                                         # Variant for platforms that have to
684                                         # access globale variables in shared
685                                         # libraries through functions
686                                         &$make_variant("$2_it","$2_it",
687                                                       "EXPORT_VAR_AS_FUNCTION",
688                                                       "FUNCTION");
689                                         next;
690                                 } elsif (/^\s*DECLARE_ASN1_FUNCTIONS\s*\(\s*(\w*)\s*\)/ ||
691                                          /^\s*DECLARE_ASN1_FUNCTIONS_const\s*\(\s*(\w*)\s*\)/) {
692                                         $def .= "int d2i_$1(void);";
693                                         $def .= "int i2d_$1(void);";
694                                         $def .= "int $1_free(void);";
695                                         $def .= "int $1_new(void);";
696                                         # Variant for platforms that do not
697                                         # have to access globale variables
698                                         # in shared libraries through functions
699                                         $def .=
700                                             "#INFO:"
701                                                 .join(',',"!EXPORT_VAR_AS_FUNCTION",@current_platforms).":"
702                                                     .join(',',@current_algorithms).";";
703                                         $def .= "OPENSSL_EXTERN int $1_it;";
704                                         $def .=
705                                             "#INFO:"
706                                                 .join(',',@current_platforms).":"
707                                                     .join(',',@current_algorithms).";";
708                                         # Variant for platforms that have to
709                                         # access globale variables in shared
710                                         # libraries through functions
711                                         &$make_variant("$1_it","$1_it",
712                                                       "EXPORT_VAR_AS_FUNCTION",
713                                                       "FUNCTION");
714                                         next;
715                                 } elsif (/^\s*DECLARE_ASN1_ENCODE_FUNCTIONS_const\s*\(\s*(\w*)\s*,\s*(\w*)\s*\)/) {
716                                         $def .= "int d2i_$2(void);";
717                                         $def .= "int i2d_$2(void);";
718                                         # Variant for platforms that do not
719                                         # have to access globale variables
720                                         # in shared libraries through functions
721                                         $def .=
722                                             "#INFO:"
723                                                 .join(',',"!EXPORT_VAR_AS_FUNCTION",@current_platforms).":"
724                                                     .join(',',@current_algorithms).";";
725                                         $def .= "OPENSSL_EXTERN int $2_it;";
726                                         $def .=
727                                             "#INFO:"
728                                                 .join(',',@current_platforms).":"
729                                                     .join(',',@current_algorithms).";";
730                                         # Variant for platforms that have to
731                                         # access globale variables in shared
732                                         # libraries through functions
733                                         &$make_variant("$2_it","$2_it",
734                                                       "EXPORT_VAR_AS_FUNCTION",
735                                                       "FUNCTION");
736                                         next;
737                                 } elsif (/^\s*DECLARE_ASN1_ALLOC_FUNCTIONS\s*\(\s*(\w*)\s*\)/) {
738                                         $def .= "int $1_free(void);";
739                                         $def .= "int $1_new(void);";
740                                         next;
741                                 } elsif (/^\s*DECLARE_ASN1_FUNCTIONS_name\s*\(\s*(\w*)\s*,\s*(\w*)\s*\)/) {
742                                         $def .= "int d2i_$2(void);";
743                                         $def .= "int i2d_$2(void);";
744                                         $def .= "int $2_free(void);";
745                                         $def .= "int $2_new(void);";
746                                         # Variant for platforms that do not
747                                         # have to access globale variables
748                                         # in shared libraries through functions
749                                         $def .=
750                                             "#INFO:"
751                                                 .join(',',"!EXPORT_VAR_AS_FUNCTION",@current_platforms).":"
752                                                     .join(',',@current_algorithms).";";
753                                         $def .= "OPENSSL_EXTERN int $2_it;";
754                                         $def .=
755                                             "#INFO:"
756                                                 .join(',',@current_platforms).":"
757                                                     .join(',',@current_algorithms).";";
758                                         # Variant for platforms that have to
759                                         # access globale variables in shared
760                                         # libraries through functions
761                                         &$make_variant("$2_it","$2_it",
762                                                       "EXPORT_VAR_AS_FUNCTION",
763                                                       "FUNCTION");
764                                         next;
765                                 } elsif (/^\s*DECLARE_ASN1_ITEM\s*\(\s*(\w*)\s*\)/) {
766                                         # Variant for platforms that do not
767                                         # have to access globale variables
768                                         # in shared libraries through functions
769                                         $def .=
770                                             "#INFO:"
771                                                 .join(',',"!EXPORT_VAR_AS_FUNCTION",@current_platforms).":"
772                                                     .join(',',@current_algorithms).";";
773                                         $def .= "OPENSSL_EXTERN int $1_it;";
774                                         $def .=
775                                             "#INFO:"
776                                                 .join(',',@current_platforms).":"
777                                                     .join(',',@current_algorithms).";";
778                                         # Variant for platforms that have to
779                                         # access globale variables in shared
780                                         # libraries through functions
781                                         &$make_variant("$1_it","$1_it",
782                                                       "EXPORT_VAR_AS_FUNCTION",
783                                                       "FUNCTION");
784                                         next;
785                                 } elsif (/^\s*DECLARE_ASN1_NDEF_FUNCTION\s*\(\s*(\w*)\s*\)/) {
786                                         $def .= "int i2d_$1_NDEF(void);";
787                                 } elsif (/^\s*DECLARE_ASN1_SET_OF\s*\(\s*(\w*)\s*\)/) {
788                                         next;
789                                 } elsif (/^\s*DECLARE_ASN1_PRINT_FUNCTION\s*\(\s*(\w*)\s*\)/) {
790                                         $def .= "int $1_print_ctx(void);";
791                                         next;
792                                 } elsif (/^\s*DECLARE_ASN1_PRINT_FUNCTION_name\s*\(\s*(\w*)\s*,\s*(\w*)\s*\)/) {
793                                         $def .= "int $2_print_ctx(void);";
794                                         next;
795                                 } elsif (/^\s*DECLARE_PKCS12_STACK_OF\s*\(\s*(\w*)\s*\)/) {
796                                         next;
797                                 } elsif (/^DECLARE_PEM_rw\s*\(\s*(\w*)\s*,/ ||
798                                          /^DECLARE_PEM_rw_cb\s*\(\s*(\w*)\s*,/ ||
799                                          /^DECLARE_PEM_rw_const\s*\(\s*(\w*)\s*,/ ) {
800                                         $def .=
801                                             "#INFO:"
802                                                 .join(',',@current_platforms).":"
803                                                     .join(',',@current_algorithms).";";
804                                         $def .= "int PEM_read_$1(void);";
805                                         $def .= "int PEM_write_$1(void);";
806                                         $def .=
807                                             "#INFO:"
808                                                 .join(',',@current_platforms).":"
809                                                     .join(',',@current_algorithms).";";
810                                         # Things that are everywhere
811                                         $def .= "int PEM_read_bio_$1(void);";
812                                         $def .= "int PEM_write_bio_$1(void);";
813                                         next;
814                                 } elsif (/^DECLARE_PEM_write\s*\(\s*(\w*)\s*,/ ||
815                                         /^DECLARE_PEM_write_const\s*\(\s*(\w*)\s*,/ ||
816                                          /^DECLARE_PEM_write_cb\s*\(\s*(\w*)\s*,/ ) {
817                                         $def .=
818                                             "#INFO:"
819                                                 .join(',',@current_platforms).":"
820                                                     .join(',',@current_algorithms).";";
821                                         $def .= "int PEM_write_$1(void);";
822                                         $def .=
823                                             "#INFO:"
824                                                 .join(',',@current_platforms).":"
825                                                     .join(',',@current_algorithms).";";
826                                         # Things that are everywhere
827                                         $def .= "int PEM_write_bio_$1(void);";
828                                         next;
829                                 } elsif (/^DECLARE_PEM_read\s*\(\s*(\w*)\s*,/ ||
830                                          /^DECLARE_PEM_read_cb\s*\(\s*(\w*)\s*,/ ) {
831                                         $def .=
832                                             "#INFO:"
833                                                 .join(',',@current_platforms).":"
834                                                     .join(',',@current_algorithms).";";
835                                         $def .= "int PEM_read_$1(void);";
836                                         $def .=
837                                             "#INFO:"
838                                                 .join(',',@current_platforms).":"
839                                                     .join(',',@current_algorithms).";";
840                                         # Things that are everywhere
841                                         $def .= "int PEM_read_bio_$1(void);";
842                                         next;
843                                 } elsif (/^OPENSSL_DECLARE_GLOBAL\s*\(\s*(\w*)\s*,\s*(\w*)\s*\)/) {
844                                         # Variant for platforms that do not
845                                         # have to access globale variables
846                                         # in shared libraries through functions
847                                         $def .=
848                                             "#INFO:"
849                                                 .join(',',"!EXPORT_VAR_AS_FUNCTION",@current_platforms).":"
850                                                     .join(',',@current_algorithms).";";
851                                         $def .= "OPENSSL_EXTERN int _shadow_$2;";
852                                         $def .=
853                                             "#INFO:"
854                                                 .join(',',@current_platforms).":"
855                                                     .join(',',@current_algorithms).";";
856                                         # Variant for platforms that have to
857                                         # access globale variables in shared
858                                         # libraries through functions
859                                         &$make_variant("_shadow_$2","_shadow_$2",
860                                                       "EXPORT_VAR_AS_FUNCTION",
861                                                       "FUNCTION");
862                                 } elsif (/^\s*DEPRECATEDIN/) {
863                                         $parens = count_parens($_);
864                                         if ($parens == 0) {
865                                                 $def .= do_deprecated($_,
866                                                         \@current_platforms,
867                                                         \@current_algorithms);
868                                         } else {
869                                                 $stored_multiline = $_;
870                                                 chomp $stored_multiline;
871                                                 print STDERR "DEBUG: Found multiline DEPRECATEDIN starting with: $stored_multiline\n" if $debug;
872                                                 next;
873                                         }
874                                 } elsif ($tag{'CONST_STRICT'} != 1) {
875                                         if (/\{|\/\*|\([^\)]*$/) {
876                                                 $line = $_;
877                                         } else {
878                                                 $def .= $_;
879                                         }
880                                 }
881                         }
882                 }
883                 close(IN);
884
885                 my $algs;
886                 my $plays;
887
888                 print STDERR "DEBUG: postprocessing ----------\n" if $debug;
889                 foreach (split /;/, $def) {
890                         my $s; my $k = "FUNCTION"; my $p; my $a;
891                         s/^[\n\s]*//g;
892                         s/[\n\s]*$//g;
893                         next if(/\#undef/);
894                         next if(/typedef\W/);
895                         next if(/\#define/);
896
897                         # Reduce argument lists to empty ()
898                         # fold round brackets recursively: (t(*v)(t),t) -> (t{}{},t) -> {}
899                         while(/\(.*\)/s) {
900                                 s/\([^\(\)]+\)/\{\}/gs;
901                                 s/\(\s*\*\s*(\w+)\s*\{\}\s*\)/$1/gs;    #(*f{}) -> f
902                         }
903                         # pretend as we didn't use curly braces: {} -> ()
904                         s/\{\}/\(\)/gs;
905
906                         s/STACK_OF\(\)/void/gs;
907                         s/LHASH_OF\(\)/void/gs;
908
909                         print STDERR "DEBUG: \$_ = \"$_\"\n" if $debug;
910                         if (/^\#INFO:([^:]*):(.*)$/) {
911                                 $plats = $1;
912                                 $algs = $2;
913                                 print STDERR "DEBUG: found info on platforms ($plats) and algorithms ($algs)\n" if $debug;
914                                 next;
915                         } elsif (/^\s*OPENSSL_EXTERN\s.*?(\w+(\{[0-9]+\})?)(\[[0-9]*\])*\s*$/) {
916                                 $s = $1;
917                                 $k = "VARIABLE";
918                                 print STDERR "DEBUG: found external variable $s\n" if $debug;
919                         } elsif (/TYPEDEF_\w+_OF/s) {
920                                 next;
921                         } elsif (/(\w+)\s*\(\).*/s) {   # first token prior [first] () is
922                                 $s = $1;                # a function name!
923                                 print STDERR "DEBUG: found function $s\n" if $debug;
924                         } elsif (/\(/ and not (/=/)) {
925                                 print STDERR "File $file: cannot parse: $_;\n";
926                                 next;
927                         } else {
928                                 next;
929                         }
930
931                         $syms{$s} = 1;
932                         $kind{$s} = $k;
933
934                         $p = $plats;
935                         $a = $algs;
936
937                         $platform{$s} =
938                             &reduce_platforms((defined($platform{$s})?$platform{$s}.',':"").$p);
939                         $algorithm{$s} .= ','.$a;
940
941                         if (defined($variant{$s})) {
942                                 foreach $v (split /;/,$variant{$s}) {
943                                         (my $r, my $p, my $k) = split(/:/,$v);
944                                         my $ip = join ',',map({ /^!(.*)$/ ? $1 : "!".$_ } split /,/, $p);
945                                         $syms{$r} = 1;
946                                         if (!defined($k)) { $k = $kind{$s}; }
947                                         $kind{$r} = $k."(".$s.")";
948                                         $algorithm{$r} = $algorithm{$s};
949                                         $platform{$r} = &reduce_platforms($platform{$s}.",".$p.",".$p);
950                                         $platform{$s} = &reduce_platforms($platform{$s}.','.$ip.','.$ip);
951                                         print STDERR "DEBUG: \$variant{\"$s\"} = ",$v,"; \$r = $r; \$p = ",$platform{$r},"; \$a = ",$algorithm{$r},"; \$kind = ",$kind{$r},"\n" if $debug;
952                                 }
953                         }
954                         print STDERR "DEBUG: \$s = $s; \$p = ",$platform{$s},"; \$a = ",$algorithm{$s},"; \$kind = ",$kind{$s},"\n" if $debug;
955                 }
956         }
957
958         # Prune the returned symbols
959
960         delete $syms{"bn_dump1"};
961         $platform{"BIO_s_log"} .= ",!WIN32,!macintosh";
962
963         $platform{"PEM_read_NS_CERT_SEQ"} = "VMS";
964         $platform{"PEM_write_NS_CERT_SEQ"} = "VMS";
965         $platform{"PEM_read_P8_PRIV_KEY_INFO"} = "VMS";
966         $platform{"PEM_write_P8_PRIV_KEY_INFO"} = "VMS";
967         $platform{"EVP_sha384"} = "!VMSVAX";
968         $platform{"EVP_sha512"} = "!VMSVAX";
969         $platform{"SHA384_Init"} = "!VMSVAX";
970         $platform{"SHA384_Transform"} = "!VMSVAX";
971         $platform{"SHA384_Update"} = "!VMSVAX";
972         $platform{"SHA384_Final"} = "!VMSVAX";
973         $platform{"SHA384"} = "!VMSVAX";
974         $platform{"SHA512_Init"} = "!VMSVAX";
975         $platform{"SHA512_Transform"} = "!VMSVAX";
976         $platform{"SHA512_Update"} = "!VMSVAX";
977         $platform{"SHA512_Final"} = "!VMSVAX";
978         $platform{"SHA512"} = "!VMSVAX";
979
980
981         # Info we know about
982
983         push @ret, map { $_."\\".&info_string($_,"EXIST",
984                                               $platform{$_},
985                                               $kind{$_},
986                                               $algorithm{$_}) } keys %syms;
987
988         if (keys %unknown_algorithms) {
989                 print STDERR "WARNING: mkdef.pl doesn't know the following algorithms:\n";
990                 print STDERR "\t",join("\n\t",keys %unknown_algorithms),"\n";
991         }
992         return(@ret);
993 }
994
995 # Param: string of comma-separated platform-specs.
996 sub reduce_platforms
997 {
998         my ($platforms) = @_;
999         my $pl = defined($platforms) ? $platforms : "";
1000         my %p = map { $_ => 0 } split /,/, $pl;
1001         my $ret;
1002
1003         print STDERR "DEBUG: Entered reduce_platforms with \"$platforms\"\n"
1004             if $debug;
1005         # We do this, because if there's code like the following, it really
1006         # means the function exists in all cases and should therefore be
1007         # everywhere.  By increasing and decreasing, we may attain 0:
1008         #
1009         # ifndef WIN16
1010         #    int foo();
1011         # else
1012         #    int _fat foo();
1013         # endif
1014         foreach $platform (split /,/, $pl) {
1015                 if ($platform =~ /^!(.*)$/) {
1016                         $p{$1}--;
1017                 } else {
1018                         $p{$platform}++;
1019                 }
1020         }
1021         foreach $platform (keys %p) {
1022                 if ($p{$platform} == 0) { delete $p{$platform}; }
1023         }
1024
1025         delete $p{""};
1026
1027         $ret = join(',',sort(map { $p{$_} < 0 ? "!".$_ : $_ } keys %p));
1028         print STDERR "DEBUG: Exiting reduce_platforms with \"$ret\"\n"
1029             if $debug;
1030         return $ret;
1031 }
1032
1033 sub info_string
1034 {
1035         (my $symbol, my $exist, my $platforms, my $kind, my $algorithms) = @_;
1036
1037         my %a = defined($algorithms) ?
1038             map { $_ => 1 } split /,/, $algorithms : ();
1039         my $k = defined($kind) ? $kind : "FUNCTION";
1040         my $ret;
1041         my $p = &reduce_platforms($platforms);
1042
1043         delete $a{""};
1044
1045         $ret = $exist;
1046         $ret .= ":".$p;
1047         $ret .= ":".$k;
1048         $ret .= ":".join(',',sort keys %a);
1049         return $ret;
1050 }
1051
1052 sub maybe_add_info
1053 {
1054         (my $name, *nums, my @symbols) = @_;
1055         my $sym;
1056         my $new_info = 0;
1057         my %syms=();
1058
1059         foreach $sym (@symbols) {
1060                 (my $s, my $i) = split /\\/, $sym;
1061                 if (defined($nums{$s})) {
1062                         $i =~ s/^(.*?:.*?:\w+)(\(\w+\))?/$1/;
1063                         (my $n, my $vers, my $dummy) = split /\\/, $nums{$s};
1064                         if (!defined($dummy) || $i ne $dummy) {
1065                                 $nums{$s} = $n."\\".$vers."\\".$i;
1066                                 $new_info++;
1067                                 print STDERR "DEBUG: maybe_add_info for $s: \"$dummy\" => \"$i\"\n" if $debug;
1068                         }
1069                 }
1070                 $syms{$s} = 1;
1071         }
1072
1073         my @s=sort { &parse_number($nums{$a},"n") <=> &parse_number($nums{$b},"n") } keys %nums;
1074         foreach $sym (@s) {
1075                 (my $n, my $vers, my $i) = split /\\/, $nums{$sym};
1076                 if (!defined($syms{$sym}) && $i !~ /^NOEXIST:/) {
1077                         $new_info++;
1078                         print STDERR "DEBUG: maybe_add_info for $sym: -> undefined\n" if $debug;
1079                 }
1080         }
1081         if ($new_info) {
1082                 print STDERR "$name: $new_info old symbols have updated info\n";
1083                 if (!$do_rewrite) {
1084                         print STDERR "You should do a rewrite to fix this.\n";
1085                 }
1086         } else {
1087         }
1088 }
1089
1090 # Param: string of comma-separated keywords, each possibly prefixed with a "!"
1091 sub is_valid
1092 {
1093         my ($keywords_txt,$platforms) = @_;
1094         my (@keywords) = split /,/,$keywords_txt;
1095         my ($falsesum, $truesum) = (0, 1);
1096
1097         # Param: one keyword
1098         sub recognise
1099         {
1100                 my ($keyword,$platforms) = @_;
1101
1102                 if ($platforms) {
1103                         # platforms
1104                         if ($keyword eq "VMSVAX" && $VMSVAX) { return 1; }
1105                         if ($keyword eq "VMSNonVAX" && $VMSNonVAX) { return 1; }
1106                         if ($keyword eq "VMS" && $VMS) { return 1; }
1107                         if ($keyword eq "WIN32" && $W32) { return 1; }
1108                         if ($keyword eq "WINNT" && $NT) { return 1; }
1109                         if ($keyword eq "OS2" && $OS2) { return 1; }
1110                         # Special platforms:
1111                         # EXPORT_VAR_AS_FUNCTION means that global variables
1112                         # will be represented as functions.  This currently
1113                         # only happens on VMS-VAX.
1114                         if ($keyword eq "EXPORT_VAR_AS_FUNCTION" && ($VMSVAX || $W32)) {
1115                                 return 1;
1116                         }
1117                         if ($keyword eq "ZLIB" && $zlib) { return 1; }
1118                         return 0;
1119                 } else {
1120                         # algorithms
1121                         if ($disabled_algorithms{$keyword} == 1) { return 0;}
1122
1123                         # Nothing recognise as true
1124                         return 1;
1125                 }
1126         }
1127
1128         foreach $k (@keywords) {
1129                 if ($k =~ /^!(.*)$/) {
1130                         $falsesum += &recognise($1,$platforms);
1131                 } else {
1132                         $truesum *= &recognise($k,$platforms);
1133                 }
1134         }
1135         print STDERR "DEBUG: [",$#keywords,",",$#keywords < 0,"] is_valid($keywords_txt) => (\!$falsesum) && $truesum = ",(!$falsesum) && $truesum,"\n" if $debug;
1136         return (!$falsesum) && $truesum;
1137 }
1138
1139 sub print_test_file
1140 {
1141         (*OUT,my $name,*nums,my $testall,my @symbols)=@_;
1142         my $n = 1; my @e; my @r;
1143         my $sym; my $prev = ""; my $prefSSLeay;
1144
1145         (@e)=grep(/^SSLeay(\{[0-9]+\})?\\.*?:.*?:.*/,@symbols);
1146         (@r)=grep(/^\w+(\{[0-9]+\})?\\.*?:.*?:.*/ && !/^SSLeay(\{[0-9]+\})?\\.*?:.*?:.*/,@symbols);
1147         @symbols=((sort @e),(sort @r));
1148
1149         foreach $sym (@symbols) {
1150                 (my $s, my $i) = $sym =~ /^(.*?)\\(.*)$/;
1151                 my $v = 0;
1152                 $v = 1 if $i=~ /^.*?:.*?:VARIABLE/;
1153                 my $p = ($i =~ /^[^:]*:([^:]*):/,$1);
1154                 my $a = ($i =~ /^[^:]*:[^:]*:[^:]*:([^:]*)/,$1);
1155                 if (!defined($nums{$s})) {
1156                         print STDERR "Warning: $s does not have a number assigned\n"
1157                             if(!$do_update);
1158                 } elsif (is_valid($p,1) && is_valid($a,0)) {
1159                         my $s2 = ($s =~ /^(.*?)(\{[0-9]+\})?$/, $1);
1160                         if ($prev eq $s2) {
1161                                 print OUT "\t/* The following has already appeared previously */\n";
1162                                 print STDERR "Warning: Symbol '",$s2,"' redefined. old=",($nums{$prev} =~ /^(.*?)\\/,$1),", new=",($nums{$s2} =~ /^(.*?)\\/,$1),"\n";
1163                         }
1164                         $prev = $s2;    # To warn about duplicates...
1165
1166                         (my $nn, my $vers, my $ni) = split /\\/, $nums{$s2};
1167                         if ($v) {
1168                                 print OUT "\textern int $s2; /* type unknown */ /* $nn $ni */\n";
1169                         } else {
1170                                 print OUT "\textern int $s2(); /* type unknown */ /* $nn $ni */\n";
1171                         }
1172                 }
1173         }
1174 }
1175
1176 sub get_version
1177 {
1178    return $config{version};
1179 }
1180
1181 sub print_def_file
1182 {
1183         (*OUT,my $name,*nums,my @symbols)=@_;
1184         my $n = 1; my @e; my @r; my @v; my $prev="";
1185         my $liboptions="";
1186         my $libname = $name;
1187         my $http_vendor = 'www.openssl.org/';
1188         my $version = get_version();
1189         my $what = "OpenSSL: implementation of Secure Socket Layer";
1190         my $description = "$what $version, $name - http://$http_vendor";
1191         my $prevsymversion = "", $prevprevsymversion = "";
1192         # For VMS
1193         my $prevnum = 0;
1194         my $symvtextcount = 0;
1195
1196         if ($W32)
1197                 { $libname.="32"; }
1198         elsif ($OS2)
1199                 { # DLL names should not clash on the whole system.
1200                   # However, they should not have any particular relationship
1201                   # to the name of the static library.  Chose descriptive names
1202                   # (must be at most 8 chars).
1203                   my %translate = (ssl => 'open_ssl', crypto => 'cryptssl');
1204                   $libname = $translate{$name} || $name;
1205                   $liboptions = <<EOO;
1206 INITINSTANCE
1207 DATA MULTIPLE NONSHARED
1208 EOO
1209                   # Vendor field can't contain colon, drat; so we omit http://
1210                   $description = "\@#$http_vendor:$version#\@$what; DLL for library $name.  Build for EMX -Zmtd";
1211                 }
1212
1213         if ($W32 || $OS2)
1214                 {
1215                 print OUT <<"EOF";
1216 ;
1217 ; Definition file for the DLL version of the $name library from OpenSSL
1218 ;
1219
1220 LIBRARY         $libname        $liboptions
1221
1222 EOF
1223
1224                 print "EXPORTS\n";
1225                 }
1226         elsif ($VMS)
1227                 {
1228                 print OUT <<"EOF";
1229 CASE_SENSITIVE=YES
1230 SYMBOL_VECTOR=(-
1231 EOF
1232                 $symvtextcount = 16; # length of "SYMBOL_VECTOR=(-"
1233                 }
1234
1235         (@r)=grep(/^\w+(\{[0-9]+\})?\\.*?:.*?:FUNCTION/,@symbols);
1236         (@v)=grep(/^\w+(\{[0-9]+\})?\\.*?:.*?:VARIABLE/,@symbols);
1237         if ($VMS) {
1238             # VMS needs to have the symbols on slot number order
1239             @symbols=(map { $_->[1] }
1240                       sort { $a->[0] <=> $b->[0] }
1241                       map { (my $s, my $i) = $_ =~ /^(.*?)\\(.*)$/;
1242                             die "Error: $s doesn't have a number assigned\n"
1243                                 if !defined($nums{$s});
1244                             (my $n, my @rest) = split /\\/, $nums{$s};
1245                             [ $n, $_ ] } (@e, @r, @v));
1246         } else {
1247             @symbols=((sort @e),(sort @r), (sort @v));
1248         }
1249
1250         my ($baseversion, $currversion) = get_openssl_version();
1251         my $thisversion;
1252         do {
1253                 if (!defined($thisversion)) {
1254                         $thisversion = $baseversion;
1255                 } else {
1256                         $thisversion = get_next_version($thisversion);
1257                 }
1258                 foreach $sym (@symbols) {
1259                         (my $s, my $i) = $sym =~ /^(.*?)\\(.*)$/;
1260                         my $v = 0;
1261                         $v = 1 if $i =~ /^.*?:.*?:VARIABLE/;
1262                         if (!defined($nums{$s})) {
1263                                 die "Error: $s does not have a number assigned\n"
1264                                         if(!$do_update);
1265                         } else {
1266                                 (my $n, my $symversion, my $dummy) = split /\\/, $nums{$s};
1267                                 next if $symversion ne $thisversion;
1268                                 my %pf = ();
1269                                 my $p = ($i =~ /^[^:]*:([^:]*):/,$1);
1270                                 my $a = ($i =~ /^[^:]*:[^:]*:[^:]*:([^:]*)/,$1);
1271                                 if (is_valid($p,1) && is_valid($a,0)) {
1272                                         my $s2 = ($s =~ /^(.*?)(\{[0-9]+\})?$/, $1);
1273                                         if ($prev eq $s2) {
1274                                                 print STDERR "Warning: Symbol '",$s2,
1275                                                         "' redefined. old=",($nums{$prev} =~ /^(.*?)\\/,$1),
1276                                                         ", new=",($nums{$s2} =~ /^(.*?)\\/,$1),"\n";
1277                                         }
1278                                         $prev = $s2;    # To warn about duplicates...
1279                                         if($linux) {
1280                                                 if ($symversion ne $prevsymversion) {
1281                                                         if ($prevsymversion ne "") {
1282                                                                 if ($prevprevsymversion ne "") {
1283                                                                         print OUT "} OPENSSL_"
1284                                                                                                 ."$prevprevsymversion;\n\n";
1285                                                                 } else {
1286                                                                         print OUT "};\n\n";
1287                                                                 }
1288                                                         }
1289                                                         print OUT "OPENSSL_$symversion {\n    global:\n";
1290                                                         $prevprevsymversion = $prevsymversion;
1291                                                         $prevsymversion = $symversion;
1292                                                 }
1293                                                 print OUT "        $s2;\n";
1294                                         } elsif ($VMS) {
1295                                             while(++$prevnum < $n) {
1296                                                 my $symline=" ,SPARE -\n  ,SPARE -\n";
1297                                                 if ($symvtextcount + length($symline) - 2 > 1024) {
1298                                                     print OUT ")\nSYMBOL_VECTOR=(-\n";
1299                                                     $symvtextcount = 16; # length of "SYMBOL_VECTOR=(-"
1300                                                 }
1301                                                 if ($symvtextcount == 16) {
1302                                                     # Take away first comma
1303                                                     $symline =~ s/,//;
1304                                                 }
1305                                                 print OUT $symline;
1306                                                 $symvtextcount += length($symline) - 2;
1307                                             }
1308                                             (my $s_uc = $s) =~ tr/a-z/A-Z/;
1309                                             my $symtype=
1310                                                 $v ? "DATA" : "PROCEDURE";
1311                                             my $symline=
1312                                                 ($s_uc ne $s
1313                                                  ? " ,$s_uc/$s=$symtype -\n  ,$s=$symtype -\n"
1314                                                  : " ,$s=$symtype -\n  ,SPARE -\n");
1315                                             if ($symvtextcount + length($symline) - 2 > 1024) {
1316                                                 print OUT ")\nSYMBOL_VECTOR=(-\n";
1317                                                 $symvtextcount = 16; # length of "SYMBOL_VECTOR=(-"
1318                                             }
1319                                             if ($symvtextcount == 16) {
1320                                                 # Take away first comma
1321                                                 $symline =~ s/,//;
1322                                             }
1323                                             print OUT $symline;
1324                                             $symvtextcount += length($symline) - 2;
1325                                         } elsif($v && !$OS2) {
1326                                                 printf OUT "    %s%-39s @%-8d DATA\n",
1327                                                                 ($W32)?"":"_",$s2,$n;
1328                                         } else {
1329                                                 printf OUT "    %s%-39s @%d\n",
1330                                                                 ($W32||$OS2)?"":"_",$s2,$n;
1331                                         }
1332                                 }
1333                         }
1334                 }
1335         } while ($thisversion ne $currversion);
1336         if ($linux) {
1337                 if ($prevprevsymversion ne "") {
1338                         print OUT "    local: *;\n} OPENSSL_$prevprevsymversion;\n\n";
1339                 } else {
1340                         print OUT "    local: *;\n};\n\n";
1341                 }
1342         } elsif ($VMS) {
1343             print OUT ")\n";
1344             (my $libvmaj, my $libvmin, my $libvedit) =
1345                 $currversion =~ /^(\d+)_(\d+)_(\d+)$/;
1346             # The reason to multiply the edit number with 100 is to make space
1347             # for the possibility that we want to encode the patch letters
1348             print OUT "GSMATCH=LEQUAL,",($libvmaj * 100 + $libvmin),",",($libvedit * 100),"\n";
1349         }
1350         printf OUT "\n";
1351 }
1352
1353 sub load_numbers
1354 {
1355         my($name)=@_;
1356         my(@a,%ret);
1357         my $prevversion;
1358
1359         $max_num = 0;
1360         $num_noinfo = 0;
1361         $prev = "";
1362         $prev_cnt = 0;
1363
1364         my ($baseversion, $currversion) = get_openssl_version();
1365
1366         open(IN,"<$name") || die "unable to open $name:$!\n";
1367         while (<IN>) {
1368                 chop;
1369                 s/#.*$//;
1370                 next if /^\s*$/;
1371                 @a=split;
1372                 if (defined $ret{$a[0]}) {
1373                         # This is actually perfectly OK
1374                         #print STDERR "Warning: Symbol '",$a[0],"' redefined. old=",$ret{$a[0]},", new=",$a[1],"\n";
1375                 }
1376                 if ($max_num > $a[1]) {
1377                         print STDERR "Warning: Number decreased from ",$max_num," to ",$a[1],"\n";
1378                 }
1379                 elsif ($max_num == $a[1]) {
1380                         # This is actually perfectly OK
1381                         #print STDERR "Warning: Symbol ",$a[0]," has same number as previous ",$prev,": ",$a[1],"\n";
1382                         if ($a[0] eq $prev) {
1383                                 $prev_cnt++;
1384                                 $a[0] .= "{$prev_cnt}";
1385                         }
1386                 }
1387                 else {
1388                         $prev_cnt = 0;
1389                 }
1390                 if ($#a < 2) {
1391                         # Existence will be proven later, in do_defs
1392                         $ret{$a[0]}=$a[1];
1393                         $num_noinfo++;
1394                 } else {
1395                         #Sanity check the version number
1396                         if (defined $prevversion) {
1397                                 check_version_lte($prevversion, $a[2]);
1398                         }
1399                         check_version_lte($a[2], $currversion);
1400                         $prevversion = $a[2];
1401                         $ret{$a[0]}=$a[1]."\\".$a[2]."\\".$a[3]; # \\ is a special marker
1402                 }
1403                 $max_num = $a[1] if $a[1] > $max_num;
1404                 $prev=$a[0];
1405         }
1406         if ($num_noinfo) {
1407                 print STDERR "Warning: $num_noinfo symbols were without info.";
1408                 if ($do_rewrite) {
1409                         printf STDERR "  The rewrite will fix this.\n";
1410                 } else {
1411                         printf STDERR "  You should do a rewrite to fix this.\n";
1412                 }
1413         }
1414         close(IN);
1415         return(%ret);
1416 }
1417
1418 sub parse_number
1419 {
1420         (my $str, my $what) = @_;
1421         (my $n, my $v, my $i) = split(/\\/,$str);
1422         if ($what eq "n") {
1423                 return $n;
1424         } else {
1425                 return $i;
1426         }
1427 }
1428
1429 sub rewrite_numbers
1430 {
1431         (*OUT,$name,*nums,@symbols)=@_;
1432         my $thing;
1433
1434         my @r = grep(/^\w+(\{[0-9]+\})?\\.*?:.*?:\w+\(\w+\)/,@symbols);
1435         my $r; my %r; my %rsyms;
1436         foreach $r (@r) {
1437                 (my $s, my $i) = split /\\/, $r;
1438                 my $a = $1 if $i =~ /^.*?:.*?:\w+\((\w+)\)/;
1439                 $i =~ s/^(.*?:.*?:\w+)\(\w+\)/$1/;
1440                 $r{$a} = $s."\\".$i;
1441                 $rsyms{$s} = 1;
1442         }
1443
1444         my %syms = ();
1445         foreach $_ (@symbols) {
1446                 (my $n, my $i) = split /\\/;
1447                 $syms{$n} = 1;
1448         }
1449
1450         my @s=sort {
1451             &parse_number($nums{$a},"n") <=> &parse_number($nums{$b},"n")
1452             || $a cmp $b
1453         } keys %nums;
1454         foreach $sym (@s) {
1455                 (my $n, my $vers, my $i) = split /\\/, $nums{$sym};
1456                 next if defined($i) && $i =~ /^.*?:.*?:\w+\(\w+\)/;
1457                 next if defined($rsyms{$sym});
1458                 print STDERR "DEBUG: rewrite_numbers for sym = ",$sym,": i = ",$i,", n = ",$n,", rsym{sym} = ",$rsyms{$sym},"syms{sym} = ",$syms{$sym},"\n" if $debug;
1459                 $i="NOEXIST::FUNCTION:"
1460                         if !defined($i) || $i eq "" || !defined($syms{$sym});
1461                 my $s2 = $sym;
1462                 $s2 =~ s/\{[0-9]+\}$//;
1463                 printf OUT "%s%-39s %d\t%s\t%s\n","",$s2,$n,$vers,$i;
1464                 if (exists $r{$sym}) {
1465                         (my $s, $i) = split /\\/,$r{$sym};
1466                         my $s2 = $s;
1467                         $s2 =~ s/\{[0-9]+\}$//;
1468                         printf OUT "%s%-39s %d\t%s\t%s\n","",$s2,$n,$vers,$i;
1469                 }
1470         }
1471 }
1472
1473 sub update_numbers
1474 {
1475         (*OUT,$name,*nums,my $start_num, my @symbols)=@_;
1476         my $new_syms = 0;
1477         my $basevers;
1478         my $vers;
1479
1480         ($basevers, $vers) = get_openssl_version();
1481
1482         my @r = grep(/^\w+(\{[0-9]+\})?\\.*?:.*?:\w+\(\w+\)/,@symbols);
1483         my $r; my %r; my %rsyms;
1484         foreach $r (@r) {
1485                 (my $s, my $i) = split /\\/, $r;
1486                 my $a = $1 if $i =~ /^.*?:.*?:\w+\((\w+)\)/;
1487                 $i =~ s/^(.*?:.*?:\w+)\(\w+\)/$1/;
1488                 $r{$a} = $s."\\".$i;
1489                 $rsyms{$s} = 1;
1490         }
1491
1492         foreach $sym (@symbols) {
1493                 (my $s, my $i) = $sym =~ /^(.*?)\\(.*)$/;
1494                 next if $i =~ /^.*?:.*?:\w+\(\w+\)/;
1495                 next if defined($rsyms{$sym});
1496                 die "ERROR: Symbol $sym had no info attached to it."
1497                     if $i eq "";
1498                 if (!exists $nums{$s}) {
1499                         $new_syms++;
1500                         my $s2 = $s;
1501                         $s2 =~ s/\{[0-9]+\}$//;
1502                         printf OUT "%s%-39s %d\t%s\t%s\n","",$s2, ++$start_num,$vers,$i;
1503                         if (exists $r{$s}) {
1504                                 ($s, $i) = split /\\/,$r{$s};
1505                                 $s =~ s/\{[0-9]+\}$//;
1506                                 printf OUT "%s%-39s %d\t%s\t%s\n","",$s, $start_num,$vers,$i;
1507                         }
1508                 }
1509         }
1510         if($new_syms) {
1511                 print STDERR "$name: Added $new_syms new symbols\n";
1512         } else {
1513                 print STDERR "$name: No new symbols added\n";
1514         }
1515 }
1516
1517 sub check_existing
1518 {
1519         (*nums, my @symbols)=@_;
1520         my %existing; my @remaining;
1521         @remaining=();
1522         foreach $sym (@symbols) {
1523                 (my $s, my $i) = $sym =~ /^(.*?)\\(.*)$/;
1524                 $existing{$s}=1;
1525         }
1526         foreach $sym (keys %nums) {
1527                 if (!exists $existing{$sym}) {
1528                         push @remaining, $sym;
1529                 }
1530         }
1531         if(@remaining) {
1532                 print STDERR "The following symbols do not seem to exist:\n";
1533                 foreach $sym (@remaining) {
1534                         print STDERR "\t",$sym,"\n";
1535                 }
1536         }
1537 }
1538
1539 sub count_parens
1540 {
1541         my $line = shift(@_);
1542
1543         my $open = $line =~ tr/\(//;
1544         my $close = $line =~ tr/\)//;
1545
1546         return $open - $close;
1547 }
1548
1549 #Parse opensslv.h to get the current version number. Also work out the base
1550 #version, i.e. the lowest version number that is binary compatible with this
1551 #version
1552 sub get_openssl_version()
1553 {
1554         my $fn = catfile($config{sourcedir},"include","openssl","opensslv.h");
1555         open (IN, "$fn") || die "Can't open opensslv.h";
1556
1557         while(<IN>) {
1558                 if (/OPENSSL_VERSION_TEXT\s+"OpenSSL (\d\.\d\.)(\d[a-z]*)(-| )/) {
1559                         my $suffix = $2;
1560                         (my $baseversion = $1) =~ s/\./_/g;
1561                         close IN;
1562                         return ($baseversion."0", $baseversion.$suffix);
1563                 }
1564         }
1565         die "Can't find OpenSSL version number\n";
1566 }
1567
1568 #Given an OpenSSL version number, calculate the next version number. If the
1569 #version number gets to a.b.czz then we go to a.b.(c+1)
1570 sub get_next_version()
1571 {
1572         my $thisversion = shift;
1573
1574         my ($base, $letter) = $thisversion =~ /^(\d_\d_\d)([a-z]{0,2})$/;
1575
1576         if ($letter eq "zz") {
1577                 my $lastnum = substr($base, -1);
1578                 return substr($base, 0, length($base)-1).(++$lastnum);
1579         }
1580         return $base.get_next_letter($letter);
1581 }
1582
1583 #Given the letters off the end of an OpenSSL version string, calculate what
1584 #the letters for the next release would be.
1585 sub get_next_letter()
1586 {
1587         my $thisletter = shift;
1588         my $baseletter = "";
1589         my $endletter;
1590
1591         if ($thisletter eq "") {
1592                 return "a";
1593         }
1594         if ((length $thisletter) > 1) {
1595                 ($baseletter, $endletter) = $thisletter =~ /([a-z]+)([a-z])/;
1596         } else {
1597                 $endletter = $thisletter;
1598         }
1599
1600         if ($endletter eq "z") {
1601                 return $thisletter."a";
1602         } else {
1603                 return $baseletter.(++$endletter);
1604         }
1605 }
1606
1607 #Check if a version is less than or equal to the current version. Its a fatal
1608 #error if not. They must also only differ in letters, or the last number (i.e.
1609 #the first two numbers must be the same)
1610 sub check_version_lte()
1611 {
1612         my ($testversion, $currversion) = @_;
1613         my $lentv;
1614         my $lencv;
1615         my $cvbase;
1616
1617         my ($cvnums) = $currversion =~ /^(\d_\d_\d)[a-z]*$/;
1618         my ($tvnums) = $testversion =~ /^(\d_\d_\d)[a-z]*$/;
1619
1620         #Die if we can't parse the version numbers or they don't look sane
1621         die "Invalid version number: $testversion and $currversion\n"
1622                 if (!defined($cvnums) || !defined($tvnums)
1623                         || length($cvnums) != 5
1624                         || length($tvnums) != 5);
1625
1626         #If the base versions (without letters) don't match check they only differ
1627         #in the last number
1628         if ($cvnums ne $tvnums) {
1629                 die "Invalid version number: $testversion "
1630                         ."for current version $currversion\n"
1631                         if (substr($cvnums, -1) < substr($tvnums, -1)
1632                                 || substr($cvnums, 0, 4) ne substr($tvnums, 0, 4));
1633                 return;
1634         }
1635         #If we get here then the base version (i.e. the numbers) are the same - they
1636         #only differ in the letters
1637
1638         $lentv = length $testversion;
1639         $lencv = length $currversion;
1640
1641         #If the testversion has more letters than the current version then it must
1642         #be later (or malformed)
1643         if ($lentv > $lencv) {
1644                 die "Invalid version number: $testversion "
1645                         ."is greater than $currversion\n";
1646         }
1647
1648         #Get the last letter from the current version
1649         my ($cvletter) = $currversion =~ /([a-z])$/;
1650         if (defined $cvletter) {
1651                 ($cvbase) = $currversion =~ /(\d_\d_\d[a-z]*)$cvletter$/;
1652         } else {
1653                 $cvbase = $currversion;
1654         }
1655         die "Unable to parse version number $currversion" if (!defined $cvbase);
1656         my $tvbase;
1657         my ($tvletter) = $testversion =~ /([a-z])$/;
1658         if (defined $tvletter) {
1659                 ($tvbase) = $testversion =~ /(\d_\d_\d[a-z]*)$tvletter$/;
1660         } else {
1661                 $tvbase = $testversion;
1662         }
1663         die "Unable to parse version number $testversion" if (!defined $tvbase);
1664
1665         if ($lencv > $lentv) {
1666                 #If current version has more letters than testversion then testversion
1667                 #minus the final letter must be a substring of the current version
1668                 die "Invalid version number $testversion "
1669                         ."is greater than $currversion or is invalid\n"
1670                         if (index($cvbase, $tvbase) != 0);
1671         } else {
1672                 #If both versions have the same number of letters then they must be
1673                 #equal up to the last letter, and the last letter in testversion must
1674                 #be less than or equal to the last letter in current version.
1675                 die "Invalid version number $testversion "
1676                         ."is greater than $currversion\n"
1677                         if (($cvbase ne $tvbase) && ($tvletter gt $cvletter));
1678         }
1679 }
1680
1681 sub do_deprecated()
1682 {
1683         my ($decl, $plats, $algs) = @_;
1684         $decl =~ /^\s*(DEPRECATEDIN_\d+_\d+_\d+)\s*\((.*)\)\s*$/
1685             or die "Bad DEPRECTEDIN: $decl\n";
1686         my $info1 .= "#INFO:";
1687         $info1 .= join(',', @{$plats}) . ":";
1688         my $info2 = $info1;
1689         $info1 .= join(',',@{$algs}, $1) . ";";
1690         $info2 .= join(',',@{$algs}) . ";";
1691         return $info1 . $2 . ";" . $info2;
1692 }