c6db12db4a45d589166a3ae34b775a2e41d0221f
[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
9 my $crypto_num="util/libeay.num";
10 my $ssl_num=   "util/ssleay.num";
11
12 my $do_update = 0;
13 my $do_crypto = 0;
14 my $do_ssl = 0;
15 my $do_ctest = 0;
16 my $rsaref = 0;
17
18 my $W32=1;
19 my $NT=0;
20 # Set this to make typesafe STACK definitions appear in DEF
21 my $safe_stack_def = 0;
22
23 my $options="";
24 open(IN,"<Makefile.ssl") || die "unable to open Makefile.ssl!\n";
25 while(<IN>) {
26     $options=$1 if (/^OPTIONS=(.*)$/);
27 }
28 close(IN);
29
30 # The following ciphers may be excluded (by Configure). This means functions
31 # defined with ifndef(NO_XXX) are not included in the .def file, and everything
32 # in directory xxx is ignored.
33 my $no_rc2; my $no_rc4; my $no_rc5; my $no_idea; my $no_des; my $no_bf;
34 my $no_cast; my $no_md2; my $no_md5; my $no_sha; my $no_ripemd; my $no_mdc2;
35 my $no_rsa; my $no_dsa; my $no_dh; my $no_hmac=0;
36
37 foreach (@ARGV, split(/ /, $options))
38         {
39         $W32=1 if $_ eq "32";
40         $W32=0 if $_ eq "16";
41         if($_ eq "NT") {
42                 $W32 = 1;
43                 $NT = 1;
44         }
45         $do_ssl=1 if $_ eq "ssleay";
46         $do_ssl=1 if $_ eq "ssl";
47         $do_crypto=1 if $_ eq "libeay";
48         $do_crypto=1 if $_ eq "crypto";
49         $do_update=1 if $_ eq "update";
50         $do_ctest=1 if $_ eq "ctest";
51         $rsaref=1 if $_ eq "rsaref";
52         #$safe_stack_def=1 if $_ eq "-DDEBUG_SAFESTACK";
53
54         if    (/^no-rc2$/)      { $no_rc2=1; }
55         elsif (/^no-rc4$/)      { $no_rc4=1; }
56         elsif (/^no-rc5$/)      { $no_rc5=1; }
57         elsif (/^no-idea$/)     { $no_idea=1; }
58         elsif (/^no-des$/)      { $no_des=1; }
59         elsif (/^no-bf$/)       { $no_bf=1; }
60         elsif (/^no-cast$/)     { $no_cast=1; }
61         elsif (/^no-md2$/)      { $no_md2=1; }
62         elsif (/^no-md5$/)      { $no_md5=1; }
63         elsif (/^no-sha$/)      { $no_sha=1; }
64         elsif (/^no-ripemd$/)   { $no_ripemd=1; }
65         elsif (/^no-mdc2$/)     { $no_mdc2=1; }
66         elsif (/^no-rsa$/)      { $no_rsa=1; }
67         elsif (/^no-dsa$/)      { $no_dsa=1; }
68         elsif (/^no-dh$/)       { $no_dh=1; }
69         elsif (/^no-hmac$/)     { $no_hmac=1; }
70         }
71
72
73 if (!$do_ssl && !$do_crypto)
74         {
75         print STDERR "usage: $0 ( ssl | crypto ) [ 16 | 32 | NT ] [rsaref]\n";
76         exit(1);
77         }
78
79 %ssl_list=&load_numbers($ssl_num);
80 $max_ssl = $max_num;
81 %crypto_list=&load_numbers($crypto_num);
82 $max_crypto = $max_num;
83
84 my $ssl="ssl/ssl.h";
85
86 my $crypto ="crypto/crypto.h";
87 $crypto.=" crypto/des/des.h" unless $no_des;
88 $crypto.=" crypto/idea/idea.h" unless $no_idea;
89 $crypto.=" crypto/rc4/rc4.h" unless $no_rc4;
90 $crypto.=" crypto/rc5/rc5.h" unless $no_rc5;
91 $crypto.=" crypto/rc2/rc2.h" unless $no_rc2;
92 $crypto.=" crypto/bf/blowfish.h" unless $no_bf;
93 $crypto.=" crypto/cast/cast.h" unless $no_cast;
94 $crypto.=" crypto/md2/md2.h" unless $no_md2;
95 $crypto.=" crypto/md5/md5.h" unless $no_md5;
96 $crypto.=" crypto/mdc2/mdc2.h" unless $no_mdc2;
97 $crypto.=" crypto/sha/sha.h" unless $no_sha;
98 $crypto.=" crypto/ripemd/ripemd.h" unless $no_ripemd;
99
100 $crypto.=" crypto/bn/bn.h";
101 $crypto.=" crypto/rsa/rsa.h" unless $no_rsa;
102 $crypto.=" crypto/dsa/dsa.h" unless $no_dsa;
103 $crypto.=" crypto/dh/dh.h" unless $no_dh;
104 $crypto.=" crypto/hmac/hmac.h" unless $no_hmac;
105
106 $crypto.=" crypto/stack/stack.h";
107 $crypto.=" crypto/buffer/buffer.h";
108 $crypto.=" crypto/bio/bio.h";
109 $crypto.=" crypto/dso/dso.h";
110 $crypto.=" crypto/lhash/lhash.h";
111 $crypto.=" crypto/conf/conf.h";
112 $crypto.=" crypto/txt_db/txt_db.h";
113
114 $crypto.=" crypto/evp/evp.h";
115 $crypto.=" crypto/objects/objects.h";
116 $crypto.=" crypto/pem/pem.h";
117 #$crypto.=" crypto/meth/meth.h";
118 $crypto.=" crypto/asn1/asn1.h";
119 $crypto.=" crypto/asn1/asn1_mac.h";
120 $crypto.=" crypto/err/err.h";
121 $crypto.=" crypto/pkcs7/pkcs7.h";
122 $crypto.=" crypto/pkcs12/pkcs12.h";
123 $crypto.=" crypto/x509/x509.h";
124 $crypto.=" crypto/x509/x509_vfy.h";
125 $crypto.=" crypto/x509v3/x509v3.h";
126 $crypto.=" crypto/rand/rand.h";
127 $crypto.=" crypto/comp/comp.h";
128 $crypto.=" crypto/tmdiff.h";
129
130 my @ssl_func = &do_defs("SSLEAY", $ssl);
131 my @crypto_func = &do_defs("LIBEAY", $crypto);
132
133
134 if ($do_update) {
135
136 if ($do_ssl == 1) {
137         open(OUT, ">>$ssl_num");
138         &update_numbers(*OUT,"SSLEAY",*ssl_list,$max_ssl, @ssl_func);
139         close OUT;
140 }
141
142 if($do_crypto == 1) {
143         open(OUT, ">>$crypto_num");
144         &update_numbers(*OUT,"LIBEAY",*crypto_list,$max_crypto, @crypto_func);
145         close OUT;
146
147
148 } elsif ($do_ctest) {
149
150         print <<"EOF";
151
152 /* Test file to check all DEF file symbols are present by trying
153  * to link to all of them. This is *not* intended to be run!
154  */
155
156 int main()
157 {
158 EOF
159         &print_test_file(*STDOUT,"SSLEAY",*ssl_list,@ssl_func)
160                 if $do_ssl == 1;
161
162         &print_test_file(*STDOUT,"LIBEAY",*crypto_list,@crypto_func)
163                 if $do_crypto == 1;
164
165         print "}\n";
166
167 } else {
168
169         &print_def_file(*STDOUT,"SSLEAY",*ssl_list,@ssl_func)
170                 if $do_ssl == 1;
171
172         &print_def_file(*STDOUT,"LIBEAY",*crypto_list,@crypto_func)
173                 if $do_crypto == 1;
174
175 }
176
177
178 sub do_defs
179 {
180         my($name,$files)=@_;
181         my $file;
182         my @ret;
183         my %funcs;
184         my $cpp;
185
186         foreach $file (split(/\s+/,$files))
187                 {
188                 open(IN,"<$file") || die "unable to open $file:$!\n";
189                 my $line = "", my $def= "";
190                 my %tag = (
191                         FreeBSD         => 0,
192                         NOPROTO         => 0,
193                         WIN16           => 0,
194                         PERL5           => 0,
195                         _WINDLL         => 0,
196                         NO_FP_API       => 0,
197                         CONST_STRICT    => 0,
198                         TRUE            => 1,
199                         NO_RC2          => 0,
200                         NO_RC4          => 0,
201                         NO_RC5          => 0,
202                         NO_IDEA         => 0,
203                         NO_DES          => 0,
204                         NO_BF           => 0,
205                         NO_CAST         => 0,
206                         NO_MD2          => 0,
207                         NO_MD5          => 0,
208                         NO_SHA          => 0,
209                         NO_RIPEMD       => 0,
210                         NO_MDC2         => 0,
211                         NO_RSA          => 0,
212                         NO_DSA          => 0,
213                         NO_DH           => 0,
214                         NO_HMAC         => 0,
215                 );
216                 while(<IN>) {
217                         last if (/BEGIN ERROR CODES/);
218                         if ($line ne '') {
219                                 $_ = $line . $_;
220                                 $line = '';
221                         }
222
223                         if (/\\$/) {
224                                 $line = $_;
225                                 next;
226                         }
227
228                         $cpp = 1 if /^#.*ifdef.*cplusplus/;
229                         if ($cpp) {
230                                 $cpp = 0 if /^#.*endif/;
231                                 next;
232                         }
233
234                         s/\/\*.*?\*\///gs;                   # ignore comments
235                         s/{[^{}]*}//gs;                      # ignore {} blocks
236                         if (/^\#\s*ifndef (.*)/) {
237                                 push(@tag,$1);
238                                 $tag{$1}=-1;
239                                 next;
240                         } elsif (/^\#\s*if !defined\(([^\)]+)\)/) {
241                                 push(@tag,$1);
242                                 $tag{$1}=-1;
243                                 next;
244                         } elsif (/^\#\s*ifdef (.*)/) {
245                                 push(@tag,$1);
246                                 $tag{$1}=1;
247                                 next;
248                         } elsif (/^\#\s*if defined(.*)/) {
249                                 push(@tag,$1);
250                                 $tag{$1}=1;
251                                 next;
252                         } elsif (/^\#\s*endif/) {
253                                 $tag{$tag[$#tag]}=0;
254                                 pop(@tag);
255                                 next;
256                         } elsif (/^\#\s*else/) {
257                                 my $t=$tag[$#tag];
258                                 $tag{$t}= -$tag{$t};
259                                 next;
260                         } elsif (/^\#\s*if\s+1/) {
261                                 # Dummy tag
262                                 push(@tag,"TRUE");
263                                 $tag{"TRUE"}=1;
264                                 next;
265                         } elsif (/^\#\s*if\s+0/) {
266                                 # Dummy tag
267                                 push(@tag,"TRUE");
268                                 $tag{"TRUE"}=-1;
269                                 next;
270                         } elsif (/^\#/) {
271                                 next;
272                         }
273                         if (!$safe_stack_def &&
274                                 /^\s*DECLARE_STACK_OF\s*\(\s*(\w*)\s*\)/) {
275                                 next;
276                         } elsif ($safe_stack_def &&
277                                 /^\s*DECLARE_STACK_OF\s*\(\s*(\w*)\s*\)/) {
278                                 $funcs{"sk_${1}_new"} = 1;
279                                 $funcs{"sk_${1}_new_null"} = 1;
280                                 $funcs{"sk_${1}_free"} = 1;
281                                 $funcs{"sk_${1}_num"} = 1;
282                                 $funcs{"sk_${1}_value"} = 1;
283                                 $funcs{"sk_${1}_set"} = 1;
284                                 $funcs{"sk_${1}_zero"} = 1;
285                                 $funcs{"sk_${1}_push"} = 1;
286                                 $funcs{"sk_${1}_unshift"} = 1;
287                                 $funcs{"sk_${1}_find"} = 1;
288                                 $funcs{"sk_${1}_delete"} = 1;
289                                 $funcs{"sk_${1}_delete_ptr"} = 1;
290                                 $funcs{"sk_${1}_insert"} = 1;
291                                 $funcs{"sk_${1}_set_cmp_func"} = 1;
292                                 $funcs{"sk_${1}_dup"} = 1;
293                                 $funcs{"sk_${1}_pop_free"} = 1;
294                                 $funcs{"sk_${1}_shift"} = 1;
295                                 $funcs{"sk_${1}_pop"} = 1;
296                                 $funcs{"sk_${1}_sort"} = 1;
297                         } if (!$safe_stack_def &&
298                                 /^\s*DECLARE_ASN1_SET_OF\s*\(\s*(\w*)\s*\)/) {
299                                 next;
300                         } elsif ($safe_stack_def &&
301                                 /^\s*DECLARE_ASN1_SET_OF\s*\(\s*(\w*)\s*\)/) {
302                                 $funcs{"d2i_ASN1_SET_OF_${1}"} = 1;
303                                 $funcs{"i2d_ASN1_SET_OF_${1}"} = 1;
304                         } elsif (/^DECLARE_PEM_rw\s*\(\s*(\w*)\s*,/ ||
305                                      /^DECLARE_PEM_rw_cb\s*\(\s*(\w*)\s*,/ ) {
306                                 if (!($no_rsa && ($1 eq "RSAPrivateKey" ||
307                                                   $1 eq "RSAPublicKey" ||
308                                                   $1 eq "RSA_PUBKEY"))) {
309                                         if($W32) {
310                                                 $funcs{"PEM_read_${1}"} = 1;
311                                                 $funcs{"PEM_write_${1}"} = 1;
312                                         }
313                                         $funcs{"PEM_read_bio_${1}"} = 1;
314                                         $funcs{"PEM_write_bio_${1}"} = 1;
315                                 }
316                         } elsif (/^DECLARE_PEM_write\s*\(\s*(\w*)\s*,/ ||
317                                      /^DECLARE_PEM_write_cb\s*\(\s*(\w*)\s*,/ ) {
318                                 if (!($no_rsa && ($1 eq "RSAPrivateKey" ||
319                                                   $1 eq "RSAPublicKey" ||
320                                                   $1 eq "RSA_PUBKEY"))) {
321                                         if($W32) {
322                                                 $funcs{"PEM_write_${1}"} = 1;
323                                         }
324                                         $funcs{"PEM_write_bio_${1}"} = 1;
325                                 }
326                         } elsif (/^DECLARE_PEM_read\s*\(\s*(\w*)\s*,/ ||
327                                      /^DECLARE_PEM_read_cb\s*\(\s*(\w*)\s*,/ ) {
328                                 if($W32) {
329                                         $funcs{"PEM_read_${1}"} = 1;
330                                 }
331                                 $funcs{"PEM_read_bio_${1}"} = 1;
332                         } elsif (
333                                 ($tag{'TRUE'} != -1) &&
334                                 ($tag{'FreeBSD'} != 1) &&
335                                 ($tag{'CONST_STRICT'} != 1) &&
336                                 (($W32 && ($tag{'WIN16'} != 1)) ||
337                                  (!$W32 && ($tag{'WIN16'} != -1))) &&
338                                 ($tag{'PERL5'} != 1) &&
339 #                               ($tag{'_WINDLL'} != -1) &&
340                                 ((!$W32 && $tag{'_WINDLL'} != -1) ||
341                                  ($W32 && $tag{'_WINDLL'} != 1)) &&
342                                 ((($tag{'NO_FP_API'} != 1) && $W32) ||
343                                  (($tag{'NO_FP_API'} != -1) && !$W32)) &&
344                                 ($tag{'NO_RC2'} == 0  || !$no_rc2) &&
345                                 ($tag{'NO_RC4'} == 0  || !$no_rc4) &&
346                                 ($tag{'NO_RC5'} == 0  || !$no_rc5) &&
347                                 ($tag{'NO_IDEA'} == 0 || !$no_idea) &&
348                                 ($tag{'NO_DES'} == 0  || !$no_des) &&
349                                 ($tag{'NO_BF'} == 0   || !$no_bf) &&
350                                 ($tag{'NO_CAST'} == 0 || !$no_cast) &&
351                                 ($tag{'NO_MD2'} == 0  || !$no_md2) &&
352                                 ($tag{'NO_MD5'} == 0  || !$no_md5) &&
353                                 ($tag{'NO_SHA'} == 0  || !$no_sha) &&
354                                 ($tag{'NO_RIPEMD'} == 0 || !$no_ripemd) &&
355                                 ($tag{'NO_MDC2'} == 0 || !$no_mdc2) &&
356                                 ($tag{'NO_RSA'} == 0  || !$no_rsa) &&
357                                 ($tag{'NO_DSA'} == 0  || !$no_dsa) &&
358                                 ($tag{'NO_DH'} == 0   || !$no_dh) &&
359                                 ($tag{'NO_HMAC'} == 0 || !$no_hmac))
360                                 {
361                                         if (/{|\/\*/) { # }
362                                                 $line = $_;
363                                         } else {
364                                                 $def .= $_;
365                                         }
366                                 }
367                         }
368                 close(IN);
369
370                 foreach (split /;/, $def) {
371                         s/^[\n\s]*//g;
372                         s/[\n\s]*$//g;
373                         next if(/#define/);
374                         next if(/typedef\W/);
375                         next if(/EVP_bf/ and $no_bf);
376                         next if(/EVP_cast/ and $no_cast);
377                         next if(/EVP_des/ and $no_des);
378                         next if(/EVP_dss/ and $no_dsa);
379                         next if(/EVP_idea/ and $no_idea);
380                         next if(/EVP_md2/ and $no_md2);
381                         next if(/EVP_md5/ and $no_md5);
382                         next if(/EVP_rc2/ and $no_rc2);
383                         next if(/EVP_rc4/ and $no_rc4);
384                         next if(/EVP_rc5/ and $no_rc5);
385                         next if(/EVP_ripemd/ and $no_ripemd);
386                         next if(/EVP_sha/ and $no_sha);
387                         next if(/EVP_(Open|Seal)(Final|Init)/ and $no_rsa);
388                         next if(/PEM_Seal(Final|Init|Update)/ and $no_rsa);
389                         next if(/RSAPrivateKey/ and $no_rsa);
390                         next if(/SSLv23?_((client|server)_)?method/ and $no_rsa);
391
392                         if (/\(\*(\w*)\([^\)]+/) {
393                                 $funcs{$1} = 1;
394                         } elsif (/\w+\W+(\w+)\W*\(\s*\)$/s) {
395                                 # K&R C
396                                 next;
397                         } elsif (/\w+\W+\w+\W*\(.*\)$/s) {
398                                 while (not /\(\)$/s) {
399                                         s/[^\(\)]*\)$/\)/s;
400                                         s/\([^\(\)]*\)\)$/\)/s;
401                                 }
402                                 s/\(void\)//;
403                                 /(\w+)\W*\(\)/s;
404                                 $funcs{$1} = 1;
405                         } elsif (/\(/ and not (/=/)) {
406                                 print STDERR "File $file: cannot parse: $_;\n";
407                         }
408                 }
409         }
410
411         # Prune the returned functions
412
413         delete $funcs{"SSL_add_dir_cert_subjects_to_stack"};
414         delete $funcs{"RSA_PKCS1_RSAref"} unless $rsaref;
415         delete $funcs{"bn_dump1"};
416
417         if($W32) {
418                 delete $funcs{"BIO_s_file_internal"};
419                 delete $funcs{"BIO_new_file_internal"};
420                 delete $funcs{"BIO_new_fp_internal"};
421         } else {
422                 if(exists $funcs{"ERR_load_CRYPTO_strings"}) {
423                         delete $funcs{"ERR_load_CRYPTO_strings"};
424                         $funcs{"ERR_load_CRYPTOlib_strings"} = 1;
425                 }
426                 delete $funcs{"BIO_s_file"};
427                 delete $funcs{"BIO_new_file"};
428                 delete $funcs{"BIO_new_fp"};
429         }
430         if (!$NT) {
431                 delete $funcs{"BIO_s_log"};
432         }
433
434         push @ret, keys %funcs;
435
436         return(@ret);
437 }
438
439 sub print_test_file
440 {
441         (*OUT,my $name,*nums,my @functions)=@_;
442         my $n = 1; my @e; my @r;
443         my $func;
444
445         (@e)=grep(/^SSLeay/,@functions);
446         (@r)=grep(!/^SSLeay/,@functions);
447         @functions=((sort @e),(sort @r));
448
449         foreach $func (@functions) {
450                 if (!defined($nums{$func})) {
451                         printf STDERR "$func does not have a number assigned\n"
452                                         if(!$do_update);
453                 } else {
454                         $n=$nums{$func};
455                         print OUT "\t$func();\n";
456                 }
457         }
458 }
459
460 sub print_def_file
461 {
462         (*OUT,my $name,*nums,my @functions)=@_;
463         my $n = 1; my @e; my @r;
464
465         if ($W32)
466                 { $name.="32"; }
467         else
468                 { $name.="16"; }
469
470         print OUT <<"EOF";
471 ;
472 ; Definition file for the DLL version of the $name library from OpenSSL
473 ;
474
475 LIBRARY         $name
476
477 DESCRIPTION     'OpenSSL $name - http://www.openssl.org/'
478
479 EOF
480
481         if (!$W32) {
482                 print <<"EOF";
483 CODE            PRELOAD MOVEABLE
484 DATA            PRELOAD MOVEABLE SINGLE
485
486 EXETYPE         WINDOWS
487
488 HEAPSIZE        4096
489 STACKSIZE       8192
490
491 EOF
492         }
493
494         print "EXPORTS\n";
495
496
497         (@e)=grep(/^SSLeay/,@functions);
498         (@r)=grep(!/^SSLeay/,@functions);
499         @functions=((sort @e),(sort @r));
500
501         foreach $func (@functions) {
502                 if (!defined($nums{$func})) {
503                         printf STDERR "$func does not have a number assigned\n"
504                                         if(!$do_update);
505                 } else {
506                         $n=$nums{$func};
507                         printf OUT "    %s%-40s@%d\n",($W32)?"":"_",$func,$n;
508                 }
509         }
510         printf OUT "\n";
511 }
512
513 sub load_numbers
514 {
515         my($name)=@_;
516         my(@a,%ret);
517
518         $max_num = 0;
519
520         open(IN,"<$name") || die "unable to open $name:$!\n";
521         while (<IN>) {
522                 chop;
523                 s/#.*$//;
524                 next if /^\s*$/;
525                 @a=split;
526                 $ret{$a[0]}=$a[1];
527                 $max_num = $a[1] if $a[1] > $max_num;
528         }
529         close(IN);
530         return(%ret);
531 }
532
533 sub update_numbers
534 {
535         (*OUT,$name,*nums,my $start_num, my @functions)=@_;
536         my $new_funcs = 0;
537         print STDERR "Updating $name\n";
538         foreach $func (@functions) {
539                 if (!exists $nums{$func}) {
540                         $new_funcs++;
541                         printf OUT "%s%-40s%d\n","",$func, ++$start_num;
542                 }
543         }
544         if($new_funcs) {
545                 print STDERR "$new_funcs New Functions added\n";
546         } else {
547                 print STDERR "No New Functions Added\n";
548         }
549 }