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