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