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