1#!/usr/local/bin/perl -w 2# 3# generate a .def file 4# 5# It does this by parsing the header files and looking for the 6# prototyped functions: it then prunes the output. 7# 8# Intermediary files are created, call libeay.num and ssleay.num,... 9# Previously, they had the following format: 10# 11# routine-name nnnn 12# 13# But that isn't enough for a number of reasons, the first on being that 14# this format is (needlessly) very Win32-centric, and even then... 15# One of the biggest problems is that there's no information about what 16# routines should actually be used, which varies with what crypto algorithms 17# are disabled. Also, some operating systems (for example VMS with VAX C) 18# need to keep track of the global variables as well as the functions. 19# 20# So, a remake of this script is done so as to include information on the 21# kind of symbol it is (function or variable) and what algorithms they're 22# part of. This will allow easy translating to .def files or the corresponding 23# file in other operating systems (a .opt file for VMS, possibly with a .mar 24# file). 25# 26# The format now becomes: 27# 28# routine-name nnnn info 29# 30# and the "info" part is actually a colon-separated string of fields with 31# the following meaning: 32# 33# existence:platform:kind:algorithms 34# 35# - "existence" can be "EXIST" or "NOEXIST" depending on if the symbol is 36# found somewhere in the source, 37# - "platforms" is empty if it exists on all platforms, otherwise it contains 38# comma-separated list of the platform, just as they are if the symbol exists 39# for those platforms, or prepended with a "!" if not. This helps resolve 40# symbol name variants for platforms where the names are too long for the 41# compiler or linker, or if the systems is case insensitive and there is a 42# clash, or the symbol is implemented differently (see 43# EXPORT_VAR_AS_FUNCTION). This script assumes renaming of symbols is found 44# in the file crypto/symhacks.h. 45# The semantics for the platforms is that every item is checked against the 46# environment. For the negative items ("!FOO"), if any of them is false 47# (i.e. "FOO" is true) in the environment, the corresponding symbol can't be 48# used. For the positive itms, if all of them are false in the environment, 49# the corresponding symbol can't be used. Any combination of positive and 50# negative items are possible, and of course leave room for some redundancy. 51# - "kind" is "FUNCTION" or "VARIABLE". The meaning of that is obvious. 52# - "algorithms" is a comma-separated list of algorithm names. This helps 53# exclude symbols that are part of an algorithm that some user wants to 54# exclude. 55# 56 57my $debug=0; 58 59my $crypto_num= "util/libeay.num"; 60my $ssl_num= "util/ssleay.num"; 61my $libname; 62 63my $do_update = 0; 64my $do_rewrite = 1; 65my $do_crypto = 0; 66my $do_ssl = 0; 67my $do_ctest = 0; 68my $do_ctestall = 0; 69my $do_checkexist = 0; 70 71my $VMSVAX=0; 72my $VMSNonVAX=0; 73my $VMS=0; 74my $W32=0; 75my $W16=0; 76my $NT=0; 77my $OS2=0; 78# Set this to make typesafe STACK definitions appear in DEF 79my $safe_stack_def = 0; 80 81my @known_platforms = ( "__FreeBSD__", "PERL5", "NeXT", 82 "EXPORT_VAR_AS_FUNCTION", "ZLIB", "OPENSSL_FIPS" ); 83my @known_ossl_platforms = ( "VMS", "WIN16", "WIN32", "WINNT", "OS2" ); 84my @known_algorithms = ( "RC2", "RC4", "RC5", "IDEA", "DES", "BF", 85 "CAST", "MD2", "MD4", "MD5", "SHA", "SHA0", "SHA1", 86 "SHA256", "SHA512", "RIPEMD", 87 "MDC2", "WHIRLPOOL", "RSA", "DSA", "DH", "EC", "ECDH", "ECDSA", "EC2M", 88 "HMAC", "AES", "CAMELLIA", "SEED", "GOST", 89 # EC_NISTP_64_GCC_128 90 "EC_NISTP_64_GCC_128", 91 # Envelope "algorithms" 92 "EVP", "X509", "ASN1_TYPEDEFS", 93 # Helper "algorithms" 94 "BIO", "COMP", "BUFFER", "LHASH", "STACK", "ERR", 95 "LOCKING", 96 # External "algorithms" 97 "FP_API", "STDIO", "SOCK", "KRB5", "DGRAM", 98 # Engines 99 "STATIC_ENGINE", "ENGINE", "HW", "GMP", 100 # RFC3779 101 "RFC3779", 102 # TLS 103 "TLSEXT", "PSK", "SRP", "HEARTBEATS", 104 # CMS 105 "CMS", 106 # CryptoAPI Engine 107 "CAPIENG", 108 # SSL v2 109 "SSL2", 110 # JPAKE 111 "JPAKE", 112 # NEXTPROTONEG 113 "NEXTPROTONEG", 114 # Deprecated functions 115 "DEPRECATED", 116 # Hide SSL internals 117 "SSL_INTERN", 118 # SCTP 119 "SCTP", 120 # Unit testing 121 "UNIT_TEST"); 122 123my $options=""; 124open(IN,"<Makefile") || die "unable to open Makefile!\n"; 125while(<IN>) { 126 $options=$1 if (/^OPTIONS=(.*)$/); 127} 128close(IN); 129 130# The following ciphers may be excluded (by Configure). This means functions 131# defined with ifndef(NO_XXX) are not included in the .def file, and everything 132# in directory xxx is ignored. 133my $no_rc2; my $no_rc4; my $no_rc5; my $no_idea; my $no_des; my $no_bf; 134my $no_cast; my $no_whirlpool; my $no_camellia; my $no_seed; 135my $no_md2; my $no_md4; my $no_md5; my $no_sha; my $no_ripemd; my $no_mdc2; 136my $no_rsa; my $no_dsa; my $no_dh; my $no_hmac=0; my $no_aes; my $no_krb5; 137my $no_ec; my $no_ecdsa; my $no_ecdh; my $no_engine; my $no_hw; 138my $no_fp_api; my $no_static_engine=1; my $no_gmp; my $no_deprecated; 139my $no_rfc3779; my $no_psk; my $no_tlsext; my $no_cms; my $no_capieng; 140my $no_jpake; my $no_srp; my $no_ssl2; my $no_ec2m; my $no_nistp_gcc; 141my $no_nextprotoneg; my $no_sctp; 142my $no_unit_test; 143 144my $fips; 145 146my $zlib; 147 148 149foreach (@ARGV, split(/ /, $options)) 150 { 151 $debug=1 if $_ eq "debug"; 152 $W32=1 if $_ eq "32"; 153 $W16=1 if $_ eq "16"; 154 if($_ eq "NT") { 155 $W32 = 1; 156 $NT = 1; 157 } 158 if ($_ eq "VMS-VAX") { 159 $VMS=1; 160 $VMSVAX=1; 161 } 162 if ($_ eq "VMS-NonVAX") { 163 $VMS=1; 164 $VMSNonVAX=1; 165 } 166 $VMS=1 if $_ eq "VMS"; 167 $OS2=1 if $_ eq "OS2"; 168 $fips=1 if /^fips/; 169 if ($_ eq "zlib" || $_ eq "enable-zlib" || $_ eq "zlib-dynamic" 170 || $_ eq "enable-zlib-dynamic") { 171 $zlib = 1; 172 } 173 174 $do_ssl=1 if $_ eq "ssleay"; 175 if ($_ eq "ssl") { 176 $do_ssl=1; 177 $libname=$_ 178 } 179 $do_crypto=1 if $_ eq "libeay"; 180 if ($_ eq "crypto") { 181 $do_crypto=1; 182 $libname=$_; 183 } 184 $no_static_engine=1 if $_ eq "no-static-engine"; 185 $no_static_engine=0 if $_ eq "enable-static-engine"; 186 $do_update=1 if $_ eq "update"; 187 $do_rewrite=1 if $_ eq "rewrite"; 188 $do_ctest=1 if $_ eq "ctest"; 189 $do_ctestall=1 if $_ eq "ctestall"; 190 $do_checkexist=1 if $_ eq "exist"; 191 #$safe_stack_def=1 if $_ eq "-DDEBUG_SAFESTACK"; 192 193 if (/^no-rc2$/) { $no_rc2=1; } 194 elsif (/^no-rc4$/) { $no_rc4=1; } 195 elsif (/^no-rc5$/) { $no_rc5=1; } 196 elsif (/^no-idea$/) { $no_idea=1; } 197 elsif (/^no-des$/) { $no_des=1; $no_mdc2=1; } 198 elsif (/^no-bf$/) { $no_bf=1; } 199 elsif (/^no-cast$/) { $no_cast=1; } 200 elsif (/^no-whirlpool$/) { $no_whirlpool=1; } 201 elsif (/^no-md2$/) { $no_md2=1; } 202 elsif (/^no-md4$/) { $no_md4=1; } 203 elsif (/^no-md5$/) { $no_md5=1; } 204 elsif (/^no-sha$/) { $no_sha=1; } 205 elsif (/^no-ripemd$/) { $no_ripemd=1; } 206 elsif (/^no-mdc2$/) { $no_mdc2=1; } 207 elsif (/^no-rsa$/) { $no_rsa=1; } 208 elsif (/^no-dsa$/) { $no_dsa=1; } 209 elsif (/^no-dh$/) { $no_dh=1; } 210 elsif (/^no-ec$/) { $no_ec=1; } 211 elsif (/^no-ecdsa$/) { $no_ecdsa=1; } 212 elsif (/^no-ecdh$/) { $no_ecdh=1; } 213 elsif (/^no-hmac$/) { $no_hmac=1; } 214 elsif (/^no-aes$/) { $no_aes=1; } 215 elsif (/^no-camellia$/) { $no_camellia=1; } 216 elsif (/^no-seed$/) { $no_seed=1; } 217 elsif (/^no-evp$/) { $no_evp=1; } 218 elsif (/^no-lhash$/) { $no_lhash=1; } 219 elsif (/^no-stack$/) { $no_stack=1; } 220 elsif (/^no-err$/) { $no_err=1; } 221 elsif (/^no-buffer$/) { $no_buffer=1; } 222 elsif (/^no-bio$/) { $no_bio=1; } 223 #elsif (/^no-locking$/) { $no_locking=1; } 224 elsif (/^no-comp$/) { $no_comp=1; } 225 elsif (/^no-dso$/) { $no_dso=1; } 226 elsif (/^no-krb5$/) { $no_krb5=1; } 227 elsif (/^no-engine$/) { $no_engine=1; } 228 elsif (/^no-hw$/) { $no_hw=1; } 229 elsif (/^no-gmp$/) { $no_gmp=1; } 230 elsif (/^no-rfc3779$/) { $no_rfc3779=1; } 231 elsif (/^no-tlsext$/) { $no_tlsext=1; } 232 elsif (/^no-cms$/) { $no_cms=1; } 233 elsif (/^no-ec2m$/) { $no_ec2m=1; } 234 elsif (/^no-ec_nistp_64_gcc_128$/) { $no_nistp_gcc=1; } 235 elsif (/^no-nextprotoneg$/) { $no_nextprotoneg=1; } 236 elsif (/^no-ssl2$/) { $no_ssl2=1; } 237 elsif (/^no-capieng$/) { $no_capieng=1; } 238 elsif (/^no-jpake$/) { $no_jpake=1; } 239 elsif (/^no-srp$/) { $no_srp=1; } 240 elsif (/^no-sctp$/) { $no_sctp=1; } 241 elsif (/^no-unit-test$/){ $no_unit_test=1; } 242 } 243 244 245if (!$libname) { 246 if ($do_ssl) { 247 $libname="SSLEAY"; 248 } 249 if ($do_crypto) { 250 $libname="LIBEAY"; 251 } 252} 253 254# If no platform is given, assume WIN32 255if ($W32 + $W16 + $VMS + $OS2 == 0) { 256 $W32 = 1; 257} 258 259# Add extra knowledge 260if ($W16) { 261 $no_fp_api=1; 262} 263 264if (!$do_ssl && !$do_crypto) 265 { 266 print STDERR "usage: $0 ( ssl | crypto ) [ 16 | 32 | NT | OS2 ]\n"; 267 exit(1); 268 } 269 270%ssl_list=&load_numbers($ssl_num); 271$max_ssl = $max_num; 272%crypto_list=&load_numbers($crypto_num); 273$max_crypto = $max_num; 274 275my $ssl="ssl/ssl.h"; 276$ssl.=" ssl/kssl.h"; 277$ssl.=" ssl/tls1.h"; 278$ssl.=" ssl/srtp.h"; 279 280my $crypto ="crypto/crypto.h"; 281$crypto.=" crypto/cryptlib.h"; 282$crypto.=" crypto/o_dir.h"; 283$crypto.=" crypto/o_str.h"; 284$crypto.=" crypto/o_time.h"; 285$crypto.=" crypto/des/des.h crypto/des/des_old.h" ; # unless $no_des; 286$crypto.=" crypto/idea/idea.h" ; # unless $no_idea; 287$crypto.=" crypto/rc4/rc4.h" ; # unless $no_rc4; 288$crypto.=" crypto/rc5/rc5.h" ; # unless $no_rc5; 289$crypto.=" crypto/rc2/rc2.h" ; # unless $no_rc2; 290$crypto.=" crypto/bf/blowfish.h" ; # unless $no_bf; 291$crypto.=" crypto/cast/cast.h" ; # unless $no_cast; 292$crypto.=" crypto/whrlpool/whrlpool.h" ; 293$crypto.=" crypto/md2/md2.h" ; # unless $no_md2; 294$crypto.=" crypto/md4/md4.h" ; # unless $no_md4; 295$crypto.=" crypto/md5/md5.h" ; # unless $no_md5; 296$crypto.=" crypto/mdc2/mdc2.h" ; # unless $no_mdc2; 297$crypto.=" crypto/sha/sha.h" ; # unless $no_sha; 298$crypto.=" crypto/ripemd/ripemd.h" ; # unless $no_ripemd; 299$crypto.=" crypto/aes/aes.h" ; # unless $no_aes; 300$crypto.=" crypto/camellia/camellia.h" ; # unless $no_camellia; 301$crypto.=" crypto/seed/seed.h"; # unless $no_seed; 302 303$crypto.=" crypto/bn/bn.h"; 304$crypto.=" crypto/rsa/rsa.h" ; # unless $no_rsa; 305$crypto.=" crypto/dsa/dsa.h" ; # unless $no_dsa; 306$crypto.=" crypto/dh/dh.h" ; # unless $no_dh; 307$crypto.=" crypto/ec/ec.h" ; # unless $no_ec; 308$crypto.=" crypto/ecdsa/ecdsa.h" ; # unless $no_ecdsa; 309$crypto.=" crypto/ecdh/ecdh.h" ; # unless $no_ecdh; 310$crypto.=" crypto/hmac/hmac.h" ; # unless $no_hmac; 311$crypto.=" crypto/cmac/cmac.h" ; # unless $no_hmac; 312 313$crypto.=" crypto/engine/engine.h"; # unless $no_engine; 314$crypto.=" crypto/stack/stack.h" ; # unless $no_stack; 315$crypto.=" crypto/buffer/buffer.h" ; # unless $no_buffer; 316$crypto.=" crypto/bio/bio.h" ; # unless $no_bio; 317$crypto.=" crypto/dso/dso.h" ; # unless $no_dso; 318$crypto.=" crypto/lhash/lhash.h" ; # unless $no_lhash; 319$crypto.=" crypto/conf/conf.h"; 320$crypto.=" crypto/txt_db/txt_db.h"; 321 322$crypto.=" crypto/evp/evp.h" ; # unless $no_evp; 323$crypto.=" crypto/objects/objects.h"; 324$crypto.=" crypto/pem/pem.h"; 325#$crypto.=" crypto/meth/meth.h"; 326$crypto.=" crypto/asn1/asn1.h"; 327$crypto.=" crypto/asn1/asn1t.h"; 328$crypto.=" crypto/asn1/asn1_mac.h"; 329$crypto.=" crypto/err/err.h" ; # unless $no_err; 330$crypto.=" crypto/pkcs7/pkcs7.h"; 331$crypto.=" crypto/pkcs12/pkcs12.h"; 332$crypto.=" crypto/x509/x509.h"; 333$crypto.=" crypto/x509/x509_vfy.h"; 334$crypto.=" crypto/x509v3/x509v3.h"; 335$crypto.=" crypto/ts/ts.h"; 336$crypto.=" crypto/rand/rand.h"; 337$crypto.=" crypto/comp/comp.h" ; # unless $no_comp; 338$crypto.=" crypto/ocsp/ocsp.h"; 339$crypto.=" crypto/ui/ui.h crypto/ui/ui_compat.h"; 340$crypto.=" crypto/krb5/krb5_asn.h"; 341#$crypto.=" crypto/store/store.h"; 342$crypto.=" crypto/pqueue/pqueue.h"; 343$crypto.=" crypto/cms/cms.h"; 344$crypto.=" crypto/jpake/jpake.h"; 345$crypto.=" crypto/modes/modes.h"; 346$crypto.=" crypto/srp/srp.h"; 347 348my $symhacks="crypto/symhacks.h"; 349 350my @ssl_symbols = &do_defs("SSLEAY", $ssl, $symhacks); 351my @crypto_symbols = &do_defs("LIBEAY", $crypto, $symhacks); 352 353if ($do_update) { 354 355if ($do_ssl == 1) { 356 357 &maybe_add_info("SSLEAY",*ssl_list,@ssl_symbols); 358 if ($do_rewrite == 1) { 359 open(OUT, ">$ssl_num"); 360 &rewrite_numbers(*OUT,"SSLEAY",*ssl_list,@ssl_symbols); 361 } else { 362 open(OUT, ">>$ssl_num"); 363 } 364 &update_numbers(*OUT,"SSLEAY",*ssl_list,$max_ssl,@ssl_symbols); 365 close OUT; 366} 367 368if($do_crypto == 1) { 369 370 &maybe_add_info("LIBEAY",*crypto_list,@crypto_symbols); 371 if ($do_rewrite == 1) { 372 open(OUT, ">$crypto_num"); 373 &rewrite_numbers(*OUT,"LIBEAY",*crypto_list,@crypto_symbols); 374 } else { 375 open(OUT, ">>$crypto_num"); 376 } 377 &update_numbers(*OUT,"LIBEAY",*crypto_list,$max_crypto,@crypto_symbols); 378 close OUT; 379} 380 381} elsif ($do_checkexist) { 382 &check_existing(*ssl_list, @ssl_symbols) 383 if $do_ssl == 1; 384 &check_existing(*crypto_list, @crypto_symbols) 385 if $do_crypto == 1; 386} elsif ($do_ctest || $do_ctestall) { 387 388 print <<"EOF"; 389 390/* Test file to check all DEF file symbols are present by trying 391 * to link to all of them. This is *not* intended to be run! 392 */ 393 394int main() 395{ 396EOF 397 &print_test_file(*STDOUT,"SSLEAY",*ssl_list,$do_ctestall,@ssl_symbols) 398 if $do_ssl == 1; 399 400 &print_test_file(*STDOUT,"LIBEAY",*crypto_list,$do_ctestall,@crypto_symbols) 401 if $do_crypto == 1; 402 403 print "}\n"; 404 405} else { 406 407 &print_def_file(*STDOUT,$libname,*ssl_list,@ssl_symbols) 408 if $do_ssl == 1; 409 410 &print_def_file(*STDOUT,$libname,*crypto_list,@crypto_symbols) 411 if $do_crypto == 1; 412 413} 414 415 416sub do_defs 417{ 418 my($name,$files,$symhacksfile)=@_; 419 my $file; 420 my @ret; 421 my %syms; 422 my %platform; # For anything undefined, we assume "" 423 my %kind; # For anything undefined, we assume "FUNCTION" 424 my %algorithm; # For anything undefined, we assume "" 425 my %variant; 426 my %variant_cnt; # To be able to allocate "name{n}" if "name" 427 # is the same name as the original. 428 my $cpp; 429 my %unknown_algorithms = (); 430 431 foreach $file (split(/\s+/,$symhacksfile." ".$files)) 432 { 433 print STDERR "DEBUG: starting on $file:\n" if $debug; 434 open(IN,"<$file") || die "unable to open $file:$!\n"; 435 my $line = "", my $def= ""; 436 my %tag = ( 437 (map { $_ => 0 } @known_platforms), 438 (map { "OPENSSL_SYS_".$_ => 0 } @known_ossl_platforms), 439 (map { "OPENSSL_NO_".$_ => 0 } @known_algorithms), 440 NOPROTO => 0, 441 PERL5 => 0, 442 _WINDLL => 0, 443 CONST_STRICT => 0, 444 TRUE => 1, 445 ); 446 my $symhacking = $file eq $symhacksfile; 447 my @current_platforms = (); 448 my @current_algorithms = (); 449 450 # params: symbol, alias, platforms, kind 451 # The reason to put this subroutine in a variable is that 452 # it will otherwise create it's own, unshared, version of 453 # %tag and %variant... 454 my $make_variant = sub 455 { 456 my ($s, $a, $p, $k) = @_; 457 my ($a1, $a2); 458 459 print STDERR "DEBUG: make_variant: Entered with ",$s,", ",$a,", ",(defined($p)?$p:""),", ",(defined($k)?$k:""),"\n" if $debug; 460 if (defined($p)) 461 { 462 $a1 = join(",",$p, 463 grep(!/^$/, 464 map { $tag{$_} == 1 ? $_ : "" } 465 @known_platforms)); 466 } 467 else 468 { 469 $a1 = join(",", 470 grep(!/^$/, 471 map { $tag{$_} == 1 ? $_ : "" } 472 @known_platforms)); 473 } 474 $a2 = join(",", 475 grep(!/^$/, 476 map { $tag{"OPENSSL_SYS_".$_} == 1 ? $_ : "" } 477 @known_ossl_platforms)); 478 print STDERR "DEBUG: make_variant: a1 = $a1; a2 = $a2\n" if $debug; 479 if ($a1 eq "") { $a1 = $a2; } 480 elsif ($a1 ne "" && $a2 ne "") { $a1 .= ",".$a2; } 481 if ($a eq $s) 482 { 483 if (!defined($variant_cnt{$s})) 484 { 485 $variant_cnt{$s} = 0; 486 } 487 $variant_cnt{$s}++; 488 $a .= "{$variant_cnt{$s}}"; 489 } 490 my $toadd = $a.":".$a1.(defined($k)?":".$k:""); 491 my $togrep = $s.'(\{[0-9]+\})?:'.$a1.(defined($k)?":".$k:""); 492 if (!grep(/^$togrep$/, 493 split(/;/, defined($variant{$s})?$variant{$s}:""))) { 494 if (defined($variant{$s})) { $variant{$s} .= ";"; } 495 $variant{$s} .= $toadd; 496 } 497 print STDERR "DEBUG: make_variant: Exit with variant of ",$s," = ",$variant{$s},"\n" if $debug; 498 }; 499 500 print STDERR "DEBUG: parsing ----------\n" if $debug; 501 while(<IN>) { 502 if (/\/\* Error codes for the \w+ functions\. \*\//) 503 { 504 undef @tag; 505 last; 506 } 507 if ($line ne '') { 508 $_ = $line . $_; 509 $line = ''; 510 } 511 512 if (/\\$/) { 513 chomp; # remove eol 514 chop; # remove ending backslash 515 $line = $_; 516 next; 517 } 518 519 if(/\/\*/) { 520 if (not /\*\//) { # multiline comment... 521 $line = $_; # ... just accumulate 522 next; 523 } else { 524 s/\/\*.*?\*\///gs;# wipe it 525 } 526 } 527 528 if ($cpp) { 529 $cpp++ if /^#\s*if/; 530 $cpp-- if /^#\s*endif/; 531 next; 532 } 533 $cpp = 1 if /^#.*ifdef.*cplusplus/; 534 535 s/{[^{}]*}//gs; # ignore {} blocks 536 print STDERR "DEBUG: \$def=\"$def\"\n" if $debug && $def ne ""; 537 print STDERR "DEBUG: \$_=\"$_\"\n" if $debug; 538 if (/^\#\s*ifndef\s+(.*)/) { 539 push(@tag,"-"); 540 push(@tag,$1); 541 $tag{$1}=-1; 542 print STDERR "DEBUG: $file: found tag $1 = -1\n" if $debug; 543 } elsif (/^\#\s*if\s+!defined\(([^\)]+)\)/) { 544 push(@tag,"-"); 545 if (/^\#\s*if\s+(!defined\(([^\)]+)\)(\s+\&\&\s+!defined\(([^\)]+)\))*)$/) { 546 my $tmp_1 = $1; 547 my $tmp_; 548 foreach $tmp_ (split '\&\&',$tmp_1) { 549 $tmp_ =~ /!defined\(([^\)]+)\)/; 550 print STDERR "DEBUG: $file: found tag $1 = -1\n" if $debug; 551 push(@tag,$1); 552 $tag{$1}=-1; 553 } 554 } else { 555 print STDERR "Warning: $file: complicated expression: $_" if $debug; # because it is O... 556 print STDERR "DEBUG: $file: found tag $1 = -1\n" if $debug; 557 push(@tag,$1); 558 $tag{$1}=-1; 559 } 560 } elsif (/^\#\s*ifdef\s+(\S*)/) { 561 push(@tag,"-"); 562 push(@tag,$1); 563 $tag{$1}=1; 564 print STDERR "DEBUG: $file: found tag $1 = 1\n" if $debug; 565 } elsif (/^\#\s*if\s+defined\(([^\)]+)\)/) { 566 push(@tag,"-"); 567 if (/^\#\s*if\s+(defined\(([^\)]+)\)(\s+\|\|\s+defined\(([^\)]+)\))*)$/) { 568 my $tmp_1 = $1; 569 my $tmp_; 570 foreach $tmp_ (split '\|\|',$tmp_1) { 571 $tmp_ =~ /defined\(([^\)]+)\)/; 572 print STDERR "DEBUG: $file: found tag $1 = 1\n" if $debug; 573 push(@tag,$1); 574 $tag{$1}=1; 575 } 576 } else { 577 print STDERR "Warning: $file: complicated expression: $_\n" if $debug; # because it is O... 578 print STDERR "DEBUG: $file: found tag $1 = 1\n" if $debug; 579 push(@tag,$1); 580 $tag{$1}=1; 581 } 582 } elsif (/^\#\s*error\s+(\w+) is disabled\./) { 583 my $tag_i = $#tag; 584 while($tag[$tag_i] ne "-") { 585 if ($tag[$tag_i] eq "OPENSSL_NO_".$1) { 586 $tag{$tag[$tag_i]}=2; 587 print STDERR "DEBUG: $file: chaged tag $1 = 2\n" if $debug; 588 } 589 $tag_i--; 590 } 591 } elsif (/^\#\s*endif/) { 592 my $tag_i = $#tag; 593 while($tag_i > 0 && $tag[$tag_i] ne "-") { 594 my $t=$tag[$tag_i]; 595 print STDERR "DEBUG: \$t=\"$t\"\n" if $debug; 596 if ($tag{$t}==2) { 597 $tag{$t}=-1; 598 } else { 599 $tag{$t}=0; 600 } 601 print STDERR "DEBUG: $file: changed tag ",$t," = ",$tag{$t},"\n" if $debug; 602 pop(@tag); 603 if ($t =~ /^OPENSSL_NO_([A-Z0-9_]+)$/) { 604 $t=$1; 605 } else { 606 $t=""; 607 } 608 if ($t ne "" 609 && !grep(/^$t$/, @known_algorithms)) { 610 $unknown_algorithms{$t} = 1; 611 #print STDERR "DEBUG: Added as unknown algorithm: $t\n" if $debug; 612 } 613 $tag_i--; 614 } 615 pop(@tag); 616 } elsif (/^\#\s*else/) { 617 my $tag_i = $#tag; 618 while($tag[$tag_i] ne "-") { 619 my $t=$tag[$tag_i]; 620 $tag{$t}= -$tag{$t}; 621 print STDERR "DEBUG: $file: changed tag ",$t," = ",$tag{$t},"\n" if $debug; 622 $tag_i--; 623 } 624 } elsif (/^\#\s*if\s+1/) { 625 push(@tag,"-"); 626 # Dummy tag 627 push(@tag,"TRUE"); 628 $tag{"TRUE"}=1; 629 print STDERR "DEBUG: $file: found 1\n" if $debug; 630 } elsif (/^\#\s*if\s+0/) { 631 push(@tag,"-"); 632 # Dummy tag 633 push(@tag,"TRUE"); 634 $tag{"TRUE"}=-1; 635 print STDERR "DEBUG: $file: found 0\n" if $debug; 636 } elsif (/^\#\s*define\s+(\w+)\s+(\w+)/ 637 && $symhacking && $tag{'TRUE'} != -1) { 638 # This is for aliasing. When we find an alias, 639 # we have to invert 640 &$make_variant($1,$2); 641 print STDERR "DEBUG: $file: defined $1 = $2\n" if $debug; 642 } 643 if (/^\#/) { 644 @current_platforms = 645 grep(!/^$/, 646 map { $tag{$_} == 1 ? $_ : 647 $tag{$_} == -1 ? "!".$_ : "" } 648 @known_platforms); 649 push @current_platforms 650 , grep(!/^$/, 651 map { $tag{"OPENSSL_SYS_".$_} == 1 ? $_ : 652 $tag{"OPENSSL_SYS_".$_} == -1 ? "!".$_ : "" } 653 @known_ossl_platforms); 654 @current_algorithms = 655 grep(!/^$/, 656 map { $tag{"OPENSSL_NO_".$_} == -1 ? $_ : "" } 657 @known_algorithms); 658 $def .= 659 "#INFO:" 660 .join(',',@current_platforms).":" 661 .join(',',@current_algorithms).";"; 662 next; 663 } 664 if ($tag{'TRUE'} != -1) { 665 if (/^\s*DECLARE_STACK_OF\s*\(\s*(\w*)\s*\)/) { 666 next; 667 } elsif (/^\s*DECLARE_ASN1_ENCODE_FUNCTIONS\s*\(\s*(\w*)\s*,\s*(\w*)\s*,\s*(\w*)\s*\)/) { 668 $def .= "int d2i_$3(void);"; 669 $def .= "int i2d_$3(void);"; 670 # Variant for platforms that do not 671 # have to access globale variables 672 # in shared libraries through functions 673 $def .= 674 "#INFO:" 675 .join(',',"!EXPORT_VAR_AS_FUNCTION",@current_platforms).":" 676 .join(',',@current_algorithms).";"; 677 $def .= "OPENSSL_EXTERN int $2_it;"; 678 $def .= 679 "#INFO:" 680 .join(',',@current_platforms).":" 681 .join(',',@current_algorithms).";"; 682 # Variant for platforms that have to 683 # access globale variables in shared 684 # libraries through functions 685 &$make_variant("$2_it","$2_it", 686 "EXPORT_VAR_AS_FUNCTION", 687 "FUNCTION"); 688 next; 689 } elsif (/^\s*DECLARE_ASN1_FUNCTIONS_fname\s*\(\s*(\w*)\s*,\s*(\w*)\s*,\s*(\w*)\s*\)/) { 690 $def .= "int d2i_$3(void);"; 691 $def .= "int i2d_$3(void);"; 692 $def .= "int $3_free(void);"; 693 $def .= "int $3_new(void);"; 694 # Variant for platforms that do not 695 # have to access globale variables 696 # in shared libraries through functions 697 $def .= 698 "#INFO:" 699 .join(',',"!EXPORT_VAR_AS_FUNCTION",@current_platforms).":" 700 .join(',',@current_algorithms).";"; 701 $def .= "OPENSSL_EXTERN int $2_it;"; 702 $def .= 703 "#INFO:" 704 .join(',',@current_platforms).":" 705 .join(',',@current_algorithms).";"; 706 # Variant for platforms that have to 707 # access globale variables in shared 708 # libraries through functions 709 &$make_variant("$2_it","$2_it", 710 "EXPORT_VAR_AS_FUNCTION", 711 "FUNCTION"); 712 next; 713 } elsif (/^\s*DECLARE_ASN1_FUNCTIONS\s*\(\s*(\w*)\s*\)/ || 714 /^\s*DECLARE_ASN1_FUNCTIONS_const\s*\(\s*(\w*)\s*\)/) { 715 $def .= "int d2i_$1(void);"; 716 $def .= "int i2d_$1(void);"; 717 $def .= "int $1_free(void);"; 718 $def .= "int $1_new(void);"; 719 # Variant for platforms that do not 720 # have to access globale variables 721 # in shared libraries through functions 722 $def .= 723 "#INFO:" 724 .join(',',"!EXPORT_VAR_AS_FUNCTION",@current_platforms).":" 725 .join(',',@current_algorithms).";"; 726 $def .= "OPENSSL_EXTERN int $1_it;"; 727 $def .= 728 "#INFO:" 729 .join(',',@current_platforms).":" 730 .join(',',@current_algorithms).";"; 731 # Variant for platforms that have to 732 # access globale variables in shared 733 # libraries through functions 734 &$make_variant("$1_it","$1_it", 735 "EXPORT_VAR_AS_FUNCTION", 736 "FUNCTION"); 737 next; 738 } elsif (/^\s*DECLARE_ASN1_ENCODE_FUNCTIONS_const\s*\(\s*(\w*)\s*,\s*(\w*)\s*\)/) { 739 $def .= "int d2i_$2(void);"; 740 $def .= "int i2d_$2(void);"; 741 # Variant for platforms that do not 742 # have to access globale variables 743 # in shared libraries through functions 744 $def .= 745 "#INFO:" 746 .join(',',"!EXPORT_VAR_AS_FUNCTION",@current_platforms).":" 747 .join(',',@current_algorithms).";"; 748 $def .= "OPENSSL_EXTERN int $2_it;"; 749 $def .= 750 "#INFO:" 751 .join(',',@current_platforms).":" 752 .join(',',@current_algorithms).";"; 753 # Variant for platforms that have to 754 # access globale variables in shared 755 # libraries through functions 756 &$make_variant("$2_it","$2_it", 757 "EXPORT_VAR_AS_FUNCTION", 758 "FUNCTION"); 759 next; 760 } elsif (/^\s*DECLARE_ASN1_ALLOC_FUNCTIONS\s*\(\s*(\w*)\s*\)/) { 761 $def .= "int $1_free(void);"; 762 $def .= "int $1_new(void);"; 763 next; 764 } elsif (/^\s*DECLARE_ASN1_FUNCTIONS_name\s*\(\s*(\w*)\s*,\s*(\w*)\s*\)/) { 765 $def .= "int d2i_$2(void);"; 766 $def .= "int i2d_$2(void);"; 767 $def .= "int $2_free(void);"; 768 $def .= "int $2_new(void);"; 769 # Variant for platforms that do not 770 # have to access globale variables 771 # in shared libraries through functions 772 $def .= 773 "#INFO:" 774 .join(',',"!EXPORT_VAR_AS_FUNCTION",@current_platforms).":" 775 .join(',',@current_algorithms).";"; 776 $def .= "OPENSSL_EXTERN int $2_it;"; 777 $def .= 778 "#INFO:" 779 .join(',',@current_platforms).":" 780 .join(',',@current_algorithms).";"; 781 # Variant for platforms that have to 782 # access globale variables in shared 783 # libraries through functions 784 &$make_variant("$2_it","$2_it", 785 "EXPORT_VAR_AS_FUNCTION", 786 "FUNCTION"); 787 next; 788 } elsif (/^\s*DECLARE_ASN1_ITEM\s*\(\s*(\w*)\s*\)/) { 789 # Variant for platforms that do not 790 # have to access globale variables 791 # in shared libraries through functions 792 $def .= 793 "#INFO:" 794 .join(',',"!EXPORT_VAR_AS_FUNCTION",@current_platforms).":" 795 .join(',',@current_algorithms).";"; 796 $def .= "OPENSSL_EXTERN int $1_it;"; 797 $def .= 798 "#INFO:" 799 .join(',',@current_platforms).":" 800 .join(',',@current_algorithms).";"; 801 # Variant for platforms that have to 802 # access globale variables in shared 803 # libraries through functions 804 &$make_variant("$1_it","$1_it", 805 "EXPORT_VAR_AS_FUNCTION", 806 "FUNCTION"); 807 next; 808 } elsif (/^\s*DECLARE_ASN1_NDEF_FUNCTION\s*\(\s*(\w*)\s*\)/) { 809 $def .= "int i2d_$1_NDEF(void);"; 810 } elsif (/^\s*DECLARE_ASN1_SET_OF\s*\(\s*(\w*)\s*\)/) { 811 next; 812 } elsif (/^\s*DECLARE_ASN1_PRINT_FUNCTION\s*\(\s*(\w*)\s*\)/) { 813 $def .= "int $1_print_ctx(void);"; 814 next; 815 } elsif (/^\s*DECLARE_ASN1_PRINT_FUNCTION_name\s*\(\s*(\w*)\s*,\s*(\w*)\s*\)/) { 816 $def .= "int $2_print_ctx(void);"; 817 next; 818 } elsif (/^\s*DECLARE_PKCS12_STACK_OF\s*\(\s*(\w*)\s*\)/) { 819 next; 820 } elsif (/^DECLARE_PEM_rw\s*\(\s*(\w*)\s*,/ || 821 /^DECLARE_PEM_rw_cb\s*\(\s*(\w*)\s*,/ || 822 /^DECLARE_PEM_rw_const\s*\(\s*(\w*)\s*,/ ) { 823 # Things not in Win16 824 $def .= 825 "#INFO:" 826 .join(',',"!WIN16",@current_platforms).":" 827 .join(',',@current_algorithms).";"; 828 $def .= "int PEM_read_$1(void);"; 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_read_bio_$1(void);"; 836 $def .= "int PEM_write_bio_$1(void);"; 837 next; 838 } elsif (/^DECLARE_PEM_write\s*\(\s*(\w*)\s*,/ || 839 /^DECLARE_PEM_write_cb\s*\(\s*(\w*)\s*,/ ) { 840 # Things not in Win16 841 $def .= 842 "#INFO:" 843 .join(',',"!WIN16",@current_platforms).":" 844 .join(',',@current_algorithms).";"; 845 $def .= "int PEM_write_$1(void);"; 846 $def .= 847 "#INFO:" 848 .join(',',@current_platforms).":" 849 .join(',',@current_algorithms).";"; 850 # Things that are everywhere 851 $def .= "int PEM_write_bio_$1(void);"; 852 next; 853 } elsif (/^DECLARE_PEM_read\s*\(\s*(\w*)\s*,/ || 854 /^DECLARE_PEM_read_cb\s*\(\s*(\w*)\s*,/ ) { 855 # Things not in Win16 856 $def .= 857 "#INFO:" 858 .join(',',"!WIN16",@current_platforms).":" 859 .join(',',@current_algorithms).";"; 860 $def .= "int PEM_read_$1(void);"; 861 $def .= 862 "#INFO:" 863 .join(',',@current_platforms).":" 864 .join(',',@current_algorithms).";"; 865 # Things that are everywhere 866 $def .= "int PEM_read_bio_$1(void);"; 867 next; 868 } elsif (/^OPENSSL_DECLARE_GLOBAL\s*\(\s*(\w*)\s*,\s*(\w*)\s*\)/) { 869 # Variant for platforms that do not 870 # have to access globale variables 871 # in shared libraries through functions 872 $def .= 873 "#INFO:" 874 .join(',',"!EXPORT_VAR_AS_FUNCTION",@current_platforms).":" 875 .join(',',@current_algorithms).";"; 876 $def .= "OPENSSL_EXTERN int _shadow_$2;"; 877 $def .= 878 "#INFO:" 879 .join(',',@current_platforms).":" 880 .join(',',@current_algorithms).";"; 881 # Variant for platforms that have to 882 # access globale variables in shared 883 # libraries through functions 884 &$make_variant("_shadow_$2","_shadow_$2", 885 "EXPORT_VAR_AS_FUNCTION", 886 "FUNCTION"); 887 } elsif ($tag{'CONST_STRICT'} != 1) { 888 if (/\{|\/\*|\([^\)]*$/) { 889 $line = $_; 890 } else { 891 $def .= $_; 892 } 893 } 894 } 895 } 896 close(IN); 897 898 my $algs; 899 my $plays; 900 901 print STDERR "DEBUG: postprocessing ----------\n" if $debug; 902 foreach (split /;/, $def) { 903 my $s; my $k = "FUNCTION"; my $p; my $a; 904 s/^[\n\s]*//g; 905 s/[\n\s]*$//g; 906 next if(/\#undef/); 907 next if(/typedef\W/); 908 next if(/\#define/); 909 910 # Reduce argument lists to empty () 911 # fold round brackets recursively: (t(*v)(t),t) -> (t{}{},t) -> {} 912 while(/\(.*\)/s) { 913 s/\([^\(\)]+\)/\{\}/gs; 914 s/\(\s*\*\s*(\w+)\s*\{\}\s*\)/$1/gs; #(*f{}) -> f 915 } 916 # pretend as we didn't use curly braces: {} -> () 917 s/\{\}/\(\)/gs; 918 919 s/STACK_OF\(\)/void/gs; 920 s/LHASH_OF\(\)/void/gs; 921 922 print STDERR "DEBUG: \$_ = \"$_\"\n" if $debug; 923 if (/^\#INFO:([^:]*):(.*)$/) { 924 $plats = $1; 925 $algs = $2; 926 print STDERR "DEBUG: found info on platforms ($plats) and algorithms ($algs)\n" if $debug; 927 next; 928 } elsif (/^\s*OPENSSL_EXTERN\s.*?(\w+(\{[0-9]+\})?)(\[[0-9]*\])*\s*$/) { 929 $s = $1; 930 $k = "VARIABLE"; 931 print STDERR "DEBUG: found external variable $s\n" if $debug; 932 } elsif (/TYPEDEF_\w+_OF/s) { 933 next; 934 } elsif (/(\w+)\s*\(\).*/s) { # first token prior [first] () is 935 $s = $1; # a function name! 936 print STDERR "DEBUG: found function $s\n" if $debug; 937 } elsif (/\(/ and not (/=/)) { 938 print STDERR "File $file: cannot parse: $_;\n"; 939 next; 940 } else { 941 next; 942 } 943 944 $syms{$s} = 1; 945 $kind{$s} = $k; 946 947 $p = $plats; 948 $a = $algs; 949 $a .= ",BF" if($s =~ /EVP_bf/); 950 $a .= ",CAST" if($s =~ /EVP_cast/); 951 $a .= ",DES" if($s =~ /EVP_des/); 952 $a .= ",DSA" if($s =~ /EVP_dss/); 953 $a .= ",IDEA" if($s =~ /EVP_idea/); 954 $a .= ",MD2" if($s =~ /EVP_md2/); 955 $a .= ",MD4" if($s =~ /EVP_md4/); 956 $a .= ",MD5" if($s =~ /EVP_md5/); 957 $a .= ",RC2" if($s =~ /EVP_rc2/); 958 $a .= ",RC4" if($s =~ /EVP_rc4/); 959 $a .= ",RC5" if($s =~ /EVP_rc5/); 960 $a .= ",RIPEMD" if($s =~ /EVP_ripemd/); 961 $a .= ",SHA" if($s =~ /EVP_sha/); 962 $a .= ",RSA" if($s =~ /EVP_(Open|Seal)(Final|Init)/); 963 $a .= ",RSA" if($s =~ /PEM_Seal(Final|Init|Update)/); 964 $a .= ",RSA" if($s =~ /RSAPrivateKey/); 965 $a .= ",RSA" if($s =~ /SSLv23?_((client|server)_)?method/); 966 967 $platform{$s} = 968 &reduce_platforms((defined($platform{$s})?$platform{$s}.',':"").$p); 969 $algorithm{$s} .= ','.$a; 970 971 if (defined($variant{$s})) { 972 foreach $v (split /;/,$variant{$s}) { 973 (my $r, my $p, my $k) = split(/:/,$v); 974 my $ip = join ',',map({ /^!(.*)$/ ? $1 : "!".$_ } split /,/, $p); 975 $syms{$r} = 1; 976 if (!defined($k)) { $k = $kind{$s}; } 977 $kind{$r} = $k."(".$s.")"; 978 $algorithm{$r} = $algorithm{$s}; 979 $platform{$r} = &reduce_platforms($platform{$s}.",".$p.",".$p); 980 $platform{$s} = &reduce_platforms($platform{$s}.','.$ip.','.$ip); 981 print STDERR "DEBUG: \$variant{\"$s\"} = ",$v,"; \$r = $r; \$p = ",$platform{$r},"; \$a = ",$algorithm{$r},"; \$kind = ",$kind{$r},"\n" if $debug; 982 } 983 } 984 print STDERR "DEBUG: \$s = $s; \$p = ",$platform{$s},"; \$a = ",$algorithm{$s},"; \$kind = ",$kind{$s},"\n" if $debug; 985 } 986 } 987 988 # Prune the returned symbols 989 990 delete $syms{"bn_dump1"}; 991 $platform{"BIO_s_log"} .= ",!WIN32,!WIN16,!macintosh"; 992 993 $platform{"PEM_read_NS_CERT_SEQ"} = "VMS"; 994 $platform{"PEM_write_NS_CERT_SEQ"} = "VMS"; 995 $platform{"PEM_read_P8_PRIV_KEY_INFO"} = "VMS"; 996 $platform{"PEM_write_P8_PRIV_KEY_INFO"} = "VMS"; 997 $platform{"EVP_sha384"} = "!VMSVAX"; 998 $platform{"EVP_sha512"} = "!VMSVAX"; 999 $platform{"SHA384_Init"} = "!VMSVAX"; 1000 $platform{"SHA384_Transform"} = "!VMSVAX"; 1001 $platform{"SHA384_Update"} = "!VMSVAX"; 1002 $platform{"SHA384_Final"} = "!VMSVAX"; 1003 $platform{"SHA384"} = "!VMSVAX"; 1004 $platform{"SHA512_Init"} = "!VMSVAX"; 1005 $platform{"SHA512_Transform"} = "!VMSVAX"; 1006 $platform{"SHA512_Update"} = "!VMSVAX"; 1007 $platform{"SHA512_Final"} = "!VMSVAX"; 1008 $platform{"SHA512"} = "!VMSVAX"; 1009 $platform{"WHIRLPOOL_Init"} = "!VMSVAX"; 1010 $platform{"WHIRLPOOL"} = "!VMSVAX"; 1011 $platform{"WHIRLPOOL_BitUpdate"} = "!VMSVAX"; 1012 $platform{"EVP_whirlpool"} = "!VMSVAX"; 1013 $platform{"WHIRLPOOL_Final"} = "!VMSVAX"; 1014 $platform{"WHIRLPOOL_Update"} = "!VMSVAX"; 1015 1016 1017 # Info we know about 1018 1019 push @ret, map { $_."\\".&info_string($_,"EXIST", 1020 $platform{$_}, 1021 $kind{$_}, 1022 $algorithm{$_}) } keys %syms; 1023 1024 if (keys %unknown_algorithms) { 1025 print STDERR "WARNING: mkdef.pl doesn't know the following algorithms:\n"; 1026 print STDERR "\t",join("\n\t",keys %unknown_algorithms),"\n"; 1027 } 1028 return(@ret); 1029} 1030 1031# Param: string of comma-separated platform-specs. 1032sub reduce_platforms 1033{ 1034 my ($platforms) = @_; 1035 my $pl = defined($platforms) ? $platforms : ""; 1036 my %p = map { $_ => 0 } split /,/, $pl; 1037 my $ret; 1038 1039 print STDERR "DEBUG: Entered reduce_platforms with \"$platforms\"\n" 1040 if $debug; 1041 # We do this, because if there's code like the following, it really 1042 # means the function exists in all cases and should therefore be 1043 # everywhere. By increasing and decreasing, we may attain 0: 1044 # 1045 # ifndef WIN16 1046 # int foo(); 1047 # else 1048 # int _fat foo(); 1049 # endif 1050 foreach $platform (split /,/, $pl) { 1051 if ($platform =~ /^!(.*)$/) { 1052 $p{$1}--; 1053 } else { 1054 $p{$platform}++; 1055 } 1056 } 1057 foreach $platform (keys %p) { 1058 if ($p{$platform} == 0) { delete $p{$platform}; } 1059 } 1060 1061 delete $p{""}; 1062 1063 $ret = join(',',sort(map { $p{$_} < 0 ? "!".$_ : $_ } keys %p)); 1064 print STDERR "DEBUG: Exiting reduce_platforms with \"$ret\"\n" 1065 if $debug; 1066 return $ret; 1067} 1068 1069sub info_string { 1070 (my $symbol, my $exist, my $platforms, my $kind, my $algorithms) = @_; 1071 1072 my %a = defined($algorithms) ? 1073 map { $_ => 1 } split /,/, $algorithms : (); 1074 my $k = defined($kind) ? $kind : "FUNCTION"; 1075 my $ret; 1076 my $p = &reduce_platforms($platforms); 1077 1078 delete $a{""}; 1079 1080 $ret = $exist; 1081 $ret .= ":".$p; 1082 $ret .= ":".$k; 1083 $ret .= ":".join(',',sort keys %a); 1084 return $ret; 1085} 1086 1087sub maybe_add_info { 1088 (my $name, *nums, my @symbols) = @_; 1089 my $sym; 1090 my $new_info = 0; 1091 my %syms=(); 1092 1093 print STDERR "Updating $name info\n"; 1094 foreach $sym (@symbols) { 1095 (my $s, my $i) = split /\\/, $sym; 1096 if (defined($nums{$s})) { 1097 $i =~ s/^(.*?:.*?:\w+)(\(\w+\))?/$1/; 1098 (my $n, my $dummy) = split /\\/, $nums{$s}; 1099 if (!defined($dummy) || $i ne $dummy) { 1100 $nums{$s} = $n."\\".$i; 1101 $new_info++; 1102 print STDERR "DEBUG: maybe_add_info for $s: \"$dummy\" => \"$i\"\n" if $debug; 1103 } 1104 } 1105 $syms{$s} = 1; 1106 } 1107 1108 my @s=sort { &parse_number($nums{$a},"n") <=> &parse_number($nums{$b},"n") } keys %nums; 1109 foreach $sym (@s) { 1110 (my $n, my $i) = split /\\/, $nums{$sym}; 1111 if (!defined($syms{$sym}) && $i !~ /^NOEXIST:/) { 1112 $new_info++; 1113 print STDERR "DEBUG: maybe_add_info for $sym: -> undefined\n" if $debug; 1114 } 1115 } 1116 if ($new_info) { 1117 print STDERR "$new_info old symbols got an info update\n"; 1118 if (!$do_rewrite) { 1119 print STDERR "You should do a rewrite to fix this.\n"; 1120 } 1121 } else { 1122 print STDERR "No old symbols needed info update\n"; 1123 } 1124} 1125 1126# Param: string of comma-separated keywords, each possibly prefixed with a "!" 1127sub is_valid 1128{ 1129 my ($keywords_txt,$platforms) = @_; 1130 my (@keywords) = split /,/,$keywords_txt; 1131 my ($falsesum, $truesum) = (0, 1); 1132 1133 # Param: one keyword 1134 sub recognise 1135 { 1136 my ($keyword,$platforms) = @_; 1137 1138 if ($platforms) { 1139 # platforms 1140 if ($keyword eq "VMSVAX" && $VMSVAX) { return 1; } 1141 if ($keyword eq "VMSNonVAX" && $VMSNonVAX) { return 1; } 1142 if ($keyword eq "VMS" && $VMS) { return 1; } 1143 if ($keyword eq "WIN32" && $W32) { return 1; } 1144 if ($keyword eq "WIN16" && $W16) { return 1; } 1145 if ($keyword eq "WINNT" && $NT) { return 1; } 1146 if ($keyword eq "OS2" && $OS2) { return 1; } 1147 # Special platforms: 1148 # EXPORT_VAR_AS_FUNCTION means that global variables 1149 # will be represented as functions. This currently 1150 # only happens on VMS-VAX. 1151 if ($keyword eq "EXPORT_VAR_AS_FUNCTION" && ($VMSVAX || $W32 || $W16)) { 1152 return 1; 1153 } 1154 if ($keyword eq "OPENSSL_FIPS" && $fips) { 1155 return 1; 1156 } 1157 if ($keyword eq "ZLIB" && $zlib) { return 1; } 1158 return 0; 1159 } else { 1160 # algorithms 1161 if ($keyword eq "RC2" && $no_rc2) { return 0; } 1162 if ($keyword eq "RC4" && $no_rc4) { return 0; } 1163 if ($keyword eq "RC5" && $no_rc5) { return 0; } 1164 if ($keyword eq "IDEA" && $no_idea) { return 0; } 1165 if ($keyword eq "DES" && $no_des) { return 0; } 1166 if ($keyword eq "BF" && $no_bf) { return 0; } 1167 if ($keyword eq "CAST" && $no_cast) { return 0; } 1168 if ($keyword eq "MD2" && $no_md2) { return 0; } 1169 if ($keyword eq "MD4" && $no_md4) { return 0; } 1170 if ($keyword eq "MD5" && $no_md5) { return 0; } 1171 if ($keyword eq "SHA" && $no_sha) { return 0; } 1172 if ($keyword eq "RIPEMD" && $no_ripemd) { return 0; } 1173 if ($keyword eq "MDC2" && $no_mdc2) { return 0; } 1174 if ($keyword eq "WHIRLPOOL" && $no_whirlpool) { return 0; } 1175 if ($keyword eq "RSA" && $no_rsa) { return 0; } 1176 if ($keyword eq "DSA" && $no_dsa) { return 0; } 1177 if ($keyword eq "DH" && $no_dh) { return 0; } 1178 if ($keyword eq "EC" && $no_ec) { return 0; } 1179 if ($keyword eq "ECDSA" && $no_ecdsa) { return 0; } 1180 if ($keyword eq "ECDH" && $no_ecdh) { return 0; } 1181 if ($keyword eq "HMAC" && $no_hmac) { return 0; } 1182 if ($keyword eq "AES" && $no_aes) { return 0; } 1183 if ($keyword eq "CAMELLIA" && $no_camellia) { return 0; } 1184 if ($keyword eq "SEED" && $no_seed) { return 0; } 1185 if ($keyword eq "EVP" && $no_evp) { return 0; } 1186 if ($keyword eq "LHASH" && $no_lhash) { return 0; } 1187 if ($keyword eq "STACK" && $no_stack) { return 0; } 1188 if ($keyword eq "ERR" && $no_err) { return 0; } 1189 if ($keyword eq "BUFFER" && $no_buffer) { return 0; } 1190 if ($keyword eq "BIO" && $no_bio) { return 0; } 1191 if ($keyword eq "COMP" && $no_comp) { return 0; } 1192 if ($keyword eq "DSO" && $no_dso) { return 0; } 1193 if ($keyword eq "KRB5" && $no_krb5) { return 0; } 1194 if ($keyword eq "ENGINE" && $no_engine) { return 0; } 1195 if ($keyword eq "HW" && $no_hw) { return 0; } 1196 if ($keyword eq "FP_API" && $no_fp_api) { return 0; } 1197 if ($keyword eq "STATIC_ENGINE" && $no_static_engine) { return 0; } 1198 if ($keyword eq "GMP" && $no_gmp) { return 0; } 1199 if ($keyword eq "RFC3779" && $no_rfc3779) { return 0; } 1200 if ($keyword eq "TLSEXT" && $no_tlsext) { return 0; } 1201 if ($keyword eq "PSK" && $no_psk) { return 0; } 1202 if ($keyword eq "CMS" && $no_cms) { return 0; } 1203 if ($keyword eq "EC2M" && $no_ec2m) { return 0; } 1204 if ($keyword eq "NEXTPROTONEG" && $no_nextprotoneg) { return 0; } 1205 if ($keyword eq "EC_NISTP_64_GCC_128" && $no_nistp_gcc) 1206 { return 0; } 1207 if ($keyword eq "SSL2" && $no_ssl2) { return 0; } 1208 if ($keyword eq "CAPIENG" && $no_capieng) { return 0; } 1209 if ($keyword eq "JPAKE" && $no_jpake) { return 0; } 1210 if ($keyword eq "SRP" && $no_srp) { return 0; } 1211 if ($keyword eq "SCTP" && $no_sctp) { return 0; } 1212 if ($keyword eq "UNIT_TEST" && $no_unit_test) { return 0; } 1213 if ($keyword eq "DEPRECATED" && $no_deprecated) { return 0; } 1214 1215 # Nothing recognise as true 1216 return 1; 1217 } 1218 } 1219 1220 foreach $k (@keywords) { 1221 if ($k =~ /^!(.*)$/) { 1222 $falsesum += &recognise($1,$platforms); 1223 } else { 1224 $truesum *= &recognise($k,$platforms); 1225 } 1226 } 1227 print STDERR "DEBUG: [",$#keywords,",",$#keywords < 0,"] is_valid($keywords_txt) => (\!$falsesum) && $truesum = ",(!$falsesum) && $truesum,"\n" if $debug; 1228 return (!$falsesum) && $truesum; 1229} 1230 1231sub print_test_file 1232{ 1233 (*OUT,my $name,*nums,my $testall,my @symbols)=@_; 1234 my $n = 1; my @e; my @r; 1235 my $sym; my $prev = ""; my $prefSSLeay; 1236 1237 (@e)=grep(/^SSLeay(\{[0-9]+\})?\\.*?:.*?:.*/,@symbols); 1238 (@r)=grep(/^\w+(\{[0-9]+\})?\\.*?:.*?:.*/ && !/^SSLeay(\{[0-9]+\})?\\.*?:.*?:.*/,@symbols); 1239 @symbols=((sort @e),(sort @r)); 1240 1241 foreach $sym (@symbols) { 1242 (my $s, my $i) = $sym =~ /^(.*?)\\(.*)$/; 1243 my $v = 0; 1244 $v = 1 if $i=~ /^.*?:.*?:VARIABLE/; 1245 my $p = ($i =~ /^[^:]*:([^:]*):/,$1); 1246 my $a = ($i =~ /^[^:]*:[^:]*:[^:]*:([^:]*)/,$1); 1247 if (!defined($nums{$s})) { 1248 print STDERR "Warning: $s does not have a number assigned\n" 1249 if(!$do_update); 1250 } elsif (is_valid($p,1) && is_valid($a,0)) { 1251 my $s2 = ($s =~ /^(.*?)(\{[0-9]+\})?$/, $1); 1252 if ($prev eq $s2) { 1253 print OUT "\t/* The following has already appeared previously */\n"; 1254 print STDERR "Warning: Symbol '",$s2,"' redefined. old=",($nums{$prev} =~ /^(.*?)\\/,$1),", new=",($nums{$s2} =~ /^(.*?)\\/,$1),"\n"; 1255 } 1256 $prev = $s2; # To warn about duplicates... 1257 1258 ($nn,$ni)=($nums{$s2} =~ /^(.*?)\\(.*)$/); 1259 if ($v) { 1260 print OUT "\textern int $s2; /* type unknown */ /* $nn $ni */\n"; 1261 } else { 1262 print OUT "\textern int $s2(); /* type unknown */ /* $nn $ni */\n"; 1263 } 1264 } 1265 } 1266} 1267 1268sub get_version { 1269 local *MF; 1270 my $v = '?'; 1271 open MF, 'Makefile' or return $v; 1272 while (<MF>) { 1273 $v = $1, last if /^VERSION=(.*?)\s*$/; 1274 } 1275 close MF; 1276 return $v; 1277} 1278 1279sub print_def_file 1280{ 1281 (*OUT,my $name,*nums,my @symbols)=@_; 1282 my $n = 1; my @e; my @r; my @v; my $prev=""; 1283 my $liboptions=""; 1284 my $libname = $name; 1285 my $http_vendor = 'www.openssl.org/'; 1286 my $version = get_version(); 1287 my $what = "OpenSSL: implementation of Secure Socket Layer"; 1288 my $description = "$what $version, $name - http://$http_vendor"; 1289 1290 if ($W32) 1291 { $libname.="32"; } 1292 elsif ($W16) 1293 { $libname.="16"; } 1294 elsif ($OS2) 1295 { # DLL names should not clash on the whole system. 1296 # However, they should not have any particular relationship 1297 # to the name of the static library. Chose descriptive names 1298 # (must be at most 8 chars). 1299 my %translate = (ssl => 'open_ssl', crypto => 'cryptssl'); 1300 $libname = $translate{$name} || $name; 1301 $liboptions = <<EOO; 1302INITINSTANCE 1303DATA MULTIPLE NONSHARED 1304EOO 1305 # Vendor field can't contain colon, drat; so we omit http:// 1306 $description = "\@#$http_vendor:$version#\@$what; DLL for library $name. Build for EMX -Zmtd"; 1307 } 1308 1309 print OUT <<"EOF"; 1310; 1311; Definition file for the DLL version of the $name library from OpenSSL 1312; 1313 1314LIBRARY $libname $liboptions 1315 1316EOF 1317 1318 if ($W16) { 1319 print <<"EOF"; 1320CODE PRELOAD MOVEABLE 1321DATA PRELOAD MOVEABLE SINGLE 1322 1323EXETYPE WINDOWS 1324 1325HEAPSIZE 4096 1326STACKSIZE 8192 1327 1328EOF 1329 } 1330 1331 print "EXPORTS\n"; 1332 1333 (@e)=grep(/^SSLeay(\{[0-9]+\})?\\.*?:.*?:FUNCTION/,@symbols); 1334 (@r)=grep(/^\w+(\{[0-9]+\})?\\.*?:.*?:FUNCTION/ && !/^SSLeay(\{[0-9]+\})?\\.*?:.*?:FUNCTION/,@symbols); 1335 (@v)=grep(/^\w+(\{[0-9]+\})?\\.*?:.*?:VARIABLE/,@symbols); 1336 @symbols=((sort @e),(sort @r), (sort @v)); 1337 1338 1339 foreach $sym (@symbols) { 1340 (my $s, my $i) = $sym =~ /^(.*?)\\(.*)$/; 1341 my $v = 0; 1342 $v = 1 if $i =~ /^.*?:.*?:VARIABLE/; 1343 if (!defined($nums{$s})) { 1344 printf STDERR "Warning: $s does not have a number assigned\n" 1345 if(!$do_update); 1346 } else { 1347 (my $n, my $dummy) = split /\\/, $nums{$s}; 1348 my %pf = (); 1349 my $p = ($i =~ /^[^:]*:([^:]*):/,$1); 1350 my $a = ($i =~ /^[^:]*:[^:]*:[^:]*:([^:]*)/,$1); 1351 if (is_valid($p,1) && is_valid($a,0)) { 1352 my $s2 = ($s =~ /^(.*?)(\{[0-9]+\})?$/, $1); 1353 if ($prev eq $s2) { 1354 print STDERR "Warning: Symbol '",$s2,"' redefined. old=",($nums{$prev} =~ /^(.*?)\\/,$1),", new=",($nums{$s2} =~ /^(.*?)\\/,$1),"\n"; 1355 } 1356 $prev = $s2; # To warn about duplicates... 1357 if($v && !$OS2) { 1358 printf OUT " %s%-39s @%-8d DATA\n",($W32)?"":"_",$s2,$n; 1359 } else { 1360 printf OUT " %s%-39s @%d\n",($W32||$OS2)?"":"_",$s2,$n; 1361 } 1362 } 1363 } 1364 } 1365 printf OUT "\n"; 1366} 1367 1368sub load_numbers 1369{ 1370 my($name)=@_; 1371 my(@a,%ret); 1372 1373 $max_num = 0; 1374 $num_noinfo = 0; 1375 $prev = ""; 1376 $prev_cnt = 0; 1377 1378 open(IN,"<$name") || die "unable to open $name:$!\n"; 1379 while (<IN>) { 1380 chop; 1381 s/#.*$//; 1382 next if /^\s*$/; 1383 @a=split; 1384 if (defined $ret{$a[0]}) { 1385 # This is actually perfectly OK 1386 #print STDERR "Warning: Symbol '",$a[0],"' redefined. old=",$ret{$a[0]},", new=",$a[1],"\n"; 1387 } 1388 if ($max_num > $a[1]) { 1389 print STDERR "Warning: Number decreased from ",$max_num," to ",$a[1],"\n"; 1390 } 1391 elsif ($max_num == $a[1]) { 1392 # This is actually perfectly OK 1393 #print STDERR "Warning: Symbol ",$a[0]," has same number as previous ",$prev,": ",$a[1],"\n"; 1394 if ($a[0] eq $prev) { 1395 $prev_cnt++; 1396 $a[0] .= "{$prev_cnt}"; 1397 } 1398 } 1399 else { 1400 $prev_cnt = 0; 1401 } 1402 if ($#a < 2) { 1403 # Existence will be proven later, in do_defs 1404 $ret{$a[0]}=$a[1]; 1405 $num_noinfo++; 1406 } else { 1407 $ret{$a[0]}=$a[1]."\\".$a[2]; # \\ is a special marker 1408 } 1409 $max_num = $a[1] if $a[1] > $max_num; 1410 $prev=$a[0]; 1411 } 1412 if ($num_noinfo) { 1413 print STDERR "Warning: $num_noinfo symbols were without info."; 1414 if ($do_rewrite) { 1415 printf STDERR " The rewrite will fix this.\n"; 1416 } else { 1417 printf STDERR " You should do a rewrite to fix this.\n"; 1418 } 1419 } 1420 close(IN); 1421 return(%ret); 1422} 1423 1424sub parse_number 1425{ 1426 (my $str, my $what) = @_; 1427 (my $n, my $i) = split(/\\/,$str); 1428 if ($what eq "n") { 1429 return $n; 1430 } else { 1431 return $i; 1432 } 1433} 1434 1435sub rewrite_numbers 1436{ 1437 (*OUT,$name,*nums,@symbols)=@_; 1438 my $thing; 1439 1440 print STDERR "Rewriting $name\n"; 1441 1442 my @r = grep(/^\w+(\{[0-9]+\})?\\.*?:.*?:\w+\(\w+\)/,@symbols); 1443 my $r; my %r; my %rsyms; 1444 foreach $r (@r) { 1445 (my $s, my $i) = split /\\/, $r; 1446 my $a = $1 if $i =~ /^.*?:.*?:\w+\((\w+)\)/; 1447 $i =~ s/^(.*?:.*?:\w+)\(\w+\)/$1/; 1448 $r{$a} = $s."\\".$i; 1449 $rsyms{$s} = 1; 1450 } 1451 1452 my %syms = (); 1453 foreach $_ (@symbols) { 1454 (my $n, my $i) = split /\\/; 1455 $syms{$n} = 1; 1456 } 1457 1458 my @s=sort { 1459 &parse_number($nums{$a},"n") <=> &parse_number($nums{$b},"n") 1460 || $a cmp $b 1461 } keys %nums; 1462 foreach $sym (@s) { 1463 (my $n, my $i) = split /\\/, $nums{$sym}; 1464 next if defined($i) && $i =~ /^.*?:.*?:\w+\(\w+\)/; 1465 next if defined($rsyms{$sym}); 1466 print STDERR "DEBUG: rewrite_numbers for sym = ",$sym,": i = ",$i,", n = ",$n,", rsym{sym} = ",$rsyms{$sym},"syms{sym} = ",$syms{$sym},"\n" if $debug; 1467 $i="NOEXIST::FUNCTION:" 1468 if !defined($i) || $i eq "" || !defined($syms{$sym}); 1469 my $s2 = $sym; 1470 $s2 =~ s/\{[0-9]+\}$//; 1471 printf OUT "%s%-39s %d\t%s\n","",$s2,$n,$i; 1472 if (exists $r{$sym}) { 1473 (my $s, $i) = split /\\/,$r{$sym}; 1474 my $s2 = $s; 1475 $s2 =~ s/\{[0-9]+\}$//; 1476 printf OUT "%s%-39s %d\t%s\n","",$s2,$n,$i; 1477 } 1478 } 1479} 1480 1481sub update_numbers 1482{ 1483 (*OUT,$name,*nums,my $start_num, my @symbols)=@_; 1484 my $new_syms = 0; 1485 1486 print STDERR "Updating $name numbers\n"; 1487 1488 my @r = grep(/^\w+(\{[0-9]+\})?\\.*?:.*?:\w+\(\w+\)/,@symbols); 1489 my $r; my %r; my %rsyms; 1490 foreach $r (@r) { 1491 (my $s, my $i) = split /\\/, $r; 1492 my $a = $1 if $i =~ /^.*?:.*?:\w+\((\w+)\)/; 1493 $i =~ s/^(.*?:.*?:\w+)\(\w+\)/$1/; 1494 $r{$a} = $s."\\".$i; 1495 $rsyms{$s} = 1; 1496 } 1497 1498 foreach $sym (@symbols) { 1499 (my $s, my $i) = $sym =~ /^(.*?)\\(.*)$/; 1500 next if $i =~ /^.*?:.*?:\w+\(\w+\)/; 1501 next if defined($rsyms{$sym}); 1502 die "ERROR: Symbol $sym had no info attached to it." 1503 if $i eq ""; 1504 if (!exists $nums{$s}) { 1505 $new_syms++; 1506 my $s2 = $s; 1507 $s2 =~ s/\{[0-9]+\}$//; 1508 printf OUT "%s%-39s %d\t%s\n","",$s2, ++$start_num,$i; 1509 if (exists $r{$s}) { 1510 ($s, $i) = split /\\/,$r{$s}; 1511 $s =~ s/\{[0-9]+\}$//; 1512 printf OUT "%s%-39s %d\t%s\n","",$s, $start_num,$i; 1513 } 1514 } 1515 } 1516 if($new_syms) { 1517 print STDERR "$new_syms New symbols added\n"; 1518 } else { 1519 print STDERR "No New symbols Added\n"; 1520 } 1521} 1522 1523sub check_existing 1524{ 1525 (*nums, my @symbols)=@_; 1526 my %existing; my @remaining; 1527 @remaining=(); 1528 foreach $sym (@symbols) { 1529 (my $s, my $i) = $sym =~ /^(.*?)\\(.*)$/; 1530 $existing{$s}=1; 1531 } 1532 foreach $sym (keys %nums) { 1533 if (!exists $existing{$sym}) { 1534 push @remaining, $sym; 1535 } 1536 } 1537 if(@remaining) { 1538 print STDERR "The following symbols do not seem to exist:\n"; 1539 foreach $sym (@remaining) { 1540 print STDERR "\t",$sym,"\n"; 1541 } 1542 } 1543} 1544 1545