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