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