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