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