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