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