blob: 409a39019f94a26871b337b3e85a1bc63a3c4bfd [file] [log] [blame]
Bodo Möllerce9449c1999-06-07 22:48:50 +00001#!/usr/local/bin/perl -w
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002#
3# generate a .def file
4#
5# It does this by parsing the header files and looking for the
Dr. Stephen Henson47339f61999-04-26 00:23:10 +00006# prototyped functions: it then prunes the output.
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00007#
Rich Salz1a53f1d2015-02-06 10:45:29 -05008# Intermediary files are created, call libeay.num and ssleay.num,
9# The format of these files is:
Richard Levitte948d0122000-09-07 08:43:08 +000010#
Matt Caswelle863d922015-12-14 09:22:58 +000011# routine-name nnnn vers info
Richard Levitte948d0122000-09-07 08:43:08 +000012#
Matt Caswelle863d922015-12-14 09:22:58 +000013# The "nnnn" and "vers" fields are the numeric id and version for the symbol
14# respectively. The "info" part is actually a colon-separated string of fields
15# with the following meaning:
Richard Levitte948d0122000-09-07 08:43:08 +000016#
17# existence:platform:kind:algorithms
18#
19# - "existence" can be "EXIST" or "NOEXIST" depending on if the symbol is
20# found somewhere in the source,
21# - "platforms" is empty if it exists on all platforms, otherwise it contains
22# comma-separated list of the platform, just as they are if the symbol exists
23# for those platforms, or prepended with a "!" if not. This helps resolve
Richard Levitte62dc5aa2001-03-02 10:38:19 +000024# symbol name variants for platforms where the names are too long for the
Richard Levitte948d0122000-09-07 08:43:08 +000025# compiler or linker, or if the systems is case insensitive and there is a
Richard Levitte62dc5aa2001-03-02 10:38:19 +000026# clash, or the symbol is implemented differently (see
27# EXPORT_VAR_AS_FUNCTION). This script assumes renaming of symbols is found
28# in the file crypto/symhacks.h.
29# The semantics for the platforms is that every item is checked against the
Lutz Jänicke50121582002-07-10 17:34:54 +000030# environment. For the negative items ("!FOO"), if any of them is false
31# (i.e. "FOO" is true) in the environment, the corresponding symbol can't be
Richard Levitte62dc5aa2001-03-02 10:38:19 +000032# used. For the positive itms, if all of them are false in the environment,
33# the corresponding symbol can't be used. Any combination of positive and
34# negative items are possible, and of course leave room for some redundancy.
Richard Levitte948d0122000-09-07 08:43:08 +000035# - "kind" is "FUNCTION" or "VARIABLE". The meaning of that is obvious.
36# - "algorithms" is a comma-separated list of algorithm names. This helps
37# exclude symbols that are part of an algorithm that some user wants to
38# exclude.
39#
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000040
Richard Levitte3fa04f02016-01-12 00:17:12 +010041use lib ".";
42use configdata;
Richard Levitted7465912016-01-30 00:03:58 +010043use File::Spec::Functions;
Richard Levitte3fa04f02016-01-12 00:17:12 +010044
Richard Levitted399fdf2001-02-21 14:12:03 +000045my $debug=0;
46
Richard Levitted7465912016-01-30 00:03:58 +010047my $crypto_num= catfile($config{sourcedir},"util","libeay.num");
48my $ssl_num= catfile($config{sourcedir},"util","ssleay.num");
Richard Levittecd4c36a2002-07-17 13:27:43 +000049my $libname;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000050
Dr. Stephen Henson47339f61999-04-26 00:23:10 +000051my $do_update = 0;
Richard Levitte1449bda2001-05-13 04:48:07 +000052my $do_rewrite = 1;
Dr. Stephen Henson47339f61999-04-26 00:23:10 +000053my $do_crypto = 0;
54my $do_ssl = 0;
Ulf Möller0f583f62000-01-07 03:17:47 +000055my $do_ctest = 0;
Richard Levitte967f4ca2000-08-17 21:26:22 +000056my $do_ctestall = 0;
Dr. Stephen Hensonc47c6192001-02-09 13:16:21 +000057my $do_checkexist = 0;
Dr. Stephen Henson47339f61999-04-26 00:23:10 +000058
Richard Levitte62dc5aa2001-03-02 10:38:19 +000059my $VMSVAX=0;
Richard Levitteaf55c092009-05-15 16:01:39 +000060my $VMSNonVAX=0;
Richard Levitte948d0122000-09-07 08:43:08 +000061my $VMS=0;
62my $W32=0;
Ulf Möller0f583f62000-01-07 03:17:47 +000063my $NT=0;
Richard Levittecd4c36a2002-07-17 13:27:43 +000064my $OS2=0;
Matt Caswelle863d922015-12-14 09:22:58 +000065my $linux=0;
Dr. Stephen Henson28a98801999-04-14 23:44:41 +000066# Set this to make typesafe STACK definitions appear in DEF
Geoff Thorpee41c8d62000-06-01 05:13:52 +000067my $safe_stack_def = 0;
Ulf Möller31ff97b1999-05-13 10:28:14 +000068
Rich Salze03b2982014-12-19 21:11:09 -050069my @known_platforms = ( "__FreeBSD__", "PERL5",
Rich Salz700b4a42015-12-14 15:24:27 -050070 "EXPORT_VAR_AS_FUNCTION", "ZLIB"
71 );
Rich Salz6d23cf92015-01-12 17:29:26 -050072my @known_ossl_platforms = ( "VMS", "WIN32", "WINNT", "OS2" );
Richard Levitte948d0122000-09-07 08:43:08 +000073my @known_algorithms = ( "RC2", "RC4", "RC5", "IDEA", "DES", "BF",
Richard Levitte3f07fe02000-12-29 00:05:14 +000074 "CAST", "MD2", "MD4", "MD5", "SHA", "SHA0", "SHA1",
Rich Salz1f7103b2015-02-04 18:50:00 -050075 "SHA256", "SHA512", "RMD160",
Dr. Stephen Hensond2ad1c92015-10-27 20:18:42 +000076 "MDC2", "WHIRLPOOL", "RSA", "DSA", "DH", "EC", "EC2M",
Bodo Möller96afc1c2007-04-23 23:48:59 +000077 "HMAC", "AES", "CAMELLIA", "SEED", "GOST",
Andy Polyakov48f14842015-12-09 23:02:11 +010078 "SCRYPT", "CHACHA", "POLY1305",
Bodo Möllere0d61322011-10-19 08:59:53 +000079 # EC_NISTP_64_GCC_128
80 "EC_NISTP_64_GCC_128",
Richard Levitte3f07fe02000-12-29 00:05:14 +000081 # Envelope "algorithms"
82 "EVP", "X509", "ASN1_TYPEDEFS",
83 # Helper "algorithms"
84 "BIO", "COMP", "BUFFER", "LHASH", "STACK", "ERR",
85 "LOCKING",
86 # External "algorithms"
Matt Caswelle36827f2015-05-12 12:14:13 +010087 "FP_API", "STDIO", "SOCK", "DGRAM",
Rich Salz6ac11bd2016-01-07 21:40:52 -050088 "CRYPTO_MDEBUG",
Richard Levitte6cb68622002-10-24 19:09:03 +000089 # Engines
David Woodhouse05d7bf62015-09-09 15:29:44 -040090 "STATIC_ENGINE", "ENGINE", "HW", "GMP",
Benjamin Kaduk0423f812016-01-12 18:02:16 -060091 # Entropy Gathering
92 "EGD",
Rob Percival0cea8832016-02-25 18:11:16 +000093 # Certificate Transparency
94 "CT",
David Woodhouse47bbaa52015-07-23 17:30:06 +010095 # RFC3779
96 "RFC3779",
Dr. Stephen Hensonc20276e2006-04-17 12:08:22 +000097 # TLS
Matt Caswelle481f9b2015-05-15 10:49:56 +010098 "PSK", "SRP", "HEARTBEATS",
Dr. Stephen Henson8931b302008-03-12 21:14:28 +000099 # CMS
100 "CMS",
Dr. Stephen Hensond8bd55a2008-06-01 11:07:34 +0000101 # CryptoAPI Engine
102 "CAPIENG",
Dr. Stephen Henson3881d812014-10-29 12:51:31 +0000103 # SSL v3 method
104 "SSL3_METHOD",
Dr. Stephen Henson36246be2011-02-12 17:38:40 +0000105 # NEXTPROTONEG
106 "NEXTPROTONEG",
Richard Levitte4ccfe5f2002-12-09 02:18:16 +0000107 # Deprecated functions
Dr. Stephen Henson7a556fb2016-01-09 13:40:02 +0000108 "DEPRECATEDIN_0_9_8",
109 "DEPRECATEDIN_1_0_0",
110 "DEPRECATEDIN_1_1_0",
Dr. Stephen Henson9ef562b2011-12-25 14:46:15 +0000111 # SCTP
Matt Caswell3dd814a2014-10-15 01:23:07 +0100112 "SCTP",
113 # SRTP
114 "SRTP",
Dr. Stephen Henson8fdb4f12012-07-01 22:12:03 +0000115 # SSL TRACE
Dr. Stephen Hensone0fc7962014-07-23 13:18:06 +0100116 "SSL_TRACE",
117 # Unit testing
Matt Caswelldc0e9a32014-12-08 14:19:26 +0000118 "UNIT_TEST",
119 # OCB mode
Rich Salz1a53f1d2015-02-06 10:45:29 -0500120 "OCB",
121 # APPLINK (win build feature?)
122 "APPLINK"
123 );
Richard Levitte948d0122000-09-07 08:43:08 +0000124
Dr. Stephen Henson2854c792016-01-07 03:19:09 +0000125my %disabled_algorithms;
126
127foreach (@known_algorithms) {
128 $disabled_algorithms{$_} = 0;
129}
Dr. Stephen Henson3af45d92016-01-10 13:33:31 +0000130# disabled by default
Dr. Stephen Henson3af45d92016-01-10 13:33:31 +0000131$disabled_algorithms{"STATIC_ENGINE"} = 1;
Dr. Stephen Henson2854c792016-01-07 03:19:09 +0000132
Dr. Stephen Henson8931b302008-03-12 21:14:28 +0000133my $zlib;
Dr. Stephen Henson987beba2005-04-19 13:24:44 +0000134
Richard Levitte3fa04f02016-01-12 00:17:12 +0100135foreach (@ARGV, split(/ /, $config{options}))
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000136 {
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000137 $debug=1 if $_ eq "debug";
Dr. Stephen Henson06c68491999-03-03 02:01:26 +0000138 $W32=1 if $_ eq "32";
Rich Salz6d23cf92015-01-12 17:29:26 -0500139 die "win16 not supported" if $_ eq "16";
Dr. Stephen Henson06c68491999-03-03 02:01:26 +0000140 if($_ eq "NT") {
141 $W32 = 1;
142 $NT = 1;
143 }
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000144 if ($_ eq "VMS-VAX") {
145 $VMS=1;
146 $VMSVAX=1;
147 }
Richard Levitteaf55c092009-05-15 16:01:39 +0000148 if ($_ eq "VMS-NonVAX") {
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000149 $VMS=1;
Richard Levitteaf55c092009-05-15 16:01:39 +0000150 $VMSNonVAX=1;
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000151 }
Matt Caswelle863d922015-12-14 09:22:58 +0000152 if ($_ eq "linux") {
153 $linux=1;
154 }
Richard Levittea3886332016-01-07 20:49:53 +0100155 $VMS=$VMSNonVAX=1 if $_ eq "VMS";
Richard Levittecd4c36a2002-07-17 13:27:43 +0000156 $OS2=1 if $_ eq "OS2";
Dr. Stephen Hensonb2cf7c62009-02-25 11:55:15 +0000157 if ($_ eq "zlib" || $_ eq "enable-zlib" || $_ eq "zlib-dynamic"
Dr. Stephen Henson8931b302008-03-12 21:14:28 +0000158 || $_ eq "enable-zlib-dynamic") {
159 $zlib = 1;
160 }
161
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000162 $do_ssl=1 if $_ eq "ssleay";
Richard Levittecd4c36a2002-07-17 13:27:43 +0000163 if ($_ eq "ssl") {
164 $do_ssl=1;
165 $libname=$_
166 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000167 $do_crypto=1 if $_ eq "libeay";
Richard Levittecd4c36a2002-07-17 13:27:43 +0000168 if ($_ eq "crypto") {
169 $do_crypto=1;
170 $libname=$_;
171 }
Dr. Stephen Henson55a9cc61999-02-11 01:39:30 +0000172 $do_update=1 if $_ eq "update";
Richard Levitte948d0122000-09-07 08:43:08 +0000173 $do_rewrite=1 if $_ eq "rewrite";
Dr. Stephen Henson12aefe71999-12-24 17:26:33 +0000174 $do_ctest=1 if $_ eq "ctest";
Richard Levitte967f4ca2000-08-17 21:26:22 +0000175 $do_ctestall=1 if $_ eq "ctestall";
Dr. Stephen Hensonc47c6192001-02-09 13:16:21 +0000176 $do_checkexist=1 if $_ eq "exist";
Dr. Stephen Henson7a556fb2016-01-09 13:40:02 +0000177 if (/^--api=(\d+)\.(\d+)\.(\d+)$/) {
178 my $apiv = sprintf "%x%02x%02x", $1, $2, $3;
179 foreach (keys %disabled_algorithms) {
180 if (/^DEPRECATEDIN_(\d+)_(\d+)_(\d+)$/) {
181 my $depv = sprintf "%x%02x%02x", $1, $2, $3;
182 $disabled_algorithms{$_} = 1 if $apiv ge $depv;
183 }
184 }
185 }
186 if (/^no-deprecated$/) {
187 foreach (keys %disabled_algorithms) {
188 if (/^DEPRECATEDIN_/) {
189 $disabled_algorithms{$_} = 1;
190 }
191 }
192 }
193 elsif (/^(enable|disable|no)-(.*)$/) {
Dr. Stephen Henson2854c792016-01-07 03:19:09 +0000194 my $alg = uc $2;
195 $alg =~ tr/-/_/;
196 if (exists $disabled_algorithms{$alg}) {
197 $disabled_algorithms{$alg} = $1 eq "enable" ? 0 : 1;
198 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000199 }
200
Dr. Stephen Henson2854c792016-01-07 03:19:09 +0000201 }
Dr. Stephen Henson12aefe71999-12-24 17:26:33 +0000202
Richard Levittecd4c36a2002-07-17 13:27:43 +0000203if (!$libname) {
204 if ($do_ssl) {
205 $libname="SSLEAY";
206 }
207 if ($do_crypto) {
208 $libname="LIBEAY";
209 }
210}
211
Richard Levitte948d0122000-09-07 08:43:08 +0000212# If no platform is given, assume WIN32
Matt Caswelle863d922015-12-14 09:22:58 +0000213if ($W32 + $VMS + $OS2 + $linux == 0) {
Richard Levitte948d0122000-09-07 08:43:08 +0000214 $W32 = 1;
215}
Richard Levittea3886332016-01-07 20:49:53 +0100216die "Please, only one platform at a time"
217 if ($W32 + $VMS + $OS2 + $linux > 1);
Richard Levitte948d0122000-09-07 08:43:08 +0000218
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000219if (!$do_ssl && !$do_crypto)
220 {
Richard Levittea3886332016-01-07 20:49:53 +0100221 print STDERR "usage: $0 ( ssl | crypto ) [ 16 | 32 | NT | OS2 | linux | VMS ]\n";
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000222 exit(1);
223 }
224
225%ssl_list=&load_numbers($ssl_num);
Dr. Stephen Henson55a9cc61999-02-11 01:39:30 +0000226$max_ssl = $max_num;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000227%crypto_list=&load_numbers($crypto_num);
Dr. Stephen Henson55a9cc61999-02-11 01:39:30 +0000228$max_crypto = $max_num;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000229
Richard Levittedee502b2015-03-26 21:33:18 +0100230my $ssl="include/openssl/ssl.h";
Richard Levittedee502b2015-03-26 21:33:18 +0100231$ssl.=" include/openssl/tls1.h";
232$ssl.=" include/openssl/srtp.h";
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000233
Richard Levitte65b1ff42016-02-14 19:37:10 +0100234# We use headers found in include/openssl and include/internal only.
235# The latter is needed so libssl.so/.dll/.exe can link properly.
Richard Levittedee502b2015-03-26 21:33:18 +0100236my $crypto ="include/openssl/crypto.h";
Richard Levitte68570792015-05-14 14:54:49 +0200237$crypto.=" include/internal/o_dir.h";
238$crypto.=" include/internal/o_str.h";
Alessandro Ghedini71a04cf2015-10-25 17:43:55 +0100239$crypto.=" include/internal/threads.h";
Richard Levittedee502b2015-03-26 21:33:18 +0100240$crypto.=" include/openssl/des.h" ; # unless $no_des;
241$crypto.=" include/openssl/idea.h" ; # unless $no_idea;
242$crypto.=" include/openssl/rc4.h" ; # unless $no_rc4;
243$crypto.=" include/openssl/rc5.h" ; # unless $no_rc5;
244$crypto.=" include/openssl/rc2.h" ; # unless $no_rc2;
245$crypto.=" include/openssl/blowfish.h" ; # unless $no_bf;
246$crypto.=" include/openssl/cast.h" ; # unless $no_cast;
247$crypto.=" include/openssl/whrlpool.h" ;
248$crypto.=" include/openssl/md2.h" ; # unless $no_md2;
249$crypto.=" include/openssl/md4.h" ; # unless $no_md4;
250$crypto.=" include/openssl/md5.h" ; # unless $no_md5;
251$crypto.=" include/openssl/mdc2.h" ; # unless $no_mdc2;
252$crypto.=" include/openssl/sha.h" ; # unless $no_sha;
253$crypto.=" include/openssl/ripemd.h" ; # unless $no_ripemd;
254$crypto.=" include/openssl/aes.h" ; # unless $no_aes;
255$crypto.=" include/openssl/camellia.h" ; # unless $no_camellia;
256$crypto.=" include/openssl/seed.h"; # unless $no_seed;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000257
Richard Levittedee502b2015-03-26 21:33:18 +0100258$crypto.=" include/openssl/bn.h";
259$crypto.=" include/openssl/rsa.h" ; # unless $no_rsa;
260$crypto.=" include/openssl/dsa.h" ; # unless $no_dsa;
261$crypto.=" include/openssl/dh.h" ; # unless $no_dh;
262$crypto.=" include/openssl/ec.h" ; # unless $no_ec;
Richard Levittedee502b2015-03-26 21:33:18 +0100263$crypto.=" include/openssl/hmac.h" ; # unless $no_hmac;
264$crypto.=" include/openssl/cmac.h" ;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000265
Richard Levittedee502b2015-03-26 21:33:18 +0100266$crypto.=" include/openssl/engine.h"; # unless $no_engine;
267$crypto.=" include/openssl/stack.h" ; # unless $no_stack;
268$crypto.=" include/openssl/buffer.h" ; # unless $no_buffer;
269$crypto.=" include/openssl/bio.h" ; # unless $no_bio;
270$crypto.=" include/openssl/dso.h" ; # unless $no_dso;
271$crypto.=" include/openssl/lhash.h" ; # unless $no_lhash;
272$crypto.=" include/openssl/conf.h";
273$crypto.=" include/openssl/txt_db.h";
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000274
Richard Levittedee502b2015-03-26 21:33:18 +0100275$crypto.=" include/openssl/evp.h" ; # unless $no_evp;
276$crypto.=" include/openssl/objects.h";
277$crypto.=" include/openssl/pem.h";
278#$crypto.=" include/openssl/meth.h";
279$crypto.=" include/openssl/asn1.h";
280$crypto.=" include/openssl/asn1t.h";
Richard Levittedee502b2015-03-26 21:33:18 +0100281$crypto.=" include/openssl/err.h" ; # unless $no_err;
282$crypto.=" include/openssl/pkcs7.h";
283$crypto.=" include/openssl/pkcs12.h";
284$crypto.=" include/openssl/x509.h";
285$crypto.=" include/openssl/x509_vfy.h";
286$crypto.=" include/openssl/x509v3.h";
287$crypto.=" include/openssl/ts.h";
288$crypto.=" include/openssl/rand.h";
289$crypto.=" include/openssl/comp.h" ; # unless $no_comp;
290$crypto.=" include/openssl/ocsp.h";
291$crypto.=" include/openssl/ui.h";
Richard Levittedee502b2015-03-26 21:33:18 +0100292#$crypto.=" include/openssl/store.h";
Richard Levittedee502b2015-03-26 21:33:18 +0100293$crypto.=" include/openssl/cms.h";
Richard Levittedee502b2015-03-26 21:33:18 +0100294$crypto.=" include/openssl/srp.h";
295$crypto.=" include/openssl/modes.h";
Matt Caswell38148a22015-02-17 13:29:01 +0000296$crypto.=" include/openssl/async.h";
Rob Percival0cea8832016-02-25 18:11:16 +0000297$crypto.=" include/openssl/ct.h";
Dr. Stephen Henson7f5f4102016-03-02 21:32:30 +0000298$crypto.=" include/openssl/kdf.h";
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000299
Richard Levittedee502b2015-03-26 21:33:18 +0100300my $symhacks="include/openssl/symhacks.h";
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000301
Richard Levitte948d0122000-09-07 08:43:08 +0000302my @ssl_symbols = &do_defs("SSLEAY", $ssl, $symhacks);
303my @crypto_symbols = &do_defs("LIBEAY", $crypto, $symhacks);
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000304
Dr. Stephen Henson55a9cc61999-02-11 01:39:30 +0000305if ($do_update) {
306
307if ($do_ssl == 1) {
Richard Levitte948d0122000-09-07 08:43:08 +0000308
309 &maybe_add_info("SSLEAY",*ssl_list,@ssl_symbols);
310 if ($do_rewrite == 1) {
311 open(OUT, ">$ssl_num");
312 &rewrite_numbers(*OUT,"SSLEAY",*ssl_list,@ssl_symbols);
Richard Levitte948d0122000-09-07 08:43:08 +0000313 } else {
314 open(OUT, ">>$ssl_num");
315 }
316 &update_numbers(*OUT,"SSLEAY",*ssl_list,$max_ssl,@ssl_symbols);
Dr. Stephen Henson55a9cc61999-02-11 01:39:30 +0000317 close OUT;
318}
319
320if($do_crypto == 1) {
Richard Levitte948d0122000-09-07 08:43:08 +0000321
322 &maybe_add_info("LIBEAY",*crypto_list,@crypto_symbols);
323 if ($do_rewrite == 1) {
324 open(OUT, ">$crypto_num");
325 &rewrite_numbers(*OUT,"LIBEAY",*crypto_list,@crypto_symbols);
326 } else {
327 open(OUT, ">>$crypto_num");
328 }
329 &update_numbers(*OUT,"LIBEAY",*crypto_list,$max_crypto,@crypto_symbols);
Dr. Stephen Henson55a9cc61999-02-11 01:39:30 +0000330 close OUT;
Dr. Stephen Henson12aefe71999-12-24 17:26:33 +0000331}
332
Dr. Stephen Hensonc47c6192001-02-09 13:16:21 +0000333} elsif ($do_checkexist) {
334 &check_existing(*ssl_list, @ssl_symbols)
335 if $do_ssl == 1;
336 &check_existing(*crypto_list, @crypto_symbols)
337 if $do_crypto == 1;
Richard Levitte967f4ca2000-08-17 21:26:22 +0000338} elsif ($do_ctest || $do_ctestall) {
Dr. Stephen Henson12aefe71999-12-24 17:26:33 +0000339
340 print <<"EOF";
341
342/* Test file to check all DEF file symbols are present by trying
343 * to link to all of them. This is *not* intended to be run!
344 */
345
346int main()
347{
348EOF
Richard Levitte948d0122000-09-07 08:43:08 +0000349 &print_test_file(*STDOUT,"SSLEAY",*ssl_list,$do_ctestall,@ssl_symbols)
Dr. Stephen Henson12aefe71999-12-24 17:26:33 +0000350 if $do_ssl == 1;
351
Richard Levitte948d0122000-09-07 08:43:08 +0000352 &print_test_file(*STDOUT,"LIBEAY",*crypto_list,$do_ctestall,@crypto_symbols)
Dr. Stephen Henson12aefe71999-12-24 17:26:33 +0000353 if $do_crypto == 1;
354
355 print "}\n";
Dr. Stephen Henson55a9cc61999-02-11 01:39:30 +0000356
357} else {
Ulf Möller8cf65221999-05-08 10:42:06 +0000358
Richard Levittecd4c36a2002-07-17 13:27:43 +0000359 &print_def_file(*STDOUT,$libname,*ssl_list,@ssl_symbols)
Dr. Stephen Henson55a9cc61999-02-11 01:39:30 +0000360 if $do_ssl == 1;
361
Richard Levittecd4c36a2002-07-17 13:27:43 +0000362 &print_def_file(*STDOUT,$libname,*crypto_list,@crypto_symbols)
Dr. Stephen Henson55a9cc61999-02-11 01:39:30 +0000363 if $do_crypto == 1;
Ulf Möller8cf65221999-05-08 10:42:06 +0000364
Dr. Stephen Henson55a9cc61999-02-11 01:39:30 +0000365}
366
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000367
368sub do_defs
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000369{
Richard Levitte948d0122000-09-07 08:43:08 +0000370 my($name,$files,$symhacksfile)=@_;
Ulf Möller0f583f62000-01-07 03:17:47 +0000371 my $file;
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000372 my @ret;
Richard Levitte948d0122000-09-07 08:43:08 +0000373 my %syms;
374 my %platform; # For anything undefined, we assume ""
375 my %kind; # For anything undefined, we assume "FUNCTION"
376 my %algorithm; # For anything undefined, we assume ""
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000377 my %variant;
378 my %variant_cnt; # To be able to allocate "name{n}" if "name"
379 # is the same name as the original.
Ulf Möller0f583f62000-01-07 03:17:47 +0000380 my $cpp;
Richard Levitte3f07fe02000-12-29 00:05:14 +0000381 my %unknown_algorithms = ();
Matt Caswell07c4c142014-12-17 13:17:26 +0000382 my $parens = 0;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000383
Richard Levitte948d0122000-09-07 08:43:08 +0000384 foreach $file (split(/\s+/,$symhacksfile." ".$files))
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000385 {
Richard Levitted7465912016-01-30 00:03:58 +0100386 my $fn = catfile($config{sourcedir},$file);
387 print STDERR "DEBUG: starting on $fn:\n" if $debug;
388 open(IN,"<$fn") || die "unable to open $fn:$!\n";
Ulf Möller0f583f62000-01-07 03:17:47 +0000389 my $line = "", my $def= "";
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000390 my %tag = (
Richard Levitted399fdf2001-02-21 14:12:03 +0000391 (map { $_ => 0 } @known_platforms),
392 (map { "OPENSSL_SYS_".$_ => 0 } @known_ossl_platforms),
Richard Levittecf1b7d92001-02-19 16:06:34 +0000393 (map { "OPENSSL_NO_".$_ => 0 } @known_algorithms),
Matt Caswell07c4c142014-12-17 13:17:26 +0000394 (map { "OPENSSL_USE_".$_ => 0 } @known_algorithms),
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000395 NOPROTO => 0,
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000396 PERL5 => 0,
397 _WINDLL => 0,
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000398 CONST_STRICT => 0,
399 TRUE => 1,
400 );
Richard Levitte948d0122000-09-07 08:43:08 +0000401 my $symhacking = $file eq $symhacksfile;
Richard Levitte267a1922001-02-19 13:33:04 +0000402 my @current_platforms = ();
403 my @current_algorithms = ();
404
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000405 # params: symbol, alias, platforms, kind
406 # The reason to put this subroutine in a variable is that
407 # it will otherwise create it's own, unshared, version of
408 # %tag and %variant...
409 my $make_variant = sub
410 {
411 my ($s, $a, $p, $k) = @_;
412 my ($a1, $a2);
413
414 print STDERR "DEBUG: make_variant: Entered with ",$s,", ",$a,", ",(defined($p)?$p:""),", ",(defined($k)?$k:""),"\n" if $debug;
415 if (defined($p))
416 {
417 $a1 = join(",",$p,
418 grep(!/^$/,
419 map { $tag{$_} == 1 ? $_ : "" }
420 @known_platforms));
421 }
422 else
423 {
424 $a1 = join(",",
425 grep(!/^$/,
426 map { $tag{$_} == 1 ? $_ : "" }
427 @known_platforms));
428 }
429 $a2 = join(",",
430 grep(!/^$/,
431 map { $tag{"OPENSSL_SYS_".$_} == 1 ? $_ : "" }
432 @known_ossl_platforms));
433 print STDERR "DEBUG: make_variant: a1 = $a1; a2 = $a2\n" if $debug;
434 if ($a1 eq "") { $a1 = $a2; }
435 elsif ($a1 ne "" && $a2 ne "") { $a1 .= ",".$a2; }
436 if ($a eq $s)
437 {
438 if (!defined($variant_cnt{$s}))
439 {
440 $variant_cnt{$s} = 0;
441 }
442 $variant_cnt{$s}++;
443 $a .= "{$variant_cnt{$s}}";
444 }
Richard Levittec454dbc2001-03-02 12:14:54 +0000445 my $toadd = $a.":".$a1.(defined($k)?":".$k:"");
446 my $togrep = $s.'(\{[0-9]+\})?:'.$a1.(defined($k)?":".$k:"");
447 if (!grep(/^$togrep$/,
448 split(/;/, defined($variant{$s})?$variant{$s}:""))) {
449 if (defined($variant{$s})) { $variant{$s} .= ";"; }
450 $variant{$s} .= $toadd;
451 }
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000452 print STDERR "DEBUG: make_variant: Exit with variant of ",$s," = ",$variant{$s},"\n" if $debug;
453 };
454
455 print STDERR "DEBUG: parsing ----------\n" if $debug;
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000456 while(<IN>) {
Matt Caswell07c4c142014-12-17 13:17:26 +0000457 if($parens > 0) {
Dr. Stephen Henson7a556fb2016-01-09 13:40:02 +0000458 #Inside a DEPRECATEDIN
Richard Levittefa327fa2015-03-24 15:02:51 +0100459 $stored_multiline .= $_;
Richard Levitte9ba96fb2016-02-11 21:47:30 +0100460 $stored_multiline =~ s|\R$||; # Better chomp
Dr. Stephen Henson7a556fb2016-01-09 13:40:02 +0000461 print STDERR "DEBUG: Continuing multiline DEPRECATEDIN: $stored_multiline\n" if $debug;
Richard Levittefa327fa2015-03-24 15:02:51 +0100462 $parens = count_parens($stored_multiline);
463 if ($parens == 0) {
Dr. Stephen Henson7a556fb2016-01-09 13:40:02 +0000464 $def .= do_deprecated($stored_multiline,
465 \@current_platforms,
466 \@current_algorithms);
Richard Levittefa327fa2015-03-24 15:02:51 +0100467 }
Matt Caswell07c4c142014-12-17 13:17:26 +0000468 next;
469 }
Dr. Stephen Henson40e950a2005-04-19 18:57:17 +0000470 if (/\/\* Error codes for the \w+ functions\. \*\//)
471 {
472 undef @tag;
473 last;
474 }
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000475 if ($line ne '') {
476 $_ = $line . $_;
477 $line = '';
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000478 }
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000479
480 if (/\\$/) {
Richard Levitte9ba96fb2016-02-11 21:47:30 +0100481 $line = $`; # keep what was before the backslash
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000482 next;
483 }
484
Andy Polyakov68e57532006-01-02 12:13:07 +0000485 if(/\/\*/) {
486 if (not /\*\//) { # multiline comment...
487 $line = $_; # ... just accumulate
488 next;
489 } else {
490 s/\/\*.*?\*\///gs;# wipe it
491 }
492 }
493
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000494 if ($cpp) {
Andy Polyakov68e57532006-01-02 12:13:07 +0000495 $cpp++ if /^#\s*if/;
496 $cpp-- if /^#\s*endif/;
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000497 next;
Richard Levitte9ba96fb2016-02-11 21:47:30 +0100498 }
Matt Caswelld9706f12016-02-26 14:10:17 +0000499 if (/^#.*ifdef.*cplusplus/) {
500 $cpp = 1;
501 next;
502 }
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000503
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000504 s/{[^{}]*}//gs; # ignore {} blocks
Richard Levitte6cb68622002-10-24 19:09:03 +0000505 print STDERR "DEBUG: \$def=\"$def\"\n" if $debug && $def ne "";
Richard Levitted399fdf2001-02-21 14:12:03 +0000506 print STDERR "DEBUG: \$_=\"$_\"\n" if $debug;
Richard Levitte3f07fe02000-12-29 00:05:14 +0000507 if (/^\#\s*ifndef\s+(.*)/) {
Richard Levitted399fdf2001-02-21 14:12:03 +0000508 push(@tag,"-");
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000509 push(@tag,$1);
510 $tag{$1}=-1;
Richard Levitted399fdf2001-02-21 14:12:03 +0000511 print STDERR "DEBUG: $file: found tag $1 = -1\n" if $debug;
Richard Levitte3f07fe02000-12-29 00:05:14 +0000512 } elsif (/^\#\s*if\s+!defined\(([^\)]+)\)/) {
Richard Levitted399fdf2001-02-21 14:12:03 +0000513 push(@tag,"-");
514 if (/^\#\s*if\s+(!defined\(([^\)]+)\)(\s+\&\&\s+!defined\(([^\)]+)\))*)$/) {
515 my $tmp_1 = $1;
516 my $tmp_;
517 foreach $tmp_ (split '\&\&',$tmp_1) {
518 $tmp_ =~ /!defined\(([^\)]+)\)/;
519 print STDERR "DEBUG: $file: found tag $1 = -1\n" if $debug;
520 push(@tag,$1);
521 $tag{$1}=-1;
522 }
523 } else {
524 print STDERR "Warning: $file: complicated expression: $_" if $debug; # because it is O...
525 print STDERR "DEBUG: $file: found tag $1 = -1\n" if $debug;
526 push(@tag,$1);
527 $tag{$1}=-1;
528 }
Dr. Stephen Henson8aa36bc2005-02-05 17:22:14 +0000529 } elsif (/^\#\s*ifdef\s+(\S*)/) {
Richard Levitted399fdf2001-02-21 14:12:03 +0000530 push(@tag,"-");
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000531 push(@tag,$1);
532 $tag{$1}=1;
Richard Levitted399fdf2001-02-21 14:12:03 +0000533 print STDERR "DEBUG: $file: found tag $1 = 1\n" if $debug;
Richard Levitte3f07fe02000-12-29 00:05:14 +0000534 } elsif (/^\#\s*if\s+defined\(([^\)]+)\)/) {
Richard Levitted399fdf2001-02-21 14:12:03 +0000535 push(@tag,"-");
536 if (/^\#\s*if\s+(defined\(([^\)]+)\)(\s+\|\|\s+defined\(([^\)]+)\))*)$/) {
537 my $tmp_1 = $1;
538 my $tmp_;
539 foreach $tmp_ (split '\|\|',$tmp_1) {
540 $tmp_ =~ /defined\(([^\)]+)\)/;
541 print STDERR "DEBUG: $file: found tag $1 = 1\n" if $debug;
542 push(@tag,$1);
543 $tag{$1}=1;
544 }
545 } else {
546 print STDERR "Warning: $file: complicated expression: $_\n" if $debug; # because it is O...
547 print STDERR "DEBUG: $file: found tag $1 = 1\n" if $debug;
548 push(@tag,$1);
549 $tag{$1}=1;
550 }
Richard Levitte948d0122000-09-07 08:43:08 +0000551 } elsif (/^\#\s*error\s+(\w+) is disabled\./) {
Richard Levitted399fdf2001-02-21 14:12:03 +0000552 my $tag_i = $#tag;
553 while($tag[$tag_i] ne "-") {
554 if ($tag[$tag_i] eq "OPENSSL_NO_".$1) {
555 $tag{$tag[$tag_i]}=2;
556 print STDERR "DEBUG: $file: chaged tag $1 = 2\n" if $debug;
557 }
558 $tag_i--;
Richard Levitte948d0122000-09-07 08:43:08 +0000559 }
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000560 } elsif (/^\#\s*endif/) {
Richard Levitted399fdf2001-02-21 14:12:03 +0000561 my $tag_i = $#tag;
Dr. Stephen Henson665560e2004-05-19 17:03:59 +0000562 while($tag_i > 0 && $tag[$tag_i] ne "-") {
Richard Levitted399fdf2001-02-21 14:12:03 +0000563 my $t=$tag[$tag_i];
564 print STDERR "DEBUG: \$t=\"$t\"\n" if $debug;
565 if ($tag{$t}==2) {
566 $tag{$t}=-1;
567 } else {
568 $tag{$t}=0;
569 }
570 print STDERR "DEBUG: $file: changed tag ",$t," = ",$tag{$t},"\n" if $debug;
571 pop(@tag);
572 if ($t =~ /^OPENSSL_NO_([A-Z0-9_]+)$/) {
573 $t=$1;
Matt Caswell07c4c142014-12-17 13:17:26 +0000574 } elsif($t =~ /^OPENSSL_USE_([A-Z0-9_]+)$/) {
575 $t=$1;
Richard Levitted399fdf2001-02-21 14:12:03 +0000576 } else {
577 $t="";
578 }
579 if ($t ne ""
580 && !grep(/^$t$/, @known_algorithms)) {
581 $unknown_algorithms{$t} = 1;
582 #print STDERR "DEBUG: Added as unknown algorithm: $t\n" if $debug;
583 }
584 $tag_i--;
Richard Levitte948d0122000-09-07 08:43:08 +0000585 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000586 pop(@tag);
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000587 } elsif (/^\#\s*else/) {
Richard Levitted399fdf2001-02-21 14:12:03 +0000588 my $tag_i = $#tag;
Matt Caswelld9706f12016-02-26 14:10:17 +0000589 die "$file unmatched else\n" if $tag_i < 0;
Richard Levitted399fdf2001-02-21 14:12:03 +0000590 while($tag[$tag_i] ne "-") {
591 my $t=$tag[$tag_i];
592 $tag{$t}= -$tag{$t};
593 print STDERR "DEBUG: $file: changed tag ",$t," = ",$tag{$t},"\n" if $debug;
594 $tag_i--;
595 }
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000596 } elsif (/^\#\s*if\s+1/) {
Richard Levitted399fdf2001-02-21 14:12:03 +0000597 push(@tag,"-");
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000598 # Dummy tag
599 push(@tag,"TRUE");
600 $tag{"TRUE"}=1;
Richard Levitted399fdf2001-02-21 14:12:03 +0000601 print STDERR "DEBUG: $file: found 1\n" if $debug;
Bodo Möller1e414931999-09-03 13:30:47 +0000602 } elsif (/^\#\s*if\s+0/) {
Richard Levitted399fdf2001-02-21 14:12:03 +0000603 push(@tag,"-");
Bodo Möller1e414931999-09-03 13:30:47 +0000604 # Dummy tag
605 push(@tag,"TRUE");
606 $tag{"TRUE"}=-1;
Richard Levitted399fdf2001-02-21 14:12:03 +0000607 print STDERR "DEBUG: $file: found 0\n" if $debug;
Matt Caswelld9706f12016-02-26 14:10:17 +0000608 } elsif (/^\#\s*if\s+/) {
609 #Some other unrecognized "if" style
610 push(@tag,"-");
Richard Levitte948d0122000-09-07 08:43:08 +0000611 } elsif (/^\#\s*define\s+(\w+)\s+(\w+)/
Richard Levitte2ae87d42001-02-22 13:24:17 +0000612 && $symhacking && $tag{'TRUE'} != -1) {
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000613 # This is for aliasing. When we find an alias,
614 # we have to invert
615 &$make_variant($1,$2);
616 print STDERR "DEBUG: $file: defined $1 = $2\n" if $debug;
Richard Levitte948d0122000-09-07 08:43:08 +0000617 }
618 if (/^\#/) {
Richard Levitte267a1922001-02-19 13:33:04 +0000619 @current_platforms =
620 grep(!/^$/,
Richard Levitted399fdf2001-02-21 14:12:03 +0000621 map { $tag{$_} == 1 ? $_ :
622 $tag{$_} == -1 ? "!".$_ : "" }
Richard Levitte267a1922001-02-19 13:33:04 +0000623 @known_platforms);
Richard Levitted399fdf2001-02-21 14:12:03 +0000624 push @current_platforms
625 , grep(!/^$/,
626 map { $tag{"OPENSSL_SYS_".$_} == 1 ? $_ :
627 $tag{"OPENSSL_SYS_".$_} == -1 ? "!".$_ : "" }
628 @known_ossl_platforms);
Matt Caswell07c4c142014-12-17 13:17:26 +0000629 @current_algorithms = ();
Richard Levitte267a1922001-02-19 13:33:04 +0000630 @current_algorithms =
631 grep(!/^$/,
Richard Levittecf1b7d92001-02-19 16:06:34 +0000632 map { $tag{"OPENSSL_NO_".$_} == -1 ? $_ : "" }
Richard Levitte267a1922001-02-19 13:33:04 +0000633 @known_algorithms);
Matt Caswell07c4c142014-12-17 13:17:26 +0000634 push @current_algorithms
635 , grep(!/^$/,
636 map { $tag{"OPENSSL_USE_".$_} == 1 ? $_ : "" }
637 @known_algorithms);
Richard Levitte267a1922001-02-19 13:33:04 +0000638 $def .=
639 "#INFO:"
640 .join(',',@current_platforms).":"
641 .join(',',@current_algorithms).";";
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000642 next;
643 }
Richard Levitte2ae87d42001-02-22 13:24:17 +0000644 if ($tag{'TRUE'} != -1) {
Matt Caswellb32166b2016-02-23 15:27:05 +0000645 if (/^\s*DEFINE_STACK_OF\s*\(\s*(\w*)\s*\)/
646 || /^\s*DEFINE_STACK_OF_CONST\s*\(\s*(\w*)\s*\)/) {
Richard Levitte2ae87d42001-02-22 13:24:17 +0000647 next;
648 } elsif (/^\s*DECLARE_ASN1_ENCODE_FUNCTIONS\s*\(\s*(\w*)\s*,\s*(\w*)\s*,\s*(\w*)\s*\)/) {
649 $def .= "int d2i_$3(void);";
650 $def .= "int i2d_$3(void);";
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000651 # Variant for platforms that do not
652 # have to access globale variables
653 # in shared libraries through functions
654 $def .=
655 "#INFO:"
656 .join(',',"!EXPORT_VAR_AS_FUNCTION",@current_platforms).":"
657 .join(',',@current_algorithms).";";
Richard Levitte2ae87d42001-02-22 13:24:17 +0000658 $def .= "OPENSSL_EXTERN int $2_it;";
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000659 $def .=
660 "#INFO:"
661 .join(',',@current_platforms).":"
662 .join(',',@current_algorithms).";";
663 # Variant for platforms that have to
664 # access globale variables in shared
665 # libraries through functions
666 &$make_variant("$2_it","$2_it",
667 "EXPORT_VAR_AS_FUNCTION",
668 "FUNCTION");
Richard Levitte2ae87d42001-02-22 13:24:17 +0000669 next;
670 } elsif (/^\s*DECLARE_ASN1_FUNCTIONS_fname\s*\(\s*(\w*)\s*,\s*(\w*)\s*,\s*(\w*)\s*\)/) {
671 $def .= "int d2i_$3(void);";
672 $def .= "int i2d_$3(void);";
673 $def .= "int $3_free(void);";
674 $def .= "int $3_new(void);";
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000675 # Variant for platforms that do not
676 # have to access globale variables
677 # in shared libraries through functions
678 $def .=
679 "#INFO:"
680 .join(',',"!EXPORT_VAR_AS_FUNCTION",@current_platforms).":"
681 .join(',',@current_algorithms).";";
Richard Levitte2ae87d42001-02-22 13:24:17 +0000682 $def .= "OPENSSL_EXTERN int $2_it;";
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000683 $def .=
684 "#INFO:"
685 .join(',',@current_platforms).":"
686 .join(',',@current_algorithms).";";
687 # Variant for platforms that have to
688 # access globale variables in shared
689 # libraries through functions
690 &$make_variant("$2_it","$2_it",
691 "EXPORT_VAR_AS_FUNCTION",
692 "FUNCTION");
693 next;
Richard Levitte2ae87d42001-02-22 13:24:17 +0000694 } elsif (/^\s*DECLARE_ASN1_FUNCTIONS\s*\(\s*(\w*)\s*\)/ ||
695 /^\s*DECLARE_ASN1_FUNCTIONS_const\s*\(\s*(\w*)\s*\)/) {
696 $def .= "int d2i_$1(void);";
697 $def .= "int i2d_$1(void);";
698 $def .= "int $1_free(void);";
699 $def .= "int $1_new(void);";
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000700 # Variant for platforms that do not
701 # have to access globale variables
702 # in shared libraries through functions
703 $def .=
704 "#INFO:"
705 .join(',',"!EXPORT_VAR_AS_FUNCTION",@current_platforms).":"
706 .join(',',@current_algorithms).";";
Richard Levitte2ae87d42001-02-22 13:24:17 +0000707 $def .= "OPENSSL_EXTERN int $1_it;";
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000708 $def .=
709 "#INFO:"
710 .join(',',@current_platforms).":"
711 .join(',',@current_algorithms).";";
712 # Variant for platforms that have to
713 # access globale variables in shared
714 # libraries through functions
715 &$make_variant("$1_it","$1_it",
716 "EXPORT_VAR_AS_FUNCTION",
717 "FUNCTION");
Richard Levitte2ae87d42001-02-22 13:24:17 +0000718 next;
719 } elsif (/^\s*DECLARE_ASN1_ENCODE_FUNCTIONS_const\s*\(\s*(\w*)\s*,\s*(\w*)\s*\)/) {
720 $def .= "int d2i_$2(void);";
721 $def .= "int i2d_$2(void);";
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000722 # 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).";";
Richard Levitte2ae87d42001-02-22 13:24:17 +0000729 $def .= "OPENSSL_EXTERN int $2_it;";
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000730 $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("$2_it","$2_it",
738 "EXPORT_VAR_AS_FUNCTION",
739 "FUNCTION");
Richard Levitte2ae87d42001-02-22 13:24:17 +0000740 next;
Dr. Stephen Hensonea3675b2003-03-20 17:58:33 +0000741 } elsif (/^\s*DECLARE_ASN1_ALLOC_FUNCTIONS\s*\(\s*(\w*)\s*\)/) {
742 $def .= "int $1_free(void);";
743 $def .= "int $1_new(void);";
744 next;
Richard Levitte2ae87d42001-02-22 13:24:17 +0000745 } elsif (/^\s*DECLARE_ASN1_FUNCTIONS_name\s*\(\s*(\w*)\s*,\s*(\w*)\s*\)/) {
746 $def .= "int d2i_$2(void);";
747 $def .= "int i2d_$2(void);";
748 $def .= "int $2_free(void);";
749 $def .= "int $2_new(void);";
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000750 # Variant for platforms that do not
751 # have to access globale variables
752 # in shared libraries through functions
753 $def .=
754 "#INFO:"
755 .join(',',"!EXPORT_VAR_AS_FUNCTION",@current_platforms).":"
756 .join(',',@current_algorithms).";";
Richard Levitte2ae87d42001-02-22 13:24:17 +0000757 $def .= "OPENSSL_EXTERN int $2_it;";
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000758 $def .=
759 "#INFO:"
760 .join(',',@current_platforms).":"
761 .join(',',@current_algorithms).";";
762 # Variant for platforms that have to
763 # access globale variables in shared
764 # libraries through functions
765 &$make_variant("$2_it","$2_it",
766 "EXPORT_VAR_AS_FUNCTION",
767 "FUNCTION");
Richard Levitte2ae87d42001-02-22 13:24:17 +0000768 next;
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000769 } elsif (/^\s*DECLARE_ASN1_ITEM\s*\(\s*(\w*)\s*\)/) {
770 # Variant for platforms that do not
771 # have to access globale variables
772 # in shared libraries through functions
773 $def .=
774 "#INFO:"
775 .join(',',"!EXPORT_VAR_AS_FUNCTION",@current_platforms).":"
776 .join(',',@current_algorithms).";";
Richard Levitte2ae87d42001-02-22 13:24:17 +0000777 $def .= "OPENSSL_EXTERN int $1_it;";
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000778 $def .=
779 "#INFO:"
780 .join(',',@current_platforms).":"
781 .join(',',@current_algorithms).";";
782 # Variant for platforms that have to
783 # access globale variables in shared
784 # libraries through functions
785 &$make_variant("$1_it","$1_it",
786 "EXPORT_VAR_AS_FUNCTION",
787 "FUNCTION");
Richard Levitte2ae87d42001-02-22 13:24:17 +0000788 next;
Dr. Stephen Hensonf86abc22002-10-04 20:24:50 +0000789 } elsif (/^\s*DECLARE_ASN1_NDEF_FUNCTION\s*\(\s*(\w*)\s*\)/) {
Dr. Stephen Henson97ebe042002-10-05 01:38:58 +0000790 $def .= "int i2d_$1_NDEF(void);";
Richard Levitte2ae87d42001-02-22 13:24:17 +0000791 } elsif (/^\s*DECLARE_ASN1_SET_OF\s*\(\s*(\w*)\s*\)/) {
792 next;
Dr. Stephen Henson16094302005-11-06 20:33:33 +0000793 } elsif (/^\s*DECLARE_ASN1_PRINT_FUNCTION\s*\(\s*(\w*)\s*\)/) {
794 $def .= "int $1_print_ctx(void);";
795 next;
796 } elsif (/^\s*DECLARE_ASN1_PRINT_FUNCTION_name\s*\(\s*(\w*)\s*,\s*(\w*)\s*\)/) {
797 $def .= "int $2_print_ctx(void);";
798 next;
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000799 } elsif (/^\s*DECLARE_PKCS12_STACK_OF\s*\(\s*(\w*)\s*\)/) {
800 next;
Richard Levitte2ae87d42001-02-22 13:24:17 +0000801 } elsif (/^DECLARE_PEM_rw\s*\(\s*(\w*)\s*,/ ||
Andy Polyakov47738cb2005-07-24 21:45:45 +0000802 /^DECLARE_PEM_rw_cb\s*\(\s*(\w*)\s*,/ ||
803 /^DECLARE_PEM_rw_const\s*\(\s*(\w*)\s*,/ ) {
Richard Levitte2ae87d42001-02-22 13:24:17 +0000804 $def .=
805 "#INFO:"
Rich Salz6d23cf92015-01-12 17:29:26 -0500806 .join(',',@current_platforms).":"
Richard Levitte2ae87d42001-02-22 13:24:17 +0000807 .join(',',@current_algorithms).";";
808 $def .= "int PEM_read_$1(void);";
809 $def .= "int PEM_write_$1(void);";
810 $def .=
811 "#INFO:"
812 .join(',',@current_platforms).":"
813 .join(',',@current_algorithms).";";
814 # Things that are everywhere
815 $def .= "int PEM_read_bio_$1(void);";
816 $def .= "int PEM_write_bio_$1(void);";
817 next;
818 } elsif (/^DECLARE_PEM_write\s*\(\s*(\w*)\s*,/ ||
Dr. Stephen Hensone43bfb22011-12-23 14:58:30 +0000819 /^DECLARE_PEM_write_const\s*\(\s*(\w*)\s*,/ ||
Richard Levitte2ae87d42001-02-22 13:24:17 +0000820 /^DECLARE_PEM_write_cb\s*\(\s*(\w*)\s*,/ ) {
Richard Levitte2ae87d42001-02-22 13:24:17 +0000821 $def .=
822 "#INFO:"
Rich Salz6d23cf92015-01-12 17:29:26 -0500823 .join(',',@current_platforms).":"
Richard Levitte2ae87d42001-02-22 13:24:17 +0000824 .join(',',@current_algorithms).";";
825 $def .= "int PEM_write_$1(void);";
826 $def .=
827 "#INFO:"
828 .join(',',@current_platforms).":"
829 .join(',',@current_algorithms).";";
830 # Things that are everywhere
831 $def .= "int PEM_write_bio_$1(void);";
832 next;
833 } elsif (/^DECLARE_PEM_read\s*\(\s*(\w*)\s*,/ ||
834 /^DECLARE_PEM_read_cb\s*\(\s*(\w*)\s*,/ ) {
Richard Levitte2ae87d42001-02-22 13:24:17 +0000835 $def .=
836 "#INFO:"
Rich Salz6d23cf92015-01-12 17:29:26 -0500837 .join(',',@current_platforms).":"
Richard Levitte2ae87d42001-02-22 13:24:17 +0000838 .join(',',@current_algorithms).";";
839 $def .= "int PEM_read_$1(void);";
840 $def .=
841 "#INFO:"
842 .join(',',@current_platforms).":"
843 .join(',',@current_algorithms).";";
844 # Things that are everywhere
845 $def .= "int PEM_read_bio_$1(void);";
846 next;
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000847 } elsif (/^OPENSSL_DECLARE_GLOBAL\s*\(\s*(\w*)\s*,\s*(\w*)\s*\)/) {
848 # Variant for platforms that do not
849 # have to access globale variables
850 # in shared libraries through functions
851 $def .=
852 "#INFO:"
853 .join(',',"!EXPORT_VAR_AS_FUNCTION",@current_platforms).":"
854 .join(',',@current_algorithms).";";
855 $def .= "OPENSSL_EXTERN int _shadow_$2;";
856 $def .=
857 "#INFO:"
858 .join(',',@current_platforms).":"
859 .join(',',@current_algorithms).";";
860 # Variant for platforms that have to
861 # access globale variables in shared
862 # libraries through functions
863 &$make_variant("_shadow_$2","_shadow_$2",
864 "EXPORT_VAR_AS_FUNCTION",
865 "FUNCTION");
Dr. Stephen Henson7a556fb2016-01-09 13:40:02 +0000866 } elsif (/^\s*DEPRECATEDIN/) {
Matt Caswell07c4c142014-12-17 13:17:26 +0000867 $parens = count_parens($_);
Richard Levittefa327fa2015-03-24 15:02:51 +0100868 if ($parens == 0) {
Dr. Stephen Henson7a556fb2016-01-09 13:40:02 +0000869 $def .= do_deprecated($_,
870 \@current_platforms,
871 \@current_algorithms);
Richard Levittefa327fa2015-03-24 15:02:51 +0100872 } else {
873 $stored_multiline = $_;
Richard Levitte9ba96fb2016-02-11 21:47:30 +0100874 $stored_multiline =~ s|\R$||;
Dr. Stephen Henson7a556fb2016-01-09 13:40:02 +0000875 print STDERR "DEBUG: Found multiline DEPRECATEDIN starting with: $stored_multiline\n" if $debug;
Richard Levittefa327fa2015-03-24 15:02:51 +0100876 next;
877 }
Richard Levitte2ae87d42001-02-22 13:24:17 +0000878 } elsif ($tag{'CONST_STRICT'} != 1) {
Richard Levitte948d0122000-09-07 08:43:08 +0000879 if (/\{|\/\*|\([^\)]*$/) {
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000880 $line = $_;
881 } else {
882 $def .= $_;
883 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000884 }
885 }
Richard Levitte2ae87d42001-02-22 13:24:17 +0000886 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000887 close(IN);
Matt Caswelld9706f12016-02-26 14:10:17 +0000888 die "$file: Unmatched tags\n" if $#tag >= 0;
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000889
Richard Levitte948d0122000-09-07 08:43:08 +0000890 my $algs;
891 my $plays;
892
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000893 print STDERR "DEBUG: postprocessing ----------\n" if $debug;
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000894 foreach (split /;/, $def) {
Richard Levitte948d0122000-09-07 08:43:08 +0000895 my $s; my $k = "FUNCTION"; my $p; my $a;
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000896 s/^[\n\s]*//g;
897 s/[\n\s]*$//g;
Richard Levitte948d0122000-09-07 08:43:08 +0000898 next if(/\#undef/);
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000899 next if(/typedef\W/);
Richard Levitte948d0122000-09-07 08:43:08 +0000900 next if(/\#define/);
Ulf Möllerc22e4b12000-05-15 19:20:10 +0000901
Andy Polyakov68e57532006-01-02 12:13:07 +0000902 # Reduce argument lists to empty ()
903 # fold round brackets recursively: (t(*v)(t),t) -> (t{}{},t) -> {}
904 while(/\(.*\)/s) {
905 s/\([^\(\)]+\)/\{\}/gs;
906 s/\(\s*\*\s*(\w+)\s*\{\}\s*\)/$1/gs; #(*f{}) -> f
907 }
908 # pretend as we didn't use curly braces: {} -> ()
909 s/\{\}/\(\)/gs;
910
911 s/STACK_OF\(\)/void/gs;
Dr. Stephen Henson174c86a2008-05-31 21:20:53 +0000912 s/LHASH_OF\(\)/void/gs;
Andy Polyakov68e57532006-01-02 12:13:07 +0000913
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000914 print STDERR "DEBUG: \$_ = \"$_\"\n" if $debug;
Richard Levitte948d0122000-09-07 08:43:08 +0000915 if (/^\#INFO:([^:]*):(.*)$/) {
916 $plats = $1;
917 $algs = $2;
Richard Levitte89eecca2001-09-26 15:06:45 +0000918 print STDERR "DEBUG: found info on platforms ($plats) and algorithms ($algs)\n" if $debug;
Richard Levitte948d0122000-09-07 08:43:08 +0000919 next;
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000920 } elsif (/^\s*OPENSSL_EXTERN\s.*?(\w+(\{[0-9]+\})?)(\[[0-9]*\])*\s*$/) {
Richard Levitte948d0122000-09-07 08:43:08 +0000921 $s = $1;
922 $k = "VARIABLE";
Richard Levitte89eecca2001-09-26 15:06:45 +0000923 print STDERR "DEBUG: found external variable $s\n" if $debug;
Andy Polyakov68e57532006-01-02 12:13:07 +0000924 } elsif (/TYPEDEF_\w+_OF/s) {
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000925 next;
Andy Polyakov68e57532006-01-02 12:13:07 +0000926 } elsif (/(\w+)\s*\(\).*/s) { # first token prior [first] () is
927 $s = $1; # a function name!
Richard Levitte89eecca2001-09-26 15:06:45 +0000928 print STDERR "DEBUG: found function $s\n" if $debug;
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000929 } elsif (/\(/ and not (/=/)) {
930 print STDERR "File $file: cannot parse: $_;\n";
Richard Levitte948d0122000-09-07 08:43:08 +0000931 next;
932 } else {
933 next;
934 }
935
936 $syms{$s} = 1;
937 $kind{$s} = $k;
938
939 $p = $plats;
940 $a = $algs;
Richard Levitte948d0122000-09-07 08:43:08 +0000941
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000942 $platform{$s} =
943 &reduce_platforms((defined($platform{$s})?$platform{$s}.',':"").$p);
Richard Levitte948d0122000-09-07 08:43:08 +0000944 $algorithm{$s} .= ','.$a;
945
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000946 if (defined($variant{$s})) {
Richard Levittec454dbc2001-03-02 12:14:54 +0000947 foreach $v (split /;/,$variant{$s}) {
948 (my $r, my $p, my $k) = split(/:/,$v);
949 my $ip = join ',',map({ /^!(.*)$/ ? $1 : "!".$_ } split /,/, $p);
950 $syms{$r} = 1;
951 if (!defined($k)) { $k = $kind{$s}; }
952 $kind{$r} = $k."(".$s.")";
953 $algorithm{$r} = $algorithm{$s};
954 $platform{$r} = &reduce_platforms($platform{$s}.",".$p.",".$p);
955 $platform{$s} = &reduce_platforms($platform{$s}.','.$ip.','.$ip);
956 print STDERR "DEBUG: \$variant{\"$s\"} = ",$v,"; \$r = $r; \$p = ",$platform{$r},"; \$a = ",$algorithm{$r},"; \$kind = ",$kind{$r},"\n" if $debug;
957 }
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000958 }
Richard Levitte62dc5aa2001-03-02 10:38:19 +0000959 print STDERR "DEBUG: \$s = $s; \$p = ",$platform{$s},"; \$a = ",$algorithm{$s},"; \$kind = ",$kind{$s},"\n" if $debug;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000960 }
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000961 }
962
Richard Levitte948d0122000-09-07 08:43:08 +0000963 # Prune the returned symbols
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000964
Richard Levitte948d0122000-09-07 08:43:08 +0000965 delete $syms{"bn_dump1"};
Rich Salz6d23cf92015-01-12 17:29:26 -0500966 $platform{"BIO_s_log"} .= ",!WIN32,!macintosh";
Richard Levitte948d0122000-09-07 08:43:08 +0000967
Richard Levitte2ae87d42001-02-22 13:24:17 +0000968 $platform{"PEM_read_NS_CERT_SEQ"} = "VMS";
969 $platform{"PEM_write_NS_CERT_SEQ"} = "VMS";
970 $platform{"PEM_read_P8_PRIV_KEY_INFO"} = "VMS";
971 $platform{"PEM_write_P8_PRIV_KEY_INFO"} = "VMS";
Richard Levitteaf55c092009-05-15 16:01:39 +0000972 $platform{"EVP_sha384"} = "!VMSVAX";
973 $platform{"EVP_sha512"} = "!VMSVAX";
974 $platform{"SHA384_Init"} = "!VMSVAX";
975 $platform{"SHA384_Transform"} = "!VMSVAX";
976 $platform{"SHA384_Update"} = "!VMSVAX";
977 $platform{"SHA384_Final"} = "!VMSVAX";
978 $platform{"SHA384"} = "!VMSVAX";
979 $platform{"SHA512_Init"} = "!VMSVAX";
980 $platform{"SHA512_Transform"} = "!VMSVAX";
981 $platform{"SHA512_Update"} = "!VMSVAX";
982 $platform{"SHA512_Final"} = "!VMSVAX";
983 $platform{"SHA512"} = "!VMSVAX";
984
Richard Levitte2ae87d42001-02-22 13:24:17 +0000985
Richard Levitte948d0122000-09-07 08:43:08 +0000986 # Info we know about
987
Richard Levitte948d0122000-09-07 08:43:08 +0000988 push @ret, map { $_."\\".&info_string($_,"EXIST",
989 $platform{$_},
990 $kind{$_},
991 $algorithm{$_}) } keys %syms;
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000992
Richard Levitte3f07fe02000-12-29 00:05:14 +0000993 if (keys %unknown_algorithms) {
994 print STDERR "WARNING: mkdef.pl doesn't know the following algorithms:\n";
995 print STDERR "\t",join("\n\t",keys %unknown_algorithms),"\n";
996 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000997 return(@ret);
Dr. Stephen Henson47339f61999-04-26 00:23:10 +0000998}
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000999
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001000# Param: string of comma-separated platform-specs.
1001sub reduce_platforms
1002{
1003 my ($platforms) = @_;
Richard Levitte948d0122000-09-07 08:43:08 +00001004 my $pl = defined($platforms) ? $platforms : "";
1005 my %p = map { $_ => 0 } split /,/, $pl;
Richard Levitte948d0122000-09-07 08:43:08 +00001006 my $ret;
Dr. Stephen Henson12aefe71999-12-24 17:26:33 +00001007
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001008 print STDERR "DEBUG: Entered reduce_platforms with \"$platforms\"\n"
1009 if $debug;
Richard Levitte948d0122000-09-07 08:43:08 +00001010 # We do this, because if there's code like the following, it really
1011 # means the function exists in all cases and should therefore be
1012 # everywhere. By increasing and decreasing, we may attain 0:
1013 #
1014 # ifndef WIN16
1015 # int foo();
1016 # else
1017 # int _fat foo();
1018 # endif
1019 foreach $platform (split /,/, $pl) {
1020 if ($platform =~ /^!(.*)$/) {
1021 $p{$1}--;
1022 } else {
1023 $p{$platform}++;
1024 }
1025 }
1026 foreach $platform (keys %p) {
1027 if ($p{$platform} == 0) { delete $p{$platform}; }
1028 }
1029
1030 delete $p{""};
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001031
Richard Levittec454dbc2001-03-02 12:14:54 +00001032 $ret = join(',',sort(map { $p{$_} < 0 ? "!".$_ : $_ } keys %p));
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001033 print STDERR "DEBUG: Exiting reduce_platforms with \"$ret\"\n"
1034 if $debug;
1035 return $ret;
1036}
1037
Rich Salzcc373a32016-01-28 14:17:19 -05001038sub info_string
1039{
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001040 (my $symbol, my $exist, my $platforms, my $kind, my $algorithms) = @_;
1041
1042 my %a = defined($algorithms) ?
1043 map { $_ => 1 } split /,/, $algorithms : ();
1044 my $k = defined($kind) ? $kind : "FUNCTION";
1045 my $ret;
1046 my $p = &reduce_platforms($platforms);
1047
Richard Levitte948d0122000-09-07 08:43:08 +00001048 delete $a{""};
1049
1050 $ret = $exist;
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001051 $ret .= ":".$p;
Richard Levitte948d0122000-09-07 08:43:08 +00001052 $ret .= ":".$k;
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001053 $ret .= ":".join(',',sort keys %a);
Richard Levitte948d0122000-09-07 08:43:08 +00001054 return $ret;
1055}
1056
Rich Salzcc373a32016-01-28 14:17:19 -05001057sub maybe_add_info
1058{
Richard Levitte948d0122000-09-07 08:43:08 +00001059 (my $name, *nums, my @symbols) = @_;
1060 my $sym;
1061 my $new_info = 0;
Richard Levitte451e60e2000-11-14 13:20:10 +00001062 my %syms=();
Richard Levitte948d0122000-09-07 08:43:08 +00001063
Richard Levitte948d0122000-09-07 08:43:08 +00001064 foreach $sym (@symbols) {
1065 (my $s, my $i) = split /\\/, $sym;
Richard Levitte948d0122000-09-07 08:43:08 +00001066 if (defined($nums{$s})) {
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001067 $i =~ s/^(.*?:.*?:\w+)(\(\w+\))?/$1/;
Matt Caswell3addf182015-12-15 13:06:26 +00001068 (my $n, my $vers, my $dummy) = split /\\/, $nums{$s};
Richard Levitte948d0122000-09-07 08:43:08 +00001069 if (!defined($dummy) || $i ne $dummy) {
Matt Caswell3addf182015-12-15 13:06:26 +00001070 $nums{$s} = $n."\\".$vers."\\".$i;
Richard Levitte948d0122000-09-07 08:43:08 +00001071 $new_info++;
Richard Levitted399fdf2001-02-21 14:12:03 +00001072 print STDERR "DEBUG: maybe_add_info for $s: \"$dummy\" => \"$i\"\n" if $debug;
Richard Levitte967f4ca2000-08-17 21:26:22 +00001073 }
Dr. Stephen Henson12aefe71999-12-24 17:26:33 +00001074 }
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001075 $syms{$s} = 1;
Richard Levitte451e60e2000-11-14 13:20:10 +00001076 }
1077
1078 my @s=sort { &parse_number($nums{$a},"n") <=> &parse_number($nums{$b},"n") } keys %nums;
1079 foreach $sym (@s) {
Matt Caswell3addf182015-12-15 13:06:26 +00001080 (my $n, my $vers, my $i) = split /\\/, $nums{$sym};
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001081 if (!defined($syms{$sym}) && $i !~ /^NOEXIST:/) {
Richard Levitte451e60e2000-11-14 13:20:10 +00001082 $new_info++;
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001083 print STDERR "DEBUG: maybe_add_info for $sym: -> undefined\n" if $debug;
Richard Levitte451e60e2000-11-14 13:20:10 +00001084 }
Richard Levitte948d0122000-09-07 08:43:08 +00001085 }
1086 if ($new_info) {
Rich Salzcc373a32016-01-28 14:17:19 -05001087 print STDERR "$name: $new_info old symbols have updated info\n";
Richard Levitte6d500712000-09-17 15:41:24 +00001088 if (!$do_rewrite) {
1089 print STDERR "You should do a rewrite to fix this.\n";
1090 }
Richard Levitte948d0122000-09-07 08:43:08 +00001091 } else {
Richard Levitte948d0122000-09-07 08:43:08 +00001092 }
1093}
1094
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001095# Param: string of comma-separated keywords, each possibly prefixed with a "!"
1096sub is_valid
1097{
1098 my ($keywords_txt,$platforms) = @_;
1099 my (@keywords) = split /,/,$keywords_txt;
Dr. Stephen Hensond3fdc272005-04-19 23:54:44 +00001100 my ($falsesum, $truesum) = (0, 1);
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001101
1102 # Param: one keyword
1103 sub recognise
1104 {
1105 my ($keyword,$platforms) = @_;
1106
1107 if ($platforms) {
1108 # platforms
Richard Levitteaf55c092009-05-15 16:01:39 +00001109 if ($keyword eq "VMSVAX" && $VMSVAX) { return 1; }
1110 if ($keyword eq "VMSNonVAX" && $VMSNonVAX) { return 1; }
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001111 if ($keyword eq "VMS" && $VMS) { return 1; }
1112 if ($keyword eq "WIN32" && $W32) { return 1; }
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001113 if ($keyword eq "WINNT" && $NT) { return 1; }
Richard Levittecd4c36a2002-07-17 13:27:43 +00001114 if ($keyword eq "OS2" && $OS2) { return 1; }
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001115 # Special platforms:
1116 # EXPORT_VAR_AS_FUNCTION means that global variables
1117 # will be represented as functions. This currently
1118 # only happens on VMS-VAX.
Rich Salz6d23cf92015-01-12 17:29:26 -05001119 if ($keyword eq "EXPORT_VAR_AS_FUNCTION" && ($VMSVAX || $W32)) {
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001120 return 1;
1121 }
Dr. Stephen Henson8931b302008-03-12 21:14:28 +00001122 if ($keyword eq "ZLIB" && $zlib) { return 1; }
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001123 return 0;
1124 } else {
1125 # algorithms
Dr. Stephen Henson2854c792016-01-07 03:19:09 +00001126 if ($disabled_algorithms{$keyword} == 1) { return 0;}
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001127
1128 # Nothing recognise as true
1129 return 1;
1130 }
1131 }
1132
1133 foreach $k (@keywords) {
1134 if ($k =~ /^!(.*)$/) {
1135 $falsesum += &recognise($1,$platforms);
1136 } else {
Dr. Stephen Hensond3fdc272005-04-19 23:54:44 +00001137 $truesum *= &recognise($k,$platforms);
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001138 }
1139 }
1140 print STDERR "DEBUG: [",$#keywords,",",$#keywords < 0,"] is_valid($keywords_txt) => (\!$falsesum) && $truesum = ",(!$falsesum) && $truesum,"\n" if $debug;
1141 return (!$falsesum) && $truesum;
1142}
1143
Richard Levitte948d0122000-09-07 08:43:08 +00001144sub print_test_file
1145{
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001146 (*OUT,my $name,*nums,my $testall,my @symbols)=@_;
Richard Levitte948d0122000-09-07 08:43:08 +00001147 my $n = 1; my @e; my @r;
1148 my $sym; my $prev = ""; my $prefSSLeay;
1149
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001150 (@e)=grep(/^SSLeay(\{[0-9]+\})?\\.*?:.*?:.*/,@symbols);
1151 (@r)=grep(/^\w+(\{[0-9]+\})?\\.*?:.*?:.*/ && !/^SSLeay(\{[0-9]+\})?\\.*?:.*?:.*/,@symbols);
Richard Levitte948d0122000-09-07 08:43:08 +00001152 @symbols=((sort @e),(sort @r));
1153
1154 foreach $sym (@symbols) {
1155 (my $s, my $i) = $sym =~ /^(.*?)\\(.*)$/;
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001156 my $v = 0;
1157 $v = 1 if $i=~ /^.*?:.*?:VARIABLE/;
1158 my $p = ($i =~ /^[^:]*:([^:]*):/,$1);
1159 my $a = ($i =~ /^[^:]*:[^:]*:[^:]*:([^:]*)/,$1);
1160 if (!defined($nums{$s})) {
1161 print STDERR "Warning: $s does not have a number assigned\n"
1162 if(!$do_update);
1163 } elsif (is_valid($p,1) && is_valid($a,0)) {
1164 my $s2 = ($s =~ /^(.*?)(\{[0-9]+\})?$/, $1);
1165 if ($prev eq $s2) {
1166 print OUT "\t/* The following has already appeared previously */\n";
1167 print STDERR "Warning: Symbol '",$s2,"' redefined. old=",($nums{$prev} =~ /^(.*?)\\/,$1),", new=",($nums{$s2} =~ /^(.*?)\\/,$1),"\n";
1168 }
1169 $prev = $s2; # To warn about duplicates...
1170
Matt Caswell3addf182015-12-15 13:06:26 +00001171 (my $nn, my $vers, my $ni) = split /\\/, $nums{$s2};
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001172 if ($v) {
1173 print OUT "\textern int $s2; /* type unknown */ /* $nn $ni */\n";
Richard Levitte948d0122000-09-07 08:43:08 +00001174 } else {
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001175 print OUT "\textern int $s2(); /* type unknown */ /* $nn $ni */\n";
Richard Levitte948d0122000-09-07 08:43:08 +00001176 }
1177 }
Dr. Stephen Henson12aefe71999-12-24 17:26:33 +00001178 }
1179}
1180
Rich Salzcc373a32016-01-28 14:17:19 -05001181sub get_version
1182{
Richard Levitte3fa04f02016-01-12 00:17:12 +01001183 return $config{version};
Richard Levitte0b352c52003-11-28 14:51:30 +00001184}
1185
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001186sub print_def_file
Dr. Stephen Henson47339f61999-04-26 00:23:10 +00001187{
Richard Levitte948d0122000-09-07 08:43:08 +00001188 (*OUT,my $name,*nums,my @symbols)=@_;
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001189 my $n = 1; my @e; my @r; my @v; my $prev="";
Richard Levittecd4c36a2002-07-17 13:27:43 +00001190 my $liboptions="";
Richard Levitte0b352c52003-11-28 14:51:30 +00001191 my $libname = $name;
1192 my $http_vendor = 'www.openssl.org/';
1193 my $version = get_version();
1194 my $what = "OpenSSL: implementation of Secure Socket Layer";
1195 my $description = "$what $version, $name - http://$http_vendor";
Matt Caswelle863d922015-12-14 09:22:58 +00001196 my $prevsymversion = "", $prevprevsymversion = "";
Richard Levittea3886332016-01-07 20:49:53 +01001197 # For VMS
1198 my $prevnum = 0;
Richard Levittefd40db92016-01-12 01:07:46 +01001199 my $symvtextcount = 0;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001200
Richard Levittea3886332016-01-07 20:49:53 +01001201 if ($W32)
1202 { $libname.="32"; }
1203 elsif ($OS2)
1204 { # DLL names should not clash on the whole system.
1205 # However, they should not have any particular relationship
1206 # to the name of the static library. Chose descriptive names
1207 # (must be at most 8 chars).
1208 my %translate = (ssl => 'open_ssl', crypto => 'cryptssl');
1209 $libname = $translate{$name} || $name;
1210 $liboptions = <<EOO;
Richard Levitte0b352c52003-11-28 14:51:30 +00001211INITINSTANCE
1212DATA MULTIPLE NONSHARED
1213EOO
Richard Levittea3886332016-01-07 20:49:53 +01001214 # Vendor field can't contain colon, drat; so we omit http://
1215 $description = "\@#$http_vendor:$version#\@$what; DLL for library $name. Build for EMX -Zmtd";
1216 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001217
Richard Levittea3886332016-01-07 20:49:53 +01001218 if ($W32 || $OS2)
1219 {
1220 print OUT <<"EOF";
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001221;
Dr. Stephen Henson9b3086f1999-01-31 17:30:18 +00001222; Definition file for the DLL version of the $name library from OpenSSL
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001223;
1224
Richard Levitte0b352c52003-11-28 14:51:30 +00001225LIBRARY $libname $liboptions
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001226
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001227EOF
1228
Matt Caswelle863d922015-12-14 09:22:58 +00001229 print "EXPORTS\n";
Richard Levittea3886332016-01-07 20:49:53 +01001230 }
1231 elsif ($VMS)
1232 {
Richard Levittea3886332016-01-07 20:49:53 +01001233 print OUT <<"EOF";
Richard Levitte855eff52016-01-11 22:33:35 +01001234CASE_SENSITIVE=YES
Richard Levittea3886332016-01-07 20:49:53 +01001235SYMBOL_VECTOR=(-
1236EOF
Richard Levittefd40db92016-01-12 01:07:46 +01001237 $symvtextcount = 16; # length of "SYMBOL_VECTOR=(-"
Richard Levittea3886332016-01-07 20:49:53 +01001238 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001239
Matt Caswelle863d922015-12-14 09:22:58 +00001240 (@r)=grep(/^\w+(\{[0-9]+\})?\\.*?:.*?:FUNCTION/,@symbols);
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001241 (@v)=grep(/^\w+(\{[0-9]+\})?\\.*?:.*?:VARIABLE/,@symbols);
Richard Levittea3886332016-01-07 20:49:53 +01001242 if ($VMS) {
1243 # VMS needs to have the symbols on slot number order
1244 @symbols=(map { $_->[1] }
1245 sort { $a->[0] <=> $b->[0] }
1246 map { (my $s, my $i) = $_ =~ /^(.*?)\\(.*)$/;
1247 die "Error: $s doesn't have a number assigned\n"
1248 if !defined($nums{$s});
1249 (my $n, my @rest) = split /\\/, $nums{$s};
1250 [ $n, $_ ] } (@e, @r, @v));
1251 } else {
1252 @symbols=((sort @e),(sort @r), (sort @v));
1253 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001254
Matt Caswelle863d922015-12-14 09:22:58 +00001255 my ($baseversion, $currversion) = get_openssl_version();
1256 my $thisversion;
1257 do {
1258 if (!defined($thisversion)) {
1259 $thisversion = $baseversion;
Dr. Stephen Henson47339f61999-04-26 00:23:10 +00001260 } else {
Matt Caswelle863d922015-12-14 09:22:58 +00001261 $thisversion = get_next_version($thisversion);
1262 }
1263 foreach $sym (@symbols) {
1264 (my $s, my $i) = $sym =~ /^(.*?)\\(.*)$/;
1265 my $v = 0;
1266 $v = 1 if $i =~ /^.*?:.*?:VARIABLE/;
1267 if (!defined($nums{$s})) {
1268 die "Error: $s does not have a number assigned\n"
1269 if(!$do_update);
1270 } else {
1271 (my $n, my $symversion, my $dummy) = split /\\/, $nums{$s};
1272 next if $symversion ne $thisversion;
1273 my %pf = ();
1274 my $p = ($i =~ /^[^:]*:([^:]*):/,$1);
1275 my $a = ($i =~ /^[^:]*:[^:]*:[^:]*:([^:]*)/,$1);
1276 if (is_valid($p,1) && is_valid($a,0)) {
1277 my $s2 = ($s =~ /^(.*?)(\{[0-9]+\})?$/, $1);
1278 if ($prev eq $s2) {
1279 print STDERR "Warning: Symbol '",$s2,
1280 "' redefined. old=",($nums{$prev} =~ /^(.*?)\\/,$1),
1281 ", new=",($nums{$s2} =~ /^(.*?)\\/,$1),"\n";
1282 }
1283 $prev = $s2; # To warn about duplicates...
1284 if($linux) {
1285 if ($symversion ne $prevsymversion) {
1286 if ($prevsymversion ne "") {
1287 if ($prevprevsymversion ne "") {
1288 print OUT "} OPENSSL_"
1289 ."$prevprevsymversion;\n\n";
1290 } else {
1291 print OUT "};\n\n";
1292 }
1293 }
1294 print OUT "OPENSSL_$symversion {\n global:\n";
1295 $prevprevsymversion = $prevsymversion;
1296 $prevsymversion = $symversion;
1297 }
1298 print OUT " $s2;\n";
Richard Levittea3886332016-01-07 20:49:53 +01001299 } elsif ($VMS) {
1300 while(++$prevnum < $n) {
Richard Levittee84193e2016-01-30 07:14:58 +01001301 my $symline=" ,SPARE -\n ,SPARE -\n";
1302 if ($symvtextcount + length($symline) - 2 > 1024) {
Richard Levittea3886332016-01-07 20:49:53 +01001303 print OUT ")\nSYMBOL_VECTOR=(-\n";
Richard Levittefd40db92016-01-12 01:07:46 +01001304 $symvtextcount = 16; # length of "SYMBOL_VECTOR=(-"
Richard Levittea3886332016-01-07 20:49:53 +01001305 }
Richard Levittee84193e2016-01-30 07:14:58 +01001306 if ($symvtextcount == 16) {
1307 # Take away first comma
1308 $symline =~ s/,//;
Richard Levittefd40db92016-01-12 01:07:46 +01001309 }
Richard Levittee84193e2016-01-30 07:14:58 +01001310 print OUT $symline;
1311 $symvtextcount += length($symline) - 2;
Richard Levittea3886332016-01-07 20:49:53 +01001312 }
1313 (my $s_uc = $s) =~ tr/a-z/A-Z/;
Richard Levitted9aad552016-01-12 03:42:56 +01001314 my $symtype=
1315 $v ? "DATA" : "PROCEDURE";
1316 my $symline=
1317 ($s_uc ne $s
Richard Levittee84193e2016-01-30 07:14:58 +01001318 ? " ,$s_uc/$s=$symtype -\n ,$s=$symtype -\n"
1319 : " ,$s=$symtype -\n ,SPARE -\n");
1320 if ($symvtextcount + length($symline) - 2 > 1024) {
Richard Levittefd40db92016-01-12 01:07:46 +01001321 print OUT ")\nSYMBOL_VECTOR=(-\n";
1322 $symvtextcount = 16; # length of "SYMBOL_VECTOR=(-"
1323 }
Richard Levittee84193e2016-01-30 07:14:58 +01001324 if ($symvtextcount == 16) {
1325 # Take away first comma
1326 $symline =~ s/,//;
Richard Levittefd40db92016-01-12 01:07:46 +01001327 }
Richard Levittee84193e2016-01-30 07:14:58 +01001328 print OUT $symline;
1329 $symvtextcount += length($symline) - 2;
Matt Caswelle863d922015-12-14 09:22:58 +00001330 } elsif($v && !$OS2) {
1331 printf OUT " %s%-39s @%-8d DATA\n",
1332 ($W32)?"":"_",$s2,$n;
1333 } else {
1334 printf OUT " %s%-39s @%d\n",
1335 ($W32||$OS2)?"":"_",$s2,$n;
1336 }
Dr. Stephen Henson9c67ab22000-12-16 01:19:24 +00001337 }
Richard Levitte965c1772000-09-11 17:31:05 +00001338 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001339 }
Matt Caswelle863d922015-12-14 09:22:58 +00001340 } while ($thisversion ne $currversion);
1341 if ($linux) {
1342 if ($prevprevsymversion ne "") {
1343 print OUT " local: *;\n} OPENSSL_$prevprevsymversion;\n\n";
1344 } else {
1345 print OUT " local: *;\n};\n\n";
1346 }
Richard Levittea3886332016-01-07 20:49:53 +01001347 } elsif ($VMS) {
1348 print OUT ")\n";
1349 (my $libvmaj, my $libvmin, my $libvedit) =
1350 $currversion =~ /^(\d+)_(\d+)_(\d+)$/;
1351 # The reason to multiply the edit number with 100 is to make space
1352 # for the possibility that we want to encode the patch letters
1353 print OUT "GSMATCH=LEQUAL,",($libvmaj * 100 + $libvmin),",",($libvedit * 100),"\n";
1354 }
Dr. Stephen Henson47339f61999-04-26 00:23:10 +00001355 printf OUT "\n";
1356}
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001357
1358sub load_numbers
Dr. Stephen Henson47339f61999-04-26 00:23:10 +00001359{
1360 my($name)=@_;
1361 my(@a,%ret);
Matt Caswelle863d922015-12-14 09:22:58 +00001362 my $prevversion;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001363
Dr. Stephen Henson55a9cc61999-02-11 01:39:30 +00001364 $max_num = 0;
Richard Levitte948d0122000-09-07 08:43:08 +00001365 $num_noinfo = 0;
1366 $prev = "";
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001367 $prev_cnt = 0;
Dr. Stephen Henson55a9cc61999-02-11 01:39:30 +00001368
Matt Caswelle863d922015-12-14 09:22:58 +00001369 my ($baseversion, $currversion) = get_openssl_version();
1370
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001371 open(IN,"<$name") || die "unable to open $name:$!\n";
Dr. Stephen Henson47339f61999-04-26 00:23:10 +00001372 while (<IN>) {
Richard Levitte9ba96fb2016-02-11 21:47:30 +01001373 s|\R$||; # Better chomp
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001374 s/#.*$//;
1375 next if /^\s*$/;
1376 @a=split;
Richard Levitte948d0122000-09-07 08:43:08 +00001377 if (defined $ret{$a[0]}) {
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001378 # This is actually perfectly OK
1379 #print STDERR "Warning: Symbol '",$a[0],"' redefined. old=",$ret{$a[0]},", new=",$a[1],"\n";
Richard Levitte948d0122000-09-07 08:43:08 +00001380 }
1381 if ($max_num > $a[1]) {
1382 print STDERR "Warning: Number decreased from ",$max_num," to ",$a[1],"\n";
1383 }
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001384 elsif ($max_num == $a[1]) {
Richard Levitte948d0122000-09-07 08:43:08 +00001385 # This is actually perfectly OK
1386 #print STDERR "Warning: Symbol ",$a[0]," has same number as previous ",$prev,": ",$a[1],"\n";
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001387 if ($a[0] eq $prev) {
1388 $prev_cnt++;
1389 $a[0] .= "{$prev_cnt}";
1390 }
1391 }
1392 else {
1393 $prev_cnt = 0;
Richard Levitte948d0122000-09-07 08:43:08 +00001394 }
1395 if ($#a < 2) {
1396 # Existence will be proven later, in do_defs
1397 $ret{$a[0]}=$a[1];
1398 $num_noinfo++;
1399 } else {
Matt Caswelle863d922015-12-14 09:22:58 +00001400 #Sanity check the version number
1401 if (defined $prevversion) {
1402 check_version_lte($prevversion, $a[2]);
1403 }
1404 check_version_lte($a[2], $currversion);
1405 $prevversion = $a[2];
1406 $ret{$a[0]}=$a[1]."\\".$a[2]."\\".$a[3]; # \\ is a special marker
Richard Levitte948d0122000-09-07 08:43:08 +00001407 }
Dr. Stephen Henson55a9cc61999-02-11 01:39:30 +00001408 $max_num = $a[1] if $a[1] > $max_num;
Richard Levitte948d0122000-09-07 08:43:08 +00001409 $prev=$a[0];
1410 }
1411 if ($num_noinfo) {
1412 print STDERR "Warning: $num_noinfo symbols were without info.";
1413 if ($do_rewrite) {
1414 printf STDERR " The rewrite will fix this.\n";
1415 } else {
1416 printf STDERR " You should do a rewrite to fix this.\n";
1417 }
Dr. Stephen Henson47339f61999-04-26 00:23:10 +00001418 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001419 close(IN);
1420 return(%ret);
Dr. Stephen Henson47339f61999-04-26 00:23:10 +00001421}
Dr. Stephen Henson55a9cc61999-02-11 01:39:30 +00001422
Richard Levitte948d0122000-09-07 08:43:08 +00001423sub parse_number
Dr. Stephen Henson47339f61999-04-26 00:23:10 +00001424{
Richard Levitte948d0122000-09-07 08:43:08 +00001425 (my $str, my $what) = @_;
Matt Caswell3addf182015-12-15 13:06:26 +00001426 (my $n, my $v, my $i) = split(/\\/,$str);
Richard Levitte948d0122000-09-07 08:43:08 +00001427 if ($what eq "n") {
1428 return $n;
Dr. Stephen Henson55a9cc61999-02-11 01:39:30 +00001429 } else {
Richard Levitte948d0122000-09-07 08:43:08 +00001430 return $i;
Dr. Stephen Henson55a9cc61999-02-11 01:39:30 +00001431 }
Dr. Stephen Henson47339f61999-04-26 00:23:10 +00001432}
Richard Levitte948d0122000-09-07 08:43:08 +00001433
1434sub rewrite_numbers
1435{
1436 (*OUT,$name,*nums,@symbols)=@_;
1437 my $thing;
1438
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001439 my @r = grep(/^\w+(\{[0-9]+\})?\\.*?:.*?:\w+\(\w+\)/,@symbols);
Richard Levitte948d0122000-09-07 08:43:08 +00001440 my $r; my %r; my %rsyms;
1441 foreach $r (@r) {
1442 (my $s, my $i) = split /\\/, $r;
1443 my $a = $1 if $i =~ /^.*?:.*?:\w+\((\w+)\)/;
1444 $i =~ s/^(.*?:.*?:\w+)\(\w+\)/$1/;
1445 $r{$a} = $s."\\".$i;
1446 $rsyms{$s} = 1;
1447 }
1448
Richard Levitte451e60e2000-11-14 13:20:10 +00001449 my %syms = ();
1450 foreach $_ (@symbols) {
1451 (my $n, my $i) = split /\\/;
1452 $syms{$n} = 1;
1453 }
1454
Richard Levitte89eecca2001-09-26 15:06:45 +00001455 my @s=sort {
1456 &parse_number($nums{$a},"n") <=> &parse_number($nums{$b},"n")
1457 || $a cmp $b
1458 } keys %nums;
Richard Levitte948d0122000-09-07 08:43:08 +00001459 foreach $sym (@s) {
Matt Caswell3addf182015-12-15 13:06:26 +00001460 (my $n, my $vers, my $i) = split /\\/, $nums{$sym};
Richard Levitte948d0122000-09-07 08:43:08 +00001461 next if defined($i) && $i =~ /^.*?:.*?:\w+\(\w+\)/;
1462 next if defined($rsyms{$sym});
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001463 print STDERR "DEBUG: rewrite_numbers for sym = ",$sym,": i = ",$i,", n = ",$n,", rsym{sym} = ",$rsyms{$sym},"syms{sym} = ",$syms{$sym},"\n" if $debug;
Richard Levitte451e60e2000-11-14 13:20:10 +00001464 $i="NOEXIST::FUNCTION:"
1465 if !defined($i) || $i eq "" || !defined($syms{$sym});
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001466 my $s2 = $sym;
1467 $s2 =~ s/\{[0-9]+\}$//;
Matt Caswell3addf182015-12-15 13:06:26 +00001468 printf OUT "%s%-39s %d\t%s\t%s\n","",$s2,$n,$vers,$i;
Richard Levitte948d0122000-09-07 08:43:08 +00001469 if (exists $r{$sym}) {
1470 (my $s, $i) = split /\\/,$r{$sym};
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001471 my $s2 = $s;
1472 $s2 =~ s/\{[0-9]+\}$//;
Matt Caswell3addf182015-12-15 13:06:26 +00001473 printf OUT "%s%-39s %d\t%s\t%s\n","",$s2,$n,$vers,$i;
Richard Levitte948d0122000-09-07 08:43:08 +00001474 }
1475 }
1476}
1477
1478sub update_numbers
1479{
1480 (*OUT,$name,*nums,my $start_num, my @symbols)=@_;
1481 my $new_syms = 0;
Matt Caswell3addf182015-12-15 13:06:26 +00001482 my $basevers;
1483 my $vers;
1484
1485 ($basevers, $vers) = get_openssl_version();
Richard Levitte948d0122000-09-07 08:43:08 +00001486
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001487 my @r = grep(/^\w+(\{[0-9]+\})?\\.*?:.*?:\w+\(\w+\)/,@symbols);
Richard Levitte948d0122000-09-07 08:43:08 +00001488 my $r; my %r; my %rsyms;
1489 foreach $r (@r) {
1490 (my $s, my $i) = split /\\/, $r;
1491 my $a = $1 if $i =~ /^.*?:.*?:\w+\((\w+)\)/;
1492 $i =~ s/^(.*?:.*?:\w+)\(\w+\)/$1/;
1493 $r{$a} = $s."\\".$i;
1494 $rsyms{$s} = 1;
1495 }
1496
1497 foreach $sym (@symbols) {
1498 (my $s, my $i) = $sym =~ /^(.*?)\\(.*)$/;
1499 next if $i =~ /^.*?:.*?:\w+\(\w+\)/;
1500 next if defined($rsyms{$sym});
1501 die "ERROR: Symbol $sym had no info attached to it."
1502 if $i eq "";
1503 if (!exists $nums{$s}) {
1504 $new_syms++;
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001505 my $s2 = $s;
1506 $s2 =~ s/\{[0-9]+\}$//;
Matt Caswell3addf182015-12-15 13:06:26 +00001507 printf OUT "%s%-39s %d\t%s\t%s\n","",$s2, ++$start_num,$vers,$i;
Richard Levitte948d0122000-09-07 08:43:08 +00001508 if (exists $r{$s}) {
Richard Levitte33b1a4c2000-09-20 14:47:04 +00001509 ($s, $i) = split /\\/,$r{$s};
Richard Levitte62dc5aa2001-03-02 10:38:19 +00001510 $s =~ s/\{[0-9]+\}$//;
Matt Caswell3addf182015-12-15 13:06:26 +00001511 printf OUT "%s%-39s %d\t%s\t%s\n","",$s, $start_num,$vers,$i;
Richard Levitte948d0122000-09-07 08:43:08 +00001512 }
1513 }
1514 }
1515 if($new_syms) {
Rich Salzcc373a32016-01-28 14:17:19 -05001516 print STDERR "$name: Added $new_syms new symbols\n";
Richard Levitte948d0122000-09-07 08:43:08 +00001517 } else {
Rich Salzcc373a32016-01-28 14:17:19 -05001518 print STDERR "$name: No new symbols added\n";
Richard Levitte948d0122000-09-07 08:43:08 +00001519 }
1520}
1521
1522sub check_existing
1523{
1524 (*nums, my @symbols)=@_;
1525 my %existing; my @remaining;
1526 @remaining=();
1527 foreach $sym (@symbols) {
1528 (my $s, my $i) = $sym =~ /^(.*?)\\(.*)$/;
1529 $existing{$s}=1;
1530 }
1531 foreach $sym (keys %nums) {
1532 if (!exists $existing{$sym}) {
1533 push @remaining, $sym;
1534 }
1535 }
1536 if(@remaining) {
1537 print STDERR "The following symbols do not seem to exist:\n";
1538 foreach $sym (@remaining) {
1539 print STDERR "\t",$sym,"\n";
1540 }
1541 }
1542}
1543
Matt Caswell07c4c142014-12-17 13:17:26 +00001544sub count_parens
1545{
1546 my $line = shift(@_);
1547
1548 my $open = $line =~ tr/\(//;
1549 my $close = $line =~ tr/\)//;
1550
1551 return $open - $close;
1552}
1553
Matt Caswelle863d922015-12-14 09:22:58 +00001554#Parse opensslv.h to get the current version number. Also work out the base
1555#version, i.e. the lowest version number that is binary compatible with this
1556#version
1557sub get_openssl_version()
1558{
Richard Levitted7465912016-01-30 00:03:58 +01001559 my $fn = catfile($config{sourcedir},"include","openssl","opensslv.h");
1560 open (IN, "$fn") || die "Can't open opensslv.h";
Matt Caswelle863d922015-12-14 09:22:58 +00001561
1562 while(<IN>) {
1563 if (/OPENSSL_VERSION_TEXT\s+"OpenSSL (\d\.\d\.)(\d[a-z]*)(-| )/) {
1564 my $suffix = $2;
Richard Levitte56afc182016-01-14 20:22:36 +01001565 (my $baseversion = $1) =~ s/\./_/g;
Matt Caswelle863d922015-12-14 09:22:58 +00001566 close IN;
1567 return ($baseversion."0", $baseversion.$suffix);
1568 }
1569 }
1570 die "Can't find OpenSSL version number\n";
1571}
1572
1573#Given an OpenSSL version number, calculate the next version number. If the
1574#version number gets to a.b.czz then we go to a.b.(c+1)
1575sub get_next_version()
1576{
1577 my $thisversion = shift;
1578
1579 my ($base, $letter) = $thisversion =~ /^(\d_\d_\d)([a-z]{0,2})$/;
1580
1581 if ($letter eq "zz") {
1582 my $lastnum = substr($base, -1);
1583 return substr($base, 0, length($base)-1).(++$lastnum);
1584 }
1585 return $base.get_next_letter($letter);
1586}
1587
1588#Given the letters off the end of an OpenSSL version string, calculate what
1589#the letters for the next release would be.
1590sub get_next_letter()
1591{
1592 my $thisletter = shift;
1593 my $baseletter = "";
1594 my $endletter;
1595
1596 if ($thisletter eq "") {
1597 return "a";
1598 }
1599 if ((length $thisletter) > 1) {
1600 ($baseletter, $endletter) = $thisletter =~ /([a-z]+)([a-z])/;
1601 } else {
1602 $endletter = $thisletter;
1603 }
1604
1605 if ($endletter eq "z") {
1606 return $thisletter."a";
1607 } else {
1608 return $baseletter.(++$endletter);
1609 }
1610}
1611
1612#Check if a version is less than or equal to the current version. Its a fatal
1613#error if not. They must also only differ in letters, or the last number (i.e.
1614#the first two numbers must be the same)
1615sub check_version_lte()
1616{
1617 my ($testversion, $currversion) = @_;
1618 my $lentv;
1619 my $lencv;
1620 my $cvbase;
1621
1622 my ($cvnums) = $currversion =~ /^(\d_\d_\d)[a-z]*$/;
1623 my ($tvnums) = $testversion =~ /^(\d_\d_\d)[a-z]*$/;
1624
1625 #Die if we can't parse the version numbers or they don't look sane
1626 die "Invalid version number: $testversion and $currversion\n"
1627 if (!defined($cvnums) || !defined($tvnums)
1628 || length($cvnums) != 5
1629 || length($tvnums) != 5);
1630
1631 #If the base versions (without letters) don't match check they only differ
1632 #in the last number
1633 if ($cvnums ne $tvnums) {
1634 die "Invalid version number: $testversion "
1635 ."for current version $currversion\n"
1636 if (substr($cvnums, -1) < substr($tvnums, -1)
1637 || substr($cvnums, 0, 4) ne substr($tvnums, 0, 4));
1638 return;
1639 }
1640 #If we get here then the base version (i.e. the numbers) are the same - they
1641 #only differ in the letters
1642
1643 $lentv = length $testversion;
1644 $lencv = length $currversion;
1645
1646 #If the testversion has more letters than the current version then it must
1647 #be later (or malformed)
1648 if ($lentv > $lencv) {
1649 die "Invalid version number: $testversion "
1650 ."is greater than $currversion\n";
1651 }
1652
1653 #Get the last letter from the current version
1654 my ($cvletter) = $currversion =~ /([a-z])$/;
1655 if (defined $cvletter) {
1656 ($cvbase) = $currversion =~ /(\d_\d_\d[a-z]*)$cvletter$/;
1657 } else {
1658 $cvbase = $currversion;
1659 }
1660 die "Unable to parse version number $currversion" if (!defined $cvbase);
1661 my $tvbase;
1662 my ($tvletter) = $testversion =~ /([a-z])$/;
1663 if (defined $tvletter) {
1664 ($tvbase) = $testversion =~ /(\d_\d_\d[a-z]*)$tvletter$/;
1665 } else {
1666 $tvbase = $testversion;
1667 }
1668 die "Unable to parse version number $testversion" if (!defined $tvbase);
1669
1670 if ($lencv > $lentv) {
1671 #If current version has more letters than testversion then testversion
1672 #minus the final letter must be a substring of the current version
1673 die "Invalid version number $testversion "
1674 ."is greater than $currversion or is invalid\n"
1675 if (index($cvbase, $tvbase) != 0);
1676 } else {
1677 #If both versions have the same number of letters then they must be
1678 #equal up to the last letter, and the last letter in testversion must
1679 #be less than or equal to the last letter in current version.
1680 die "Invalid version number $testversion "
1681 ."is greater than $currversion\n"
1682 if (($cvbase ne $tvbase) && ($tvletter gt $cvletter));
1683 }
1684}
Dr. Stephen Henson7a556fb2016-01-09 13:40:02 +00001685
1686sub do_deprecated()
1687{
1688 my ($decl, $plats, $algs) = @_;
Viktor Dukhovnica0004e2016-01-09 17:11:18 -05001689 $decl =~ /^\s*(DEPRECATEDIN_\d+_\d+_\d+)\s*\((.*)\)\s*$/
1690 or die "Bad DEPRECTEDIN: $decl\n";
Dr. Stephen Henson7a556fb2016-01-09 13:40:02 +00001691 my $info1 .= "#INFO:";
1692 $info1 .= join(',', @{$plats}) . ":";
1693 my $info2 = $info1;
1694 $info1 .= join(',',@{$algs}, $1) . ";";
1695 $info2 .= join(',',@{$algs}) . ";";
1696 return $info1 . $2 . ";" . $info2;
1697}