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